From 9e3559bc51ea3d32608b50b050b3f5e0faec4232 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 28 Nov 2022 17:41:50 -0500 Subject: [PATCH 01/81] pick from (critical/non critical) blocks functions are updated with block type argument --- vpr/src/place/centroid_move_generator.cpp | 2 + .../place/critical_uniform_move_generator.cpp | 16 +-- .../place/feasible_region_move_generator.cpp | 17 +-- vpr/src/place/move_utils.cpp | 121 ++++++++++++++++++ vpr/src/place/move_utils.h | 30 +++++ 5 files changed, 162 insertions(+), 24 deletions(-) diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index a4d39bd740c..7e01bfc5885 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -7,9 +7,11 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { /* Pick a random block to be swapped with another random block. */ ClusterBlockId b_from = pick_from_block(); + if (!b_from) { return e_create_move::ABORT; //No movable block found } + auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.placement(); diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index c62e349c4ef..253e903519b 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -5,24 +5,16 @@ e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.move(); - /* Pick a random block to be swapped with another random block. */ - // pick it from the highly critical blocks - if (place_move_ctx.highly_crit_pins.size() == 0) { - return e_create_move::ABORT; //No critical block - } - std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; - ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); + //Pick a random highly critical block to be swapped with another random block + ClusterNetId net_from; + int pin_from; + ClusterBlockId b_from = pick_from_highly_critical_block(net_from, pin_from); if (!b_from) { return e_create_move::ABORT; //No movable block found } - if (place_ctx.block_locs[b_from].is_fixed) { - return e_create_move::ABORT; //Block is fixed, cannot move - } - t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index 9e7d6a6c684..5214bd62cc3 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -9,22 +9,15 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_move_ctx = g_placer_ctx.mutable_move(); - /* Pick a random block to be swapped with another random block. */ - // pick it from the highly critical blocks - if (place_move_ctx.highly_crit_pins.size() == 0) { - return e_create_move::ABORT; //No critical block - } - std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; - ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); + //Pick a random highly critical block to be swapped with another random block + ClusterNetId net_from; + int pin_from; + ClusterBlockId b_from = pick_from_highly_critical_block(net_from, pin_from); if (!b_from) { return e_create_move::ABORT; //No movable block found } - if (place_ctx.block_locs[b_from].is_fixed) { - return e_create_move::ABORT; //Block is fixed, cannot move - } - //from block data t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); @@ -69,7 +62,7 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& xt = 0; yt = 0; - ClusterBlockId b_output = cluster_ctx.clb_nlist.net_pin_block(crit_pin.first, crit_pin.second); + ClusterBlockId b_output = cluster_ctx.clb_nlist.net_pin_block(net_from, pin_from); t_pl_loc output_loc = place_ctx.block_locs[b_output].loc; xt = output_loc.x; yt = output_loc.y; diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 6b6c2dfa440..9800b82fa62 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -531,6 +531,127 @@ ClusterBlockId pick_from_block() { return ClusterBlockId::INVALID(); } +//Pick a random block with a specific blk_type to be swapped with another random block. +//If none is found return ClusterBlockId::INVALID() +ClusterBlockId pick_from_block(t_logical_block_type_ptr blk_type) { + /* Some blocks may be fixed, and should never be moved from their * + * initial positions. If we randomly selected such a block try * + * another random block. * + * * + * We need to track the blocks we have tried to avoid an infinite * + * loop if all blocks are fixed. */ + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& place_ctx = g_vpr_ctx.mutable_placement(); + + std::unordered_set tried_from_blocks; + + //So long as untried blocks remain + while (tried_from_blocks.size() < cluster_ctx.clb_nlist.blocks().size()) { + //Pick a block at random + ClusterBlockId b_from = ClusterBlockId(vtr::irand((int)cluster_ctx.clb_nlist.blocks().size() - 1)); + //Record it as tried + tried_from_blocks.insert(b_from); + + //Check if picked block type matches with the blk_type specified + //If it matches, then we can use the picked block if it is not fixed + if (cluster_ctx.clb_nlist.block_type(b_from)->index == blk_type->index) { + if (place_ctx.block_locs[b_from].is_fixed) { + continue; //Fixed location, try again + } + + //Found a movable block + return b_from; + } + } + + //No movable blocks found + return ClusterBlockId::INVALID(); +} + +//Pick a random highly critical block to be swapped with another random block. +//If none is found return ClusterBlockId::INVALID() +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from) { + auto& place_move_ctx = g_placer_ctx.move(); + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + + //Initialize critical net and pin to be invalid + net_from = ClusterNetId::INVALID(); + pin_from = -1; + + //check if any critical block is available + if (place_move_ctx.highly_crit_pins.size() == 0) { + return ClusterBlockId::INVALID(); + } + + //Some highly critical blocks might have a different type than blk_type. + //Need to keep track of how many blocks we have tried to avoid infinite loop + //in case of no moveable critical block + std::unordered_set tried_from_highly_critical_blocks; + + while (tried_from_highly_critical_blocks.size() < place_move_ctx.highly_crit_pins.size()) { + //pick a random highly critical pin and find the nets driver block + std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; + ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); + + tried_from_highly_critical_blocks.insert(b_from); + + if (place_ctx.block_locs[b_from].is_fixed) { + continue; //Block is fixed, cannot move + } + + net_from = crit_pin.first; + pin_from = crit_pin.second; + return b_from; + } + + //No critical block with 'blk_type' found + return ClusterBlockId::INVALID(); +} + +//Pick a random highly critical block with a specified block type to be swapped with another random block. +//If none is found return ClusterBlockId::INVALID() +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from, t_logical_block_type_ptr blk_type) { + auto& place_move_ctx = g_placer_ctx.move(); + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + + //Initialize critical net and pin to be invalid + net_from = ClusterNetId::INVALID(); + pin_from = -1; + + //check if any critical block is available + if (place_move_ctx.highly_crit_pins.size() == 0) { + return ClusterBlockId::INVALID(); + } + + //Some highly critical blocks might have a different type than blk_type. + //Need to keep track of how many blocks we have tried to avoid infinite loop + //in case of no critical block with 'blk_type' is found. + std::unordered_set tried_from_highly_critical_blocks; + + while (tried_from_highly_critical_blocks.size() < place_move_ctx.highly_crit_pins.size()) { + //pick a random highly critical pin and find the nets driver block + std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; + ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); + tried_from_highly_critical_blocks.insert(b_from); + + //Check if picked block type matches with the blk_type specified and it is not fixed + if (cluster_ctx.clb_nlist.block_type(b_from)->index == blk_type->index) { + if (place_ctx.block_locs[b_from].is_fixed) { + continue; //Block is fixed, cannot move + } + + net_from = crit_pin.first; + pin_from = crit_pin.second; + return b_from; + } + } + + //No critical block with 'blk_type' found + return ClusterBlockId::INVALID(); +} + bool find_to_loc_uniform(t_logical_block_type_ptr type, float rlim, const t_pl_loc from, diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 29a796a7f7f..151d843f150 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -97,8 +97,38 @@ bool is_legal_swap_to_location(ClusterBlockId blk, t_pl_loc to); std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& blocks_affected); +/** + * @brief Select a random block to be swapped with another block + * + * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found + */ ClusterBlockId pick_from_block(); +/** + * @brief Find a block with a specific block type to be swapped with another block + * + * @param blk_type: the logical type of the moving block. + * + * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found + */ +ClusterBlockId pick_from_block(t_logical_block_type_ptr blk_type); + +/** + * @brief Select a random highly critical block to be swapped with another block + * + * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found + */ +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from); + +/** + * @brief Find a block with a specific block type to be swapped with another block + * + * @param blk_type: the logical type of the moving block. + * + * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found + */ +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from, t_logical_block_type_ptr blk_type); + bool find_to_loc_uniform(t_logical_block_type_ptr type, float rlim, const t_pl_loc from, From a6ea292a335e314cef9ddda1256fb18acf0b362d Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 28 Nov 2022 19:05:37 -0500 Subject: [PATCH 02/81] updated proposed_move for all seven move types, simpleRL and static move generator --- vpr/src/draw/manual_moves.cpp | 3 ++- vpr/src/place/centroid_move_generator.cpp | 10 +++++++--- vpr/src/place/centroid_move_generator.h | 2 +- .../place/critical_uniform_move_generator.cpp | 11 ++++++++--- vpr/src/place/critical_uniform_move_generator.h | 2 +- vpr/src/place/feasible_region_move_generator.cpp | 11 ++++++++--- vpr/src/place/feasible_region_move_generator.h | 2 +- vpr/src/place/manual_move_generator.cpp | 2 +- vpr/src/place/manual_move_generator.h | 2 +- vpr/src/place/median_move_generator.cpp | 9 ++++++--- vpr/src/place/median_move_generator.h | 2 +- vpr/src/place/move_generator.h | 3 ++- vpr/src/place/place.cpp | 4 +++- vpr/src/place/simpleRL_move_generator.cpp | 4 ++-- vpr/src/place/simpleRL_move_generator.h | 2 +- vpr/src/place/static_move_generator.cpp | 6 +++--- vpr/src/place/static_move_generator.h | 2 +- vpr/src/place/uniform_move_generator.cpp | 16 +++++++++++----- vpr/src/place/uniform_move_generator.h | 2 +- .../place/weighted_centroid_move_generator.cpp | 12 +++++++++--- vpr/src/place/weighted_centroid_move_generator.h | 2 +- vpr/src/place/weighted_median_move_generator.cpp | 10 +++++++--- vpr/src/place/weighted_median_move_generator.h | 2 +- 23 files changed, 79 insertions(+), 42 deletions(-) diff --git a/vpr/src/draw/manual_moves.cpp b/vpr/src/draw/manual_moves.cpp index 9995c3d1bcf..4b6c1072bd8 100644 --- a/vpr/src/draw/manual_moves.cpp +++ b/vpr/src/draw/manual_moves.cpp @@ -310,7 +310,8 @@ e_create_move manual_move_display_and_propose(ManualMoveGenerator& manual_move_g draw_manual_moves_window(""); update_screen(ScreenUpdatePriority::MAJOR, " ", PLACEMENT, nullptr); move_type = e_move_type::MANUAL_MOVE; - return manual_move_generator.propose_move(blocks_affected, move_type, rlim, placer_opts, criticalities); + t_logical_block_type blk_type; //no need to specify block type in manual move "propose_move" function + return manual_move_generator.propose_move(blocks_affected, move_type, &blk_type, rlim, placer_opts, criticalities); } #endif /*NO_GRAPHICS*/ diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index 7e01bfc5885..91af4fa7c97 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -4,9 +4,13 @@ #include "directed_moves_util.h" #include "place_constraints.h" -e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { - /* Pick a random block to be swapped with another random block. */ - ClusterBlockId b_from = pick_from_block(); +e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { + ClusterBlockId b_from; + if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + b_from = pick_from_block(); + } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block + b_from = pick_from_block(blk_type); + } if (!b_from) { return e_create_move::ABORT; //No movable block found diff --git a/vpr/src/place/centroid_move_generator.h b/vpr/src/place/centroid_move_generator.h index a294ffb6810..0b7d86401ef 100644 --- a/vpr/src/place/centroid_move_generator.h +++ b/vpr/src/place/centroid_move_generator.h @@ -13,7 +13,7 @@ * Returns its choices by filling in affected_blocks. */ class CentroidMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/); }; #endif diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index 253e903519b..a782dd98e89 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -2,14 +2,19 @@ #include "globals.h" #include "place_constraints.h" -e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { +e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); - //Pick a random highly critical block to be swapped with another random block ClusterNetId net_from; + ClusterBlockId b_from; int pin_from; - ClusterBlockId b_from = pick_from_highly_critical_block(net_from, pin_from); + + if (blk_type->index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block + b_from = pick_from_highly_critical_block(net_from, pin_from); + } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block + b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); + } if (!b_from) { return e_create_move::ABORT; //No movable block found diff --git a/vpr/src/place/critical_uniform_move_generator.h b/vpr/src/place/critical_uniform_move_generator.h index abcdb217ec3..db69d0ea0a0 100644 --- a/vpr/src/place/critical_uniform_move_generator.h +++ b/vpr/src/place/critical_uniform_move_generator.h @@ -15,7 +15,7 @@ * Returns its choices by filling in affected_blocks. */ class CriticalUniformMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); }; #endif diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index 5214bd62cc3..64ba09721e9 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -4,15 +4,20 @@ #include "math.h" #include "place_constraints.h" -e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_move_ctx = g_placer_ctx.mutable_move(); - //Pick a random highly critical block to be swapped with another random block ClusterNetId net_from; + ClusterBlockId b_from; int pin_from; - ClusterBlockId b_from = pick_from_highly_critical_block(net_from, pin_from); + + if (blk_type->index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block + b_from = pick_from_highly_critical_block(net_from, pin_from); + } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block + b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); + } if (!b_from) { return e_create_move::ABORT; //No movable block found diff --git a/vpr/src/place/feasible_region_move_generator.h b/vpr/src/place/feasible_region_move_generator.h index 2a9c256925c..8234065ecc8 100644 --- a/vpr/src/place/feasible_region_move_generator.h +++ b/vpr/src/place/feasible_region_move_generator.h @@ -19,7 +19,7 @@ * */ class FeasibleRegionMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); }; #endif diff --git a/vpr/src/place/manual_move_generator.cpp b/vpr/src/place/manual_move_generator.cpp index cb482f0cbce..63295455599 100644 --- a/vpr/src/place/manual_move_generator.cpp +++ b/vpr/src/place/manual_move_generator.cpp @@ -13,7 +13,7 @@ #endif //NO_GRAPHICS //Manual Move Generator function -e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { +e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { int block_id = -1; t_pl_loc to; diff --git a/vpr/src/place/manual_move_generator.h b/vpr/src/place/manual_move_generator.h index 863ebc71c8c..b9a6eb23a94 100644 --- a/vpr/src/place/manual_move_generator.h +++ b/vpr/src/place/manual_move_generator.h @@ -27,7 +27,7 @@ class ManualMoveGenerator : public MoveGenerator { public: //Evaluates if move is successful and legal or unable to do. - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); }; #endif /*VPR_MANUAL_MOVE_GEN_H */ diff --git a/vpr/src/place/median_move_generator.cpp b/vpr/src/place/median_move_generator.cpp index 03c37ad205d..74d9cdaadd7 100644 --- a/vpr/src/place/median_move_generator.cpp +++ b/vpr/src/place/median_move_generator.cpp @@ -8,16 +8,19 @@ static bool get_bb_incrementally(ClusterNetId net_id, t_bb* bb_coord_new, int xo static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb* bb_coord_new, ClusterBlockId block_id, bool& skip_net); -e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { +e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& device_ctx = g_vpr_ctx.device(); auto& place_move_ctx = g_placer_ctx.mutable_move(); - /* Pick a random block to be swapped with another random block. */ ClusterBlockId b_from; - b_from = pick_from_block(); + if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + b_from = pick_from_block(); + } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block + b_from = pick_from_block(blk_type); + } if (!b_from) { return e_create_move::ABORT; //No movable block found diff --git a/vpr/src/place/median_move_generator.h b/vpr/src/place/median_move_generator.h index 37b5be5c8db..6ae34232cf7 100644 --- a/vpr/src/place/median_move_generator.h +++ b/vpr/src/place/median_move_generator.h @@ -16,7 +16,7 @@ * around it */ class MedianMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/); }; #endif diff --git a/vpr/src/place/move_generator.h b/vpr/src/place/move_generator.h index eec68c86b34..1c9ba876fcb 100644 --- a/vpr/src/place/move_generator.h +++ b/vpr/src/place/move_generator.h @@ -54,8 +54,9 @@ class MoveGenerator { * @param rlim: maximum distance a block can move in x or y direction, in the compressed grid space * @param placer_opts: all the placer options * @param criticalities: the placer criticalities, useful for timing directed moves + * @param blk_type: function proposes a move with given block type if specified. */ - virtual e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) = 0; + virtual e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) = 0; /** * @brief Recieves feedback about the outcome of the previously proposed move diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 8090d5f21bd..1ed190141b2 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -1367,7 +1367,9 @@ static e_move_result try_swap(const t_annealing_state* state, #endif //NO_GRAPHICS } else { //Generate a new move (perturbation) used to explore the space of possible placements - create_move_outcome = move_generator.propose_move(blocks_affected, move_type, rlim, placer_opts, criticalities); + //Agent now doesn't care about move type, passing an empty blk_type to propose move to make it resume its past functionality + t_logical_block_type blk_type; + create_move_outcome = move_generator.propose_move(blocks_affected, move_type, &blk_type, rlim, placer_opts, criticalities); } ++move_type_stat.num_moves[(int)move_type]; diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 33ccbc2a07a..e7dd4397035 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -38,9 +38,9 @@ SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr karmed_bandit_agent = std::move(agent); } -e_create_move SimpleRLMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move SimpleRLMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { move_type = (e_move_type)karmed_bandit_agent->propose_action(); - return avail_moves[(int)move_type]->propose_move(blocks_affected, move_type, rlim, placer_opts, criticalities); + return avail_moves[(int)move_type]->propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); } void SimpleRLMoveGenerator::process_outcome(double reward, e_reward_function reward_fun) { diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index af984cfa9bf..0d6d414f035 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -99,7 +99,7 @@ class SimpleRLMoveGenerator : public MoveGenerator { SimpleRLMoveGenerator(std::unique_ptr& agent); // Updates affected_blocks with the proposed move, while respecting the current rlim - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); // Recieves feedback about the outcome of the previously proposed move void process_outcome(double reward, e_reward_function reward_fun); diff --git a/vpr/src/place/static_move_generator.cpp b/vpr/src/place/static_move_generator.cpp index 8e946965b4d..bcf08a413f0 100644 --- a/vpr/src/place/static_move_generator.cpp +++ b/vpr/src/place/static_move_generator.cpp @@ -26,17 +26,17 @@ void StaticMoveGenerator::initialize_move_prob(const std::vector& prob) { total_prob = cumm_move_probs[cumm_move_probs.size() - 1]; } -e_create_move StaticMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move StaticMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { float rand_num = vtr::frand() * total_prob; for (size_t i = 0; i < cumm_move_probs.size(); i++) { if (rand_num <= cumm_move_probs[i]) { move_type = (e_move_type)i; - return avail_moves[i]->propose_move(blocks_affected, move_type, rlim, placer_opts, criticalities); + return avail_moves[i]->propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); } } VTR_ASSERT_MSG(false, vtr::string_fmt("During static probability move selection, random number (%g) exceeded total expected probabaility (%g)", rand_num, total_prob).c_str()); //Unreachable move_type = (e_move_type)(avail_moves.size() - 1); - return avail_moves[avail_moves.size() - 1]->propose_move(blocks_affected, move_type, rlim, placer_opts, criticalities); + return avail_moves[avail_moves.size() - 1]->propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); } diff --git a/vpr/src/place/static_move_generator.h b/vpr/src/place/static_move_generator.h index 27738e888e1..fc0007ebebe 100644 --- a/vpr/src/place/static_move_generator.h +++ b/vpr/src/place/static_move_generator.h @@ -24,6 +24,6 @@ class StaticMoveGenerator : public MoveGenerator { public: StaticMoveGenerator(const std::vector& prob); - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); }; #endif diff --git a/vpr/src/place/uniform_move_generator.cpp b/vpr/src/place/uniform_move_generator.cpp index 19fc735f014..9817680042f 100644 --- a/vpr/src/place/uniform_move_generator.cpp +++ b/vpr/src/place/uniform_move_generator.cpp @@ -2,14 +2,20 @@ #include "globals.h" #include "place_constraints.h" -e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { - /* Pick a random block to be swapped with another random block. */ - ClusterBlockId b_from = pick_from_block(); +e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + + ClusterBlockId b_from; + if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + b_from = pick_from_block(); + } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block + b_from = pick_from_block(blk_type); + } + if (!b_from) { return e_create_move::ABORT; //No movable block found } - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); diff --git a/vpr/src/place/uniform_move_generator.h b/vpr/src/place/uniform_move_generator.h index b8e07d52c09..1976c41271c 100644 --- a/vpr/src/place/uniform_move_generator.h +++ b/vpr/src/place/uniform_move_generator.h @@ -9,7 +9,7 @@ * a range limit centered on from_block in the compressed block grid space */ class UniformMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); }; #endif diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index 5870c08f317..ef48c2ddbb6 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -4,12 +4,18 @@ #include "directed_moves_util.h" #include "place_constraints.h" -e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { - /* Pick a random block to be swapped with another random block. */ - ClusterBlockId b_from = pick_from_block(); +e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { + ClusterBlockId b_from; + if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + b_from = pick_from_block(); + } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block + b_from = pick_from_block(blk_type); + } + if (!b_from) { return e_create_move::ABORT; //No movable block found } + auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); diff --git a/vpr/src/place/weighted_centroid_move_generator.h b/vpr/src/place/weighted_centroid_move_generator.h index b745d0be516..a929803d03b 100644 --- a/vpr/src/place/weighted_centroid_move_generator.h +++ b/vpr/src/place/weighted_centroid_move_generator.h @@ -13,7 +13,7 @@ * "Learn to Place: FPGA Placement using Reinforcement Learning and Directed Moves", ICFPT2020 */ class WeightedCentroidMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); }; #endif diff --git a/vpr/src/place/weighted_median_move_generator.cpp b/vpr/src/place/weighted_median_move_generator.cpp index a69ebc17b92..ac3b1c20e80 100644 --- a/vpr/src/place/weighted_median_move_generator.cpp +++ b/vpr/src/place/weighted_median_move_generator.cpp @@ -8,14 +8,18 @@ static void get_bb_cost_for_net_excluding_block(ClusterNetId net_id, ClusterBlockId block_id, ClusterPinId moving_pin_id, const PlacerCriticalities* criticalities, t_bb_cost* coords, bool& skip_net); -e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_move_ctx = g_placer_ctx.mutable_move(); - /* Pick a random block to be swapped with another random block. */ - ClusterBlockId b_from = pick_from_block(); + ClusterBlockId b_from; + if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + b_from = pick_from_block(); + } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block + b_from = pick_from_block(blk_type); + } if (!b_from) { return e_create_move::ABORT; //No movable block found diff --git a/vpr/src/place/weighted_median_move_generator.h b/vpr/src/place/weighted_median_move_generator.h index 24f0b69a37b..9c4e743a9d1 100644 --- a/vpr/src/place/weighted_median_move_generator.h +++ b/vpr/src/place/weighted_median_move_generator.h @@ -13,7 +13,7 @@ * "Learn to Place: FPGA Placement using Reinforcement Learning and Directed Moves", ICFPT2020 */ class WeightedMedianMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); }; #endif From 24235c95f2988ac44a53dd6197f37cbc4e1022c0 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 30 Nov 2022 18:44:31 -0500 Subject: [PATCH 03/81] changed the propose_action output to return both move type and block type, updated epsilon and softmax agents, the old approach should still be working --- vpr/src/place/RL_agent_util.cpp | 1 - vpr/src/place/manual_move_generator.cpp | 2 +- vpr/src/place/manual_move_generator.h | 2 +- vpr/src/place/move_utils.cpp | 6 +- vpr/src/place/move_utils.h | 11 ++ vpr/src/place/place.cpp | 7 +- vpr/src/place/simpleRL_move_generator.cpp | 139 +++++++++++++++------- vpr/src/place/simpleRL_move_generator.h | 12 +- 8 files changed, 128 insertions(+), 52 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index 171b710e99d..694c0e17c93 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -34,7 +34,6 @@ void create_move_generators(std::unique_ptr& move_generator, std: * Region / CriticalUniform) * * * * This state is activated late in the anneale and in the Quench */ - if (placer_opts.place_agent_algorithm == E_GREEDY) { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; diff --git a/vpr/src/place/manual_move_generator.cpp b/vpr/src/place/manual_move_generator.cpp index 63295455599..ba24bdc9802 100644 --- a/vpr/src/place/manual_move_generator.cpp +++ b/vpr/src/place/manual_move_generator.cpp @@ -13,7 +13,7 @@ #endif //NO_GRAPHICS //Manual Move Generator function -e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { +e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr /*blk_type*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { int block_id = -1; t_pl_loc to; diff --git a/vpr/src/place/manual_move_generator.h b/vpr/src/place/manual_move_generator.h index b9a6eb23a94..ddc6f915c09 100644 --- a/vpr/src/place/manual_move_generator.h +++ b/vpr/src/place/manual_move_generator.h @@ -27,7 +27,7 @@ class ManualMoveGenerator : public MoveGenerator { public: //Evaluates if move is successful and legal or unable to do. - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr /*blk_type*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); }; #endif /*VPR_MANUAL_MOVE_GEN_H */ diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 9800b82fa62..142d040a091 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -554,7 +554,8 @@ ClusterBlockId pick_from_block(t_logical_block_type_ptr blk_type) { //Check if picked block type matches with the blk_type specified //If it matches, then we can use the picked block if it is not fixed - if (cluster_ctx.clb_nlist.block_type(b_from)->index == blk_type->index) { + //blk_type from propose move doesn't account for the EMPTY type + if (cluster_ctx.clb_nlist.block_type(b_from)->index == blk_type->index + 1) { if (place_ctx.block_locs[b_from].is_fixed) { continue; //Fixed location, try again } @@ -637,7 +638,8 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ tried_from_highly_critical_blocks.insert(b_from); //Check if picked block type matches with the blk_type specified and it is not fixed - if (cluster_ctx.clb_nlist.block_type(b_from)->index == blk_type->index) { + //blk_type from propose move doesn't account for the EMPTY type + if (cluster_ctx.clb_nlist.block_type(b_from)->index == blk_type->index + 1) { if (place_ctx.block_locs[b_from].is_fixed) { continue; //Block is fixed, cannot move } diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 151d843f150..55746672818 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -35,6 +35,17 @@ enum class e_create_move { ABORT, //Unable to perform move }; +/** + * @brief Stores KArmedBanditAgent propose_action output to decide which + * move_type and which block_type should be choosen for the next action. + * propose_action function can also leave blk_type empty to allow any + * random block type to be choosen to be swapped. + */ +struct t_propose_action { + e_move_type move_type; //move type that propose_action choose to perform + t_logical_block_type blk_type; //propose_action can choose block type or leave it empty to allow any block type to be choosen +}; + /** * @brief Stores a bounding box edge of a net with the timing * criticality of the net terminal that caused this edge diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 1ed190141b2..9a6def10412 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -1336,7 +1336,8 @@ static e_move_result try_swap(const t_annealing_state* state, crit_params.crit_exponent = state->crit_exponent; crit_params.crit_limit = placer_opts.place_crit_limit; - e_move_type move_type; //move type number + e_move_type move_type; //move type number + t_logical_block_type_ptr blk_type; // blk type that is choosed to be moved by the agent num_ts_called++; @@ -1367,9 +1368,7 @@ static e_move_result try_swap(const t_annealing_state* state, #endif //NO_GRAPHICS } else { //Generate a new move (perturbation) used to explore the space of possible placements - //Agent now doesn't care about move type, passing an empty blk_type to propose move to make it resume its past functionality - t_logical_block_type blk_type; - create_move_outcome = move_generator.propose_move(blocks_affected, move_type, &blk_type, rlim, placer_opts, criticalities); + create_move_outcome = move_generator.propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); } ++move_type_stat.num_moves[(int)move_type]; diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index e7dd4397035..30bd5bfbad7 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -39,7 +39,10 @@ SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr } e_create_move SimpleRLMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { - move_type = (e_move_type)karmed_bandit_agent->propose_action(); + //SARA_TODO + auto propose_action_out = karmed_bandit_agent->propose_action(); + move_type = propose_action_out.move_type; + blk_type = &propose_action_out.blk_type; return avail_moves[(int)move_type]->propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); } @@ -55,7 +58,7 @@ void SimpleRLMoveGenerator::process_outcome(double reward, e_reward_function rew void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_fun) { ++num_action_chosen_[last_action_]; if (reward_fun == RUNTIME_AWARE || reward_fun == WL_BIASED_RUNTIME_AWARE) - reward /= time_elapsed_[last_action_]; + reward /= time_elapsed_[last_action_ % num_available_actions_]; //Determine step size float step = 0.; @@ -77,11 +80,11 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ fprintf(agent_info_file_, "%zu,", last_action_); fprintf(agent_info_file_, "%g,", reward); - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { fprintf(agent_info_file_, "%g,", q_[i]); } - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { fprintf(agent_info_file_, "%zu", num_action_chosen_[i]); if (i != num_available_actions_ - 1) { fprintf(agent_info_file_, ","); @@ -99,16 +102,32 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ EpsilonGreedyAgent::EpsilonGreedyAgent(size_t num_actions, float epsilon) { set_epsilon(epsilon); num_available_actions_ = num_actions; - q_ = std::vector(num_actions, 0.); - num_action_chosen_ = std::vector(num_actions, 0); + num_available_types_ = 1; + init_q_scores(); +} + +EpsilonGreedyAgent::EpsilonGreedyAgent(size_t num_actions, size_t num_types, float epsilon) { + set_epsilon(epsilon); + num_available_actions_ = num_actions; + num_available_types_ = num_types; + init_q_scores(); +} - cumm_epsilon_action_prob_ = std::vector(num_actions, 1.0 / num_actions); +EpsilonGreedyAgent::~EpsilonGreedyAgent() { + if (agent_info_file_) vtr::fclose(agent_info_file_); +} + +void EpsilonGreedyAgent::init_q_scores() { + q_ = std::vector(num_available_actions_ * num_available_types_, 0.); + num_action_chosen_ = std::vector(num_available_actions_ * num_available_types_, 0); + + cumm_epsilon_action_prob_ = std::vector(num_available_actions_ * num_available_types_, 1.0 / (num_available_actions_ * num_available_types_)); if (agent_info_file_) { fprintf(agent_info_file_, "action,reward,"); - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { fprintf(agent_info_file_, "q%zu,", i); } - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { fprintf(agent_info_file_, "n%zu,", i); } fprintf(agent_info_file_, "\n"); @@ -116,10 +135,6 @@ EpsilonGreedyAgent::EpsilonGreedyAgent(size_t num_actions, float epsilon) { set_epsilon_action_prob(); } -EpsilonGreedyAgent::~EpsilonGreedyAgent() { - if (agent_info_file_) vtr::fclose(agent_info_file_); -} - void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { VTR_LOG("Setting egreedy step: %g\n", exp_alpha_); if (gamma < 0) { @@ -143,25 +158,41 @@ void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { } } -size_t EpsilonGreedyAgent::propose_action() { +t_propose_action EpsilonGreedyAgent::propose_action() { size_t action = 0; + t_logical_block_type blk_type; + if (vtr::frand() < epsilon_) { /* Explore * With probability epsilon, choose randomly amongst all move types */ float p = vtr::frand(); auto itr = std::lower_bound(cumm_epsilon_action_prob_.begin(), cumm_epsilon_action_prob_.end(), p); - action = itr - cumm_epsilon_action_prob_.begin(); + auto action_type_q_pos = itr - cumm_epsilon_action_prob_.begin(); + action = (action_type_q_pos) % num_available_actions_; + if (num_available_types_ != 1) { + blk_type.index = action_type_q_pos / num_available_actions_; + } + } else { /* Greedy (Exploit) * For probability 1-epsilon, choose the greedy action */ auto itr = std::max_element(q_.begin(), q_.end()); VTR_ASSERT(itr != q_.end()); - action = itr - q_.begin(); + auto action_type_q_pos = itr - q_.begin(); + action = action_type_q_pos % num_available_actions_; + if (num_available_types_ != 1) { + blk_type.index = action_type_q_pos / num_available_actions_; + } } VTR_ASSERT(action < num_available_actions_); - last_action_ = action; - return action; + last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_actions_); + + t_propose_action propose_action; + propose_action.move_type = (e_move_type)action; + propose_action.blk_type = blk_type; + + return propose_action; } void EpsilonGreedyAgent::set_epsilon(float epsilon) { @@ -171,10 +202,10 @@ void EpsilonGreedyAgent::set_epsilon(float epsilon) { void EpsilonGreedyAgent::set_epsilon_action_prob() { //initialize to equal probabilities - std::vector epsilon_prob(num_available_actions_, 1.0 / num_available_actions_); + std::vector epsilon_prob(num_available_actions_ * num_available_types_, 1.0 / num_available_actions_ * num_available_types_); float accum = 0; - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { accum += epsilon_prob[i]; cumm_epsilon_action_prob_[i] = accum; } @@ -187,18 +218,33 @@ void EpsilonGreedyAgent::set_epsilon_action_prob() { * */ SoftmaxAgent::SoftmaxAgent(size_t num_actions) { num_available_actions_ = num_actions; - q_ = std::vector(num_actions, 0.); - exp_q_ = std::vector(num_actions, 0.); - num_action_chosen_ = std::vector(num_actions, 0); - action_prob_ = std::vector(num_actions, 0.); + num_available_types_ = 1; + init_q_scores(); +} - cumm_action_prob_ = std::vector(num_actions); +SoftmaxAgent::SoftmaxAgent(size_t num_actions, size_t num_types) { + num_available_actions_ = num_actions; + num_available_types_ = num_types; + init_q_scores(); +} + +SoftmaxAgent::~SoftmaxAgent() { + if (agent_info_file_) vtr::fclose(agent_info_file_); +} + +void SoftmaxAgent::init_q_scores() { + q_ = std::vector(num_available_actions_ * num_available_types_, 0.); + exp_q_ = std::vector(num_available_actions_ * num_available_types_, 0.); + num_action_chosen_ = std::vector(num_available_actions_ * num_available_types_, 0); + action_prob_ = std::vector(num_available_actions_ * num_available_types_, 0.); + + cumm_action_prob_ = std::vector(num_available_actions_ * num_available_types_); if (agent_info_file_) { fprintf(agent_info_file_, "action,reward,"); - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { fprintf(agent_info_file_, "q%zu,", i); } - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { fprintf(agent_info_file_, "n%zu,", i); } fprintf(agent_info_file_, "\n"); @@ -207,23 +253,36 @@ SoftmaxAgent::SoftmaxAgent(size_t num_actions) { //agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } -SoftmaxAgent::~SoftmaxAgent() { - if (agent_info_file_) vtr::fclose(agent_info_file_); -} - -size_t SoftmaxAgent::propose_action() { +t_propose_action SoftmaxAgent::propose_action() { set_action_prob(); size_t action = 0; + t_logical_block_type blk_type; + float p = vtr::frand(); auto itr = std::lower_bound(cumm_action_prob_.begin(), cumm_action_prob_.end(), p); - action = itr - cumm_action_prob_.begin(); + auto action_type_q_pos = itr - cumm_action_prob_.begin(); + action = (action_type_q_pos) % num_available_actions_; + if (num_available_types_ != 1) { + blk_type.index = action_type_q_pos / num_available_actions_; + } + //To take care that the last element in cumm_action_prob_ might be less than 1 by a small value - if (action == num_available_actions_) + if (action_type_q_pos == num_available_actions_ * num_available_types_) { action = num_available_actions_ - 1; + if (num_available_types_ > 1) { + blk_type.index = num_available_types_ - 1; + } + } + VTR_ASSERT(action < num_available_actions_); - last_action_ = action; - return action; + last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_actions_); + + t_propose_action propose_action; + propose_action.move_type = (e_move_type)action; + propose_action.blk_type = blk_type; + + return propose_action; } void SoftmaxAgent::set_action_prob() { @@ -234,10 +293,10 @@ void SoftmaxAgent::set_action_prob() { float sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); if (sum_q == 0.0) { //action probabilities need to be initialized with equal values - std::fill(action_prob_.begin(), action_prob_.end(), 1.0 / num_available_actions_); + std::fill(action_prob_.begin(), action_prob_.end(), 1.0 / num_available_actions_ * num_available_types_); } else { // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { action_prob_[i] = exp_q_[i] / sum_q; } } @@ -245,12 +304,12 @@ void SoftmaxAgent::set_action_prob() { // normalize all the action probabilities to guarantee the sum(all actyion probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), - bind2nd(std::plus(), (1.0 - sum_prob) / num_available_actions_)); + bind2nd(std::plus(), (1.0 - sum_prob) / (num_available_actions_ * num_available_types_))); //calulcate the accumulative action probability of each action // e.g. if we have 5 actions with equal probability of 0.2, the cumm_action_prob will be {0.2,0.4,0.6,0.8,1.0} float accum = 0; - for (size_t i = 0; i < num_available_actions_; ++i) { + for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { accum += action_prob_[i]; cumm_action_prob_[i] = accum; } diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index 0d6d414f035..bd5bdd461ac 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -15,12 +15,14 @@ class KArmedBanditAgent { public: virtual ~KArmedBanditAgent() {} - virtual size_t propose_action() = 0; + //SARA_TODO + virtual t_propose_action propose_action() = 0; void process_outcome(double, e_reward_function); protected: float exp_alpha_ = -1; //Step size for q_ updates (< 0 implies use incremental average) size_t num_available_actions_; //Number of arms of the karmed bandit problem (k) + size_t num_available_types_; //Number of types that each arm of the karmed bandit problem can pull with std::vector num_action_chosen_; //Number of times each arm has been pulled (n) std::vector q_; //Estimated value of each arm (Q) size_t last_action_ = 0; //type of the last action (move type) proposed @@ -42,14 +44,16 @@ class KArmedBanditAgent { class EpsilonGreedyAgent : public KArmedBanditAgent { public: EpsilonGreedyAgent(size_t num_actions, float epsilon); + EpsilonGreedyAgent(size_t num_actions, size_t num_types, float epsilon); ~EpsilonGreedyAgent(); - size_t propose_action() override; //Returns the type of the next action the agent wishes to perform + t_propose_action propose_action() override; //Returns the type of the next action as well as the block type the agent wishes to perform public: void set_epsilon(float epsilon); void set_epsilon_action_prob(); void set_step(float gamma, int move_lim); + void init_q_scores(); private: float epsilon_ = 0.1; //How often to perform a non-greedy exploration action @@ -66,14 +70,16 @@ class EpsilonGreedyAgent : public KArmedBanditAgent { class SoftmaxAgent : public KArmedBanditAgent { public: SoftmaxAgent(size_t num_actions); + SoftmaxAgent(size_t num_actions, size_t num_types); ~SoftmaxAgent(); //void process_outcome(double reward, std::string reward_fun) override; //Updates the agent based on the reward of the last proposed action - size_t propose_action() override; //Returns the type of the next action the agent wishes to perform + t_propose_action propose_action() override; //Returns the type of the next action as well as the block type the agent wishes to perform public: void set_action_prob(); void set_step(float gamma, int move_lim); + void init_q_scores(); private: std::vector exp_q_; //The clipped and scaled exponential of the estimated Q value for each action From 71af2d2cf55a58830c4edbc90ea1ffd5e4c94469 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 2 Dec 2022 13:48:03 -0500 Subject: [PATCH 04/81] RL agent updated to work with block types, shouldn't pass CI tests --- vpr/src/base/clustered_netlist.cpp | 9 ++++ vpr/src/base/clustered_netlist.h | 4 ++ vpr/src/place/RL_agent_util.cpp | 15 ++++-- vpr/src/place/move_utils.cpp | 84 ++++++++++++------------------ vpr/src/place/place.cpp | 2 +- 5 files changed, 59 insertions(+), 55 deletions(-) diff --git a/vpr/src/base/clustered_netlist.cpp b/vpr/src/base/clustered_netlist.cpp index 2055d0bc6db..bbfb96f984a 100644 --- a/vpr/src/base/clustered_netlist.cpp +++ b/vpr/src/base/clustered_netlist.cpp @@ -28,6 +28,10 @@ t_logical_block_type_ptr ClusteredNetlist::block_type(const ClusterBlockId id) c return block_types_[id]; } +std::vector ClusteredNetlist::blocks_per_type(const t_logical_block_type blk_type) const{ + return blocks_per_type_.at(blk_type.index); +} + ClusterNetId ClusteredNetlist::block_net(const ClusterBlockId blk_id, const int logical_pin_index) const { auto pin_id = block_pin(blk_id, logical_pin_index); @@ -119,6 +123,8 @@ ClusterBlockId ClusteredNetlist::create_block(const char* name, t_pb* pb, t_logi block_pbs_.insert(blk_id, pb); block_types_.insert(blk_id, type); + blocks_per_type_[type->index-1].push_back(blk_id); + //Allocate and initialize every potential pin of the block block_logical_pins_.insert(blk_id, std::vector(get_max_num_pins(type), ClusterPinId::INVALID())); } @@ -195,9 +201,12 @@ void ClusteredNetlist::set_net_is_global(ClusterNetId net_id, bool state) { void ClusteredNetlist::remove_block_impl(const ClusterBlockId blk_id) { //Remove & invalidate pointers free_pb(block_pbs_[blk_id]); + auto blk_type = block_type(blk_id); + delete block_pbs_[blk_id]; block_pbs_.insert(blk_id, NULL); block_types_.insert(blk_id, NULL); + std::remove(blocks_per_type_[blk_type->index - 1].begin(), blocks_per_type_[blk_type->index - 1].end(),blk_id); block_logical_pins_.insert(blk_id, std::vector()); } diff --git a/vpr/src/base/clustered_netlist.h b/vpr/src/base/clustered_netlist.h index f1e913a650d..743f9065d30 100644 --- a/vpr/src/base/clustered_netlist.h +++ b/vpr/src/base/clustered_netlist.h @@ -139,6 +139,9 @@ class ClusteredNetlist : public Netlist blocks_per_type(const t_logical_block_type blk_type) const; + ///@brief Returns the net of the block attached to the specific pin index ClusterNetId block_net(const ClusterBlockId blk_id, const int pin_index) const; @@ -348,6 +351,7 @@ class ClusteredNetlist : public Netlist block_pbs_; /// block_types_; ///> block_logical_pins_; ///> blocks_per_type_; //Blocks per specific block types //Pins /** diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index 694c0e17c93..1ddcc93954f 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -60,22 +60,29 @@ void create_move_generators(std::unique_ptr& move_generator, std: VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; + //passing block type as well as number of available actions to the agents + //should change this to a command-line options, hence the user can choose + //the level of the agent intelligent + //default option now becomes considering move_type as well as block_types + auto& device_ctx = g_vpr_ctx.device(); + int logical_blk_types_count = device_ctx.logical_block_types.size() - 1;//excluding the EMPTY type + if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES); + karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, logical_blk_types_count); karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES); + karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES, logical_blk_types_count); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } else { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES); + karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, logical_blk_types_count); karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES); + karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, logical_blk_types_count); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 142d040a091..ee94c768bf6 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -9,6 +9,7 @@ #include "draw.h" #include "place_constraints.h" +#include "placer_globals.h" //f_placer_breakpoint_reached is used to stop the placer when a breakpoint is reached. When this flag is true, it stops the placer after the current perturbation. Thus, when a breakpoint is reached, this flag is set to true. //Note: The flag is only effective if compiled with VTR_ENABLE_DEBUG_LOGGING @@ -542,30 +543,27 @@ ClusterBlockId pick_from_block(t_logical_block_type_ptr blk_type) { * loop if all blocks are fixed. */ auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); + auto blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(*blk_type); std::unordered_set tried_from_blocks; + //So long as untried blocks remain - while (tried_from_blocks.size() < cluster_ctx.clb_nlist.blocks().size()) { + while (tried_from_blocks.size() < blocks_per_type.size()) { //Pick a block at random - ClusterBlockId b_from = ClusterBlockId(vtr::irand((int)cluster_ctx.clb_nlist.blocks().size() - 1)); + ClusterBlockId b_from = ClusterBlockId(blocks_per_type[vtr::irand((int) blocks_per_type.size() - 1)]); //Record it as tried tried_from_blocks.insert(b_from); - //Check if picked block type matches with the blk_type specified - //If it matches, then we can use the picked block if it is not fixed - //blk_type from propose move doesn't account for the EMPTY type - if (cluster_ctx.clb_nlist.block_type(b_from)->index == blk_type->index + 1) { - if (place_ctx.block_locs[b_from].is_fixed) { - continue; //Fixed location, try again - } - - //Found a movable block - return b_from; + if (place_ctx.block_locs[b_from].is_fixed) { + continue; //Fixed location, try again } + //Found a movable block + return b_from; } //No movable blocks found + //Unreachable statement return ClusterBlockId::INVALID(); } @@ -585,28 +583,20 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ return ClusterBlockId::INVALID(); } - //Some highly critical blocks might have a different type than blk_type. - //Need to keep track of how many blocks we have tried to avoid infinite loop - //in case of no moveable critical block - std::unordered_set tried_from_highly_critical_blocks; - - while (tried_from_highly_critical_blocks.size() < place_move_ctx.highly_crit_pins.size()) { - //pick a random highly critical pin and find the nets driver block - std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; - ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); + //pick a random highly critical pin and find the nets driver block + std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; + ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); - tried_from_highly_critical_blocks.insert(b_from); - - if (place_ctx.block_locs[b_from].is_fixed) { - continue; //Block is fixed, cannot move - } - - net_from = crit_pin.first; - pin_from = crit_pin.second; - return b_from; + if (place_ctx.block_locs[b_from].is_fixed) { + return ClusterBlockId::INVALID(); //Block is fixed, cannot move } + net_from = crit_pin.first; + pin_from = crit_pin.second; + return b_from; + //No critical block with 'blk_type' found + //Unreachable statement return ClusterBlockId::INVALID(); } @@ -626,31 +616,25 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ return ClusterBlockId::INVALID(); } - //Some highly critical blocks might have a different type than blk_type. - //Need to keep track of how many blocks we have tried to avoid infinite loop - //in case of no critical block with 'blk_type' is found. - std::unordered_set tried_from_highly_critical_blocks; - - while (tried_from_highly_critical_blocks.size() < place_move_ctx.highly_crit_pins.size()) { - //pick a random highly critical pin and find the nets driver block - std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; - ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); - tried_from_highly_critical_blocks.insert(b_from); - - //Check if picked block type matches with the blk_type specified and it is not fixed - //blk_type from propose move doesn't account for the EMPTY type - if (cluster_ctx.clb_nlist.block_type(b_from)->index == blk_type->index + 1) { - if (place_ctx.block_locs[b_from].is_fixed) { - continue; //Block is fixed, cannot move - } + //pick a random highly critical pin and find the nets driver block + std::pair crit_pin = place_move_ctx.highly_crit_pins[vtr::irand(place_move_ctx.highly_crit_pins.size() - 1)]; + ClusterBlockId b_from = cluster_ctx.clb_nlist.net_driver_block(crit_pin.first); - net_from = crit_pin.first; - pin_from = crit_pin.second; - return b_from; + //Check if picked block type matches with the blk_type specified, and it is not fixed + //blk_type from propose move doesn't account for the EMPTY type + auto b_from_type = cluster_ctx.clb_nlist.block_type(b_from); + if (b_from_type->index == blk_type->index + 1) { + if (place_ctx.block_locs[b_from].is_fixed) { + return ClusterBlockId::INVALID(); //Block is fixed, cannot move } + + net_from = crit_pin.first; + pin_from = crit_pin.second; + return b_from; } //No critical block with 'blk_type' found + //Unreachable statement return ClusterBlockId::INVALID(); } diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 9a6def10412..9b702544540 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -1337,7 +1337,7 @@ static e_move_result try_swap(const t_annealing_state* state, crit_params.crit_limit = placer_opts.place_crit_limit; e_move_type move_type; //move type number - t_logical_block_type_ptr blk_type; // blk type that is choosed to be moved by the agent + t_logical_block_type_ptr blk_type; //blk type that is choosed to be moved by the agent num_ts_called++; From 1f9ef91b337924c9d0a599638121657d9c9d0dc0 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 2 Dec 2022 16:58:13 -0500 Subject: [PATCH 05/81] bug in blocks per type data structure fixed, high runtime still --- vpr/src/base/clustered_netlist.cpp | 8 ++++++-- vpr/src/place/move_utils.cpp | 9 ++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/vpr/src/base/clustered_netlist.cpp b/vpr/src/base/clustered_netlist.cpp index bbfb96f984a..22308a2e4f3 100644 --- a/vpr/src/base/clustered_netlist.cpp +++ b/vpr/src/base/clustered_netlist.cpp @@ -29,6 +29,10 @@ t_logical_block_type_ptr ClusteredNetlist::block_type(const ClusterBlockId id) c } std::vector ClusteredNetlist::blocks_per_type(const t_logical_block_type blk_type) const{ + if(blocks_per_type_.count(blk_type.index) == 0) { + std::vector empty_vector; + return empty_vector; + } return blocks_per_type_.at(blk_type.index); } @@ -123,7 +127,7 @@ ClusterBlockId ClusteredNetlist::create_block(const char* name, t_pb* pb, t_logi block_pbs_.insert(blk_id, pb); block_types_.insert(blk_id, type); - blocks_per_type_[type->index-1].push_back(blk_id); + blocks_per_type_[type->index].push_back(blk_id); //Allocate and initialize every potential pin of the block block_logical_pins_.insert(blk_id, std::vector(get_max_num_pins(type), ClusterPinId::INVALID())); @@ -206,7 +210,7 @@ void ClusteredNetlist::remove_block_impl(const ClusterBlockId blk_id) { delete block_pbs_[blk_id]; block_pbs_.insert(blk_id, NULL); block_types_.insert(blk_id, NULL); - std::remove(blocks_per_type_[blk_type->index - 1].begin(), blocks_per_type_[blk_type->index - 1].end(),blk_id); + std::remove(blocks_per_type_[blk_type->index].begin(), blocks_per_type_[blk_type->index].end(),blk_id); block_logical_pins_.insert(blk_id, std::vector()); } diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index ee94c768bf6..276bb35138b 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -543,7 +543,14 @@ ClusterBlockId pick_from_block(t_logical_block_type_ptr blk_type) { * loop if all blocks are fixed. */ auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); - auto blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(*blk_type); + t_logical_block_type blk_type_temp = *blk_type; + blk_type_temp.index++; + auto blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(blk_type_temp); + + //no blocks with this type is available + if(blocks_per_type.size() == 0){ + return ClusterBlockId::INVALID(); + } std::unordered_set tried_from_blocks; From d30d457e7ae01d341d3168576da1dbf622f46d53 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 5 Dec 2022 11:02:53 -0500 Subject: [PATCH 06/81] print_placement_move_types_stats is updated to print both move type and block types for better analysis --- vpr/src/place/centroid_move_generator.cpp | 4 +- vpr/src/place/centroid_move_generator.h | 2 +- .../place/critical_uniform_move_generator.cpp | 4 +- .../place/critical_uniform_move_generator.h | 2 +- .../place/feasible_region_move_generator.cpp | 4 +- .../place/feasible_region_move_generator.h | 2 +- vpr/src/place/manual_move_generator.cpp | 2 +- vpr/src/place/manual_move_generator.h | 2 +- vpr/src/place/median_move_generator.cpp | 4 +- vpr/src/place/median_move_generator.h | 2 +- vpr/src/place/move_generator.h | 17 ++++--- vpr/src/place/move_utils.cpp | 8 +-- vpr/src/place/move_utils.h | 4 +- vpr/src/place/place.cpp | 50 +++++++++++-------- vpr/src/place/simpleRL_move_generator.cpp | 4 +- vpr/src/place/simpleRL_move_generator.h | 2 +- vpr/src/place/static_move_generator.cpp | 2 +- vpr/src/place/static_move_generator.h | 2 +- vpr/src/place/uniform_move_generator.cpp | 4 +- vpr/src/place/uniform_move_generator.h | 2 +- .../weighted_centroid_move_generator.cpp | 4 +- .../place/weighted_centroid_move_generator.h | 2 +- .../place/weighted_median_move_generator.cpp | 4 +- .../place/weighted_median_move_generator.h | 2 +- 24 files changed, 74 insertions(+), 61 deletions(-) diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index 91af4fa7c97..1ff8e557728 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -4,9 +4,9 @@ #include "directed_moves_util.h" #include "place_constraints.h" -e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { +e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { ClusterBlockId b_from; - if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); diff --git a/vpr/src/place/centroid_move_generator.h b/vpr/src/place/centroid_move_generator.h index 0b7d86401ef..24a7277ae1d 100644 --- a/vpr/src/place/centroid_move_generator.h +++ b/vpr/src/place/centroid_move_generator.h @@ -13,7 +13,7 @@ * Returns its choices by filling in affected_blocks. */ class CentroidMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/); }; #endif diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index a782dd98e89..a5d1f1df3aa 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -2,7 +2,7 @@ #include "globals.h" #include "place_constraints.h" -e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { +e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); @@ -10,7 +10,7 @@ e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved ClusterBlockId b_from; int pin_from; - if (blk_type->index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from); } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); diff --git a/vpr/src/place/critical_uniform_move_generator.h b/vpr/src/place/critical_uniform_move_generator.h index db69d0ea0a0..7190d08a95b 100644 --- a/vpr/src/place/critical_uniform_move_generator.h +++ b/vpr/src/place/critical_uniform_move_generator.h @@ -15,7 +15,7 @@ * Returns its choices by filling in affected_blocks. */ class CriticalUniformMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); }; #endif diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index 64ba09721e9..ad2f45bc1d7 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -4,7 +4,7 @@ #include "math.h" #include "place_constraints.h" -e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_move_ctx = g_placer_ctx.mutable_move(); @@ -13,7 +13,7 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& ClusterBlockId b_from; int pin_from; - if (blk_type->index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from); } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); diff --git a/vpr/src/place/feasible_region_move_generator.h b/vpr/src/place/feasible_region_move_generator.h index 8234065ecc8..38949d0a03e 100644 --- a/vpr/src/place/feasible_region_move_generator.h +++ b/vpr/src/place/feasible_region_move_generator.h @@ -19,7 +19,7 @@ * */ class FeasibleRegionMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); }; #endif diff --git a/vpr/src/place/manual_move_generator.cpp b/vpr/src/place/manual_move_generator.cpp index ba24bdc9802..9d996a1302c 100644 --- a/vpr/src/place/manual_move_generator.cpp +++ b/vpr/src/place/manual_move_generator.cpp @@ -13,7 +13,7 @@ #endif //NO_GRAPHICS //Manual Move Generator function -e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr /*blk_type*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { +e_create_move ManualMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& /*blk_type*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { int block_id = -1; t_pl_loc to; diff --git a/vpr/src/place/manual_move_generator.h b/vpr/src/place/manual_move_generator.h index ddc6f915c09..4beabd2cce7 100644 --- a/vpr/src/place/manual_move_generator.h +++ b/vpr/src/place/manual_move_generator.h @@ -27,7 +27,7 @@ class ManualMoveGenerator : public MoveGenerator { public: //Evaluates if move is successful and legal or unable to do. - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr /*blk_type*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& /*blk_type*/, float /*rlim*/, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); }; #endif /*VPR_MANUAL_MOVE_GEN_H */ diff --git a/vpr/src/place/median_move_generator.cpp b/vpr/src/place/median_move_generator.cpp index 74d9cdaadd7..89c28581eed 100644 --- a/vpr/src/place/median_move_generator.cpp +++ b/vpr/src/place/median_move_generator.cpp @@ -8,7 +8,7 @@ static bool get_bb_incrementally(ClusterNetId net_id, t_bb* bb_coord_new, int xo static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb* bb_coord_new, ClusterBlockId block_id, bool& skip_net); -e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { +e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& device_ctx = g_vpr_ctx.device(); @@ -16,7 +16,7 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ auto& place_move_ctx = g_placer_ctx.mutable_move(); ClusterBlockId b_from; - if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); diff --git a/vpr/src/place/median_move_generator.h b/vpr/src/place/median_move_generator.h index 6ae34232cf7..49f5c5b010b 100644 --- a/vpr/src/place/median_move_generator.h +++ b/vpr/src/place/median_move_generator.h @@ -16,7 +16,7 @@ * around it */ class MedianMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/); }; #endif diff --git a/vpr/src/place/move_generator.h b/vpr/src/place/move_generator.h index 1c9ba876fcb..a4e43414a5d 100644 --- a/vpr/src/place/move_generator.h +++ b/vpr/src/place/move_generator.h @@ -23,14 +23,17 @@ struct MoveOutcomeStats { /** * @brief A Struct to hold statistics about the different move types * - * num_moves: save the number of proposed moves of each type (e.g. indexed from 0 to NUM_PL_MOVE_TYPES-1 ) - * accepted_moves: save the number of accepted moves of each type (e.g. indexed from 0 to NUM_PL_MOVE_TYPES-1 ) - * aborted_moves: save the number of aborted moves of each type (e.g. indexed from 0 to NUM_PL_MOVE_TYPES-1 ) + * num_moves: save the number of proposed moves of each type (e.g. [0..NUM_PL_MOVE_TYPES-1]) + * blk_type_moves: save the block type index of each proposed move (e.g. [0..NUM_PL_MOVE_TYPES-1][0..t_logical_block_type.size()-2]) + * The RL agent will not perform any move with 'EMPTY' type, available block types wil be t_logical_block_type.size()-2. + * accepted_moves: save the number of accepted moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES-1][0..t_logical_block_type.size()-2] ) + * aborted_moves: save the number of aborted moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES-1][0..t_logical_block_type.size()-2] ) */ struct MoveTypeStat { - std::vector num_moves; - std::vector accepted_moves; - std::vector aborted_moves; + std::vector num_moves; // SARA_TODO: seems to be redundant + std::vector> blk_type_moves; + std::vector> accepted_moves; + std::vector> aborted_moves; }; /** @@ -56,7 +59,7 @@ class MoveGenerator { * @param criticalities: the placer criticalities, useful for timing directed moves * @param blk_type: function proposes a move with given block type if specified. */ - virtual e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) = 0; + virtual e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) = 0; /** * @brief Recieves feedback about the outcome of the previously proposed move diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 276bb35138b..cf1f4cc9fc2 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -534,7 +534,7 @@ ClusterBlockId pick_from_block() { //Pick a random block with a specific blk_type to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() -ClusterBlockId pick_from_block(t_logical_block_type_ptr blk_type) { +ClusterBlockId pick_from_block(t_logical_block_type blk_type) { /* Some blocks may be fixed, and should never be moved from their * * initial positions. If we randomly selected such a block try * * another random block. * @@ -543,7 +543,7 @@ ClusterBlockId pick_from_block(t_logical_block_type_ptr blk_type) { * loop if all blocks are fixed. */ auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); - t_logical_block_type blk_type_temp = *blk_type; + t_logical_block_type blk_type_temp = blk_type; blk_type_temp.index++; auto blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(blk_type_temp); @@ -609,7 +609,7 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ //Pick a random highly critical block with a specified block type to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() -ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from, t_logical_block_type_ptr blk_type) { +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from, t_logical_block_type blk_type) { auto& place_move_ctx = g_placer_ctx.move(); auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); @@ -630,7 +630,7 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ //Check if picked block type matches with the blk_type specified, and it is not fixed //blk_type from propose move doesn't account for the EMPTY type auto b_from_type = cluster_ctx.clb_nlist.block_type(b_from); - if (b_from_type->index == blk_type->index + 1) { + if (b_from_type->index == blk_type.index + 1) { if (place_ctx.block_locs[b_from].is_fixed) { return ClusterBlockId::INVALID(); //Block is fixed, cannot move } diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 55746672818..d9be3aa1d57 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -122,7 +122,7 @@ ClusterBlockId pick_from_block(); * * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found */ -ClusterBlockId pick_from_block(t_logical_block_type_ptr blk_type); +ClusterBlockId pick_from_block(t_logical_block_type blk_type); /** * @brief Select a random highly critical block to be swapped with another block @@ -138,7 +138,7 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ * * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found */ -ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from, t_logical_block_type_ptr blk_type); +ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_from, t_logical_block_type blk_type); bool find_to_loc_uniform(t_logical_block_type_ptr type, float rlim, diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 9b702544540..b306ecf4d17 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -710,10 +710,9 @@ void try_place(const t_placer_opts& placer_opts, MoveTypeStat move_type_stat; move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size() + 1, 0); - move_type_stat.accepted_moves.resize( - placer_opts.place_static_move_prob.size() + 1, 0); - move_type_stat.aborted_moves.resize( - placer_opts.place_static_move_prob.size() + 1, 0); + move_type_stat.blk_type_moves.resize(placer_opts.place_static_move_prob.size() + 1, std::vector(device_ctx.logical_block_types.size(), 0.) ); + move_type_stat.accepted_moves.resize(placer_opts.place_static_move_prob.size() + 1, std::vector(device_ctx.logical_block_types.size(), 0.) ); + move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size() + 1, std::vector(device_ctx.logical_block_types.size(), 0.) ); /* Get the first range limiter */ first_rlim = (float)max(device_ctx.grid.width() - 1, @@ -1337,7 +1336,7 @@ static e_move_result try_swap(const t_annealing_state* state, crit_params.crit_limit = placer_opts.place_crit_limit; e_move_type move_type; //move type number - t_logical_block_type_ptr blk_type; //blk type that is choosed to be moved by the agent + t_logical_block_type move_blk_type; //blk type that is chosen to be moved by the agent num_ts_called++; @@ -1368,10 +1367,12 @@ static e_move_result try_swap(const t_annealing_state* state, #endif //NO_GRAPHICS } else { //Generate a new move (perturbation) used to explore the space of possible placements - create_move_outcome = move_generator.propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); + create_move_outcome = move_generator.propose_move(blocks_affected, move_type, move_blk_type , rlim, placer_opts, criticalities); } ++move_type_stat.num_moves[(int)move_type]; + ++move_type_stat.blk_type_moves[(int)move_type][move_blk_type.index]; + LOG_MOVE_STATS_PROPOSED(t, blocks_affected); e_move_result move_outcome = ABORTED; @@ -1384,7 +1385,7 @@ static e_move_result try_swap(const t_annealing_state* state, move_outcome = ABORTED; - ++move_type_stat.aborted_moves[(int)move_type]; + ++move_type_stat.aborted_moves[(int)move_type][move_blk_type.index]; } else { VTR_ASSERT(create_move_outcome == e_create_move::VALID); @@ -1495,7 +1496,7 @@ static e_move_result try_swap(const t_annealing_state* state, /* Update clb data structures since we kept the move. */ commit_move_blocks(blocks_affected); - ++move_type_stat.accepted_moves[(int)move_type]; + ++move_type_stat.accepted_moves[(int)move_type][move_blk_type.index]; //Highlights the new block when manual move is selected. #ifndef NO_GRAPHICS @@ -3008,22 +3009,31 @@ static void print_placement_move_types_stats( float total_moves = std::accumulate(move_type_stat.num_moves.begin(), move_type_stat.num_moves.end(), 0.0); + auto& device_ctx = g_vpr_ctx.device(); std::string move_name; VTR_LOG("\n\nPercentage of different move types:\n"); - for (size_t i = 0; i < move_type_stat.num_moves.size(); i++) { - moves = move_type_stat.num_moves[i]; - if (moves != 0) { - accepted = move_type_stat.accepted_moves[i]; - aborted = move_type_stat.aborted_moves[i]; - rejected = moves - (accepted + aborted); - move_name = move_type_to_string(e_move_type(i)); - VTR_LOG( - "\t%.17s move: %2.2f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", - move_name.c_str(), 100 * moves / total_moves, - 100 * accepted / moves, 100 * rejected / moves, - 100 * aborted / moves); + + + for(auto itype : device_ctx.logical_block_types){ + if(itype.index == 0){ + continue; //EMPTY type + } + for(size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++){ + move_name = move_type_to_string(e_move_type(imove)); + moves = move_type_stat.blk_type_moves[imove][itype.index-1]; + if(moves != 0) { + accepted = move_type_stat.accepted_moves[imove][itype.index - 1]; + aborted = move_type_stat.aborted_moves[imove][itype.index - 1]; + rejected = moves - (accepted + aborted); + VTR_LOG( + "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", + move_name.c_str(), itype.name, 100 * moves / total_moves, + 100 * accepted / moves, 100 * rejected / moves, + 100 * aborted / moves); + } } + VTR_LOG("\n"); } VTR_LOG("\n"); } diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 30bd5bfbad7..e5b1a34fa61 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -38,11 +38,11 @@ SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr karmed_bandit_agent = std::move(agent); } -e_create_move SimpleRLMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move SimpleRLMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { //SARA_TODO auto propose_action_out = karmed_bandit_agent->propose_action(); move_type = propose_action_out.move_type; - blk_type = &propose_action_out.blk_type; + blk_type = propose_action_out.blk_type; return avail_moves[(int)move_type]->propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); } diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index bd5bdd461ac..da8044d4078 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -105,7 +105,7 @@ class SimpleRLMoveGenerator : public MoveGenerator { SimpleRLMoveGenerator(std::unique_ptr& agent); // Updates affected_blocks with the proposed move, while respecting the current rlim - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); // Recieves feedback about the outcome of the previously proposed move void process_outcome(double reward, e_reward_function reward_fun); diff --git a/vpr/src/place/static_move_generator.cpp b/vpr/src/place/static_move_generator.cpp index bcf08a413f0..3b6001cc3d5 100644 --- a/vpr/src/place/static_move_generator.cpp +++ b/vpr/src/place/static_move_generator.cpp @@ -26,7 +26,7 @@ void StaticMoveGenerator::initialize_move_prob(const std::vector& prob) { total_prob = cumm_move_probs[cumm_move_probs.size() - 1]; } -e_create_move StaticMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move StaticMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { float rand_num = vtr::frand() * total_prob; for (size_t i = 0; i < cumm_move_probs.size(); i++) { if (rand_num <= cumm_move_probs[i]) { diff --git a/vpr/src/place/static_move_generator.h b/vpr/src/place/static_move_generator.h index fc0007ebebe..b9c134360d5 100644 --- a/vpr/src/place/static_move_generator.h +++ b/vpr/src/place/static_move_generator.h @@ -24,6 +24,6 @@ class StaticMoveGenerator : public MoveGenerator { public: StaticMoveGenerator(const std::vector& prob); - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); }; #endif diff --git a/vpr/src/place/uniform_move_generator.cpp b/vpr/src/place/uniform_move_generator.cpp index 9817680042f..c4fe7ed6a82 100644 --- a/vpr/src/place/uniform_move_generator.cpp +++ b/vpr/src/place/uniform_move_generator.cpp @@ -2,12 +2,12 @@ #include "globals.h" #include "place_constraints.h" -e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { +e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); ClusterBlockId b_from; - if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); diff --git a/vpr/src/place/uniform_move_generator.h b/vpr/src/place/uniform_move_generator.h index 1976c41271c..34cdbfcce41 100644 --- a/vpr/src/place/uniform_move_generator.h +++ b/vpr/src/place/uniform_move_generator.h @@ -9,7 +9,7 @@ * a range limit centered on from_block in the compressed block grid space */ class UniformMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/); }; #endif diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index ef48c2ddbb6..beed108a704 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -4,9 +4,9 @@ #include "directed_moves_util.h" #include "place_constraints.h" -e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { ClusterBlockId b_from; - if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); diff --git a/vpr/src/place/weighted_centroid_move_generator.h b/vpr/src/place/weighted_centroid_move_generator.h index a929803d03b..6d6dc20359a 100644 --- a/vpr/src/place/weighted_centroid_move_generator.h +++ b/vpr/src/place/weighted_centroid_move_generator.h @@ -13,7 +13,7 @@ * "Learn to Place: FPGA Placement using Reinforcement Learning and Directed Moves", ICFPT2020 */ class WeightedCentroidMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); }; #endif diff --git a/vpr/src/place/weighted_median_move_generator.cpp b/vpr/src/place/weighted_median_move_generator.cpp index ac3b1c20e80..3fca049facb 100644 --- a/vpr/src/place/weighted_median_move_generator.cpp +++ b/vpr/src/place/weighted_median_move_generator.cpp @@ -8,14 +8,14 @@ static void get_bb_cost_for_net_excluding_block(ClusterNetId net_id, ClusterBlockId block_id, ClusterPinId moving_pin_id, const PlacerCriticalities* criticalities, t_bb_cost* coords, bool& skip_net); -e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { +e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_move_ctx = g_placer_ctx.mutable_move(); ClusterBlockId b_from; - if (blk_type->index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); diff --git a/vpr/src/place/weighted_median_move_generator.h b/vpr/src/place/weighted_median_move_generator.h index 9c4e743a9d1..0ebc2d20b1c 100644 --- a/vpr/src/place/weighted_median_move_generator.h +++ b/vpr/src/place/weighted_median_move_generator.h @@ -13,7 +13,7 @@ * "Learn to Place: FPGA Placement using Reinforcement Learning and Directed Moves", ICFPT2020 */ class WeightedMedianMoveGenerator : public MoveGenerator { - e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type_ptr blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); + e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities); }; #endif From 1b1b2f8e4b1dd5203a9302e500a8bf93608e2752 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 5 Dec 2022 11:26:24 -0500 Subject: [PATCH 07/81] minor bug fixed in manual moves in draw folder --- vpr/src/draw/manual_moves.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/draw/manual_moves.cpp b/vpr/src/draw/manual_moves.cpp index 4b6c1072bd8..6ae3ccb3878 100644 --- a/vpr/src/draw/manual_moves.cpp +++ b/vpr/src/draw/manual_moves.cpp @@ -311,7 +311,7 @@ e_create_move manual_move_display_and_propose(ManualMoveGenerator& manual_move_g update_screen(ScreenUpdatePriority::MAJOR, " ", PLACEMENT, nullptr); move_type = e_move_type::MANUAL_MOVE; t_logical_block_type blk_type; //no need to specify block type in manual move "propose_move" function - return manual_move_generator.propose_move(blocks_affected, move_type, &blk_type, rlim, placer_opts, criticalities); + return manual_move_generator.propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); } #endif /*NO_GRAPHICS*/ From 9e40cea83424a5c90f581931c7d1352097bf3c26 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 7 Dec 2022 16:29:56 -0500 Subject: [PATCH 08/81] softmax agent bug found and fixed --- vpr/src/place/simpleRL_move_generator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index e5b1a34fa61..df41d6a6dad 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -293,7 +293,7 @@ void SoftmaxAgent::set_action_prob() { float sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); if (sum_q == 0.0) { //action probabilities need to be initialized with equal values - std::fill(action_prob_.begin(), action_prob_.end(), 1.0 / num_available_actions_ * num_available_types_); + std::fill(action_prob_.begin(), action_prob_.end(), 1.0 / (num_available_actions_ * num_available_types_)); } else { // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { From 088d3732ca8eccc91b0a7d0c9844b62533f2151c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 7 Dec 2022 17:43:39 -0500 Subject: [PATCH 09/81] update the initial q values to consider ratio of available block types in the netlist --- vpr/src/place/place.cpp | 2 -- vpr/src/place/simpleRL_move_generator.cpp | 14 ++++++++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index b306ecf4d17..8b029188b9d 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -3013,8 +3013,6 @@ static void print_placement_move_types_stats( std::string move_name; VTR_LOG("\n\nPercentage of different move types:\n"); - - for(auto itype : device_ctx.logical_block_types){ if(itype.index == 0){ continue; //EMPTY type diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index df41d6a6dad..4d66a972ee6 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -292,8 +292,18 @@ void SoftmaxAgent::set_action_prob() { // calculate the sum of all scaled clipped expnential q values float sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); - if (sum_q == 0.0) { //action probabilities need to be initialized with equal values - std::fill(action_prob_.begin(), action_prob_.end(), 1.0 / (num_available_actions_ * num_available_types_)); + auto& cluster_ctx = g_vpr_ctx.clustering(); + int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); + + if(sum_q == num_available_types_ * num_available_actions_) { + //action probabilities need to be initialized based on availability of the block type in the netlist + for (size_t i = 0; i < num_available_actions_ * num_available_types_; i++) { + t_logical_block_type blk_type; + blk_type.index = i / num_available_actions_ + 1; //excluding the EMPTY type by adding one to the blk type index + auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); + action_prob_[i] = (float) num_blocks / num_total_blocks; + action_prob_[i] /= (num_available_actions_ * num_available_types_); + } } else { // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { From fb6a581c70a32fc22edbf3b49afdf727062a2efe Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 8 Dec 2022 18:01:56 -0500 Subject: [PATCH 10/81] save moves for each temp to files to visualize it in python script --- vpr/src/place/place.cpp | 35 ++++++++++++++++++++--- vpr/src/place/simpleRL_move_generator.cpp | 2 +- 2 files changed, 32 insertions(+), 5 deletions(-) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 8b029188b9d..1de0e172160 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -155,6 +155,11 @@ static int num_swap_accepted = 0; static int num_swap_aborted = 0; static int num_ts_called = 0; +/* This variable keeps track of each move type and block type frequency + proposed by the RL agent at any specific temperature.*/ +static std::vector proposed_move_per_temp; +static FILE* proposed_move_agent_per_temp; + /* Expected crossing counts for nets with different #'s of pins. From * * ICCAD 94 pp. 690 - 695 (with linear interpolation applied by me). * * Multiplied to bounding box of a net to better estimate wire length * @@ -417,6 +422,8 @@ static void print_placement_swaps_stats(const t_annealing_state& state); static void print_placement_move_types_stats( const MoveTypeStat& move_type_stat); +static void save_proposed_move_per_temp (); + /*****************************************************************************/ void try_place(const t_placer_opts& placer_opts, t_annealing_sched annealing_sched, @@ -708,11 +715,15 @@ void try_place(const t_placer_opts& placer_opts, //allocate move type statistics vectors MoveTypeStat move_type_stat; - move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size() + 1, + move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size(), 0); - move_type_stat.blk_type_moves.resize(placer_opts.place_static_move_prob.size() + 1, std::vector(device_ctx.logical_block_types.size(), 0.) ); - move_type_stat.accepted_moves.resize(placer_opts.place_static_move_prob.size() + 1, std::vector(device_ctx.logical_block_types.size(), 0.) ); - move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size() + 1, std::vector(device_ctx.logical_block_types.size(), 0.) ); + move_type_stat.blk_type_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.) ); + move_type_stat.accepted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.) ); + move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.) ); + + //allocate move type statistics vector performed by the agent for each temperature + proposed_move_per_temp.resize((device_ctx.logical_block_types.size()-1) * (placer_opts.place_static_move_prob.size()),0); + proposed_move_agent_per_temp = vtr::fopen("agent_move_info.txt","w"); /* Get the first range limiter */ first_rlim = (float)max(device_ctx.grid.width() - 1, @@ -811,6 +822,9 @@ void try_place(const t_placer_opts& placer_opts, print_place_status(state, stats, temperature_timer.elapsed_sec(), critical_path.delay(), sTNS, sWNS, tot_iter); + + save_proposed_move_per_temp(); + if (placer_opts.place_algorithm.is_timing_driven() && placer_opts.place_agent_multistate && agent_state == EARLY_IN_THE_ANNEAL) { @@ -981,6 +995,8 @@ void try_place(const t_placer_opts& placer_opts, print_timing_stats("Placement Total ", timing_ctx.stats, pre_place_timing_stats); + fclose(proposed_move_agent_per_temp); + VTR_LOG("update_td_costs: connections %g nets %g sum_nets %g total %g\n", p_runtime_ctx.f_update_td_costs_connections_elapsed_sec, p_runtime_ctx.f_update_td_costs_nets_elapsed_sec, @@ -1372,6 +1388,7 @@ static e_move_result try_swap(const t_annealing_state* state, ++move_type_stat.num_moves[(int)move_type]; ++move_type_stat.blk_type_moves[(int)move_type][move_blk_type.index]; + ++proposed_move_per_temp[(move_blk_type.index * (move_type_stat.blk_type_moves.size())) + (int)move_type]; LOG_MOVE_STATS_PROPOSED(t, blocks_affected); @@ -2872,6 +2889,16 @@ void print_clb_placement(const char* fname) { } #endif +static void save_proposed_move_per_temp(){ + if(proposed_move_agent_per_temp){ + for(auto iaction = 0; iaction < proposed_move_per_temp.size(); iaction++){ + fprintf(proposed_move_agent_per_temp,"%d\t",proposed_move_per_temp[iaction]); + proposed_move_per_temp[iaction] = 0; + } + fprintf(proposed_move_agent_per_temp,"\n"); + } +} + static void free_try_swap_arrays() { g_vpr_ctx.mutable_placement().compressed_block_grids.clear(); } diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 4d66a972ee6..eb2d01e3b95 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -310,7 +310,7 @@ void SoftmaxAgent::set_action_prob() { action_prob_[i] = exp_q_[i] / sum_q; } } - + //sara_TODO : rename num_available_actions_ to moves // normalize all the action probabilities to guarantee the sum(all actyion probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), From 2dece1998a03d773fa1efbe755d99d24927d3fda Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 9 Dec 2022 16:44:09 -0500 Subject: [PATCH 11/81] Refactoring the agent code --- vpr/src/place/simpleRL_move_generator.cpp | 94 +++++++++++------------ vpr/src/place/simpleRL_move_generator.h | 11 ++- 2 files changed, 51 insertions(+), 54 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index eb2d01e3b95..64db77e760f 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -39,7 +39,6 @@ SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr } e_create_move SimpleRLMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { - //SARA_TODO auto propose_action_out = karmed_bandit_agent->propose_action(); move_type = propose_action_out.move_type; blk_type = propose_action_out.blk_type; @@ -58,7 +57,7 @@ void SimpleRLMoveGenerator::process_outcome(double reward, e_reward_function rew void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_fun) { ++num_action_chosen_[last_action_]; if (reward_fun == RUNTIME_AWARE || reward_fun == WL_BIASED_RUNTIME_AWARE) - reward /= time_elapsed_[last_action_ % num_available_actions_]; + reward /= time_elapsed_[last_action_ % num_available_moves_]; //Determine step size float step = 0.; @@ -80,13 +79,13 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ fprintf(agent_info_file_, "%zu,", last_action_); fprintf(agent_info_file_, "%g,", reward); - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { fprintf(agent_info_file_, "%g,", q_[i]); } - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { fprintf(agent_info_file_, "%zu", num_action_chosen_[i]); - if (i != num_available_actions_ - 1) { + if (i != num_available_moves_ * num_available_types_ - 1) { fprintf(agent_info_file_, ","); } } @@ -99,16 +98,16 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ * E-greedy agent implementation * * * * */ -EpsilonGreedyAgent::EpsilonGreedyAgent(size_t num_actions, float epsilon) { +EpsilonGreedyAgent::EpsilonGreedyAgent(size_t num_moves, float epsilon) { set_epsilon(epsilon); - num_available_actions_ = num_actions; + num_available_moves_ = num_moves; num_available_types_ = 1; init_q_scores(); } -EpsilonGreedyAgent::EpsilonGreedyAgent(size_t num_actions, size_t num_types, float epsilon) { +EpsilonGreedyAgent::EpsilonGreedyAgent(size_t num_moves, size_t num_types, float epsilon) { set_epsilon(epsilon); - num_available_actions_ = num_actions; + num_available_moves_ = num_moves; num_available_types_ = num_types; init_q_scores(); } @@ -118,16 +117,16 @@ EpsilonGreedyAgent::~EpsilonGreedyAgent() { } void EpsilonGreedyAgent::init_q_scores() { - q_ = std::vector(num_available_actions_ * num_available_types_, 0.); - num_action_chosen_ = std::vector(num_available_actions_ * num_available_types_, 0); + q_ = std::vector(num_available_moves_ * num_available_types_, 0.); + num_action_chosen_ = std::vector(num_available_moves_ * num_available_types_, 0); - cumm_epsilon_action_prob_ = std::vector(num_available_actions_ * num_available_types_, 1.0 / (num_available_actions_ * num_available_types_)); + cumm_epsilon_action_prob_ = std::vector(num_available_moves_ * num_available_types_, 1.0 / (num_available_moves_ * num_available_types_)); if (agent_info_file_) { fprintf(agent_info_file_, "action,reward,"); - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { fprintf(agent_info_file_, "q%zu,", i); } - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { fprintf(agent_info_file_, "n%zu,", i); } fprintf(agent_info_file_, "\n"); @@ -168,9 +167,9 @@ t_propose_action EpsilonGreedyAgent::propose_action() { float p = vtr::frand(); auto itr = std::lower_bound(cumm_epsilon_action_prob_.begin(), cumm_epsilon_action_prob_.end(), p); auto action_type_q_pos = itr - cumm_epsilon_action_prob_.begin(); - action = (action_type_q_pos) % num_available_actions_; + action = (action_type_q_pos) % num_available_moves_; if (num_available_types_ != 1) { - blk_type.index = action_type_q_pos / num_available_actions_; + blk_type.index = action_type_q_pos / num_available_moves_; } } else { @@ -179,14 +178,14 @@ t_propose_action EpsilonGreedyAgent::propose_action() { auto itr = std::max_element(q_.begin(), q_.end()); VTR_ASSERT(itr != q_.end()); auto action_type_q_pos = itr - q_.begin(); - action = action_type_q_pos % num_available_actions_; + action = action_type_q_pos % num_available_moves_; if (num_available_types_ != 1) { - blk_type.index = action_type_q_pos / num_available_actions_; + blk_type.index = action_type_q_pos / num_available_moves_; } } - VTR_ASSERT(action < num_available_actions_); + VTR_ASSERT(action < num_available_moves_); - last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_actions_); + last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_moves_); t_propose_action propose_action; propose_action.move_type = (e_move_type)action; @@ -202,10 +201,10 @@ void EpsilonGreedyAgent::set_epsilon(float epsilon) { void EpsilonGreedyAgent::set_epsilon_action_prob() { //initialize to equal probabilities - std::vector epsilon_prob(num_available_actions_ * num_available_types_, 1.0 / num_available_actions_ * num_available_types_); + std::vector epsilon_prob(num_available_moves_ * num_available_types_, 1.0 / num_available_moves_ * num_available_types_); float accum = 0; - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { accum += epsilon_prob[i]; cumm_epsilon_action_prob_[i] = accum; } @@ -216,14 +215,14 @@ void EpsilonGreedyAgent::set_epsilon_action_prob() { * Softmax agent implementation * * * * */ -SoftmaxAgent::SoftmaxAgent(size_t num_actions) { - num_available_actions_ = num_actions; +SoftmaxAgent::SoftmaxAgent(size_t num_moves) { + num_available_moves_ = num_moves; num_available_types_ = 1; init_q_scores(); } -SoftmaxAgent::SoftmaxAgent(size_t num_actions, size_t num_types) { - num_available_actions_ = num_actions; +SoftmaxAgent::SoftmaxAgent(size_t num_moves, size_t num_types) { + num_available_moves_ = num_moves; num_available_types_ = num_types; init_q_scores(); } @@ -233,18 +232,18 @@ SoftmaxAgent::~SoftmaxAgent() { } void SoftmaxAgent::init_q_scores() { - q_ = std::vector(num_available_actions_ * num_available_types_, 0.); - exp_q_ = std::vector(num_available_actions_ * num_available_types_, 0.); - num_action_chosen_ = std::vector(num_available_actions_ * num_available_types_, 0); - action_prob_ = std::vector(num_available_actions_ * num_available_types_, 0.); + q_ = std::vector(num_available_moves_ * num_available_types_, 0.); + exp_q_ = std::vector(num_available_moves_ * num_available_types_, 0.); + num_action_chosen_ = std::vector(num_available_moves_ * num_available_types_, 0); + action_prob_ = std::vector(num_available_moves_ * num_available_types_, 0.); - cumm_action_prob_ = std::vector(num_available_actions_ * num_available_types_); + cumm_action_prob_ = std::vector(num_available_moves_ * num_available_types_); if (agent_info_file_) { fprintf(agent_info_file_, "action,reward,"); - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { fprintf(agent_info_file_, "q%zu,", i); } - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { fprintf(agent_info_file_, "n%zu,", i); } fprintf(agent_info_file_, "\n"); @@ -261,22 +260,22 @@ t_propose_action SoftmaxAgent::propose_action() { float p = vtr::frand(); auto itr = std::lower_bound(cumm_action_prob_.begin(), cumm_action_prob_.end(), p); auto action_type_q_pos = itr - cumm_action_prob_.begin(); - action = (action_type_q_pos) % num_available_actions_; + action = (action_type_q_pos) % num_available_moves_; if (num_available_types_ != 1) { - blk_type.index = action_type_q_pos / num_available_actions_; + blk_type.index = action_type_q_pos / num_available_moves_; } //To take care that the last element in cumm_action_prob_ might be less than 1 by a small value - if (action_type_q_pos == num_available_actions_ * num_available_types_) { - action = num_available_actions_ - 1; + if (action_type_q_pos == num_available_moves_ * num_available_types_) { + action = num_available_moves_ - 1; if (num_available_types_ > 1) { blk_type.index = num_available_types_ - 1; } } - VTR_ASSERT(action < num_available_actions_); + VTR_ASSERT(action < num_available_moves_); - last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_actions_); + last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_moves_); t_propose_action propose_action; propose_action.move_type = (e_move_type)action; @@ -295,31 +294,30 @@ void SoftmaxAgent::set_action_prob() { auto& cluster_ctx = g_vpr_ctx.clustering(); int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); - if(sum_q == num_available_types_ * num_available_actions_) { + if(sum_q == num_available_types_ * num_available_moves_) { //action probabilities need to be initialized based on availability of the block type in the netlist - for (size_t i = 0; i < num_available_actions_ * num_available_types_; i++) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; i++) { t_logical_block_type blk_type; - blk_type.index = i / num_available_actions_ + 1; //excluding the EMPTY type by adding one to the blk type index + blk_type.index = i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); action_prob_[i] = (float) num_blocks / num_total_blocks; - action_prob_[i] /= (num_available_actions_ * num_available_types_); + action_prob_[i] /= (num_available_moves_ * num_available_types_); } } else { // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { - action_prob_[i] = exp_q_[i] / sum_q; + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { + action_prob_[i] = exp_q_[i] / sum_q; //SARA_TODO: check its logic with Mohamed. } } - //sara_TODO : rename num_available_actions_ to moves // normalize all the action probabilities to guarantee the sum(all actyion probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), - bind2nd(std::plus(), (1.0 - sum_prob) / (num_available_actions_ * num_available_types_))); + bind2nd(std::plus(), (1.0 - sum_prob) / (num_available_moves_ * num_available_types_))); //calulcate the accumulative action probability of each action // e.g. if we have 5 actions with equal probability of 0.2, the cumm_action_prob will be {0.2,0.4,0.6,0.8,1.0} float accum = 0; - for (size_t i = 0; i < num_available_actions_ * num_available_types_; ++i) { + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { accum += action_prob_[i]; cumm_action_prob_[i] = accum; } diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index da8044d4078..a33c1e360a4 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -15,13 +15,12 @@ class KArmedBanditAgent { public: virtual ~KArmedBanditAgent() {} - //SARA_TODO virtual t_propose_action propose_action() = 0; void process_outcome(double, e_reward_function); protected: float exp_alpha_ = -1; //Step size for q_ updates (< 0 implies use incremental average) - size_t num_available_actions_; //Number of arms of the karmed bandit problem (k) + size_t num_available_moves_; //Number of arms of the karmed bandit problem (k) size_t num_available_types_; //Number of types that each arm of the karmed bandit problem can pull with std::vector num_action_chosen_; //Number of times each arm has been pulled (n) std::vector q_; //Estimated value of each arm (Q) @@ -43,8 +42,8 @@ class KArmedBanditAgent { */ class EpsilonGreedyAgent : public KArmedBanditAgent { public: - EpsilonGreedyAgent(size_t num_actions, float epsilon); - EpsilonGreedyAgent(size_t num_actions, size_t num_types, float epsilon); + EpsilonGreedyAgent(size_t num_moves, float epsilon); + EpsilonGreedyAgent(size_t num_moves, size_t num_types, float epsilon); ~EpsilonGreedyAgent(); t_propose_action propose_action() override; //Returns the type of the next action as well as the block type the agent wishes to perform @@ -69,8 +68,8 @@ class EpsilonGreedyAgent : public KArmedBanditAgent { */ class SoftmaxAgent : public KArmedBanditAgent { public: - SoftmaxAgent(size_t num_actions); - SoftmaxAgent(size_t num_actions, size_t num_types); + SoftmaxAgent(size_t num_moves); + SoftmaxAgent(size_t num_moves, size_t num_types); ~SoftmaxAgent(); //void process_outcome(double reward, std::string reward_fun) override; //Updates the agent based on the reward of the last proposed action From faaaac5d5682b62cc3ad053cee11b48e60d2bf2f Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 9 Dec 2022 16:47:34 -0500 Subject: [PATCH 12/81] minor bug in the epsilon greedy agent --- vpr/src/place/simpleRL_move_generator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 64db77e760f..f0981415138 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -201,7 +201,7 @@ void EpsilonGreedyAgent::set_epsilon(float epsilon) { void EpsilonGreedyAgent::set_epsilon_action_prob() { //initialize to equal probabilities - std::vector epsilon_prob(num_available_moves_ * num_available_types_, 1.0 / num_available_moves_ * num_available_types_); + std::vector epsilon_prob(num_available_moves_ * num_available_types_, 1.0 / (num_available_moves_ * num_available_types_)); float accum = 0; for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { From d6659b55b2ac20638e0e1973f479be834cc5dcaf Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 9 Dec 2022 17:27:46 -0500 Subject: [PATCH 13/81] force agent not to pick not available block types in the netlist --- vpr/src/place/RL_agent_util.cpp | 16 +++++++++++++++- vpr/src/place/move_utils.cpp | 15 +++++++++++++-- vpr/src/place/move_utils.h | 4 ++++ 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index 1ddcc93954f..11c704282b1 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -64,8 +64,22 @@ void create_move_generators(std::unique_ptr& move_generator, std: //should change this to a command-line options, hence the user can choose //the level of the agent intelligent //default option now becomes considering move_type as well as block_types + auto& device_ctx = g_vpr_ctx.device(); - int logical_blk_types_count = device_ctx.logical_block_types.size() - 1;//excluding the EMPTY type + //int logical_blk_types_count = device_ctx.logical_block_types.size() - 1;//excluding the EMPTY type + auto& cluster_ctx = g_vpr_ctx.clustering(); + int logical_blk_types_count = 0; + int agent_type_index = 0; + for(auto itype : device_ctx.logical_block_types){ + if(itype.index == 0) //ignore empty type + continue; + auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); + if(blk_per_type.size() != 0){ + logical_to_agent_map.insert(std::pair(agent_type_index,itype.index)); + agent_type_index++; + logical_blk_types_count++; + } + } if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index cf1f4cc9fc2..7f914367d6d 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -497,6 +497,15 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& return empty_locs; } +//SARA_TODO: +std::unordered_map logical_to_agent_map; +int convert_agent_to_logical_block_type(int agent_block_type_index){ + if(logical_to_agent_map.count(agent_block_type_index)){ + return logical_to_agent_map[agent_block_type_index]; + } + //invalid block type + return -1; +} //Pick a random block to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() @@ -543,8 +552,10 @@ ClusterBlockId pick_from_block(t_logical_block_type blk_type) { * loop if all blocks are fixed. */ auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); - t_logical_block_type blk_type_temp = blk_type; - blk_type_temp.index++; +// t_logical_block_type blk_type_temp = blk_type; +// blk_type_temp.index++; + t_logical_block_type blk_type_temp; + blk_type_temp.index = convert_agent_to_logical_block_type(blk_type.index); auto blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(blk_type_temp); //no blocks with this type is available diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index d9be3aa1d57..64c278eb3bd 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -233,4 +233,8 @@ bool intersect_range_limit_with_floorplan_constraints(t_logical_block_type_ptr t std::string e_move_result_to_string(e_move_result move_outcome); +//SARA_TODO: find a better location for these +extern std::unordered_map logical_to_agent_map; +int convert_agent_to_logical_block_type(int agent_block_type_index); + #endif From cc80b2b5aba1c4b538d70bac3464604cf12a302c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 14 Dec 2022 11:01:56 -0500 Subject: [PATCH 14/81] Update code to pass only available block types to the agent --- comparison_output.xlsx | Bin 40283 -> 0 bytes vpr/src/place/move_utils.cpp | 4 ++++ vpr/src/place/move_utils.h | 1 + vpr/src/place/place.cpp | 15 ++++++++------- vpr/src/place/simpleRL_move_generator.cpp | 5 ++++- 5 files changed, 17 insertions(+), 8 deletions(-) delete mode 100644 comparison_output.xlsx diff --git a/comparison_output.xlsx b/comparison_output.xlsx deleted file mode 100644 index 157475aa4f4d123ed7c1d4a24eb1a09f9545cd3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40283 zcmdSBbx>U2vIdH~ySrxy8eD?ALxKcnaCf)h8r(ft5+s8LcMl%i-QD#K$**3WbL*W` zx9aAfSF2`L&)R!>ukLSs-M!arP?m#+!GVB)K!7OHVA6mWQ7{SsfBFu7VSryIcE-w% zcJ@vzhW7Ta-EFKDVg!+)*f7MO2OOH~MA}7--j1qPg3!H)Sw5MFfkb^JK8LjPQE#&yG$mZI^nm_Q~tN<(yEG;9)qX(3JL-O z^IxZHZ087kneWf|cEwIsln{N`&83EZI4qTEJp!2O^V zNS>aj^V_NoqK`d7<4y= z-)j6qbvH6bB~JC1&^>V_p3GUo3DK-FxNuET&5Dbg*Bcw%f&@!MdG zBZPeL`(AhbxTAMH^5>!L-AJBfMcJ%Ock+Nov{Q;@Id2Hw$I3use3n%_XB(Bwq;D-h zI;um@S4mQpaM9_rd^PRqQ&#Ai^TF>%H^|3sarn`Ay~;qXv!c)bmllCE#8Uqdj zB9k5h0vqfdcWV}BbD$0I&pX?Te-5>EoaT6Ne2*(e-Oa9SkbAfSYOArGEL`WS(}E5a z$%8R9qpdwm;)48IrMNH#lTi=j6&f-GU;w-K!xB>4J3JoeN3V@`Lc$Wy+zn<~=BFC# zSe91av(sRTuo4zmoU|bo%Ino=TR?R3`1E6AbuI)(BFMSp3{HJm(IH}?p4zLPUwjv2 zVVy@HWn$o?2QYs-s;;7Kr%zG6NzQSDJE$HFEP%v*FGBYttorQMy8B^nNeDQy%SXx{ zV9QFZN#QqaSG=L99k#08(bZ;YCj8E-cWhkRKd|2?5w=0*s$c>afgP2fFH3XS)%&XJ zFehqY&Y9DOXl4D>ou_tiJkp*7W<{kjyCdtuy7jXNVs(MVsL9OLTzOp4muNMmiEE$b z{S5O=q-Y(b2`jh7iJ0)7vQc-`mQ$tB&hqe{ucOZU7IgHFaAe)1_@yRMUx)G!i*|%nciuJT)???AXExSs|&G$|O*q5!sUS zLT;*izG1Fl`_#1{^esn+U4OMp7kr6&U8O_IEdOMD~Me}&Bp~ipI~n@-yo615tBlh5m!l423a(okX6vcq?dJIz7iEO zBIF`+ticPYbtnxo(8lT+b5|U%#(dEF_9j8dpzq*koXhZ392#c49yj>h;mA*ztz;oQ zvgwEU4w^8J*?OHa?K^>krjPZ$A-_1R0WsH7llZb5=yb)xyX>6s1?gId%|Y)hbH0Rf z3YCztBf*~jAQRg3bVuS&?rBmk5A=e39-HIt_<9rA#_RXmXQc4>$Aw_tcpW#jk6HUf zq|TD0txnf{IosSc=W7Pz_l`gNdetiu7-x8M+72Ggg|bf%?`CO&D$=!>sqsF^1yqU9 z)IUTHoG^7E?wIJ%A`Yrg0J$TuvPFq)chxRslcqN-elXMv=xpp(&rpG zRK!EZk~U7nFOtnaCsb?MekIeT!P6?iQHzyA(6qkQ>!7GskL6m64#obXk+;+n$Yxe_ zw#f1xW@?t8VkerKD&FD;+x z(Txe|ECEHGL;{D0&%U926#oeh8}esjzxWAMph*#lf9f4_^BKwyM%>{tAznWTz{e0p zy>VJBoQO&kSW0}y_2c6NOSh=$J3xR-%QI7;V& zQ$H5RsI2IFS&vK|lIuXaO$Zx#SNOmH>-fjxdPokP%p>mSM!RoQ4 z)p8YVC?W|gJRPG}c67z89!9o8{(AyhJ&YyEga#)MLI?EO-(8v@QNw%Z25?rKb(j-HV z5N&=}wzRKOxoD9!<&cx&tbMA3XX`c~$F!@11KY2!7JQmlMmV>P=GVAn(v8+UF$ZsT z`3-dJ#nNAQaRwN)`RuyOwWNVnV`-(k-p`)i4cTk=F!M#s^Lsf?-5FMIMR!P*wbie+ z2=x*?Er$q-=j(C+Zb*09+5U|WU+FupNNASn9J9Ju?wsWzxlc^5(EMyuW{b++)C{PW z1=g{iuXieE*_Np28L;#PD!vLwPx@Rxrf8)CXy~^5<#6yd&2Lj6!`6+jg)i?xdn?p? zpJ?NZ98Yk)Pi zv`%34%fWx`5jVsTZ`(ScVR%1Lz`v;7cpFGU@uC(Q(eW)s2CYd#a43Q!g9zGhwRteS z;xB4Lu{J)v6-xdT3pk*VmI`$KJ==fj5k9L33dg|EyNhiHuyv5gr5cCzg9ibIF_d)ZltbTxcuiBcF?(}40wP&;5hsFE1%m#y z2c~Yb_2xRY!x$>k3?X)HPzLeFvC?BCgko%ocVw~-otGGo&Kg9p7GrJU7@c8sWXh(h z{k{N`p(5dy#{%1qH>+4G2ci=kn+Jm7FwGF*ZygD&W+>+ZX9UiYCm2QahMq49|Fs7n zydrQ`Or;+B5yTt%GN)~r^3s3l2o18vfAc?Xpe{_EO zAB?_&qil8s7t2qG|B=z`FLhz`)S+z#D?!Mrnjy(s8B$;dQ{d#*eFlcjz1EL#8D&V0 zd7Ij*oUEdf*gNgHSO%^iteOqfyh3u9-;_jCSCllS8pyMwEROP}kCpP*?j*VLYg;!| zH5O({`6L@u0?A)MgFFo>5%CY=4j?31+cla(aHYrIJF_QC(KdJ#R^b! z6D1jQnWJm{*@=Mut~tsk(AKX^j&YZ&SSxGrYVK2xqCnHg8I3YT<<;)$qVwM_qi>DZ z`eq~+Vh^dw3FsCIh)ri$%R*47i++U}c2^T|45hxq4k4Ye9AGuk{z;H5|CP5h(W1s+ zhP^Bq#klBKgyGL>ZH}R|cf=ur6HGt?&azsR$Rdp%)?Fo}^rKn@x98&BUhPaDUAMgb zCFaF9C3#Y)BGCetFqQ`@#>&{S>Hg`SlQ@$@1*W-MWN+YWPD)@)3Z`6&)v+* zGux@j&nRKLaFRj#wT`-fzN>G`b1q_zTK^3F-?Ps<3z2EzR}c^#KOp~8_ThM0tHF!< zP9$|TN2?Y21z!)o_)uMcIwMc|_63%R1R}Z}MetYg*9uogHqx)P%(v3=O(S)}g4j|Q ztT$!XRJfKzx#ZfKujKY{mZn>MZf=%yd>dN*+^>XNA0D12>PGxL-ES^`MdIf?-Az2Q z*a<)0c2-;;Ptyzg-rNk%hhC3g4UM(QuMcs)P-+&?!9 zjkVMBySeWiIbK>O7ZSR^xYqaexIcXkzRwYUxH>#vy=@h`d0Jfd_2lt6S^K%Kzx;Ig zo7C;Z5-<$1qzSEot$d7u26`&#(f`%dxe`t#G1LXO{)SvJ?x>As)O z_53+{>l3S=$NlcpR_DlhBRQGx-PP^%NY11E^ZI=2^TWww=<@jEvGC~NNZav}P?OL3 z-FoP9wvWJLuAScVgI6frq{n}P-&L_8=VA0Sf zzuUKa`XRLZWbyo%!w1{wadlY5@>F%bGXE_2(Ca7Ux8!qm&|S6E`#e_RoAW9B6RGGC zHakYX5`#DcTHXaBEJB@-Ax*~)MvssoOve88s9&Q~?qk7s5GTkVqu!9wvW#8=awE z3adG`q)$E~+`Cc_prvxLWN-t1R7lho8xboJD_S5Mweb}J2dk;U!fjL~ZO>g0VX=*1 z&z(okX|n;12~BLAf1JMq4vGMAJ3lexu;fl=bfnha-8sNTp=wgYFFF6k%Ug3fh2`eS z4UVRzU!MRjuvLjled2v+l-G!a2xIg(R5+o^cR^4=IytOZhRz7aIjm5I``ApFU&Km$ zL}5kG5V0}oLRl{nu`xhOnqieZL4``1{>t8guZK7)ma60(!4^;!ctpX0+ed?;zEr^; zlqf<1Hz8{4@b5yWrlms0k0hpy?b3bHWYmz+rg0x*0;DMcL+3Y8e%)?Xr0 zV@igyULjIr)C%QcKI zD-nBouX&q!8xKNHRMf2TP+Mw%!!}1pGQmE!UGg5s)QDj+R#Z^b1{)SD7HdpkfEl&B z8Fkw%LROUno1D+BNAg{~X=%!%R>V~3(_O}kg|t6aS+cbDfPTrIi2wh`@O_S1X@z<6 z9Y|Pi>~2)w?>tFZ&PS$dGG!QW2{!Q#%arl2QPI6hUH`i;T2-QfxQTcyW&mb@3M@2n zkOyf;t^~nlSeAi70&9gFK{aB5&=?H#*U2XKHzjHXqKn9qVv^?ssNe?Qo*KvI1zw~a ztViCGGg!txYd=+edhU3KR0HEa#R*74Nka9gu%1}M99zTi5a&5@y*4ea5FSz0p8#C` zzeKbG+Z6#G&(zujGw~94NL7duo030hf!>5dJV!Z9nM8CK8wtbKr$ahuj55ln10kqP zsYJX4E$<2u7oneCUObhgW0GF}ZJ&@KWycyuvXCL9=qVyzU*!vHT8w_P=I;fYm&G6T zXYo@~dqly2TY>ho7k zPJ`F1RcfKPD4nP)!Vjgsw_!qg7LD>I7CntA)CN+A9VnMm~mt1eUbh z3CAACaRI3}EN09pYK5TxJ8n!w%pNZj4-;>^z5Gt9Krc*8IEfYyo--iZ7_wJ1hKd9a z!_jl&r~X@B!CXXnO)8yyt8kNWlhT2X=&l7tqe)p5uYN_X`n1$}g{Zl3Lt%@7j$mtB zTH+*-A@gxk;rGHH$&%pq5j13-raLH~oCa{~z^XOp6+AQLsLUiAb*2M^GxyiffM`G@ zNx>s>_9Jq+=UATGn~t(xP2FxQR^F>*`U{u_y+4on-DQdGWr>>@ZTuN+av6WRnK+w_ z#I?uuV+I%G7P!Yi#fZk}tP+f|dB$LpQ1jMysEnxyO2JCeN@2wyk|u1Ywz0)gBliZz zbUOi7H2YM7jI&A+z{V+B_zdhqDp+)2&0^`w(SVx6kKmb!YVv zm3Ec>xFBQE-VI(ld-;vNj_`TY^TO>6@In@dIhcePe02{3RJniZ8n2AYdNRK`^Nhmm6Ow$ ztE|%c*%LMuHK)=dD$=e2+tI9rV+!X3@iXxsKMt`XhA$HIkHw)F}xpNia!W z2V1`J1qn5eq@#6kL4JW}3{s423=Ii3AKeIBfH9R6UJNX0zbvz-Kc0rbaVY!{GltISB)BFcWy8-f* zFW$d{3x(|<`ANe=dn1dVKk_+z1Die%J0EDfZ>4V|tV3l~ML-Htin6!NK5BNgx~4HFy67Ikt_~w1)viT#3K(xXFbv5rVol1 zvF}gN-Qk}hQcl)mAoy+J9MGTr@lVm06ds^IbPJE_K6J#5#R*EmNzqB+#018y@gngc z@!AF(i}&vEO4>(l%pgfgNL`ZPk|dGH@X$HSXB$KHipKy*kooXNzWWCC-FybfprZvBlqZ{&-_~!uITl|=)m;+vR9(LY*dmLw+5tTNTK8IH%)O?a7Y=Oo! zz3+IK_`YnHtdwj>cd+FdpOIkm&^el{YL0$)kAWpY=8doid%76H{deqSKzRGt$VY;+ z@&~Ur+;!xuMXKgydCengv8za@@&nJNm{=nJpi0-0-*mSh5-`g{~TFN z(XCm%44`MB>tE`Y=svO;gR8clL9&^*S8X96_@MuD+WTFyC|JCdEQ|_3^vb_soMB}0 z1ht(k^x#XSz~trspK6w&-`2o^;O$?s0&$#RW&1%ubc$eQz(D{i5FO!fM9nIAf#0-C z6wC$0F^|=VgTz7Vz*R{jTY5H2+K^_GV!(p@&>@}VVOM1iCva7it1doTcD6G4dSHBJ z{DT~|9QB}xmTB!!IXI@sC-WO>nK2EMo&3&uDp&shIcTzZ8GM|DChj9^d#PBg#jo1n zs^Gcwz#RylD^ZZ*Z)9}vM1H4)mx=tXn8M@LR`t6|n1%i?2^|a&cxh62LA->NDon7U zU@+Z(+dHFtTh?7va{PAe-ms>TL zkQQ-;o`km7y~*L>udh1VjXoe(uS-igtBHh~-93%`n%n+4?@OkMxib@+AD$ZKhc_mN z?w6LIYcBieJTJeD&n+g@G=6>0uRWjr&E|atQQ4xfR%5GYO>s>qy%qZV3bg90qy9PY z8E(~A_w-h+t)7>HWr9LlUQM1Z2j7~%rS=lTO|#tNI;n&|Up_t6slCyg8ri(|ZbCQf zyk2c1PrBhFxkv^a`}@(=lHVn4L6!E zwd4}!JwMa2|8fK=_${)Be`WbF+pYR32KqSlp8x13(e9qVWt+6Lb-j=O>2bRru-qGo z#pSL7)g0U5g|*|7SWg$QEa?It=I2s8(et$IJo=m&X@zxTlX%>BArv7A>!1MD8hu6@ zyd*V7KvgcYQm4{l{P|jib1m%8Sta1Jdg%W-3%fZse@y;ELYrNIcdzJif%$>jGz|~< zL%+qV2L<@(q`h>QZJWeOac^=7;fm0c zM3m}rQ|X9XwZUnQ!iotz&JQYRn`iJOq$QzliNuP*T#_6cWLPb^c`eJs)D)ecqSC>( z+Q_h)y7K1>u*(vNy-;=qJHSMH%@sElQOCKtoH6hxkhm{?At3Je*MaSlMqd&Ls<8@Q zY9?#CqK0r0ezrYuMPKtgt#fNE-$d`vR*3Y+zaPWjwe;oFtrphHY5649cdhgc$k{2m!*c%T zSbX4HYe}yrs#T;4X@4B+1q=$9d)W`4{0V2k&t&uxqN-Lh!szg@n;IZXh2U5twd2JE z63%p}P{3x0Rt6h)p;)gHQ2v$+jNoeR)ur2uFs#9LLWAx6BWu3Mcz@)|Ho}=dcrw6% zO*8|~=ktrwcX-w`MSS5Ruh{m$H=ymNMqe@rs<8{eH6kqXtU4`mB1q+B_rL+J7Q`w0 zas^--FSL%9>2KK(QD?XfFL`3>DN2%ZW+0vid<3h|KnG1Lp1ZAA#ys|>0B%p|bvm5fkeAm!We zVle;6OmtvJ1fy6-fQJyV!5#?wBg4MP0l#H5Bw9zPT9Ej_i_-rk znDj4TzG!-voQ7SQ1T6ZkHMw#V#@dkA=5WLuC!h=v4n9Jw0>>p`@alg;Nd|^e${*$h zN(eBNG5)vHj|MMLVpTFifT7&d2SW*CjRdwJ@OByuC1eKF3zQF5U?_jf1x8ObU?|&) zAYPz+)&@iQTh@G$@&3q_ZMW0^KnVeca$6q^<%`n)EtF3+U?^X-f}woY21EHGzd+gg z50sEEP=b$O(Hf{h{7)!TVmapI(#I&CiMV0HTAzHNhs{%c7h{uNuzXHms{mtpR|Cef zwdlqQjHNFa%d-l`Cv7m6tzazw$V^3GPXs?$MSzD8Cn~^L{*hr{SV^rlK&O%z{Ctd`#~E4|N<^t)^1^k=wzt<{!Be%1r;C_;X?f4A1l_1H}DSs#O`6x<><7 z)>Q(o|6w!2OKput6{GIJ8(#nuwIplh0mWqTDN}k-c_I(6CkC3UO(9pWTy9Cm1adEdalnHp?M5 zBA=Zm;MRd%y8~8vPU;R;*@2zil}#fUE)XstwYhqZy>W}^>??Zw@Ilct7GF#MRAS0L z;mym&*VZ+uz^@(RrIGD`Tfw8gPvPAUl{Dh1TRjgVuk;Jf zGtM)TL^IP7fFOs5>DdC}2w#H3N$puCcjsrR)%k&hnS{^uarAN9B?8{Qfdaw-!%90@ zIfF9CZ09RT9O!Teg1_$pK7>zxgfvEnOY&lUd(!^4AHE}gEIx_$BW(gLlAMT~N-|Wk zXtItW;TSv9AVP8+K*zAuymUadU9~?x2q-%E8Gx-x2Qo3#8U-;7LL~1=s7tQBTBjF*q+ulZw9=%P3JRQICjt zm|hKyb0nD2jbxpC;~)%u%`oD@A@7;km@5!2DC3Fcf#nf1(78?DcaFXD5VUmrBlCjn z9KW2+&(I$N?)P?AjkEy)_!kakLKNsAR+PjJ3IHLqmKM7vyHIDU>+6U(tBd62H(MJVNc~U=jJLEx7Ma4&{lKXYt!Pu zVtk@+qR&Y=J58|aVrV0+--%veU%qDyb--x}C4sDvn?cD)DLz{q+zQT4ZV}HOVEBad z+cyTTjZ~C4I=0d z*9bBG3)hg>h^i>y5I+9lS|n!}sMB64W26oiW3q)Dx(8bVFd`Ljynj6{@xVL$znozeY9IkUvzLCHOB?qh2TCVCVW2 z7x40P#}7P0LgJymnUbg|R1*_x25K=)c5M*Iq|yW=ZpdiPIH205+UNKRK&>qaBy4Ao z2fhN}GHYltX)@U`S&x=Aa>^JWph;NVY#|kdYEo6{`l%pIhtBf)yOaj6TN+*|9s#mK6OASg*WIEXM zfU3!e0BkK#CBR%O5ePXbnoI@W`0XJil>Hs3fhG(}CQ6Cf(%|+*V8LA8m8jsI@r;%0 zK0UPMv(quau0H60#-1?c>?dL0Ta=smW*auYwDl;XdW; z-vth}m2jX#2sON#p* z07edI@;6o_cpiU(KX@L0tI(4CXGIbc{)ZJADRaCDHcakca4YQVn=z2=kp!ApQ&1a= z5fc85@Xx{iC;Sh9o&7gTWN@jK8TU{42OIhSU1~Xw-)F{QPO;<&dfz`R-sdbgw+ah+ ze;{wVzu3C$%&=KF&aatfA)ESH9Q(xj*z8nTZl}9A=jfQc#q0j$>d)h$zSmdl%S+AA7Y8ilWMo1QXNTuC z*}e}atE;|`J^Bx~o9AZ2i>;5V=PbT0&!?*woA39h$(J7wi$_}BZ%+0t_9HLvpRZQe z{c@fO?Vg1H{h?dZi0u|~00hJ)=6`(Xmhb|*IsLFgXMfmQa z6%}C6i67C{V-2f$1d4IW(SJ5?n_ij_WIkSV8PI^7+#8ej(UwY2zS~xsm|ebpzkd2K z+sZv%cik$`nm%&u>v?EY#H0nh`z1Le8}Kp|x7O zH-&pUVSc;y>EWdAakfHONqD$|zHa?-w(35Xn|r(J*>!z?w^%C{2}RqkI=hzf7=4&NpY8rN!m?cm`FPC2A~fh0|IlsXdg{PVUIL=j z_|clGaI|ISwq13eaUT%TDuer+HZuIgB<9Z5BGlSQuAlvLa0Z28<{M)@@ALJ6skf7> zFblMh^6fP(6S}$=tp@Rk>BQ{Y;Az$1`B-kVgx$B%W!lk;wZtVL-LGf!t50u}vb2*_ zsyLK^b=uwT!s-_4U#nXi`IUi6B!rAAsVp|tQ@2t3<%*H=@e*d(8YVc74{^`fn<%TJH&Vnz)OlyvBrY?#V=HsmyGt@Wjv9fDY z=C_}51@FaZ4U?@Twtd}vd{ufbCQRPB_a27c{+hkH-7RY_&m$0Oo2_f{pnS4ZeDU0-wR2Hc#4Fabr0XGc0!wizVPQD79IF z-$*&K9P?qa=Z8#<9rsI3zE;83r{l*By-B)Z?%Xo@wR|{-r(0{+36I@8U z1!MYQ`N*1Lw~sE}GP|C4hK{E^xLH{#n~UqLD5V(mv_)&{k1P9bYX_6pGanH(h$$3R zlpk#cyi$upIKw8?W3Qw>3!^N}KK4ekOD*OoY^~4UdZ&JMU2}f3!XL61IWe_YZXw;w z)9!QHELPKncof-5`h`}}^8JM9Y_L?g)0`OXs?1u{6_0)Agc<#?iSr8V^hEgi?0eW( zyq$`f%OxEVVh3HkN2@?n^s1j8r^qR)tzl~TYNIT{Lc`>h6kJl7%}@1*rSqFgBk?_+ zEM^l*`dqRHDbZN3W>=b|)>{+&hVPiMFK4FrmNP`$C>d|<{hVB%E!h21@9-{t$oMa} zFE=XknsH?echfUO&`;-$qkTUf73Q{lomVvJ-3fHvr|tQX1!AIW{0b*TkT`BM_Z>`M=Y-9v7+M_ zmdCMXGO&d?3U)b%inhW}_Z_d)eEkfKEEaEE1u{Me+;jIRwVCbKyBmA$OF zDNQfSub%yO({BB~b$g;Q<$1`A<%y9+)4VJ4_M&^c|6%i)i%frbazaM}|cEV)Z zJa)?wrRZ~bUb7CMu;`00HE+K;`~Kw#AVB|wboS%uf6%C4<7=d_Zd zhk-tRBpu7F$izf1=!)MsA+c$ZlE2RWB@fCg5=u*JLUT=Zo_od>pC~7Mw)UPP0q(L1 zc3theOb=!pbS1eyUwm${U=Y44BaK|y27<(gH1QoBXnC6gje=5ymC5uqL}ET`h^du$ z<^l60f-=n$>cUs2$Q#u5^N9j> zB&oU*xS5bKjv=y(98gwCb0==U$+lu+LKH`LD-iIpQX!Xk=AxaXE1+9GZVK}?K`gQW z+iDl_YY(T|YiVh@*Y80w&6;tRa&snM4)GMKHL;z{GU62jEalds$3^nzY)hueOS!6J zF%G-g_f=`&nh#Bkm$d+clX3^|EMs!%R%i2N`UG?imI^&;KO4GaGh5v0Wi#*U#+%9g z%IT}3b=lvVjSNw}k!B6AuU?lx?BG}maKMg7&6Q^4GEo$Ugv^1Wo{fYGQQg3s+Z2;e zTyq}fBgX>D5TE#m;C-BD%f_<{yu%@&#c3Y0Hy62=jmOujRj1TGRL9WbYDz)YR`Hz( ze80x2<86DPA`xf09+viPCoEtd1oSOTbVg6N#nG*=vCCbpl?h&Fi-~3_{*hd_B9!DB zJSaWk;00j=(x$aU2tCmrDDIO#MMx|m5zzSssjho6P*p@?{EU0Oz0(I}BF2awbq(!U zH4*hxOCR>Fq^4LbeB~z_&!G`b#Uf;w0zhta!DKue&3>rQwG1O%jPjfp?URkQg%$$i zT4}>_-u|x93NDfVI3M=MJ-q@E535rCU5F%>OgoS*LBHhS8?o5AQWxoH4rgk_sUP~a zgmK!&+ljO=he8m*6TLSvD*Fis5jEZSD1@5X*@7JXKun22{j_N8Gz3~hLblV`yjLk(qS7>Ya6_L^;S z!yAm?rZQDLgqN$MElE=I6HHx4tJU!C(g0; zxO0|g6N4dRM#!G?2$7}s_D;_)M1(|oHCKD2wqk1{B;7o=#60IntbVC4hR|=62mEcN zCdz&&FkGek%2`RUP}^w9ol&LXDR6nw+X8A<;yySsjm1C~cm1fo(A>5ux3{nlk{ItJ zmSpB(ttgqczP8^{mp+K>CiX^Lo?(|xd|wbnI)0ukFhE#a$qyk#db75H@!+sJKuI7g z9IH&HrHdDqs4S*qZNaix%)C-_I&dd1v4m+rH<*m=uWMF?<{Sjk#9JQ%n#3C=b{Zdp z-+RmV)&cPKc4K#X77X8va~TGObph8HdZoqA(EbQueOil~DfBtE^ec z%Y+9-_?7C0Z*O;Yp!h;(oo_mdI{9X*KW{jC^Jgu@zNeXt=Sou!m2j4_!@1;qA)vC{ z+T%1~xN>Noo*&I5q&G5KP#J{gI1cT6vA> zqIcVq@kPg*lkrQmyfx~N;hEa1b+(Gl<_u$ei=%{x1OQGf@PB8}Bw{bUCqw0dk)jrP z>v0zDnRtojk$7p8`TWDAYW{7R$os<<<>-%hz{A7O~p#_!c$l z?HP&P7L~AdlXgts84&E{Gv7tVD)7Bx8Mh>0oi<4#Op^>PHNPdRpC|YQkrq<4tvQ28 zdgVif1vlCBc$I(#A*jU+z`9{y#aQ}Q$uuGqP7*NxE}AW-mIT7e(E?XzkklCeijqbw#uJ@bbbU}*_M3>T)pBBKJlp<2=9JAOQk*Cb zDESPcswV~&xMg5S8A)XwO2{L6DlssTBzt`~Po)#aPg+)_B2Q|>5z3QmRy;-dW^XiF z+*dtB^WoqZB&#kHvQ(`SYQX{yVlCgS6g*~9(YIpk?dLE1yAWTdq$D~&^R;cWR>kP2 zx_p4I!b@668j!j=Fyhlm(vxEXdXnOY{^XS_^Ho!2thAC5V923yB@Oj_iqmDm^Ju7C zj@a4VsjEF?n7>to84>6H_UesP5=hWN9_YyIdNRJDJzmN8Bbn2O6|>tr7>`PTNAL>N&+ywLl8agFh8VdF3eDnwo4tcdl$!MQpONu+Y6 zz!Zpvw&PazhxLEUh74K^S~Ho&_Zs^py#WTVzeYU|U9;psi-k)d*(2tR&R#B4M^1@3 zq3Nr*ma&_}SCaLqnbio}{TeTdT#c{`4(WTiIWnh>IGlTm@eAz_iAEapb<4h6kj^FV zozrH?0%Jg_{Rj8`m^?PWq(sHp{A(Yf`KziU%0KA%mw%Vx#rq6-b2*ET_Ym+JNMU8ji?{aO7x|;E*dr*!iJ&Ss18{)#QjPijENi$p*uJW0~ zE$yc}BO~8SFj&i!3DS!P5#lh^vsB>2YJk9@JA4ZMq1p-j+N|Fx5dZzeKKmH>zGr0c z)hU%k7jrh8Mz^yhr8pAV3x)(2 z+KQf|;$sN@JZZK*d?lmzd0rJ3AB0=nftML?MKaG0SJ$;$d!bIAPLbe!@_v@EyH=>( z3KvRbn%gTkk5&F>i(*qiGQ6%Psm+s6*k_S9cCC+}p;^(eXM+~W00vW+r-6vPl(R} z{DJl|jXs`0q70-rVO2TqQwW@1b`D(Xo9b$G`{E`dScVEoW0&rmZd#pdPux{z&QTCj zzVt3e?kzEro28FN0p_CghOD*}P@+7#HrYcNZe=nNx3xHflyqe>2o#1IWhLB??EM_YKf!;xLI(!JW+IF$Gk&!9oAYQJJ2GIi9`-fQ#gqRu(=E0EB=wQVTM6%6zluVGz zfQy$9d>iKEBKf?A=O%z8P;KklKBAk@5rr52q0^TJE8$amVuWTWc9TlUXom&1Ke>Vx7jy&T3__ zyp(|A_^6*S*isnP_TzTgZjBQzE56+HE(p=QQ1N=`XY{ z?4`E;>gbDDRJ%CRH8e{V(KM=yC@%NZrM9CZn5xl*X$}2{-Hv>W#{fLIhU$466YnS{ zpx0X1z-R4))k2vXaMh{$Qgy1nRGsSJs`EwZKHV<^BR;d*X745jk?k(G$Y5u`JwXa? zFIS;G7?^<}MV29c*b8M@)ZitrTI}fn@u&wOp+Lof(!A8*JX=wRt-6fxY)K@XxD5$K zW(|AA(1GDgqs}bm+&piD1+4AKeE7ox-%SSVJ>*-bcDpwbi+pwPJtgTK8&Q34m)qp( zH=v8BDX?1dP7axrgx{_^9DKC$LQvEO7R*M}3W}zEt}&JqZnHNmkAQa~F`iDr2WmqM zaNW^?MzLX>CkR|0DJb}~uu=I>!pI6(cMN7u1%hf1>&^#NKe8VVkW7O!9pv=zJWj~# zeKBWvJNFMv6pMwppDN za}1o43&hCUqelKw?tCws^uV};1^sxy7nVJ=QJ9bp5IiF}t4%?x^5NM!QGIPmq0&LE zLlf06yqf+G_fARAypUNlw6Yob?*eQh&qQF^lwsyXZn$dW%7<%n>)p+X(xZP_Tx_Gg zD{i!JRF;n&h|NtLx1AL?Sz>m(8t>9k|IT-gr{TkLiHFP5-`sttM6;aV;!k}%Tm*M60!Xw>IK6oqfj9DZ#ANM$L=-e(ZoT<_^@^u(p3mp z-f)fFUf2U!E)S;G4&sFrSlY4i9GI>bJIIcyzxExTA)(3W`)nw~83ya{T3vY5 z&jY;>JVWdBZvxHR#k4$VKUmT5J_Hu6+<6Jj*m4iQ9X_404RSUdPPX}qEl+GWxTdKF zTEeuyX2U5|upVsWI&>lar5fZqIk%NZfju6x!b!hA!693)7$P9&Y?Ube&aD99;0_u>ipx0u1gN2ol`g-QC@WA-Dy1 zcXxLP?(P;WNFc!A!5wz;{cE>sw`yPJVP4Plxo2+wy6-OJBCprhl2FAeB!|cuUEy6N zr14tTc1Z-pGM;9F%Ss&xQU*CfiE@m z8nG(P4C^aaCArBgdq6%e8~^CT&0>$Y7dxH(@tHR^McS%2=d`Xh7xWMNX0hbcuyp54 zBe#alaW6?b!Jw!Tq~b<*n;;?F3JB*2&6(Qh)AW+1nxp*$lDeWv#_t%Y^-VH}$MK}l zjIU@{A3S=)W6sDF+k3VX1Jl9-wPBa^Z|ZL8oK7{XkPV8(g3*}kk)1aL3dM1AN5^?u zg>Ig&vU7^!KP}vVBFX^yoF&z(%UogQk~*Z;eYW0k?7EyWZTwqAc@{ZWObo~A+D_^T z%upD^f`9Cf2)lii%nM7k9Y3b~nxRYviSH2m%#?COI(oL^BpK39*R9k}du&R!;Hc!Z z$n>K$xLP}+4a@3$MoKWL&L&VWt$IJd#bVbR5_My$jW#eEnEEEXsMumwiBd!)fO-ai zS+=RsUPaqo!n3pobBVMmF$vNu)wCzsh;~PW|9U%4t0uDX-69YFkm%T(c+>JHHn}BQ z=vTCp&|$xRLUCQL(1NgR;S%jEMbb!Vxdz2iVi)5HWkRu*tF-8+4YSpt-PO5^fQ^U9 z=;9;}_vE6LE9sv|_kSRxdp8$K)by3#V5Htv#;GKRCtYti%aU+zYjTRjyy^r?h+fgW zQ7CSTm-*C%J#4nHIjp3dD0xIarfK_is3jXy0k91%M;nWP5AYeJeN+zlT|p02AhBOG zz6hlvAQ1`~Bc8Tm`$55CLYdKOuT-g+{6RvpqeB0dbuC9h^36)3;nvXkqT7mn0+}#k zmwxrS7r$VqU01U;&kf(?abJr3$cZ*a&YggKnPKHlFO1jrNUr-)Zt6=)3X*2VF3s4_ zw67N$g+{@8;{I&0#ohQs0b6}Tjr_&*3cA3Lf+2n9G30{%v}J3JY2QLbapdb!4gR=; zNeD@U%@Epnff(7xTG(2m6{y33sH(n+9qb=+6%aTtQNIy(Xo z5grTGqx3p~d#3(eGNIOyaLTS<`%5Xvnl-7()a4rS@(L6pq>2}ZadGjZ?WJd+%(LY@ zfMb5nu9#Q6rSH7Aw35SaT!Y@0=a++&)xC$7fS7K|W?gRMg0N|~IXK8eZHeB+n@y-d zR_D)MN^y$v!BOZhJRAfmZv57QZ1#76nhZya9wYHG(!Du$#pmY>CBuK3HNC4GF&Zn#;0N8jX^(;I+@>k~`=I^yn-HXF^6_pEnaWdp>%jo*cUrlZN z?^)xbp*bv{8d^4m{Rh!}cd@}eXEZqI2G}gIr8osFn(;Q>)_o&SvNPXK*EyUmxSuMa zby)@5=jPV8_)1gVPI3IBwyLM@f!)ngp@uxzjDg1w6f7U67f{cN?$43ekeUE+7KzKmd^jo#5nb@DDoskTdgExUGhIvY$5LE+<5zS4QMx zP3Q@m+>vxjF)JgDV{>TpTVT-=*iI25=-CV}&J*e$=R7-CI(tA#Be$-K?E@bOStIbK zP+ONg@W#OiVvHDm^9bf&XyiU;@5UE0oPjI5iipMy$v7HXY2%utJjF#gzWK zBW^Tud}h+AoB~w(Rq~Og@;Sdxd{z=KeB(qY)se%JSDD;@=$Wr#zgfOECY++M=qk)3 z=a#6!lEP17s9-W2G=;~e@jU>~NfILb_%OW1Ys$8vt(bH#Y-5QZoh1vZQmJuPYK=pZ zdw;7=FN~zEzadS*S5xm|k~4C%lvmka*Wpb!b=kBZ5R&w!Lc0PaUlDvt^i5O=!G@s* zfF0~0T7BhhX5qBwYk`e0UdtFp^?{-!AEIpF2+C4+jDlex=Oc5u_uc2nX#7Crz#wzj za4F-~7=3OVP&)bPwkvh-U_RmYo^@dv)9Xu>cK8Dc8%eHGoo{fAk_tlVy=7ikKFQqm z-9{X*uo}~3Y{;YrfrXH`R*k7n&(+sY$@C*9*)^wSV!HBGK%Iohh47O%Rm*AlX8_w7 z0ecLh!?qf7Bkc3h+!q>8kQ`MZ|FEF1!r%;ct2vJ8Qmu)~TsUNBV%0cDgjh2@S|U)s z?2``x*%8=-K!z3`mjhMqm~NIJQ3R^jI(m_55JRG#M73G%EDa);q|!As0NObTCno+B zqmRZCS7!_sZR06l-8?%(`bLQ8H`y6Y@Wq_Q=HL0r;wauMR$|;(RAFL) zP0u3fNar1UNOTIA_XkJgb0XTBV2p*yDu8RQX@i;TFEo=PWJvfd2b84l5iK{dCB<*j z;X0$x5IWxKnnvzbIdGy)LUf}6i(>$%$leO-!}%iWMRKm-^T}zQBs2CHyLj@^ZEGir zs;sCe!*Jb~;s!OxY5qw)51fP0I%xmX2tfxmsy_{+LW_suCmu4@7t2SnVWm+{)oFp* zFke2>aOMm5Ei%ReLHpxG%Pdn2-N3Knkw(S@3@{fCdn(EXuH(2}yWk)#x^o@PL3Jv{ zujeiWzxYx!M@3R*;OBd*D;y2}z@GPV{oKYtCYkM(>}j>7HqaBA&U6Ej-)P((MIwI7IgRidj>{QUhVK*b>Li;zV47qcOR+H9~r#`qx%%%9Ti9bY_p6 zt@*1B-4PCSWj$U9vN}B%25K^!oRzre2Ud6O9vl_nES%!y$LQ*!PU#zOiw%?4P_}Z^ z1<9VZ*himFdZWi;S!Y!TaJYC_LxS++H-$x$aj2X>re>^ORQUdr$kI>)rC>y~SB+FADLM&h%ixgDEI6x88{A3}v@RjE zR;lJ?)RB!5CIK~Ci{CZnFlVkTd1+t(Tk@mPrO~xTo*jY{xd}iH1|m;c)gf?{ISMk- zS}8pLO?8fKn|g!8&-=z0$k`-VEX;y>G&&({y+y zA?di_hn1y#OXhYF3FiOqqt5>I;rC&StI7~L<9B5cp4?skB?=d|y4(d*Udk`&lE+{0 zN0~~8D4j$atVqitp(0mytA8Cx>Wm+Gq(DNcHjdazOC%E#?eE{HtTK!}_7EqF&%j`q z8ePX@QVvNL=ESP7x@R15-u=aXLmztvO*8wz0(jmIk25@$faySZ#oR(Tv%UCeR+{zi ztzvy2?tc5hlJ@0IbQWB<^Ij5WBZrAWe%<($XeI56T8&}FKQ0{969z|YHW zsi4A;;64sAr6r%w`{d_2MS|v+C(=at9K@=cN)LNqZMHjtkn%z^szKr%urTbP3d=9v zThrCR-!_Md>FRrj*;9Zv>uS5RB_-bMg!F2%9gJA5pfVVANZ$(EYjgPh0iS5q3wj;^ z%=2t3Fly^a{T4xx(-gf*zQ7|@M}sfn##CqaKzk8uERdE~`cnK1alhDDPp4puiqei1 zxiK!_q<*AvO9uFH zb-cLXIG0zv<|r;n%}s0-iR#s^QKc!>zNj#Da@^jBE$_93LCi>CyF9R1t(K`%$MsM_ zrAB;#`jOp}hv!F0qC3t6ajz9Xbs6_Z6Buu-M?whh+}I_bv;?F;ZLwOe`Ga;tCZx>Y z|4juV*SDv*3E_WomDTYeR6yk72UIKY;ipTG6iGBGxHW6x?F6MOZY`b|D+(9WGk!R> zQ@Z>VT`u;lx>yhBMw8%2U*04uFU^MY#eP=*A_rK!1C=cP)s;Psw_T#T~~t{NN>K(sI}#V>$-pSWy&xx z2ueT9?#?Vt{#K*U>--rFzR7%Kfc{~Gw+mZNLpFw!gDHoeJ+=|j*zT_o?+sYiH5wVX zL|%)qxsStjqCW;zc59SSZAybsh83G-*;5d(XEJisPBBIl!Xpjt*T^H)j@^hBMG_+< zHa*?Lt&+M-vQPmqUg^^tb&v9Ax>p&Ix^LN2tffgCO{$*!dI<|rvKF#VWupV1XU5;IL!O6(S?HAgf;F z)ZzY&VdiWUgXZCNVdcgCb>S}cV;4$Z*`=q-cE=+>VRYQjOt-VUC8QDIZ zd_A(Q{5VCMQW+1Z{}c1qRqtM+2FWv%TxpuHGo`E>87v2#BB3(`ODMYm1rk2qD>vlu z$v?59J4CUMd@YzwH=i1RSX~+;g7BkAS_^roNhG)h;YeCz>shfa{7Z16Vub&E(KTY0 znELOM(fHP!BY2s=9cyAvi5##HBU-mPu>Z^y`Ftz8pa<9f^V{f0!Tup`;JNy9&4fxv z0+?aKRi#W;7!_pN3srKmiq^2X%{h_y1PpiBgLhOpGp|&+wE~Fp=}b2EyCXUTZu?J1 z*{&qwYb-TBhq+g6-O@2s{q-6{Da{(_K3bXjSC^;Mo=K6cI1#?o)C|cyUR+MdMupXq z5w{LSPzLE2!Y*^bJzyHR>{m}Ju10GjQX3@jmqP--^D}7*t_CFVw;8!Bz z3f)YN!0QU9AJR}ddkyX+7A(89MGo#<1%(}Ke~}nCWng-mqmH4(d(SW4(Odti`t2bz zi#Iye^F80_ORj~w{rwnX6~S81HIWZ&Sr*OTbV8g)OX)>D42InLI0-X25)>hn;w*t7 z$*On?y;fq(i~%DZZGpnC$(~7@o8e?2g(42V&F5HN*u_!zFEDYXi7h6yk{I)^n=vn9 zh^D;j#z}IS01Eq$wZJ^Rady8Ls6&*VOcGo@Jv=H+bcd;=t)n>4rWntK$>@G;N(Fu- z_{ZVFOTk=@j}9Ch?aiT0?zUsFN*fh-Q~xfp#D_fKsub_7z7R+mCCj|}d14j) z^CcGW)yUxYDQZVFFH0i%n!r0nkWjZ#=i|#vuWG^k-pO}h>uRO7e^zxU-4cJmXjKMY z=~7Us65pVHe2XPz8yG>eY$lSo~V0ou222bmWGsG`|l z3J16!V0>4_O-U{9RK||U6`UHz8NBQoo4waa@{cm!=opGF=6sg_d=}nTDecYA9$q#c ze4=w0nZ}%}?X_neBSpv9uE3xGMW{y+I3>p2e7B4uWA!Wjy@rA~<>t(CU-p$CZj?X0 zHZHO(Z-;k?uk3Ppscfn2Hli)mn%|}lP3f9GM^=R94sqMJ^MDBTdF(59}HejGE6R#W% zraSjCd1Qo>oFF@f|gg?RBq(-SoC8 z-#Q`vqee;oURwlgJ>P?~_^i0vm)80p)q7wIb~0l+nKkm^o8Xt)8goh_5%T#iS|Zty zc7K07b;wbf{v06;|=ce#boJS<^tqKino`dIjRcSNVf?--Fv2mIZc56!x= z)>4-NEGYB9T`&Rid-rh}FBPtWPB#xDOM1u3&<|66>FVLZ-}A0bQ3;ar?r;N-M5wD3 zcRDGdK+1Ulfdf)r>P3h+leiEDYTTE|^E&B7vnR|2@*68=o#T=+o;tJ!K$E7+?=iIP z_&O>%Ur&Edl39PgyuA0P>&?foOR&$KiL3Yf>Fkk@VE5yGyXV_!-BI)BaHCv&p|_W{ z<%gH6N!FFU-htyiuM16 ziaGyZsF>d?&5^nylbncX@XFEtK@_u#O%FP?vwH8>;ffHU^Qpk*BD>sAnM#=Q$s%B@!hktt*)25tEyD=#gp;rO(5vnUhr}6@UZ4h z$-~;-XwUG^H{M5|wwvpwHyyvc>9;@2{L|>G}q@m9kQA z&k`rsbuo9iY5s3g&rbJBM!5&~*PY`dr^lN&gS%IUhewZ1=t)8|LI%uemU%`>J^Tsp z>-|Qv_=mkO9C^NeTo-vaX?ZM9q))9;zivuN3kHX~UVL>4bzfWsdw;wf?H2;`-(UBK z@gEfvd(&rF1r_jNHMoiyJn$h+hTYRUA3r}|Zskj@ie00q$2HP@++2m)8K(;x(iyz{ zO%ytUWgPvycVCb|yI`kYGCl+44_ zR^C^rnWzi%hSg}b)fn-#%bx(XM1ma47k+5kIC*>LPsBdhIv&10>-!M0mu>3SJpQS( zK|c@l@^10!_0Kf){hGD)!gf=5XUEBExze^+H6AZR%wM<_7U&hG+C90pxqIM)K`Eu0 z^H`RJzF4r;onm{F5BC0w61}(X-IJr_Eu;^Bb+>2=-tYGQKU6X8KdM-VczoI%LKRb1 zz58)?KDbHu+bD?G+}L`xef=M*xW}ot>(|B2|4_w(|EOa054`wEO|!2Y9O^2-JtGFg ztyv8*PKo!|l7rF5=KEKzq<*w0v=_Ovs-s&VTlb@Oy+8LeM=!xoil=KMO;U((=^Pqa`*!TeS1~t3U(PLP_DF0Q|BvV8*!tu$Ts-->T zw&HHe>MgwCa20%g zKCP@@T5z%%8rBKvsUwj)`+9mdQ|9t(tcF^?@g1+$Me`CeW=M7{a2v)qcb+dFf=$|_bf6|>jE9k#T z$7aMW8*LsOMH1t$^v-+ICciYOUDaEMuo+VPXK(X%ZS(MG*Y8;G=l%X>#dck(KgwB+ zG}7dpKDt-95vlDBk-7itu03`Nw@~+sos22f5tChKfiIQ}KmPQrp+ZngIRH%bHe{_;)ekau*`kC_d@z z-f-BB6pK)*`-ACN&bf@2*My57w`Xg6+wE59vyOOQ++75lSI8^8J#}c>(pH)# zujA5qyI%K{Z61>)I4~D!$i90)5p>Qlh_edV;U#%N@Jx1k!rF`G3hPdM@%1c;cN?e}f15*$ zFvBu%;_{zmtaOclUk9@iA>7Sdm-gh&fr!AYqwR(956q+07f%3#lP3Wy7u>}PPYUEU!|RDTI=g{9*huUeYZg89t3o?1|Hfm46%U`?n54IA!G zQzlFbhBJysXIbd~Fh_IIrND*x#~sSBMr^M2MeaLPZ*hiWktX7p!f-{#E?M~;;_vBF z@Hw}Sw(1j-Lj!+B%j1cVIKh~xGO9bxCQYV8WPbx%FS+Fgw~V23n+8!Tp&NLFqOyol z8CQApEM7(Zh8cz|3R{yGv-1Qhj^^7w6DNVoR^3xJ8d)YX5KJ`>E#8|7-O_4Q(PDtm zlA5fqbUsmdYbs&LY?I{KV!$P_0w)pULUn}mt%WLAV~^UU5GleV>8-_jms zD12Lct*0eEjpkfHbXtqw_;Ph{zRalX&C&Ki=Y1iZnkG;WLJf!qm zYXR`=%hY*#-AWAkJtQpuu3vX)wM)taUoDq9G#?lRt1szMlBJA^zBRgO@qVvJK4X|TqY7X})ww>(W zxy%)bo~?RZCQe9p6v_Y@-VeFV5%{u})VXJ&p)Y|}toR>Hud45% zTDGx_7JP*Q5I~%G3l{>2Tm1)!xAE&OJWJ;?Yxq;lrY_ZFS+QnCHHEP7?z+ULQG;98 z`N|dVYYR#nTFEPwg!9>Az1GzNgs9h*ty^s9u+LMe3z5|a;cfGMU~|yTm?-H$3dMYZ zg>?z7wbY&oR#7xr`fR=lR;(VsN{d&Kp!KoK)>NB*W)ufWH}wNDB_-CG9%>tvjrmp{ zdM27D1+`91XAQX4*)n6;Ev07#Z6<76@pu9b=T9eXy%B4*sm-#l7tSrczb}w)fGZ?m zblpwpBhKDn^_#SQHktTIIcLCZ55Z%z@vzxLgOZ$9XPl6CQ0I#qfyR7cP`f+w356${ zXvS0DAYeF#y=c)hs>w)`iE@&h$83gvsd*~2kVdBXqS3YpEgv(( zu;7lh158(au1j983s#kr6_j_hTaS^;J^4)HNn)w~!Lv zB50oVx5eML96`&WT8uiSP9CicF@FOp3I8~=_!j+7K8>*9=BbL)77qj7M~LdaX^zN*qmkJOjDT)z`O=>2(#r|!Qv%HkEAOXv5w zt0Y|N_cU|9t*AKp#3+y#?3!UI>Cgg~@daX=!)ipefslHrTa3 zKrLkoT2IZnhe)GW=2pOx5#{N0=^}surQ5$5U(rtTw+jg@^Y>|;!Ch_=HD89P7-aD@A?X5h}b z+xQ@}3k!5{*ScZ&gs&I=z0<)K34&y~ch4BWa%&>V>Nw@0P#CF+ZWkyb+*Lom9gWTf zoT6zc-L!0*RZ*z;6W_l~s>JzrnemUZ(ETT769vEd8p2Jti~kV6BL0Go|8!rAOA$;r z!@mK29+O-A9yG(%CW6lFDJ1YT) zsW!84A{r@Wq9OM650I&Po}g|ZIHtA>TlKSuPv`-zEY@|U?A1!tRrM`r6~#F`Hkgv4RsQXM++MK$yO&NGI>L$ z_ZNu4kvFL7rL{o2c8+?CGrC}NefkYd2QkalUBtSvdTN2HFZMEvy%wv9TT<-*kkn8A zkW>`!HGQA@pL497qsF7aV4~CHb0=1O-73l$Ssv&B?+ZFso)7WLeyAZKaG#%k1&R-H z_i0e^|);o5?Mb%f!6oX>Zj-+j;Uv_bzHZ<@^-srKT>K@o{aVxJXSN@8W|damcTlPAFE* z-%R|*_JK{G4>jfy_AK;#9u|-_S;982cHmT>UVpwXdZukGli1G|TKOFm#YMj8=<;0) z5(0CVZQ6>Dwig^_E+}o@^$vkg&2p=bhi5!`N=bu7in@eX!dVH zBHyJzY(o%|c!-ElDRtXtj#}$}B#B9$Nq~s#kQvXP7F>BQK zXUOW0yN(*X2d17626^vx=>dyN3@-Ovk^LAsa~FO88Y(tmZbR2q1j*Ugv>*$#ab5q2 z62SNfQLKTsy?UK)5q=LG>_#^a&t2n+IM3la#3egwO(*04T`h3GgGr6}bAi_KDnL7_ zh4XZZb%09`@AFR>$0CnhgyaD6e)lAz5lzg#b=>#GxmMo3&y>GfL<5}01i3u}oQtq8 zEiy#!)%*ulN|K4HJA}uF$Vl#BXOw@~iltcrjITr5Xqxr{5N958XxePW)Qhk-A7nmX zfac^|Ora?{5p!V7TLaMvmJ3u$P1vZEPDplI^X2Ei^`iywO*LI><>svPH$focHmmm> zf9(VtxnuLv921hCu>f6CNHD2nj=0aHuFMGweGRm=`b=+Ho~4~x?&O=)uZLONtq(pb zJ3C|AGy7L++vV~t!r4_amylw=VnM){k*4Qhscn>)bBTj8q&TZg5kSL^nSJb=d~WJQCCPTY45vx*)9~} zVrankmKRpDCfwT%nApjZURgQw<{+zD>o*PnapVHR?3Cu+hsv8QR@%u&6wWU${$y>Z z(ARC06Z7JP*2XtlFl~8PEIznkxnq!o(q)rPy1@I z54Xzn7jDCN6iQ0jF=n6JG0I6jQUH@Nd`Z80-haPNJTKquqvOso7RK*WeNgijC$3j4 z39B6_MmWl^MrcX;k*A?|KzQwWd-xo|PJr*ZBaFR$#ca6l?(B^+Q$RRlAU4AUP#Df2 zC)m2?562$E0OXhpU&9NmHgoZf7Q?2(*F0LiWk9sDLuNAtLP)G??o)oKppLj!^OY!U zbvpoXA!2hzWG6>nNAMe=@;3RvC(621iXUQ&=^QxmqEEja24#5ANIDn3^Ea?FS?=E6 zOJLN#n(RpDI7(fvqkz{c(IEF{z!#1_4@Aw4i#o`-(FCkU>52jFA`cY6?hU(M{jO#;wO1L9#rk4M;anIH%Kl`blS)BxIfxV$T^WatDEY+HXWQ0HJ zrP0Ge6Q`R~Cs+B#X_ST|lv)>s;YDGTc2kp6$C{-OzNI6Z5j$`FG3#4cxrM!N`_if@ zyZQQ8k)m0JVtkx`NWzKoanMXM0gx<_b3^4w7(m^A>5tb6{)S@KGi(7b5tIN{PbTJ#1?CqBn*EaKreDB8Ufvc2Fd z`xT-~{T=lk(G5{`$c~D|jYmBgJFRpyq7N{q&(-WB5F1mR|5V*(kANpK^U=Eo=h7e* zZ~laQ0BuvDM~1)f!}ElwZu#R4z7hM#n{Nh$Djw%Ny()<<)I_&guSAniaRKg?{q7MP z(^U&iNCFXzDvN`=>j5x#xy_3N-xX<4ZdoWolb8z|B-ar>Q6_?}W18!z9ZIS#t}eY? zuc<#AMi%?tE~OAAQdn%$d7*hz*``Q$QaMExgco-w_FzpApKa6N+;exRE}+GYN%M`z zNbz_xhgj4&OZoNV&h*qWr4|;_I^U6|jH;@?XhXVY@~QuI&Bngq1zRG7$BBGrfAS~~ zAc^vcgC|WYX~>|ZGl@dnFs&=La?oRPNVG7)0SJohO7Y2%(!rAFMqrj=`ocp%VsQ!^ zBc7TP`@!0|FKoL+zMA9;*#t!!gk)!hX=jV?>e75@RV$IhR0T%J*~=FJ!VJ7O+?JDD zODuvB3TyRAUEXwRV>%l9Z?b@|P)DbeuoelZ&0*kWjnDlJRh@C+@lNMFjm6i@pKhz! zUmbr^9H^az%^JiRB6mW zu4CD%O2F{ZtUb2z8%e)n=dU5}I!BzNQ^Lw{G2m@qK0Q+)p5nhw|BfccHorejK7y2) zY)T5yY>ji(obgb&LJC5%p-29xegN#znNA$1=QzdlNGyB0Bbsj*@ejAZ+&7sYJK3<` z>Ry>g>Y}x6T&``NSyC8*&&sWc%nLbugOU_A!T(vG@HRPF0}BmyX(+>MRBe3@|@& zRB30909EZV{?n@OaDGA!(f~8mZx`Ij>WQahSOSkBa=`G} zXgHe;<&uvCt0|cJQVOFh+(o}pt}FQ8q*jVRz!)c@FF(B^Rev(2D|v=phkcBmxJzJ?ACc>KBaM8*orR=tAo1c-m}YkOC7hC8u~(A`rs z5*IXdWVutjC3^8$wrizJ6NUzoF*ctBG4aiAcMjb1aJVDm=#ye9%}&s)8G(XF82d2Y z@2Qz;b=2Ht<@cajpRJ=LNT!$B+va{#! zt-#31++P_!#W+!6vQX%Z>W(WR$CGQ6%B}x2*Yy5ciWXh~4h${_mulEEy%z(;zx#0H z8mzsi3Rm?aWL`9z&FEBdNN7FBYC9qF*PaTnB?c0$V2;Y*w~ceJlLyw`(_{=4QtPtM zygpCZZxDz~^LTT{&|Z4dgo@0>M(}rE!)60G*=7{wN4S?>-IJA3#>pg&{)qB{;l-px z)=}u!D`VwSj3Ca}-z65FdZa!dmE2)KkvPea3j&bq`kc-+EYX56UF^h6!*2M7YJ^97 zOKz9!#!u*N+cSJJ>qx#dd6_Dq>cBSb0eyytatpguR7&?!mU5LPh1MNJE0%#z-(dG| zgh%j_8!zrQIud>V)260qU}Pm_=btuQZ$+v;6P8!fTs;R=dH;Z67ip(dpIDChS+?-G zj3#B^u*A-gAX~Tmu*(uk=cjgR5(PH2?%>j* z%$=^9)26{-@eMdR)_aHh@Hr3QdC@I>5@G94KBx?1oThxSt9+V`z8()^74kG@x!mv8 zAWaF9U+(fy8%97e3yh_PS+b#8=~4XE2M!EytmhZbs1<9>Uk8GiD(2OABIl7w)~=TK zLrXM$jzzkW7~B>yJMfP@f^jEJGHiZmnGX%>9BUW)sftsKlDTQ&eQMWD^P5DrOTJa7 zwl~L68WmF9ewo-{j6Q*nh8^S)G4L>7@w#JDN-)Pos;ZiWzE*pIS!@=2q?`v`Lp z#``@LSG|s!xx9K`khR=T)=(KToHQtg#FurX5}#16w)@uwBA~(f`6ye18EA4I#-gE>jNh(5-w!WWiaW* zp6e>#V=8RC&>}y5#J@Xi*B(oN(LD%;*A2^P8V{+YU_9CZh$u4(islv$I7=#2D&z|| zLyYtlWA(JQz^59SsLp0puP!iq*HJC~`}Ynx$&v{fLN#+cr z&}o5_u(4e~D|p!o*F)p&M~-T`3I^-^q!f2Sp=lcC*j>f1Jcp6%pCixpb<}TsiM?Gn zUvW^E^DlWj5M=s3?=BCpeJ-w!t{p6||5X6iNRF6UmqnanSjZYO^?ip9X7h-TKxg>m zR!4(dlNu`lCNlWyMx6^#EA{d#;wj`x$>=KR*8>!C-IPgb`{`t`s&}h}38MvHo^H=F zSN2llFWZf?=+3ieC|O$hD_rC{e|5ioDI`oJ)s>=5lPpw>D30Qx(uluEsxT)QCRuRq zQlM)MHH^80pE%l@ht$-~Z%9oc+yC>sZKsfuI>!0(a_~P0zl1R5>`wxd@ASB&gs+{| zQ9LqBXd}BN+gZAGoI{J5stUV*@927IFIMmZaLQ@|PO;&GKFvz0-{-wNZYCqzRcY8n=Lv=gmW_OgB711_^KR({fmF_zF^CeCN|cX_CIRn27-pq7Mo@xx5(Q;5_xQx(+Hhk9>?=!u)d#7_pJ z=EduaC1&@bgnyOw^p;I3u;LtFIOaSMRW|DNuK+Mh_;r0Vj==EQMl5DVUB#byKgGUR zpZ88R$QKXlW3D~5=@)x3k4rj1X-a`QB>A=W91xfM^FeoMX=@~b{OfJDb-*T+XPJy5@5E2G-;RSUWPBnKG@c!X zUnM?Du8?0Eh1=6MiLH8eggQc;Ft-|K;)wPUBrZw!`9mWm*5H!Xj21&y{m*thLNVT1 zCmg9Z&c6BKR5ePc+7|F!G^2d__A6qJS~Tp%&ZHLGPcyT>BC3lh`s=Ye6c-v-a%5UI zcTi__)j41@;=+5Ds1)#O<#jls=b|`LDIPSSivdnADvEFj^jj=Mwn<)gNLZiLr~fNo zAwQLzgkpGELvBqZ=HaWwR~qh{KCcxl|KGlQYusUIY_l@nobB|4r69xWx;=o1udBs_ zwUIw1dvvqe!lpg)M(y|UYKoX2e)Dzwt5;!Ad_Ge9n(j-jRV8L?GUiFPQc5-xYP{iy z$JxnE7Dx$u7N6A`7a~Hm$2p3Q=Xi%ab$&J(_o4-|)IU3YQohwy&5zVYvdGeBI`FTS zJ=0POswBTni3w$PmMYYY*pR!jXl-)+Ay19XkgVg^#78y5Xc#y=DU9@)aH}n3IClgC zVuxFe|Ll+}38~viOHo~A9vl1`HxbFe;K$T$rFe3H?Y|^T219xN~xwv@I?-v6Kp@-2G)3eqtShd%&eaUa@UEmsHR@5 z4-u{)=&>vn$-t)dV+UVk;X0IVRK{wiR6|m{&i6*ms3fL8WYmAKlybagcoyD^EDpG$tio`kW>IsIN8GTkHcT3S|b%ygJ1&-WNy zVTfyB|NYWfF_vvaa*E5-TW;+>!&>>&mTjc|B0a-e1h&aGT55BgiL=}bLQlxu;E}8< zUHQ~SDXH{T$fggMMZ_`=8^=cV21xi18-6O_Xcyhl#y|rteDca~+w7xxXcfFmG)Uzh zz$+~K{Z?}tTl~$lAxQdZn2_g_Ry!#PZyr$<9lpfu@TYfdBFVheXJRqMUvYNx<2*&$ zwsU~^aE23tVdp&%J}E;6O~X#6K=Q|JmG)j$1hlzwQ`J+`bg^be3zTV#C6a<8JVKl` zUg*H{Zk5!Mc+vbc3p;;&f&FK=YKug(07uN5ky{=8Puru1$8k7KA20@b4xdL-KL~96 zp(PoU#Afcr?cwqTK}M(H{Ko{h%YGIDNk?fs7ym{pedRa}{?HiL2t>*32|mB2H0Szg z_&kWp)W!_$PQ28t0mxvWKN>02qhlPVVW4#NW={^?6j?o6m}i0QH$74r$(mxRJ2qEU zaW?>%avv0H^U@F13WIwstT^q)XBceP{OnFE+oU2V7{qhUk03u(Kx0C=CdE}^7Yi37 z_M@z+CSB9b={Aj^xK0?>>?`~SaH0<~BtW#?w?+6(?Ax{LSTI&NKf3Q*;^GPfPQI7_ zsxI6eb$#SKwEUM*CX>Dg|0I$fjZ+C#4fux**Fdmg#MT0mdpJ}fsu52`ksvisY1|5j z!2y0=bz_2ubyW3%LgYD#1}Bd*M5%tsX_mw^fyCxOR?YbKuI#9K8(V!6Y|-P;{b9#> zU(|Zf`R%*F3r^lR$_-X3ItkLGdBBgs(5~O2a@vIf20kzwe@;EWp&@;OTy~Itj})?J zqHIR6eo#>5_*)||q*#^jiSdS+KyNl)8!d(N{C0GNNP->D!Eo*Cd5kiVWkw2*G23DE zTE9pi4mMSYpcR*t$4?{?YYoluvmejmW_uoUG7t%HD>PJ?j_kf=%doUI%Z*m_PtSIk z+M{zTRE*|;@7P%BrrE3NDo{SfsAcs*vJ5X*6C<&9sN!YcSYEiq#@xoN)?IWCjnR&g zxxZsT*u*fKU|8gn=Y#OVWu1uTN!b>Ek1@t!?6|kJpLG|SCUoE0OAlPV>@+Pdst&C< z<2!00ZvfnzNf!D=jL2PeeB)t58bz^OeG=VcLnnIe==`|<6P{4=0saGBlo5-0nM0cb zHRJjZ%^#G#XGmd2TD6)GGyVD!H?jQBOv8-aAYW{+^Y9-GHN_xv1l$prV@+dTp=od= z8+M0X5$NZ$#n6fuy4#T7QAF`gHaShFOP%sAuc!pI9#0@G_BG5IF9enymdOy<78BPxvO9nAY4oC8P@FkFcMJe%kdRAd%mLa0|OD`!HqjQ_qVpm5e z0`k;|1>4;!8)*~`C=V4hdS4)TDo6xZqO?_CM~Zls{UrB|AZIi=b^KbuFX&u5bis14 z7Re?88|<;kIXN5g`Ov;6GdiWCQ4n(#BTEWzXBs0bOiMzHHQpSDt1g4@DBeD~eX1cV zg7^Cwa+<5@BxJF{9SLD|OU?0^db<>NYC;|IVa@lYeD|+@Y<6Mss3Gk-v@kVdryWar zTmbJ3iKSQdFuI?wC3nEK0x<$)^EW*|&8F0s>cZ5sHY>iQ;ls6;S&fXB<24=BKM{<5 zCV5hlkfX5|qGx*jx4f87@&&gcy<(XH9et}qyN!)S`0E5yRFc*cc=V;D)~yQE(CY+9 z5eI-ZWd;;K0~=il2_@sdLJSI3wHx_|L06tYl*#??gw~hdklvdNY+ zRZmDYLR~}`<*9E7BuAh}G6ZtO16yw<8@i8RPkr*VBT8%}7*!SMs?+EHS6x>E4ORQb zFOxOPh%DJnWzX16k|cX3X$*r1jVx1^nGji92pNN6NR$kbLi`EYl0*&3NA)2h-$&W9 zOl12m{{4OC_}_Exea}7T{(kqJ=lMO)^PY3xciteY2bmli2xMFdJ@k-D1*?HwZ=dAY z@X`!r@S~SL^e6;&NzL{e^h0NGU4wC=x9G)eK{AWH)W^#eSVZ=ip1t_c-L3_%0Q8&* z*3*3j8Yg>+I00L`Iduyk)R3w0s8uejY|@E;i8K8ya7`+VgnK*w3d!6*cNbk*2(cM~ z_1h63)$(!We@f_mq$l?I7ni`o~)D%Ax z*;W6%CiA3VeU?gl_~ICSdHDR*qiZ^~RUz~xTq))3+Ong5IK2gjrZjbQh>m3I*JNgf zFZ_Db{gr66=BA|IkuRxIziKUP;5?7*94Py_q!qRpzJ10pDYjl2#S8#+4glZ=03Zmb zf+t+TVe#wJg!|FGvAuBU%H9XO50fdHez#_=4A0$H-d)2RYU7IF8y#w!Nt*kv3qv5w z9%1A{A6ZU&B(!IW(1b6jFU0NXkd?j~(9_1Hse5H0ynXhI@16|aY@7<0)ZNP&A$HYn zN9T~!0mqWii(aL2cpBBE_qND9a!FeEW9LGKvRz$2p{MVNg`ju|*_%}BZ&P+tu_{n) ze8j%cf>8X!3)OQILo&WkkTl!cF|}>_eyoWEa_-#!+NPz-jCKbkZri zW;D3#Z(X@N<7pPWB4Xn8O18Y?#_YV%PYxeA18px5E^3<-B-oJ>rxxZaI{4;3d%^8n zi9OSaO=MLOC|xQg_?6(w=%j0Qjnd>5+z*QS+aa&x-N_=od_ux&9UiK5{b*Y7qSs0q zU!khY3clRw2%@tUZS3fMt!@}z__Nf_RL8Y0 z`hHy;Zy%a)6}8I2&vTA;iEcaI{xmbN_N}y6Kw14QbV7B8EPr{fXEUapR!(RMg{#Al zU9L`?7W{NW@wQcF43+PtoVWrcmLHSSzJ}_^D3WzWUHZQN=|O~d5b!16exGb=W1g)k zGln-bwxQNoj!9kn#;mFPFuMo*Vv3Jtt}!1mu5Hw?wh@RbqhxhH-H*(FsoO94O<6v+ z&>R*+RhQ%BY^)?1Kjeb5amvR|i(j49YbzcoSf-!ySrXkYKS@{zqydy2KPbW7VC(FU z#o<*BtzRD}or-&LjH|icJbh`OZDW(G-j%V7m}O?agDZx*$X6Fw?3dFSh!5q6s4RBqxu10(xISQr?iwf8Gea0{||J3m@uMj2x zAnXDF-px1*^zrw0_3`mukF?rk8glp;SBvw33^u8Yo}>zy+K7e3cZclJj*8lTG0j&` zR2W9)52P1xy6|>8wRye@4;de@qc3Vr&mO$~_fR)Rg*=8@!eY$(??VtAdcQ_JA-eB8 zX3og#!8G1W7nY6S)DVi|iQ125L!X2kYB9DdB1aKj_egM5&WxRMXHp$xS!>8s<3H1I z?@MfvjC0hGX7qj8HB@?myuE8@G)mXx@XXgy@jEy(p$hHDF})y`B`bW1R=s(`vK%^* zcZ3g9u)61A$s#xDKWZ0}DbqKuYn?Y6P)ME0_PnqYQ@=U{2{`1DvBU<`y z_P2r^vwmg85x!Ps(uBGs{mj_BRdVQW23TItX84Z_h0P0X7i9F0R?Sw>KSw}6?c4Oz zrY8UGtqpzF{$arr1&6W@K1!5`AVp^gyNuj?{DYaBhdAxgB?9aF9J?ECFcekd*>!Su zZ6Ht2xirciq#dyc}i{$4wgkVr1=m@8x_aEGB)(h)QI2$T}U*!u*%P zs@m%TF#)A(Q8a@uYI1#I<<6`V+HB&+P(NqbW95b1)k6J*d7K6G=H>Z(jodo!>3Pgc zmF)%q2F#icfI^*O0izN$fP;@q4YCOiT_!8oraVh&VbZJx zY)2y{;q7^)Lut=@lUDWa2CVGxl`CUWU#38l}i@t#1}Jm)Ly$= z>AZu&@}cEP3&PqmrZ#W5L6NV@r3CIuu=YYEbSg<0 z+1#;6c-*;au_8i)DALrun7d4BV1(lVB}QEUxw}{WL+zB5@!5v@qQ$3waB>z`q*|zP z@tu#{3t*C^C%DDppI~#fJ=0HX7|)q%<*5D8IcHi3`87|MX&e?vAtv5@?Xh3)orHtE zdTfrRSecQB3Hq2{s?Hf=!AeMp^UEzfMHc7kj(&@q%yte1!=H&+03rZdkR8agQLte%uyl%#5G(=!!oSh$?~mkR-ym2I54;B!OTepaG&{1; zS*2?Oz+bQm4mP&441&oY>;@x?+D?5zdm4Pu2NyZLsM=iQ^t(F|k?}k`vZ(LG!nps! z77Nqi9a%PZV_@_PjF*&32DLKzF_7L<*=t(-Cf z84J=Da2f>u*B8Ib6C;>0OKyQFX&d1GlQS847?aHwPda7C)MI7A0?K%OsLBnXK|M~T HuiyOx)~~=r diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 7f914367d6d..4609c700030 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -507,6 +507,10 @@ int convert_agent_to_logical_block_type(int agent_block_type_index){ return -1; } +int get_num_agent_types(){ + return logical_to_agent_map.size(); +} + //Pick a random block to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() ClusterBlockId pick_from_block() { diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 64c278eb3bd..0361393b26b 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -236,5 +236,6 @@ std::string e_move_result_to_string(e_move_result move_outcome); //SARA_TODO: find a better location for these extern std::unordered_map logical_to_agent_map; int convert_agent_to_logical_block_type(int agent_block_type_index); +int get_num_agent_types(); #endif diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 1de0e172160..8672e9eba50 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -722,7 +722,7 @@ void try_place(const t_placer_opts& placer_opts, move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.) ); //allocate move type statistics vector performed by the agent for each temperature - proposed_move_per_temp.resize((device_ctx.logical_block_types.size()-1) * (placer_opts.place_static_move_prob.size()),0); + proposed_move_per_temp.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()),0); proposed_move_agent_per_temp = vtr::fopen("agent_move_info.txt","w"); /* Get the first range limiter */ @@ -1386,8 +1386,9 @@ static e_move_result try_swap(const t_annealing_state* state, create_move_outcome = move_generator.propose_move(blocks_affected, move_type, move_blk_type , rlim, placer_opts, criticalities); } + auto logical_type = convert_agent_to_logical_block_type(move_blk_type.index); ++move_type_stat.num_moves[(int)move_type]; - ++move_type_stat.blk_type_moves[(int)move_type][move_blk_type.index]; + ++move_type_stat.blk_type_moves[(int)move_type][logical_type]; ++proposed_move_per_temp[(move_blk_type.index * (move_type_stat.blk_type_moves.size())) + (int)move_type]; LOG_MOVE_STATS_PROPOSED(t, blocks_affected); @@ -1402,7 +1403,7 @@ static e_move_result try_swap(const t_annealing_state* state, move_outcome = ABORTED; - ++move_type_stat.aborted_moves[(int)move_type][move_blk_type.index]; + ++move_type_stat.aborted_moves[(int)move_type][logical_type]; } else { VTR_ASSERT(create_move_outcome == e_create_move::VALID); @@ -1513,7 +1514,7 @@ static e_move_result try_swap(const t_annealing_state* state, /* Update clb data structures since we kept the move. */ commit_move_blocks(blocks_affected); - ++move_type_stat.accepted_moves[(int)move_type][move_blk_type.index]; + ++move_type_stat.accepted_moves[(int)move_type][logical_type]; //Highlights the new block when manual move is selected. #ifndef NO_GRAPHICS @@ -3046,10 +3047,10 @@ static void print_placement_move_types_stats( } for(size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++){ move_name = move_type_to_string(e_move_type(imove)); - moves = move_type_stat.blk_type_moves[imove][itype.index-1]; + moves = move_type_stat.blk_type_moves[imove][itype.index]; if(moves != 0) { - accepted = move_type_stat.accepted_moves[imove][itype.index - 1]; - aborted = move_type_stat.aborted_moves[imove][itype.index - 1]; + accepted = move_type_stat.accepted_moves[imove][itype.index]; + aborted = move_type_stat.aborted_moves[imove][itype.index]; rejected = moves - (accepted + aborted); VTR_LOG( "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index f0981415138..5475899fdbc 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -300,6 +300,9 @@ void SoftmaxAgent::set_action_prob() { t_logical_block_type blk_type; blk_type.index = i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); + q_[i] = (float) num_blocks / num_total_blocks; + q_[i] /= (num_available_moves_ * num_available_types_); + action_prob_[i] = (float) num_blocks / num_total_blocks; action_prob_[i] /= (num_available_moves_ * num_available_types_); } @@ -309,7 +312,7 @@ void SoftmaxAgent::set_action_prob() { action_prob_[i] = exp_q_[i] / sum_q; //SARA_TODO: check its logic with Mohamed. } } - // normalize all the action probabilities to guarantee the sum(all actyion probs) = 1 + // normalize all the action probabilities to guarantee the sum(all action probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), bind2nd(std::plus(), (1.0 - sum_prob) / (num_available_moves_ * num_available_types_))); From 8e7230da5fd40cc89c63742a7fbcf844457a3300 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 14 Dec 2022 14:59:54 -0500 Subject: [PATCH 15/81] changed the action_prob initialization --- vpr/src/place/simpleRL_move_generator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 5475899fdbc..e8618977b6c 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -300,11 +300,11 @@ void SoftmaxAgent::set_action_prob() { t_logical_block_type blk_type; blk_type.index = i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - q_[i] = (float) num_blocks / num_total_blocks; - q_[i] /= (num_available_moves_ * num_available_types_); + //q_[i] = (float) num_blocks / num_total_blocks; +// q_[i] /= (num_available_moves_ * num_available_types_); action_prob_[i] = (float) num_blocks / num_total_blocks; - action_prob_[i] /= (num_available_moves_ * num_available_types_); + action_prob_[i] /= (num_available_moves_); } } else { // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) From 320144cdaeafaba725282a41641f02b458783e4b Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 12 Jan 2023 15:06:45 -0500 Subject: [PATCH 16/81] changed the action_prob based on block ratio --- vpr/src/place/move_utils.cpp | 3 -- vpr/src/place/place.cpp | 7 +++-- vpr/src/place/simpleRL_move_generator.cpp | 34 +++++++++++++++-------- 3 files changed, 28 insertions(+), 16 deletions(-) diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 4609c700030..c1943ac67a1 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -556,8 +556,6 @@ ClusterBlockId pick_from_block(t_logical_block_type blk_type) { * loop if all blocks are fixed. */ auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); -// t_logical_block_type blk_type_temp = blk_type; -// blk_type_temp.index++; t_logical_block_type blk_type_temp; blk_type_temp.index = convert_agent_to_logical_block_type(blk_type.index); auto blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(blk_type_temp); @@ -617,7 +615,6 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ pin_from = crit_pin.second; return b_from; - //No critical block with 'blk_type' found //Unreachable statement return ClusterBlockId::INVALID(); } diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 8672e9eba50..0e489fa9dd5 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -157,6 +157,7 @@ static int num_ts_called = 0; /* This variable keeps track of each move type and block type frequency proposed by the RL agent at any specific temperature.*/ +//SARA_TODO: MAKE THIS OPTIONAL WITH COMMAND-LINE OPTION static std::vector proposed_move_per_temp; static FILE* proposed_move_agent_per_temp; @@ -422,8 +423,10 @@ static void print_placement_swaps_stats(const t_annealing_state& state); static void print_placement_move_types_stats( const MoveTypeStat& move_type_stat); +//SARA_TODO: delete these functions in the final version static void save_proposed_move_per_temp (); + /*****************************************************************************/ void try_place(const t_placer_opts& placer_opts, t_annealing_sched annealing_sched, @@ -1573,9 +1576,9 @@ static e_move_result try_swap(const t_annealing_state* state, (move_outcome ? "ACCEPTED" : "REJECTED"), ""); } move_outcome_stats.outcome = move_outcome; - + //SARA_TODO: fix delta cost value! calculate_reward_and_process_outcome(placer_opts, move_outcome_stats, - delta_c, timing_bb_factor, move_generator); + delta_c/*/costs->cost*/, timing_bb_factor, move_generator); #ifdef VTR_ENABLE_DEBUG_LOGGING # ifndef NO_GRAPHICS diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index e8618977b6c..d40bf0b471e 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -7,7 +7,8 @@ /* File-scope routines */ //a scaled and clipped exponential function -static float scaled_clipped_exp(float x) { return std::exp(std::min(1000000 * x, float(3.0))); } +static float scaled_clipped_exp(float x) { return std::exp(std::min(10*x, float(3.0))); } +//static float scaled_clipped_exp(float x) { return std::exp(x);} /* * * * @@ -76,6 +77,7 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ q_[last_action_] += delta_q; if (agent_info_file_) { + fseek(agent_info_file_,0,SEEK_END); fprintf(agent_info_file_, "%zu,", last_action_); fprintf(agent_info_file_, "%g,", reward); @@ -90,6 +92,7 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ } } fprintf(agent_info_file_, "\n"); + fflush(agent_info_file_); } } @@ -130,6 +133,7 @@ void EpsilonGreedyAgent::init_q_scores() { fprintf(agent_info_file_, "n%zu,", i); } fprintf(agent_info_file_, "\n"); + fflush(agent_info_file_); } set_epsilon_action_prob(); } @@ -238,6 +242,7 @@ void SoftmaxAgent::init_q_scores() { action_prob_ = std::vector(num_available_moves_ * num_available_types_, 0.); cumm_action_prob_ = std::vector(num_available_moves_ * num_available_types_); + if (agent_info_file_) { fprintf(agent_info_file_, "action,reward,"); for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { @@ -247,9 +252,10 @@ void SoftmaxAgent::init_q_scores() { fprintf(agent_info_file_, "n%zu,", i); } fprintf(agent_info_file_, "\n"); + fflush(agent_info_file_); } set_action_prob(); - //agent_info_file_ = vtr::fopen("agent_info.txt", "w"); + agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } t_propose_action SoftmaxAgent::propose_action() { @@ -278,7 +284,7 @@ t_propose_action SoftmaxAgent::propose_action() { last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_moves_); t_propose_action propose_action; - propose_action.move_type = (e_move_type)action; + propose_action.move_type = (e_move_type) action; propose_action.blk_type = blk_type; return propose_action; @@ -290,6 +296,7 @@ void SoftmaxAgent::set_action_prob() { // calculate the sum of all scaled clipped expnential q values float sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); + std::transform(q_.begin(), q_.end(), exp_q_.begin(), scaled_clipped_exp); auto& cluster_ctx = g_vpr_ctx.clustering(); int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); @@ -297,21 +304,26 @@ void SoftmaxAgent::set_action_prob() { if(sum_q == num_available_types_ * num_available_moves_) { //action probabilities need to be initialized based on availability of the block type in the netlist for (size_t i = 0; i < num_available_moves_ * num_available_types_; i++) { + //SARA_TODO: clean up these codes especially blk_type.index t_logical_block_type blk_type; - blk_type.index = i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index + blk_type.index = + i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); //q_[i] = (float) num_blocks / num_total_blocks; -// q_[i] /= (num_available_moves_ * num_available_types_); - + //q_[i] /= (num_available_moves_); // * num_available_types + //q_[i] *= 10^-7; action_prob_[i] = (float) num_blocks / num_total_blocks; action_prob_[i] /= (num_available_moves_); } - } else { - // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) - for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - action_prob_[i] = exp_q_[i] / sum_q; //SARA_TODO: check its logic with Mohamed. - } } + +// sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); + + // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { + action_prob_[i] = (exp_q_[i] / sum_q) * action_prob_[i]; + } + // normalize all the action probabilities to guarantee the sum(all action probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), From ea07c290e06fbb976c93cbc359f37b521fabb96c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 13 Jan 2023 14:35:02 -0500 Subject: [PATCH 17/81] init action_prob aligned with the least available block count in the netlist --- vpr/src/place/simpleRL_move_generator.cpp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index d40bf0b471e..c5fecabcc2b 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -302,6 +302,16 @@ void SoftmaxAgent::set_action_prob() { int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); if(sum_q == num_available_types_ * num_available_moves_) { + //find the minimum number of available blocks of available types + int min_block_type_count = INT_MAX; + for(size_t i = 1; i <= num_available_types_; i++){ + t_logical_block_type blk_type; + blk_type.index = i; + if(min_block_type_count > cluster_ctx.clb_nlist.blocks_per_type(blk_type).size()){ + min_block_type_count = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); + } + } + //action probabilities need to be initialized based on availability of the block type in the netlist for (size_t i = 0; i < num_available_moves_ * num_available_types_; i++) { //SARA_TODO: clean up these codes especially blk_type.index @@ -312,8 +322,8 @@ void SoftmaxAgent::set_action_prob() { //q_[i] = (float) num_blocks / num_total_blocks; //q_[i] /= (num_available_moves_); // * num_available_types //q_[i] *= 10^-7; - action_prob_[i] = (float) num_blocks / num_total_blocks; - action_prob_[i] /= (num_available_moves_); + action_prob_[i] = (float) num_blocks / (min_block_type_count); +// action_prob_[i] /= (num_available_moves_); } } From 16c0ce3bc36a449c9f59d9b99887efe3e160c455 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 16 Jan 2023 12:21:57 -0500 Subject: [PATCH 18/81] changed the action_prob transformation function to make sure that sum(action_prob) is 1 --- vpr/src/place/simpleRL_move_generator.cpp | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index c5fecabcc2b..4d7ab0d25a8 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -8,6 +8,7 @@ /* File-scope routines */ //a scaled and clipped exponential function static float scaled_clipped_exp(float x) { return std::exp(std::min(10*x, float(3.0))); } +static float normalize(float x, float sum){return x * (1/sum);} //static float scaled_clipped_exp(float x) { return std::exp(x);} /* * @@ -302,16 +303,6 @@ void SoftmaxAgent::set_action_prob() { int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); if(sum_q == num_available_types_ * num_available_moves_) { - //find the minimum number of available blocks of available types - int min_block_type_count = INT_MAX; - for(size_t i = 1; i <= num_available_types_; i++){ - t_logical_block_type blk_type; - blk_type.index = i; - if(min_block_type_count > cluster_ctx.clb_nlist.blocks_per_type(blk_type).size()){ - min_block_type_count = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - } - } - //action probabilities need to be initialized based on availability of the block type in the netlist for (size_t i = 0; i < num_available_moves_ * num_available_types_; i++) { //SARA_TODO: clean up these codes especially blk_type.index @@ -322,13 +313,11 @@ void SoftmaxAgent::set_action_prob() { //q_[i] = (float) num_blocks / num_total_blocks; //q_[i] /= (num_available_moves_); // * num_available_types //q_[i] *= 10^-7; - action_prob_[i] = (float) num_blocks / (min_block_type_count); + action_prob_[i] = (float) num_blocks / (num_total_blocks); // action_prob_[i] /= (num_available_moves_); } } -// sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); - // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { action_prob_[i] = (exp_q_[i] / sum_q) * action_prob_[i]; @@ -337,7 +326,7 @@ void SoftmaxAgent::set_action_prob() { // normalize all the action probabilities to guarantee the sum(all action probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), - bind2nd(std::plus(), (1.0 - sum_prob) / (num_available_moves_ * num_available_types_))); + bind2nd(std::multiplies(), (1/sum_prob))); //calulcate the accumulative action probability of each action // e.g. if we have 5 actions with equal probability of 0.2, the cumm_action_prob will be {0.2,0.4,0.6,0.8,1.0} From 00238fe78877d30e123db914699ae510abb1ae2a Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 16 Jan 2023 12:24:26 -0500 Subject: [PATCH 19/81] removed dead code --- vpr/src/place/simpleRL_move_generator.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 4d7ab0d25a8..4339fe5ee55 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -8,7 +8,6 @@ /* File-scope routines */ //a scaled and clipped exponential function static float scaled_clipped_exp(float x) { return std::exp(std::min(10*x, float(3.0))); } -static float normalize(float x, float sum){return x * (1/sum);} //static float scaled_clipped_exp(float x) { return std::exp(x);} /* * From ee14f141fb8bec97916c1048d9ae97ba784e1867 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 16 Jan 2023 16:45:06 -0500 Subject: [PATCH 20/81] action_prob value was incorrect after first iteration, fixed it --- vpr/src/place/simpleRL_move_generator.cpp | 34 +++++++++++++---------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 4339fe5ee55..86c02e21687 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -301,24 +301,30 @@ void SoftmaxAgent::set_action_prob() { auto& cluster_ctx = g_vpr_ctx.clustering(); int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); - if(sum_q == num_available_types_ * num_available_moves_) { - //action probabilities need to be initialized based on availability of the block type in the netlist - for (size_t i = 0; i < num_available_moves_ * num_available_types_; i++) { - //SARA_TODO: clean up these codes especially blk_type.index - t_logical_block_type blk_type; - blk_type.index = - i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index - auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - //q_[i] = (float) num_blocks / num_total_blocks; - //q_[i] /= (num_available_moves_); // * num_available_types - //q_[i] *= 10^-7; - action_prob_[i] = (float) num_blocks / (num_total_blocks); +// if(sum_q == num_available_types_ * num_available_moves_) { +// //action probabilities need to be initialized based on availability of the block type in the netlist +// for (size_t i = 0; i < num_available_moves_ * num_available_types_; i++) { +// //SARA_TODO: clean up these codes especially blk_type.index +// t_logical_block_type blk_type; +// blk_type.index = +// i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index +// auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); +// //q_[i] = (float) num_blocks / num_total_blocks; +// //q_[i] /= (num_available_moves_); // * num_available_types +// //q_[i] *= 10^-7; +// action_prob_[i] = (float) num_blocks / (num_total_blocks); // action_prob_[i] /= (num_available_moves_); - } - } +// } +// } // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { + t_logical_block_type blk_type; + blk_type.index = + i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index + auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); + action_prob_[i] = (float) num_blocks / (num_total_blocks); + action_prob_[i] /= (num_available_moves_); action_prob_[i] = (exp_q_[i] / sum_q) * action_prob_[i]; } From eecd1a9662c7211a564834ce44feff055ce3753c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 24 Jan 2023 15:04:19 -0500 Subject: [PATCH 21/81] refactor code for RL agent --- vpr/src/place/simpleRL_move_generator.cpp | 50 +++++++++-------------- vpr/src/place/simpleRL_move_generator.h | 3 ++ 2 files changed, 22 insertions(+), 31 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 86c02e21687..9cc287976d1 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -7,8 +7,7 @@ /* File-scope routines */ //a scaled and clipped exponential function -static float scaled_clipped_exp(float x) { return std::exp(std::min(10*x, float(3.0))); } -//static float scaled_clipped_exp(float x) { return std::exp(x);} +static float scaled_clipped_exp(float x) { return std::exp(std::min(100000*x, float(3.0)));} /* * * * @@ -240,7 +239,7 @@ void SoftmaxAgent::init_q_scores() { exp_q_ = std::vector(num_available_moves_ * num_available_types_, 0.); num_action_chosen_ = std::vector(num_available_moves_ * num_available_types_, 0); action_prob_ = std::vector(num_available_moves_ * num_available_types_, 0.); - + block_type_ratio = std::vector(num_available_types_,0.); cumm_action_prob_ = std::vector(num_available_moves_ * num_available_types_); if (agent_info_file_) { @@ -254,6 +253,7 @@ void SoftmaxAgent::init_q_scores() { fprintf(agent_info_file_, "\n"); fflush(agent_info_file_); } + set_block_ratio(); set_action_prob(); agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } @@ -290,42 +290,30 @@ t_propose_action SoftmaxAgent::propose_action() { return propose_action; } +void SoftmaxAgent::set_block_ratio() { + auto& cluster_ctx = g_vpr_ctx.clustering(); + int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); + + for(int i = 1; i <= num_available_types_; i++){ + t_logical_block_type blk_type; + blk_type.index = i; + auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); + block_type_ratio[i-1] = (float) num_blocks/num_total_blocks; + block_type_ratio[i-1] /= num_available_moves_; + } +} + void SoftmaxAgent::set_action_prob() { //calculate the scaled and clipped explonential function for the estimated q value for each action - std::transform(q_.begin(), q_.end(), exp_q_.begin(), scaled_clipped_exp); + std::transform(q_.begin(), q_.end(), exp_q_.begin(),scaled_clipped_exp); // calculate the sum of all scaled clipped expnential q values float sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); - std::transform(q_.begin(), q_.end(), exp_q_.begin(), scaled_clipped_exp); - - auto& cluster_ctx = g_vpr_ctx.clustering(); - int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); - -// if(sum_q == num_available_types_ * num_available_moves_) { -// //action probabilities need to be initialized based on availability of the block type in the netlist -// for (size_t i = 0; i < num_available_moves_ * num_available_types_; i++) { -// //SARA_TODO: clean up these codes especially blk_type.index -// t_logical_block_type blk_type; -// blk_type.index = -// i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index -// auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); -// //q_[i] = (float) num_blocks / num_total_blocks; -// //q_[i] /= (num_available_moves_); // * num_available_types -// //q_[i] *= 10^-7; -// action_prob_[i] = (float) num_blocks / (num_total_blocks); -// action_prob_[i] /= (num_available_moves_); -// } -// } // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - t_logical_block_type blk_type; - blk_type.index = - i / num_available_moves_ + 1; //excluding the EMPTY type by adding one to the blk type index - auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - action_prob_[i] = (float) num_blocks / (num_total_blocks); - action_prob_[i] /= (num_available_moves_); - action_prob_[i] = (exp_q_[i] / sum_q) * action_prob_[i]; + int blk_ratio_index = (int) i / num_available_moves_; + action_prob_[i] = (exp_q_[i] / sum_q) * block_type_ratio[blk_ratio_index]; } // normalize all the action probabilities to guarantee the sum(all action probs) = 1 diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index a33c1e360a4..a719f28255d 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -18,6 +18,7 @@ class KArmedBanditAgent { virtual t_propose_action propose_action() = 0; void process_outcome(double, e_reward_function); + protected: float exp_alpha_ = -1; //Step size for q_ updates (< 0 implies use incremental average) size_t num_available_moves_; //Number of arms of the karmed bandit problem (k) @@ -77,6 +78,7 @@ class SoftmaxAgent : public KArmedBanditAgent { public: void set_action_prob(); + void set_block_ratio(); void set_step(float gamma, int move_lim); void init_q_scores(); @@ -84,6 +86,7 @@ class SoftmaxAgent : public KArmedBanditAgent { std::vector exp_q_; //The clipped and scaled exponential of the estimated Q value for each action std::vector action_prob_; //The probability of choosing each action std::vector cumm_action_prob_; //The accumulative probability of choosing each action + std::vector block_type_ratio; //The probability of choosing each block type depends on its ratio in the netlist }; /** From 779d9151b6190aff5c8e442f6b82b943aa96fb7d Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 24 Jan 2023 15:11:29 -0500 Subject: [PATCH 22/81] executed git format --- vpr/src/base/clustered_netlist.cpp | 6 +-- vpr/src/base/clustered_netlist.h | 2 +- vpr/src/place/RL_agent_util.cpp | 8 ++-- vpr/src/place/move_utils.cpp | 13 +++---- vpr/src/place/move_utils.h | 2 +- vpr/src/place/place.cpp | 47 +++++++++++------------ vpr/src/place/simpleRL_move_generator.cpp | 21 +++++----- vpr/src/place/simpleRL_move_generator.h | 1 - 8 files changed, 48 insertions(+), 52 deletions(-) diff --git a/vpr/src/base/clustered_netlist.cpp b/vpr/src/base/clustered_netlist.cpp index 22308a2e4f3..274a78e1d6d 100644 --- a/vpr/src/base/clustered_netlist.cpp +++ b/vpr/src/base/clustered_netlist.cpp @@ -28,8 +28,8 @@ t_logical_block_type_ptr ClusteredNetlist::block_type(const ClusterBlockId id) c return block_types_[id]; } -std::vector ClusteredNetlist::blocks_per_type(const t_logical_block_type blk_type) const{ - if(blocks_per_type_.count(blk_type.index) == 0) { +std::vector ClusteredNetlist::blocks_per_type(const t_logical_block_type blk_type) const { + if (blocks_per_type_.count(blk_type.index) == 0) { std::vector empty_vector; return empty_vector; } @@ -210,7 +210,7 @@ void ClusteredNetlist::remove_block_impl(const ClusterBlockId blk_id) { delete block_pbs_[blk_id]; block_pbs_.insert(blk_id, NULL); block_types_.insert(blk_id, NULL); - std::remove(blocks_per_type_[blk_type->index].begin(), blocks_per_type_[blk_type->index].end(),blk_id); + std::remove(blocks_per_type_[blk_type->index].begin(), blocks_per_type_[blk_type->index].end(), blk_id); block_logical_pins_.insert(blk_id, std::vector()); } diff --git a/vpr/src/base/clustered_netlist.h b/vpr/src/base/clustered_netlist.h index 743f9065d30..bbf6a21b851 100644 --- a/vpr/src/base/clustered_netlist.h +++ b/vpr/src/base/clustered_netlist.h @@ -351,7 +351,7 @@ class ClusteredNetlist : public Netlist block_pbs_; /// block_types_; ///> block_logical_pins_; ///> blocks_per_type_; //Blocks per specific block types + std::unordered_map> blocks_per_type_; //Blocks per specific block types //Pins /** diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index 11c704282b1..f993cebd275 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -70,12 +70,12 @@ void create_move_generators(std::unique_ptr& move_generator, std: auto& cluster_ctx = g_vpr_ctx.clustering(); int logical_blk_types_count = 0; int agent_type_index = 0; - for(auto itype : device_ctx.logical_block_types){ - if(itype.index == 0) //ignore empty type + for (auto itype : device_ctx.logical_block_types) { + if (itype.index == 0) //ignore empty type continue; auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); - if(blk_per_type.size() != 0){ - logical_to_agent_map.insert(std::pair(agent_type_index,itype.index)); + if (blk_per_type.size() != 0) { + logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); agent_type_index++; logical_blk_types_count++; } diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index c1943ac67a1..5f9abf86554 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -498,16 +498,16 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& return empty_locs; } //SARA_TODO: -std::unordered_map logical_to_agent_map; -int convert_agent_to_logical_block_type(int agent_block_type_index){ - if(logical_to_agent_map.count(agent_block_type_index)){ +std::unordered_map logical_to_agent_map; +int convert_agent_to_logical_block_type(int agent_block_type_index) { + if (logical_to_agent_map.count(agent_block_type_index)) { return logical_to_agent_map[agent_block_type_index]; } //invalid block type return -1; } -int get_num_agent_types(){ +int get_num_agent_types() { return logical_to_agent_map.size(); } @@ -561,17 +561,16 @@ ClusterBlockId pick_from_block(t_logical_block_type blk_type) { auto blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(blk_type_temp); //no blocks with this type is available - if(blocks_per_type.size() == 0){ + if (blocks_per_type.size() == 0) { return ClusterBlockId::INVALID(); } std::unordered_set tried_from_blocks; - //So long as untried blocks remain while (tried_from_blocks.size() < blocks_per_type.size()) { //Pick a block at random - ClusterBlockId b_from = ClusterBlockId(blocks_per_type[vtr::irand((int) blocks_per_type.size() - 1)]); + ClusterBlockId b_from = ClusterBlockId(blocks_per_type[vtr::irand((int)blocks_per_type.size() - 1)]); //Record it as tried tried_from_blocks.insert(b_from); diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 0361393b26b..2978cb2a6ec 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -234,7 +234,7 @@ bool intersect_range_limit_with_floorplan_constraints(t_logical_block_type_ptr t std::string e_move_result_to_string(e_move_result move_outcome); //SARA_TODO: find a better location for these -extern std::unordered_map logical_to_agent_map; +extern std::unordered_map logical_to_agent_map; int convert_agent_to_logical_block_type(int agent_block_type_index); int get_num_agent_types(); diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index ea0d1bec75f..c467493113f 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -156,7 +156,7 @@ static int num_swap_aborted = 0; static int num_ts_called = 0; /* This variable keeps track of each move type and block type frequency - proposed by the RL agent at any specific temperature.*/ + * proposed by the RL agent at any specific temperature.*/ //SARA_TODO: MAKE THIS OPTIONAL WITH COMMAND-LINE OPTION static std::vector proposed_move_per_temp; static FILE* proposed_move_agent_per_temp; @@ -424,8 +424,7 @@ static void print_placement_move_types_stats( const MoveTypeStat& move_type_stat); //SARA_TODO: delete these functions in the final version -static void save_proposed_move_per_temp (); - +static void save_proposed_move_per_temp(); /*****************************************************************************/ void try_place(const t_placer_opts& placer_opts, @@ -720,13 +719,13 @@ void try_place(const t_placer_opts& placer_opts, MoveTypeStat move_type_stat; move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size(), 0); - move_type_stat.blk_type_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.) ); - move_type_stat.accepted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.) ); - move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.) ); + move_type_stat.blk_type_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.)); + move_type_stat.accepted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.)); + move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.)); //allocate move type statistics vector performed by the agent for each temperature - proposed_move_per_temp.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()),0); - proposed_move_agent_per_temp = vtr::fopen("agent_move_info.txt","w"); + proposed_move_per_temp.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); + proposed_move_agent_per_temp = vtr::fopen("agent_move_info.txt", "w"); /* Get the first range limiter */ first_rlim = (float)max(device_ctx.grid.width() - 1, @@ -1354,7 +1353,7 @@ static e_move_result try_swap(const t_annealing_state* state, crit_params.crit_exponent = state->crit_exponent; crit_params.crit_limit = placer_opts.place_crit_limit; - e_move_type move_type; //move type number + e_move_type move_type; //move type number t_logical_block_type move_blk_type; //blk type that is chosen to be moved by the agent num_ts_called++; @@ -1386,7 +1385,7 @@ static e_move_result try_swap(const t_annealing_state* state, #endif //NO_GRAPHICS } else { //Generate a new move (perturbation) used to explore the space of possible placements - create_move_outcome = move_generator.propose_move(blocks_affected, move_type, move_blk_type , rlim, placer_opts, criticalities); + create_move_outcome = move_generator.propose_move(blocks_affected, move_type, move_blk_type, rlim, placer_opts, criticalities); } auto logical_type = convert_agent_to_logical_block_type(move_blk_type.index); @@ -1578,7 +1577,7 @@ static e_move_result try_swap(const t_annealing_state* state, move_outcome_stats.outcome = move_outcome; //SARA_TODO: fix delta cost value! calculate_reward_and_process_outcome(placer_opts, move_outcome_stats, - delta_c/*/costs->cost*/, timing_bb_factor, move_generator); + delta_c /*/costs->cost*/, timing_bb_factor, move_generator); #ifdef VTR_ENABLE_DEBUG_LOGGING # ifndef NO_GRAPHICS @@ -2894,13 +2893,13 @@ void print_clb_placement(const char* fname) { } #endif -static void save_proposed_move_per_temp(){ - if(proposed_move_agent_per_temp){ - for(auto iaction = 0; iaction < proposed_move_per_temp.size(); iaction++){ - fprintf(proposed_move_agent_per_temp,"%d\t",proposed_move_per_temp[iaction]); +static void save_proposed_move_per_temp() { + if (proposed_move_agent_per_temp) { + for (auto iaction = 0; iaction < proposed_move_per_temp.size(); iaction++) { + fprintf(proposed_move_agent_per_temp, "%d\t", proposed_move_per_temp[iaction]); proposed_move_per_temp[iaction] = 0; } - fprintf(proposed_move_agent_per_temp,"\n"); + fprintf(proposed_move_agent_per_temp, "\n"); } } @@ -3045,22 +3044,22 @@ static void print_placement_move_types_stats( std::string move_name; VTR_LOG("\n\nPercentage of different move types:\n"); - for(auto itype : device_ctx.logical_block_types){ - if(itype.index == 0){ + for (auto itype : device_ctx.logical_block_types) { + if (itype.index == 0) { continue; //EMPTY type } - for(size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++){ + for (size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++) { move_name = move_type_to_string(e_move_type(imove)); moves = move_type_stat.blk_type_moves[imove][itype.index]; - if(moves != 0) { + if (moves != 0) { accepted = move_type_stat.accepted_moves[imove][itype.index]; aborted = move_type_stat.aborted_moves[imove][itype.index]; rejected = moves - (accepted + aborted); VTR_LOG( - "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", - move_name.c_str(), itype.name, 100 * moves / total_moves, - 100 * accepted / moves, 100 * rejected / moves, - 100 * aborted / moves); + "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", + move_name.c_str(), itype.name, 100 * moves / total_moves, + 100 * accepted / moves, 100 * rejected / moves, + 100 * aborted / moves); } } VTR_LOG("\n"); diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index ed1b8bde03c..252ea211ae7 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -7,7 +7,7 @@ /* File-scope routines */ //a scaled and clipped exponential function -static float scaled_clipped_exp(float x) { return std::exp(std::min(100000*x, float(3.0)));} +static float scaled_clipped_exp(float x) { return std::exp(std::min(100000 * x, float(3.0))); } /* * * * @@ -76,7 +76,7 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ q_[last_action_] += delta_q; if (agent_info_file_) { - fseek(agent_info_file_,0,SEEK_END); + fseek(agent_info_file_, 0, SEEK_END); fprintf(agent_info_file_, "%zu,", last_action_); fprintf(agent_info_file_, "%g,", reward); @@ -239,7 +239,7 @@ void SoftmaxAgent::init_q_scores() { exp_q_ = std::vector(num_available_moves_ * num_available_types_, 0.); num_action_chosen_ = std::vector(num_available_moves_ * num_available_types_, 0); action_prob_ = std::vector(num_available_moves_ * num_available_types_, 0.); - block_type_ratio = std::vector(num_available_types_,0.); + block_type_ratio = std::vector(num_available_types_, 0.); cumm_action_prob_ = std::vector(num_available_moves_ * num_available_types_); if (agent_info_file_) { @@ -284,7 +284,7 @@ t_propose_action SoftmaxAgent::propose_action() { last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_moves_); t_propose_action propose_action; - propose_action.move_type = (e_move_type) action; + propose_action.move_type = (e_move_type)action; propose_action.blk_type = blk_type; return propose_action; @@ -294,33 +294,32 @@ void SoftmaxAgent::set_block_ratio() { auto& cluster_ctx = g_vpr_ctx.clustering(); int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); - for(int i = 1; i <= num_available_types_; i++){ + for (int i = 1; i <= num_available_types_; i++) { t_logical_block_type blk_type; blk_type.index = i; auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - block_type_ratio[i-1] = (float) num_blocks/num_total_blocks; - block_type_ratio[i-1] /= num_available_moves_; + block_type_ratio[i - 1] = (float)num_blocks / num_total_blocks; + block_type_ratio[i - 1] /= num_available_moves_; } } void SoftmaxAgent::set_action_prob() { //calculate the scaled and clipped explonential function for the estimated q value for each action - std::transform(q_.begin(), q_.end(), exp_q_.begin(),scaled_clipped_exp); + std::transform(q_.begin(), q_.end(), exp_q_.begin(), scaled_clipped_exp); // calculate the sum of all scaled clipped expnential q values float sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - int blk_ratio_index = (int) i / num_available_moves_; + int blk_ratio_index = (int)i / num_available_moves_; action_prob_[i] = (exp_q_[i] / sum_q) * block_type_ratio[blk_ratio_index]; } // normalize all the action probabilities to guarantee the sum(all action probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), - bind2nd(std::multiplies(), (1/sum_prob))); - + bind2nd(std::multiplies(), (1 / sum_prob))); // calculate the accumulative action probability of each action // e.g. if we have 5 actions with equal probability of 0.2, the cumm_action_prob will be {0.2,0.4,0.6,0.8,1.0} diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index a719f28255d..648c64fc87c 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -18,7 +18,6 @@ class KArmedBanditAgent { virtual t_propose_action propose_action() = 0; void process_outcome(double, e_reward_function); - protected: float exp_alpha_ = -1; //Step size for q_ updates (< 0 implies use incremental average) size_t num_available_moves_; //Number of arms of the karmed bandit problem (k) From b944ddcafd3c091cef9cdb33dc73a1764550ba3c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 25 Jan 2023 16:09:55 -0500 Subject: [PATCH 23/81] find logical bugs with titan benchmarks, fixed it, removed the extra printing --- vpr/src/place/place.cpp | 2 +- vpr/src/place/simpleRL_move_generator.cpp | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index c467493113f..4c384f16207 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -825,7 +825,7 @@ void try_place(const t_placer_opts& placer_opts, print_place_status(state, stats, temperature_timer.elapsed_sec(), critical_path.delay(), sTNS, sWNS, tot_iter); - save_proposed_move_per_temp(); + //save_proposed_move_per_temp(); if (placer_opts.place_algorithm.is_timing_driven() && placer_opts.place_agent_multistate diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 252ea211ae7..15def8d5251 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -255,7 +255,7 @@ void SoftmaxAgent::init_q_scores() { } set_block_ratio(); set_action_prob(); - agent_info_file_ = vtr::fopen("agent_info.txt", "w"); +// agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } t_propose_action SoftmaxAgent::propose_action() { @@ -294,12 +294,12 @@ void SoftmaxAgent::set_block_ratio() { auto& cluster_ctx = g_vpr_ctx.clustering(); int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); - for (int i = 1; i <= num_available_types_; i++) { + for (int i = 0; i < num_available_types_; i++) { t_logical_block_type blk_type; - blk_type.index = i; + blk_type.index = convert_agent_to_logical_block_type(i); auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - block_type_ratio[i - 1] = (float)num_blocks / num_total_blocks; - block_type_ratio[i - 1] /= num_available_moves_; + block_type_ratio[i] = (float)num_blocks / num_total_blocks; + block_type_ratio[i] /= num_available_moves_; } } From e4cc2b87bf1ff41dd63222b89342ac33ec203ef1 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 26 Jan 2023 16:55:37 -0500 Subject: [PATCH 24/81] updated the epsilon greedy agent to work with block type as well as move type --- vpr/src/place/RL_agent_util.cpp | 51 ++++++++++++----------- vpr/src/place/place.cpp | 2 +- vpr/src/place/simpleRL_move_generator.cpp | 28 +++++++------ 3 files changed, 42 insertions(+), 39 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index f993cebd275..bd62cfa42ac 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -34,25 +34,47 @@ void create_move_generators(std::unique_ptr& move_generator, std: * Region / CriticalUniform) * * * * This state is activated late in the anneale and in the Quench */ + + //passing block type as well as number of available actions to the agents + //should change this to a command-line options, hence the user can choose + //the level of the agent intelligent + //default option now becomes considering move_type as well as block_types + + auto& device_ctx = g_vpr_ctx.device(); + //int logical_blk_types_count = device_ctx.logical_block_types.size() - 1;//excluding the EMPTY type + auto& cluster_ctx = g_vpr_ctx.clustering(); + int logical_blk_types_count = 0; + int agent_type_index = 0; + for (auto itype : device_ctx.logical_block_types) { + if (itype.index == 0) //ignore empty type + continue; + auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); + if (blk_per_type.size() != 0) { + logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); + agent_type_index++; + logical_blk_types_count++; + } + } + if (placer_opts.place_agent_algorithm == E_GREEDY) { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, placer_opts.place_agent_epsilon); + karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES,logical_blk_types_count, placer_opts.place_agent_epsilon); karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES, placer_opts.place_agent_epsilon); + karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES,logical_blk_types_count, placer_opts.place_agent_epsilon); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } else { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, placer_opts.place_agent_epsilon); + karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES,logical_blk_types_count, placer_opts.place_agent_epsilon); karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, placer_opts.place_agent_epsilon); + karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES,logical_blk_types_count, placer_opts.place_agent_epsilon); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } @@ -60,27 +82,6 @@ void create_move_generators(std::unique_ptr& move_generator, std: VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; - //passing block type as well as number of available actions to the agents - //should change this to a command-line options, hence the user can choose - //the level of the agent intelligent - //default option now becomes considering move_type as well as block_types - - auto& device_ctx = g_vpr_ctx.device(); - //int logical_blk_types_count = device_ctx.logical_block_types.size() - 1;//excluding the EMPTY type - auto& cluster_ctx = g_vpr_ctx.clustering(); - int logical_blk_types_count = 0; - int agent_type_index = 0; - for (auto itype : device_ctx.logical_block_types) { - if (itype.index == 0) //ignore empty type - continue; - auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); - if (blk_per_type.size() != 0) { - logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); - agent_type_index++; - logical_blk_types_count++; - } - } - if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, logical_blk_types_count); diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 4c384f16207..c0f73294936 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -825,7 +825,7 @@ void try_place(const t_placer_opts& placer_opts, print_place_status(state, stats, temperature_timer.elapsed_sec(), critical_path.delay(), sTNS, sWNS, tot_iter); - //save_proposed_move_per_temp(); +// save_proposed_move_per_temp(); if (placer_opts.place_algorithm.is_timing_driven() && placer_opts.place_agent_multistate diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 15def8d5251..de3b5a59f04 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -135,6 +135,7 @@ void EpsilonGreedyAgent::init_q_scores() { fflush(agent_info_file_); } set_epsilon_action_prob(); +// agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { @@ -161,7 +162,7 @@ void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { } t_propose_action EpsilonGreedyAgent::propose_action() { - size_t action = 0; + size_t move_type; t_logical_block_type blk_type; if (vtr::frand() < epsilon_) { @@ -170,28 +171,28 @@ t_propose_action EpsilonGreedyAgent::propose_action() { float p = vtr::frand(); auto itr = std::lower_bound(cumm_epsilon_action_prob_.begin(), cumm_epsilon_action_prob_.end(), p); auto action_type_q_pos = itr - cumm_epsilon_action_prob_.begin(); - action = (action_type_q_pos) % num_available_moves_; + move_type = (action_type_q_pos) % num_available_moves_; if (num_available_types_ != 1) { blk_type.index = action_type_q_pos / num_available_moves_; } } else { /* Greedy (Exploit) - * For probability 1-epsilon, choose the greedy action */ + * For probability 1-epsilon, choose the greedy move_type */ auto itr = std::max_element(q_.begin(), q_.end()); VTR_ASSERT(itr != q_.end()); auto action_type_q_pos = itr - q_.begin(); - action = action_type_q_pos % num_available_moves_; + move_type = action_type_q_pos % num_available_moves_; if (num_available_types_ != 1) { blk_type.index = action_type_q_pos / num_available_moves_; } } - VTR_ASSERT(action < num_available_moves_); + VTR_ASSERT(move_type < num_available_moves_); - last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_moves_); + last_action_ = (num_available_types_ == 1) ? move_type : move_type + (blk_type.index * num_available_moves_); t_propose_action propose_action; - propose_action.move_type = (e_move_type)action; + propose_action.move_type = (e_move_type)move_type; propose_action.blk_type = blk_type; return propose_action; @@ -260,31 +261,31 @@ void SoftmaxAgent::init_q_scores() { t_propose_action SoftmaxAgent::propose_action() { set_action_prob(); - size_t action = 0; + size_t move_type; t_logical_block_type blk_type; float p = vtr::frand(); auto itr = std::lower_bound(cumm_action_prob_.begin(), cumm_action_prob_.end(), p); auto action_type_q_pos = itr - cumm_action_prob_.begin(); - action = (action_type_q_pos) % num_available_moves_; + move_type = (action_type_q_pos) % num_available_moves_; if (num_available_types_ != 1) { blk_type.index = action_type_q_pos / num_available_moves_; } //To take care that the last element in cumm_action_prob_ might be less than 1 by a small value if (action_type_q_pos == num_available_moves_ * num_available_types_) { - action = num_available_moves_ - 1; + move_type = num_available_moves_ - 1; if (num_available_types_ > 1) { blk_type.index = num_available_types_ - 1; } } - VTR_ASSERT(action < num_available_moves_); + VTR_ASSERT(move_type < num_available_moves_); - last_action_ = (num_available_types_ == 1) ? action : action + (blk_type.index * num_available_moves_); + last_action_ = (num_available_types_ == 1) ? move_type : move_type + (blk_type.index * num_available_moves_); t_propose_action propose_action; - propose_action.move_type = (e_move_type)action; + propose_action.move_type = (e_move_type)move_type; propose_action.blk_type = blk_type; return propose_action; @@ -300,6 +301,7 @@ void SoftmaxAgent::set_block_ratio() { auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); block_type_ratio[i] = (float)num_blocks / num_total_blocks; block_type_ratio[i] /= num_available_moves_; +// block_type_ratio[i] = std::min(block_type_ratio[i], float(0.05)); } } From 643d3c2c82d0deff8cfc618fb1425a072239014a Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 31 Jan 2023 17:56:01 -0500 Subject: [PATCH 25/81] order of adding different move types to avail_moves for agent was incorrect --- vpr/src/place/simpleRL_move_generator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index de3b5a59f04..1c1dbe3d2df 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -17,8 +17,8 @@ static float scaled_clipped_exp(float x) { return std::exp(std::min(100000 * x, SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr& agent) { avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); - avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); + avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); @@ -29,8 +29,8 @@ SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr& agen SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr& agent) { avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); - avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); + avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); avail_moves.emplace_back(std::make_unique()); From fdb2b2e01052eb657caec5146ade64d73c17331f Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 1 Feb 2023 17:48:28 -0500 Subject: [PATCH 26/81] find bug for designs that have only one available block and fix it --- vpr/src/place/directed_moves_util.cpp | 4 +-- vpr/src/place/move_generator.h | 6 ++-- vpr/src/place/move_utils.h | 1 + vpr/src/place/place.cpp | 35 ++++++++++++----------- vpr/src/place/simpleRL_move_generator.cpp | 35 ++++++++++++++++------- vpr/src/place/simpleRL_move_generator.h | 1 + 6 files changed, 51 insertions(+), 31 deletions(-) diff --git a/vpr/src/place/directed_moves_util.cpp b/vpr/src/place/directed_moves_util.cpp index bf412386057..c18996747a9 100644 --- a/vpr/src/place/directed_moves_util.cpp +++ b/vpr/src/place/directed_moves_util.cpp @@ -50,7 +50,7 @@ void calculate_centroid_loc(ClusterBlockId b_from, bool timing_weights, t_pl_loc if (pin_id == sink_pin_id) continue; ipin = cluster_ctx.clb_nlist.pin_net_index(sink_pin_id); - if (timing_weights) { + if (timing_weights && criticalities != NULL) { weight = criticalities->criticality(net_id, ipin); } else { weight = 1; @@ -67,7 +67,7 @@ void calculate_centroid_loc(ClusterBlockId b_from, bool timing_weights, t_pl_loc //else the pin is sink --> only care about its driver else { ipin = cluster_ctx.clb_nlist.pin_net_index(pin_id); - if (timing_weights) { + if (timing_weights && criticalities != NULL) { weight = criticalities->criticality(net_id, ipin); } else { weight = 1; diff --git a/vpr/src/place/move_generator.h b/vpr/src/place/move_generator.h index a4e43414a5d..cbd1b685fe4 100644 --- a/vpr/src/place/move_generator.h +++ b/vpr/src/place/move_generator.h @@ -31,9 +31,9 @@ struct MoveOutcomeStats { */ struct MoveTypeStat { std::vector num_moves; // SARA_TODO: seems to be redundant - std::vector> blk_type_moves; - std::vector> accepted_moves; - std::vector> aborted_moves; + std::vector blk_type_moves; + std::vector accepted_moves; + std::vector aborted_moves; }; /** diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 2978cb2a6ec..f505ddd81e9 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -28,6 +28,7 @@ enum class e_move_type { CRIT_UNIFORM, FEASIBLE_REGION, MANUAL_MOVE, + }; enum class e_create_move { diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index c0f73294936..1725637bdcf 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -719,9 +719,10 @@ void try_place(const t_placer_opts& placer_opts, MoveTypeStat move_type_stat; move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size(), 0); - move_type_stat.blk_type_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.)); - move_type_stat.accepted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.)); - move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), std::vector(device_ctx.logical_block_types.size(), 0.)); + + move_type_stat.blk_type_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); + move_type_stat.accepted_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); + move_type_stat.aborted_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); //allocate move type statistics vector performed by the agent for each temperature proposed_move_per_temp.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); @@ -1388,10 +1389,9 @@ static e_move_result try_swap(const t_annealing_state* state, create_move_outcome = move_generator.propose_move(blocks_affected, move_type, move_blk_type, rlim, placer_opts, criticalities); } - auto logical_type = convert_agent_to_logical_block_type(move_blk_type.index); ++move_type_stat.num_moves[(int)move_type]; - ++move_type_stat.blk_type_moves[(int)move_type][logical_type]; - ++proposed_move_per_temp[(move_blk_type.index * (move_type_stat.blk_type_moves.size())) + (int)move_type]; + ++move_type_stat.blk_type_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; + ++proposed_move_per_temp[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; LOG_MOVE_STATS_PROPOSED(t, blocks_affected); @@ -1405,7 +1405,7 @@ static e_move_result try_swap(const t_annealing_state* state, move_outcome = ABORTED; - ++move_type_stat.aborted_moves[(int)move_type][logical_type]; + ++move_type_stat.aborted_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; } else { VTR_ASSERT(create_move_outcome == e_create_move::VALID); @@ -1516,7 +1516,7 @@ static e_move_result try_swap(const t_annealing_state* state, /* Update clb data structures since we kept the move. */ commit_move_blocks(blocks_affected); - ++move_type_stat.accepted_moves[(int)move_type][logical_type]; + ++move_type_stat.accepted_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; //Highlights the new block when manual move is selected. #ifndef NO_GRAPHICS @@ -3041,27 +3041,30 @@ static void print_placement_move_types_stats( move_type_stat.num_moves.end(), 0.0); auto& device_ctx = g_vpr_ctx.device(); + auto& cluster_ctx = g_vpr_ctx.clustering(); std::string move_name; + int agent_type = 0; VTR_LOG("\n\nPercentage of different move types:\n"); for (auto itype : device_ctx.logical_block_types) { - if (itype.index == 0) { + if (itype.index == 0 || cluster_ctx.clb_nlist.blocks_per_type(itype).size() == 0) { continue; //EMPTY type } for (size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++) { move_name = move_type_to_string(e_move_type(imove)); - moves = move_type_stat.blk_type_moves[imove][itype.index]; + moves = move_type_stat.blk_type_moves[agent_type * move_type_stat.num_moves.size() + imove]; if (moves != 0) { - accepted = move_type_stat.accepted_moves[imove][itype.index]; - aborted = move_type_stat.aborted_moves[imove][itype.index]; + accepted = move_type_stat.accepted_moves[agent_type * move_type_stat.num_moves.size() + imove]; + aborted = move_type_stat.aborted_moves[agent_type * move_type_stat.num_moves.size() + imove]; rejected = moves - (accepted + aborted); VTR_LOG( - "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", - move_name.c_str(), itype.name, 100 * moves / total_moves, - 100 * accepted / moves, 100 * rejected / moves, - 100 * aborted / moves); + "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", + move_name.c_str(), itype.name, 100 * moves / total_moves, + 100 * accepted / moves, 100 * rejected / moves, + 100 * aborted / moves); } } + agent_type++; VTR_LOG("\n"); } VTR_LOG("\n"); diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 1c1dbe3d2df..2e32e1b0ea2 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -111,6 +111,7 @@ EpsilonGreedyAgent::EpsilonGreedyAgent(size_t num_moves, size_t num_types, float set_epsilon(epsilon); num_available_moves_ = num_moves; num_available_types_ = num_types; + propose_blk_type = true; init_q_scores(); } @@ -172,7 +173,7 @@ t_propose_action EpsilonGreedyAgent::propose_action() { auto itr = std::lower_bound(cumm_epsilon_action_prob_.begin(), cumm_epsilon_action_prob_.end(), p); auto action_type_q_pos = itr - cumm_epsilon_action_prob_.begin(); move_type = (action_type_q_pos) % num_available_moves_; - if (num_available_types_ != 1) { + if (propose_blk_type) { blk_type.index = action_type_q_pos / num_available_moves_; } @@ -183,13 +184,13 @@ t_propose_action EpsilonGreedyAgent::propose_action() { VTR_ASSERT(itr != q_.end()); auto action_type_q_pos = itr - q_.begin(); move_type = action_type_q_pos % num_available_moves_; - if (num_available_types_ != 1) { + if (propose_blk_type) { blk_type.index = action_type_q_pos / num_available_moves_; } } VTR_ASSERT(move_type < num_available_moves_); - last_action_ = (num_available_types_ == 1) ? move_type : move_type + (blk_type.index * num_available_moves_); + last_action_ = (!propose_blk_type) ? move_type : move_type + (blk_type.index * num_available_moves_); t_propose_action propose_action; propose_action.move_type = (e_move_type)move_type; @@ -228,6 +229,7 @@ SoftmaxAgent::SoftmaxAgent(size_t num_moves) { SoftmaxAgent::SoftmaxAgent(size_t num_moves, size_t num_types) { num_available_moves_ = num_moves; num_available_types_ = num_types; + propose_blk_type = true; init_q_scores(); } @@ -254,7 +256,9 @@ void SoftmaxAgent::init_q_scores() { fprintf(agent_info_file_, "\n"); fflush(agent_info_file_); } - set_block_ratio(); + if(propose_blk_type) { + set_block_ratio(); + } set_action_prob(); // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } @@ -268,21 +272,21 @@ t_propose_action SoftmaxAgent::propose_action() { auto itr = std::lower_bound(cumm_action_prob_.begin(), cumm_action_prob_.end(), p); auto action_type_q_pos = itr - cumm_action_prob_.begin(); move_type = (action_type_q_pos) % num_available_moves_; - if (num_available_types_ != 1) { + if (propose_blk_type) { blk_type.index = action_type_q_pos / num_available_moves_; } //To take care that the last element in cumm_action_prob_ might be less than 1 by a small value if (action_type_q_pos == num_available_moves_ * num_available_types_) { move_type = num_available_moves_ - 1; - if (num_available_types_ > 1) { + if (propose_blk_type) { blk_type.index = num_available_types_ - 1; } } VTR_ASSERT(move_type < num_available_moves_); - last_action_ = (num_available_types_ == 1) ? move_type : move_type + (blk_type.index * num_available_moves_); + last_action_ = (!propose_blk_type) ? move_type : move_type + (blk_type.index * num_available_moves_); t_propose_action propose_action; propose_action.move_type = (e_move_type)move_type; @@ -315,13 +319,24 @@ void SoftmaxAgent::set_action_prob() { // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { int blk_ratio_index = (int)i / num_available_moves_; - action_prob_[i] = (exp_q_[i] / sum_q) * block_type_ratio[blk_ratio_index]; + if(propose_blk_type) { + action_prob_[i] = (exp_q_[i] / sum_q) * block_type_ratio[blk_ratio_index]; + } + else{ + action_prob_[i] = (exp_q_[i] / sum_q); + } } // normalize all the action probabilities to guarantee the sum(all action probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); - std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), - bind2nd(std::multiplies(), (1 / sum_prob))); + if(propose_blk_type) { + std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), + bind2nd(std::multiplies(), (1 / sum_prob))); + } + else{ + std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), + [sum_prob, this](float x) { return x + ((1.0 - sum_prob) / this->num_available_moves_); }); + } // calculate the accumulative action probability of each action // e.g. if we have 5 actions with equal probability of 0.2, the cumm_action_prob will be {0.2,0.4,0.6,0.8,1.0} diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index 648c64fc87c..fe42008c095 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -22,6 +22,7 @@ class KArmedBanditAgent { float exp_alpha_ = -1; //Step size for q_ updates (< 0 implies use incremental average) size_t num_available_moves_; //Number of arms of the karmed bandit problem (k) size_t num_available_types_; //Number of types that each arm of the karmed bandit problem can pull with + bool propose_blk_type = false; //Shows the intelligence level of the agent (Proposing blk_type, move_type) std::vector num_action_chosen_; //Number of times each arm has been pulled (n) std::vector q_; //Estimated value of each arm (Q) size_t last_action_ = 0; //type of the last action (move type) proposed From 195c1b98596abfeee10ccc7a2eea6c271ec5c08d Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 2 Feb 2023 14:26:06 -0500 Subject: [PATCH 27/81] Fixed the assertion failed for vtr_reg_strong and vtr_reg_basic --- vpr/src/base/clustered_netlist.cpp | 4 ++-- vpr/src/base/netlist.tpp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/vpr/src/base/clustered_netlist.cpp b/vpr/src/base/clustered_netlist.cpp index 274a78e1d6d..1041a7b440b 100644 --- a/vpr/src/base/clustered_netlist.cpp +++ b/vpr/src/base/clustered_netlist.cpp @@ -203,10 +203,10 @@ void ClusteredNetlist::set_net_is_global(ClusterNetId net_id, bool state) { } void ClusteredNetlist::remove_block_impl(const ClusterBlockId blk_id) { + //find the block type, so we can remove it from blocks_per_type_ data structure + auto blk_type = block_type(blk_id); //Remove & invalidate pointers free_pb(block_pbs_[blk_id]); - auto blk_type = block_type(blk_id); - delete block_pbs_[blk_id]; block_pbs_.insert(blk_id, NULL); block_types_.insert(blk_id, NULL); diff --git a/vpr/src/base/netlist.tpp b/vpr/src/base/netlist.tpp index 2773e2471c6..637e6e211b1 100644 --- a/vpr/src/base/netlist.tpp +++ b/vpr/src/base/netlist.tpp @@ -945,12 +945,12 @@ void Netlist::remove_block(const BlockId blk_id) StringId name_id = block_names_[blk_id]; block_name_to_block_id_.insert(name_id, BlockId::INVALID()); - //Mark as invalid - block_ids_[blk_id] = BlockId::INVALID(); - //Call derived class' remove() remove_block_impl(blk_id); + //Mark as invalid + block_ids_[blk_id] = BlockId::INVALID(); + //Mark netlist dirty dirty_ = true; } From b16ebb5c75512ee14d0a8fa1ee4f8e0d5db1e7c2 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 3 Feb 2023 11:33:07 -0500 Subject: [PATCH 28/81] modified second agent to only propose move type (not block type) --- vpr/src/place/RL_agent_util.cpp | 9 +++++---- vpr/src/place/centroid_move_generator.cpp | 4 +++- vpr/src/place/critical_uniform_move_generator.cpp | 2 ++ vpr/src/place/feasible_region_move_generator.cpp | 2 ++ vpr/src/place/median_move_generator.cpp | 2 ++ vpr/src/place/move_utils.cpp | 10 ++++++++++ vpr/src/place/move_utils.h | 2 ++ vpr/src/place/simpleRL_move_generator.cpp | 1 - vpr/src/place/uniform_move_generator.cpp | 2 ++ vpr/src/place/weighted_centroid_move_generator.cpp | 6 ++++-- vpr/src/place/weighted_median_move_generator.cpp | 2 ++ 11 files changed, 34 insertions(+), 8 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index bd62cfa42ac..f30802fc09c 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -51,6 +51,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); if (blk_per_type.size() != 0) { logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); + agent_to_logical_map.insert(std::pair(itype.index,agent_type_index)); agent_type_index++; logical_blk_types_count++; } @@ -65,7 +66,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES,logical_blk_types_count, placer_opts.place_agent_epsilon); + karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES, placer_opts.place_agent_epsilon); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } else { @@ -74,7 +75,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES,logical_blk_types_count, placer_opts.place_agent_epsilon); + karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, placer_opts.place_agent_epsilon); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } @@ -88,7 +89,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES, logical_blk_types_count); + karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } else { @@ -97,7 +98,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, logical_blk_types_count); + karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index 1ff8e557728..1c5f9e42e3c 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -3,11 +3,14 @@ #include "globals.h" #include "directed_moves_util.h" #include "place_constraints.h" +#include "move_utils.h" e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { ClusterBlockId b_from; + auto& cluster_ctx = g_vpr_ctx.clustering(); if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } @@ -17,7 +20,6 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& block } auto& device_ctx = g_vpr_ctx.device(); - auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.placement(); auto& place_move_ctx = g_placer_ctx.mutable_move(); diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index a5d1f1df3aa..51e72ee8d32 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -1,6 +1,7 @@ #include "critical_uniform_move_generator.h" #include "globals.h" #include "place_constraints.h" +#include "move_utils.h" e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { auto& place_ctx = g_vpr_ctx.placement(); @@ -12,6 +13,7 @@ e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved if (blk_type.index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from); + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); } diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index ad2f45bc1d7..aaf05b39d4c 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -3,6 +3,7 @@ #include #include "math.h" #include "place_constraints.h" +#include "move_utils.h" e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { auto& place_ctx = g_vpr_ctx.placement(); @@ -15,6 +16,7 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& if (blk_type.index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from); + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); } diff --git a/vpr/src/place/median_move_generator.cpp b/vpr/src/place/median_move_generator.cpp index 89c28581eed..863454f0ed1 100644 --- a/vpr/src/place/median_move_generator.cpp +++ b/vpr/src/place/median_move_generator.cpp @@ -3,6 +3,7 @@ #include #include "place_constraints.h" #include "placer_globals.h" +#include "move_utils.h" static bool get_bb_incrementally(ClusterNetId net_id, t_bb* bb_coord_new, int xold, int yold, int xnew, int ynew); @@ -18,6 +19,7 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 5f9abf86554..9be19d3f2c0 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -499,6 +499,8 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& } //SARA_TODO: std::unordered_map logical_to_agent_map; +std::unordered_map agent_to_logical_map; + int convert_agent_to_logical_block_type(int agent_block_type_index) { if (logical_to_agent_map.count(agent_block_type_index)) { return logical_to_agent_map[agent_block_type_index]; @@ -507,6 +509,14 @@ int convert_agent_to_logical_block_type(int agent_block_type_index) { return -1; } +int convert_logical_to_agent_block_type(int logical_block_type_index){ + if (agent_to_logical_map.count(logical_block_type_index)) { + return agent_to_logical_map[logical_block_type_index]; + } + //invalid block type + return -1; +} + int get_num_agent_types() { return logical_to_agent_map.size(); } diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index f505ddd81e9..6b900065458 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -236,7 +236,9 @@ std::string e_move_result_to_string(e_move_result move_outcome); //SARA_TODO: find a better location for these extern std::unordered_map logical_to_agent_map; +extern std::unordered_map agent_to_logical_map; int convert_agent_to_logical_block_type(int agent_block_type_index); +int convert_logical_to_agent_block_type(int logical_block_type_index); int get_num_agent_types(); #endif diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 2e32e1b0ea2..03e244524ee 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -305,7 +305,6 @@ void SoftmaxAgent::set_block_ratio() { auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); block_type_ratio[i] = (float)num_blocks / num_total_blocks; block_type_ratio[i] /= num_available_moves_; -// block_type_ratio[i] = std::min(block_type_ratio[i], float(0.05)); } } diff --git a/vpr/src/place/uniform_move_generator.cpp b/vpr/src/place/uniform_move_generator.cpp index c4fe7ed6a82..3afe416750e 100644 --- a/vpr/src/place/uniform_move_generator.cpp +++ b/vpr/src/place/uniform_move_generator.cpp @@ -1,6 +1,7 @@ #include "uniform_move_generator.h" #include "globals.h" #include "place_constraints.h" +#include "move_utils.h" e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { auto& place_ctx = g_vpr_ctx.placement(); @@ -9,6 +10,7 @@ e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index beed108a704..d1c87c98560 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -1,13 +1,15 @@ #include "weighted_centroid_move_generator.h" #include "globals.h" -#include #include "directed_moves_util.h" #include "place_constraints.h" +#include "move_utils.h" e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { ClusterBlockId b_from; + auto& cluster_ctx = g_vpr_ctx.clustering(); if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } @@ -18,7 +20,7 @@ e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_move auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); - auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& place_move_ctx = g_placer_ctx.mutable_move(); diff --git a/vpr/src/place/weighted_median_move_generator.cpp b/vpr/src/place/weighted_median_move_generator.cpp index 3fca049facb..a9628ceea10 100644 --- a/vpr/src/place/weighted_median_move_generator.cpp +++ b/vpr/src/place/weighted_median_move_generator.cpp @@ -3,6 +3,7 @@ #include #include "math.h" #include "place_constraints.h" +#include "move_utils.h" #define CRIT_MULT_FOR_W_MEDIAN 10 @@ -17,6 +18,7 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } From 8a6630626830a010544f28c295eaf8c6cc76d6f3 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 3 Feb 2023 11:42:02 -0500 Subject: [PATCH 29/81] make format --- vpr/src/place/RL_agent_util.cpp | 6 +++--- vpr/src/place/move_utils.cpp | 2 +- vpr/src/place/place.cpp | 10 +++++----- vpr/src/place/simpleRL_move_generator.cpp | 16 +++++++--------- .../place/weighted_centroid_move_generator.cpp | 1 - 5 files changed, 16 insertions(+), 19 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index f30802fc09c..bbce8456a35 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -51,7 +51,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); if (blk_per_type.size() != 0) { logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); - agent_to_logical_map.insert(std::pair(itype.index,agent_type_index)); + agent_to_logical_map.insert(std::pair(itype.index, agent_type_index)); agent_type_index++; logical_blk_types_count++; } @@ -62,7 +62,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES,logical_blk_types_count, placer_opts.place_agent_epsilon); + karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, logical_blk_types_count, placer_opts.place_agent_epsilon); karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state @@ -71,7 +71,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: move_generator2 = std::make_unique(karmed_bandit_agent2); } else { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES,logical_blk_types_count, placer_opts.place_agent_epsilon); + karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, logical_blk_types_count, placer_opts.place_agent_epsilon); karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 9be19d3f2c0..de5e64b85b1 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -509,7 +509,7 @@ int convert_agent_to_logical_block_type(int agent_block_type_index) { return -1; } -int convert_logical_to_agent_block_type(int logical_block_type_index){ +int convert_logical_to_agent_block_type(int logical_block_type_index) { if (agent_to_logical_map.count(logical_block_type_index)) { return agent_to_logical_map[logical_block_type_index]; } diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 1725637bdcf..dec0c8059b4 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -826,7 +826,7 @@ void try_place(const t_placer_opts& placer_opts, print_place_status(state, stats, temperature_timer.elapsed_sec(), critical_path.delay(), sTNS, sWNS, tot_iter); -// save_proposed_move_per_temp(); + // save_proposed_move_per_temp(); if (placer_opts.place_algorithm.is_timing_driven() && placer_opts.place_agent_multistate @@ -3058,10 +3058,10 @@ static void print_placement_move_types_stats( aborted = move_type_stat.aborted_moves[agent_type * move_type_stat.num_moves.size() + imove]; rejected = moves - (accepted + aborted); VTR_LOG( - "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", - move_name.c_str(), itype.name, 100 * moves / total_moves, - 100 * accepted / moves, 100 * rejected / moves, - 100 * aborted / moves); + "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", + move_name.c_str(), itype.name, 100 * moves / total_moves, + 100 * accepted / moves, 100 * rejected / moves, + 100 * aborted / moves); } } agent_type++; diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 03e244524ee..2b5d7c149b1 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -136,7 +136,7 @@ void EpsilonGreedyAgent::init_q_scores() { fflush(agent_info_file_); } set_epsilon_action_prob(); -// agent_info_file_ = vtr::fopen("agent_info.txt", "w"); + // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { @@ -256,11 +256,11 @@ void SoftmaxAgent::init_q_scores() { fprintf(agent_info_file_, "\n"); fflush(agent_info_file_); } - if(propose_blk_type) { + if (propose_blk_type) { set_block_ratio(); } set_action_prob(); -// agent_info_file_ = vtr::fopen("agent_info.txt", "w"); + // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } t_propose_action SoftmaxAgent::propose_action() { @@ -318,21 +318,19 @@ void SoftmaxAgent::set_action_prob() { // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { int blk_ratio_index = (int)i / num_available_moves_; - if(propose_blk_type) { + if (propose_blk_type) { action_prob_[i] = (exp_q_[i] / sum_q) * block_type_ratio[blk_ratio_index]; - } - else{ + } else { action_prob_[i] = (exp_q_[i] / sum_q); } } // normalize all the action probabilities to guarantee the sum(all action probs) = 1 float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); - if(propose_blk_type) { + if (propose_blk_type) { std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), bind2nd(std::multiplies(), (1 / sum_prob))); - } - else{ + } else { std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), [sum_prob, this](float x) { return x + ((1.0 - sum_prob) / this->num_available_moves_); }); } diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index d1c87c98560..7990707783a 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -21,7 +21,6 @@ e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_move auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); t_pl_loc from = place_ctx.block_locs[b_from].loc; From e401ed008012c9e89c6e328ed480a7732025822e Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 7 Feb 2023 18:08:32 -0500 Subject: [PATCH 30/81] updated the printed information and fixed the bug with assertion level 3 --- vpr/src/place/centroid_move_generator.cpp | 7 ++- .../place/critical_uniform_move_generator.cpp | 7 ++- .../place/feasible_region_move_generator.cpp | 7 ++- vpr/src/place/median_move_generator.cpp | 7 ++- vpr/src/place/move_generator.h | 14 +++--- vpr/src/place/place.cpp | 44 ++++++++++++++----- vpr/src/place/simpleRL_move_generator.cpp | 6 +-- vpr/src/place/uniform_move_generator.cpp | 7 ++- .../weighted_centroid_move_generator.cpp | 7 ++- .../place/weighted_median_move_generator.cpp | 7 ++- 10 files changed, 65 insertions(+), 48 deletions(-) diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index 1c5f9e42e3c..2191c347836 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -10,15 +10,14 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& block auto& cluster_ctx = g_vpr_ctx.clustering(); if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + if (!b_from) { + return e_create_move::ABORT; //No movable block found + } blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } - if (!b_from) { - return e_create_move::ABORT; //No movable block found - } - auto& device_ctx = g_vpr_ctx.device(); auto& place_ctx = g_vpr_ctx.placement(); diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index 51e72ee8d32..d35833b53ef 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -13,15 +13,14 @@ e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved if (blk_type.index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from); + if (!b_from) { + return e_create_move::ABORT; //No movable block found + } blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); } - if (!b_from) { - return e_create_move::ABORT; //No movable block found - } - t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index aaf05b39d4c..c287b3ff51e 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -16,15 +16,14 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& if (blk_type.index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from); + if (!b_from) { + return e_create_move::ABORT; //No movable block found + } blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); } - if (!b_from) { - return e_create_move::ABORT; //No movable block found - } - //from block data t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); diff --git a/vpr/src/place/median_move_generator.cpp b/vpr/src/place/median_move_generator.cpp index 863454f0ed1..adbebce06bc 100644 --- a/vpr/src/place/median_move_generator.cpp +++ b/vpr/src/place/median_move_generator.cpp @@ -19,15 +19,14 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + if (!b_from) { + return e_create_move::ABORT; //No movable block found + } blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } - if (!b_from) { - return e_create_move::ABORT; //No movable block found - } - t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; diff --git a/vpr/src/place/move_generator.h b/vpr/src/place/move_generator.h index cbd1b685fe4..90e0f49fefa 100644 --- a/vpr/src/place/move_generator.h +++ b/vpr/src/place/move_generator.h @@ -23,17 +23,19 @@ struct MoveOutcomeStats { /** * @brief A Struct to hold statistics about the different move types * - * num_moves: save the number of proposed moves of each type (e.g. [0..NUM_PL_MOVE_TYPES-1]) - * blk_type_moves: save the block type index of each proposed move (e.g. [0..NUM_PL_MOVE_TYPES-1][0..t_logical_block_type.size()-2]) - * The RL agent will not perform any move with 'EMPTY' type, available block types wil be t_logical_block_type.size()-2. - * accepted_moves: save the number of accepted moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES-1][0..t_logical_block_type.size()-2] ) - * aborted_moves: save the number of aborted moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES-1][0..t_logical_block_type.size()-2] ) + * num_moves: save the number of proposed moves of each move type(e.g. [0..NUM_PL_MOVE_TYPES-1]) + * blk_type_moves: save the block type index of each proposed move (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)]) + * accepted_moves: save the number of accepted moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)] ) + * rejected_moves: save the number of rejected moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)] ) + * aborted_moves: save the number of aborted moves of each move (e.g. [0..NUM_PL_MOVE_TYPES-1] ) + * Moves that are aborted might not have a specific block type */ struct MoveTypeStat { - std::vector num_moves; // SARA_TODO: seems to be redundant + std::vector num_moves; std::vector blk_type_moves; std::vector accepted_moves; std::vector aborted_moves; + std::vector rejected_moves; }; /** diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index dec0c8059b4..435c3a35ff6 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -719,10 +719,11 @@ void try_place(const t_placer_opts& placer_opts, MoveTypeStat move_type_stat; move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size(), 0); + move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), 0); move_type_stat.blk_type_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); move_type_stat.accepted_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); - move_type_stat.aborted_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); + move_type_stat.rejected_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); //allocate move type statistics vector performed by the agent for each temperature proposed_move_per_temp.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); @@ -826,7 +827,7 @@ void try_place(const t_placer_opts& placer_opts, print_place_status(state, stats, temperature_timer.elapsed_sec(), critical_path.delay(), sTNS, sWNS, tot_iter); - // save_proposed_move_per_temp(); + save_proposed_move_per_temp(); if (placer_opts.place_algorithm.is_timing_driven() && placer_opts.place_agent_multistate @@ -1390,9 +1391,10 @@ static e_move_result try_swap(const t_annealing_state* state, } ++move_type_stat.num_moves[(int)move_type]; - ++move_type_stat.blk_type_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; - ++proposed_move_per_temp[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; - + if(move_blk_type.index != -1) { //if the agent proposed the blcok type, then collect the block type stat + ++move_type_stat.blk_type_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int) move_type]; + ++proposed_move_per_temp[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int) move_type]; + } LOG_MOVE_STATS_PROPOSED(t, blocks_affected); e_move_result move_outcome = ABORTED; @@ -1405,7 +1407,7 @@ static e_move_result try_swap(const t_annealing_state* state, move_outcome = ABORTED; - ++move_type_stat.aborted_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; + ++move_type_stat.aborted_moves[(int)move_type]; } else { VTR_ASSERT(create_move_outcome == e_create_move::VALID); @@ -1560,6 +1562,8 @@ static e_move_result try_swap(const t_annealing_state* state, /* Unstage the values stored in proposed_* data structures */ revert_td_cost(blocks_affected); } + + ++move_type_stat.rejected_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; } move_outcome_stats.delta_cost_norm = delta_c; @@ -3044,19 +3048,20 @@ static void print_placement_move_types_stats( auto& cluster_ctx = g_vpr_ctx.clustering(); std::string move_name; int agent_type = 0; - VTR_LOG("\n\nPercentage of different move types:\n"); - + VTR_LOG("\n\nPercentage of different move types and block types:\n"); + //Print placement information for each block type for (auto itype : device_ctx.logical_block_types) { + //Skip non-existing block types in the netlist if (itype.index == 0 || cluster_ctx.clb_nlist.blocks_per_type(itype).size() == 0) { - continue; //EMPTY type + continue; } for (size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++) { move_name = move_type_to_string(e_move_type(imove)); moves = move_type_stat.blk_type_moves[agent_type * move_type_stat.num_moves.size() + imove]; if (moves != 0) { accepted = move_type_stat.accepted_moves[agent_type * move_type_stat.num_moves.size() + imove]; - aborted = move_type_stat.aborted_moves[agent_type * move_type_stat.num_moves.size() + imove]; - rejected = moves - (accepted + aborted); + rejected = move_type_stat.rejected_moves[agent_type * move_type_stat.num_moves.size() + imove]; + aborted = moves - (accepted + rejected); VTR_LOG( "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", move_name.c_str(), itype.name, 100 * moves / total_moves, @@ -3068,6 +3073,23 @@ static void print_placement_move_types_stats( VTR_LOG("\n"); } VTR_LOG("\n"); + + //Print the abortion rate for each move type (Meaning that no specific block type has been found by the agent) + VTR_LOG("Percentage of different move types that was aborted:\n"); + for(auto imove = 0; imove < move_type_stat.num_moves.size(); imove++){ + if(move_type_stat.num_moves[imove] == 0){ + continue; + } + move_name = move_type_to_string(e_move_type(imove)); + float num_of_move_proposed = move_type_stat.num_moves[imove]; + float num_of_aborted_moves = move_type_stat.aborted_moves[imove]; + VTR_LOG( + "\t%.17s move: %2.6f %% (aborted=%2.2f %%)\n", + move_name.c_str(), 100 * num_of_move_proposed / total_moves, + 100 * num_of_aborted_moves / num_of_move_proposed); + } + VTR_LOG("\n"); + } static void calculate_reward_and_process_outcome( diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 2b5d7c149b1..e826af2f4a4 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -7,7 +7,7 @@ /* File-scope routines */ //a scaled and clipped exponential function -static float scaled_clipped_exp(float x) { return std::exp(std::min(100000 * x, float(3.0))); } +static float scaled_clipped_exp(float x) { return std::exp(std::min(1000 * x, float(3.0))); } /* * * * @@ -136,7 +136,7 @@ void EpsilonGreedyAgent::init_q_scores() { fflush(agent_info_file_); } set_epsilon_action_prob(); - // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); + agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { @@ -260,7 +260,7 @@ void SoftmaxAgent::init_q_scores() { set_block_ratio(); } set_action_prob(); - // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); + agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } t_propose_action SoftmaxAgent::propose_action() { diff --git a/vpr/src/place/uniform_move_generator.cpp b/vpr/src/place/uniform_move_generator.cpp index 3afe416750e..0121d9edc37 100644 --- a/vpr/src/place/uniform_move_generator.cpp +++ b/vpr/src/place/uniform_move_generator.cpp @@ -10,15 +10,14 @@ e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + if (!b_from) { + return e_create_move::ABORT; //No movable block found + } blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } - if (!b_from) { - return e_create_move::ABORT; //No movable block found - } - t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index 7990707783a..29010b5e971 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -9,15 +9,14 @@ e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_move auto& cluster_ctx = g_vpr_ctx.clustering(); if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + if (!b_from) { + return e_create_move::ABORT; //No movable block found + } blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } - if (!b_from) { - return e_create_move::ABORT; //No movable block found - } - auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); diff --git a/vpr/src/place/weighted_median_move_generator.cpp b/vpr/src/place/weighted_median_move_generator.cpp index a9628ceea10..e576acbeb33 100644 --- a/vpr/src/place/weighted_median_move_generator.cpp +++ b/vpr/src/place/weighted_median_move_generator.cpp @@ -18,15 +18,14 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); + if (!b_from) { + return e_create_move::ABORT; //No movable block found + } blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } - if (!b_from) { - return e_create_move::ABORT; //No movable block found - } - t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; From 56fca04e4c2b4ca8b2cdbbca62026f036c965e19 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 8 Feb 2023 11:09:02 -0500 Subject: [PATCH 31/81] fixed some accident bugs for CPD move related in second agent --- vpr/src/place/centroid_move_generator.cpp | 10 +++++++--- vpr/src/place/critical_uniform_move_generator.cpp | 13 ++++++++----- vpr/src/place/feasible_region_move_generator.cpp | 13 ++++++++----- vpr/src/place/median_move_generator.cpp | 9 ++++++--- vpr/src/place/place.cpp | 3 +-- vpr/src/place/simpleRL_move_generator.cpp | 4 ++-- vpr/src/place/uniform_move_generator.cpp | 9 ++++++--- vpr/src/place/weighted_centroid_move_generator.cpp | 10 +++++++--- vpr/src/place/weighted_median_move_generator.cpp | 9 ++++++--- 9 files changed, 51 insertions(+), 29 deletions(-) diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index 2191c347836..2dd49f283e4 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -8,16 +8,20 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { ClusterBlockId b_from; auto& cluster_ctx = g_vpr_ctx.clustering(); + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); - if (!b_from) { - return e_create_move::ABORT; //No movable block found + if (b_from) {//if a movable block found, set the block type since the agent only proposed the move type + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } + if (!b_from) { //No movable block found + return e_create_move::ABORT; + } + auto& device_ctx = g_vpr_ctx.device(); auto& place_ctx = g_vpr_ctx.placement(); diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index d35833b53ef..dcb2c85c19c 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -11,16 +11,19 @@ e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved ClusterBlockId b_from; int pin_from; - if (blk_type.index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from); - if (!b_from) { - return e_create_move::ABORT; //No movable block found + if (b_from) {//if a movable block found, set the block type since the agent only proposed the move type + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block + } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); } + if (!b_from) { //No movable block found + return e_create_move::ABORT; + } + t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index c287b3ff51e..ff86bfde243 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -14,16 +14,19 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& ClusterBlockId b_from; int pin_from; - if (blk_type.index == -1) { //If the block type is unspecified, choose any random highly critical block to be swapped with another random block + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from); - if (!b_from) { - return e_create_move::ABORT; //No movable block found + if (b_from) {//if a movable block found, set the block type since the agent only proposed the move type + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } else { //If the block type is specified, choose a random highly critical with blk_type to be swapped with another random block + } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); } + if (!b_from) { //No movable block found + return e_create_move::ABORT; + } + //from block data t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); diff --git a/vpr/src/place/median_move_generator.cpp b/vpr/src/place/median_move_generator.cpp index adbebce06bc..185a2b343ca 100644 --- a/vpr/src/place/median_move_generator.cpp +++ b/vpr/src/place/median_move_generator.cpp @@ -19,14 +19,17 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); - if (!b_from) { - return e_create_move::ABORT; //No movable block found + if (b_from) {//if a movable block found, set the block type since the agent only proposed the move type + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } + if (!b_from) { //No movable block found + return e_create_move::ABORT; + } + t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 435c3a35ff6..ff1a22a79b2 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -827,7 +827,7 @@ void try_place(const t_placer_opts& placer_opts, print_place_status(state, stats, temperature_timer.elapsed_sec(), critical_path.delay(), sTNS, sWNS, tot_iter); - save_proposed_move_per_temp(); +// save_proposed_move_per_temp(); if (placer_opts.place_algorithm.is_timing_driven() && placer_opts.place_agent_multistate @@ -3089,7 +3089,6 @@ static void print_placement_move_types_stats( 100 * num_of_aborted_moves / num_of_move_proposed); } VTR_LOG("\n"); - } static void calculate_reward_and_process_outcome( diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index e826af2f4a4..1fc33421b10 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -136,7 +136,7 @@ void EpsilonGreedyAgent::init_q_scores() { fflush(agent_info_file_); } set_epsilon_action_prob(); - agent_info_file_ = vtr::fopen("agent_info.txt", "w"); +// agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { @@ -260,7 +260,7 @@ void SoftmaxAgent::init_q_scores() { set_block_ratio(); } set_action_prob(); - agent_info_file_ = vtr::fopen("agent_info.txt", "w"); +// agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } t_propose_action SoftmaxAgent::propose_action() { diff --git a/vpr/src/place/uniform_move_generator.cpp b/vpr/src/place/uniform_move_generator.cpp index 0121d9edc37..e2659c54279 100644 --- a/vpr/src/place/uniform_move_generator.cpp +++ b/vpr/src/place/uniform_move_generator.cpp @@ -10,14 +10,17 @@ e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); - if (!b_from) { - return e_create_move::ABORT; //No movable block found + if (b_from) {//if a movable block found, set the block type since the agent only proposed the move type + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } + if (!b_from) { //No movable block found + return e_create_move::ABORT; + } + t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index 29010b5e971..9d3ac7cfbf3 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -7,16 +7,20 @@ e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { ClusterBlockId b_from; auto& cluster_ctx = g_vpr_ctx.clustering(); + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); - if (!b_from) { - return e_create_move::ABORT; //No movable block found + if (b_from) {//if a movable block found, set the block type since the agent only proposed the move type + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } + if (!b_from) { //No movable block found + return e_create_move::ABORT; + } + auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); diff --git a/vpr/src/place/weighted_median_move_generator.cpp b/vpr/src/place/weighted_median_move_generator.cpp index e576acbeb33..5ac521cd45e 100644 --- a/vpr/src/place/weighted_median_move_generator.cpp +++ b/vpr/src/place/weighted_median_move_generator.cpp @@ -18,14 +18,17 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& ClusterBlockId b_from; if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block b_from = pick_from_block(); - if (!b_from) { - return e_create_move::ABORT; //No movable block found + if (b_from) {//if a movable block found, set the block type since the agent only proposed the move type + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block b_from = pick_from_block(blk_type); } + if (!b_from) { //No movable block found + return e_create_move::ABORT; + } + t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; From ba7e06bfdb8485651f16397842efcea7a965b49d Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 27 Feb 2023 16:45:11 -0500 Subject: [PATCH 32/81] changed the agent internal varibale name to match the other --- vpr/src/place/simpleRL_move_generator.cpp | 8 ++++---- vpr/src/place/simpleRL_move_generator.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 6613ca146a1..82abb9639c2 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -246,7 +246,7 @@ void SoftmaxAgent::init_q_scores() { exp_q_ = std::vector(num_available_moves_ * num_available_types_, 0.); num_action_chosen_ = std::vector(num_available_moves_ * num_available_types_, 0); action_prob_ = std::vector(num_available_moves_ * num_available_types_, 0.); - block_type_ratio = std::vector(num_available_types_, 0.); + block_type_ratio_ = std::vector(num_available_types_, 0.); cumm_action_prob_ = std::vector(num_available_moves_ * num_available_types_); if (agent_info_file_) { @@ -307,8 +307,8 @@ void SoftmaxAgent::set_block_ratio() { t_logical_block_type blk_type; blk_type.index = convert_agent_to_logical_block_type(i); auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - block_type_ratio[i] = (float)num_blocks / num_total_blocks; - block_type_ratio[i] /= num_available_moves_; + block_type_ratio_[i] = (float)num_blocks / num_total_blocks; + block_type_ratio_[i] /= num_available_moves_; } } @@ -323,7 +323,7 @@ void SoftmaxAgent::set_action_prob() { for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { int blk_ratio_index = (int)i / num_available_moves_; if (propose_blk_type) { - action_prob_[i] = (exp_q_[i] / sum_q) * block_type_ratio[blk_ratio_index]; + action_prob_[i] = (exp_q_[i] / sum_q) * block_type_ratio_[blk_ratio_index]; } else { action_prob_[i] = (exp_q_[i] / sum_q); } diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index fe42008c095..03b6f5b3580 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -86,7 +86,7 @@ class SoftmaxAgent : public KArmedBanditAgent { std::vector exp_q_; //The clipped and scaled exponential of the estimated Q value for each action std::vector action_prob_; //The probability of choosing each action std::vector cumm_action_prob_; //The accumulative probability of choosing each action - std::vector block_type_ratio; //The probability of choosing each block type depends on its ratio in the netlist + std::vector block_type_ratio_; //The probability of choosing each block type depends on its ratio in the netlist }; /** From 906f2d1e22644dfa869899fbcebc12b3c7bc4438 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 2 Mar 2023 18:11:55 -0500 Subject: [PATCH 33/81] changed the scaled factor of q_table --- vpr/src/place/simpleRL_move_generator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 82abb9639c2..059f12a1803 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -7,7 +7,7 @@ /* File-scope routines */ //a scaled and clipped exponential function -static float scaled_clipped_exp(float x) { return std::exp(std::min(1000 * x, float(3.0))); } +static float scaled_clipped_exp(float x) { return std::exp(std::min(100 * x, float(3.0))); } /* * * * From 59a522fcfad1d2cb98d875d733575953d198f961 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 2 Mar 2023 19:10:31 -0500 Subject: [PATCH 34/81] commented the agent infos in impleRL_move_generator.h/cpp files --- vpr/src/place/move_utils.h | 6 +-- vpr/src/place/simpleRL_move_generator.cpp | 51 ++++++++++++++++------- vpr/src/place/simpleRL_move_generator.h | 2 +- 3 files changed, 40 insertions(+), 19 deletions(-) diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index a97f88e8d13..801dfc0be2e 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -38,13 +38,13 @@ enum class e_create_move { /** * @brief Stores KArmedBanditAgent propose_action output to decide which - * move_type and which block_type should be choosen for the next action. + * move_type and which block_type should be chosen for the next action. * propose_action function can also leave blk_type empty to allow any - * random block type to be choosen to be swapped. + * random block type to be chosen to be swapped. */ struct t_propose_action { e_move_type move_type; //move type that propose_action choose to perform - t_logical_block_type blk_type; //propose_action can choose block type or leave it empty to allow any block type to be choosen + t_logical_block_type blk_type; //propose_action can choose block type or leave it empty to allow any block type to be chosen }; /** diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 059f12a1803..12de81f6d1b 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -45,7 +45,7 @@ SimpleRLMoveGenerator::SimpleRLMoveGenerator(std::unique_ptr e_create_move SimpleRLMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& move_type, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { auto propose_action_out = karmed_bandit_agent->propose_action(); move_type = propose_action_out.move_type; - blk_type = propose_action_out.blk_type; + blk_type = propose_action_out.blk_type; // can be empty to allow agent to only choose move type (pick a block randomly) return avail_moves[(int)move_type]->propose_move(blocks_affected, move_type, blk_type, rlim, placer_opts, criticalities); } @@ -126,8 +126,8 @@ EpsilonGreedyAgent::~EpsilonGreedyAgent() { void EpsilonGreedyAgent::init_q_scores() { q_ = std::vector(num_available_moves_ * num_available_types_, 0.); num_action_chosen_ = std::vector(num_available_moves_ * num_available_types_, 0); - cumm_epsilon_action_prob_ = std::vector(num_available_moves_ * num_available_types_, 1.0 / (num_available_moves_ * num_available_types_)); + if (agent_info_file_) { fprintf(agent_info_file_, "action,reward,"); for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { @@ -177,7 +177,7 @@ t_propose_action EpsilonGreedyAgent::propose_action() { auto itr = std::lower_bound(cumm_epsilon_action_prob_.begin(), cumm_epsilon_action_prob_.end(), p); auto action_type_q_pos = itr - cumm_epsilon_action_prob_.begin(); move_type = (action_type_q_pos) % num_available_moves_; - if (propose_blk_type) { + if (propose_blk_type) { //calculate block type index only if agent is supposed to propose both move and block type blk_type.index = action_type_q_pos / num_available_moves_; } @@ -188,12 +188,17 @@ t_propose_action EpsilonGreedyAgent::propose_action() { VTR_ASSERT(itr != q_.end()); auto action_type_q_pos = itr - q_.begin(); move_type = action_type_q_pos % num_available_moves_; - if (propose_blk_type) { + if (propose_blk_type) { //calculate block type index only if agent is supposed to propose both move and block type blk_type.index = action_type_q_pos / num_available_moves_; } } + + //Check the move type to be a valid move VTR_ASSERT(move_type < num_available_moves_); + //Check the block type index to be valid type if the agent is supposed to propose block type + VTR_ASSERT(blk_type.index < num_available_types_ || !propose_blk_type); + //Mark the q_table location that agent used to update its value after processing the move outcome last_action_ = (!propose_blk_type) ? move_type : move_type + (blk_type.index * num_available_moves_); t_propose_action propose_action; @@ -260,6 +265,12 @@ void SoftmaxAgent::init_q_scores() { fprintf(agent_info_file_, "\n"); fflush(agent_info_file_); } + + /* + * The agent calculates each block type ratio as: (# blocks of each type / total blocks). + * If the agent is supposed to propose both block type and move type, + * it will use the block ratio to calculate action probability for each q_table entry. + */ if (propose_blk_type) { set_block_ratio(); } @@ -269,6 +280,7 @@ void SoftmaxAgent::init_q_scores() { t_propose_action SoftmaxAgent::propose_action() { set_action_prob(); + size_t move_type; t_logical_block_type blk_type; @@ -276,20 +288,24 @@ t_propose_action SoftmaxAgent::propose_action() { auto itr = std::lower_bound(cumm_action_prob_.begin(), cumm_action_prob_.end(), p); auto action_type_q_pos = itr - cumm_action_prob_.begin(); move_type = (action_type_q_pos) % num_available_moves_; - if (propose_blk_type) { + if (propose_blk_type) { //calculate block type index only if agent is supposed to propose both move and block type blk_type.index = action_type_q_pos / num_available_moves_; } //To take care that the last element in cumm_action_prob_ might be less than 1 by a small value if (action_type_q_pos == num_available_moves_ * num_available_types_) { move_type = num_available_moves_ - 1; - if (propose_blk_type) { + if (propose_blk_type) { //calculate block type index only if agent is supposed to propose both move and block type blk_type.index = num_available_types_ - 1; } } + //Check the move type to be a valid move VTR_ASSERT(move_type < num_available_moves_); + //Check the block type index to be valid type if the agent is supposed to propose block type + VTR_ASSERT(blk_type.index < num_available_types_ || !propose_blk_type); + //Mark the q_table location that agent used to update its value after processing the move outcome last_action_ = (!propose_blk_type) ? move_type : move_type + (blk_type.index * num_available_moves_); t_propose_action propose_action; @@ -303,26 +319,31 @@ void SoftmaxAgent::set_block_ratio() { auto& cluster_ctx = g_vpr_ctx.clustering(); int num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); - for (int i = 0; i < num_available_types_; i++) { + /* Calculate ratio of each block as : (# blocks of each type / total blocks). + * Each block type can have "num_available_moves_" different moves. Hence, + * the ratio will be divided by num_available_moves_ at the end. + */ + for (size_t itype = 0; itype < num_available_types_; itype++) { t_logical_block_type blk_type; - blk_type.index = convert_agent_to_logical_block_type(i); + blk_type.index = convert_agent_to_logical_block_type(itype); auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - block_type_ratio_[i] = (float)num_blocks / num_total_blocks; - block_type_ratio_[i] /= num_available_moves_; + block_type_ratio_[itype] = (float)num_blocks / num_total_blocks; + block_type_ratio_[itype] /= num_available_moves_; } } void SoftmaxAgent::set_action_prob() { - //calculate the scaled and clipped explonential function for the estimated q value for each action + //calculate the scaled and clipped exponential function for the estimated q value for each action std::transform(q_.begin(), q_.end(), exp_q_.begin(), scaled_clipped_exp); - // calculate the sum of all scaled clipped expnential q values + //calculate the sum of all scaled clipped exponential q values float sum_q = accumulate(exp_q_.begin(), exp_q_.end(), 0.0); - // calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponentials) + //calculate the probability of each action as the ratio of scaled_clipped_exp(action(i))/sum(scaled_clipped_exponential) for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - int blk_ratio_index = (int)i / num_available_moves_; if (propose_blk_type) { + //calculate block type index based on its location on q_table + int blk_ratio_index = (int)i / num_available_moves_; action_prob_[i] = (exp_q_[i] / sum_q) * block_type_ratio_[blk_ratio_index]; } else { action_prob_[i] = (exp_q_[i] / sum_q); @@ -333,7 +354,7 @@ void SoftmaxAgent::set_action_prob() { float sum_prob = std::accumulate(action_prob_.begin(), action_prob_.end(), 0.0); if (propose_blk_type) { std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), - bind2nd(std::multiplies(), (1 / sum_prob))); + [sum_prob](float x) { return x * (1 / sum_prob); }); } else { std::transform(action_prob_.begin(), action_prob_.end(), action_prob_.begin(), [sum_prob, this](float x) { return x + ((1.0 - sum_prob) / this->num_available_moves_); }); diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index 03b6f5b3580..ddedfd2f44a 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -22,7 +22,7 @@ class KArmedBanditAgent { float exp_alpha_ = -1; //Step size for q_ updates (< 0 implies use incremental average) size_t num_available_moves_; //Number of arms of the karmed bandit problem (k) size_t num_available_types_; //Number of types that each arm of the karmed bandit problem can pull with - bool propose_blk_type = false; //Shows the intelligence level of the agent (Proposing blk_type, move_type) + bool propose_blk_type = false; //Check if agent should propose both move and block type or only move type std::vector num_action_chosen_; //Number of times each arm has been pulled (n) std::vector q_; //Estimated value of each arm (Q) size_t last_action_ = 0; //type of the last action (move type) proposed From f512991ee0de8f7e3fb59df8a17b5bd3614d204c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 3 Mar 2023 11:55:34 -0500 Subject: [PATCH 35/81] cleaned place.cpp and update the stat after placement --- vpr/src/place/place.cpp | 43 +++++------------------ vpr/src/place/simpleRL_move_generator.cpp | 6 ++-- 2 files changed, 11 insertions(+), 38 deletions(-) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index b89a188d565..e277990bb3e 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -155,12 +155,6 @@ static int num_swap_accepted = 0; static int num_swap_aborted = 0; static int num_ts_called = 0; -/* This variable keeps track of each move type and block type frequency - * proposed by the RL agent at any specific temperature.*/ -//SARA_TODO: MAKE THIS OPTIONAL WITH COMMAND-LINE OPTION -static std::vector proposed_move_per_temp; -static FILE* proposed_move_agent_per_temp; - /* Expected crossing counts for nets with different #'s of pins. From * * ICCAD 94 pp. 690 - 695 (with linear interpolation applied by me). * * Multiplied to bounding box of a net to better estimate wire length * @@ -423,9 +417,6 @@ static void print_placement_swaps_stats(const t_annealing_state& state); static void print_placement_move_types_stats( const MoveTypeStat& move_type_stat); -//SARA_TODO: delete these functions in the final version -static void save_proposed_move_per_temp(); - /*****************************************************************************/ void try_place(const t_placer_opts& placer_opts, t_annealing_sched annealing_sched, @@ -717,18 +708,13 @@ void try_place(const t_placer_opts& placer_opts, //allocate move type statistics vectors MoveTypeStat move_type_stat; - move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size(), - 0); - move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), 0); - + move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size(), 0); move_type_stat.blk_type_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); + + move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), 0); move_type_stat.accepted_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); move_type_stat.rejected_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); - //allocate move type statistics vector performed by the agent for each temperature - proposed_move_per_temp.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); - proposed_move_agent_per_temp = vtr::fopen("agent_move_info.txt", "w"); - /* Get the first range limiter */ first_rlim = (float)max(device_ctx.grid.width() - 1, device_ctx.grid.height() - 1); @@ -827,8 +813,6 @@ void try_place(const t_placer_opts& placer_opts, print_place_status(state, stats, temperature_timer.elapsed_sec(), critical_path.delay(), sTNS, sWNS, tot_iter); - // save_proposed_move_per_temp(); - if (placer_opts.place_algorithm.is_timing_driven() && placer_opts.place_agent_multistate && agent_state == EARLY_IN_THE_ANNEAL) { @@ -999,8 +983,6 @@ void try_place(const t_placer_opts& placer_opts, print_timing_stats("Placement Total ", timing_ctx.stats, pre_place_timing_stats); - fclose(proposed_move_agent_per_temp); - VTR_LOG("update_td_costs: connections %g nets %g sum_nets %g total %g\n", p_runtime_ctx.f_update_td_costs_connections_elapsed_sec, p_runtime_ctx.f_update_td_costs_nets_elapsed_sec, @@ -1273,7 +1255,7 @@ static float starting_t(const t_annealing_state* state, t_placer_costs* costs, t /* Set the initial temperature to the standard of deviation divided by 64 */ /* so that the initial temperature adjusts according to the circuit */ - /* and also keep the initial placement qaulity (not destroying it completely) */ + /* and also keep the initial placement quality (not destroying it completely) */ /* and fine-tune the initial placement with the anneal*/ float init_temp = (std_dev / 64); @@ -1391,9 +1373,8 @@ static e_move_result try_swap(const t_annealing_state* state, } ++move_type_stat.num_moves[(int)move_type]; - if (move_blk_type.index != -1) { //if the agent proposed the blcok type, then collect the block type stat + if (move_blk_type.index != -1) { //if the agent proposed the block type, then collect the block type stat ++move_type_stat.blk_type_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; - ++proposed_move_per_temp[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; } LOG_MOVE_STATS_PROPOSED(t, blocks_affected); @@ -2897,16 +2878,6 @@ void print_clb_placement(const char* fname) { } #endif -static void save_proposed_move_per_temp() { - if (proposed_move_agent_per_temp) { - for (auto iaction = 0; iaction < proposed_move_per_temp.size(); iaction++) { - fprintf(proposed_move_agent_per_temp, "%d\t", proposed_move_per_temp[iaction]); - proposed_move_per_temp[iaction] = 0; - } - fprintf(proposed_move_agent_per_temp, "\n"); - } -} - static void free_try_swap_arrays() { g_vpr_ctx.mutable_placement().compressed_block_grids.clear(); } @@ -3041,6 +3012,7 @@ static void print_placement_swaps_stats(const t_annealing_state& state) { static void print_placement_move_types_stats( const MoveTypeStat& move_type_stat) { float moves, accepted, rejected, aborted; + float total_moves = std::accumulate(move_type_stat.num_moves.begin(), move_type_stat.num_moves.end(), 0.0); @@ -3048,6 +3020,7 @@ static void print_placement_move_types_stats( auto& cluster_ctx = g_vpr_ctx.clustering(); std::string move_name; int agent_type = 0; + VTR_LOG("\n\nPercentage of different move types and block types:\n"); //Print placement information for each block type for (auto itype : device_ctx.logical_block_types) { @@ -3076,7 +3049,7 @@ static void print_placement_move_types_stats( //Print the abortion rate for each move type (Meaning that no specific block type has been found by the agent) VTR_LOG("Percentage of different move types that was aborted:\n"); - for (auto imove = 0; imove < move_type_stat.num_moves.size(); imove++) { + for (size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++) { if (move_type_stat.num_moves[imove] == 0) { continue; } diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 12de81f6d1b..9981d3d7795 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -196,7 +196,7 @@ t_propose_action EpsilonGreedyAgent::propose_action() { //Check the move type to be a valid move VTR_ASSERT(move_type < num_available_moves_); //Check the block type index to be valid type if the agent is supposed to propose block type - VTR_ASSERT(blk_type.index < num_available_types_ || !propose_blk_type); + VTR_ASSERT((size_t)blk_type.index < num_available_types_ || !propose_blk_type); //Mark the q_table location that agent used to update its value after processing the move outcome last_action_ = (!propose_blk_type) ? move_type : move_type + (blk_type.index * num_available_moves_); @@ -293,7 +293,7 @@ t_propose_action SoftmaxAgent::propose_action() { } //To take care that the last element in cumm_action_prob_ might be less than 1 by a small value - if (action_type_q_pos == num_available_moves_ * num_available_types_) { + if ((size_t)action_type_q_pos == num_available_moves_ * num_available_types_) { move_type = num_available_moves_ - 1; if (propose_blk_type) { //calculate block type index only if agent is supposed to propose both move and block type blk_type.index = num_available_types_ - 1; @@ -303,7 +303,7 @@ t_propose_action SoftmaxAgent::propose_action() { //Check the move type to be a valid move VTR_ASSERT(move_type < num_available_moves_); //Check the block type index to be valid type if the agent is supposed to propose block type - VTR_ASSERT(blk_type.index < num_available_types_ || !propose_blk_type); + VTR_ASSERT((size_t)blk_type.index < num_available_types_ || !propose_blk_type); //Mark the q_table location that agent used to update its value after processing the move outcome last_action_ = (!propose_blk_type) ? move_type : move_type + (blk_type.index * num_available_moves_); From 3c9626959aeb27ab64fa3e2af3dedcb5b6192063 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 6 Mar 2023 16:37:01 -0500 Subject: [PATCH 36/81] Update placement context to contain logical_to_agent block type map --- vpr/src/base/vpr_context.h | 8 ++++++++ vpr/src/place/RL_agent_util.cpp | 16 ++++++---------- vpr/src/place/centroid_move_generator.cpp | 2 +- vpr/src/place/move_utils.cpp | 16 ++++++++-------- vpr/src/place/move_utils.h | 18 +++++++++++++++--- vpr/src/place/place.cpp | 1 - 6 files changed, 38 insertions(+), 23 deletions(-) diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index b31ab42f794..821b5738bb0 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -378,6 +378,14 @@ struct PlacementContext : public Context { * Used for unique identification and consistency checking */ std::string placement_id; + + /** + * @brief Map available logical block types to RLplace agent block types + * + * Used to efficiently convert agent (logical) block types to logical (agent) block type. + */ + std::unordered_map logical_to_agent_map; + std::unordered_map agent_to_logical_map; }; /** diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index bbce8456a35..0f94ada6e81 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -35,14 +35,10 @@ void create_move_generators(std::unique_ptr& move_generator, std: * * * This state is activated late in the anneale and in the Quench */ - //passing block type as well as number of available actions to the agents - //should change this to a command-line options, hence the user can choose - //the level of the agent intelligent - //default option now becomes considering move_type as well as block_types - + //Loop through all available logical block types and store the ones that exist in the netlist auto& device_ctx = g_vpr_ctx.device(); - //int logical_blk_types_count = device_ctx.logical_block_types.size() - 1;//excluding the EMPTY type auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& place_ctx = g_vpr_ctx.mutable_placement(); int logical_blk_types_count = 0; int agent_type_index = 0; for (auto itype : device_ctx.logical_block_types) { @@ -50,15 +46,15 @@ void create_move_generators(std::unique_ptr& move_generator, std: continue; auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); if (blk_per_type.size() != 0) { - logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); - agent_to_logical_map.insert(std::pair(itype.index, agent_type_index)); + place_ctx.logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); + place_ctx.agent_to_logical_map.insert(std::pair(itype.index, agent_type_index)); agent_type_index++; logical_blk_types_count++; } } if (placer_opts.place_agent_algorithm == E_GREEDY) { - VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); + VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state @@ -80,7 +76,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: move_generator2 = std::make_unique(karmed_bandit_agent2); } } else { - VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); + VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; if (placer_opts.place_algorithm.is_timing_driven()) { diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index c5d0f0e5313..7381ce703a6 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -49,7 +49,7 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& block e_create_move create_move = ::create_move(blocks_affected, b_from, to); - //Check that all of the blocks affected by the move would still be in a legal floorplan region after the swap + //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { return e_create_move::ABORT; } diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index de5e64b85b1..e80a8b6f1f2 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -497,28 +497,28 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& return empty_locs; } -//SARA_TODO: -std::unordered_map logical_to_agent_map; -std::unordered_map agent_to_logical_map; int convert_agent_to_logical_block_type(int agent_block_type_index) { - if (logical_to_agent_map.count(agent_block_type_index)) { - return logical_to_agent_map[agent_block_type_index]; + auto& place_ctx = g_vpr_ctx.mutable_placement(); + if (place_ctx.logical_to_agent_map.count(agent_block_type_index)) { + return place_ctx.logical_to_agent_map[agent_block_type_index]; } //invalid block type return -1; } int convert_logical_to_agent_block_type(int logical_block_type_index) { - if (agent_to_logical_map.count(logical_block_type_index)) { - return agent_to_logical_map[logical_block_type_index]; + auto& place_ctx = g_vpr_ctx.mutable_placement(); + if (place_ctx.agent_to_logical_map.count(logical_block_type_index)) { + return place_ctx.agent_to_logical_map[logical_block_type_index]; } //invalid block type return -1; } int get_num_agent_types() { - return logical_to_agent_map.size(); + auto& place_ctx = g_vpr_ctx.placement(); + return place_ctx.logical_to_agent_map.size(); } //Pick a random block to be swapped with another random block. diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 801dfc0be2e..fb37f237b0e 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -234,11 +234,23 @@ bool intersect_range_limit_with_floorplan_constraints(t_logical_block_type_ptr t std::string e_move_result_to_string(e_move_result move_outcome); -//SARA_TODO: find a better location for these -extern std::unordered_map logical_to_agent_map; -extern std::unordered_map agent_to_logical_map; +/** + * @brief find the logical block type index associated to the agent block type + * + * @return logical block type index associated with the agent_block_type_index + */ int convert_agent_to_logical_block_type(int agent_block_type_index); + +/** + * @brief find the agent block type index associated to the logical block type + * + * @return agent block type index associated with the logical_block_type_index + */ int convert_logical_to_agent_block_type(int logical_block_type_index); + +/** + * @brief return number of available block types in the RLplace agent + */ int get_num_agent_types(); #endif diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index e277990bb3e..c79e118a205 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -1560,7 +1560,6 @@ static e_move_result try_swap(const t_annealing_state* state, (move_outcome ? "ACCEPTED" : "REJECTED"), ""); } move_outcome_stats.outcome = move_outcome; - //SARA_TODO: fix delta cost value! calculate_reward_and_process_outcome(placer_opts, move_outcome_stats, delta_c /*/costs->cost*/, timing_bb_factor, move_generator); From 47b9f8b7306ef411aa61f854be8971ca9c9ff32c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 6 Mar 2023 17:38:11 -0500 Subject: [PATCH 37/81] create a uniform function called propose_block_type and use it in all seven move types to avoid duplicate code --- vpr/src/place/centroid_move_generator.cpp | 15 ++-------- .../place/critical_uniform_move_generator.cpp | 18 ++++-------- .../place/feasible_region_move_generator.cpp | 22 +++++--------- vpr/src/place/median_move_generator.cpp | 24 +++++---------- vpr/src/place/move_utils.cpp | 29 +++++++++++++++++++ vpr/src/place/move_utils.h | 16 ++++++++-- vpr/src/place/uniform_move_generator.cpp | 19 ++++-------- .../weighted_centroid_move_generator.cpp | 16 +++------- .../place/weighted_median_move_generator.cpp | 22 +++++--------- 9 files changed, 83 insertions(+), 98 deletions(-) diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index 7381ce703a6..3ec0b216934 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -6,17 +6,8 @@ #include "move_utils.h" e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { - ClusterBlockId b_from; - auto& cluster_ctx = g_vpr_ctx.clustering(); - - if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block - b_from = pick_from_block(); - if (b_from) { //if a movable block found, set the block type since the agent only proposed the move type - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } - } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block - b_from = pick_from_block(blk_type); - } + //Find a movable block based on blk_type + ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; @@ -24,7 +15,7 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& block auto& device_ctx = g_vpr_ctx.device(); auto& place_ctx = g_vpr_ctx.placement(); - + auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_move_ctx = g_placer_ctx.mutable_move(); t_pl_loc from = place_ctx.block_locs[b_from].loc; diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index c2f58211646..dee0f0a4196 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -4,21 +4,13 @@ #include "move_utils.h" e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - ClusterNetId net_from; - ClusterBlockId b_from; int pin_from; + //Find a movable block based on blk_type + ClusterBlockId b_from = propose_block_type(blk_type, true, &net_from, &pin_from); - if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block - b_from = pick_from_highly_critical_block(net_from, pin_from); - if (b_from) { //if a movable block found, set the block type since the agent only proposed the move type - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } - } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block - b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); - } + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); if (!b_from) { //No movable block found return e_create_move::ABORT; @@ -37,7 +29,7 @@ e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved e_create_move create_move = ::create_move(blocks_affected, b_from, to); - //Check that all of the blocks affected by the move would still be in a legal floorplan region after the swap + //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { return e_create_move::ABORT; } diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index 1cc0ee33c2e..a48a9a311ab 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -6,27 +6,19 @@ #include "move_utils.h" e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_move_ctx = g_placer_ctx.mutable_move(); - ClusterNetId net_from; - ClusterBlockId b_from; int pin_from; - - if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block - b_from = pick_from_highly_critical_block(net_from, pin_from); - if (b_from) { //if a movable block found, set the block type since the agent only proposed the move type - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } - } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block - b_from = pick_from_highly_critical_block(net_from, pin_from, blk_type); - } + //Find a movable block based on blk_type + ClusterBlockId b_from = propose_block_type(blk_type, true, &net_from, &pin_from); if (!b_from) { //No movable block found return e_create_move::ABORT; } + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& place_move_ctx = g_placer_ctx.mutable_move(); + //from block data t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); @@ -127,7 +119,7 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& e_create_move create_move = ::create_move(blocks_affected, b_from, to); - //Check that all of the blocks affected by the move would still be in a legal floorplan region after the swap + //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { return e_create_move::ABORT; } diff --git a/vpr/src/place/median_move_generator.cpp b/vpr/src/place/median_move_generator.cpp index fb36d0994c3..36769350268 100644 --- a/vpr/src/place/median_move_generator.cpp +++ b/vpr/src/place/median_move_generator.cpp @@ -10,26 +10,18 @@ static bool get_bb_incrementally(ClusterNetId net_id, t_bb* bb_coord_new, int xo static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb* bb_coord_new, ClusterBlockId block_id, bool& skip_net); e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& device_ctx = g_vpr_ctx.device(); - - auto& place_move_ctx = g_placer_ctx.mutable_move(); - - ClusterBlockId b_from; - if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block - b_from = pick_from_block(); - if (b_from) { //if a movable block found, set the block type since the agent only proposed the move type - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } - } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block - b_from = pick_from_block(blk_type); - } + //Find a movable block based on blk_type + ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; } + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& device_ctx = g_vpr_ctx.device(); + auto& place_move_ctx = g_placer_ctx.mutable_move(); + t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; @@ -131,7 +123,7 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_ e_create_move create_move = ::create_move(blocks_affected, b_from, to); - //Check that all of the blocks affected by the move would still be in a legal floorplan region after the swap + //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { return e_create_move::ABORT; } diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index e80a8b6f1f2..fe418b64524 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -521,6 +521,35 @@ int get_num_agent_types() { return place_ctx.logical_to_agent_map.size(); } +ClusterBlockId propose_block_type(t_logical_block_type& blk_type ,bool highly_crit_block, ClusterNetId* net_from, int* pin_from){ + ClusterBlockId b_from = ClusterBlockId::INVALID(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + + if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block + if(highly_crit_block){ + b_from = pick_from_highly_critical_block(*net_from, *pin_from); + } + else{ + b_from = pick_from_block(); + } + + //if a movable block found, set the block type + if (b_from) { + blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); + } + } + else{ //If the block type is specified, choose a random block with blk_type to be swapped with another random block + if(highly_crit_block){ + b_from = pick_from_highly_critical_block(*net_from, *pin_from, blk_type); + } + else{ + b_from = pick_from_block(blk_type); + } + } + + return b_from; +} + //Pick a random block to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() ClusterBlockId pick_from_block() { diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index fb37f237b0e..22d52fda427 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -109,6 +109,18 @@ bool is_legal_swap_to_location(ClusterBlockId blk, t_pl_loc to); std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& blocks_affected); +/** + * @brief Propose block for the RL agent based on required block type. + * + * @param blk_type: the agent type of the moving block. + * @param highly_crit_block: block should be chosen from highly critical blocks. + * @param net_from: if block is chosen from highly critical blocks, should store its net id. + * @param pin_from: if block is chosen from highly critical blocks, should save its critical pin id. + * + * @return block id if any blocks found. ClusterBlockId::INVALID() if no block found. + */ +ClusterBlockId propose_block_type(t_logical_block_type& blk_type ,bool highly_crit_block, ClusterNetId* net_from, int* pin_from); + /** * @brief Select a random block to be swapped with another block * @@ -119,7 +131,7 @@ ClusterBlockId pick_from_block(); /** * @brief Find a block with a specific block type to be swapped with another block * - * @param blk_type: the logical type of the moving block. + * @param blk_type: the agent type of the moving block. * * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found */ @@ -135,7 +147,7 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ /** * @brief Find a block with a specific block type to be swapped with another block * - * @param blk_type: the logical type of the moving block. + * @param blk_type: the agent type of the moving block. * * @return BlockId of the selected block, ClusterBlockId::INVALID() if no block with specified block type found */ diff --git a/vpr/src/place/uniform_move_generator.cpp b/vpr/src/place/uniform_move_generator.cpp index eccd2ec712f..b4d2011b31c 100644 --- a/vpr/src/place/uniform_move_generator.cpp +++ b/vpr/src/place/uniform_move_generator.cpp @@ -4,23 +4,16 @@ #include "move_utils.h" e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - - ClusterBlockId b_from; - if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block - b_from = pick_from_block(); - if (b_from) { //if a movable block found, set the block type since the agent only proposed the move type - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } - } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block - b_from = pick_from_block(blk_type); - } + //Find a movable block based on blk_type + ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; } + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; @@ -47,7 +40,7 @@ e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks e_create_move create_move = ::create_move(blocks_affected, b_from, to); - //Check that all of the blocks affected by the move would still be in a legal floorplan region after the swap + //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { return e_create_move::ABORT; } diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index 7ed2c7b0473..01a668c2884 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -5,22 +5,14 @@ #include "move_utils.h" e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { - ClusterBlockId b_from; - auto& cluster_ctx = g_vpr_ctx.clustering(); - - if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block - b_from = pick_from_block(); - if (b_from) { //if a movable block found, set the block type since the agent only proposed the move type - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } - } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block - b_from = pick_from_block(blk_type); - } + //Find a movable block based on blk_type + ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; } + auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.placement(); auto& device_ctx = g_vpr_ctx.device(); @@ -48,7 +40,7 @@ e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_move e_create_move create_move = ::create_move(blocks_affected, b_from, to); - //Check that all of the blocks affected by the move would still be in a legal floorplan region after the swap + //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { return e_create_move::ABORT; } diff --git a/vpr/src/place/weighted_median_move_generator.cpp b/vpr/src/place/weighted_median_move_generator.cpp index b613c060b8a..d719612fc5b 100644 --- a/vpr/src/place/weighted_median_move_generator.cpp +++ b/vpr/src/place/weighted_median_move_generator.cpp @@ -10,25 +10,17 @@ static void get_bb_cost_for_net_excluding_block(ClusterNetId net_id, ClusterBlockId block_id, ClusterPinId moving_pin_id, const PlacerCriticalities* criticalities, t_bb_cost* coords, bool& skip_net); e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { - auto& place_ctx = g_vpr_ctx.placement(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - - auto& place_move_ctx = g_placer_ctx.mutable_move(); - - ClusterBlockId b_from; - if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block - b_from = pick_from_block(); - if (b_from) { //if a movable block found, set the block type since the agent only proposed the move type - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); - } - } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block - b_from = pick_from_block(blk_type); - } + //Find a movable block based on blk_type + ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; } + auto& place_ctx = g_vpr_ctx.placement(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& place_move_ctx = g_placer_ctx.mutable_move(); + t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; @@ -113,7 +105,7 @@ e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& e_create_move create_move = ::create_move(blocks_affected, b_from, to); - //Check that all of the blocks affected by the move would still be in a legal floorplan region after the swap + //Check that all the blocks affected by the move would still be in a legal floorplan region after the swap if (!floorplan_legal(blocks_affected)) { return e_create_move::ABORT; } From 90d5688c23e873e88662c80709c9ffdb8fb0ee4a Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 27 Mar 2023 12:10:42 -0400 Subject: [PATCH 38/81] make format --- vpr/src/place/move_utils.cpp | 15 ++++++--------- vpr/src/place/move_utils.h | 2 +- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index fe418b64524..26b974f576d 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -521,15 +521,14 @@ int get_num_agent_types() { return place_ctx.logical_to_agent_map.size(); } -ClusterBlockId propose_block_type(t_logical_block_type& blk_type ,bool highly_crit_block, ClusterNetId* net_from, int* pin_from){ +ClusterBlockId propose_block_type(t_logical_block_type& blk_type, bool highly_crit_block, ClusterNetId* net_from, int* pin_from) { ClusterBlockId b_from = ClusterBlockId::INVALID(); auto& cluster_ctx = g_vpr_ctx.clustering(); if (blk_type.index == -1) { //If the block type is unspecified, choose any random block to be swapped with another random block - if(highly_crit_block){ + if (highly_crit_block) { b_from = pick_from_highly_critical_block(*net_from, *pin_from); - } - else{ + } else { b_from = pick_from_block(); } @@ -537,12 +536,10 @@ ClusterBlockId propose_block_type(t_logical_block_type& blk_type ,bool highly_cr if (b_from) { blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } - } - else{ //If the block type is specified, choose a random block with blk_type to be swapped with another random block - if(highly_crit_block){ + } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block + if (highly_crit_block) { b_from = pick_from_highly_critical_block(*net_from, *pin_from, blk_type); - } - else{ + } else { b_from = pick_from_block(blk_type); } } diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 22d52fda427..f3c3625a1ea 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -119,7 +119,7 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& * * @return block id if any blocks found. ClusterBlockId::INVALID() if no block found. */ -ClusterBlockId propose_block_type(t_logical_block_type& blk_type ,bool highly_crit_block, ClusterNetId* net_from, int* pin_from); +ClusterBlockId propose_block_type(t_logical_block_type& blk_type, bool highly_crit_block, ClusterNetId* net_from, int* pin_from); /** * @brief Select a random block to be swapped with another block From e37ba2be12bc6d53155c51757111bb4029aa4897 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 27 Mar 2023 17:11:23 -0400 Subject: [PATCH 39/81] changed seed for one vtr benchmark to see if that resolves its error --- .../figure_8/config/config.txt | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt index b223ffdd120..eb900d8af45 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt @@ -17,30 +17,30 @@ archs_dir=arch/timing/fixed_size # circuit_list_add=adder_002bits.v circuit_list_add=adder_003bits.v circuit_list_add=adder_004bits.v -circuit_list_add=adder_005bits.v -circuit_list_add=adder_006bits.v -circuit_list_add=adder_007bits.v -circuit_list_add=adder_008bits.v -circuit_list_add=adder_009bits.v -circuit_list_add=adder_010bits.v -circuit_list_add=adder_011bits.v -circuit_list_add=adder_012bits.v -circuit_list_add=adder_013bits.v -circuit_list_add=adder_014bits.v -circuit_list_add=adder_015bits.v -circuit_list_add=adder_016bits.v +#circuit_list_add=adder_005bits.v +#circuit_list_add=adder_006bits.v +#circuit_list_add=adder_007bits.v +#circuit_list_add=adder_008bits.v +#circuit_list_add=adder_009bits.v +#circuit_list_add=adder_010bits.v +#circuit_list_add=adder_011bits.v +#circuit_list_add=adder_012bits.v +#circuit_list_add=adder_013bits.v +#circuit_list_add=adder_014bits.v +#circuit_list_add=adder_015bits.v +#circuit_list_add=adder_016bits.v # circuit_list_add=adder_017bits.v -circuit_list_add=adder_018bits.v +#circuit_list_add=adder_018bits.v # circuit_list_add=adder_019bits.v -circuit_list_add=adder_020bits.v +#circuit_list_add=adder_020bits.v # circuit_list_add=adder_021bits.v -circuit_list_add=adder_022bits.v +#circuit_list_add=adder_022bits.v # circuit_list_add=adder_023bits.v -circuit_list_add=adder_024bits.v -circuit_list_add=adder_028bits.v -circuit_list_add=adder_032bits.v -circuit_list_add=adder_048bits.v -circuit_list_add=adder_064bits.v +#circuit_list_add=adder_024bits.v +#circuit_list_add=adder_028bits.v +#circuit_list_add=adder_032bits.v +#circuit_list_add=adder_048bits.v +#circuit_list_add=adder_064bits.v # circuit_list_add=adder_096bits.v # circuit_list_add=adder_097bits.v # circuit_list_add=adder_098bits.v @@ -108,16 +108,16 @@ circuit_list_add=adder_064bits.v # circuit_list_add=adder_160bits.v # Add architectures to list to sweep -arch_list_add=fixed_k6_N8_gate_boost_0.2V_22nm.xml -arch_list_add=fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml -arch_list_add=fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml -arch_list_add=fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml -arch_list_add=fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml +#arch_list_add=fixed_k6_N8_gate_boost_0.2V_22nm.xml +#arch_list_add=fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml +#arch_list_add=fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml +#arch_list_add=fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml +#arch_list_add=fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml arch_list_add=fixed_k6_frac_2ripple_N8_22nm.xml -arch_list_add=fixed_k6_frac_2uripple_N8_22nm.xml -arch_list_add=fixed_k6_frac_N8_22nm.xml -arch_list_add=fixed_k6_frac_ripple_N8_22nm.xml -arch_list_add=fixed_k6_frac_uripple_N8_22nm.xml +#arch_list_add=fixed_k6_frac_2uripple_N8_22nm.xml +#arch_list_add=fixed_k6_frac_N8_22nm.xml +#arch_list_add=fixed_k6_frac_ripple_N8_22nm.xml +#arch_list_add=fixed_k6_frac_uripple_N8_22nm.xml # Parse info and how to parse parse_file=vpr_chain.txt @@ -128,4 +128,4 @@ qor_parse_file=qor_standard.txt # Pass requirements pass_requirements_file=pass_requirements_chain.txt -script_params=-lut_size 6 -routing_failure_predictor off -seed 2 +script_params=-starting_stage odin -lut_size 6 -routing_failure_predictor off -seed 1 From 0521938b5fb35615562e6dc36bb1d1bd6394fef0 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 27 Mar 2023 17:25:38 -0400 Subject: [PATCH 40/81] minor issue: config file was commented --- .../figure_8/config/config.txt | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt index eb900d8af45..ecb7af9e6a1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt @@ -17,30 +17,30 @@ archs_dir=arch/timing/fixed_size # circuit_list_add=adder_002bits.v circuit_list_add=adder_003bits.v circuit_list_add=adder_004bits.v -#circuit_list_add=adder_005bits.v -#circuit_list_add=adder_006bits.v -#circuit_list_add=adder_007bits.v -#circuit_list_add=adder_008bits.v -#circuit_list_add=adder_009bits.v -#circuit_list_add=adder_010bits.v -#circuit_list_add=adder_011bits.v -#circuit_list_add=adder_012bits.v -#circuit_list_add=adder_013bits.v -#circuit_list_add=adder_014bits.v -#circuit_list_add=adder_015bits.v -#circuit_list_add=adder_016bits.v +circuit_list_add=adder_005bits.v +circuit_list_add=adder_006bits.v +circuit_list_add=adder_007bits.v +circuit_list_add=adder_008bits.v +circuit_list_add=adder_009bits.v +circuit_list_add=adder_010bits.v +circuit_list_add=adder_011bits.v +circuit_list_add=adder_012bits.v +circuit_list_add=adder_013bits.v +circuit_list_add=adder_014bits.v +circuit_list_add=adder_015bits.v +circuit_list_add=adder_016bits.v # circuit_list_add=adder_017bits.v -#circuit_list_add=adder_018bits.v +circuit_list_add=adder_018bits.v # circuit_list_add=adder_019bits.v -#circuit_list_add=adder_020bits.v +circuit_list_add=adder_020bits.v # circuit_list_add=adder_021bits.v -#circuit_list_add=adder_022bits.v +circuit_list_add=adder_022bits.v # circuit_list_add=adder_023bits.v -#circuit_list_add=adder_024bits.v -#circuit_list_add=adder_028bits.v -#circuit_list_add=adder_032bits.v -#circuit_list_add=adder_048bits.v -#circuit_list_add=adder_064bits.v +circuit_list_add=adder_024bits.v +circuit_list_add=adder_028bits.v +circuit_list_add=adder_032bits.v +circuit_list_add=adder_048bits.v +circuit_list_add=adder_064bits.v # circuit_list_add=adder_096bits.v # circuit_list_add=adder_097bits.v # circuit_list_add=adder_098bits.v @@ -108,16 +108,16 @@ circuit_list_add=adder_004bits.v # circuit_list_add=adder_160bits.v # Add architectures to list to sweep -#arch_list_add=fixed_k6_N8_gate_boost_0.2V_22nm.xml -#arch_list_add=fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml -#arch_list_add=fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml -#arch_list_add=fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml -#arch_list_add=fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml +arch_list_add=fixed_k6_N8_gate_boost_0.2V_22nm.xml +arch_list_add=fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml +arch_list_add=fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml +arch_list_add=fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml +arch_list_add=fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml arch_list_add=fixed_k6_frac_2ripple_N8_22nm.xml -#arch_list_add=fixed_k6_frac_2uripple_N8_22nm.xml -#arch_list_add=fixed_k6_frac_N8_22nm.xml -#arch_list_add=fixed_k6_frac_ripple_N8_22nm.xml -#arch_list_add=fixed_k6_frac_uripple_N8_22nm.xml +arch_list_add=fixed_k6_frac_2uripple_N8_22nm.xml +arch_list_add=fixed_k6_frac_N8_22nm.xml +arch_list_add=fixed_k6_frac_ripple_N8_22nm.xml +arch_list_add=fixed_k6_frac_uripple_N8_22nm.xml # Parse info and how to parse parse_file=vpr_chain.txt @@ -128,4 +128,4 @@ qor_parse_file=qor_standard.txt # Pass requirements pass_requirements_file=pass_requirements_chain.txt -script_params=-starting_stage odin -lut_size 6 -routing_failure_predictor off -seed 1 +script_params=-lut_size 6 -routing_failure_predictor off -seed 1 From b647ed47be4712d411bbded264181972ee6883f5 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 27 Mar 2023 17:40:36 -0400 Subject: [PATCH 41/81] changed seed for strong_sdc config file to avoid failure --- .../vtr_reg_strong/strong_sdc/config/config.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/config.txt index 2f93f53041c..538d17ad6f3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/config.txt @@ -24,7 +24,7 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params_common = -starting_stage vpr +script_params_common = -starting_stage vpr --seed 2 script_params_list_add = -sdc_file sdc/samples/A.sdc script_params_list_add = -sdc_file sdc/samples/B.sdc script_params_list_add = -sdc_file sdc/samples/C.sdc From b0dbc3dcb2ab035a1b8454577f67f47f7ae89d30 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 27 Mar 2023 17:45:38 -0400 Subject: [PATCH 42/81] changed route_chan_width from 20 to 22 for strong_verify_rr_graph_titan to avoid failure --- .../strong_verify_rr_graph_titan/config/config.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_titan/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_titan/config/config.txt index 435cfd187ec..e0c42869466 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_titan/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_verify_rr_graph_titan/config/config.txt @@ -25,4 +25,4 @@ qor_parse_file=qor_rr_graph.txt # Pass requirements pass_requirements_file=pass_requirements_verify_rr_graph.txt -script_params=-starting_stage vpr -verify_rr_graph -rr_graph_ext .xml -route_chan_width 20 +script_params=-starting_stage vpr -verify_rr_graph -rr_graph_ext .xml -route_chan_width 22 From a5ed95588bf3b267f3d3ba8e47211a72302bb49b Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 29 Mar 2023 14:40:22 -0400 Subject: [PATCH 43/81] add a command-line option to choose between RLPlace 1.0 and RlPlace 2.0 --- vpr/src/base/SetupVPR.cpp | 1 + vpr/src/base/read_options.cpp | 8 +++++ vpr/src/base/read_options.h | 1 + vpr/src/base/vpr_types.h | 9 ++++++ vpr/src/place/RL_agent_util.cpp | 54 +++++++++++++++++++++++++-------- 5 files changed, 60 insertions(+), 13 deletions(-) diff --git a/vpr/src/base/SetupVPR.cpp b/vpr/src/base/SetupVPR.cpp index 33bd010346e..aecb7d25597 100644 --- a/vpr/src/base/SetupVPR.cpp +++ b/vpr/src/base/SetupVPR.cpp @@ -658,6 +658,7 @@ static void SetupPlacerOpts(const t_options& Options, t_placer_opts* PlacerOpts) PlacerOpts->place_agent_epsilon = Options.place_agent_epsilon; PlacerOpts->place_agent_gamma = Options.place_agent_gamma; PlacerOpts->place_dm_rlim = Options.place_dm_rlim; + PlacerOpts->place_detailed_agent = Options.place_detailed_agent; PlacerOpts->place_reward_fun = Options.place_reward_fun; PlacerOpts->place_crit_limit = Options.place_crit_limit; PlacerOpts->place_agent_algorithm = Options.place_agent_algorithm; diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index d0870e54591..47e576717c0 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -2019,6 +2019,14 @@ argparse::ArgumentParser create_arg_parser(std::string prog_name, t_options& arg .default_value("3.0") .show_in(argparse::ShowIn::HELP_ONLY); + place_grp.add_argument(args.place_detailed_agent, "--place_detailed_agent") + .help( + "Controls how detailed RL-agent Q-table should be.\n" + "If off, RL-agent only proposes move type at each anneal stage\n" + "If on, RL-agent proposes both move type and block type at each stage\n") + .default_value("on") + .show_in(argparse::ShowIn::HELP_ONLY); + place_grp.add_argument(args.place_reward_fun, "--place_reward_fun") .help( "The reward function used by placement RL agent." diff --git a/vpr/src/base/read_options.h b/vpr/src/base/read_options.h index d1e9e1e1d61..dcc291ec45d 100644 --- a/vpr/src/base/read_options.h +++ b/vpr/src/base/read_options.h @@ -134,6 +134,7 @@ struct t_options { argparse::ArgValue place_agent_epsilon; argparse::ArgValue place_agent_gamma; argparse::ArgValue place_dm_rlim; + argparse::ArgValue place_detailed_agent; argparse::ArgValue place_agent_algorithm; argparse::ArgValue place_reward_fun; argparse::ArgValue place_crit_limit; diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index 905f14cd442..a4df40c0221 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -1065,6 +1065,14 @@ enum class e_place_delta_delay_algorithm { * @param place_constraint_subtile * True if subtiles should be specified when printing floorplan * constraints. False if not. + * + * @param place_detailed_agent + * Integer value that specifies how much detailed RL-agent + * Q-table should be. if set to false, agent will only consider + * to propose move type (e.g. Median), if set to true, agent will + * propose both move and block type (e.g. Median/CLB). + * Default value: true + * */ struct t_placer_opts { t_place_algorithm place_algorithm; @@ -1113,6 +1121,7 @@ struct t_placer_opts { float place_agent_epsilon; float place_agent_gamma; float place_dm_rlim; + bool place_detailed_agent; //int place_timing_cost_func; std::string place_reward_fun; float place_crit_limit; diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index 0f94ada6e81..65d49790531 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -23,23 +23,29 @@ void create_move_generators(std::unique_ptr& move_generator, std: move_generator2 = std::make_unique(placer_opts.place_static_notiming_move_prob); } } else { //RL based placement - /* For the non timing driven placecment: the agent has a single state * - * - Available actions are (Uniform / Median / Centroid) * + /* For the non timing driven placement: the agent has a single state * + * - Available moves are (Uniform / Median / Centroid) * * * * For the timing driven placement: the agent has two states * - * - 1st state: includes 4 actions (Uniform / Median / Centroid / * + * - 1st state: includes 4 moves (Uniform / Median / Centroid / * * WeightedCentroid) * - * - 2nd state: includes 7 actions (Uniform / Median / Centroid / * + * If agent should propose block type as well as the mentioned * + * move types, 1st state Q-table size is: * + * 4 move types * number of block types in the netlist * + * if not, the Q-table size is : 4 * + * * + * * + * - 2nd state: includes 7 moves (Uniform / Median / Centroid / * * WeightedCentroid / WeightedMedian / Feasible * * Region / CriticalUniform) * - * * - * This state is activated late in the anneale and in the Quench */ + * 2nd state agent Q-table size is always 7 and always proposes * + * only move type. * + * This state is activated late in the anneal and in the Quench */ //Loop through all available logical block types and store the ones that exist in the netlist auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); - int logical_blk_types_count = 0; int agent_type_index = 0; for (auto itype : device_ctx.logical_block_types) { if (itype.index == 0) //ignore empty type @@ -49,16 +55,21 @@ void create_move_generators(std::unique_ptr& move_generator, std: place_ctx.logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); place_ctx.agent_to_logical_map.insert(std::pair(itype.index, agent_type_index)); agent_type_index++; - logical_blk_types_count++; } } - if (placer_opts.place_agent_algorithm == E_GREEDY) { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, logical_blk_types_count, placer_opts.place_agent_epsilon); + if (placer_opts.place_detailed_agent) { + karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, + place_ctx.agent_to_logical_map.size(), + placer_opts.place_agent_epsilon); + } else { + karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, + placer_opts.place_agent_epsilon); + } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state @@ -67,7 +78,14 @@ void create_move_generators(std::unique_ptr& move_generator, std: move_generator2 = std::make_unique(karmed_bandit_agent2); } else { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, logical_blk_types_count, placer_opts.place_agent_epsilon); + if (placer_opts.place_detailed_agent) { + karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, + place_ctx.agent_to_logical_map.size(), + placer_opts.place_agent_epsilon); + } else { + karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, + placer_opts.place_agent_epsilon); + } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state @@ -81,7 +99,12 @@ void create_move_generators(std::unique_ptr& move_generator, std: if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, logical_blk_types_count); + if (placer_opts.place_detailed_agent) { + karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, + place_ctx.agent_to_logical_map.size()); + } else { + karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES); + } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state @@ -90,7 +113,12 @@ void create_move_generators(std::unique_ptr& move_generator, std: move_generator2 = std::make_unique(karmed_bandit_agent2); } else { //agent's 1st state - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, logical_blk_types_count); + if (placer_opts.place_detailed_agent) { + karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, + place_ctx.agent_to_logical_map.size()); + } else { + karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES); + } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state From 4ed212f7b4ceb29ed99840ae0bff594e33d33300 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 29 Mar 2023 14:54:10 -0400 Subject: [PATCH 44/81] fixed log messages during placement --- vpr/src/place/RL_agent_util.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index 65d49790531..3721021610e 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -58,15 +58,16 @@ void create_move_generators(std::unique_ptr& move_generator, std: } } if (placer_opts.place_agent_algorithm == E_GREEDY) { - VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state if (placer_opts.place_detailed_agent) { + VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, place_ctx.agent_to_logical_map.size(), placer_opts.place_agent_epsilon); } else { + VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, placer_opts.place_agent_epsilon); } @@ -79,10 +80,12 @@ void create_move_generators(std::unique_ptr& move_generator, std: } else { //agent's 1st state if (placer_opts.place_detailed_agent) { + VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, place_ctx.agent_to_logical_map.size(), placer_opts.place_agent_epsilon); } else { + VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, placer_opts.place_agent_epsilon); } @@ -94,15 +97,16 @@ void create_move_generators(std::unique_ptr& move_generator, std: move_generator2 = std::make_unique(karmed_bandit_agent2); } } else { - VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state if (placer_opts.place_detailed_agent) { + VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, place_ctx.agent_to_logical_map.size()); } else { + VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES); } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); @@ -114,9 +118,11 @@ void create_move_generators(std::unique_ptr& move_generator, std: } else { //agent's 1st state if (placer_opts.place_detailed_agent) { + VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, place_ctx.agent_to_logical_map.size()); } else { + VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES); } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); From 4adf6aecc3e9db39949efee4bcb19bd4b834d352 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 30 Mar 2023 14:07:36 -0400 Subject: [PATCH 45/81] modified the command-line option not to be boolean and take values to switch between RLPlace 1.0 and RLPlace 2.0 --- vpr/src/base/SetupVPR.cpp | 2 +- vpr/src/base/read_options.cpp | 47 +++++++++++++++++++---- vpr/src/base/read_options.h | 2 +- vpr/src/base/vpr_types.h | 20 ++++++---- vpr/src/place/RL_agent_util.cpp | 8 ++-- vpr/src/place/simpleRL_move_generator.cpp | 2 +- 6 files changed, 59 insertions(+), 22 deletions(-) diff --git a/vpr/src/base/SetupVPR.cpp b/vpr/src/base/SetupVPR.cpp index aecb7d25597..ea05407f04d 100644 --- a/vpr/src/base/SetupVPR.cpp +++ b/vpr/src/base/SetupVPR.cpp @@ -658,7 +658,7 @@ static void SetupPlacerOpts(const t_options& Options, t_placer_opts* PlacerOpts) PlacerOpts->place_agent_epsilon = Options.place_agent_epsilon; PlacerOpts->place_agent_gamma = Options.place_agent_gamma; PlacerOpts->place_dm_rlim = Options.place_dm_rlim; - PlacerOpts->place_detailed_agent = Options.place_detailed_agent; + PlacerOpts->place_agent_space = Options.place_agent_space; PlacerOpts->place_reward_fun = Options.place_reward_fun; PlacerOpts->place_crit_limit = Options.place_crit_limit; PlacerOpts->place_agent_algorithm = Options.place_agent_algorithm; diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index 47e576717c0..74a5159da96 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -461,6 +461,37 @@ struct ParsePlaceAgentAlgorithm { } }; +struct ParsePlaceAgentSpace { + ConvertedValue from_str(std::string str) { + ConvertedValue conv_value; + if (str == "move_type") + conv_value.set_value(MOVE_TYPE); + else if (str == "move_block_type") + conv_value.set_value(MOVE_BLOCK_TYPE); + else { + std::stringstream msg; + msg << "Invalid conversion from '" << str << "' to e_agent_space (expected one of: " << argparse::join(default_choices(), ", ") << ")"; + conv_value.set_error(msg.str()); + } + return conv_value; + } + + ConvertedValue to_str(e_agent_space val) { + ConvertedValue conv_value; + if (val == MOVE_TYPE) + conv_value.set_value("move_type"); + else { + VTR_ASSERT(val == MOVE_BLOCK_TYPE); + conv_value.set_value("move_block_type"); + } + return conv_value; + } + + std::vector default_choices() { + return {"move_type", "move_block_type"}; + } +}; + struct ParseFixPins { ConvertedValue from_str(std::string str) { ConvertedValue conv_value; @@ -2019,14 +2050,6 @@ argparse::ArgumentParser create_arg_parser(std::string prog_name, t_options& arg .default_value("3.0") .show_in(argparse::ShowIn::HELP_ONLY); - place_grp.add_argument(args.place_detailed_agent, "--place_detailed_agent") - .help( - "Controls how detailed RL-agent Q-table should be.\n" - "If off, RL-agent only proposes move type at each anneal stage\n" - "If on, RL-agent proposes both move type and block type at each stage\n") - .default_value("on") - .show_in(argparse::ShowIn::HELP_ONLY); - place_grp.add_argument(args.place_reward_fun, "--place_reward_fun") .help( "The reward function used by placement RL agent." @@ -2091,6 +2114,14 @@ argparse::ArgumentParser create_arg_parser(std::string prog_name, t_options& arg .choices({"e_greedy", "softmax"}) .show_in(argparse::ShowIn::HELP_ONLY); + place_grp.add_argument(args.place_agent_space, "--place_agent_space") + .help( + "Agent exploration space can be either based on only move types or also consider different block types\n" + "The available values are: move_type, move_block_type") + .default_value("move_block_type") + .choices({"move_type", "move_block_type"}) + .show_in(argparse::ShowIn::HELP_ONLY); + auto& place_timing_grp = parser.add_argument_group("timing-driven placement options"); place_timing_grp.add_argument(args.PlaceTimingTradeoff, "--timing_tradeoff") diff --git a/vpr/src/base/read_options.h b/vpr/src/base/read_options.h index dcc291ec45d..90f82ac07fb 100644 --- a/vpr/src/base/read_options.h +++ b/vpr/src/base/read_options.h @@ -134,7 +134,7 @@ struct t_options { argparse::ArgValue place_agent_epsilon; argparse::ArgValue place_agent_gamma; argparse::ArgValue place_dm_rlim; - argparse::ArgValue place_detailed_agent; + argparse::ArgValue place_agent_space; argparse::ArgValue place_agent_algorithm; argparse::ArgValue place_reward_fun; argparse::ArgValue place_crit_limit; diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index a4df40c0221..a2dfcd641a3 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -983,6 +983,18 @@ enum e_agent_algorithm { SOFTMAX }; +/** + * @brief Used to determine how large exploration space would be + * + * Agent exploration space can be either based on only move types or + * consider different block types, as well. + * + */ +enum e_agent_space { + MOVE_TYPE, + MOVE_BLOCK_TYPE +}; + ///@brief Used to calculate the inner placer loop's block swapping limit move_lim. enum e_place_effort_scaling { CIRCUIT, ///& move_generator, std: std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state - if (placer_opts.place_detailed_agent) { + if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, place_ctx.agent_to_logical_map.size(), @@ -79,7 +79,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: move_generator2 = std::make_unique(karmed_bandit_agent2); } else { //agent's 1st state - if (placer_opts.place_detailed_agent) { + if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, place_ctx.agent_to_logical_map.size(), @@ -101,7 +101,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: if (placer_opts.place_algorithm.is_timing_driven()) { //agent's 1st state - if (placer_opts.place_detailed_agent) { + if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, place_ctx.agent_to_logical_map.size()); @@ -117,7 +117,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: move_generator2 = std::make_unique(karmed_bandit_agent2); } else { //agent's 1st state - if (placer_opts.place_detailed_agent) { + if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, place_ctx.agent_to_logical_map.size()); diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 9981d3d7795..61bd13bc8f9 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -7,7 +7,7 @@ /* File-scope routines */ //a scaled and clipped exponential function -static float scaled_clipped_exp(float x) { return std::exp(std::min(100 * x, float(3.0))); } +static float scaled_clipped_exp(float x) { return std::exp(std::min(1000 * x, float(3.0))); } /* * * * From 7acbdc70da720dffb8497c3322f35d196d18b71e Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 4 Apr 2023 13:51:18 -0400 Subject: [PATCH 46/81] golden results updated for figure_8 using odin-ii --- .../figure_8/config/golden_results.txt | 442 +++++++++--------- 1 file changed, 221 insertions(+), 221 deletions(-) mode change 100755 => 100644 vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt old mode 100755 new mode 100644 index 6a725628648..d74766d3013 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,221 +1,221 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.55 vpr 60.09 MiB 0.01 6020 -1 -1 1 0.04 -1 -1 35104 -1 -1 2 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61528 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 21.6 MiB 0.01 74 60.1 MiB 0.00 0.00 0.581048 -6.14693 -0.581048 0.581048 1.04 2.2078e-05 1.5362e-05 0.000424834 0.000322167 20 143 7 6.55708e+06 24110 394039. 1363.46 0.59 0.00145325 0.0011944 19870 87366 -1 124 8 51 51 3486 970 0 0 3486 970 51 51 0 0 211 161 0 0 249 214 0 0 51 51 0 0 1356 261 0 0 1568 232 0 0 51 0 0 0 0 0 51 0 0 0.71851 0.71851 -8.07013 -0.71851 0 0 477104. 1650.88 0.23 0.01 0.09 -1 -1 0.23 0.000877012 0.000746176 10 4 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.59 vpr 60.06 MiB 0.02 5996 -1 -1 2 0.05 -1 -1 36184 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61500 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 21.6 MiB 0.01 70 60.1 MiB 0.00 0.00 0.819447 -7.99081 -0.819447 0.819447 1.05 2.8495e-05 2.0659e-05 0.000539373 0.000436714 20 131 8 6.55708e+06 24110 394039. 1363.46 0.60 0.00190128 0.00161256 19870 87366 -1 135 5 50 51 2973 962 0 0 2973 962 51 51 0 0 225 164 0 0 268 235 0 0 51 51 0 0 1062 241 0 0 1316 220 0 0 51 0 0 1 1 0 55 0 0 0.900447 0.900447 -9.91401 -0.900447 0 0 477104. 1650.88 0.24 0.01 0.09 -1 -1 0.24 0.000972943 0.000860417 13 6 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.34 vpr 60.14 MiB 0.02 6060 -1 -1 2 0.05 -1 -1 35764 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61580 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 21.6 MiB 0.01 59 60.1 MiB 0.01 0.00 0.819447 -9.62584 -0.819447 0.819447 1.06 3.8187e-05 2.9049e-05 0.00100203 0.000779879 20 211 12 6.55708e+06 24110 394039. 1363.46 1.30 0.0045749 0.00372544 19870 87366 -1 200 11 101 110 5903 1913 0 0 5903 1913 110 106 0 0 403 330 0 0 546 436 0 0 110 109 0 0 2755 446 0 0 1979 486 0 0 110 0 0 9 6 3 146 0 0 0.902448 0.902448 -12.7948 -0.902448 0 0 477104. 1650.88 0.24 0.01 0.09 -1 -1 0.24 0.00159591 0.00137855 16 7 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.62 vpr 60.31 MiB 0.01 5984 -1 -1 3 0.06 -1 -1 35152 -1 -1 3 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61760 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 21.7 MiB 0.01 98 60.3 MiB 0.01 0.00 1.50711 -13.086 -1.50711 1.50711 1.04 3.9312e-05 2.9597e-05 0.00157088 0.00122366 20 299 14 6.55708e+06 36165 394039. 1363.46 0.60 0.00396504 0.00327994 19870 87366 -1 282 14 102 122 9203 2682 0 0 9203 2682 122 112 0 0 541 434 0 0 908 734 0 0 122 119 0 0 3375 692 0 0 4135 591 0 0 122 0 0 20 11 13 206 0 0 1.58811 1.58811 -17.6536 -1.58811 0 0 477104. 1650.88 0.24 0.01 0.09 -1 -1 0.24 0.00223139 0.00194233 19 9 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.86 vpr 60.18 MiB 0.01 6008 -1 -1 3 0.05 -1 -1 35180 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61628 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 21.6 MiB 0.01 93 60.2 MiB 0.01 0.00 1.05785 -13.991 -1.05785 1.05785 1.02 4.682e-05 3.5615e-05 0.00205065 0.00160344 26 334 15 6.55708e+06 36165 477104. 1650.88 0.77 0.00969845 0.00788622 21022 109990 -1 326 12 182 210 12781 4208 0 0 12781 4208 210 189 0 0 822 675 0 0 1207 951 0 0 210 197 0 0 4512 1168 0 0 5820 1028 0 0 210 0 0 28 24 8 326 0 0 1.05785 1.05785 -19.4 -1.05785 0 0 585099. 2024.56 0.28 0.01 0.11 -1 -1 0.28 0.00223558 0.00195043 23 10 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.55 vpr 60.31 MiB 0.01 6016 -1 -1 3 0.06 -1 -1 34968 -1 -1 4 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61760 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 21.6 MiB 0.07 124 60.3 MiB 0.01 0.00 1.46791 -16.7834 -1.46791 1.46791 0.99 5.1929e-05 3.8951e-05 0.00228315 0.00177921 20 360 12 6.55708e+06 48220 394039. 1363.46 0.57 0.00524643 0.00432528 19870 87366 -1 318 15 171 180 7903 2648 0 0 7903 2648 180 176 0 0 656 524 0 0 1047 797 0 0 180 176 0 0 3364 447 0 0 2476 528 0 0 180 0 0 9 7 4 218 0 0 1.70831 1.70831 -23.6348 -1.70831 0 0 477104. 1650.88 0.23 0.01 0.08 -1 -1 0.23 0.00291937 0.00252815 25 14 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.78 vpr 60.41 MiB 0.02 6036 -1 -1 4 0.06 -1 -1 35024 -1 -1 4 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61864 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 22.0 MiB 0.02 155 60.4 MiB 0.01 0.00 1.50711 -21.2666 -1.50711 1.50711 1.04 6.0284e-05 4.612e-05 0.00236371 0.0018797 22 498 10 6.55708e+06 48220 420624. 1455.45 0.70 0.0112462 0.00928121 20158 92377 -1 425 9 149 180 12414 3453 0 0 12414 3453 180 159 0 0 690 534 0 0 902 754 0 0 180 162 0 0 4940 933 0 0 5522 911 0 0 180 0 0 31 30 20 335 0 0 1.58811 1.58811 -27.8456 -1.58811 0 0 500653. 1732.36 0.25 0.01 0.09 -1 -1 0.25 0.00250761 0.00224483 29 13 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.98 vpr 59.96 MiB 0.01 6060 -1 -1 4 0.04 -1 -1 35108 -1 -1 5 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61396 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 21.5 MiB 0.04 229 60.0 MiB 0.01 0.00 1.46791 -24.3808 -1.46791 1.46791 1.07 6.7475e-05 5.2202e-05 0.00275829 0.00221562 26 564 11 6.55708e+06 60275 477104. 1650.88 0.77 0.0133501 0.0111621 21022 109990 -1 570 15 233 314 31366 8407 0 0 31366 8407 314 282 0 0 1287 1099 0 0 2453 1949 0 0 314 289 0 0 13617 2423 0 0 13381 2365 0 0 314 0 0 81 89 56 718 0 0 1.56057 1.56057 -32.5962 -1.56057 0 0 585099. 2024.56 0.29 0.02 0.11 -1 -1 0.29 0.00366167 0.00321832 33 17 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.76 vpr 60.33 MiB 0.02 6000 -1 -1 5 0.06 -1 -1 35048 -1 -1 5 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61776 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 21.8 MiB 0.02 276 60.3 MiB 0.01 0.00 1.95636 -30.473 -1.95636 1.95636 1.08 7.1557e-05 5.4997e-05 0.00249906 0.00201867 20 690 14 6.55708e+06 60275 394039. 1363.46 0.62 0.00673173 0.00573243 19870 87366 -1 661 19 310 414 32992 8383 0 0 32992 8383 414 384 0 0 1609 1358 0 0 2580 2005 0 0 414 388 0 0 14055 2136 0 0 13920 2112 0 0 414 0 0 104 131 65 944 0 0 2.15756 2.15756 -39.2554 -2.15756 0 0 477104. 1650.88 0.25 0.02 0.09 -1 -1 0.25 0.00440718 0.00382294 35 16 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.05 vpr 60.54 MiB 0.02 6088 -1 -1 5 0.05 -1 -1 34936 -1 -1 6 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61988 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 21.9 MiB 0.02 239 60.5 MiB 0.01 0.00 1.7847 -30.3293 -1.7847 1.7847 1.08 8.8403e-05 6.9939e-05 0.00254373 0.00207664 26 677 21 6.55708e+06 72330 477104. 1650.88 0.81 0.016479 0.0138589 21022 109990 -1 613 12 276 392 23314 6422 0 0 23314 6422 392 319 0 0 1542 1259 0 0 2360 1854 0 0 392 336 0 0 8529 1398 0 0 10099 1256 0 0 392 0 0 116 102 129 1023 0 0 1.87737 1.87737 -38.2625 -1.87737 0 0 585099. 2024.56 0.29 0.02 0.11 -1 -1 0.29 0.00401623 0.00358474 40 20 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 4.26 vpr 60.52 MiB 0.01 6104 -1 -1 5 0.06 -1 -1 35076 -1 -1 7 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61968 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 21.9 MiB 0.02 268 60.5 MiB 0.02 0.00 1.73584 -32.1659 -1.73584 1.73584 1.08 9.4284e-05 7.4229e-05 0.00315305 0.00255969 28 787 22 6.55708e+06 84385 500653. 1732.36 1.00 0.0213298 0.0181281 21310 115450 -1 675 12 293 449 26088 7331 0 0 26088 7331 449 357 0 0 1637 1308 0 0 2597 1997 0 0 449 368 0 0 11322 1617 0 0 9634 1684 0 0 449 0 0 156 182 223 1450 0 0 1.85604 1.85604 -39.4981 -1.85604 0 0 612192. 2118.31 0.31 0.02 0.12 -1 -1 0.31 0.00454176 0.00406487 42 24 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.28 vpr 60.66 MiB 0.02 6084 -1 -1 6 0.07 -1 -1 35264 -1 -1 7 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62120 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 22.0 MiB 0.05 441 60.7 MiB 0.02 0.00 2.15556 -41.3676 -2.15556 2.15556 1.08 9.929e-05 7.3025e-05 0.00488556 0.00392967 28 899 15 6.55708e+06 84385 500653. 1732.36 0.96 0.0212678 0.017982 21310 115450 -1 814 11 246 337 23934 5615 0 0 23934 5615 337 257 0 0 1253 987 0 0 1784 1399 0 0 337 278 0 0 10499 1337 0 0 9724 1357 0 0 337 0 0 91 74 69 803 0 0 2.15556 2.15556 -47.9394 -2.15556 0 0 612192. 2118.31 0.31 0.02 0.12 -1 -1 0.31 0.00436306 0.00390286 45 23 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.30 vpr 60.67 MiB 0.02 6204 -1 -1 6 0.06 -1 -1 35844 -1 -1 9 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62128 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 22.2 MiB 0.17 417 60.7 MiB 0.03 0.00 1.95636 -41.4376 -1.95636 1.95636 1.08 0.000103929 8.2197e-05 0.00605163 0.00489676 28 986 15 6.55708e+06 108495 500653. 1732.36 0.88 0.0231399 0.0194946 21310 115450 -1 881 13 312 487 29650 7360 0 0 29650 7360 487 338 0 0 1804 1420 0 0 2652 2071 0 0 487 371 0 0 11735 1737 0 0 12485 1423 0 0 487 0 0 175 130 177 1503 0 0 2.07656 2.07656 -48.2106 -2.07656 0 0 612192. 2118.31 0.30 0.02 0.11 -1 -1 0.30 0.00506635 0.00452477 50 27 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 4.07 vpr 60.69 MiB 0.02 6160 -1 -1 7 0.07 -1 -1 35696 -1 -1 7 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62148 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 22.2 MiB 0.03 522 60.7 MiB 0.02 0.00 2.84322 -53.2797 -2.84322 2.84322 1.05 0.000112494 9.0918e-05 0.00389304 0.00322158 26 1177 17 6.55708e+06 84385 477104. 1650.88 0.87 0.0218674 0.0186187 21022 109990 -1 1075 16 357 506 49889 11136 0 0 49889 11136 506 420 0 0 1900 1522 0 0 3374 2506 0 0 506 439 0 0 22523 3019 0 0 21080 3230 0 0 506 0 0 149 111 155 1269 0 0 2.96342 2.96342 -64.2219 -2.96342 0 0 585099. 2024.56 0.29 0.03 0.11 -1 -1 0.29 0.0063516 0.00565703 51 26 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.50 vpr 60.79 MiB 0.02 6136 -1 -1 7 0.07 -1 -1 35336 -1 -1 8 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62252 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 22.1 MiB 0.26 680 60.8 MiB 0.03 0.00 2.40562 -59.1958 -2.40562 2.40562 1.08 0.000126015 0.000101121 0.00524186 0.00427479 30 1248 15 6.55708e+06 96440 526063. 1820.29 0.90 0.0256718 0.0217706 21886 126133 -1 1127 11 339 480 33964 7795 0 0 33964 7795 480 370 0 0 1742 1364 0 0 2449 1969 0 0 480 396 0 0 14528 1966 0 0 14285 1730 0 0 480 0 0 141 78 100 1103 0 0 2.40562 2.40562 -67.4936 -2.40562 0 0 666494. 2306.21 0.32 0.02 0.12 -1 -1 0.32 0.00617905 0.00558938 59 35 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.76 vpr 60.80 MiB 0.01 6220 -1 -1 8 0.07 -1 -1 35292 -1 -1 10 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62260 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 22.1 MiB 0.27 360 60.8 MiB 0.03 0.00 2.80342 -60.171 -2.80342 2.80342 1.08 0.000138621 0.000110457 0.00742025 0.00610095 32 1027 20 6.55708e+06 120550 554710. 1919.41 1.12 0.0352114 0.0303432 22174 131602 -1 880 20 475 608 34483 10953 0 0 34483 10953 608 512 0 0 2353 1912 0 0 4531 3562 0 0 608 525 0 0 14048 2152 0 0 12335 2290 0 0 608 0 0 133 83 135 1249 0 0 3.04382 3.04382 -73.1526 -3.04382 0 0 701300. 2426.64 0.33 0.03 0.14 -1 -1 0.33 0.00905452 0.00804194 67 37 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.15 vpr 60.50 MiB 0.02 6184 -1 -1 9 0.07 -1 -1 35248 -1 -1 11 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61952 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 22.0 MiB 0.06 647 60.5 MiB 0.05 0.00 2.8977 -71.7021 -2.8977 2.8977 1.06 0.000163836 0.000133092 0.0121244 0.00995065 26 1471 21 6.55708e+06 132605 477104. 1650.88 0.83 0.0375467 0.0318104 21022 109990 -1 1328 16 543 732 47961 12470 0 0 47961 12470 732 601 0 0 2742 2267 0 0 4351 3299 0 0 732 614 0 0 20431 2792 0 0 18973 2897 0 0 732 0 0 189 149 185 1693 0 0 3.1381 3.1381 -87.9474 -3.1381 0 0 585099. 2024.56 0.26 0.03 0.11 -1 -1 0.26 0.00872121 0.00780605 74 40 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.45 vpr 60.95 MiB 0.02 6212 -1 -1 10 0.09 -1 -1 35708 -1 -1 11 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62408 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 22.4 MiB 0.32 682 60.9 MiB 0.05 0.00 3.34756 -83.6018 -3.34756 3.34756 1.01 0.000157113 0.000126819 0.0107938 0.00879557 26 1647 17 6.55708e+06 132605 477104. 1650.88 1.00 0.043181 0.037156 21022 109990 -1 1389 14 504 665 42004 10916 0 0 42004 10916 665 533 0 0 2558 1997 0 0 3741 3004 0 0 665 567 0 0 18119 2343 0 0 16256 2472 0 0 665 0 0 161 90 166 1452 0 0 3.46776 3.46776 -97.545 -3.46776 0 0 585099. 2024.56 0.27 0.03 0.10 -1 -1 0.27 0.00841857 0.00755271 79 43 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.71 vpr 61.17 MiB 0.01 6224 -1 -1 11 0.09 -1 -1 35248 -1 -1 14 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62636 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 22.6 MiB 0.33 787 61.2 MiB 0.06 0.00 3.97954 -109.966 -3.97954 3.97954 1.09 0.000194564 0.000156377 0.0126538 0.0104591 30 1725 12 6.55708e+06 168770 526063. 1820.29 0.95 0.0440263 0.0378319 21886 126133 -1 1487 12 568 804 42170 11180 0 0 42170 11180 804 625 0 0 2852 2238 0 0 4016 3251 0 0 804 658 0 0 17354 2174 0 0 16340 2234 0 0 804 0 0 236 126 211 1935 0 0 3.97954 3.97954 -122.226 -3.97954 0 0 666494. 2306.21 0.32 0.03 0.12 -1 -1 0.32 0.00977665 0.00887727 93 57 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.12 vpr 61.49 MiB 0.02 6384 -1 -1 13 0.10 -1 -1 35292 -1 -1 15 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62968 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 22.8 MiB 0.62 967 61.5 MiB 0.07 0.00 4.18236 -129.996 -4.18236 4.18236 1.07 0.000221112 0.00017856 0.0162506 0.0133658 30 1960 18 6.55708e+06 180825 526063. 1820.29 1.07 0.0564097 0.0485314 21886 126133 -1 1719 23 630 822 45320 12019 0 0 45320 12019 822 683 0 0 2920 2336 0 0 4292 3379 0 0 822 712 0 0 19341 2302 0 0 17123 2607 0 0 822 0 0 192 108 194 1710 0 0 4.54296 4.54296 -151.392 -4.54296 0 0 666494. 2306.21 0.32 0.04 0.13 -1 -1 0.32 0.0158088 0.0140898 107 62 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 7.13 vpr 62.27 MiB 0.02 6512 -1 -1 19 0.13 -1 -1 35572 -1 -1 24 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63764 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 23.4 MiB 0.42 1251 62.3 MiB 0.13 0.00 6.78665 -252.606 -6.78665 6.78665 1.08 0.000377674 0.000315161 0.0312962 0.0264661 30 2732 14 6.55708e+06 289320 526063. 1820.29 3.11 0.160001 0.141041 21886 126133 -1 2338 12 935 1305 66944 18221 0 0 66944 18221 1305 1053 0 0 4597 3636 0 0 6542 5261 0 0 1305 1093 0 0 25835 3763 0 0 27360 3415 0 0 1305 0 0 370 309 247 3067 0 0 7.02705 7.02705 -281.575 -7.02705 0 0 666494. 2306.21 0.32 0.05 0.13 -1 -1 0.32 0.0177046 0.0162311 160 98 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 10.16 vpr 63.02 MiB 0.02 6732 -1 -1 26 0.14 -1 -1 35724 -1 -1 31 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64532 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1995 63.0 MiB 0.21 0.00 8.49264 -399.336 -8.49264 8.49264 1.08 0.000591023 0.00048886 0.0490539 0.041879 34 4518 40 6.55708e+06 373705 585099. 2024.56 6.04 0.367443 0.327967 22462 138074 -1 3682 13 1346 1920 159518 40400 0 0 159518 40400 1920 1560 0 0 7151 5583 0 0 11738 8725 0 0 1920 1623 0 0 69051 11447 0 0 67738 11462 0 0 1920 0 0 574 450 585 4793 0 0 8.97344 8.97344 -444.171 -8.97344 0 0 742403. 2568.87 0.35 0.09 0.13 -1 -1 0.35 0.0294322 0.0272759 213 132 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.20 abc 32.16 MiB 0.01 6264 -1 -1 1 0.01 -1 -1 32932 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22364 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.21 abc 31.98 MiB 0.01 6468 -1 -1 1 0.01 -1 -1 32744 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22520 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.21 abc 31.99 MiB 0.01 6304 -1 -1 1 0.01 -1 -1 32760 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22516 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.22 abc 31.99 MiB 0.01 6356 -1 -1 1 0.01 -1 -1 32756 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22440 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.20 abc 32.00 MiB 0.01 6460 -1 -1 1 0.01 -1 -1 32768 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22080 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.23 abc 32.12 MiB 0.02 6360 -1 -1 1 0.01 -1 -1 32888 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22576 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.21 abc 32.11 MiB 0.02 6348 -1 -1 1 0.01 -1 -1 32876 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22600 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.21 abc 32.23 MiB 0.02 6320 -1 -1 1 0.02 -1 -1 33000 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22360 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.23 abc 32.20 MiB 0.01 6380 -1 -1 1 0.01 -1 -1 32976 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22260 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.20 abc 32.22 MiB 0.01 6396 -1 -1 1 0.01 -1 -1 32996 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22604 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.22 abc 32.24 MiB 0.02 6440 -1 -1 1 0.01 -1 -1 33012 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22584 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.23 abc 32.06 MiB 0.02 6308 -1 -1 1 0.01 -1 -1 32828 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22240 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.22 abc 32.11 MiB 0.02 6332 -1 -1 1 0.02 -1 -1 32880 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22472 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.22 abc 32.15 MiB 0.02 6436 -1 -1 1 0.01 -1 -1 32920 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22716 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.24 abc 32.03 MiB 0.02 6412 -1 -1 1 0.01 -1 -1 32800 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22832 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.23 abc 32.22 MiB 0.02 6504 -1 -1 1 0.01 -1 -1 32996 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22692 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.23 abc 32.09 MiB 0.02 6524 -1 -1 1 0.01 -1 -1 32860 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22892 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.22 abc 32.29 MiB 0.02 6524 -1 -1 1 0.01 -1 -1 33068 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22940 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 7 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.24 abc 32.33 MiB 0.02 6460 -1 -1 1 0.01 -1 -1 33108 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 23008 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 8 8 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.24 abc 32.22 MiB 0.02 6640 -1 -1 1 0.00 -1 -1 32992 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22676 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.24 abc 32.46 MiB 0.01 6816 -1 -1 1 0.02 -1 -1 33240 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 23168 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 13 0 0 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.27 abc 32.54 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 33324 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 23476 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 17 17 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.20 abc 31.98 MiB 0.01 6404 -1 -1 1 0.00 -1 -1 32744 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22108 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.23 abc 32.10 MiB 0.02 6448 -1 -1 1 0.01 -1 -1 32868 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 21992 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.22 abc 32.13 MiB 0.02 6332 -1 -1 1 0.01 -1 -1 32900 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22312 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.20 abc 31.99 MiB 0.02 6268 -1 -1 1 0.02 -1 -1 32756 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 21932 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.21 abc 32.18 MiB 0.02 6396 -1 -1 1 0.01 -1 -1 32948 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22308 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.21 abc 31.98 MiB 0.01 6376 -1 -1 1 0.01 -1 -1 32748 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22244 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.21 abc 32.16 MiB 0.01 6272 -1 -1 1 0.01 -1 -1 32932 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22452 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.22 abc 32.06 MiB 0.02 6488 -1 -1 1 0.00 -1 -1 32832 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22112 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.21 abc 32.22 MiB 0.02 6384 -1 -1 1 0.01 -1 -1 32996 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22404 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.21 abc 32.16 MiB 0.01 6244 -1 -1 1 0.01 -1 -1 32932 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22284 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.20 abc 32.23 MiB 0.02 6408 -1 -1 1 0.00 -1 -1 33008 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22460 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.20 abc 32.18 MiB 0.02 6416 -1 -1 1 0.01 -1 -1 32948 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22132 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.21 abc 32.11 MiB 0.02 6448 -1 -1 1 0.01 -1 -1 32884 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22104 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.22 abc 32.17 MiB 0.02 6416 -1 -1 1 0.01 -1 -1 32944 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22120 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.22 abc 32.13 MiB 0.01 6504 -1 -1 1 0.01 -1 -1 32904 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22388 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.22 abc 32.23 MiB 0.02 6584 -1 -1 1 0.01 -1 -1 33000 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22384 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.23 abc 32.19 MiB 0.02 6524 -1 -1 1 0.01 -1 -1 32964 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22312 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.23 abc 32.24 MiB 0.02 6532 -1 -1 1 0.00 -1 -1 33012 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22644 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 7 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.22 abc 32.20 MiB 0.02 6496 -1 -1 1 0.01 -1 -1 32972 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22760 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 8 8 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.24 abc 32.29 MiB 0.02 6652 -1 -1 1 0.02 -1 -1 33064 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22512 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.25 abc 32.41 MiB 0.02 6836 -1 -1 1 0.02 -1 -1 33188 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 23060 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 13 0 0 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.27 abc 32.54 MiB 0.02 6960 -1 -1 1 0.02 -1 -1 33320 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 23332 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 17 17 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.68 vpr 60.11 MiB 0.01 6344 -1 -1 1 0.01 -1 -1 32884 -1 -1 2 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61548 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 21.6 MiB 0.01 83 60.1 MiB 0.00 0.00 0.649848 -6.89693 -0.649848 0.649848 1.08 2.5721e-05 1.8375e-05 0.000321285 0.000272525 20 128 9 6.64007e+06 25116 394039. 1363.46 0.61 0.0015921 0.00132824 20530 87850 -1 109 5 26 26 1662 486 0 0 1662 486 26 26 0 0 125 99 0 0 137 128 0 0 26 26 0 0 633 120 0 0 715 87 0 0 26 0 0 0 0 0 26 0 0 0.71851 0.71851 -7.85853 -0.71851 0 0 477104. 1650.88 0.24 0.01 0.09 -1 -1 0.24 0.000891599 0.000774263 10 -1 5 5 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.58 vpr 60.49 MiB 0.02 6376 -1 -1 1 0.01 -1 -1 33040 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61940 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.0 MiB 0.02 69 60.5 MiB 0.01 0.00 0.671848 -7.68382 -0.671848 0.671848 1.04 2.8661e-05 2.1806e-05 0.00102778 0.00080349 20 174 11 6.64007e+06 25116 394039. 1363.46 0.60 0.00260313 0.0021434 20530 87850 -1 155 10 58 58 3279 899 0 0 3279 899 58 58 0 0 218 151 0 0 308 250 0 0 58 58 0 0 1154 235 0 0 1483 147 0 0 58 0 0 0 0 0 58 0 0 0.901248 0.901248 -10.6638 -0.901248 0 0 477104. 1650.88 0.23 0.01 0.09 -1 -1 0.23 0.00132236 0.00113732 13 -1 6 6 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.88 vpr 60.35 MiB 0.01 6224 -1 -1 1 0.01 -1 -1 32748 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61796 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 21.8 MiB 0.01 74 60.3 MiB 0.01 0.00 0.682848 -9.82245 -0.682848 0.682848 1.08 3.5492e-05 2.6225e-05 0.00127217 0.000996117 26 228 12 6.64007e+06 25116 477104. 1650.88 0.76 0.00666143 0.00533813 21682 110474 -1 182 13 135 135 6820 2127 0 0 6820 2127 135 135 0 0 531 431 0 0 711 576 0 0 135 135 0 0 2573 386 0 0 2735 464 0 0 135 0 0 0 0 0 135 0 0 0.923248 0.923248 -13.188 -0.923248 0 0 585099. 2024.56 0.29 0.01 0.11 -1 -1 0.29 0.00197093 0.00168465 16 -1 7 7 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.71 vpr 60.62 MiB 0.01 6228 -1 -1 1 0.01 -1 -1 32976 -1 -1 3 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62076 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 22.0 MiB 0.02 140 60.6 MiB 0.01 0.00 0.71851 -13.2025 -0.71851 0.71851 1.09 4.3911e-05 3.1294e-05 0.00118566 0.000936142 20 332 20 6.64007e+06 37674 394039. 1363.46 0.62 0.00409192 0.00339296 20530 87850 -1 332 12 144 144 11231 3000 0 0 11231 3000 144 144 0 0 642 554 0 0 857 750 0 0 144 144 0 0 4588 762 0 0 4856 646 0 0 144 0 0 0 0 0 144 0 0 1.04345 1.04345 -18.2691 -1.04345 0 0 477104. 1650.88 0.24 0.01 0.09 -1 -1 0.24 0.00200862 0.00174038 19 -1 8 8 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.88 vpr 60.68 MiB 0.02 6428 -1 -1 1 0.02 -1 -1 32868 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62140 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.1 MiB 0.02 105 60.7 MiB 0.01 0.00 0.944958 -13.4397 -0.944958 0.944958 1.07 4.5606e-05 3.422e-05 0.00139051 0.00110258 26 293 13 6.64007e+06 37674 477104. 1650.88 0.76 0.00869242 0.0070761 21682 110474 -1 271 11 166 166 8042 2620 0 0 8042 2620 166 166 0 0 606 506 0 0 870 705 0 0 166 166 0 0 3440 563 0 0 2794 514 0 0 166 0 0 0 0 0 166 0 0 0.965248 0.965248 -19.2918 -0.965248 0 0 585099. 2024.56 0.30 0.01 0.11 -1 -1 0.30 0.00208567 0.00182484 22 -1 9 9 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.85 vpr 60.66 MiB 0.02 6332 -1 -1 1 0.01 -1 -1 32968 -1 -1 4 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62112 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.0 MiB 0.03 232 60.7 MiB 0.01 0.00 0.955958 -19.0968 -0.955958 0.955958 1.02 4.9039e-05 3.6889e-05 0.00195349 0.00151416 26 446 10 6.64007e+06 50232 477104. 1650.88 0.75 0.00970646 0.00781603 21682 110474 -1 435 15 193 193 14096 3717 0 0 14096 3717 193 193 0 0 809 704 0 0 1139 966 0 0 193 193 0 0 5772 853 0 0 5990 808 0 0 193 0 0 0 0 0 193 0 0 0.954248 0.954248 -23.8976 -0.954248 0 0 585099. 2024.56 0.30 0.01 0.11 -1 -1 0.30 0.00274251 0.00235134 25 -1 10 10 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.92 vpr 60.84 MiB 0.02 6260 -1 -1 1 0.01 -1 -1 32808 -1 -1 4 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62304 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.4 MiB 0.03 276 60.8 MiB 0.01 0.00 0.966958 -21.3994 -0.966958 0.966958 1.07 5.2833e-05 4.064e-05 0.00224503 0.00179211 26 489 14 6.64007e+06 50232 477104. 1650.88 0.78 0.0112819 0.00932034 21682 110474 -1 483 13 204 204 16854 4077 0 0 16854 4077 204 204 0 0 869 731 0 0 1102 931 0 0 204 204 0 0 7820 963 0 0 6655 1044 0 0 204 0 0 0 0 0 204 0 0 1.11845 1.11845 -28.4648 -1.11845 0 0 585099. 2024.56 0.29 0.02 0.11 -1 -1 0.29 0.00304879 0.00263247 28 -1 11 11 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.12 vpr 60.78 MiB 0.02 6368 -1 -1 1 0.01 -1 -1 32928 -1 -1 5 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62236 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.3 MiB 0.03 151 60.8 MiB 0.01 0.00 0.977958 -19.6261 -0.977958 0.977958 1.07 6.1382e-05 4.7212e-05 0.00245774 0.00197419 32 401 14 6.64007e+06 62790 554710. 1919.41 0.89 0.0118864 0.00979545 22834 132086 -1 342 12 195 195 10454 3257 0 0 10454 3257 195 195 0 0 751 626 0 0 1090 847 0 0 195 195 0 0 4248 787 0 0 3975 607 0 0 195 0 0 0 0 0 195 0 0 0.998248 0.998248 -26.5007 -0.998248 0 0 701300. 2426.64 0.35 0.01 0.13 -1 -1 0.35 0.00286352 0.00251702 31 -1 12 12 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.11 vpr 60.71 MiB 0.02 6352 -1 -1 1 0.01 -1 -1 32908 -1 -1 5 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62168 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.2 MiB 0.03 148 60.7 MiB 0.01 0.00 0.988958 -21.3496 -0.988958 0.988958 1.07 6.3544e-05 4.8652e-05 0.00261471 0.00207749 32 356 19 6.64007e+06 62790 554710. 1919.41 0.90 0.0135671 0.0111966 22834 132086 -1 315 13 248 248 10758 3895 0 0 10758 3895 248 248 0 0 916 736 0 0 1293 1015 0 0 248 248 0 0 4026 952 0 0 4027 696 0 0 248 0 0 0 0 0 248 0 0 1.12945 1.12945 -28.9657 -1.12945 0 0 701300. 2426.64 0.33 0.01 0.13 -1 -1 0.33 0.00322746 0.00279833 34 -1 13 13 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.18 vpr 60.93 MiB 0.02 6384 -1 -1 1 0.01 -1 -1 32880 -1 -1 5 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62396 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.4 MiB 0.03 183 60.9 MiB 0.02 0.00 0.999958 -24.166 -0.999958 0.999958 1.07 6.9817e-05 5.3829e-05 0.0046434 0.00365353 32 576 20 6.64007e+06 62790 554710. 1919.41 0.92 0.0170046 0.013883 22834 132086 -1 433 14 333 333 19879 5543 0 0 19879 5543 333 333 0 0 1197 952 0 0 1887 1326 0 0 333 333 0 0 7625 1334 0 0 8504 1265 0 0 333 0 0 0 0 0 333 0 0 1.02025 1.02025 -30.7205 -1.02025 0 0 701300. 2426.64 0.35 0.02 0.13 -1 -1 0.35 0.00378892 0.00332163 37 -1 14 14 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 4.14 vpr 60.84 MiB 0.02 6240 -1 -1 1 0.01 -1 -1 32964 -1 -1 6 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62300 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.3 MiB 0.03 367 60.8 MiB 0.02 0.00 1.01096 -30.4791 -1.01096 1.01096 1.08 8.1835e-05 6.4716e-05 0.00272447 0.0022315 32 699 12 6.64007e+06 75348 554710. 1919.41 0.91 0.0149301 0.0124515 22834 132086 -1 669 12 281 281 20373 4806 0 0 20373 4806 281 281 0 0 1045 863 0 0 1475 1161 0 0 281 281 0 0 9878 929 0 0 7413 1291 0 0 281 0 0 0 0 0 281 0 0 1.03125 1.03125 -38.1357 -1.03125 0 0 701300. 2426.64 0.33 0.02 0.14 -1 -1 0.33 0.00370291 0.00326169 40 -1 15 15 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.89 vpr 60.88 MiB 0.01 6408 -1 -1 1 0.01 -1 -1 32952 -1 -1 6 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62344 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 22.3 MiB 0.02 238 60.9 MiB 0.02 0.00 1.02196 -27.7882 -1.02196 1.02196 1.01 7.6346e-05 6.0306e-05 0.00303759 0.00247322 30 635 18 6.64007e+06 75348 526063. 1820.29 0.83 0.0161095 0.0133741 22546 126617 -1 549 17 358 358 18539 5691 0 0 18539 5691 358 358 0 0 1274 1063 0 0 1632 1368 0 0 358 358 0 0 8313 1292 0 0 6604 1252 0 0 358 0 0 0 0 0 358 0 0 0.987248 0.987248 -36.1362 -0.987248 0 0 666494. 2306.21 0.31 0.02 0.11 -1 -1 0.31 0.00451135 0.00393375 43 -1 16 16 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.21 vpr 60.95 MiB 0.02 6424 -1 -1 1 0.01 -1 -1 32916 -1 -1 7 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62408 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.3 MiB 0.03 210 60.9 MiB 0.02 0.00 1.26207 -29.3041 -1.26207 1.26207 1.07 0.000106506 8.4831e-05 0.00339337 0.00272463 32 656 15 6.64007e+06 87906 554710. 1919.41 0.91 0.0180904 0.0150136 22834 132086 -1 551 13 382 382 20988 6519 0 0 20988 6519 382 382 0 0 1429 1182 0 0 2159 1701 0 0 382 382 0 0 9594 1423 0 0 7042 1449 0 0 382 0 0 0 0 0 382 0 0 1.05245 1.05245 -38.0778 -1.05245 0 0 701300. 2426.64 0.35 0.02 0.14 -1 -1 0.35 0.00430536 0.00381323 46 -1 17 17 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 4.17 vpr 61.07 MiB 0.02 6428 -1 -1 1 0.01 -1 -1 32976 -1 -1 7 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62536 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.7 MiB 0.04 397 61.1 MiB 0.03 0.00 1.27307 -36.9611 -1.27307 1.27307 1.06 9.774e-05 7.8155e-05 0.00584236 0.0047471 26 869 16 6.64007e+06 87906 477104. 1650.88 0.99 0.0230582 0.0194894 21682 110474 -1 782 14 375 375 31488 7819 0 0 31488 7819 375 375 0 0 1529 1261 0 0 2164 1832 0 0 375 375 0 0 13720 1913 0 0 13325 2063 0 0 375 0 0 0 0 0 375 0 0 1.08425 1.08425 -45.5826 -1.08425 0 0 585099. 2024.56 0.29 0.02 0.11 -1 -1 0.29 0.00479238 0.00422038 49 -1 18 18 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.19 vpr 61.21 MiB 0.02 6436 -1 -1 1 0.01 -1 -1 32940 -1 -1 8 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62676 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.7 MiB 0.04 407 61.2 MiB 0.03 0.00 1.29507 -39.0862 -1.29507 1.29507 1.09 0.000103028 8.2261e-05 0.00461613 0.0037851 30 847 14 6.64007e+06 100464 526063. 1820.29 0.89 0.0209783 0.017667 22546 126617 -1 745 15 302 302 18594 4796 0 0 18594 4796 302 302 0 0 1087 832 0 0 1356 1146 0 0 302 302 0 0 8464 984 0 0 7083 1230 0 0 302 0 0 0 0 0 302 0 0 1.00925 1.00925 -46.8721 -1.00925 0 0 666494. 2306.21 0.34 0.02 0.13 -1 -1 0.34 0.00541082 0.00475699 55 -1 20 20 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.22 vpr 61.12 MiB 0.02 6436 -1 -1 1 0.02 -1 -1 32976 -1 -1 8 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62584 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.5 MiB 0.04 650 61.1 MiB 0.04 0.00 1.31707 -51.4723 -1.31707 1.31707 1.09 0.000115941 9.1934e-05 0.00712534 0.00574901 26 1230 15 6.64007e+06 100464 477104. 1650.88 0.93 0.0277255 0.0234371 21682 110474 -1 1095 11 453 453 36136 8580 0 0 36136 8580 453 453 0 0 1815 1453 0 0 2439 2053 0 0 453 453 0 0 16810 1936 0 0 14166 2232 0 0 453 0 0 0 0 0 453 0 0 1.16245 1.16245 -59.6252 -1.16245 0 0 585099. 2024.56 0.29 0.02 0.11 -1 -1 0.29 0.00529364 0.00474524 61 -1 22 22 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.14 vpr 61.35 MiB 0.02 6416 -1 -1 1 0.01 -1 -1 33060 -1 -1 9 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62824 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 22.9 MiB 0.04 687 61.4 MiB 0.05 0.00 1.33907 -57.1712 -1.33907 1.33907 1.10 0.000130291 0.000103772 0.00895197 0.0072545 26 1309 16 6.64007e+06 113022 477104. 1650.88 0.84 0.0301694 0.0254094 21682 110474 -1 1229 18 491 491 39789 9200 0 0 39789 9200 491 491 0 0 1881 1514 0 0 2714 2170 0 0 491 491 0 0 18409 2123 0 0 15803 2411 0 0 491 0 0 0 0 0 491 0 0 1.28145 1.28145 -68.9806 -1.28145 0 0 585099. 2024.56 0.29 0.03 0.11 -1 -1 0.29 0.00732584 0.00641995 67 -1 24 24 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.40 vpr 61.27 MiB 0.02 6412 -1 -1 1 0.01 -1 -1 32992 -1 -1 10 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62736 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 22.8 MiB 0.04 544 61.3 MiB 0.06 0.00 1.59018 -55.3189 -1.59018 1.59018 1.09 0.000138759 0.000110876 0.010936 0.00891099 30 1211 18 6.64007e+06 125580 526063. 1820.29 1.00 0.0348206 0.0294052 22546 126617 -1 982 13 481 481 32993 8594 0 0 32993 8594 481 481 0 0 1733 1385 0 0 2196 1849 0 0 481 481 0 0 13986 2322 0 0 14116 2076 0 0 481 0 0 0 0 0 481 0 0 1.32345 1.32345 -67.3161 -1.32345 0 0 666494. 2306.21 0.33 0.03 0.13 -1 -1 0.33 0.00638417 0.0056913 73 -1 26 26 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.34 vpr 61.43 MiB 0.02 6532 -1 -1 1 0.02 -1 -1 32984 -1 -1 11 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62908 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 22.8 MiB 0.05 741 61.4 MiB 0.05 0.00 1.63418 -70.137 -1.63418 1.63418 1.08 0.00016813 0.000135149 0.00842988 0.00699674 32 1604 14 6.64007e+06 138138 554710. 1919.41 0.94 0.0337717 0.0288731 22834 132086 -1 1431 15 620 620 54098 12658 0 0 54098 12658 620 620 0 0 2513 2046 0 0 3398 2791 0 0 620 620 0 0 22678 3485 0 0 24269 3096 0 0 620 0 0 0 0 0 620 0 0 1.23625 1.23625 -82.0894 -1.23625 0 0 701300. 2426.64 0.34 0.03 0.13 -1 -1 0.34 0.0081053 0.00721549 85 -1 30 30 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 4.39 vpr 61.61 MiB 0.02 6712 -1 -1 1 0.01 -1 -1 33084 -1 -1 13 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63092 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.1 MiB 0.05 888 61.6 MiB 0.08 0.00 1.90729 -85.7095 -1.90729 1.90729 1.06 0.000195008 0.00016021 0.0146033 0.0121887 32 1818 15 6.64007e+06 163254 554710. 1919.41 0.97 0.0448568 0.0384606 22834 132086 -1 1639 14 750 750 66420 15412 0 0 66420 15412 750 750 0 0 2866 2325 0 0 4147 3292 0 0 750 750 0 0 30766 3800 0 0 27141 4495 0 0 750 0 0 0 0 0 750 0 0 1.42045 1.42045 -100.22 -1.42045 0 0 701300. 2426.64 0.34 0.04 0.13 -1 -1 0.34 0.00955107 0.00855766 97 -1 34 34 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.65 vpr 62.42 MiB 0.02 6916 -1 -1 1 0.02 -1 -1 33224 -1 -1 19 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63916 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.5 MiB 0.07 1560 62.4 MiB 0.17 0.00 2.54151 -145.567 -2.54151 2.54151 1.05 0.000351667 0.000300058 0.0286484 0.0244406 30 2929 24 6.64007e+06 238602 526063. 1820.29 1.08 0.0877006 0.0769192 22546 126617 -1 2600 18 1022 1022 76540 17661 0 0 76540 17661 1022 1022 0 0 3654 2823 0 0 4687 3872 0 0 1022 1022 0 0 33936 4388 0 0 32219 4534 0 0 1022 0 0 0 0 0 1022 0 0 1.53945 1.53945 -148.158 -1.53945 0 0 666494. 2306.21 0.33 0.06 0.12 -1 -1 0.33 0.0170314 0.0153492 145 -1 50 50 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 5.08 vpr 63.16 MiB 0.02 7004 -1 -1 1 0.02 -1 -1 33296 -1 -1 25 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64672 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.4 MiB 0.09 2025 63.2 MiB 0.26 0.01 3.17573 -213.168 -3.17573 3.17573 1.09 0.000482941 0.000413882 0.0436041 0.0375953 30 3842 30 6.64007e+06 313950 526063. 1820.29 1.29 0.141054 0.125523 22546 126617 -1 3329 14 1207 1207 91483 21588 0 0 91483 21588 1207 1207 0 0 4440 3586 0 0 5601 4732 0 0 1207 1207 0 0 40231 5375 0 0 38797 5481 0 0 1207 0 0 0 0 0 1207 0 0 1.75545 1.75545 -204.123 -1.75545 0 0 666494. 2306.21 0.32 0.07 0.13 -1 -1 0.32 0.0210862 0.0193111 193 -1 66 66 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.60 vpr 59.93 MiB 0.01 6260 -1 -1 1 0.01 -1 -1 32900 -1 -1 2 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61368 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 21.5 MiB 0.01 83 59.9 MiB 0.00 0.00 0.649848 -6.89693 -0.649848 0.649848 1.08 2.3962e-05 1.687e-05 0.000298445 0.000248501 20 131 9 6.65987e+06 25356 394039. 1363.46 0.61 0.00149811 0.00125499 20530 87850 -1 111 6 26 26 1664 502 0 0 1664 502 26 26 0 0 131 108 0 0 140 134 0 0 26 26 0 0 624 122 0 0 717 86 0 0 26 0 0 0 0 0 26 0 0 0.71851 0.71851 -7.85853 -0.71851 0 0 477104. 1650.88 0.23 0.01 0.09 -1 -1 0.23 0.000883436 0.000772442 10 -1 5 5 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.61 vpr 60.44 MiB 0.01 6216 -1 -1 1 0.01 -1 -1 32968 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61892 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 21.9 MiB 0.01 69 60.4 MiB 0.01 0.00 0.671848 -7.68382 -0.671848 0.671848 1.09 2.8328e-05 1.987e-05 0.000935414 0.000718734 20 177 9 6.65987e+06 25356 394039. 1363.46 0.60 0.00242769 0.00200736 20530 87850 -1 152 9 54 54 2933 844 0 0 2933 844 54 54 0 0 208 157 0 0 267 219 0 0 54 54 0 0 1059 212 0 0 1291 148 0 0 54 0 0 0 0 0 54 0 0 0.890248 0.890248 -10.5326 -0.890248 0 0 477104. 1650.88 0.24 0.01 0.09 -1 -1 0.24 0.00125951 0.00109323 13 -1 6 6 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.71 vpr 60.34 MiB 0.02 6404 -1 -1 1 0.01 -1 -1 32912 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61788 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 21.8 MiB 0.01 67 60.3 MiB 0.01 0.00 0.682848 -9.58205 -0.682848 0.682848 1.08 3.2455e-05 2.3757e-05 0.000893907 0.000704598 22 232 10 6.65987e+06 25356 420624. 1455.45 0.68 0.00622857 0.00502385 20818 92861 -1 207 15 136 136 6779 2175 0 0 6779 2175 136 136 0 0 483 400 0 0 638 531 0 0 136 136 0 0 2373 518 0 0 3013 454 0 0 136 0 0 0 0 0 136 0 0 0.912248 0.912248 -13.2722 -0.912248 0 0 500653. 1732.36 0.25 0.01 0.09 -1 -1 0.25 0.0019647 0.00167402 16 -1 7 7 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.85 vpr 60.32 MiB 0.02 6168 -1 -1 1 0.01 -1 -1 32928 -1 -1 3 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61772 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 21.7 MiB 0.01 136 60.3 MiB 0.01 0.00 0.704848 -12.9621 -0.704848 0.704848 1.06 4.0612e-05 3.0341e-05 0.00117954 0.000934382 26 287 10 6.65987e+06 38034 477104. 1650.88 0.76 0.00730339 0.00595044 21682 110474 -1 272 12 122 122 6000 1622 0 0 6000 1622 122 122 0 0 422 314 0 0 586 447 0 0 122 122 0 0 2343 318 0 0 2405 299 0 0 122 0 0 0 0 0 122 0 0 0.830189 0.830189 -15.5149 -0.830189 0 0 585099. 2024.56 0.30 0.01 0.11 -1 -1 0.30 0.00202266 0.00176241 19 -1 8 8 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.67 vpr 60.53 MiB 0.02 6264 -1 -1 1 0.01 -1 -1 32752 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61984 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 21.9 MiB 0.01 99 60.5 MiB 0.01 0.00 0.944958 -13.1993 -0.944958 0.944958 1.01 3.9166e-05 2.9313e-05 0.00126414 0.00100497 26 291 15 6.65987e+06 38034 477104. 1650.88 0.72 0.00802899 0.00646578 21682 110474 -1 276 17 199 199 11570 3869 0 0 11570 3869 199 199 0 0 819 714 0 0 1298 1100 0 0 199 199 0 0 4929 906 0 0 4126 751 0 0 199 0 0 0 0 0 199 0 0 1.09645 1.09645 -20.082 -1.09645 0 0 585099. 2024.56 0.28 0.01 0.10 -1 -1 0.28 0.00255625 0.00216887 22 -1 9 9 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 4.00 vpr 60.55 MiB 0.02 6292 -1 -1 1 0.01 -1 -1 32836 -1 -1 4 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62000 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.2 MiB 0.01 207 60.5 MiB 0.01 0.00 0.955958 -18.015 -0.955958 0.955958 1.06 5.7868e-05 3.8773e-05 0.00169992 0.00135104 30 404 17 6.65987e+06 50712 526063. 1820.29 0.85 0.0102456 0.0084175 22546 126617 -1 380 11 144 144 10535 2492 0 0 10535 2492 144 144 0 0 537 446 0 0 646 558 0 0 144 144 0 0 4190 674 0 0 4874 526 0 0 144 0 0 0 0 0 144 0 0 0.812048 0.812048 -21.2312 -0.812048 0 0 666494. 2306.21 0.33 0.01 0.13 -1 -1 0.33 0.00224604 0.00195957 25 -1 10 10 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.67 vpr 60.55 MiB 0.02 6380 -1 -1 1 0.01 -1 -1 32772 -1 -1 4 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62008 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.1 MiB 0.01 279 60.6 MiB 0.01 0.00 0.966958 -21.5196 -0.966958 0.966958 1.06 5.7001e-05 4.447e-05 0.0022645 0.00181699 20 524 16 6.65987e+06 50712 394039. 1363.46 0.63 0.00574174 0.00480046 20530 87850 -1 504 12 222 222 18898 4557 0 0 18898 4557 222 222 0 0 932 791 0 0 1228 1040 0 0 222 222 0 0 8773 1130 0 0 7521 1152 0 0 222 0 0 0 0 0 222 0 0 1.06345 1.06345 -27.4406 -1.06345 0 0 477104. 1650.88 0.24 0.01 0.09 -1 -1 0.24 0.00272985 0.00238858 28 -1 11 11 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.97 vpr 60.53 MiB 0.01 6436 -1 -1 1 0.00 -1 -1 32972 -1 -1 5 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61980 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.1 MiB 0.02 136 60.5 MiB 0.01 0.00 0.977958 -19.6261 -0.977958 0.977958 1.09 5.8482e-05 4.4797e-05 0.00196739 0.00158768 26 377 9 6.65987e+06 63390 477104. 1650.88 0.78 0.0109644 0.00909448 21682 110474 -1 357 11 196 196 12942 4181 0 0 12942 4181 196 196 0 0 817 690 0 0 1076 947 0 0 196 196 0 0 5779 1125 0 0 4878 1027 0 0 196 0 0 0 0 0 196 0 0 0.976248 0.976248 -26.6911 -0.976248 0 0 585099. 2024.56 0.30 0.01 0.11 -1 -1 0.30 0.00280653 0.00247611 31 -1 12 12 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.11 vpr 60.55 MiB 0.02 6444 -1 -1 1 0.01 -1 -1 32828 -1 -1 5 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62004 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.1 MiB 0.02 169 60.6 MiB 0.01 0.00 0.988958 -21.3496 -0.988958 0.988958 1.06 6.8449e-05 5.3467e-05 0.00234725 0.00190553 32 432 21 6.65987e+06 63390 554710. 1919.41 0.90 0.0135783 0.0112834 22834 132086 -1 341 16 272 272 12730 4429 0 0 12730 4429 272 272 0 0 1084 892 0 0 1604 1276 0 0 272 272 0 0 4292 977 0 0 5206 740 0 0 272 0 0 0 0 0 272 0 0 1.02145 1.02145 -27.6796 -1.02145 0 0 701300. 2426.64 0.34 0.02 0.13 -1 -1 0.34 0.00374343 0.0032657 34 -1 13 13 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.06 vpr 60.72 MiB 0.02 6452 -1 -1 1 0.01 -1 -1 32912 -1 -1 5 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62180 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.2 MiB 0.02 196 60.7 MiB 0.02 0.00 0.999958 -24.166 -0.999958 0.999958 1.09 7.011e-05 5.4628e-05 0.00478722 0.00378207 26 625 21 6.65987e+06 63390 477104. 1650.88 0.82 0.0172576 0.0141734 21682 110474 -1 478 13 294 294 22110 6301 0 0 22110 6301 294 294 0 0 1196 1019 0 0 1699 1403 0 0 294 294 0 0 8383 1744 0 0 10244 1547 0 0 294 0 0 0 0 0 294 0 0 1.01919 1.01919 -31.0684 -1.01919 0 0 585099. 2024.56 0.30 0.02 0.11 -1 -1 0.30 0.00354331 0.00309762 37 -1 14 14 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 4.14 vpr 60.61 MiB 0.02 6364 -1 -1 1 0.01 -1 -1 32832 -1 -1 6 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62060 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.0 MiB 0.02 379 60.6 MiB 0.02 0.00 1.01096 -30.5993 -1.01096 1.01096 1.08 7.4978e-05 5.8147e-05 0.00284315 0.00229465 30 713 15 6.65987e+06 76068 526063. 1820.29 0.88 0.015521 0.0128541 22546 126617 -1 687 12 323 323 29167 6829 0 0 29167 6829 323 323 0 0 1291 1048 0 0 1630 1465 0 0 323 323 0 0 14063 1696 0 0 11537 1974 0 0 323 0 0 0 0 0 323 0 0 0.923248 0.923248 -36.4088 -0.923248 0 0 666494. 2306.21 0.35 0.02 0.13 -1 -1 0.35 0.00381627 0.00338011 40 -1 15 15 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.09 vpr 60.73 MiB 0.02 6392 -1 -1 1 0.00 -1 -1 32952 -1 -1 6 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62184 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 22.1 MiB 0.02 216 60.7 MiB 0.02 0.00 1.02196 -27.4276 -1.02196 1.02196 1.06 8.3477e-05 6.5966e-05 0.00318122 0.00258629 30 580 13 6.65987e+06 76068 526063. 1820.29 0.88 0.0158673 0.0132712 22546 126617 -1 477 12 247 247 12562 3878 0 0 12562 3878 247 247 0 0 891 699 0 0 1153 948 0 0 247 247 0 0 6068 752 0 0 3956 985 0 0 247 0 0 0 0 0 247 0 0 1.05325 1.05325 -36.3324 -1.05325 0 0 666494. 2306.21 0.32 0.02 0.13 -1 -1 0.32 0.003909 0.00346679 43 -1 16 16 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.18 vpr 60.84 MiB 0.02 6480 -1 -1 1 0.01 -1 -1 32920 -1 -1 7 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62300 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.4 MiB 0.02 215 60.8 MiB 0.02 0.00 1.26207 -29.3041 -1.26207 1.26207 1.09 9.3441e-05 6.8216e-05 0.00272062 0.00222086 32 695 17 6.65987e+06 88746 554710. 1919.41 0.91 0.0168874 0.014151 22834 132086 -1 568 13 304 304 18491 5929 0 0 18491 5929 304 304 0 0 1308 1087 0 0 1834 1580 0 0 304 304 0 0 8779 1260 0 0 5962 1394 0 0 304 0 0 0 0 0 304 0 0 1.06225 1.06225 -39.0491 -1.06225 0 0 701300. 2426.64 0.35 0.02 0.14 -1 -1 0.35 0.00441588 0.00391575 46 -1 17 17 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 4.11 vpr 60.87 MiB 0.02 6336 -1 -1 1 0.01 -1 -1 32992 -1 -1 7 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62332 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.4 MiB 0.02 450 60.9 MiB 0.03 0.00 1.27307 -38.7641 -1.27307 1.27307 1.09 9.7058e-05 7.6461e-05 0.00468405 0.00378064 26 952 15 6.65987e+06 88746 477104. 1650.88 0.90 0.0203957 0.0170691 21682 110474 -1 853 11 365 365 30970 7295 0 0 30970 7295 365 365 0 0 1485 1205 0 0 2028 1657 0 0 365 365 0 0 13141 1940 0 0 13586 1763 0 0 365 0 0 0 0 0 365 0 0 1.07325 1.07325 -47.3518 -1.07325 0 0 585099. 2024.56 0.29 0.02 0.11 -1 -1 0.29 0.00432963 0.00386798 49 -1 18 18 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.11 vpr 60.87 MiB 0.02 6452 -1 -1 1 0.01 -1 -1 32900 -1 -1 8 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62328 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.3 MiB 0.02 437 60.9 MiB 0.02 0.00 1.29507 -39.6872 -1.29507 1.29507 1.09 0.000109571 8.8205e-05 0.00424404 0.00348488 28 924 18 6.65987e+06 101424 500653. 1732.36 0.86 0.0216158 0.0182124 21970 115934 -1 909 15 396 396 30041 7728 0 0 30041 7728 396 396 0 0 1564 1327 0 0 2169 1812 0 0 396 396 0 0 12842 1922 0 0 12674 1875 0 0 396 0 0 0 0 0 396 0 0 1.10745 1.10745 -51.3037 -1.10745 0 0 612192. 2118.31 0.31 0.02 0.12 -1 -1 0.31 0.00576298 0.00510297 55 -1 20 20 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.20 vpr 60.91 MiB 0.02 6516 -1 -1 1 0.01 -1 -1 32968 -1 -1 8 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62368 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.2 MiB 0.03 650 60.9 MiB 0.04 0.00 1.31707 -50.8713 -1.31707 1.31707 1.09 0.000119488 9.5052e-05 0.00722796 0.00585981 30 1104 18 6.65987e+06 101424 526063. 1820.29 0.91 0.0265124 0.0222244 22546 126617 -1 1041 14 410 410 23834 5944 0 0 23834 5944 410 410 0 0 1457 1140 0 0 1777 1527 0 0 410 410 0 0 10644 1173 0 0 9136 1284 0 0 410 0 0 0 0 0 410 0 0 1.02025 1.02025 -56.5347 -1.02025 0 0 666494. 2306.21 0.34 0.02 0.13 -1 -1 0.34 0.00612467 0.00545548 61 -1 22 22 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.15 vpr 60.99 MiB 0.02 6596 -1 -1 1 0.01 -1 -1 33008 -1 -1 9 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62452 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 22.5 MiB 0.03 687 61.0 MiB 0.05 0.00 1.33907 -56.0894 -1.33907 1.33907 1.08 0.000132228 0.000105737 0.00921316 0.00751396 28 1340 17 6.65987e+06 114102 500653. 1732.36 0.90 0.030943 0.0260863 21970 115934 -1 1250 13 461 461 39740 9336 0 0 39740 9336 461 461 0 0 1815 1491 0 0 2633 2226 0 0 461 461 0 0 18183 2300 0 0 16187 2397 0 0 461 0 0 0 0 0 461 0 0 1.28265 1.28265 -67.417 -1.28265 0 0 612192. 2118.31 0.29 0.03 0.12 -1 -1 0.29 0.00652936 0.0058437 67 -1 24 24 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.42 vpr 61.16 MiB 0.02 6620 -1 -1 1 0.01 -1 -1 32952 -1 -1 10 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62628 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 22.6 MiB 0.03 547 61.2 MiB 0.06 0.00 1.59018 -55.7998 -1.59018 1.59018 1.08 0.000145958 0.000116684 0.0113991 0.00920627 30 1238 49 6.65987e+06 126780 526063. 1820.29 1.08 0.0461281 0.0390835 22546 126617 -1 1014 12 433 433 30519 8250 0 0 30519 8250 433 433 0 0 1686 1358 0 0 2082 1796 0 0 433 433 0 0 12590 2260 0 0 13295 1970 0 0 433 0 0 0 0 0 433 0 0 1.08305 1.08305 -62.5081 -1.08305 0 0 666494. 2306.21 0.33 0.03 0.13 -1 -1 0.33 0.00654026 0.00588777 73 -1 26 26 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.33 vpr 61.21 MiB 0.02 6468 -1 -1 1 0.02 -1 -1 33040 -1 -1 11 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62680 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 22.8 MiB 0.03 728 61.2 MiB 0.05 0.00 1.63418 -68.5744 -1.63418 1.63418 1.07 0.000172622 0.000140918 0.00890614 0.00741349 32 1544 15 6.65987e+06 139458 554710. 1919.41 0.97 0.0354643 0.0303353 22834 132086 -1 1428 16 643 643 57029 13857 0 0 57029 13857 643 643 0 0 2657 2273 0 0 3994 3334 0 0 643 643 0 0 23782 3626 0 0 25310 3338 0 0 643 0 0 0 0 0 643 0 0 1.23625 1.23625 -80.046 -1.23625 0 0 701300. 2426.64 0.34 0.03 0.14 -1 -1 0.34 0.00860883 0.00764826 85 -1 30 30 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 4.33 vpr 61.68 MiB 0.02 6700 -1 -1 1 0.01 -1 -1 33060 -1 -1 13 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63164 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.1 MiB 0.04 944 61.7 MiB 0.08 0.00 1.90729 -87.0316 -1.90729 1.90729 1.06 0.000192925 0.000157479 0.0144372 0.0119713 30 1713 17 6.65987e+06 164814 526063. 1820.29 0.96 0.0515031 0.0430923 22546 126617 -1 1608 11 604 604 46014 10813 0 0 46014 10813 604 604 0 0 2265 1748 0 0 2807 2446 0 0 604 604 0 0 20521 2627 0 0 19213 2784 0 0 604 0 0 0 0 0 604 0 0 1.20325 1.20325 -91.8577 -1.20325 0 0 666494. 2306.21 0.34 0.03 0.13 -1 -1 0.34 0.00799707 0.00721693 97 -1 34 34 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.62 vpr 62.30 MiB 0.02 6844 -1 -1 1 0.02 -1 -1 33340 -1 -1 19 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63792 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.6 MiB 0.05 1586 62.3 MiB 0.17 0.00 2.54151 -148.452 -2.54151 2.54151 1.07 0.000304851 0.000253181 0.0282569 0.0238614 32 3027 15 6.65987e+06 240882 554710. 1919.41 1.04 0.0791804 0.0689773 22834 132086 -1 2646 15 1065 1065 87734 20523 0 0 87734 20523 1065 1065 0 0 4178 3401 0 0 5971 4776 0 0 1065 1065 0 0 39180 5036 0 0 36275 5180 0 0 1065 0 0 0 0 0 1065 0 0 1.61445 1.61445 -153.716 -1.61445 0 0 701300. 2426.64 0.35 0.06 0.13 -1 -1 0.35 0.0158091 0.0143806 145 -1 50 50 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.75 vpr 62.78 MiB 0.02 7004 -1 -1 1 0.02 -1 -1 33392 -1 -1 25 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64284 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 23.9 MiB 0.07 2049 62.8 MiB 0.24 0.01 3.17573 -213.288 -3.17573 3.17573 1.00 0.000511143 0.000446757 0.0433898 0.0376354 32 4048 19 6.65987e+06 316950 554710. 1919.41 1.15 0.124871 0.111096 22834 132086 -1 3560 16 1334 1334 126386 28749 0 0 126386 28749 1334 1334 0 0 5284 4380 0 0 7833 6304 0 0 1334 1334 0 0 56002 7645 0 0 54599 7752 0 0 1334 0 0 0 0 0 1334 0 0 1.83045 1.83045 -211.894 -1.83045 0 0 701300. 2426.64 0.33 0.08 0.12 -1 -1 0.33 0.0235712 0.0215463 193 -1 66 66 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 3.68 vpr 61.31 MiB 0.01 6456 -1 -1 1 0.01 -1 -1 32972 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62780 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.8 MiB 0.02 23 61.3 MiB 0.01 0.00 0.712895 -6.35084 -0.712895 0.712895 1.09 2.3458e-05 1.6432e-05 0.000831633 0.000619896 10 52 7 6.95648e+06 14475.7 202963. 702.294 0.72 0.00500872 0.00392744 21154 51703 -1 45 6 28 28 716 401 0 0 716 401 28 28 0 0 117 100 0 0 169 145 0 0 28 28 0 0 168 63 0 0 206 37 0 0 28 0 0 0 0 0 28 0 0 0.74674 0.74674 -7.47854 -0.74674 0 0 243793. 843.575 0.14 0.01 0.06 -1 -1 0.14 0.000930819 0.000812095 5 -1 5 5 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 3.53 vpr 61.20 MiB 0.02 6320 -1 -1 1 0.01 -1 -1 32820 -1 -1 1 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62672 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.7 MiB 0.03 45 61.2 MiB 0.00 0.00 0.583992 -8.00067 -0.583992 0.583992 1.09 2.8705e-05 2.0903e-05 0.000649354 0.000516769 14 117 8 6.95648e+06 14475.7 292583. 1012.40 0.53 0.00520463 0.0041466 22018 70521 -1 113 7 41 41 1869 653 0 0 1869 653 41 41 0 0 157 130 0 0 195 167 0 0 41 41 0 0 626 147 0 0 809 127 0 0 41 0 0 0 0 0 41 0 0 0.74674 0.74674 -10.1308 -0.74674 0 0 376052. 1301.22 0.18 0.01 0.07 -1 -1 0.18 0.00116514 0.00102436 7 -1 6 6 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 3.77 vpr 61.16 MiB 0.01 6248 -1 -1 1 0.02 -1 -1 32980 -1 -1 1 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62632 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 22.5 MiB 0.04 51 61.2 MiB 0.00 0.00 0.701895 -10.1568 -0.701895 0.701895 1.08 3.1316e-05 2.2728e-05 0.000839715 0.000658175 20 159 10 6.95648e+06 14475.7 414966. 1435.87 0.65 0.00269541 0.00226686 23170 95770 -1 133 8 72 72 4926 1599 0 0 4926 1599 72 72 0 0 326 285 0 0 385 357 0 0 72 72 0 0 1835 403 0 0 2236 410 0 0 72 0 0 0 0 0 72 0 0 0.709292 0.709292 -12.5375 -0.709292 0 0 503264. 1741.40 0.24 0.01 0.10 -1 -1 0.24 0.00154787 0.00136162 8 -1 7 7 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 4.09 vpr 61.11 MiB 0.02 6348 -1 -1 1 0.01 -1 -1 32976 -1 -1 2 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62576 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 22.4 MiB 0.04 68 61.1 MiB 0.01 0.00 0.710132 -12.5317 -0.710132 0.710132 1.10 3.8159e-05 2.8034e-05 0.00108706 0.000874395 26 167 12 6.95648e+06 28951.4 503264. 1741.40 0.80 0.00751189 0.00614969 24322 120374 -1 159 10 61 61 3194 1096 0 0 3194 1096 61 61 0 0 254 222 0 0 316 271 0 0 61 61 0 0 1180 247 0 0 1322 234 0 0 61 0 0 0 0 0 61 0 0 0.710132 0.710132 -15.0377 -0.710132 0 0 618332. 2139.56 0.30 0.01 0.12 -1 -1 0.30 0.0019178 0.00168796 10 -1 8 8 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 3.89 vpr 61.48 MiB 0.02 6424 -1 -1 1 0.01 -1 -1 32916 -1 -1 2 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62956 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 23.1 MiB 0.04 85 61.5 MiB 0.01 0.00 0.721132 -14.2696 -0.721132 0.721132 1.09 4.4661e-05 3.4248e-05 0.00129219 0.00102693 22 272 14 6.95648e+06 28951.4 443629. 1535.05 0.70 0.00852071 0.00695077 23458 102101 -1 213 9 133 133 6692 2222 0 0 6692 2222 133 133 0 0 526 448 0 0 670 589 0 0 133 133 0 0 2501 452 0 0 2729 467 0 0 133 0 0 0 0 0 133 0 0 0.938732 0.938732 -18.5311 -0.938732 0 0 531479. 1839.03 0.26 0.01 0.10 -1 -1 0.26 0.00202589 0.00178074 11 -1 9 9 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 4.16 vpr 61.37 MiB 0.01 6436 -1 -1 1 0.02 -1 -1 32836 -1 -1 2 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 22.9 MiB 0.04 90 61.4 MiB 0.01 0.00 0.732132 -16.2722 -0.732132 0.732132 1.10 4.769e-05 3.5708e-05 0.00199775 0.00158025 28 236 33 6.95648e+06 28951.4 531479. 1839.03 0.87 0.0121315 0.00986893 24610 126494 -1 204 11 139 139 7140 2677 0 0 7140 2677 139 139 0 0 561 475 0 0 730 609 0 0 139 139 0 0 2379 801 0 0 3192 514 0 0 139 0 0 0 0 0 139 0 0 1.05303 1.05303 -21.6957 -1.05303 0 0 648988. 2245.63 0.31 0.01 0.13 -1 -1 0.31 0.00194108 0.0017094 13 -1 10 10 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 4.16 vpr 61.00 MiB 0.02 6368 -1 -1 1 0.01 -1 -1 32888 -1 -1 2 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62464 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 22.5 MiB 0.05 130 61.0 MiB 0.01 0.00 0.749332 -18.707 -0.749332 0.749332 1.11 5.4042e-05 4.0961e-05 0.00258221 0.00202543 26 414 48 6.95648e+06 28951.4 503264. 1741.40 0.90 0.0161808 0.0131778 24322 120374 -1 349 17 320 320 21981 6639 0 0 21981 6639 320 320 0 0 1221 1072 0 0 2016 1523 0 0 320 320 0 0 8379 1698 0 0 9725 1706 0 0 320 0 0 0 0 0 320 0 0 1.25053 1.25053 -25.8351 -1.25053 0 0 618332. 2139.56 0.29 0.02 0.12 -1 -1 0.29 0.0034037 0.00293744 14 -1 11 11 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 4.75 vpr 61.60 MiB 0.02 6396 -1 -1 1 0.01 -1 -1 32972 -1 -1 2 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63080 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 23.1 MiB 0.04 315 61.6 MiB 0.01 0.00 0.771332 -25.0923 -0.771332 0.771332 1.09 5.8328e-05 4.4784e-05 0.00148966 0.00122328 34 637 15 6.95648e+06 28951.4 618332. 2139.56 1.41 0.0178998 0.0146947 25762 151098 -1 581 14 282 282 28934 6057 0 0 28934 6057 282 282 0 0 1024 874 0 0 1431 1112 0 0 282 282 0 0 14438 1555 0 0 11477 1952 0 0 282 0 0 0 0 0 282 0 0 1.12523 1.12523 -32.6585 -1.12523 0 0 787024. 2723.27 0.36 0.02 0.15 -1 -1 0.36 0.00331975 0.00289835 16 -1 12 12 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 4.07 vpr 61.56 MiB 0.02 6460 -1 -1 1 0.01 -1 -1 32772 -1 -1 3 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63040 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 23.0 MiB 0.04 163 61.6 MiB 0.01 0.00 0.782332 -22.2585 -0.782332 0.782332 1.08 6.3048e-05 4.8239e-05 0.00252925 0.00201986 26 577 17 6.95648e+06 43427 503264. 1741.40 0.86 0.0136022 0.0112206 24322 120374 -1 489 34 402 402 79393 43135 0 0 79393 43135 402 402 0 0 1529 1354 0 0 4494 2911 0 0 402 402 0 0 36650 18225 0 0 35916 19841 0 0 402 0 0 0 0 0 402 0 0 1.16733 1.16733 -33.1024 -1.16733 0 0 618332. 2139.56 0.30 0.04 0.12 -1 -1 0.30 0.006315 0.00537069 17 -1 13 13 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 4.75 vpr 61.52 MiB 0.02 6404 -1 -1 1 0.01 -1 -1 32772 -1 -1 3 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62992 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 22.9 MiB 0.04 345 61.5 MiB 0.01 0.00 0.793332 -28.7079 -0.793332 0.793332 1.08 7.0955e-05 5.5349e-05 0.00215879 0.001779 34 709 14 6.95648e+06 43427 618332. 2139.56 1.39 0.0213309 0.0176041 25762 151098 -1 679 13 268 268 21918 5099 0 0 21918 5099 268 268 0 0 990 828 0 0 1539 1141 0 0 268 268 0 0 9706 1153 0 0 9147 1441 0 0 268 0 0 0 0 0 268 0 0 1.22233 1.22233 -38.3895 -1.22233 0 0 787024. 2723.27 0.37 0.02 0.15 -1 -1 0.37 0.00378851 0.00335547 19 -1 14 14 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 4.28 vpr 61.51 MiB 0.02 6484 -1 -1 1 0.02 -1 -1 32980 -1 -1 3 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62988 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 22.9 MiB 0.04 181 61.5 MiB 0.03 0.00 0.826332 -26.3337 -0.826332 0.826332 1.08 7.8328e-05 6.1707e-05 0.00586853 0.00463412 30 569 27 6.95648e+06 43427 556674. 1926.21 0.96 0.0200681 0.0165131 25186 138497 -1 389 20 407 407 16700 5943 0 0 16700 5943 407 407 0 0 1357 1192 0 0 2147 1559 0 0 407 407 0 0 5494 1292 0 0 6888 1086 0 0 407 0 0 0 0 0 407 0 0 1.13003 1.13003 -34.9248 -1.13003 0 0 706193. 2443.58 0.32 0.02 0.14 -1 -1 0.32 0.00508226 0.00442166 20 -1 15 15 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 5.25 vpr 61.75 MiB 0.02 6256 -1 -1 1 0.01 -1 -1 32912 -1 -1 3 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63232 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 23.4 MiB 0.05 207 61.8 MiB 0.02 0.00 0.837332 -28.6565 -0.837332 0.837332 1.07 8.2245e-05 6.375e-05 0.0054146 0.00431123 38 638 31 6.95648e+06 43427 678818. 2348.85 1.82 0.0326144 0.0270661 26626 170182 -1 451 50 609 609 54475 14709 0 0 54475 14709 609 609 0 0 2077 1882 0 0 4556 2753 0 0 609 609 0 0 22692 4223 0 0 23932 4633 0 0 609 0 0 0 0 0 609 0 0 1.30363 1.30363 -36.5435 -1.30363 0 0 902133. 3121.57 0.39 0.04 0.17 -1 -1 0.39 0.0104699 0.00887266 22 -1 16 16 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 4.32 vpr 61.54 MiB 0.02 6276 -1 -1 1 0.01 -1 -1 32916 -1 -1 3 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63012 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.1 MiB 0.06 290 61.5 MiB 0.02 0.00 1.08336 -33.3734 -1.08336 1.08336 1.08 8.8212e-05 6.898e-05 0.00333849 0.00273038 28 852 19 6.95648e+06 43427 531479. 1839.03 1.01 0.019259 0.0162422 24610 126494 -1 748 20 512 512 43854 12683 0 0 43854 12683 512 512 0 0 1863 1673 0 0 3010 2259 0 0 512 512 0 0 18686 3469 0 0 19271 4258 0 0 512 0 0 0 0 0 512 0 0 1.18923 1.18923 -47.4564 -1.18923 0 0 648988. 2245.63 0.31 0.03 0.13 -1 -1 0.31 0.00598679 0.00523675 24 -1 17 17 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 4.35 vpr 61.63 MiB 0.02 6340 -1 -1 1 0.01 -1 -1 33032 -1 -1 4 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63112 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.2 MiB 0.08 263 61.6 MiB 0.03 0.00 1.09436 -34.2524 -1.09436 1.09436 1.11 9.2095e-05 7.2185e-05 0.00501379 0.00404176 28 764 20 6.95648e+06 57902.7 531479. 1839.03 0.98 0.0225575 0.0188782 24610 126494 -1 658 14 417 417 25356 8152 0 0 25356 8152 417 417 0 0 1537 1341 0 0 2317 1720 0 0 417 417 0 0 9749 2011 0 0 10919 2246 0 0 417 0 0 0 0 0 417 0 0 1.41163 1.41163 -51.8161 -1.41163 0 0 648988. 2245.63 0.30 0.02 0.13 -1 -1 0.30 0.00509041 0.00453992 25 -1 18 18 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 5.53 vpr 61.60 MiB 0.01 6476 -1 -1 1 0.00 -1 -1 32996 -1 -1 4 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63076 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.0 MiB 0.10 285 61.6 MiB 0.02 0.00 1.11636 -38.6393 -1.11636 1.11636 1.04 0.000103613 8.1712e-05 0.00425585 0.00349224 30 845 28 6.95648e+06 57902.7 556674. 1926.21 2.27 0.0431658 0.0360686 25186 138497 -1 696 22 534 534 35683 10404 0 0 35683 10404 534 534 0 0 1802 1573 0 0 2767 1975 0 0 534 534 0 0 13851 2696 0 0 16195 3092 0 0 534 0 0 0 0 0 534 0 0 1.16103 1.16103 -52.8995 -1.16103 0 0 706193. 2443.58 0.31 0.03 0.12 -1 -1 0.31 0.00723392 0.00630467 28 -1 20 20 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 5.06 vpr 61.88 MiB 0.02 6476 -1 -1 1 0.02 -1 -1 32884 -1 -1 4 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63360 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 23.3 MiB 0.11 437 61.9 MiB 0.03 0.00 1.13836 -46.4534 -1.13836 1.13836 1.10 0.000123139 9.8382e-05 0.00742719 0.00606464 34 1084 20 6.95648e+06 57902.7 618332. 2139.56 1.54 0.0411072 0.0346248 25762 151098 -1 868 18 481 481 47286 10863 0 0 47286 10863 481 481 0 0 1711 1485 0 0 2792 1933 0 0 481 481 0 0 20334 3448 0 0 21487 3035 0 0 481 0 0 0 0 0 481 0 0 1.45563 1.45563 -62.611 -1.45563 0 0 787024. 2723.27 0.34 0.03 0.15 -1 -1 0.34 0.00756428 0.00663106 31 -1 22 22 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 5.08 vpr 61.82 MiB 0.02 6512 -1 -1 1 0.01 -1 -1 32992 -1 -1 5 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63308 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 23.4 MiB 0.12 554 61.8 MiB 0.04 0.00 1.16036 -54.4367 -1.16036 1.16036 1.09 0.000130332 0.000104205 0.00991279 0.00812116 34 1289 31 6.95648e+06 72378.4 618332. 2139.56 1.55 0.0495923 0.041735 25762 151098 -1 1113 18 551 551 47710 11257 0 0 47710 11257 551 551 0 0 2029 1761 0 0 3301 2390 0 0 551 551 0 0 20097 3052 0 0 21181 2952 0 0 551 0 0 0 0 0 551 0 0 1.39633 1.39633 -73.4363 -1.39633 0 0 787024. 2723.27 0.35 0.03 0.15 -1 -1 0.35 0.00807059 0.0071946 34 -1 24 24 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 4.75 vpr 62.01 MiB 0.02 6584 -1 -1 1 0.01 -1 -1 32892 -1 -1 5 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63496 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 23.5 MiB 0.12 510 62.0 MiB 0.04 0.00 1.18236 -56.0737 -1.18236 1.18236 1.09 0.00014338 0.000115893 0.00962872 0.00788357 30 1453 34 6.95648e+06 72378.4 556674. 1926.21 1.15 0.0413736 0.035208 25186 138497 -1 1037 16 558 558 44037 11047 0 0 44037 11047 558 558 0 0 1999 1738 0 0 2905 2132 0 0 558 558 0 0 19275 2944 0 0 18742 3117 0 0 558 0 0 0 0 0 558 0 0 1.52163 1.52163 -78.5105 -1.52163 0 0 706193. 2443.58 0.32 0.03 0.14 -1 -1 0.32 0.00831392 0.00744723 37 -1 26 26 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 5.44 vpr 62.07 MiB 0.02 6480 -1 -1 1 0.02 -1 -1 32912 -1 -1 6 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63564 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 23.5 MiB 0.09 933 62.1 MiB 0.05 0.00 1.22636 -75.3929 -1.22636 1.22636 1.10 0.000173158 0.000141688 0.01133 0.00939537 34 1846 19 6.95648e+06 86854.1 618332. 2139.56 1.88 0.0649495 0.0562401 25762 151098 -1 1663 15 672 672 66399 13613 0 0 66399 13613 672 672 0 0 2323 1968 0 0 3677 2594 0 0 672 672 0 0 31030 3669 0 0 28025 4038 0 0 672 0 0 0 0 0 672 0 0 1.33703 1.33703 -94.0511 -1.33703 0 0 787024. 2723.27 0.35 0.04 0.15 -1 -1 0.35 0.00918276 0.00817674 43 -1 30 30 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 5.92 vpr 61.89 MiB 0.02 6628 -1 -1 1 0.01 -1 -1 33040 -1 -1 7 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63376 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.3 MiB 0.10 802 61.9 MiB 0.08 0.00 1.50539 -79.5702 -1.50539 1.50539 1.11 0.000200719 0.000163162 0.0168184 0.0138438 38 1767 22 6.95648e+06 101330 678818. 2348.85 2.23 0.0828773 0.0718885 26626 170182 -1 1584 18 788 788 67044 15575 0 0 67044 15575 788 788 0 0 2728 2412 0 0 4155 3029 0 0 788 788 0 0 29979 4223 0 0 28606 4335 0 0 788 0 0 0 0 0 788 0 0 1.40103 1.40103 -101.413 -1.40103 0 0 902133. 3121.57 0.39 0.04 0.18 -1 -1 0.39 0.0117537 0.0105658 49 -1 34 34 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 7.01 vpr 62.70 MiB 0.02 6932 -1 -1 1 0.02 -1 -1 33332 -1 -1 10 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64208 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1632 62.7 MiB 0.13 0.00 1.91642 -143.493 -1.91642 1.91642 1.12 0.000315654 0.000264225 0.0271304 0.0230407 46 2992 37 6.95648e+06 144757 828058. 2865.25 3.08 0.144028 0.127411 28066 200906 -1 2651 15 1156 1156 123876 24796 0 0 123876 24796 1156 1156 0 0 4098 3617 0 0 6347 4602 0 0 1156 1156 0 0 55524 7364 0 0 55595 6901 0 0 1156 0 0 0 0 0 1156 0 0 1.62523 1.62523 -165.006 -1.62523 0 0 1.01997e+06 3529.29 0.44 0.06 0.20 -1 -1 0.44 0.0169053 0.0154247 73 -1 50 50 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 7.42 vpr 63.64 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33364 -1 -1 13 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65164 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 24.8 MiB 0.15 1870 63.6 MiB 0.23 0.01 2.32745 -195.825 -2.32745 2.32745 1.10 0.000456883 0.00039027 0.0449712 0.0389014 56 3442 15 6.95648e+06 188184 973134. 3367.25 3.17 0.186514 0.166734 29794 239141 -1 3296 17 1483 1483 207826 43608 0 0 207826 43608 1483 1483 0 0 5776 5040 0 0 10832 7214 0 0 1483 1483 0 0 96962 14008 0 0 91290 14380 0 0 1483 0 0 0 0 0 1483 0 0 2.04363 2.04363 -230.952 -2.04363 0 0 1.19926e+06 4149.71 0.51 0.10 0.25 -1 -1 0.51 0.0256186 0.0235282 97 -1 66 66 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 3.35 vpr 61.12 MiB 0.01 6244 -1 -1 1 0.00 -1 -1 32860 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62588 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.7 MiB 0.01 23 61.1 MiB 0.01 0.00 0.589542 -5.98078 -0.589542 0.589542 1.09 2.3283e-05 1.6615e-05 0.000820819 0.00061796 10 52 7 6.99608e+06 14715.7 202963. 702.294 0.41 0.00450293 0.00352858 21154 51703 -1 36 6 25 25 535 305 0 0 535 305 25 25 0 0 93 77 0 0 146 115 0 0 25 25 0 0 106 44 0 0 140 19 0 0 25 0 0 0 0 0 25 0 0 0.74674 0.74674 -6.85788 -0.74674 0 0 243793. 843.575 0.14 0.01 0.06 -1 -1 0.14 0.000869913 0.000753734 5 -1 5 5 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 3.38 vpr 61.00 MiB 0.01 6336 -1 -1 1 0.01 -1 -1 32996 -1 -1 1 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62468 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.5 MiB 0.01 43 61.0 MiB 0.00 0.00 0.583992 -8.00517 -0.583992 0.583992 1.11 2.6486e-05 1.8583e-05 0.000609026 0.00047967 10 123 11 6.99608e+06 14715.7 202963. 702.294 0.41 0.00523348 0.00416107 21154 51703 -1 135 7 45 45 3715 1184 0 0 3715 1184 45 45 0 0 227 149 0 0 284 241 0 0 45 45 0 0 1378 356 0 0 1736 348 0 0 45 0 0 0 0 0 45 0 0 0.87204 0.87204 -11.1377 -0.87204 0 0 243793. 843.575 0.14 0.01 0.06 -1 -1 0.14 0.00117788 0.00103155 7 -1 6 6 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 4.99 vpr 61.18 MiB 0.02 6196 -1 -1 1 0.01 -1 -1 32940 -1 -1 1 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62644 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 22.6 MiB 0.01 49 61.2 MiB 0.01 0.00 0.688132 -10.2999 -0.688132 0.688132 1.11 3.3399e-05 2.319e-05 0.000939738 0.000700506 26 138 7 6.99608e+06 14715.7 503264. 1741.40 1.80 0.0109528 0.00867116 24322 120374 -1 135 7 60 60 4002 1309 0 0 4002 1309 60 60 0 0 243 217 0 0 342 270 0 0 60 60 0 0 1531 350 0 0 1766 352 0 0 60 0 0 0 0 0 60 0 0 0.74674 0.74674 -12.6806 -0.74674 0 0 618332. 2139.56 0.28 0.01 0.12 -1 -1 0.28 0.0013329 0.00117946 8 -1 7 7 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 3.84 vpr 61.20 MiB 0.02 6284 -1 -1 1 0.01 -1 -1 32908 -1 -1 2 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62672 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 22.6 MiB 0.01 66 61.2 MiB 0.01 0.00 0.710132 -12.7791 -0.710132 0.710132 1.09 4.4244e-05 2.8302e-05 0.00107223 0.000853397 22 206 8 6.99608e+06 29431.4 443629. 1535.05 0.70 0.00703624 0.005763 23458 102101 -1 171 6 58 58 2909 956 0 0 2909 956 58 58 0 0 213 186 0 0 264 219 0 0 58 58 0 0 1008 248 0 0 1308 187 0 0 58 0 0 0 0 0 58 0 0 0.87204 0.87204 -15.3304 -0.87204 0 0 531479. 1839.03 0.27 0.01 0.10 -1 -1 0.27 0.001503 0.00133761 10 -1 8 8 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 5.63 vpr 61.24 MiB 0.02 6292 -1 -1 1 0.00 -1 -1 32824 -1 -1 2 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62712 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 22.6 MiB 0.01 84 61.2 MiB 0.01 0.00 0.721132 -14.3949 -0.721132 0.721132 1.09 4.3961e-05 3.3116e-05 0.001298 0.00104461 26 256 12 6.99608e+06 29431.4 503264. 1741.40 2.43 0.0161699 0.0131208 24322 120374 -1 213 10 108 108 6761 2200 0 0 6761 2200 108 108 0 0 460 409 0 0 587 479 0 0 108 108 0 0 2464 535 0 0 3034 561 0 0 108 0 0 0 0 0 108 0 0 0.927732 0.927732 -18.3827 -0.927732 0 0 618332. 2139.56 0.29 0.01 0.12 -1 -1 0.29 0.00193296 0.00170369 11 -1 9 9 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 3.64 vpr 61.10 MiB 0.01 6364 -1 -1 1 0.01 -1 -1 32948 -1 -1 2 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62564 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 22.6 MiB 0.01 106 61.1 MiB 0.01 0.00 0.710132 -16.4843 -0.710132 0.710132 1.05 5.5625e-05 4.3007e-05 0.00207343 0.00160179 20 374 15 6.99608e+06 29431.4 414966. 1435.87 0.61 0.00507475 0.00416667 23170 95770 -1 339 12 207 207 17088 5311 0 0 17088 5311 207 207 0 0 868 767 0 0 1207 1010 0 0 207 207 0 0 6502 1609 0 0 8097 1511 0 0 207 0 0 0 0 0 207 0 0 1.23048 1.23048 -24.5851 -1.23048 0 0 503264. 1741.40 0.23 0.01 0.09 -1 -1 0.23 0.00241729 0.00209735 13 -1 10 10 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 4.04 vpr 61.23 MiB 0.02 6244 -1 -1 1 0.02 -1 -1 32768 -1 -1 2 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62696 19 10 69 70 1 43 31 17 17 289 -1 unnamed_device 22.8 MiB 0.02 200 61.2 MiB 0.01 0.00 0.732132 -20.2494 -0.732132 0.732132 1.10 5.8675e-05 4.5014e-05 0.00238851 0.00187454 26 499 14 6.99608e+06 29431.4 503264. 1741.40 0.81 0.0113928 0.00933834 24322 120374 -1 468 13 177 177 15138 3885 0 0 15138 3885 177 177 0 0 732 627 0 0 1076 914 0 0 177 177 0 0 6488 975 0 0 6488 1015 0 0 177 0 0 0 0 0 177 0 0 1.05303 1.05303 -26.8226 -1.05303 0 0 618332. 2139.56 0.29 0.01 0.12 -1 -1 0.29 0.00287862 0.00253766 14 -1 11 11 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 4.78 vpr 61.26 MiB 0.02 6364 -1 -1 1 0.01 -1 -1 32832 -1 -1 2 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 22.8 MiB 0.02 312 61.3 MiB 0.01 0.00 0.743132 -24.6438 -0.743132 0.743132 1.11 6.2396e-05 4.9378e-05 0.00158519 0.00130617 34 652 16 6.99608e+06 29431.4 618332. 2139.56 1.44 0.0181532 0.0148692 25762 151098 -1 589 11 244 244 27093 5693 0 0 27093 5693 244 244 0 0 913 771 0 0 1234 1002 0 0 244 244 0 0 13321 1582 0 0 11137 1850 0 0 244 0 0 0 0 0 244 0 0 1.10803 1.10803 -32.7083 -1.10803 0 0 787024. 2723.27 0.36 0.02 0.15 -1 -1 0.36 0.00297878 0.0026204 16 -1 12 12 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 4.21 vpr 61.39 MiB 0.02 6352 -1 -1 1 0.00 -1 -1 32756 -1 -1 3 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62868 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 22.9 MiB 0.02 293 61.4 MiB 0.01 0.00 0.754132 -26.6685 -0.754132 0.754132 1.09 6.7078e-05 5.238e-05 0.00251882 0.0020121 30 642 14 6.99608e+06 44147 556674. 1926.21 0.93 0.0132483 0.0109854 25186 138497 -1 590 13 264 264 26967 5928 0 0 26967 5928 264 264 0 0 972 837 0 0 1308 1054 0 0 264 264 0 0 12294 1600 0 0 11865 1909 0 0 264 0 0 0 0 0 264 0 0 1.05303 1.05303 -33.2486 -1.05303 0 0 706193. 2443.58 0.33 0.02 0.14 -1 -1 0.33 0.00343853 0.00301772 17 -1 13 13 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 4.80 vpr 60.95 MiB 0.02 6416 -1 -1 1 0.02 -1 -1 32912 -1 -1 3 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62408 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 22.4 MiB 0.02 347 60.9 MiB 0.01 0.00 0.776132 -28.6532 -0.776132 0.776132 1.10 6.7378e-05 5.2996e-05 0.00205671 0.00168091 34 735 18 6.99608e+06 44147 618332. 2139.56 1.46 0.0219694 0.0180589 25762 151098 -1 663 17 299 299 34174 7562 0 0 34174 7562 299 299 0 0 1150 989 0 0 2192 1519 0 0 299 299 0 0 15238 2069 0 0 14996 2387 0 0 299 0 0 0 0 0 299 0 0 1.29648 1.29648 -39.1262 -1.29648 0 0 787024. 2723.27 0.35 0.02 0.15 -1 -1 0.35 0.00435203 0.00379268 19 -1 14 14 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 6.15 vpr 61.44 MiB 0.02 6348 -1 -1 1 0.01 -1 -1 32976 -1 -1 3 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62916 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 22.9 MiB 0.02 185 61.4 MiB 0.02 0.00 0.787132 -25.8241 -0.787132 0.787132 1.09 7.539e-05 5.9048e-05 0.00536434 0.00428948 32 599 31 6.99608e+06 44147 586450. 2029.24 2.80 0.0414596 0.0341332 25474 144626 -1 459 18 385 385 21676 7150 0 0 21676 7150 385 385 0 0 1411 1231 0 0 2383 1664 0 0 385 385 0 0 7633 1849 0 0 9479 1636 0 0 385 0 0 0 0 0 385 0 0 1.14103 1.14103 -35.987 -1.14103 0 0 744469. 2576.02 0.34 0.02 0.15 -1 -1 0.34 0.00488783 0.0042674 20 -1 15 15 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 5.13 vpr 61.17 MiB 0.02 6492 -1 -1 1 0.01 -1 -1 32980 -1 -1 3 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62636 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 22.5 MiB 0.02 209 61.2 MiB 0.02 0.00 0.809132 -28.5043 -0.809132 0.809132 1.10 8.354e-05 6.4803e-05 0.00531928 0.00425254 36 704 28 6.99608e+06 44147 648988. 2245.63 1.73 0.0330057 0.0273598 26050 158493 -1 553 25 542 542 45985 14818 0 0 45985 14818 542 542 0 0 1725 1487 0 0 3039 2036 0 0 542 542 0 0 18939 5310 0 0 21198 4901 0 0 542 0 0 0 0 0 542 0 0 1.16498 1.16498 -39.0274 -1.16498 0 0 828058. 2865.25 0.37 0.03 0.16 -1 -1 0.37 0.00621822 0.00535101 22 -1 16 16 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 4.30 vpr 61.38 MiB 0.02 6328 -1 -1 1 0.01 -1 -1 32880 -1 -1 3 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62852 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 22.7 MiB 0.02 248 61.4 MiB 0.02 0.00 1.05516 -31.1882 -1.05516 1.05516 1.10 9.7962e-05 7.1443e-05 0.00446587 0.00363087 30 884 25 6.99608e+06 44147 556674. 1926.21 0.96 0.0207583 0.0173417 25186 138497 -1 637 18 470 470 32796 9448 0 0 32796 9448 470 470 0 0 1558 1346 0 0 2332 1668 0 0 470 470 0 0 12919 2528 0 0 15047 2966 0 0 470 0 0 0 0 0 470 0 0 1.08403 1.08403 -43.0218 -1.08403 0 0 706193. 2443.58 0.33 0.02 0.14 -1 -1 0.33 0.00551782 0.00485022 24 -1 17 17 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 4.44 vpr 61.64 MiB 0.02 6280 -1 -1 1 0.01 -1 -1 32960 -1 -1 4 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63116 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.2 MiB 0.03 227 61.6 MiB 0.03 0.00 1.06616 -33.7932 -1.06616 1.06616 1.10 9.1571e-05 7.1445e-05 0.00505888 0.00407916 30 918 38 6.99608e+06 58862.7 556674. 1926.21 1.09 0.0269635 0.0225592 25186 138497 -1 603 17 423 423 26403 8653 0 0 26403 8653 423 423 0 0 1474 1283 0 0 2421 1751 0 0 423 423 0 0 10172 2365 0 0 11490 2408 0 0 423 0 0 0 0 0 423 0 0 1.20218 1.20218 -48.2764 -1.20218 0 0 706193. 2443.58 0.34 0.02 0.14 -1 -1 0.34 0.00563434 0.00495994 25 -1 18 18 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 4.37 vpr 61.52 MiB 0.02 6504 -1 -1 1 0.01 -1 -1 33008 -1 -1 4 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62996 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.0 MiB 0.03 349 61.5 MiB 0.03 0.00 1.08816 -41.7574 -1.08816 1.08816 1.10 0.000117319 9.4403e-05 0.00598488 0.00488115 30 1015 22 6.99608e+06 58862.7 556674. 1926.21 0.99 0.0248075 0.0208008 25186 138497 -1 811 17 476 476 40538 10625 0 0 40538 10625 476 476 0 0 1625 1418 0 0 2467 1808 0 0 476 476 0 0 17108 2966 0 0 18386 3481 0 0 476 0 0 0 0 0 476 0 0 1.40063 1.40063 -56.7334 -1.40063 0 0 706193. 2443.58 0.34 0.03 0.14 -1 -1 0.34 0.00632488 0.00559365 28 -1 20 20 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 5.29 vpr 61.64 MiB 0.02 6556 -1 -1 1 0.01 -1 -1 32856 -1 -1 4 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63124 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 23.1 MiB 0.03 379 61.6 MiB 0.03 0.00 1.11016 -43.8766 -1.11016 1.11016 1.10 0.000117459 9.3082e-05 0.0072552 0.00586787 34 1098 28 6.99608e+06 58862.7 618332. 2139.56 1.87 0.0483567 0.0410708 25762 151098 -1 825 16 539 539 48493 12111 0 0 48493 12111 539 539 0 0 1986 1791 0 0 3362 2366 0 0 539 539 0 0 19501 3602 0 0 22566 3274 0 0 539 0 0 0 0 0 539 0 0 1.48863 1.48863 -62.8243 -1.48863 0 0 787024. 2723.27 0.36 0.03 0.15 -1 -1 0.36 0.00655517 0.00580344 31 -1 22 22 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 4.49 vpr 61.69 MiB 0.02 6484 -1 -1 1 0.01 -1 -1 33020 -1 -1 5 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63172 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 23.1 MiB 0.03 467 61.7 MiB 0.04 0.00 1.13216 -51.0517 -1.13216 1.13216 1.10 0.00013253 0.000106182 0.00824247 0.00668481 32 1308 24 6.99608e+06 73578.4 586450. 2029.24 1.06 0.0329078 0.0277139 25474 144626 -1 1108 22 590 590 75617 20632 0 0 75617 20632 590 590 0 0 2283 2026 0 0 3957 2747 0 0 590 590 0 0 33551 6754 0 0 34646 7925 0 0 590 0 0 0 0 0 590 0 0 1.49963 1.49963 -75.1924 -1.49963 0 0 744469. 2576.02 0.35 0.04 0.15 -1 -1 0.35 0.0092055 0.00810317 34 -1 24 24 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 5.09 vpr 61.84 MiB 0.01 6536 -1 -1 1 0.01 -1 -1 32976 -1 -1 5 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63328 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 23.4 MiB 0.03 383 61.8 MiB 0.04 0.00 1.15416 -54.1359 -1.15416 1.15416 1.06 0.000116496 9.1549e-05 0.00880482 0.00716874 34 1360 50 6.99608e+06 73578.4 618332. 2139.56 1.79 0.0608939 0.0516557 25762 151098 -1 1011 19 566 566 46744 13488 0 0 46744 13488 566 566 0 0 2057 1758 0 0 3287 2317 0 0 566 566 0 0 21341 4415 0 0 18927 3866 0 0 566 0 0 0 0 0 566 0 0 1.26003 1.26003 -73.0435 -1.26003 0 0 787024. 2723.27 0.35 0.03 0.14 -1 -1 0.35 0.00837847 0.00740245 37 -1 26 26 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 5.43 vpr 62.00 MiB 0.02 6604 -1 -1 1 0.02 -1 -1 33048 -1 -1 6 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63488 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 23.4 MiB 0.04 787 62.0 MiB 0.04 0.00 1.19816 -70.5857 -1.19816 1.19816 1.10 0.000176385 0.000140901 0.00800215 0.00661477 34 1751 28 6.99608e+06 88294.1 618332. 2139.56 1.96 0.0645308 0.0556308 25762 151098 -1 1608 17 810 810 93756 19782 0 0 93756 19782 810 810 0 0 3048 2701 0 0 4858 3501 0 0 810 810 0 0 41069 6051 0 0 43161 5909 0 0 810 0 0 0 0 0 810 0 0 1.33418 1.33418 -91.9135 -1.33418 0 0 787024. 2723.27 0.34 0.05 0.15 -1 -1 0.34 0.00993368 0.00886939 43 -1 30 30 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 6.42 vpr 61.88 MiB 0.02 6744 -1 -1 1 0.01 -1 -1 33008 -1 -1 7 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63360 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.3 MiB 0.05 806 61.9 MiB 0.08 0.00 1.47719 -76.1538 -1.47719 1.47719 1.11 0.000190339 0.000155253 0.0163092 0.0133961 38 1911 40 6.99608e+06 103010 678818. 2348.85 2.82 0.0947282 0.0825699 26626 170182 -1 1593 14 776 776 67926 15281 0 0 67926 15281 776 776 0 0 2612 2267 0 0 3860 2774 0 0 776 776 0 0 31445 4166 0 0 28457 4522 0 0 776 0 0 0 0 0 776 0 0 1.34603 1.34603 -98.1308 -1.34603 0 0 902133. 3121.57 0.39 0.04 0.17 -1 -1 0.39 0.00973243 0.00873159 49 -1 34 34 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 6.58 vpr 62.88 MiB 0.02 6980 -1 -1 1 0.02 -1 -1 33320 -1 -1 10 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64392 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1652 62.9 MiB 0.14 0.00 1.88822 -143.26 -1.88822 1.88822 1.11 0.000337823 0.000286847 0.0276813 0.023519 44 3116 20 6.99608e+06 147157 787024. 2723.27 2.73 0.130992 0.1156 27778 195446 -1 2708 18 1125 1125 129329 25296 0 0 129329 25296 1125 1125 0 0 3792 3316 0 0 6548 4403 0 0 1125 1125 0 0 59020 7915 0 0 57719 7412 0 0 1125 0 0 0 0 0 1125 0 0 1.61233 1.61233 -162.114 -1.61233 0 0 997811. 3452.63 0.45 0.07 0.20 -1 -1 0.45 0.0190295 0.0172729 73 -1 50 50 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 7.53 vpr 63.56 MiB 0.02 6932 -1 -1 1 0.02 -1 -1 33296 -1 -1 13 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65088 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 24.7 MiB 0.09 1857 63.6 MiB 0.22 0.00 2.29925 -191.631 -2.29925 2.29925 1.10 0.00048478 0.000418064 0.0446067 0.0389188 54 3663 27 6.99608e+06 191304 949917. 3286.91 3.37 0.207618 0.18675 29506 232905 -1 3175 18 1505 1505 187259 36793 0 0 187259 36793 1505 1505 0 0 5184 4497 0 0 8645 5753 0 0 1505 1505 0 0 87219 11551 0 0 83201 11982 0 0 1505 0 0 0 0 0 1505 0 0 1.80403 1.80403 -214.807 -1.80403 0 0 1.17392e+06 4061.99 0.51 0.09 0.24 -1 -1 0.51 0.025807 0.0235458 97 -1 66 66 0 0 - fixed_k6_frac_N8_22nm.xml adder_003bits.v common 4.44 vpr 60.15 MiB 0.01 6028 -1 -1 1 0.05 -1 -1 34944 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61596 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 21.7 MiB 0.01 24 60.2 MiB 0.01 0.00 0.593895 -6.18211 -0.593895 0.593895 1.10 2.2618e-05 1.602e-05 0.000867975 0.000639589 18 73 10 6.79088e+06 13472 376052. 1301.22 1.34 0.00319593 0.00252477 22222 88205 -1 65 9 30 30 1103 444 0 0 1103 444 30 30 0 0 99 77 0 0 145 117 0 0 30 30 0 0 359 100 0 0 440 90 0 0 30 0 0 0 0 0 30 0 0 0.99734 0.99734 -7.30981 -0.99734 0 0 470940. 1629.55 0.22 0.01 0.09 -1 -1 0.22 0.00101683 0.000876618 6 4 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_004bits.v common 3.73 vpr 60.31 MiB 0.02 6092 -1 -1 2 0.05 -1 -1 36288 -1 -1 1 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61756 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 21.7 MiB 0.01 47 60.3 MiB 0.00 0.00 0.883748 -8.9664 -0.883748 0.883748 1.14 2.8627e-05 2.0117e-05 0.000651514 0.000521927 18 126 7 6.79088e+06 13472 376052. 1301.22 0.59 0.00202671 0.00171674 22222 88205 -1 106 6 41 41 1642 619 0 0 1642 619 41 41 0 0 168 136 0 0 202 171 0 0 41 41 0 0 534 118 0 0 656 112 0 0 41 0 0 0 0 0 41 0 0 0.883748 0.883748 -10.8459 -0.883748 0 0 470940. 1629.55 0.22 0.01 0.09 -1 -1 0.22 0.00111189 0.000993591 8 6 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_005bits.v common 4.07 vpr 60.61 MiB 0.01 6024 -1 -1 2 0.05 -1 -1 35932 -1 -1 2 11 0 0 exited with return code 2 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62060 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 126 60.6 MiB 0.01 0.00 1.02368 -12.9614 -1.02368 1.02368 1.09 3.6056e-05 2.6625e-05 0.000851418 0.000685086 18 258 9 6.79088e+06 26944 376052. 1301.22 0.59 0.00266255 0.00226324 22222 88205 -1 -1 -1 370 376 1246191 334446 0 0 1246191 334446 376 374 0 0 1365 1075 0 0 13568 1604 0 0 376 374 0 0 854988 148845 0 0 375518 182174 0 0 376 0 0 6 6 0 400 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0.23 0.40 0.09 -1 -1 0.23 -1 -1 10 7 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_006bits.v common 4.01 vpr 60.58 MiB 0.02 6128 -1 -1 3 0.05 -1 -1 35188 -1 -1 2 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62032 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 22.0 MiB 0.01 155 60.6 MiB 0.01 0.00 1.05944 -15.1158 -1.05944 1.05944 1.10 3.9545e-05 2.9592e-05 0.00118037 0.000949041 26 283 10 6.79088e+06 26944 503264. 1741.40 0.79 0.00747183 0.00615482 23662 119890 -1 276 6 85 87 6242 1677 0 0 6242 1677 87 85 0 0 360 315 0 0 452 401 0 0 87 87 0 0 2571 421 0 0 2685 368 0 0 87 0 0 2 2 0 95 0 0 1.05944 1.05944 -18.4205 -1.05944 0 0 618332. 2139.56 0.29 0.01 0.12 -1 -1 0.29 0.00156472 0.00140808 11 9 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_007bits.v common 3.81 vpr 60.57 MiB 0.01 6100 -1 -1 3 0.05 -1 -1 35064 -1 -1 2 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62020 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 22.0 MiB 0.02 89 60.6 MiB 0.01 0.00 1.35273 -16.3066 -1.35273 1.35273 1.08 4.7655e-05 3.6612e-05 0.00166796 0.00132952 20 272 7 6.79088e+06 26944 414966. 1435.87 0.64 0.00387759 0.00330648 22510 95286 -1 220 10 153 168 7549 3031 0 0 7549 3031 168 163 0 0 670 569 0 0 973 805 0 0 168 164 0 0 2892 672 0 0 2678 658 0 0 168 0 0 15 14 9 236 0 0 1.35273 1.35273 -20.5276 -1.35273 0 0 503264. 1741.40 0.25 0.01 0.10 -1 -1 0.25 0.00221332 0.00197459 13 10 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_008bits.v common 4.13 vpr 60.44 MiB 0.01 6104 -1 -1 3 0.05 -1 -1 34908 -1 -1 2 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61892 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 21.7 MiB 0.06 115 60.4 MiB 0.01 0.00 1.27433 -18.3591 -1.27433 1.27433 1.11 5.3345e-05 4.0545e-05 0.00256838 0.00202954 26 448 15 6.79088e+06 26944 503264. 1741.40 0.81 0.0117451 0.00966044 23662 119890 -1 355 9 152 164 8965 2830 0 0 8965 2830 164 160 0 0 636 520 0 0 883 716 0 0 164 162 0 0 3210 624 0 0 3908 648 0 0 164 0 0 12 5 7 212 0 0 1.27433 1.27433 -24.209 -1.27433 0 0 618332. 2139.56 0.28 0.01 0.12 -1 -1 0.28 0.00253459 0.00226713 16 14 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_009bits.v common 4.28 vpr 60.73 MiB 0.02 5996 -1 -1 4 0.06 -1 -1 35184 -1 -1 3 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62192 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 22.2 MiB 0.06 257 60.7 MiB 0.01 0.00 1.1736 -23.8837 -1.1736 1.1736 1.11 5.6212e-05 4.2682e-05 0.00250034 0.00199081 30 551 12 6.79088e+06 40416 556674. 1926.21 0.91 0.0119056 0.00989663 24526 138013 -1 488 11 163 169 11879 2915 0 0 11879 2915 169 163 0 0 649 530 0 0 823 708 0 0 169 163 0 0 5434 626 0 0 4635 725 0 0 169 0 0 6 4 4 195 0 0 1.1736 1.1736 -28.5198 -1.1736 0 0 706193. 2443.58 0.33 0.01 0.14 -1 -1 0.33 0.00294036 0.00262778 17 13 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_010bits.v common 4.48 vpr 60.77 MiB 0.02 6164 -1 -1 4 0.07 -1 -1 34892 -1 -1 3 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62224 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 22.2 MiB 0.23 185 60.8 MiB 0.02 0.00 1.60338 -26.2582 -1.60338 1.60338 1.13 6.7812e-05 5.1858e-05 0.00468161 0.00369371 28 616 38 6.79088e+06 40416 531479. 1839.03 0.89 0.0193677 0.0159245 23950 126010 -1 494 13 235 279 22983 5859 0 0 22983 5859 279 254 0 0 1021 829 0 0 1853 1394 0 0 279 267 0 0 9250 1658 0 0 10301 1457 0 0 279 0 0 44 50 39 500 0 0 1.65028 1.65028 -32.1473 -1.65028 0 0 648988. 2245.63 0.30 0.02 0.13 -1 -1 0.30 0.00390617 0.00347964 21 17 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_011bits.v common 4.36 vpr 60.77 MiB 0.02 6076 -1 -1 5 0.05 -1 -1 34972 -1 -1 3 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62232 23 12 73 85 1 60 38 17 17 289 -1 unnamed_device 22.2 MiB 0.10 226 60.8 MiB 0.01 0.00 1.8114 -30.4151 -1.8114 1.8114 1.12 6.8316e-05 5.2458e-05 0.00257178 0.00209753 30 595 11 6.79088e+06 40416 556674. 1926.21 0.92 0.0138569 0.011642 24526 138013 -1 505 10 241 290 16305 4407 0 0 16305 4407 290 269 0 0 1023 868 0 0 1495 1190 0 0 290 269 0 0 6158 977 0 0 7049 834 0 0 290 0 0 49 16 37 490 0 0 1.8114 1.8114 -36.1397 -1.8114 0 0 706193. 2443.58 0.32 0.01 0.14 -1 -1 0.32 0.00351604 0.0031543 20 16 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_012bits.v common 4.39 vpr 60.63 MiB 0.01 6100 -1 -1 5 0.06 -1 -1 34984 -1 -1 3 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62088 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 22.0 MiB 0.24 362 60.6 MiB 0.01 0.00 1.85403 -37.101 -1.85403 1.85403 1.10 7.6375e-05 5.8599e-05 0.00223005 0.00184961 28 790 18 6.79088e+06 40416 531479. 1839.03 0.89 0.0160453 0.0135151 23950 126010 -1 722 11 269 305 23316 5454 0 0 23316 5454 305 280 0 0 1122 952 0 0 1696 1304 0 0 305 281 0 0 10567 1249 0 0 9321 1388 0 0 305 0 0 36 28 33 474 0 0 1.86517 1.86517 -43.828 -1.86517 0 0 648988. 2245.63 0.30 0.02 0.13 -1 -1 0.30 0.00413775 0.00373457 24 20 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_013bits.v common 5.23 vpr 60.77 MiB 0.02 6092 -1 -1 5 0.06 -1 -1 34964 -1 -1 4 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62228 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 22.1 MiB 0.39 255 60.8 MiB 0.02 0.00 1.81483 -35.5085 -1.81483 1.81483 1.13 9.0815e-05 7.0992e-05 0.00457127 0.00367772 34 702 16 6.79088e+06 53888 618332. 2139.56 1.41 0.0289814 0.0241865 25102 150614 -1 553 12 271 341 18435 5606 0 0 18435 5606 341 313 0 0 1250 1009 0 0 1940 1462 0 0 341 315 0 0 6776 1202 0 0 7787 1305 0 0 341 0 0 70 58 46 673 0 0 1.81483 1.81483 -42.4861 -1.81483 0 0 787024. 2723.27 0.35 0.02 0.15 -1 -1 0.35 0.00464201 0.00414807 27 24 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_014bits.v common 5.11 vpr 61.03 MiB 0.02 6136 -1 -1 6 0.06 -1 -1 35212 -1 -1 4 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62496 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 22.4 MiB 0.28 365 61.0 MiB 0.01 0.00 2.06549 -42.5476 -2.06549 2.06549 1.11 9.7588e-05 7.7843e-05 0.00304193 0.00249952 34 868 15 6.79088e+06 53888 618332. 2139.56 1.42 0.0275508 0.0231063 25102 150614 -1 749 18 299 351 23481 6093 0 0 23481 6093 351 309 0 0 1329 1148 0 0 2046 1655 0 0 351 310 0 0 9700 1332 0 0 9704 1339 0 0 351 0 0 52 31 26 564 0 0 2.31609 2.31609 -51.6945 -2.31609 0 0 787024. 2723.27 0.35 0.02 0.15 -1 -1 0.35 0.00578409 0.00510488 28 23 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_015bits.v common 5.04 vpr 61.03 MiB 0.02 6116 -1 -1 6 0.06 -1 -1 35924 -1 -1 5 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62496 31 16 104 120 1 83 52 17 17 289 -1 unnamed_device 22.3 MiB 0.77 284 61.0 MiB 0.02 0.00 2.28038 -43.4137 -2.28038 2.28038 1.10 0.000108591 8.7979e-05 0.00351319 0.0028959 28 834 16 6.79088e+06 67360 531479. 1839.03 0.98 0.0210704 0.0178903 23950 126010 -1 662 10 271 380 20676 5728 0 0 20676 5728 380 307 0 0 1277 1037 0 0 2066 1524 0 0 380 321 0 0 7625 1335 0 0 8948 1204 0 0 380 0 0 109 96 70 923 0 0 2.36648 2.36648 -51.8711 -2.36648 0 0 648988. 2245.63 0.30 0.02 0.13 -1 -1 0.30 0.00488801 0.0044469 32 27 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_016bits.v common 5.26 vpr 61.08 MiB 0.02 6076 -1 -1 7 0.06 -1 -1 35540 -1 -1 4 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62544 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 22.4 MiB 0.69 461 61.1 MiB 0.02 0.00 2.39454 -52.7751 -2.39454 2.39454 1.05 0.000109565 8.6286e-05 0.00484794 0.00398522 34 1005 15 6.79088e+06 53888 618332. 2139.56 1.34 0.0316614 0.0264754 25102 150614 -1 909 12 327 396 25801 6351 0 0 25801 6351 396 342 0 0 1415 1154 0 0 2332 1634 0 0 396 352 0 0 10553 1440 0 0 10709 1429 0 0 396 0 0 69 34 68 705 0 0 2.39454 2.39454 -59.9172 -2.39454 0 0 787024. 2723.27 0.34 0.02 0.14 -1 -1 0.34 0.00515022 0.00464265 32 26 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_018bits.v common 6.24 vpr 60.94 MiB 0.02 6128 -1 -1 7 0.06 -1 -1 35124 -1 -1 5 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62404 37 19 127 146 1 100 61 17 17 289 -1 unnamed_device 22.3 MiB 1.36 587 60.9 MiB 0.03 0.00 2.57023 -64.3863 -2.57023 2.57023 1.09 0.000118858 9.37e-05 0.00837052 0.00683347 34 1197 17 6.79088e+06 67360 618332. 2139.56 1.44 0.0429326 0.036225 25102 150614 -1 1103 18 407 571 38172 9030 0 0 38172 9030 571 457 0 0 2042 1738 0 0 3306 2403 0 0 571 475 0 0 16162 2014 0 0 15520 1943 0 0 571 0 0 164 62 172 1383 0 0 2.69553 2.69553 -73.8699 -2.69553 0 0 787024. 2723.27 0.36 0.03 0.15 -1 -1 0.36 0.00770589 0.00687097 37 35 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_020bits.v common 5.44 vpr 61.19 MiB 0.02 6132 -1 -1 8 0.09 -1 -1 35292 -1 -1 6 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62656 41 21 139 160 1 110 68 17 17 289 -1 unnamed_device 22.5 MiB 0.97 539 61.2 MiB 0.04 0.00 2.60599 -68.2873 -2.60599 2.60599 1.07 0.000140917 0.000114178 0.00961113 0.00790489 30 1255 25 6.79088e+06 80832 556674. 1926.21 1.10 0.0378527 0.0323735 24526 138013 -1 1132 11 443 584 41568 10162 0 0 41568 10162 584 484 0 0 2088 1732 0 0 3003 2333 0 0 584 504 0 0 17597 2607 0 0 17712 2502 0 0 584 0 0 141 127 125 1327 0 0 2.64514 2.64514 -81.5376 -2.64514 0 0 706193. 2443.58 0.33 0.03 0.14 -1 -1 0.33 0.00703033 0.00640908 42 37 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_022bits.v common 6.48 vpr 61.01 MiB 0.02 6208 -1 -1 9 0.08 -1 -1 35188 -1 -1 6 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62476 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 22.5 MiB 1.56 521 61.0 MiB 0.04 0.00 3.07497 -76.3878 -3.07497 3.07497 1.10 0.000146366 0.00011675 0.0112114 0.00913436 34 1292 24 6.79088e+06 80832 618332. 2139.56 1.49 0.0550988 0.0467782 25102 150614 -1 1145 11 438 593 39779 9846 0 0 39779 9846 593 505 0 0 2097 1710 0 0 3286 2381 0 0 593 520 0 0 16284 2493 0 0 16926 2237 0 0 593 0 0 155 179 112 1403 0 0 3.32557 3.32557 -92.3982 -3.32557 0 0 787024. 2723.27 0.34 0.03 0.15 -1 -1 0.34 0.00785302 0.00718009 45 40 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_024bits.v common 6.88 vpr 61.17 MiB 0.02 6232 -1 -1 10 0.08 -1 -1 35684 -1 -1 6 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62636 49 25 165 190 1 131 80 17 17 289 -1 unnamed_device 22.6 MiB 1.63 606 61.2 MiB 0.06 0.00 3.40059 -88.815 -3.40059 3.40059 1.08 0.000161943 0.000130386 0.0144241 0.0118265 34 1638 13 6.79088e+06 80832 618332. 2139.56 1.80 0.0657342 0.0566582 25102 150614 -1 1405 16 535 734 58226 13737 0 0 58226 13737 734 640 0 0 2644 2218 0 0 4306 3038 0 0 734 658 0 0 23903 3721 0 0 25905 3462 0 0 734 0 0 199 195 180 1724 0 0 3.52589 3.52589 -103.812 -3.52589 0 0 787024. 2723.27 0.34 0.04 0.15 -1 -1 0.34 0.010565 0.0095049 48 43 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_028bits.v common 8.36 vpr 61.46 MiB 0.02 6320 -1 -1 11 0.09 -1 -1 35252 -1 -1 9 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62940 57 29 199 228 1 156 95 17 17 289 -1 unnamed_device 23.0 MiB 3.16 845 61.5 MiB 0.07 0.00 3.86613 -116.921 -3.86613 3.86613 1.08 0.00019807 0.000160333 0.0164814 0.0135812 34 1823 24 6.79088e+06 121248 618332. 2139.56 1.69 0.0782296 0.0670217 25102 150614 -1 1638 12 545 727 52201 12369 0 0 52201 12369 727 596 0 0 2659 2222 0 0 4134 3122 0 0 727 611 0 0 22840 2775 0 0 21114 3043 0 0 727 0 0 182 139 155 1603 0 0 3.86613 3.86613 -130.078 -3.86613 0 0 787024. 2723.27 0.35 0.03 0.15 -1 -1 0.35 0.00997956 0.00906928 59 57 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_032bits.v common 8.12 vpr 61.63 MiB 0.02 6308 -1 -1 13 0.09 -1 -1 35192 -1 -1 9 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63108 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 23.0 MiB 1.88 645 61.6 MiB 0.08 0.00 4.53538 -132.616 -4.53538 4.53538 1.06 0.000227373 0.000184126 0.0194033 0.0159173 44 1648 45 6.79088e+06 121248 787024. 2723.27 2.59 0.114352 0.0997515 27118 194962 -1 1154 16 603 772 40949 11870 0 0 40949 11870 772 646 0 0 2663 2220 0 0 4064 3049 0 0 772 672 0 0 15245 2764 0 0 17433 2519 0 0 772 0 0 169 149 131 1559 0 0 4.53538 4.53538 -139.507 -4.53538 0 0 997811. 3452.63 0.44 0.04 0.20 -1 -1 0.44 0.0140352 0.0127728 65 62 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_048bits.v common 8.19 vpr 62.71 MiB 0.02 6632 -1 -1 19 0.13 -1 -1 35568 -1 -1 14 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64220 97 49 340 389 1 266 160 17 17 289 -1 unnamed_device 23.9 MiB 2.39 1519 62.7 MiB 0.12 0.00 6.70854 -274.14 -6.70854 6.70854 1.06 0.000375657 0.000313047 0.0295758 0.0248814 34 3327 22 6.79088e+06 188608 618332. 2139.56 2.12 0.145339 0.126964 25102 150614 -1 2881 12 1028 1364 102494 24333 0 0 102494 24333 1364 1114 0 0 4995 4172 0 0 8214 5906 0 0 1364 1144 0 0 43378 5935 0 0 43179 6062 0 0 1364 0 0 336 285 277 2964 0 0 6.83384 6.83384 -299.325 -6.83384 0 0 787024. 2723.27 0.36 0.06 0.15 -1 -1 0.36 0.0201685 0.0186577 100 98 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_064bits.v common 13.08 vpr 63.30 MiB 0.02 6744 -1 -1 26 0.15 -1 -1 35720 -1 -1 19 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64824 129 65 454 519 1 356 213 17 17 289 -1 unnamed_device 24.3 MiB 6.74 1774 63.3 MiB 0.18 0.00 8.75291 -416.459 -8.75291 8.75291 1.10 0.000583858 0.000495172 0.0467899 0.0403619 36 3955 14 6.79088e+06 255968 648988. 2245.63 2.43 0.216461 0.193592 25390 158009 -1 3372 11 1206 1557 111878 26844 0 0 111878 26844 1557 1328 0 0 5641 4709 0 0 8868 6607 0 0 1557 1357 0 0 47566 6509 0 0 46689 6334 0 0 1557 0 0 351 282 329 3243 0 0 8.75291 8.75291 -447.032 -8.75291 0 0 828058. 2865.25 0.36 0.07 0.16 -1 -1 0.36 0.0280079 0.0258731 133 132 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 3.63 vpr 60.95 MiB 0.02 6308 -1 -1 1 0.01 -1 -1 32880 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62416 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.5 MiB 0.03 27 61.0 MiB 0.01 0.00 0.459883 -5.71342 -0.459883 0.459883 1.07 2.2741e-05 1.6217e-05 0.000950014 0.000698485 18 79 5 6.87369e+06 13973.8 376052. 1301.22 0.58 0.00192942 0.00154934 22882 88689 -1 71 7 36 36 1410 573 0 0 1410 573 36 36 0 0 145 113 0 0 171 146 0 0 36 36 0 0 444 137 0 0 578 105 0 0 36 0 0 0 0 0 36 0 0 0.834592 0.834592 -7.34232 -0.834592 0 0 470940. 1629.55 0.21 0.01 0.09 -1 -1 0.21 0.000880053 0.000756922 8 -1 5 5 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 3.86 vpr 61.07 MiB 0.02 6196 -1 -1 1 0.01 -1 -1 32992 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62536 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.6 MiB 0.05 44 61.1 MiB 0.01 0.00 0.674773 -8.57301 -0.674773 0.674773 1.09 2.8169e-05 2.0237e-05 0.000916915 0.000706752 22 137 11 6.87369e+06 27947.7 443629. 1535.05 0.70 0.00554475 0.00442331 23458 102101 -1 130 8 59 59 3608 1110 0 0 3608 1110 59 59 0 0 221 185 0 0 285 243 0 0 59 59 0 0 1271 293 0 0 1713 271 0 0 59 0 0 0 0 0 59 0 0 0.789073 0.789073 -10.9287 -0.789073 0 0 531479. 1839.03 0.26 0.01 0.10 -1 -1 0.26 0.00112276 0.000972024 10 -1 6 6 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 3.98 vpr 60.73 MiB 0.02 6440 -1 -1 1 0.01 -1 -1 32832 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62188 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.2 MiB 0.05 67 60.7 MiB 0.01 0.00 0.685773 -10.5953 -0.685773 0.685773 1.08 3.601e-05 2.6351e-05 0.00100488 0.000778898 26 180 13 6.87369e+06 27947.7 503264. 1741.40 0.79 0.00675142 0.00536829 24322 120374 -1 185 11 107 107 6294 2061 0 0 6294 2061 107 107 0 0 465 403 0 0 600 516 0 0 107 107 0 0 2273 447 0 0 2742 481 0 0 107 0 0 0 0 0 107 0 0 0.903373 0.903373 -14.171 -0.903373 0 0 618332. 2139.56 0.29 0.01 0.12 -1 -1 0.29 0.00152057 0.00131388 12 -1 7 7 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 3.98 vpr 60.93 MiB 0.02 6360 -1 -1 1 0.01 -1 -1 32908 -1 -1 2 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62396 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 22.4 MiB 0.06 125 60.9 MiB 0.01 0.00 0.707773 -12.8355 -0.707773 0.707773 1.09 3.8342e-05 2.8756e-05 0.00125936 0.00099252 24 372 17 6.87369e+06 27947.7 470940. 1629.55 0.75 0.00798889 0.00647186 24034 113901 -1 348 16 214 214 20213 5095 0 0 20213 5095 214 214 0 0 896 790 0 0 1291 1053 0 0 214 214 0 0 9223 1374 0 0 8375 1450 0 0 214 0 0 0 0 0 214 0 0 1.07267 1.07267 -19.669 -1.07267 0 0 586450. 2029.24 0.27 0.01 0.11 -1 -1 0.27 0.00220849 0.00188591 14 -1 8 8 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 4.01 vpr 60.91 MiB 0.01 6432 -1 -1 1 0.01 -1 -1 32828 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62376 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.3 MiB 0.09 121 60.9 MiB 0.01 0.00 1.13846 -16.1053 -1.13846 1.13846 1.04 4.7379e-05 3.0368e-05 0.00164161 0.00128606 30 331 11 6.87369e+06 41921.5 556674. 1926.21 0.84 0.00820277 0.00658596 25186 138497 -1 273 7 125 125 5587 1696 0 0 5587 1696 125 125 0 0 446 336 0 0 531 455 0 0 125 125 0 0 2241 299 0 0 2119 356 0 0 125 0 0 0 0 0 125 0 0 0.989373 0.989373 -19.8985 -0.989373 0 0 706193. 2443.58 0.32 0.01 0.13 -1 -1 0.32 0.00162233 0.00142235 17 -1 9 9 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 4.04 vpr 61.02 MiB 0.02 6268 -1 -1 1 0.01 -1 -1 32992 -1 -1 3 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62488 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.3 MiB 0.07 121 61.0 MiB 0.01 0.00 0.964803 -17.8777 -0.964803 0.964803 1.08 5.0233e-05 3.7868e-05 0.00264282 0.00204534 26 291 20 6.87369e+06 41921.5 503264. 1741.40 0.82 0.0112654 0.00914782 24322 120374 -1 247 13 163 163 9248 3368 0 0 9248 3368 163 163 0 0 679 600 0 0 918 817 0 0 163 163 0 0 3326 842 0 0 3999 783 0 0 163 0 0 0 0 0 163 0 0 1.05967 1.05967 -22.5203 -1.05967 0 0 618332. 2139.56 0.29 0.01 0.12 -1 -1 0.29 0.00242984 0.00209937 18 -1 10 10 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 4.24 vpr 60.69 MiB 0.02 6248 -1 -1 1 0.01 -1 -1 32756 -1 -1 3 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62144 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 22.3 MiB 0.07 132 60.7 MiB 0.02 0.00 0.975803 -19.7482 -0.975803 0.975803 1.07 5.428e-05 4.1339e-05 0.00337355 0.00264102 32 319 15 6.87369e+06 41921.5 586450. 2029.24 0.92 0.0121362 0.00988521 25474 144626 -1 249 13 166 166 7358 2520 0 0 7358 2520 166 166 0 0 665 564 0 0 917 772 0 0 166 166 0 0 2881 400 0 0 2563 452 0 0 166 0 0 0 0 0 166 0 0 0.981892 0.981892 -22.9874 -0.981892 0 0 744469. 2576.02 0.34 0.01 0.14 -1 -1 0.34 0.00270908 0.00237275 20 -1 11 11 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 4.18 vpr 61.13 MiB 0.02 6400 -1 -1 1 0.01 -1 -1 32996 -1 -1 3 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62600 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 22.6 MiB 0.08 135 61.1 MiB 0.02 0.00 0.986803 -21.7769 -0.986803 0.986803 1.06 6.0521e-05 4.6265e-05 0.00304916 0.00241253 30 429 16 6.87369e+06 41921.5 556674. 1926.21 0.89 0.0127442 0.0103818 25186 138497 -1 335 12 209 209 9042 2921 0 0 9042 2921 209 209 0 0 751 605 0 0 918 790 0 0 209 209 0 0 4115 448 0 0 2840 660 0 0 209 0 0 0 0 0 209 0 0 1.13667 1.13667 -28.9593 -1.13667 0 0 706193. 2443.58 0.34 0.01 0.14 -1 -1 0.34 0.00286028 0.00251036 22 -1 12 12 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 4.11 vpr 61.23 MiB 0.02 6276 -1 -1 1 0.01 -1 -1 32964 -1 -1 4 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62696 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.8 MiB 0.07 219 61.2 MiB 0.01 0.00 0.997803 -24.5465 -0.997803 0.997803 1.11 6.8337e-05 5.3614e-05 0.00216907 0.00176428 26 569 19 6.87369e+06 55895.4 503264. 1741.40 0.82 0.0136418 0.0112122 24322 120374 -1 517 16 285 285 25158 5962 0 0 25158 5962 285 285 0 0 1087 923 0 0 1649 1331 0 0 285 285 0 0 10834 1668 0 0 11018 1470 0 0 285 0 0 0 0 0 285 0 0 1.15867 1.15867 -35.1242 -1.15867 0 0 618332. 2139.56 0.29 0.02 0.12 -1 -1 0.29 0.0035707 0.0030857 24 -1 13 13 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 4.18 vpr 61.17 MiB 0.02 6332 -1 -1 1 0.01 -1 -1 32916 -1 -1 4 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62640 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 22.7 MiB 0.08 222 61.2 MiB 0.01 0.00 1.0088 -26.5752 -1.0088 1.0088 1.09 7.3903e-05 5.7341e-05 0.0025394 0.00204967 26 536 22 6.87369e+06 55895.4 503264. 1741.40 0.91 0.0158279 0.0132036 24322 120374 -1 517 12 274 274 16722 5021 0 0 16722 5021 274 274 0 0 1117 975 0 0 1604 1351 0 0 274 274 0 0 6356 1161 0 0 7097 986 0 0 274 0 0 0 0 0 274 0 0 1.13667 1.13667 -36.3654 -1.13667 0 0 618332. 2139.56 0.28 0.02 0.12 -1 -1 0.28 0.00320855 0.00282357 26 -1 14 14 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 4.31 vpr 61.39 MiB 0.01 6392 -1 -1 1 0.01 -1 -1 32968 -1 -1 4 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62860 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.8 MiB 0.08 434 61.4 MiB 0.02 0.00 1.0198 -35.0053 -1.0198 1.0198 1.09 7.8823e-05 6.1955e-05 0.00440355 0.00353132 32 855 13 6.87369e+06 55895.4 586450. 2029.24 0.95 0.0162977 0.0134951 25474 144626 -1 814 11 330 330 34022 7588 0 0 34022 7588 330 330 0 0 1392 1184 0 0 2097 1754 0 0 330 330 0 0 16214 1896 0 0 13659 2094 0 0 330 0 0 0 0 0 330 0 0 1.18067 1.18067 -45.5289 -1.18067 0 0 744469. 2576.02 0.34 0.02 0.14 -1 -1 0.34 0.00349029 0.00307992 28 -1 15 15 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 4.36 vpr 61.28 MiB 0.02 6520 -1 -1 1 0.02 -1 -1 32804 -1 -1 4 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62752 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 22.6 MiB 0.13 266 61.3 MiB 0.03 0.00 1.0308 -31.3779 -1.0308 1.0308 1.10 9.3266e-05 7.4766e-05 0.00640995 0.00511043 30 685 18 6.87369e+06 55895.4 556674. 1926.21 0.93 0.0215428 0.0180456 25186 138497 -1 519 14 368 368 21449 6041 0 0 21449 6041 368 368 0 0 1380 1199 0 0 1721 1495 0 0 368 368 0 0 9248 1243 0 0 8364 1368 0 0 368 0 0 0 0 0 368 0 0 1.06637 1.06637 -39.3057 -1.06637 0 0 706193. 2443.58 0.32 0.02 0.14 -1 -1 0.32 0.00416647 0.00366019 31 -1 16 16 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 4.48 vpr 61.45 MiB 0.02 6532 -1 -1 1 0.01 -1 -1 32888 -1 -1 5 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62928 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 22.8 MiB 0.24 315 61.5 MiB 0.02 0.00 1.27683 -35.2002 -1.27683 1.27683 1.10 8.3559e-05 6.5288e-05 0.00480371 0.00387014 28 837 24 6.87369e+06 69869.2 531479. 1839.03 0.96 0.0215769 0.0180199 24610 126494 -1 664 17 489 489 36502 9940 0 0 36502 9940 489 489 0 0 1973 1772 0 0 2979 2455 0 0 489 489 0 0 14283 2566 0 0 16289 2169 0 0 489 0 0 0 0 0 489 0 0 1.18967 1.18967 -45.5349 -1.18967 0 0 648988. 2245.63 0.30 0.02 0.12 -1 -1 0.30 0.00500712 0.00435719 33 -1 17 17 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 4.40 vpr 61.47 MiB 0.02 6452 -1 -1 1 0.01 -1 -1 32832 -1 -1 5 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 23.1 MiB 0.11 387 61.5 MiB 0.02 0.00 1.28783 -37.2751 -1.28783 1.28783 1.10 9.8643e-05 7.8552e-05 0.00437236 0.00355693 32 992 20 6.87369e+06 69869.2 586450. 2029.24 0.96 0.020304 0.0169965 25474 144626 -1 845 12 417 417 36985 9380 0 0 36985 9380 417 417 0 0 1733 1524 0 0 2850 2298 0 0 417 417 0 0 16522 2177 0 0 15046 2547 0 0 417 0 0 0 0 0 417 0 0 1.35897 1.35897 -52.7379 -1.35897 0 0 744469. 2576.02 0.34 0.02 0.14 -1 -1 0.34 0.00447151 0.00395548 34 -1 18 18 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 4.40 vpr 61.30 MiB 0.02 6480 -1 -1 1 0.01 -1 -1 32904 -1 -1 5 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62768 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 22.8 MiB 0.11 241 61.3 MiB 0.03 0.00 1.30983 -41.0906 -1.30983 1.30983 1.10 0.00010881 8.6307e-05 0.00659683 0.00535293 30 831 13 6.87369e+06 69869.2 556674. 1926.21 0.96 0.0229859 0.0191812 25186 138497 -1 683 12 438 438 24546 7571 0 0 24546 7571 438 438 0 0 1606 1356 0 0 2014 1719 0 0 438 438 0 0 11197 1824 0 0 8853 1796 0 0 438 0 0 0 0 0 438 0 0 1.21167 1.21167 -53.0115 -1.21167 0 0 706193. 2443.58 0.32 0.02 0.14 -1 -1 0.32 0.00469566 0.00416182 38 -1 20 20 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 4.47 vpr 61.46 MiB 0.02 6388 -1 -1 1 0.01 -1 -1 32932 -1 -1 6 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62936 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 22.9 MiB 0.12 376 61.5 MiB 0.04 0.00 1.33183 -47.7439 -1.33183 1.33183 1.12 0.000116935 9.2474e-05 0.0082959 0.00669146 30 1122 21 6.87369e+06 83843 556674. 1926.21 0.96 0.0286897 0.0240605 25186 138497 -1 842 18 500 500 32273 9066 0 0 32273 9066 500 500 0 0 1784 1457 0 0 2201 1869 0 0 500 500 0 0 13819 2575 0 0 13469 2165 0 0 500 0 0 0 0 0 500 0 0 1.15237 1.15237 -58.7299 -1.15237 0 0 706193. 2443.58 0.32 0.03 0.14 -1 -1 0.32 0.00705077 0.00619625 42 -1 22 22 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 5.19 vpr 61.66 MiB 0.02 6520 -1 -1 1 0.01 -1 -1 32896 -1 -1 6 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63140 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 23.0 MiB 0.20 438 61.7 MiB 0.05 0.00 1.35383 -51.755 -1.35383 1.35383 1.11 0.00012729 0.000100714 0.0094677 0.00762447 34 1190 46 6.87369e+06 83843 618332. 2139.56 1.53 0.0507705 0.0423115 25762 151098 -1 935 18 594 594 41076 11978 0 0 41076 11978 594 594 0 0 2348 2046 0 0 3549 2887 0 0 594 594 0 0 17183 2772 0 0 16808 3085 0 0 594 0 0 0 0 0 594 0 0 1.19797 1.19797 -61.9532 -1.19797 0 0 787024. 2723.27 0.36 0.03 0.15 -1 -1 0.36 0.00730534 0.00638359 47 -1 24 24 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 5.12 vpr 61.75 MiB 0.02 6524 -1 -1 1 0.01 -1 -1 32944 -1 -1 7 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63236 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.3 MiB 0.12 712 61.8 MiB 0.06 0.00 1.61086 -67.6738 -1.61086 1.61086 1.12 0.000151907 0.000116101 0.0108579 0.00882661 34 1519 19 6.87369e+06 97816.9 618332. 2139.56 1.52 0.049433 0.0415668 25762 151098 -1 1364 14 622 622 67551 14653 0 0 67551 14653 622 622 0 0 2382 2049 0 0 3710 2981 0 0 622 622 0 0 30097 4349 0 0 30118 4030 0 0 622 0 0 0 0 0 622 0 0 1.33067 1.33067 -79.8872 -1.33067 0 0 787024. 2723.27 0.35 0.03 0.15 -1 -1 0.35 0.00680028 0.00604004 50 -1 26 26 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 5.17 vpr 61.88 MiB 0.02 6580 -1 -1 1 0.01 -1 -1 33028 -1 -1 8 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63364 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.3 MiB 0.13 678 61.9 MiB 0.04 0.00 1.65486 -71.6661 -1.65486 1.65486 1.11 0.000196026 0.000164664 0.00778367 0.00647398 34 1693 19 6.87369e+06 111791 618332. 2139.56 1.55 0.0541999 0.0463852 25762 151098 -1 1450 16 712 712 65379 15354 0 0 65379 15354 712 712 0 0 2699 2339 0 0 4109 3279 0 0 712 712 0 0 28171 4216 0 0 28976 4096 0 0 712 0 0 0 0 0 712 0 0 1.36367 1.36367 -89.117 -1.36367 0 0 787024. 2723.27 0.36 0.04 0.15 -1 -1 0.36 0.00904983 0.00805018 58 -1 30 30 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 5.25 vpr 61.94 MiB 0.02 6652 -1 -1 1 0.01 -1 -1 33112 -1 -1 9 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63428 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.4 MiB 0.13 768 61.9 MiB 0.07 0.00 1.93389 -86.6232 -1.93389 1.93389 1.09 0.000190353 0.000156045 0.013293 0.0110897 34 1960 37 6.87369e+06 125765 618332. 2139.56 1.64 0.0750576 0.0640101 25762 151098 -1 1642 20 855 855 73850 18191 0 0 73850 18191 855 855 0 0 3364 2941 0 0 5195 4182 0 0 855 855 0 0 31977 4451 0 0 31604 4907 0 0 855 0 0 0 0 0 855 0 0 1.35267 1.35267 -99.6568 -1.35267 0 0 787024. 2723.27 0.35 0.05 0.16 -1 -1 0.35 0.0123456 0.0108369 66 -1 34 34 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 5.71 vpr 62.73 MiB 0.02 6856 -1 -1 1 0.02 -1 -1 33308 -1 -1 13 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64236 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 23.9 MiB 0.15 1403 62.7 MiB 0.15 0.00 2.57995 -154.202 -2.57995 2.57995 1.09 0.000340322 0.000289635 0.0263483 0.0224582 34 3081 20 6.87369e+06 181660 618332. 2139.56 1.94 0.125228 0.11032 25762 151098 -1 2707 18 1222 1222 116927 26093 0 0 116927 26093 1222 1222 0 0 4716 4085 0 0 7026 5619 0 0 1222 1222 0 0 52704 6965 0 0 50037 6980 0 0 1222 0 0 0 0 0 1222 0 0 1.65467 1.65467 -164.896 -1.65467 0 0 787024. 2723.27 0.34 0.07 0.15 -1 -1 0.34 0.0178118 0.016031 98 -1 50 50 0 0 - fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 6.76 vpr 63.38 MiB 0.02 6964 -1 -1 1 0.02 -1 -1 33296 -1 -1 17 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64896 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1782 63.4 MiB 0.25 0.01 3.22602 -223.974 -3.22602 3.22602 1.11 0.000580491 0.000501995 0.0440376 0.0380623 36 4205 21 6.87369e+06 237555 648988. 2245.63 2.74 0.198693 0.178064 26050 158493 -1 3427 19 1586 1586 166939 36108 0 0 166939 36108 1586 1586 0 0 5955 5067 0 0 8426 6798 0 0 1586 1586 0 0 76094 10752 0 0 73292 10319 0 0 1586 0 0 0 0 0 1586 0 0 1.83767 1.83767 -218.181 -1.83767 0 0 828058. 2865.25 0.38 0.09 0.16 -1 -1 0.38 0.0268545 0.0244078 130 -1 66 66 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 3.66 vpr 60.82 MiB 0.01 6248 -1 -1 1 0.01 -1 -1 32760 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62284 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.4 MiB 0.02 27 60.8 MiB 0.01 0.00 0.459883 -5.71342 -0.459883 0.459883 1.09 2.2341e-05 1.5655e-05 0.000886799 0.000636288 18 79 5 6.89349e+06 14093.8 376052. 1301.22 0.59 0.00185152 0.00145791 22882 88689 -1 71 7 36 36 1410 573 0 0 1410 573 36 36 0 0 145 113 0 0 171 146 0 0 36 36 0 0 444 137 0 0 578 105 0 0 36 0 0 0 0 0 36 0 0 0.834592 0.834592 -7.34232 -0.834592 0 0 470940. 1629.55 0.23 0.01 0.09 -1 -1 0.23 0.000903534 0.000780471 8 -1 5 5 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 4.36 vpr 60.70 MiB 0.01 6452 -1 -1 1 0.01 -1 -1 32984 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62156 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.2 MiB 0.04 44 60.7 MiB 0.01 0.00 0.702973 -8.54225 -0.702973 0.702973 1.08 2.9157e-05 2.1301e-05 0.000827749 0.000630903 18 158 7 6.89349e+06 28187.7 376052. 1301.22 1.36 0.00374495 0.0030062 22882 88689 -1 142 8 54 54 4090 1335 0 0 4090 1335 54 54 0 0 242 180 0 0 295 249 0 0 54 54 0 0 1604 415 0 0 1841 383 0 0 54 0 0 0 0 0 54 0 0 0.87204 0.87204 -11.5355 -0.87204 0 0 470940. 1629.55 0.21 0.01 0.09 -1 -1 0.21 0.00109957 0.000950326 10 -1 6 6 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 4.01 vpr 60.72 MiB 0.02 6252 -1 -1 1 0.01 -1 -1 32908 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62180 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 22.2 MiB 0.05 69 60.7 MiB 0.01 0.00 0.724973 -10.7913 -0.724973 0.724973 1.11 3.6904e-05 2.7324e-05 0.000892492 0.000704705 26 207 11 6.89349e+06 28187.7 503264. 1741.40 0.78 0.0061886 0.00497589 24322 120374 -1 186 14 126 126 6459 1979 0 0 6459 1979 126 126 0 0 448 351 0 0 665 513 0 0 126 126 0 0 2195 429 0 0 2899 434 0 0 126 0 0 0 0 0 126 0 0 0.92732 0.92732 -14.0775 -0.92732 0 0 618332. 2139.56 0.29 0.01 0.12 -1 -1 0.29 0.00179024 0.00151459 12 -1 7 7 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.90 vpr 60.47 MiB 0.02 6252 -1 -1 1 0.01 -1 -1 32924 -1 -1 2 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61920 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 21.9 MiB 0.05 112 60.5 MiB 0.01 0.00 0.746973 -12.9846 -0.746973 0.746973 1.11 3.9508e-05 2.9779e-05 0.00129033 0.00101531 22 337 14 6.89349e+06 28187.7 443629. 1535.05 0.72 0.00767938 0.00617065 23458 102101 -1 320 11 139 139 10538 2907 0 0 10538 2907 139 139 0 0 532 435 0 0 684 570 0 0 139 139 0 0 4797 728 0 0 4247 896 0 0 139 0 0 0 0 0 139 0 0 1.06167 1.06167 -19.0367 -1.06167 0 0 531479. 1839.03 0.26 0.01 0.11 -1 -1 0.26 0.00175767 0.00152531 14 -1 8 8 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 4.24 vpr 60.69 MiB 0.02 6296 -1 -1 1 0.01 -1 -1 32764 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62144 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.0 MiB 0.09 120 60.7 MiB 0.01 0.00 1.0151 -15.9354 -1.0151 1.0151 1.11 4.6881e-05 3.5304e-05 0.00178356 0.00139701 30 329 10 6.89349e+06 42281.5 556674. 1926.21 0.90 0.00867759 0.00706114 25186 138497 -1 283 11 164 164 8645 2436 0 0 8645 2436 164 164 0 0 574 437 0 0 734 610 0 0 164 164 0 0 3529 498 0 0 3480 563 0 0 164 0 0 0 0 0 164 0 0 1.13187 1.13187 -20.6401 -1.13187 0 0 706193. 2443.58 0.33 0.01 0.14 -1 -1 0.33 0.00203833 0.0017669 17 -1 9 9 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 4.22 vpr 61.05 MiB 0.02 6392 -1 -1 1 0.01 -1 -1 32968 -1 -1 3 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62516 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.4 MiB 0.06 121 61.1 MiB 0.01 0.00 0.982003 -17.6522 -0.982003 0.982003 1.11 4.8083e-05 3.6733e-05 0.00252909 0.00194288 30 288 25 6.89349e+06 42281.5 556674. 1926.21 0.91 0.0115582 0.0093644 25186 138497 -1 195 10 106 106 3488 1411 0 0 3488 1411 106 106 0 0 397 341 0 0 524 438 0 0 106 106 0 0 1045 263 0 0 1310 157 0 0 106 0 0 0 0 0 106 0 0 0.766973 0.766973 -18.9764 -0.766973 0 0 706193. 2443.58 0.32 0.01 0.14 -1 -1 0.32 0.00208256 0.00182544 18 -1 10 10 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 4.16 vpr 60.75 MiB 0.02 6316 -1 -1 1 0.01 -1 -1 32764 -1 -1 3 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62212 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 22.0 MiB 0.07 144 60.8 MiB 0.02 0.00 0.993003 -20.4983 -0.993003 0.993003 1.11 5.4568e-05 4.1255e-05 0.00335169 0.00262309 26 340 11 6.89349e+06 42281.5 503264. 1741.40 0.83 0.0119667 0.00976586 24322 120374 -1 353 11 247 247 19738 5789 0 0 19738 5789 247 247 0 0 1012 845 0 0 1432 1171 0 0 247 247 0 0 7625 1840 0 0 9175 1439 0 0 247 0 0 0 0 0 247 0 0 1.00232 1.00232 -27.2787 -1.00232 0 0 618332. 2139.56 0.30 0.01 0.12 -1 -1 0.30 0.0025471 0.0022281 20 -1 11 11 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 4.28 vpr 61.09 MiB 0.02 6388 -1 -1 1 0.01 -1 -1 32828 -1 -1 3 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62556 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 22.7 MiB 0.07 138 61.1 MiB 0.01 0.00 1.004 -21.8364 -1.004 1.004 1.11 5.6917e-05 4.3037e-05 0.00241169 0.00192895 30 421 17 6.89349e+06 42281.5 556674. 1926.21 0.91 0.0125202 0.0102578 25186 138497 -1 328 10 169 169 7587 2395 0 0 7587 2395 169 169 0 0 586 462 0 0 717 603 0 0 169 169 0 0 3445 410 0 0 2501 582 0 0 169 0 0 0 0 0 169 0 0 1.13667 1.13667 -28.9833 -1.13667 0 0 706193. 2443.58 0.34 0.01 0.14 -1 -1 0.34 0.00251795 0.00220196 22 -1 12 12 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 4.22 vpr 61.14 MiB 0.01 6400 -1 -1 1 0.01 -1 -1 32944 -1 -1 4 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62612 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.7 MiB 0.07 195 61.1 MiB 0.01 0.00 1.015 -24.6232 -1.015 1.015 1.09 6.9654e-05 5.4571e-05 0.00234346 0.00190404 30 483 19 6.89349e+06 56375.4 556674. 1926.21 0.91 0.0134725 0.0111649 25186 138497 -1 418 13 213 213 14894 3750 0 0 14894 3750 213 213 0 0 739 581 0 0 953 764 0 0 213 213 0 0 5877 1095 0 0 6899 884 0 0 213 0 0 0 0 0 213 0 0 1.03337 1.03337 -31.6378 -1.03337 0 0 706193. 2443.58 0.33 0.01 0.14 -1 -1 0.33 0.00316637 0.00275142 24 -1 13 13 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 4.09 vpr 61.05 MiB 0.02 6312 -1 -1 1 0.01 -1 -1 32924 -1 -1 4 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62512 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 22.6 MiB 0.07 191 61.0 MiB 0.01 0.00 1.026 -26.5438 -1.026 1.026 1.09 7.293e-05 5.7239e-05 0.00272776 0.00220679 26 550 18 6.89349e+06 56375.4 503264. 1741.40 0.83 0.0145024 0.0120371 24322 120374 -1 483 10 266 266 16053 5042 0 0 16053 5042 266 266 0 0 1011 862 0 0 1459 1152 0 0 266 266 0 0 6666 1415 0 0 6385 1081 0 0 266 0 0 0 0 0 266 0 0 1.14287 1.14287 -35.5675 -1.14287 0 0 618332. 2139.56 0.29 0.01 0.12 -1 -1 0.29 0.00307114 0.00271784 26 -1 14 14 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 4.23 vpr 61.26 MiB 0.02 6396 -1 -1 1 0.00 -1 -1 32892 -1 -1 4 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.7 MiB 0.07 405 61.3 MiB 0.02 0.00 1.037 -35.4923 -1.037 1.037 1.09 7.7762e-05 6.0624e-05 0.00420693 0.00335718 30 814 18 6.89349e+06 56375.4 556674. 1926.21 0.92 0.0170535 0.0140646 25186 138497 -1 744 15 275 275 23229 5161 0 0 23229 5161 275 275 0 0 1014 804 0 0 1219 1047 0 0 275 275 0 0 11452 1241 0 0 8994 1519 0 0 275 0 0 0 0 0 275 0 0 1.05732 1.05732 -42.3203 -1.05732 0 0 706193. 2443.58 0.32 0.02 0.14 -1 -1 0.32 0.0039905 0.00346386 28 -1 15 15 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 5.00 vpr 61.17 MiB 0.02 6428 -1 -1 1 0.01 -1 -1 32952 -1 -1 4 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62636 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 22.6 MiB 0.11 229 61.2 MiB 0.03 0.00 1.048 -31.3589 -1.048 1.048 1.10 8.3799e-05 6.494e-05 0.00632665 0.00499663 36 671 37 6.89349e+06 56375.4 648988. 2245.63 1.55 0.0318776 0.026243 26050 158493 -1 587 27 439 439 28286 7845 0 0 28286 7845 439 439 0 0 1611 1324 0 0 2385 1862 0 0 439 439 0 0 10734 1954 0 0 12678 1827 0 0 439 0 0 0 0 0 439 0 0 1.16487 1.16487 -39.5287 -1.16487 0 0 828058. 2865.25 0.37 0.03 0.16 -1 -1 0.37 0.0061576 0.00526899 31 -1 16 16 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 4.34 vpr 61.14 MiB 0.02 6424 -1 -1 1 0.00 -1 -1 32776 -1 -1 5 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62608 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 22.5 MiB 0.22 438 61.1 MiB 0.02 0.00 1.29403 -39.9598 -1.29403 1.29403 1.07 9.7444e-05 7.8103e-05 0.00476012 0.00381313 30 872 15 6.89349e+06 70469.2 556674. 1926.21 0.92 0.0188931 0.0156945 25186 138497 -1 797 12 314 314 21399 5312 0 0 21399 5312 314 314 0 0 1118 916 0 0 1389 1164 0 0 314 314 0 0 9250 1311 0 0 9014 1293 0 0 314 0 0 0 0 0 314 0 0 1.09267 1.09267 -46.3634 -1.09267 0 0 706193. 2443.58 0.32 0.02 0.13 -1 -1 0.32 0.00382334 0.00337719 33 -1 17 17 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 4.32 vpr 60.98 MiB 0.02 6340 -1 -1 1 0.01 -1 -1 32976 -1 -1 5 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62444 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 22.3 MiB 0.12 302 61.0 MiB 0.03 0.00 1.30503 -36.664 -1.30503 1.30503 1.07 9.2891e-05 7.4099e-05 0.00633819 0.00504102 32 799 13 6.89349e+06 70469.2 586450. 2029.24 0.95 0.0202803 0.0167965 25474 144626 -1 626 16 370 370 29829 7703 0 0 29829 7703 370 370 0 0 1431 1221 0 0 2229 1775 0 0 370 370 0 0 12810 1981 0 0 12619 1986 0 0 370 0 0 0 0 0 370 0 0 1.13667 1.13667 -44.9634 -1.13667 0 0 744469. 2576.02 0.33 0.02 0.14 -1 -1 0.33 0.00509714 0.00443369 34 -1 18 18 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 4.32 vpr 61.43 MiB 0.02 6460 -1 -1 1 0.01 -1 -1 32996 -1 -1 5 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62900 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 23.0 MiB 0.10 246 61.4 MiB 0.03 0.00 1.32703 -41.457 -1.32703 1.32703 1.06 0.000104342 8.2577e-05 0.00603882 0.0048382 32 893 12 6.89349e+06 70469.2 586450. 2029.24 0.96 0.0219591 0.0183154 25474 144626 -1 735 12 450 450 31456 9566 0 0 31456 9566 450 450 0 0 1809 1537 0 0 2983 2337 0 0 450 450 0 0 14481 2446 0 0 11283 2346 0 0 450 0 0 0 0 0 450 0 0 1.11937 1.11937 -52.4419 -1.11937 0 0 744469. 2576.02 0.33 0.02 0.14 -1 -1 0.33 0.00466417 0.00413287 38 -1 20 20 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 4.79 vpr 61.29 MiB 0.02 6452 -1 -1 1 0.01 -1 -1 32988 -1 -1 6 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62756 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 22.8 MiB 0.10 363 61.3 MiB 0.04 0.00 1.34903 -47.4962 -1.34903 1.34903 1.06 0.000120098 9.7408e-05 0.00806599 0.006494 34 1053 13 6.89349e+06 84563 618332. 2139.56 1.41 0.0384651 0.0321876 25762 151098 -1 870 12 471 471 31919 9125 0 0 31919 9125 471 471 0 0 1773 1479 0 0 2426 1954 0 0 471 471 0 0 13752 2613 0 0 13026 2137 0 0 471 0 0 0 0 0 471 0 0 1.29487 1.29487 -61.4864 -1.29487 0 0 787024. 2723.27 0.34 0.02 0.15 -1 -1 0.34 0.00503645 0.00448283 42 -1 22 22 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 5.21 vpr 61.34 MiB 0.02 6404 -1 -1 1 0.01 -1 -1 33016 -1 -1 6 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62808 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 22.7 MiB 0.14 402 61.3 MiB 0.05 0.00 1.37103 -51.3064 -1.37103 1.37103 1.05 0.000125999 0.000100378 0.00964451 0.00779311 34 1332 32 6.89349e+06 84563 618332. 2139.56 1.71 0.0521045 0.0439544 25762 151098 -1 976 15 592 592 43904 11751 0 0 43904 11751 592 592 0 0 2144 1759 0 0 3055 2394 0 0 592 592 0 0 19214 3012 0 0 18307 3402 0 0 592 0 0 0 0 0 592 0 0 1.20897 1.20897 -63.1201 -1.20897 0 0 787024. 2723.27 0.34 0.03 0.14 -1 -1 0.34 0.00644092 0.00567407 47 -1 24 24 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.94 vpr 61.59 MiB 0.02 6428 -1 -1 1 0.01 -1 -1 32884 -1 -1 7 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63068 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 23.2 MiB 0.12 618 61.6 MiB 0.06 0.00 1.62806 -65.1955 -1.62806 1.62806 1.06 0.0001278 0.000102651 0.0106577 0.00869171 34 1356 16 6.89349e+06 98656.9 618332. 2139.56 1.44 0.047486 0.039959 25762 151098 -1 1224 17 570 570 53588 11833 0 0 53588 11833 570 570 0 0 2184 1813 0 0 3160 2512 0 0 570 570 0 0 23667 3319 0 0 23437 3049 0 0 570 0 0 0 0 0 570 0 0 1.22267 1.22267 -72.8139 -1.22267 0 0 787024. 2723.27 0.37 0.03 0.15 -1 -1 0.37 0.00787932 0.00694867 50 -1 26 26 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 5.07 vpr 61.26 MiB 0.02 6668 -1 -1 1 0.01 -1 -1 32980 -1 -1 8 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 22.7 MiB 0.11 674 61.3 MiB 0.04 0.00 1.67206 -70.7009 -1.67206 1.67206 1.08 0.000173433 0.000142994 0.00820533 0.00684189 34 1624 21 6.89349e+06 112751 618332. 2139.56 1.57 0.0555265 0.0473216 25762 151098 -1 1398 12 625 625 47615 11896 0 0 47615 11896 625 625 0 0 2381 1959 0 0 3585 2863 0 0 625 625 0 0 20744 2798 0 0 19655 3026 0 0 625 0 0 0 0 0 625 0 0 1.40287 1.40287 -89.4902 -1.40287 0 0 787024. 2723.27 0.34 0.03 0.15 -1 -1 0.34 0.00701231 0.00627447 58 -1 30 30 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 5.07 vpr 61.85 MiB 0.02 6640 -1 -1 1 0.01 -1 -1 33068 -1 -1 9 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63332 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.4 MiB 0.14 685 61.8 MiB 0.07 0.00 1.95109 -83.7812 -1.95109 1.95109 1.09 0.000210494 0.000176485 0.0116761 0.0097181 34 1682 21 6.89349e+06 126845 618332. 2139.56 1.50 0.0650067 0.0556439 25762 151098 -1 1393 13 734 734 44397 12488 0 0 44397 12488 734 734 0 0 2690 2250 0 0 3872 3078 0 0 734 734 0 0 18542 2782 0 0 17825 2910 0 0 734 0 0 0 0 0 734 0 0 1.24467 1.24467 -93.8288 -1.24467 0 0 787024. 2723.27 0.35 0.03 0.16 -1 -1 0.35 0.00856761 0.00764762 66 -1 34 34 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 5.52 vpr 62.68 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 33224 -1 -1 13 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64180 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 23.9 MiB 0.15 1295 62.7 MiB 0.15 0.00 2.59715 -151.635 -2.59715 2.59715 1.11 0.000325608 0.000275112 0.0259945 0.0221174 34 3062 25 6.89349e+06 183220 618332. 2139.56 1.73 0.120684 0.105545 25762 151098 -1 2599 17 1159 1159 104831 24554 0 0 104831 24554 1159 1159 0 0 4425 3691 0 0 6427 5169 0 0 1159 1159 0 0 46110 6601 0 0 45551 6775 0 0 1159 0 0 0 0 0 1159 0 0 1.64987 1.64987 -160.215 -1.64987 0 0 787024. 2723.27 0.34 0.06 0.15 -1 -1 0.34 0.0167064 0.0150657 98 -1 50 50 0 0 - fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 6.28 vpr 63.38 MiB 0.02 6944 -1 -1 1 0.02 -1 -1 33292 -1 -1 17 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:13 gh-actions-runner-vtr-auto-spawned33 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64900 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1845 63.4 MiB 0.25 0.01 3.24322 -226.318 -3.24322 3.24322 1.08 0.00049052 0.0004248 0.0448168 0.0388745 34 4380 30 6.89349e+06 239595 618332. 2139.56 2.35 0.204483 0.182925 25762 151098 -1 3649 15 1306 1306 129400 28807 0 0 129400 28807 1306 1306 0 0 5040 4144 0 0 7224 5828 0 0 1306 1306 0 0 59253 7985 0 0 55271 8238 0 0 1306 0 0 0 0 0 1306 0 0 1.74067 1.74067 -216.676 -1.74067 0 0 787024. 2723.27 0.34 0.08 0.15 -1 -1 0.34 0.0219424 0.0200945 130 -1 66 66 0 0 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.00 vpr 58.98 MiB 0.01 5612 -1 -1 1 0.05 -1 -1 31404 -1 -1 2 7 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60392 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 20.5 MiB 0.00 44 59.0 MiB 0.01 0.00 0.581048 -5.42573 -0.581048 0.581048 0.85 2.563e-05 1.7992e-05 0.000739691 0.000554982 20 110 9 6.55708e+06 24110 394039. 1363.46 0.48 0.00167542 0.00134906 19870 87366 -1 80 6 30 30 1154 409 0 0 1154 409 30 30 0 0 109 82 0 0 152 118 0 0 30 30 0 0 535 67 0 0 298 82 0 0 30 0 0 0 0 0 30 0 0 0.71851 0.71851 -7.22873 -0.71851 0 0 477104. 1650.88 0.20 0.00 0.11 -1 -1 0.20 0.000764292 0.000662719 10 4 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.51 vpr 59.11 MiB 0.01 5620 -1 -1 2 0.04 -1 -1 32160 -1 -1 2 9 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60524 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 20.7 MiB 0.01 50 59.1 MiB 0.00 0.00 0.819447 -7.51001 -0.819447 0.819447 0.64 1.8934e-05 1.2753e-05 0.000528217 0.00039616 20 164 9 6.55708e+06 24110 394039. 1363.46 0.37 0.00150197 0.00122388 19870 87366 -1 148 6 65 71 3434 1161 0 0 3434 1161 71 65 0 0 291 220 0 0 385 323 0 0 71 71 0 0 1108 255 0 0 1508 227 0 0 71 0 0 6 4 2 95 0 0 0.902448 0.902448 -10.2354 -0.902448 0 0 477104. 1650.88 0.14 0.00 0.06 -1 -1 0.14 0.000673209 0.000589019 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.03 vpr 59.23 MiB 0.02 5676 -1 -1 2 0.05 -1 -1 31548 -1 -1 2 11 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60648 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 20.7 MiB 0.01 135 59.2 MiB 0.01 0.00 0.819447 -11.4288 -0.819447 0.819447 0.93 2.9734e-05 2.1337e-05 0.00087092 0.000676892 20 260 8 6.55708e+06 24110 394039. 1363.46 0.49 0.00309813 0.00267902 19870 87366 -1 233 7 73 74 4808 1313 0 0 4808 1313 74 73 0 0 315 246 0 0 382 339 0 0 74 74 0 0 1922 290 0 0 2041 291 0 0 74 0 0 1 1 0 78 0 0 0.819447 0.819447 -13.5532 -0.819447 0 0 477104. 1650.88 0.15 0.00 0.09 -1 -1 0.15 0.000888171 0.000786667 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.99 vpr 59.11 MiB 0.01 5740 -1 -1 3 0.05 -1 -1 31336 -1 -1 3 13 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60528 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 20.6 MiB 0.01 87 59.1 MiB 0.01 0.00 1.50711 -14.0476 -1.50711 1.50711 0.87 3.5915e-05 2.6271e-05 0.00116704 0.0009036 26 237 12 6.55708e+06 36165 477104. 1650.88 1.45 0.0131334 0.0106271 21022 109990 -1 212 9 117 144 7011 2301 0 0 7011 2301 144 119 0 0 558 445 0 0 790 672 0 0 144 133 0 0 2428 484 0 0 2947 448 0 0 144 0 0 27 18 9 252 0 0 1.50711 1.50711 -17.293 -1.50711 0 0 585099. 2024.56 0.16 0.01 0.07 -1 -1 0.16 0.0011022 0.000972399 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.90 vpr 59.32 MiB 0.03 5680 -1 -1 3 0.04 -1 -1 31604 -1 -1 3 15 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60744 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 20.8 MiB 0.01 151 59.3 MiB 0.01 0.00 1.05785 -14.8324 -1.05785 1.05785 0.86 4.2713e-05 3.1769e-05 0.00182287 0.00140464 22 370 8 6.55708e+06 36165 420624. 1455.45 1.38 0.0116143 0.00945117 20158 92377 -1 325 7 106 124 5525 1688 0 0 5525 1688 124 112 0 0 449 330 0 0 592 489 0 0 124 115 0 0 2127 320 0 0 2109 322 0 0 124 0 0 18 5 13 196 0 0 1.13885 1.13885 -19.6848 -1.13885 0 0 500653. 1732.36 0.21 0.01 0.10 -1 -1 0.21 0.00146767 0.00130874 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.25 vpr 59.22 MiB 0.03 5744 -1 -1 3 0.04 -1 -1 31628 -1 -1 4 17 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60644 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 20.5 MiB 0.07 250 59.2 MiB 0.01 0.00 1.46791 -20.9904 -1.46791 1.46791 0.80 3.6098e-05 2.677e-05 0.00136415 0.00105619 20 522 11 6.55708e+06 48220 394039. 1363.46 0.37 0.0033806 0.00283468 19870 87366 -1 489 16 186 199 14730 3479 0 0 14730 3479 199 195 0 0 753 563 0 0 1043 843 0 0 199 195 0 0 6653 794 0 0 5883 889 0 0 199 0 0 13 8 5 251 0 0 1.82851 1.82851 -27.0004 -1.82851 0 0 477104. 1650.88 0.21 0.01 0.10 -1 -1 0.21 0.00342926 0.00299538 25 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.57 vpr 59.45 MiB 0.01 5764 -1 -1 4 0.05 -1 -1 31540 -1 -1 4 19 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60876 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 21.1 MiB 0.06 180 59.4 MiB 0.01 0.00 1.50711 -21.6272 -1.50711 1.50711 0.79 5.3758e-05 4.0446e-05 0.00195878 0.00154878 26 474 15 6.55708e+06 48220 477104. 1650.88 1.80 0.0224551 0.0185706 21022 109990 -1 425 16 189 247 15406 4348 0 0 15406 4348 247 207 0 0 984 829 0 0 1514 1238 0 0 247 218 0 0 6054 923 0 0 6360 933 0 0 247 0 0 58 52 49 536 0 0 1.71031 1.71031 -27.2546 -1.71031 0 0 585099. 2024.56 0.23 0.01 0.12 -1 -1 0.23 0.00211032 0.00183874 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.90 vpr 59.21 MiB 0.02 5840 -1 -1 4 0.04 -1 -1 31532 -1 -1 5 21 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60628 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 20.7 MiB 0.11 166 59.2 MiB 0.03 0.00 1.46791 -23.7798 -1.46791 1.46791 1.04 8.5526e-05 6.6583e-05 0.0050895 0.00401006 26 528 14 6.55708e+06 60275 477104. 1650.88 0.78 0.0175624 0.0145682 21022 109990 -1 431 12 209 266 14379 4172 0 0 14379 4172 266 222 0 0 987 763 0 0 1401 1126 0 0 266 228 0 0 5189 979 0 0 6270 854 0 0 266 0 0 57 34 32 519 0 0 1.46791 1.46791 -28.9902 -1.46791 0 0 585099. 2024.56 0.16 0.01 0.09 -1 -1 0.16 0.00210662 0.00187036 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.95 vpr 59.28 MiB 0.02 5692 -1 -1 5 0.05 -1 -1 32008 -1 -1 5 23 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60704 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 20.8 MiB 0.09 251 59.3 MiB 0.02 0.00 1.95636 -28.67 -1.95636 1.95636 0.84 9.2059e-05 7.1598e-05 0.00250906 0.00204474 26 600 14 6.55708e+06 60275 477104. 1650.88 1.96 0.0290482 0.0242357 21022 109990 -1 522 15 226 280 16836 4722 0 0 16836 4722 280 247 0 0 1053 861 0 0 1838 1464 0 0 280 256 0 0 6693 1000 0 0 6692 894 0 0 280 0 0 54 51 27 536 0 0 2.03736 2.03736 -35.409 -2.03736 0 0 585099. 2024.56 0.20 0.01 0.10 -1 -1 0.20 0.00325797 0.00287058 35 16 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 5.20 vpr 59.30 MiB 0.02 5704 -1 -1 5 0.06 -1 -1 31668 -1 -1 6 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60720 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 20.8 MiB 0.09 296 59.3 MiB 0.02 0.00 1.7847 -31.2909 -1.7847 1.7847 1.05 9.4025e-05 7.1643e-05 0.00337355 0.00270722 30 665 13 6.55708e+06 72330 526063. 1820.29 1.90 0.0275801 0.023018 21886 126133 -1 601 10 256 343 20281 5287 0 0 20281 5287 343 266 0 0 1280 1029 0 0 1855 1515 0 0 343 276 0 0 7981 1173 0 0 8479 1028 0 0 343 0 0 87 54 71 751 0 0 1.7847 1.7847 -37.186 -1.7847 0 0 666494. 2306.21 0.22 0.01 0.11 -1 -1 0.22 0.00229115 0.002058 40 20 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.58 vpr 59.48 MiB 0.02 5812 -1 -1 5 0.05 -1 -1 31916 -1 -1 7 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60912 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 20.8 MiB 0.08 272 59.5 MiB 0.02 0.00 1.49544 -31.0841 -1.49544 1.49544 1.05 0.000120574 9.5584e-05 0.00357908 0.00291438 30 657 18 6.55708e+06 84385 526063. 1820.29 2.49 0.0297017 0.0249116 21886 126133 -1 510 16 266 419 17516 5834 0 0 17516 5834 419 314 0 0 1465 1191 0 0 2180 1716 0 0 419 317 0 0 6766 1180 0 0 6267 1116 0 0 419 0 0 153 102 123 1219 0 0 1.61965 1.61965 -35.5555 -1.61965 0 0 666494. 2306.21 0.18 0.01 0.11 -1 -1 0.18 0.00334674 0.00297125 42 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 5.08 vpr 59.63 MiB 0.02 5892 -1 -1 6 0.07 -1 -1 31404 -1 -1 7 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61064 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 21.0 MiB 0.14 494 59.6 MiB 0.02 0.00 2.15556 -42.6898 -2.15556 2.15556 1.05 0.000119359 9.3251e-05 0.00356673 0.00290837 26 940 13 6.55708e+06 84385 477104. 1650.88 1.78 0.0388042 0.0327586 21022 109990 -1 900 11 276 366 30050 6788 0 0 30050 6788 366 284 0 0 1431 1144 0 0 2147 1679 0 0 366 292 0 0 13073 1724 0 0 12667 1665 0 0 366 0 0 90 71 97 858 0 0 2.15556 2.15556 -49.9456 -2.15556 0 0 585099. 2024.56 0.18 0.01 0.09 -1 -1 0.18 0.00278611 0.00250162 45 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.03 vpr 59.55 MiB 0.03 5792 -1 -1 6 0.04 -1 -1 31744 -1 -1 9 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60976 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 21.1 MiB 0.20 441 59.5 MiB 0.03 0.00 1.95636 -41.5578 -1.95636 1.95636 0.72 6.4981e-05 4.9024e-05 0.00410196 0.00323978 26 1015 19 6.55708e+06 108495 477104. 1650.88 1.13 0.0251597 0.0209298 21022 109990 -1 901 12 335 528 34363 8773 0 0 34363 8773 528 402 0 0 2029 1629 0 0 3336 2570 0 0 528 415 0 0 14463 1830 0 0 13479 1927 0 0 528 0 0 193 171 265 1753 0 0 1.95837 1.95837 -48.3468 -1.95837 0 0 585099. 2024.56 0.16 0.01 0.08 -1 -1 0.16 0.00354868 0.0032036 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.36 vpr 59.73 MiB 0.03 5796 -1 -1 7 0.06 -1 -1 31384 -1 -1 7 33 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61160 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 21.3 MiB 0.03 583 59.7 MiB 0.02 0.00 2.84322 -54.0009 -2.84322 2.84322 0.78 6.7482e-05 5.1513e-05 0.00253698 0.00203789 26 1142 40 6.55708e+06 84385 477104. 1650.88 0.66 0.017677 0.0148524 21022 109990 -1 1051 34 389 580 191044 127344 0 0 191044 127344 580 437 0 0 2220 1840 0 0 5824 3942 0 0 580 462 0 0 90598 61069 0 0 91242 59594 0 0 580 0 0 191 157 180 1560 0 0 2.84322 2.84322 -64.4623 -2.84322 0 0 585099. 2024.56 0.16 0.06 0.07 -1 -1 0.16 0.00623419 0.0054083 51 26 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.49 vpr 59.69 MiB 0.03 5872 -1 -1 7 0.06 -1 -1 31364 -1 -1 8 37 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61124 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 21.1 MiB 0.23 582 59.7 MiB 0.04 0.00 2.40562 -55.71 -2.40562 2.40562 0.79 8.3527e-05 6.4212e-05 0.00776709 0.00630265 26 1265 13 6.55708e+06 96440 477104. 1650.88 1.64 0.0385537 0.0324312 21022 109990 -1 1161 11 415 578 42507 10601 0 0 42507 10601 578 495 0 0 2247 1857 0 0 3682 2932 0 0 578 515 0 0 18477 2306 0 0 16945 2496 0 0 578 0 0 163 112 146 1355 0 0 2.52582 2.52582 -68.4924 -2.52582 0 0 585099. 2024.56 0.16 0.02 0.10 -1 -1 0.16 0.00376525 0.00340265 59 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 5.31 vpr 59.95 MiB 0.03 5808 -1 -1 8 0.06 -1 -1 31700 -1 -1 10 41 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61388 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 21.3 MiB 0.21 510 59.9 MiB 0.06 0.00 2.68322 -62.3346 -2.68322 2.68322 1.04 0.000179789 0.00014307 0.0106534 0.00864499 26 1304 18 6.55708e+06 120550 477104. 1650.88 2.05 0.0468133 0.0394644 21022 109990 -1 1104 15 477 623 45844 11769 0 0 45844 11769 623 542 0 0 2448 1976 0 0 3958 3030 0 0 623 552 0 0 20399 2721 0 0 17793 2948 0 0 623 0 0 146 110 136 1327 0 0 3.04382 3.04382 -77.7202 -3.04382 0 0 585099. 2024.56 0.16 0.02 0.07 -1 -1 0.16 0.0046776 0.00416552 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.41 vpr 59.89 MiB 0.01 5828 -1 -1 9 0.07 -1 -1 31476 -1 -1 11 45 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61328 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 21.4 MiB 0.06 638 59.9 MiB 0.08 0.00 2.7775 -71.4617 -2.7775 2.7775 1.02 0.000191528 0.000152763 0.0144423 0.0116624 32 1442 21 6.55708e+06 132605 554710. 1919.41 2.26 0.0658068 0.0553004 22174 131602 -1 1232 17 484 667 42628 10811 0 0 42628 10811 667 572 0 0 2547 2095 0 0 3937 3178 0 0 667 582 0 0 17658 2139 0 0 17152 2245 0 0 667 0 0 183 132 166 1560 0 0 3.0989 3.0989 -86.4773 -3.0989 0 0 701300. 2426.64 0.21 0.02 0.12 -1 -1 0.21 0.00549735 0.00489129 74 40 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 5.02 vpr 59.95 MiB 0.02 5844 -1 -1 10 0.06 -1 -1 31700 -1 -1 11 49 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61384 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 21.3 MiB 0.35 516 59.9 MiB 0.05 0.00 3.46776 -81.5584 -3.46776 3.46776 0.64 0.000107587 8.4334e-05 0.00786156 0.00635553 30 1301 15 6.55708e+06 132605 526063. 1820.29 2.10 0.0483939 0.0410577 21886 126133 -1 1026 11 460 602 28755 8323 0 0 28755 8323 602 489 0 0 2160 1663 0 0 2958 2422 0 0 602 518 0 0 10324 1784 0 0 12109 1447 0 0 602 0 0 142 100 99 1275 0 0 3.58796 3.58796 -94.9816 -3.58796 0 0 666494. 2306.21 0.18 0.02 0.11 -1 -1 0.18 0.0048796 0.00443285 79 43 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 5.43 vpr 59.92 MiB 0.01 5904 -1 -1 11 0.08 -1 -1 32036 -1 -1 14 57 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61360 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 21.5 MiB 0.35 710 59.9 MiB 0.04 0.00 4.09974 -109.966 -4.09974 4.09974 0.73 0.000138085 0.000110744 0.00611339 0.00501418 28 1735 19 6.55708e+06 168770 500653. 1732.36 2.25 0.0591531 0.0507873 21310 115450 -1 1458 13 574 820 48056 13374 0 0 48056 13374 820 627 0 0 3115 2508 0 0 4743 3768 0 0 820 658 0 0 19492 2894 0 0 19066 2919 0 0 820 0 0 246 182 285 2103 0 0 4.34014 4.34014 -127.635 -4.34014 0 0 612192. 2118.31 0.17 0.02 0.08 -1 -1 0.17 0.00619865 0.0056012 93 57 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 6.37 vpr 60.36 MiB 0.02 6016 -1 -1 13 0.08 -1 -1 31868 -1 -1 15 65 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61804 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 21.6 MiB 0.54 920 60.4 MiB 0.10 0.00 4.18236 -130.237 -4.18236 4.18236 0.83 0.000213075 0.000169371 0.014887 0.012079 34 2063 45 6.55708e+06 180825 585099. 2024.56 3.01 0.0951668 0.0816 22462 138074 -1 1703 15 685 917 63275 16364 0 0 63275 16364 917 749 0 0 3532 2911 0 0 5599 4390 0 0 917 777 0 0 26595 3612 0 0 25715 3925 0 0 917 0 0 232 142 217 1990 0 0 4.39522 4.39522 -147.305 -4.39522 0 0 742403. 2568.87 0.20 0.03 0.09 -1 -1 0.20 0.00760807 0.00686516 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 6.85 vpr 61.30 MiB 0.02 6404 -1 -1 19 0.11 -1 -1 31904 -1 -1 24 97 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62772 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 22.3 MiB 0.45 1555 61.3 MiB 0.22 0.00 6.42605 -254.77 -6.42605 6.42605 1.06 0.000472779 0.000393201 0.0357541 0.0295443 28 3300 43 6.55708e+06 289320 500653. 1732.36 3.01 0.129297 0.111903 21310 115450 -1 2914 11 996 1385 96956 23983 0 0 96956 23983 1385 1098 0 0 5179 4149 0 0 7938 6275 0 0 1385 1157 0 0 40949 5628 0 0 40120 5676 0 0 1385 0 0 389 235 333 3202 0 0 6.66645 6.66645 -287.344 -6.66645 0 0 612192. 2118.31 0.17 0.03 0.08 -1 -1 0.17 0.0104411 0.00956838 160 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 6.80 vpr 62.16 MiB 0.03 6396 -1 -1 26 0.12 -1 -1 32256 -1 -1 31 129 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63656 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 23.4 MiB 0.29 1862 62.2 MiB 0.27 0.00 8.61284 -396.451 -8.61284 8.61284 0.88 0.000377423 0.000315982 0.043658 0.0368199 36 3847 24 6.55708e+06 373705 612192. 2118.31 3.00 0.172662 0.151312 22750 144809 -1 3407 12 1205 1694 114505 27974 0 0 114505 27974 1694 1372 0 0 6291 4966 0 0 10187 7634 0 0 1694 1428 0 0 48675 6268 0 0 45964 6306 0 0 1694 0 0 489 311 430 3980 0 0 8.73304 8.73304 -428.188 -8.73304 0 0 782063. 2706.10 0.20 0.04 0.11 -1 -1 0.20 0.0153931 0.0141935 213 132 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.48 abc 28.79 MiB 0.01 6104 -1 -1 1 0.01 -1 -1 29484 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21236 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.43 abc 28.88 MiB 0.01 6120 -1 -1 1 0.00 -1 -1 29576 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21284 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.41 abc 28.82 MiB 0.02 6108 -1 -1 1 0.01 -1 -1 29516 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21576 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.40 abc 28.79 MiB 0.01 5820 -1 -1 1 0.01 -1 -1 29480 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21340 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.42 abc 28.82 MiB 0.01 6188 -1 -1 1 0.01 -1 -1 29516 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21380 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.36 abc 28.88 MiB 0.01 5900 -1 -1 1 0.01 -1 -1 29576 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21552 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.42 abc 29.00 MiB 0.01 6128 -1 -1 1 0.01 -1 -1 29696 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21380 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.34 abc 28.73 MiB 0.01 6204 -1 -1 1 0.00 -1 -1 29424 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21504 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.33 abc 28.89 MiB 0.01 5916 -1 -1 1 0.01 -1 -1 29588 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21380 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.32 abc 28.83 MiB 0.01 6160 -1 -1 1 0.01 -1 -1 29520 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21800 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.34 abc 28.87 MiB 0.01 6172 -1 -1 1 0.01 -1 -1 29560 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21816 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.38 abc 28.85 MiB 0.03 5884 -1 -1 1 0.01 -1 -1 29540 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21700 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.36 abc 28.78 MiB 0.03 6036 -1 -1 1 0.01 -1 -1 29468 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21748 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.43 abc 28.95 MiB 0.01 5904 -1 -1 1 0.01 -1 -1 29648 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21888 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.41 abc 28.79 MiB 0.01 6032 -1 -1 1 0.01 -1 -1 29480 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21836 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.43 abc 28.95 MiB 0.01 6008 -1 -1 1 0.01 -1 -1 29648 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21592 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.37 abc 28.89 MiB 0.02 5972 -1 -1 1 0.02 -1 -1 29584 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21876 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.46 abc 28.93 MiB 0.01 6176 -1 -1 1 0.01 -1 -1 29624 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21924 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 7 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.45 abc 28.90 MiB 0.01 6328 -1 -1 1 0.01 -1 -1 29596 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 22004 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 8 8 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.44 abc 29.04 MiB 0.02 6312 -1 -1 1 0.01 -1 -1 29732 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21800 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.45 abc 29.11 MiB 0.04 6648 -1 -1 1 0.02 -1 -1 29808 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 22060 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 13 0 0 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.46 abc 29.40 MiB 0.02 6576 -1 -1 1 0.02 -1 -1 30108 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 22684 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 17 17 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.45 abc 28.82 MiB 0.02 5952 -1 -1 1 0.00 -1 -1 29508 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21012 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.45 abc 28.86 MiB 0.01 5828 -1 -1 1 0.01 -1 -1 29552 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21104 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.51 abc 28.71 MiB 0.03 6112 -1 -1 1 0.01 -1 -1 29400 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21388 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.50 abc 28.87 MiB 0.03 6188 -1 -1 1 0.00 -1 -1 29560 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21324 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.46 abc 28.81 MiB 0.05 6008 -1 -1 1 0.01 -1 -1 29500 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21392 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.42 abc 28.88 MiB 0.01 5908 -1 -1 1 0.01 -1 -1 29576 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21332 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.39 abc 28.84 MiB 0.02 5964 -1 -1 1 0.01 -1 -1 29536 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21520 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.44 abc 28.86 MiB 0.01 5972 -1 -1 1 0.01 -1 -1 29548 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21380 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.33 abc 28.83 MiB 0.01 5968 -1 -1 1 0.00 -1 -1 29524 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21344 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.36 abc 28.77 MiB 0.01 5860 -1 -1 1 0.01 -1 -1 29456 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21216 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.32 abc 28.89 MiB 0.01 6064 -1 -1 1 0.01 -1 -1 29588 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21532 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.28 abc 28.75 MiB 0.02 6000 -1 -1 1 0.01 -1 -1 29444 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21516 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 4 4 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.38 abc 28.94 MiB 0.02 6076 -1 -1 1 0.01 -1 -1 29636 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21608 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.37 abc 28.80 MiB 0.01 5972 -1 -1 1 0.01 -1 -1 29496 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21168 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.46 abc 28.78 MiB 0.01 5996 -1 -1 1 0.01 -1 -1 29472 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21332 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 5 5 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.38 abc 28.91 MiB 0.02 6060 -1 -1 1 0.00 -1 -1 29608 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21388 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.54 abc 29.00 MiB 0.01 6192 -1 -1 1 0.01 -1 -1 29692 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21692 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 6 6 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.51 abc 28.87 MiB 0.01 6112 -1 -1 1 0.01 -1 -1 29564 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21480 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 7 7 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.57 abc 28.85 MiB 0.02 6152 -1 -1 1 0.01 -1 -1 29540 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 21504 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 8 8 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.54 abc 28.91 MiB 0.02 6208 -1 -1 1 0.01 -1 -1 29604 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 22012 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 9 9 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.50 abc 29.13 MiB 0.02 6512 -1 -1 1 0.02 -1 -1 29828 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 22088 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 13 13 0 0 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.53 abc 29.49 MiB 0.04 6744 -1 -1 1 0.02 -1 -1 30196 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 22432 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 17 17 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.93 vpr 59.55 MiB 0.01 5964 -1 -1 1 0.01 -1 -1 29476 -1 -1 2 7 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60976 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 21.1 MiB 0.04 32 59.5 MiB 0.01 0.00 0.649848 -5.93533 -0.649848 0.649848 1.06 3.0202e-05 2.1935e-05 0.000908431 0.000744471 20 89 11 6.64007e+06 25116 394039. 1363.46 0.67 0.00267478 0.00223605 20530 87850 -1 87 4 22 22 1017 330 0 0 1017 330 22 22 0 0 78 57 0 0 104 79 0 0 22 22 0 0 376 82 0 0 415 68 0 0 22 0 0 0 0 0 22 0 0 0.71851 0.71851 -7.25753 -0.71851 0 0 477104. 1650.88 0.22 0.00 0.10 -1 -1 0.22 0.000857941 0.000756261 10 -1 5 5 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.92 vpr 59.56 MiB 0.01 6140 -1 -1 1 0.01 -1 -1 29396 -1 -1 2 9 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60988 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 21.1 MiB 0.02 47 59.6 MiB 0.01 0.00 0.671848 -7.56362 -0.671848 0.671848 1.10 3.7927e-05 2.8594e-05 0.00108813 0.000840934 20 151 10 6.64007e+06 25116 394039. 1363.46 0.67 0.00304427 0.00252072 20530 87850 -1 127 6 45 45 2508 827 0 0 2508 827 45 45 0 0 190 140 0 0 230 190 0 0 45 45 0 0 894 200 0 0 1104 207 0 0 45 0 0 0 0 0 45 0 0 0.770048 0.770048 -9.93162 -0.770048 0 0 477104. 1650.88 0.21 0.01 0.10 -1 -1 0.21 0.001089 0.000966535 13 -1 6 6 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.85 vpr 59.45 MiB 0.02 5900 -1 -1 1 0.01 -1 -1 29444 -1 -1 2 11 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60880 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 20.9 MiB 0.02 68 59.5 MiB 0.02 0.00 0.682848 -9.70225 -0.682848 0.682848 1.06 4.0128e-05 2.9542e-05 0.00123893 0.000968149 26 191 6 6.64007e+06 25116 477104. 1650.88 0.89 0.00784367 0.0064108 21682 110474 -1 185 14 136 136 7095 2227 0 0 7095 2227 136 136 0 0 494 420 0 0 664 509 0 0 136 136 0 0 2385 512 0 0 3280 514 0 0 136 0 0 0 0 0 136 0 0 0.912248 0.912248 -13.0318 -0.912248 0 0 585099. 2024.56 0.22 0.01 0.10 -1 -1 0.22 0.00218281 0.00188153 16 -1 7 7 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 4.96 vpr 59.72 MiB 0.02 5796 -1 -1 1 0.00 -1 -1 29460 -1 -1 3 13 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61152 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 21.2 MiB 0.02 120 59.7 MiB 0.03 0.00 0.704848 -12.3611 -0.704848 0.704848 0.95 4.9496e-05 3.7228e-05 0.00158076 0.00123894 26 269 11 6.64007e+06 37674 477104. 1650.88 2.02 0.0158519 0.0128929 21682 110474 -1 254 12 135 135 9406 2442 0 0 9406 2442 135 135 0 0 578 493 0 0 710 622 0 0 135 135 0 0 3323 653 0 0 4525 404 0 0 135 0 0 0 0 0 135 0 0 0.912248 0.912248 -15.8431 -0.912248 0 0 585099. 2024.56 0.20 0.01 0.13 -1 -1 0.20 0.00128612 0.00111449 19 -1 8 8 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 4.11 vpr 59.56 MiB 0.02 6152 -1 -1 1 0.01 -1 -1 29512 -1 -1 3 15 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60992 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 21.0 MiB 0.02 91 59.6 MiB 0.02 0.00 0.944958 -13.1993 -0.944958 0.944958 1.04 6.147e-05 4.7175e-05 0.00190607 0.00151593 26 279 9 6.64007e+06 37674 477104. 1650.88 0.96 0.0108128 0.00894119 21682 110474 -1 253 15 175 175 8709 2963 0 0 8709 2963 175 175 0 0 673 575 0 0 989 813 0 0 175 175 0 0 3463 632 0 0 3234 593 0 0 175 0 0 0 0 0 175 0 0 1.08545 1.08545 -19.6524 -1.08545 0 0 585099. 2024.56 0.20 0.01 0.11 -1 -1 0.20 0.00235599 0.0020408 22 -1 9 9 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.98 vpr 59.88 MiB 0.03 5796 -1 -1 1 0.01 -1 -1 29516 -1 -1 4 17 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61312 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 21.2 MiB 0.04 136 59.9 MiB 0.01 0.00 0.955958 -16.5726 -0.955958 0.955958 0.90 6.0581e-05 4.512e-05 0.0018641 0.00146486 26 328 15 6.64007e+06 50232 477104. 1650.88 0.79 0.0113297 0.00930649 21682 110474 -1 318 12 156 156 9370 3038 0 0 9370 3038 156 156 0 0 650 551 0 0 881 751 0 0 156 156 0 0 4066 788 0 0 3461 636 0 0 156 0 0 0 0 0 156 0 0 1.04145 1.04145 -22.3642 -1.04145 0 0 585099. 2024.56 0.24 0.11 0.11 -1 -1 0.24 0.00342837 0.00302942 25 -1 10 10 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.83 vpr 59.73 MiB 0.03 5804 -1 -1 1 0.01 -1 -1 29560 -1 -1 4 19 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61168 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 21.2 MiB 0.03 164 59.7 MiB 0.05 0.00 0.966958 -18.6348 -0.966958 0.966958 0.90 7.3547e-05 5.6411e-05 0.00251771 0.00200241 22 429 15 6.64007e+06 50232 420624. 1455.45 1.84 0.0184856 0.0153382 20818 92861 -1 354 10 146 146 9733 2665 0 0 9733 2665 146 146 0 0 547 431 0 0 683 594 0 0 146 146 0 0 3756 754 0 0 4455 594 0 0 146 0 0 0 0 0 146 0 0 0.932248 0.932248 -23.441 -0.932248 0 0 500653. 1732.36 0.24 0.01 0.12 -1 -1 0.24 0.00270973 0.00240045 28 -1 11 11 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 5.59 vpr 59.89 MiB 0.01 6052 -1 -1 1 0.01 -1 -1 29652 -1 -1 5 21 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61324 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 21.4 MiB 0.06 150 59.9 MiB 0.02 0.00 0.977958 -20.1069 -0.977958 0.977958 1.00 7.3738e-05 5.5665e-05 0.00378316 0.00293815 26 441 19 6.64007e+06 62790 477104. 1650.88 2.18 0.0249199 0.0206319 21682 110474 -1 386 15 238 238 15552 4237 0 0 15552 4237 238 238 0 0 898 700 0 0 1354 995 0 0 238 238 0 0 6081 1057 0 0 6743 1009 0 0 238 0 0 0 0 0 238 0 0 1.00925 1.00925 -26.6027 -1.00925 0 0 585099. 2024.56 0.27 0.02 0.13 -1 -1 0.27 0.00365884 0.0031758 31 -1 12 12 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 5.49 vpr 59.66 MiB 0.01 5956 -1 -1 1 0.00 -1 -1 29480 -1 -1 5 23 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61088 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 21.1 MiB 0.03 285 59.7 MiB 0.02 0.00 0.988958 -25.0758 -0.988958 0.988958 1.02 8.593e-05 6.6714e-05 0.0024017 0.00192521 26 570 12 6.64007e+06 62790 477104. 1650.88 2.23 0.0224829 0.0188277 21682 110474 -1 533 12 208 208 16451 4025 0 0 16451 4025 208 208 0 0 812 630 0 0 1104 903 0 0 208 208 0 0 7428 941 0 0 6691 1135 0 0 208 0 0 0 0 0 208 0 0 0.987248 0.987248 -30.9393 -0.987248 0 0 585099. 2024.56 0.19 0.01 0.10 -1 -1 0.19 0.00196681 0.00173659 34 -1 13 13 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 5.50 vpr 59.80 MiB 0.07 6068 -1 -1 1 0.01 -1 -1 29580 -1 -1 5 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61232 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 21.3 MiB 0.04 230 59.8 MiB 0.03 0.00 0.999958 -25.2478 -0.999958 0.999958 1.04 8.7051e-05 6.7917e-05 0.003298 0.00271258 30 552 13 6.64007e+06 62790 526063. 1820.29 2.10 0.0314687 0.0268633 22546 126617 -1 448 9 189 189 8466 2484 0 0 8466 2484 189 189 0 0 647 469 0 0 766 649 0 0 189 189 0 0 3633 486 0 0 3042 502 0 0 189 0 0 0 0 0 189 0 0 1.02025 1.02025 -31.8023 -1.02025 0 0 666494. 2306.21 0.29 0.02 0.12 -1 -1 0.29 0.00346331 0.00309047 37 -1 14 14 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.26 vpr 59.83 MiB 0.03 6076 -1 -1 1 0.02 -1 -1 29468 -1 -1 6 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61264 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 21.2 MiB 0.03 317 59.8 MiB 0.02 0.00 1.01096 -28.0751 -1.01096 1.01096 1.05 6.8572e-05 5.1439e-05 0.00280616 0.00226922 26 688 14 6.64007e+06 75348 477104. 1650.88 2.09 0.0280057 0.0233469 21682 110474 -1 643 19 318 318 24167 6067 0 0 24167 6067 318 318 0 0 1238 1025 0 0 1692 1376 0 0 318 318 0 0 11182 1401 0 0 9419 1629 0 0 318 0 0 0 0 0 318 0 0 1.04225 1.04225 -37.6697 -1.04225 0 0 585099. 2024.56 0.22 0.11 0.10 -1 -1 0.22 0.00574086 0.00497189 40 -1 15 15 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 6.44 vpr 59.98 MiB 0.01 5960 -1 -1 1 0.02 -1 -1 29584 -1 -1 6 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61420 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 21.4 MiB 0.03 223 60.0 MiB 0.04 0.00 1.02196 -27.5478 -1.02196 1.02196 1.03 0.000102462 7.9472e-05 0.00372166 0.00298966 32 619 18 6.64007e+06 75348 554710. 1919.41 3.13 0.0370386 0.0314233 22834 132086 -1 506 10 281 281 14903 4498 0 0 14903 4498 281 281 0 0 1045 836 0 0 1500 1141 0 0 281 281 0 0 7218 824 0 0 4578 1135 0 0 281 0 0 0 0 0 281 0 0 1.05325 1.05325 -36.9334 -1.05325 0 0 701300. 2426.64 0.28 0.01 0.16 -1 -1 0.28 0.00242057 0.00215675 43 -1 16 16 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 5.10 vpr 60.03 MiB 0.01 5944 -1 -1 1 0.00 -1 -1 29668 -1 -1 7 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61472 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 21.6 MiB 0.03 346 60.0 MiB 0.03 0.00 1.26207 -31.2273 -1.26207 1.26207 1.01 0.000116285 9.0602e-05 0.00349598 0.00281003 20 1003 45 6.64007e+06 87906 394039. 1363.46 1.93 0.0254239 0.021351 20530 87850 -1 854 17 430 430 43291 10539 0 0 43291 10539 430 430 0 0 1731 1475 0 0 2485 2045 0 0 430 430 0 0 19996 2957 0 0 18219 3202 0 0 430 0 0 0 0 0 430 0 0 1.43505 1.43505 -46.9042 -1.43505 0 0 477104. 1650.88 0.18 0.04 0.11 -1 -1 0.18 0.00462544 0.00404147 46 -1 17 17 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 4.06 vpr 60.09 MiB 0.02 6172 -1 -1 1 0.01 -1 -1 29552 -1 -1 7 33 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61532 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 21.7 MiB 0.04 500 60.1 MiB 0.04 0.00 1.27307 -40.0864 -1.27307 1.27307 1.03 5.8852e-05 4.4661e-05 0.00620991 0.00486548 26 927 17 6.64007e+06 87906 477104. 1650.88 0.93 0.0259351 0.0218044 21682 110474 -1 872 15 422 422 41372 9115 0 0 41372 9115 422 422 0 0 1697 1432 0 0 2354 1957 0 0 422 422 0 0 19038 2483 0 0 17439 2399 0 0 422 0 0 0 0 0 422 0 0 1.05125 1.05125 -47.3502 -1.05125 0 0 585099. 2024.56 0.22 0.03 0.12 -1 -1 0.22 0.00516255 0.00453602 49 -1 18 18 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 5.33 vpr 60.18 MiB 0.01 6088 -1 -1 1 0.01 -1 -1 29584 -1 -1 8 37 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61620 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 21.7 MiB 0.04 385 60.2 MiB 0.03 0.00 1.29507 -39.3266 -1.29507 1.29507 1.05 0.000129817 0.000101741 0.00288893 0.00228773 28 879 17 6.64007e+06 100464 500653. 1732.36 1.92 0.0435515 0.0369927 21970 115934 -1 789 16 331 331 23628 6111 0 0 23628 6111 331 331 0 0 1251 992 0 0 1739 1429 0 0 331 331 0 0 10120 1463 0 0 9856 1565 0 0 331 0 0 0 0 0 331 0 0 1.05125 1.05125 -48.7867 -1.05125 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.00638509 0.00560498 55 -1 20 20 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 6.42 vpr 60.29 MiB 0.02 6168 -1 -1 1 0.00 -1 -1 29584 -1 -1 8 41 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61736 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 21.7 MiB 0.12 576 60.3 MiB 0.15 0.00 1.31707 -49.5491 -1.31707 1.31707 1.01 0.000175243 0.00013993 0.00788782 0.00646459 32 1120 13 6.64007e+06 100464 554710. 1919.41 2.81 0.0615198 0.0521408 22834 132086 -1 1038 19 562 562 44751 10614 0 0 44751 10614 562 562 0 0 2155 1768 0 0 3132 2409 0 0 562 562 0 0 19105 2622 0 0 19235 2691 0 0 562 0 0 0 0 0 562 0 0 1.03125 1.03125 -56.3478 -1.03125 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.00761654 0.00665171 61 -1 22 22 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 6.34 vpr 60.30 MiB 0.02 6104 -1 -1 1 0.02 -1 -1 29680 -1 -1 9 45 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61752 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 21.8 MiB 0.04 586 60.3 MiB 0.20 0.00 1.33907 -53.2046 -1.33907 1.33907 1.05 0.000173949 0.000141258 0.0104415 0.00848722 28 1205 16 6.64007e+06 113022 500653. 1732.36 2.79 0.0581651 0.0493022 21970 115934 -1 1071 16 575 575 42044 10038 0 0 42044 10038 575 575 0 0 2068 1643 0 0 2980 2337 0 0 575 575 0 0 17857 2530 0 0 17989 2378 0 0 575 0 0 0 0 0 575 0 0 1.15145 1.15145 -61.3624 -1.15145 0 0 612192. 2118.31 0.23 0.10 0.14 -1 -1 0.23 0.00871256 0.00775935 67 -1 24 24 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 6.84 vpr 60.23 MiB 0.01 6060 -1 -1 1 0.01 -1 -1 29616 -1 -1 10 49 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61676 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 21.7 MiB 0.06 769 60.2 MiB 0.29 0.00 1.59018 -62.8916 -1.59018 1.59018 0.92 0.000189286 0.000150098 0.0151092 0.01231 32 1366 14 6.64007e+06 125580 554710. 1919.41 3.24 0.0695459 0.0590315 22834 132086 -1 1286 17 561 561 45552 10573 0 0 45552 10573 561 561 0 0 2226 1852 0 0 3241 2573 0 0 561 561 0 0 20138 2520 0 0 18825 2506 0 0 561 0 0 0 0 0 561 0 0 1.17025 1.17025 -70.9253 -1.17025 0 0 701300. 2426.64 0.28 0.16 0.14 -1 -1 0.28 0.010172 0.00894295 73 -1 26 26 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 6.21 vpr 60.26 MiB 0.04 6144 -1 -1 1 0.01 -1 -1 29568 -1 -1 11 57 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61704 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 21.6 MiB 0.06 784 60.3 MiB 0.23 0.01 1.63418 -71.5794 -1.63418 1.63418 1.08 0.000208025 0.000167841 0.0112084 0.0092926 28 1596 14 6.64007e+06 138138 500653. 1732.36 2.59 0.0824557 0.0707037 21970 115934 -1 1506 13 670 670 53454 12907 0 0 53454 12907 670 670 0 0 2584 2076 0 0 3590 3005 0 0 670 670 0 0 24733 3039 0 0 21207 3447 0 0 670 0 0 0 0 0 670 0 0 1.35645 1.35645 -87.0176 -1.35645 0 0 612192. 2118.31 0.26 0.02 0.14 -1 -1 0.26 0.00607551 0.00544645 85 -1 30 30 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 6.41 vpr 60.68 MiB 0.02 6192 -1 -1 1 0.01 -1 -1 29692 -1 -1 13 65 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62136 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 22.2 MiB 0.05 775 60.7 MiB 0.34 0.01 1.90729 -80.6611 -1.90729 1.90729 1.12 0.000246467 0.000197731 0.0194904 0.0160756 26 1815 23 6.64007e+06 163254 477104. 1650.88 2.50 0.0845002 0.0727056 21682 110474 -1 1595 15 735 735 61902 16605 0 0 61902 16605 735 735 0 0 2884 2352 0 0 4054 3384 0 0 735 735 0 0 26764 4712 0 0 26730 4687 0 0 735 0 0 0 0 0 735 0 0 1.28925 1.28925 -94.4805 -1.28925 0 0 585099. 2024.56 0.26 0.06 0.13 -1 -1 0.26 0.0120146 0.0106389 97 -1 34 34 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 5.30 vpr 61.39 MiB 0.02 6400 -1 -1 1 0.01 -1 -1 29888 -1 -1 19 97 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62860 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 22.5 MiB 0.07 1529 61.4 MiB 0.46 0.01 2.54151 -145.326 -2.54151 2.54151 1.03 0.000392066 0.000324818 0.0377318 0.0317371 30 2785 15 6.64007e+06 238602 526063. 1820.29 1.35 0.0995672 0.0863453 22546 126617 -1 2396 18 1016 1016 75150 17176 0 0 75150 17176 1016 1016 0 0 3564 2632 0 0 4437 3682 0 0 1016 1016 0 0 32424 4668 0 0 32693 4162 0 0 1016 0 0 0 0 0 1016 0 0 1.43025 1.43025 -141.665 -1.43025 0 0 666494. 2306.21 0.29 0.06 0.13 -1 -1 0.29 0.0187267 0.0169059 145 -1 50 50 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 7.45 vpr 62.25 MiB 0.04 6728 -1 -1 1 0.02 -1 -1 29980 -1 -1 25 129 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63740 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 23.5 MiB 0.09 1858 62.2 MiB 0.73 0.01 3.17573 -209.682 -3.17573 3.17573 0.96 0.000839461 0.000743084 0.0637276 0.0553248 32 3742 19 6.64007e+06 313950 554710. 1919.41 3.27 0.223764 0.198731 22834 132086 -1 3335 15 1304 1304 118164 27254 0 0 118164 27254 1304 1304 0 0 5029 4058 0 0 7651 5818 0 0 1304 1304 0 0 53544 7260 0 0 49332 7510 0 0 1304 0 0 0 0 0 1304 0 0 1.61325 1.61325 -195.414 -1.61325 0 0 701300. 2426.64 0.29 0.07 0.14 -1 -1 0.29 0.0185331 0.0168202 193 -1 66 66 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.76 vpr 59.27 MiB 0.01 5896 -1 -1 1 0.01 -1 -1 29396 -1 -1 2 7 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60696 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 20.8 MiB 0.01 31 59.3 MiB 0.01 0.00 0.649848 -5.81513 -0.649848 0.649848 1.06 2.8387e-05 2.0533e-05 0.000722513 0.00055242 20 89 4 6.65987e+06 25356 394039. 1363.46 0.63 0.00175511 0.00145583 20530 87850 -1 93 4 24 24 1556 541 0 0 1556 541 24 24 0 0 108 90 0 0 134 108 0 0 24 24 0 0 511 154 0 0 755 141 0 0 24 0 0 0 0 0 24 0 0 0.71851 0.71851 -7.49793 -0.71851 0 0 477104. 1650.88 0.22 0.00 0.11 -1 -1 0.22 0.000887808 0.000795756 10 -1 5 5 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.98 vpr 59.29 MiB 0.01 5928 -1 -1 1 0.01 -1 -1 29388 -1 -1 2 9 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60716 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 20.8 MiB 0.01 50 59.3 MiB 0.01 0.00 0.671848 -7.92422 -0.671848 0.671848 1.07 4.896e-05 3.9411e-05 0.00107344 0.000821629 20 145 9 6.65987e+06 25356 394039. 1363.46 0.65 0.00285331 0.00233412 20530 87850 -1 135 11 72 72 2478 935 0 0 2478 935 72 72 0 0 274 218 0 0 332 282 0 0 72 72 0 0 732 172 0 0 996 119 0 0 72 0 0 0 0 0 72 0 0 0.912248 0.912248 -10.5686 -0.912248 0 0 477104. 1650.88 0.22 0.01 0.08 -1 -1 0.22 0.00147747 0.00125195 13 -1 6 6 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 5.68 vpr 59.27 MiB 0.01 5896 -1 -1 1 0.01 -1 -1 29500 -1 -1 2 11 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60696 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 20.7 MiB 0.01 74 59.3 MiB 0.05 0.00 0.682848 -9.46185 -0.682848 0.682848 1.12 6.1419e-05 4.7759e-05 0.00141855 0.00112267 26 218 12 6.65987e+06 25356 477104. 1650.88 2.47 0.0163527 0.0132521 21682 110474 -1 179 10 113 113 6510 2010 0 0 6510 2010 113 113 0 0 417 358 0 0 604 465 0 0 113 113 0 0 2399 448 0 0 2864 513 0 0 113 0 0 0 0 0 113 0 0 0.792048 0.792048 -12.4308 -0.792048 0 0 585099. 2024.56 0.26 0.02 0.13 -1 -1 0.26 0.00163298 0.00141082 16 -1 7 7 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 5.21 vpr 59.37 MiB 0.01 5940 -1 -1 1 0.01 -1 -1 29524 -1 -1 3 13 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60792 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 20.7 MiB 0.01 136 59.4 MiB 0.01 0.00 0.704848 -12.8419 -0.704848 0.704848 1.13 4.5327e-05 3.3985e-05 0.0013597 0.00108514 20 314 13 6.65987e+06 38034 394039. 1363.46 1.94 0.00937369 0.00774953 20530 87850 -1 289 18 148 148 9154 2271 0 0 9154 2271 148 148 0 0 493 383 0 0 774 555 0 0 148 148 0 0 3816 529 0 0 3775 508 0 0 148 0 0 0 0 0 148 0 0 0.972389 0.972389 -16.3784 -0.972389 0 0 477104. 1650.88 0.19 0.04 0.09 -1 -1 0.19 0.00366313 0.00313507 19 -1 8 8 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.76 vpr 59.29 MiB 0.01 5912 -1 -1 1 0.01 -1 -1 29564 -1 -1 3 15 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60712 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 20.7 MiB 0.01 96 59.3 MiB 0.02 0.00 0.944958 -13.4397 -0.944958 0.944958 1.08 5.8255e-05 4.4174e-05 0.00209959 0.00171634 26 266 12 6.65987e+06 38034 477104. 1650.88 0.74 0.00783974 0.00640869 21682 110474 -1 259 11 187 187 10280 3495 0 0 10280 3495 187 187 0 0 781 681 0 0 1026 855 0 0 187 187 0 0 4362 827 0 0 3737 758 0 0 187 0 0 0 0 0 187 0 0 1.03045 1.03045 -18.7852 -1.03045 0 0 585099. 2024.56 0.24 0.09 0.13 -1 -1 0.24 0.00284821 0.00251483 22 -1 9 9 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 5.18 vpr 59.35 MiB 0.02 6096 -1 -1 1 0.01 -1 -1 29580 -1 -1 4 17 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60776 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 21.0 MiB 0.01 172 59.4 MiB 0.01 0.00 0.955958 -16.212 -0.955958 0.955958 1.01 4.8807e-05 3.6714e-05 0.00138565 0.00110099 26 363 10 6.65987e+06 50712 477104. 1650.88 2.17 0.020586 0.0171554 21682 110474 -1 339 11 161 161 10139 3001 0 0 10139 3001 161 161 0 0 729 624 0 0 919 836 0 0 161 161 0 0 4416 544 0 0 3753 675 0 0 161 0 0 0 0 0 161 0 0 0.845048 0.845048 -21.0568 -0.845048 0 0 585099. 2024.56 0.27 0.01 0.13 -1 -1 0.27 0.00265545 0.00234463 25 -1 10 10 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 5.24 vpr 59.40 MiB 0.01 6040 -1 -1 1 0.01 -1 -1 29452 -1 -1 4 19 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60824 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 21.0 MiB 0.01 223 59.4 MiB 0.03 0.00 0.966958 -20.1974 -0.966958 0.966958 1.05 7.0745e-05 5.4132e-05 0.00355296 0.00282877 22 502 14 6.65987e+06 50712 420624. 1455.45 2.40 0.0216999 0.017873 20818 92861 -1 440 14 189 189 13578 3349 0 0 13578 3349 189 189 0 0 704 568 0 0 868 740 0 0 189 189 0 0 5571 912 0 0 6057 751 0 0 189 0 0 0 0 0 189 0 0 0.998248 0.998248 -26.181 -0.998248 0 0 500653. 1732.36 0.23 0.04 0.11 -1 -1 0.23 0.00293827 0.00254832 28 -1 11 11 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 5.98 vpr 59.59 MiB 0.01 5928 -1 -1 1 0.01 -1 -1 29532 -1 -1 5 21 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61020 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 21.0 MiB 0.02 148 59.6 MiB 0.13 0.00 0.977958 -19.6261 -0.977958 0.977958 1.02 6.4135e-05 5.1523e-05 0.00488959 0.00402954 32 405 17 6.65987e+06 63390 554710. 1919.41 2.85 0.0325319 0.0270954 22834 132086 -1 324 11 211 211 13044 3848 0 0 13044 3848 211 211 0 0 874 720 0 0 1317 1038 0 0 211 211 0 0 4831 895 0 0 5600 773 0 0 211 0 0 0 0 0 211 0 0 0.987248 0.987248 -24.9703 -0.987248 0 0 701300. 2426.64 0.32 0.08 0.16 -1 -1 0.32 0.00377214 0.00335493 31 -1 12 12 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 5.41 vpr 59.54 MiB 0.01 5924 -1 -1 1 0.01 -1 -1 29608 -1 -1 5 23 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60964 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 21.0 MiB 0.01 226 59.5 MiB 0.10 0.00 0.988958 -23.1526 -0.988958 0.988958 1.06 0.000106766 8.6505e-05 0.00321761 0.00265731 26 537 13 6.65987e+06 63390 477104. 1650.88 2.39 0.0237014 0.0198586 21682 110474 -1 516 16 267 267 17878 4944 0 0 17878 4944 267 267 0 0 1055 873 0 0 1525 1277 0 0 267 267 0 0 7074 1197 0 0 7690 1063 0 0 267 0 0 0 0 0 267 0 0 1.11845 1.11845 -31.5081 -1.11845 0 0 585099. 2024.56 0.27 0.04 0.13 -1 -1 0.27 0.00449473 0.00390847 34 -1 13 13 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.54 vpr 59.62 MiB 0.01 5980 -1 -1 1 0.01 -1 -1 29520 -1 -1 5 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61048 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 21.0 MiB 0.02 288 59.6 MiB 0.02 0.00 0.999958 -25.1276 -0.999958 0.999958 0.88 9.5436e-05 7.4789e-05 0.00301212 0.0024271 26 653 16 6.65987e+06 63390 477104. 1650.88 0.95 0.0175835 0.0148265 21682 110474 -1 610 14 288 288 22801 5956 0 0 22801 5956 288 288 0 0 1184 975 0 0 1783 1500 0 0 288 288 0 0 10200 1379 0 0 9058 1526 0 0 288 0 0 0 0 0 288 0 0 1.02145 1.02145 -34.5785 -1.02145 0 0 585099. 2024.56 0.27 0.03 0.13 -1 -1 0.27 0.00421141 0.00369068 37 -1 14 14 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.49 vpr 59.74 MiB 0.01 5908 -1 -1 1 0.00 -1 -1 29636 -1 -1 6 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61172 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 21.2 MiB 0.01 316 59.7 MiB 0.03 0.00 1.01096 -27.9549 -1.01096 1.01096 0.99 9.4065e-05 7.3799e-05 0.00302859 0.00242311 26 718 14 6.65987e+06 76068 477104. 1650.88 2.73 0.0414714 0.0350221 21682 110474 -1 656 14 289 289 20679 5372 0 0 20679 5372 289 289 0 0 1159 939 0 0 1642 1344 0 0 289 289 0 0 9426 1155 0 0 7874 1356 0 0 289 0 0 0 0 0 289 0 0 1.02025 1.02025 -36.8087 -1.02025 0 0 585099. 2024.56 0.26 0.03 0.13 -1 -1 0.26 0.00460973 0.00402086 40 -1 15 15 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 5.93 vpr 59.62 MiB 0.01 6036 -1 -1 1 0.00 -1 -1 29652 -1 -1 6 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61056 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 20.9 MiB 0.02 233 59.6 MiB 0.05 0.00 1.02196 -28.1488 -1.02196 1.02196 1.15 0.000123463 9.8823e-05 0.00427994 0.00352256 26 651 19 6.65987e+06 76068 477104. 1650.88 2.72 0.0433709 0.0365415 21682 110474 -1 608 18 403 403 25508 7933 0 0 25508 7933 403 403 0 0 1617 1386 0 0 2358 1925 0 0 403 403 0 0 11661 1979 0 0 9066 1837 0 0 403 0 0 0 0 0 403 0 0 1.15145 1.15145 -39.6604 -1.15145 0 0 585099. 2024.56 0.26 0.03 0.13 -1 -1 0.26 0.00580241 0.00503818 43 -1 16 16 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 5.48 vpr 59.89 MiB 0.01 5968 -1 -1 1 0.01 -1 -1 29652 -1 -1 7 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61328 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 21.5 MiB 0.02 368 59.9 MiB 0.06 0.00 1.26207 -32.5495 -1.26207 1.26207 1.07 0.000109353 8.4419e-05 0.00394038 0.00318603 26 821 11 6.65987e+06 88746 477104. 1650.88 2.30 0.0309892 0.0261152 21682 110474 -1 785 12 334 334 25625 6686 0 0 25625 6686 334 334 0 0 1299 1104 0 0 2090 1669 0 0 334 334 0 0 11390 1528 0 0 10178 1717 0 0 334 0 0 0 0 0 334 0 0 1.08425 1.08425 -43.44 -1.08425 0 0 585099. 2024.56 0.23 0.02 0.14 -1 -1 0.23 0.00487016 0.0043327 46 -1 17 17 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 4.24 vpr 59.92 MiB 0.01 6180 -1 -1 1 0.01 -1 -1 29600 -1 -1 7 33 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61360 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 21.5 MiB 0.01 502 59.9 MiB 0.06 0.00 1.27307 -39.9662 -1.27307 1.27307 1.08 0.000122715 9.6066e-05 0.00842858 0.00672236 26 880 13 6.65987e+06 88746 477104. 1650.88 1.08 0.0297845 0.0252506 21682 110474 -1 882 12 361 361 29861 7205 0 0 29861 7205 361 361 0 0 1496 1224 0 0 2090 1711 0 0 361 361 0 0 13628 1677 0 0 11925 1871 0 0 361 0 0 0 0 0 361 0 0 0.962989 0.962989 -46.4071 -0.962989 0 0 585099. 2024.56 0.31 0.02 0.13 -1 -1 0.31 0.00514706 0.00455435 49 -1 18 18 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.21 vpr 60.05 MiB 0.01 5992 -1 -1 1 0.01 -1 -1 29672 -1 -1 8 37 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61492 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 21.5 MiB 0.02 289 60.1 MiB 0.05 0.00 1.29507 -37.4034 -1.29507 1.29507 1.07 0.000130686 0.000103248 0.00575527 0.00466043 28 735 17 6.65987e+06 101424 500653. 1732.36 0.97 0.0268496 0.0227226 21970 115934 -1 650 15 411 411 21461 7032 0 0 21461 7032 411 411 0 0 1549 1292 0 0 2218 1841 0 0 411 411 0 0 9967 1487 0 0 6905 1590 0 0 411 0 0 0 0 0 411 0 0 1.10625 1.10625 -47.6907 -1.10625 0 0 612192. 2118.31 0.28 0.02 0.14 -1 -1 0.28 0.00639269 0.00563848 55 -1 20 20 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.29 vpr 60.07 MiB 0.01 6120 -1 -1 1 0.01 -1 -1 29608 -1 -1 8 41 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61516 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 21.5 MiB 0.03 442 60.1 MiB 0.05 0.00 1.31707 -44.9815 -1.31707 1.31707 0.70 0.00015048 0.000123407 0.00639042 0.00516374 30 922 11 6.65987e+06 101424 526063. 1820.29 0.67 0.0240909 0.0203574 22546 126617 -1 834 12 313 313 17146 4852 0 0 17146 4852 313 313 0 0 1189 924 0 0 1433 1274 0 0 313 313 0 0 7333 944 0 0 6565 1084 0 0 313 0 0 0 0 0 313 0 0 1.01905 1.01905 -52.3385 -1.01905 0 0 666494. 2306.21 0.28 0.06 0.15 -1 -1 0.28 0.00672668 0.00603607 61 -1 22 22 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.25 vpr 60.14 MiB 0.01 6084 -1 -1 1 0.01 -1 -1 29596 -1 -1 9 45 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61580 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 21.7 MiB 0.02 581 60.1 MiB 0.06 0.00 1.33907 -52.9642 -1.33907 1.33907 1.06 0.00015512 0.000124343 0.00680859 0.00549022 28 1254 25 6.65987e+06 114102 500653. 1732.36 0.96 0.0330334 0.0279784 21970 115934 -1 1113 18 532 532 41885 10197 0 0 41885 10197 532 532 0 0 2071 1723 0 0 2911 2450 0 0 532 532 0 0 17010 2681 0 0 18829 2279 0 0 532 0 0 0 0 0 532 0 0 1.10625 1.10625 -61.4466 -1.10625 0 0 612192. 2118.31 0.25 0.12 0.14 -1 -1 0.25 0.009609 0.00858701 67 -1 24 24 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 6.36 vpr 60.18 MiB 0.01 6208 -1 -1 1 0.00 -1 -1 29604 -1 -1 10 49 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61624 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 21.7 MiB 0.03 770 60.2 MiB 0.05 0.00 1.59018 -62.6512 -1.59018 1.59018 0.94 9.5302e-05 7.4865e-05 0.00713191 0.00570617 32 1387 15 6.65987e+06 126780 554710. 1919.41 2.99 0.0543992 0.046064 22834 132086 -1 1260 15 576 576 44955 10853 0 0 44955 10853 576 576 0 0 2322 1968 0 0 3559 2877 0 0 576 576 0 0 19782 2396 0 0 18140 2460 0 0 576 0 0 0 0 0 576 0 0 1.20445 1.20445 -70.2023 -1.20445 0 0 701300. 2426.64 0.31 0.17 0.17 -1 -1 0.31 0.0102986 0.00924928 73 -1 26 26 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.41 vpr 60.12 MiB 0.01 6036 -1 -1 1 0.01 -1 -1 29768 -1 -1 11 57 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61568 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 21.5 MiB 0.03 772 60.1 MiB 0.11 0.00 1.63418 -71.6996 -1.63418 1.63418 1.07 0.000211509 0.000168206 0.014142 0.0114681 32 1614 16 6.65987e+06 139458 554710. 1919.41 1.01 0.0454167 0.0385372 22834 132086 -1 1482 12 561 561 51608 12515 0 0 51608 12515 561 561 0 0 2343 1977 0 0 3430 2814 0 0 561 561 0 0 22476 3195 0 0 22237 3407 0 0 561 0 0 0 0 0 561 0 0 1.24845 1.24845 -82.1131 -1.24845 0 0 701300. 2426.64 0.30 0.04 0.15 -1 -1 0.30 0.00970454 0.00879925 85 -1 30 30 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.39 vpr 60.39 MiB 0.01 6200 -1 -1 1 0.02 -1 -1 29624 -1 -1 13 65 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61836 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 21.8 MiB 0.03 783 60.4 MiB 0.15 0.00 1.90729 -79.8197 -1.90729 1.90729 1.08 0.000239191 0.000189966 0.0171172 0.0138421 28 1706 19 6.65987e+06 164814 500653. 1732.36 2.00 0.0890901 0.0768886 21970 115934 -1 1507 15 629 629 44806 11820 0 0 44806 11820 629 629 0 0 2449 2010 0 0 3288 2785 0 0 629 629 0 0 19554 2882 0 0 18257 2885 0 0 629 0 0 0 0 0 629 0 0 1.28925 1.28925 -91.3553 -1.28925 0 0 612192. 2118.31 0.27 0.04 0.14 -1 -1 0.27 0.0108023 0.00959378 97 -1 34 34 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 6.85 vpr 61.12 MiB 0.02 6480 -1 -1 1 0.01 -1 -1 29932 -1 -1 19 97 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62588 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 22.4 MiB 0.05 1526 61.1 MiB 0.26 0.01 2.54151 -144.605 -2.54151 2.54151 0.65 0.000402045 0.000331069 0.0261032 0.0215228 30 2862 31 6.65987e+06 240882 526063. 1820.29 3.47 0.190638 0.167301 22546 126617 -1 2486 14 890 890 62246 14850 0 0 62246 14850 890 890 0 0 3156 2379 0 0 3941 3299 0 0 890 890 0 0 27247 3774 0 0 26122 3618 0 0 890 0 0 0 0 0 890 0 0 1.48219 1.48219 -144.637 -1.48219 0 0 666494. 2306.21 0.30 0.19 0.16 -1 -1 0.30 0.0191817 0.0173649 145 -1 50 50 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 8.15 vpr 61.94 MiB 0.02 6568 -1 -1 1 0.02 -1 -1 30088 -1 -1 25 129 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63428 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 23.2 MiB 0.07 1825 61.9 MiB 0.48 0.01 3.17573 -210.043 -3.17573 3.17573 1.08 0.000332044 0.000281467 0.0478822 0.0409076 30 3719 18 6.65987e+06 316950 526063. 1820.29 3.98 0.239462 0.211517 22546 126617 -1 3191 11 1177 1177 89867 21214 0 0 89867 21214 1177 1177 0 0 4273 3321 0 0 5367 4562 0 0 1177 1177 0 0 41200 5208 0 0 36673 5769 0 0 1177 0 0 0 0 0 1177 0 0 1.59005 1.59005 -192.556 -1.59005 0 0 666494. 2306.21 0.31 0.10 0.15 -1 -1 0.31 0.02139 0.0197082 193 -1 66 66 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 4.29 vpr 60.39 MiB 0.02 5920 -1 -1 1 0.01 -1 -1 29560 -1 -1 1 7 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61844 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 21.9 MiB 0.02 24 60.4 MiB 0.01 0.00 0.712895 -6.47614 -0.712895 0.712895 1.08 2.8207e-05 2.0542e-05 0.000903633 0.000686614 12 113 7 6.95648e+06 14475.7 243793. 843.575 1.20 0.00643639 0.00507897 21730 64085 -1 98 8 36 36 1531 552 0 0 1531 552 36 36 0 0 147 106 0 0 173 147 0 0 36 36 0 0 642 107 0 0 497 120 0 0 36 0 0 0 0 0 36 0 0 0.74674 0.74674 -8.73153 -0.74674 0 0 332735. 1151.33 0.16 0.03 0.08 -1 -1 0.16 0.00129239 0.00112067 5 -1 5 5 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 3.65 vpr 60.09 MiB 0.01 5920 -1 -1 1 0.01 -1 -1 29436 -1 -1 1 9 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61536 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 21.5 MiB 0.02 37 60.1 MiB 0.00 0.00 0.512442 -7.87537 -0.512442 0.512442 0.67 2.0962e-05 1.528e-05 0.000737548 0.000577657 22 135 8 6.95648e+06 14475.7 443629. 1535.05 1.13 0.0107495 0.00854181 23458 102101 -1 103 7 27 27 1432 440 0 0 1432 440 27 27 0 0 81 72 0 0 104 94 0 0 27 27 0 0 627 93 0 0 566 127 0 0 27 0 0 0 0 0 27 0 0 0.709292 0.709292 -9.75487 -0.709292 0 0 531479. 1839.03 0.15 0.00 0.07 -1 -1 0.15 0.000770461 0.000681667 7 -1 6 6 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 4.30 vpr 60.45 MiB 0.01 5804 -1 -1 1 0.00 -1 -1 29560 -1 -1 1 11 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61900 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 21.9 MiB 0.05 104 60.4 MiB 0.00 0.00 0.701895 -11.5351 -0.701895 0.701895 1.03 2.1349e-05 1.4714e-05 0.000433301 0.000362991 22 209 14 6.95648e+06 14475.7 443629. 1535.05 1.35 0.00614939 0.00493083 23458 102101 -1 191 7 48 48 5233 1284 0 0 5233 1284 48 48 0 0 218 170 0 0 243 231 0 0 48 48 0 0 2105 513 0 0 2571 274 0 0 48 0 0 0 0 0 48 0 0 0.74674 0.74674 -13.5399 -0.74674 0 0 531479. 1839.03 0.19 0.01 0.08 -1 -1 0.19 0.00147084 0.00130683 8 -1 7 7 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 3.75 vpr 60.21 MiB 0.01 5952 -1 -1 1 0.01 -1 -1 29400 -1 -1 2 13 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61656 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 21.6 MiB 0.04 56 60.2 MiB 0.01 0.00 0.710132 -12.1558 -0.710132 0.710132 0.85 2.5365e-05 1.7947e-05 0.000808295 0.000626752 16 160 10 6.95648e+06 28951.4 332735. 1151.33 1.04 0.00423326 0.00347345 22306 75877 -1 164 8 84 84 2842 1280 0 0 2842 1280 84 84 0 0 298 250 0 0 357 303 0 0 84 84 0 0 1075 291 0 0 944 268 0 0 84 0 0 0 0 0 84 0 0 0.955932 0.955932 -16.5365 -0.955932 0 0 414966. 1435.87 0.19 0.01 0.08 -1 -1 0.19 0.00185155 0.00164361 10 -1 8 8 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 3.22 vpr 60.39 MiB 0.02 6100 -1 -1 1 0.01 -1 -1 29464 -1 -1 2 15 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61844 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 21.7 MiB 0.04 80 60.4 MiB 0.01 0.00 0.721132 -14.5202 -0.721132 0.721132 0.81 2.8081e-05 2.0295e-05 0.000821835 0.000647217 22 329 14 6.95648e+06 28951.4 443629. 1535.05 0.43 0.00578336 0.00472253 23458 102101 -1 231 13 141 141 7292 2427 0 0 7292 2427 141 141 0 0 516 448 0 0 669 558 0 0 141 141 0 0 2352 591 0 0 3473 548 0 0 141 0 0 0 0 0 141 0 0 1.06403 1.06403 -19.2829 -1.06403 0 0 531479. 1839.03 0.21 0.01 0.12 -1 -1 0.21 0.00153243 0.00132655 11 -1 9 9 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 4.77 vpr 60.25 MiB 0.01 6052 -1 -1 1 0.01 -1 -1 29632 -1 -1 2 17 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61692 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 21.8 MiB 0.04 92 60.2 MiB 0.01 0.00 0.732132 -16.2722 -0.732132 0.732132 0.94 6.0407e-05 4.5856e-05 0.00207145 0.00163403 30 258 26 6.95648e+06 28951.4 556674. 1926.21 1.84 0.0142954 0.0115318 25186 138497 -1 240 20 255 255 9108 3335 0 0 9108 3335 255 255 0 0 818 695 0 0 1276 935 0 0 255 255 0 0 3289 538 0 0 3215 657 0 0 255 0 0 0 0 0 255 0 0 1.05303 1.05303 -20.0528 -1.05303 0 0 706193. 2443.58 0.31 0.03 0.14 -1 -1 0.31 0.00437453 0.00379275 13 -1 10 10 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 3.31 vpr 60.36 MiB 0.01 5972 -1 -1 1 0.00 -1 -1 29592 -1 -1 2 19 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61804 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 21.8 MiB 0.03 157 60.4 MiB 0.01 0.00 0.749332 -18.8323 -0.749332 0.749332 1.01 3.4361e-05 2.507e-05 0.000971456 0.000783238 26 478 14 6.95648e+06 28951.4 503264. 1741.40 0.61 0.0101187 0.00834528 24322 120374 -1 399 13 234 234 19663 5108 0 0 19663 5108 234 234 0 0 905 780 0 0 1323 1030 0 0 234 234 0 0 7961 1469 0 0 9006 1361 0 0 234 0 0 0 0 0 234 0 0 1.18933 1.18933 -26.4754 -1.18933 0 0 618332. 2139.56 0.16 0.01 0.08 -1 -1 0.16 0.00188801 0.00165502 14 -1 11 11 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 4.04 vpr 60.62 MiB 0.01 5936 -1 -1 1 0.01 -1 -1 29624 -1 -1 2 21 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62072 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 22.1 MiB 0.07 318 60.6 MiB 0.04 0.00 0.771332 -24.8417 -0.771332 0.771332 1.01 6.7878e-05 5.3618e-05 0.0017185 0.00145391 34 626 13 6.95648e+06 28951.4 618332. 2139.56 0.88 0.0164005 0.0134378 25762 151098 -1 588 14 299 299 28231 5867 0 0 28231 5867 299 299 0 0 1006 845 0 0 1501 1128 0 0 299 299 0 0 13997 1440 0 0 11129 1856 0 0 299 0 0 0 0 0 299 0 0 1.09223 1.09223 -32.7038 -1.09223 0 0 787024. 2723.27 0.31 0.02 0.17 -1 -1 0.31 0.00364871 0.00319044 16 -1 12 12 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 5.02 vpr 60.39 MiB 0.01 5968 -1 -1 1 0.01 -1 -1 29480 -1 -1 3 23 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61844 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 21.9 MiB 0.06 185 60.4 MiB 0.01 0.00 0.782332 -23.5115 -0.782332 0.782332 1.06 4.8258e-05 3.0855e-05 0.00141194 0.0011346 28 573 20 6.95648e+06 43427 531479. 1839.03 1.92 0.0167885 0.013771 24610 126494 -1 455 13 291 291 23135 6366 0 0 23135 6366 291 291 0 0 1215 1070 0 0 1643 1369 0 0 291 291 0 0 8535 1835 0 0 11160 1510 0 0 291 0 0 0 0 0 291 0 0 1.12523 1.12523 -33.0886 -1.12523 0 0 648988. 2245.63 0.24 0.02 0.12 -1 -1 0.24 0.00489848 0.00443938 17 -1 13 13 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 4.29 vpr 60.46 MiB 0.01 6036 -1 -1 1 0.01 -1 -1 29516 -1 -1 3 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61912 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 21.9 MiB 0.04 362 60.5 MiB 0.02 0.00 0.793332 -29.4597 -0.793332 0.793332 1.10 9.0465e-05 7.0304e-05 0.002597 0.00215953 34 729 15 6.95648e+06 43427 618332. 2139.56 1.38 0.0239793 0.0198611 25762 151098 -1 668 13 297 297 25643 5818 0 0 25643 5818 297 297 0 0 1096 922 0 0 1705 1247 0 0 297 297 0 0 11542 1364 0 0 10706 1691 0 0 297 0 0 0 0 0 297 0 0 1.05303 1.05303 -37.3058 -1.05303 0 0 787024. 2723.27 0.21 0.02 0.11 -1 -1 0.21 0.00405654 0.00356098 19 -1 14 14 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 6.45 vpr 60.44 MiB 0.01 5940 -1 -1 1 0.01 -1 -1 29508 -1 -1 3 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61888 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 21.8 MiB 0.04 389 60.4 MiB 0.02 0.00 0.826332 -31.3457 -0.826332 0.826332 1.07 8.9944e-05 6.9961e-05 0.00363107 0.00292765 34 762 20 6.95648e+06 43427 618332. 2139.56 3.10 0.0383252 0.0317351 25762 151098 -1 712 14 343 343 30956 6994 0 0 30956 6994 343 343 0 0 1330 1143 0 0 1924 1500 0 0 343 343 0 0 14132 1775 0 0 12884 1890 0 0 343 0 0 0 0 0 343 0 0 1.20223 1.20223 -42.748 -1.20223 0 0 787024. 2723.27 0.32 0.02 0.18 -1 -1 0.32 0.00490939 0.0043676 20 -1 15 15 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 8.32 vpr 60.67 MiB 0.03 5976 -1 -1 1 0.01 -1 -1 29604 -1 -1 3 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62124 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 22.0 MiB 0.04 199 60.7 MiB 0.07 0.01 0.837332 -29.9095 -0.837332 0.837332 1.08 7.2133e-05 5.4746e-05 0.00623796 0.00504347 40 591 32 6.95648e+06 43427 706193. 2443.58 4.51 0.0500652 0.0419524 26914 176310 -1 482 23 468 468 37905 10675 0 0 37905 10675 468 468 0 0 1684 1517 0 0 3340 2250 0 0 468 468 0 0 15038 3022 0 0 16907 2950 0 0 468 0 0 0 0 0 468 0 0 1.17833 1.17833 -37.1765 -1.17833 0 0 926341. 3205.33 0.38 0.20 0.21 -1 -1 0.38 0.00851484 0.00748189 22 -1 16 16 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 6.59 vpr 60.50 MiB 0.01 6012 -1 -1 1 0.02 -1 -1 29512 -1 -1 3 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61952 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 22.1 MiB 0.05 218 60.5 MiB 0.04 0.00 1.08336 -32.4963 -1.08336 1.08336 1.04 0.000109536 8.5667e-05 0.00660384 0.00526412 32 837 19 6.95648e+06 43427 586450. 2029.24 2.77 0.0449596 0.0374964 25474 144626 -1 657 16 471 471 35520 10078 0 0 35520 10078 471 471 0 0 1735 1544 0 0 2897 1998 0 0 471 471 0 0 16246 2939 0 0 13700 2655 0 0 471 0 0 0 0 0 471 0 0 1.29253 1.29253 -45.5951 -1.29253 0 0 744469. 2576.02 0.32 0.17 0.15 -1 -1 0.32 0.00654477 0.00582394 24 -1 17 17 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 4.25 vpr 60.80 MiB 0.01 6000 -1 -1 1 0.01 -1 -1 29688 -1 -1 4 33 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62264 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 22.4 MiB 0.08 236 60.8 MiB 0.04 0.00 1.09436 -35.6307 -1.09436 1.09436 0.99 0.000112435 8.6596e-05 0.00641799 0.00512939 28 936 37 6.95648e+06 57902.7 531479. 1839.03 1.06 0.0303438 0.025439 24610 126494 -1 755 14 485 485 41310 12723 0 0 41310 12723 485 485 0 0 1819 1609 0 0 2916 2131 0 0 485 485 0 0 18719 4220 0 0 16886 3793 0 0 485 0 0 0 0 0 485 0 0 1.50583 1.50583 -54.9981 -1.50583 0 0 648988. 2245.63 0.26 0.03 0.14 -1 -1 0.26 0.00531663 0.00470901 25 -1 18 18 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 5.52 vpr 60.86 MiB 0.01 6140 -1 -1 1 0.01 -1 -1 29664 -1 -1 4 37 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62320 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 22.4 MiB 0.09 302 60.9 MiB 0.05 0.00 1.11636 -39.1406 -1.11636 1.11636 0.86 0.000130795 0.000103611 0.00690261 0.00556558 28 992 40 6.95648e+06 57902.7 531479. 1839.03 2.51 0.0569417 0.0483781 24610 126494 -1 788 15 494 494 39270 11442 0 0 39270 11442 494 494 0 0 1999 1810 0 0 3098 2505 0 0 494 494 0 0 15563 3016 0 0 17622 3123 0 0 494 0 0 0 0 0 494 0 0 1.32553 1.32553 -58.5257 -1.32553 0 0 648988. 2245.63 0.27 0.03 0.15 -1 -1 0.27 0.00679077 0.00603806 28 -1 20 20 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 6.61 vpr 60.69 MiB 0.01 6132 -1 -1 1 0.01 -1 -1 29556 -1 -1 4 41 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62148 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 22.1 MiB 0.10 341 60.7 MiB 0.08 0.00 1.13836 -46.2028 -1.13836 1.13836 1.05 0.000137496 0.000108373 0.00881214 0.00717467 36 940 33 6.95648e+06 57902.7 648988. 2245.63 3.13 0.050303 0.0422254 26050 158493 -1 808 17 481 481 38849 10213 0 0 38849 10213 481 481 0 0 1644 1437 0 0 2558 1839 0 0 481 481 0 0 17472 3217 0 0 16213 2758 0 0 481 0 0 0 0 0 481 0 0 1.24903 1.24903 -60.9714 -1.24903 0 0 828058. 2865.25 0.35 0.06 0.18 -1 -1 0.35 0.00809149 0.00714497 31 -1 22 22 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.97 vpr 60.77 MiB 0.01 6076 -1 -1 1 0.01 -1 -1 29524 -1 -1 5 45 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62232 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 22.1 MiB 0.17 523 60.8 MiB 0.10 0.00 1.16036 -54.0608 -1.16036 1.16036 0.95 0.000159063 0.000125446 0.0120704 0.00970542 34 1287 32 6.95648e+06 72378.4 618332. 2139.56 1.57 0.0556952 0.046814 25762 151098 -1 1023 14 508 508 37089 9105 0 0 37089 9105 508 508 0 0 1835 1585 0 0 2780 2114 0 0 508 508 0 0 14704 2342 0 0 16754 2048 0 0 508 0 0 0 0 0 508 0 0 1.41833 1.41833 -71.6349 -1.41833 0 0 787024. 2723.27 0.29 0.02 0.18 -1 -1 0.29 0.00443142 0.00397777 34 -1 24 24 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 6.49 vpr 60.71 MiB 0.01 6224 -1 -1 1 0.02 -1 -1 29564 -1 -1 5 49 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62164 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 22.3 MiB 0.13 359 60.7 MiB 0.16 0.00 1.18236 -54.0689 -1.18236 1.18236 1.06 0.000170559 0.000133167 0.0124851 0.0101681 36 1154 40 6.95648e+06 72378.4 648988. 2245.63 2.87 0.0683079 0.057521 26050 158493 -1 904 16 592 592 37209 11580 0 0 37209 11580 592 592 0 0 2120 1859 0 0 3214 2410 0 0 592 592 0 0 16261 3090 0 0 14430 3037 0 0 592 0 0 0 0 0 592 0 0 1.57613 1.57613 -75.6861 -1.57613 0 0 828058. 2865.25 0.32 0.03 0.17 -1 -1 0.32 0.00854679 0.00760211 37 -1 26 26 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 8.01 vpr 61.13 MiB 0.01 6236 -1 -1 1 0.01 -1 -1 29556 -1 -1 6 57 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62600 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 22.5 MiB 0.11 779 61.1 MiB 0.19 0.00 1.22636 -71.3833 -1.22636 1.22636 1.00 0.000227521 0.000181785 0.016931 0.013851 36 1772 29 6.95648e+06 86854.1 648988. 2245.63 4.36 0.101641 0.086659 26050 158493 -1 1581 15 717 717 79082 16873 0 0 79082 16873 717 717 0 0 2598 2244 0 0 3993 2907 0 0 717 717 0 0 36657 4782 0 0 34400 5506 0 0 717 0 0 0 0 0 717 0 0 1.32603 1.32603 -91.7852 -1.32603 0 0 828058. 2865.25 0.27 0.10 0.11 -1 -1 0.27 0.0102853 0.00921622 43 -1 30 30 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 5.82 vpr 61.18 MiB 0.01 6216 -1 -1 1 0.01 -1 -1 29672 -1 -1 7 65 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62648 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 22.6 MiB 0.09 1024 61.2 MiB 0.15 0.00 1.50539 -88.8425 -1.50539 1.50539 1.00 0.000234585 0.000187103 0.0205307 0.0167135 36 2169 45 6.95648e+06 101330 648988. 2245.63 2.23 0.0917227 0.0789913 26050 158493 -1 1871 19 855 855 116219 22574 0 0 116219 22574 855 855 0 0 3013 2620 0 0 5118 3457 0 0 855 855 0 0 53919 7356 0 0 52459 7431 0 0 855 0 0 0 0 0 855 0 0 1.66263 1.66263 -116.617 -1.66263 0 0 828058. 2865.25 0.33 0.06 0.18 -1 -1 0.33 0.0133416 0.0118616 49 -1 34 34 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 6.95 vpr 62.13 MiB 0.02 6428 -1 -1 1 0.01 -1 -1 29876 -1 -1 10 97 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63624 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 23.3 MiB 0.12 1457 62.1 MiB 0.34 0.00 1.91642 -139.609 -1.91642 1.91642 1.04 0.000328607 0.000259901 0.0348033 0.0290611 46 2855 28 6.95648e+06 144757 828058. 2865.25 3.28 0.155983 0.136477 28066 200906 -1 2497 16 1162 1162 135795 27260 0 0 135795 27260 1162 1162 0 0 4019 3582 0 0 6803 4628 0 0 1162 1162 0 0 62819 8402 0 0 59830 8324 0 0 1162 0 0 0 0 0 1162 0 0 1.55303 1.55303 -157.214 -1.55303 0 0 1.01997e+06 3529.29 0.26 0.04 0.17 -1 -1 0.26 0.0106788 0.00968231 73 -1 50 50 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 8.04 vpr 62.81 MiB 0.02 6612 -1 -1 1 0.01 -1 -1 30056 -1 -1 13 129 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64316 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1990 62.8 MiB 0.44 0.01 2.32745 -201.338 -2.32745 2.32745 0.99 0.000551859 0.000463742 0.0508987 0.0433038 56 3699 35 6.95648e+06 188184 973134. 3367.25 4.06 0.224484 0.199294 29794 239141 -1 3414 16 1499 1499 209386 40586 0 0 209386 40586 1499 1499 0 0 5580 4835 0 0 10468 6939 0 0 1499 1499 0 0 95669 13017 0 0 94671 12797 0 0 1499 0 0 0 0 0 1499 0 0 1.74433 1.74433 -214.539 -1.74433 0 0 1.19926e+06 4149.71 0.47 0.08 0.17 -1 -1 0.47 0.0186776 0.0171466 97 -1 66 66 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 4.03 vpr 59.94 MiB 0.01 5932 -1 -1 1 0.01 -1 -1 29572 -1 -1 1 7 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61376 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 21.4 MiB 0.01 24 59.9 MiB 0.03 0.00 0.589542 -6.10608 -0.589542 0.589542 0.92 2.4616e-05 1.742e-05 0.000990275 0.000765317 12 113 7 6.99608e+06 14715.7 243793. 843.575 1.13 0.00664294 0.00526176 21730 64085 -1 98 8 37 37 1580 565 0 0 1580 565 37 37 0 0 152 106 0 0 178 152 0 0 37 37 0 0 658 110 0 0 518 123 0 0 37 0 0 0 0 0 37 0 0 0.74674 0.74674 -8.36148 -0.74674 0 0 332735. 1151.33 0.15 0.01 0.08 -1 -1 0.15 0.000995449 0.000859467 5 -1 5 5 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 5.63 vpr 60.18 MiB 0.01 5924 -1 -1 1 0.01 -1 -1 29552 -1 -1 1 9 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61624 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 21.7 MiB 0.01 32 60.2 MiB 0.06 0.00 0.49614 -7.75457 -0.49614 0.49614 1.05 3.2849e-05 2.3855e-05 0.00108498 0.000876967 24 130 6 6.99608e+06 14715.7 470940. 1629.55 2.45 0.0144693 0.0115459 24034 113901 -1 119 6 34 34 2566 840 0 0 2566 840 34 34 0 0 155 121 0 0 181 163 0 0 34 34 0 0 1183 226 0 0 979 262 0 0 34 0 0 0 0 0 34 0 0 0.74674 0.74674 -10.1353 -0.74674 0 0 586450. 2029.24 0.24 0.00 0.13 -1 -1 0.24 0.000709246 0.000625754 7 -1 6 6 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 4.66 vpr 60.17 MiB 0.01 6168 -1 -1 1 0.01 -1 -1 29528 -1 -1 1 11 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61612 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 21.6 MiB 0.01 108 60.2 MiB 0.00 0.00 0.87204 -12.1794 -0.87204 0.87204 0.98 3.8064e-05 2.7968e-05 0.000592334 0.000486571 16 183 11 6.99608e+06 14715.7 332735. 1151.33 1.66 0.00509711 0.0042907 22306 75877 -1 175 11 62 62 4187 1227 0 0 4187 1227 62 62 0 0 268 227 0 0 296 273 0 0 62 62 0 0 1629 320 0 0 1870 283 0 0 62 0 0 0 0 0 62 0 0 0.87204 0.87204 -13.8083 -0.87204 0 0 414966. 1435.87 0.17 0.01 0.09 -1 -1 0.17 0.00195592 0.00173412 8 -1 7 7 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 5.57 vpr 59.99 MiB 0.01 5904 -1 -1 1 0.01 -1 -1 29468 -1 -1 2 13 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61432 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 21.4 MiB 0.01 63 60.0 MiB 0.04 0.00 0.710132 -12.4032 -0.710132 0.710132 1.04 4.5027e-05 3.5527e-05 0.00135859 0.00109363 26 195 8 6.99608e+06 29431.4 503264. 1741.40 2.30 0.0132231 0.0107729 24322 120374 -1 175 6 68 68 4981 1586 0 0 4981 1586 68 68 0 0 312 263 0 0 374 333 0 0 68 68 0 0 1806 418 0 0 2353 436 0 0 68 0 0 0 0 0 68 0 0 0.791432 0.791432 -15.7063 -0.791432 0 0 618332. 2139.56 0.25 0.01 0.14 -1 -1 0.25 0.001613 0.00145527 10 -1 8 8 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 3.94 vpr 59.96 MiB 0.02 6052 -1 -1 1 0.01 -1 -1 29472 -1 -1 2 15 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61396 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 21.3 MiB 0.01 84 60.0 MiB 0.01 0.00 0.721132 -14.3949 -0.721132 0.721132 1.07 5.1957e-05 3.8979e-05 0.00137866 0.00109691 26 237 13 6.99608e+06 29431.4 503264. 1741.40 0.74 0.0091459 0.00748066 24322 120374 -1 208 8 102 102 5115 1879 0 0 5115 1879 102 102 0 0 425 364 0 0 582 496 0 0 102 102 0 0 1813 402 0 0 2091 413 0 0 102 0 0 0 0 0 102 0 0 0.940679 0.940679 -18.6642 -0.940679 0 0 618332. 2139.56 0.26 0.01 0.14 -1 -1 0.26 0.00191828 0.00170251 11 -1 9 9 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 5.97 vpr 60.05 MiB 0.01 5924 -1 -1 1 0.01 -1 -1 29520 -1 -1 2 17 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61492 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 21.7 MiB 0.02 88 60.1 MiB 0.02 0.00 0.710132 -15.7325 -0.710132 0.710132 1.05 6.2809e-05 4.7815e-05 0.0021219 0.00169311 34 264 19 6.99608e+06 29431.4 618332. 2139.56 2.54 0.0284368 0.0231417 25762 151098 -1 250 24 281 281 17800 5815 0 0 17800 5815 281 281 0 0 1098 953 0 0 1593 1235 0 0 281 281 0 0 6444 1558 0 0 8103 1507 0 0 281 0 0 0 0 0 281 0 0 1.08603 1.08603 -21.2457 -1.08603 0 0 787024. 2723.27 0.32 0.02 0.17 -1 -1 0.32 0.003944 0.00334911 13 -1 10 10 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 6.22 vpr 60.19 MiB 0.01 6008 -1 -1 1 0.01 -1 -1 29524 -1 -1 2 19 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61636 19 10 69 70 1 43 31 17 17 289 -1 unnamed_device 21.7 MiB 0.05 123 60.2 MiB 0.07 0.00 0.732132 -17.8687 -0.732132 0.732132 1.00 6.8718e-05 5.271e-05 0.002005 0.00163504 30 385 27 6.99608e+06 29431.4 556674. 1926.21 2.85 0.0289202 0.0239632 25186 138497 -1 298 9 181 181 10592 3465 0 0 10592 3465 181 181 0 0 671 566 0 0 825 703 0 0 181 181 0 0 3568 996 0 0 5166 838 0 0 181 0 0 0 0 0 181 0 0 1.07503 1.07503 -24.5882 -1.07503 0 0 706193. 2443.58 0.29 0.01 0.16 -1 -1 0.29 0.0025305 0.00224829 14 -1 11 11 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 4.61 vpr 60.42 MiB 0.01 5936 -1 -1 1 0.01 -1 -1 29684 -1 -1 2 21 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61872 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 22.0 MiB 0.02 313 60.4 MiB 0.01 0.00 0.743132 -24.3932 -0.743132 0.743132 1.06 7.6215e-05 5.9127e-05 0.00177324 0.00144135 34 614 18 6.99608e+06 29431.4 618332. 2139.56 1.49 0.0215366 0.0177755 25762 151098 -1 604 13 240 240 26655 5602 0 0 26655 5602 240 240 0 0 897 774 0 0 1283 1007 0 0 240 240 0 0 13340 1518 0 0 10655 1823 0 0 240 0 0 0 0 0 240 0 0 1.08603 1.08603 -32.3327 -1.08603 0 0 787024. 2723.27 0.28 0.07 0.17 -1 -1 0.28 0.00378127 0.00332462 16 -1 12 12 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 4.19 vpr 60.39 MiB 0.01 5988 -1 -1 1 0.02 -1 -1 29540 -1 -1 3 23 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61844 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 21.9 MiB 0.06 226 60.4 MiB 0.02 0.00 0.754132 -24.2878 -0.754132 0.754132 0.97 8.2266e-05 6.3082e-05 0.002546 0.00203887 30 586 21 6.99608e+06 44147 556674. 1926.21 1.05 0.0151115 0.0125649 25186 138497 -1 498 13 228 228 17332 4467 0 0 17332 4467 228 228 0 0 833 720 0 0 1135 912 0 0 228 228 0 0 6737 1243 0 0 8171 1136 0 0 228 0 0 0 0 0 228 0 0 1.25533 1.25533 -33.4347 -1.25533 0 0 706193. 2443.58 0.28 0.02 0.16 -1 -1 0.28 0.00385304 0.00341063 17 -1 13 13 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 4.94 vpr 60.47 MiB 0.01 6212 -1 -1 1 0.01 -1 -1 29400 -1 -1 3 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61920 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 21.9 MiB 0.02 374 60.5 MiB 0.01 0.00 0.776132 -29.7809 -0.776132 0.776132 1.07 8.9061e-05 6.906e-05 0.00248066 0.00200503 34 772 14 6.99608e+06 44147 618332. 2139.56 1.66 0.028812 0.0241717 25762 151098 -1 729 13 302 302 34451 7352 0 0 34451 7352 302 302 0 0 1204 1019 0 0 1816 1366 0 0 302 302 0 0 15852 2038 0 0 14975 2325 0 0 302 0 0 0 0 0 302 0 0 1.08603 1.08603 -37.1629 -1.08603 0 0 787024. 2723.27 0.29 0.10 0.16 -1 -1 0.29 0.00456015 0.00402398 19 -1 14 14 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 6.06 vpr 60.35 MiB 0.01 6168 -1 -1 1 0.01 -1 -1 29492 -1 -1 3 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61800 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 21.8 MiB 0.02 418 60.4 MiB 0.03 0.00 0.787132 -31.588 -0.787132 0.787132 0.84 7.0868e-05 5.3984e-05 0.00258308 0.0020623 34 815 14 6.99608e+06 44147 618332. 2139.56 3.02 0.0277602 0.0231893 25762 151098 -1 714 18 374 374 33429 7394 0 0 33429 7394 374 374 0 0 1334 1140 0 0 2227 1596 0 0 374 374 0 0 15471 1841 0 0 13649 2069 0 0 374 0 0 0 0 0 374 0 0 1.03968 1.03968 -40.1337 -1.03968 0 0 787024. 2723.27 0.31 0.02 0.17 -1 -1 0.31 0.00526588 0.0046015 20 -1 15 15 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 5.39 vpr 60.54 MiB 0.02 5952 -1 -1 1 0.00 -1 -1 29624 -1 -1 3 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61992 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 21.9 MiB 0.02 209 60.5 MiB 0.03 0.00 0.809132 -28.379 -0.809132 0.809132 1.13 0.000101313 7.8741e-05 0.0049442 0.00402999 34 805 42 6.99608e+06 44147 618332. 2139.56 1.82 0.0328861 0.0276309 25762 151098 -1 600 29 555 555 106733 56305 0 0 106733 56305 555 555 0 0 1961 1742 0 0 4781 2910 0 0 555 555 0 0 49225 25423 0 0 49656 25120 0 0 555 0 0 0 0 0 555 0 0 1.27733 1.27733 -40.1311 -1.27733 0 0 787024. 2723.27 0.43 0.13 0.16 -1 -1 0.43 0.00887497 0.00769548 22 -1 16 16 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 6.72 vpr 60.38 MiB 0.01 5984 -1 -1 1 0.01 -1 -1 29648 -1 -1 3 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61824 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 21.7 MiB 0.02 218 60.4 MiB 0.04 0.00 1.05516 -32.1906 -1.05516 1.05516 1.11 0.000110801 7.9206e-05 0.00676928 0.00539999 32 962 32 6.99608e+06 44147 586450. 2029.24 3.38 0.0494244 0.0415323 25474 144626 -1 698 19 443 443 39837 10980 0 0 39837 10980 443 443 0 0 1617 1392 0 0 2835 1900 0 0 443 443 0 0 18585 3603 0 0 15914 3199 0 0 443 0 0 0 0 0 443 0 0 1.21603 1.21603 -47.0116 -1.21603 0 0 744469. 2576.02 0.29 0.03 0.16 -1 -1 0.29 0.00617152 0.00538329 24 -1 17 17 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 4.04 vpr 60.57 MiB 0.01 6084 -1 -1 1 0.02 -1 -1 29544 -1 -1 4 33 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62020 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 22.1 MiB 0.03 230 60.6 MiB 0.06 0.00 1.06616 -35.0462 -1.06616 1.06616 0.84 8.6532e-05 6.6078e-05 0.0072722 0.00622731 30 915 20 6.99608e+06 58862.7 556674. 1926.21 0.95 0.0254961 0.0216024 25186 138497 -1 752 24 516 516 61363 25343 0 0 61363 25343 516 516 0 0 1854 1679 0 0 3385 2321 0 0 516 516 0 0 27957 10169 0 0 27135 10142 0 0 516 0 0 0 0 0 516 0 0 1.24233 1.24233 -49.7673 -1.24233 0 0 706193. 2443.58 0.25 0.06 0.15 -1 -1 0.25 0.00773107 0.0066829 25 -1 18 18 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 6.83 vpr 60.53 MiB 0.02 6112 -1 -1 1 0.01 -1 -1 29692 -1 -1 4 37 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61984 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 22.1 MiB 0.05 259 60.5 MiB 0.05 0.00 1.08816 -38.3743 -1.08816 1.08816 1.08 0.000130619 0.000102598 0.00679037 0.0055063 34 893 45 6.99608e+06 58862.7 618332. 2139.56 3.54 0.0664906 0.0562889 25762 151098 -1 631 19 465 465 31381 9863 0 0 31381 9863 465 465 0 0 1666 1453 0 0 2802 1958 0 0 465 465 0 0 11493 2745 0 0 14490 2777 0 0 465 0 0 0 0 0 465 0 0 1.29733 1.29733 -54.6414 -1.29733 0 0 787024. 2723.27 0.31 0.04 0.18 -1 -1 0.31 0.00658836 0.00581527 28 -1 20 20 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 6.31 vpr 60.45 MiB 0.03 6096 -1 -1 1 0.01 -1 -1 29644 -1 -1 4 41 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61900 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 21.9 MiB 0.07 342 60.4 MiB 0.05 0.00 1.11016 -46.2573 -1.11016 1.11016 1.02 0.000138166 0.000107289 0.00829747 0.00664998 30 1042 20 6.99608e+06 58862.7 556674. 1926.21 2.83 0.0579712 0.0488511 25186 138497 -1 875 14 476 476 33597 9341 0 0 33597 9341 476 476 0 0 1671 1433 0 0 2277 1757 0 0 476 476 0 0 14732 2818 0 0 13965 2381 0 0 476 0 0 0 0 0 476 0 0 1.35233 1.35233 -63.8622 -1.35233 0 0 706193. 2443.58 0.29 0.03 0.16 -1 -1 0.29 0.00641119 0.0057003 31 -1 22 22 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 7.00 vpr 60.78 MiB 0.02 6272 -1 -1 1 0.01 -1 -1 29648 -1 -1 5 45 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62240 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 22.2 MiB 0.07 558 60.8 MiB 0.07 0.00 1.13216 -52.0541 -1.13216 1.13216 0.96 0.000156524 0.000122822 0.0120275 0.00967113 34 1281 39 6.99608e+06 73578.4 618332. 2139.56 3.64 0.0731324 0.0619902 25762 151098 -1 1093 17 501 501 52405 11986 0 0 52405 11986 501 501 0 0 1789 1563 0 0 3022 2039 0 0 501 501 0 0 22872 3746 0 0 23720 3636 0 0 501 0 0 0 0 0 501 0 0 1.51878 1.51878 -72.2681 -1.51878 0 0 787024. 2723.27 0.31 0.04 0.17 -1 -1 0.31 0.00825541 0.00727572 34 -1 24 24 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 5.49 vpr 60.95 MiB 0.02 6220 -1 -1 1 0.01 -1 -1 29612 -1 -1 5 49 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62416 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 22.5 MiB 0.06 569 61.0 MiB 0.05 0.00 1.15416 -57.8949 -1.15416 1.15416 1.04 0.000171585 0.000135716 0.00651034 0.0052869 34 1533 23 6.99608e+06 73578.4 618332. 2139.56 1.98 0.059203 0.0507505 25762 151098 -1 1280 20 717 717 92629 19845 0 0 92629 19845 717 717 0 0 2687 2401 0 0 4346 3084 0 0 717 717 0 0 42105 6412 0 0 42057 6514 0 0 717 0 0 0 0 0 717 0 0 1.35428 1.35428 -78.6542 -1.35428 0 0 787024. 2723.27 0.31 0.05 0.18 -1 -1 0.31 0.0102286 0.00904662 37 -1 26 26 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 5.82 vpr 61.07 MiB 0.01 6284 -1 -1 1 0.01 -1 -1 29652 -1 -1 6 57 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62536 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 22.5 MiB 0.07 730 61.1 MiB 0.21 0.01 1.19816 -69.9592 -1.19816 1.19816 1.04 0.000303843 0.000248729 0.0201067 0.017063 34 1773 24 6.99608e+06 88294.1 618332. 2139.56 2.24 0.0899494 0.0782894 25762 151098 -1 1544 21 742 742 85899 19143 0 0 85899 19143 742 742 0 0 2806 2491 0 0 4680 3272 0 0 742 742 0 0 37497 5899 0 0 39432 5997 0 0 742 0 0 0 0 0 742 0 0 1.45948 1.45948 -93.2196 -1.45948 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0124378 0.0110277 43 -1 30 30 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 9.82 vpr 61.16 MiB 0.01 6164 -1 -1 1 0.01 -1 -1 29636 -1 -1 7 65 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62624 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 22.7 MiB 0.09 1045 61.2 MiB 0.37 0.00 1.47719 -88.8092 -1.47719 1.47719 0.97 0.000179602 0.000143079 0.0297319 0.024668 34 2195 42 6.99608e+06 103010 618332. 2139.56 6.35 0.159675 0.138601 25762 151098 -1 1932 15 883 883 108582 23032 0 0 108582 23032 883 883 0 0 3286 2855 0 0 5501 3908 0 0 883 883 0 0 50261 7005 0 0 47768 7498 0 0 883 0 0 0 0 0 883 0 0 1.39198 1.39198 -109.383 -1.39198 0 0 787024. 2723.27 0.22 0.03 0.11 -1 -1 0.22 0.00659478 0.00589324 49 -1 34 34 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 7.49 vpr 62.06 MiB 0.02 6492 -1 -1 1 0.02 -1 -1 29828 -1 -1 10 97 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63548 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 23.2 MiB 0.07 1490 62.1 MiB 0.34 0.00 1.88822 -140.002 -1.88822 1.88822 1.07 0.000285702 0.000234335 0.0332619 0.027279 44 2952 49 6.99608e+06 147157 787024. 2723.27 3.30 0.162902 0.142284 27778 195446 -1 2546 23 1267 1267 218784 69231 0 0 218784 69231 1267 1267 0 0 4325 3773 0 0 8892 5536 0 0 1267 1267 0 0 102756 28739 0 0 100277 28649 0 0 1267 0 0 0 0 0 1267 0 0 1.44973 1.44973 -154.611 -1.44973 0 0 997811. 3452.63 0.38 0.11 0.25 -1 -1 0.38 0.0224199 0.020058 73 -1 50 50 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 20.46 vpr 62.52 MiB 0.02 6696 -1 -1 1 0.02 -1 -1 30032 -1 -1 13 129 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64016 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 23.6 MiB 0.09 1897 62.5 MiB 0.50 0.03 2.29925 -192.633 -2.29925 2.29925 1.04 0.00115323 0.0010367 0.0556842 0.0476684 50 3653 22 6.99608e+06 191304 902133. 3121.57 16.09 0.389154 0.346958 28642 213929 -1 3301 18 1565 1565 171742 35240 0 0 171742 35240 1565 1565 0 0 5586 4806 0 0 9271 6394 0 0 1565 1565 0 0 79573 10166 0 0 74182 10744 0 0 1565 0 0 0 0 0 1565 0 0 1.67873 1.67873 -209.67 -1.67873 0 0 1.08113e+06 3740.92 0.43 0.10 0.26 -1 -1 0.43 0.0269574 0.0243037 97 -1 66 66 0 0 +fixed_k6_frac_N8_22nm.xml adder_003bits.v common 3.55 vpr 59.31 MiB 0.01 5728 -1 -1 1 0.05 -1 -1 31584 -1 -1 1 7 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60732 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 20.9 MiB 0.01 29 59.3 MiB 0.01 0.00 0.593895 -6.43271 -0.593895 0.593895 0.93 3.4193e-05 2.4733e-05 0.000851904 0.000648603 18 105 6 6.79088e+06 13472 376052. 1301.22 0.57 0.00211966 0.001779 22222 88205 -1 94 4 21 21 1320 445 0 0 1320 445 21 21 0 0 104 80 0 0 119 105 0 0 21 21 0 0 598 107 0 0 457 111 0 0 21 0 0 0 0 0 21 0 0 0.834592 0.834592 -8.31221 -0.834592 0 0 470940. 1629.55 0.19 0.04 0.10 -1 -1 0.19 0.000939876 0.000850381 6 4 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 3.87 vpr 59.57 MiB 0.01 5708 -1 -1 2 0.04 -1 -1 32304 -1 -1 1 9 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60996 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 21.1 MiB 0.01 39 59.6 MiB 0.01 0.00 0.883748 -8.9664 -0.883748 0.883748 1.05 3.3562e-05 2.42e-05 0.000920001 0.000710083 18 132 5 6.79088e+06 13472 376052. 1301.22 0.57 0.00216462 0.00179918 22222 88205 -1 109 7 33 33 1416 516 0 0 1416 516 33 33 0 0 138 111 0 0 164 139 0 0 33 33 0 0 603 91 0 0 445 109 0 0 33 0 0 0 0 0 33 0 0 0.883748 0.883748 -10.7206 -0.883748 0 0 470940. 1629.55 0.19 0.13 0.10 -1 -1 0.19 0.00151997 0.0013372 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 4.17 vpr 59.41 MiB 0.03 5648 -1 -1 2 0.05 -1 -1 31420 -1 -1 2 11 0 0 exited with return code 2 v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60836 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 20.9 MiB 0.01 70 59.4 MiB 0.01 0.00 1.02368 -11.8337 -1.02368 1.02368 1.05 4.4119e-05 3.2958e-05 0.000779798 0.000634964 18 172 7 6.79088e+06 26944 376052. 1301.22 0.67 0.00282918 0.00245239 22222 88205 -1 -1 -1 376 379 1167952 349557 0 0 1167952 349557 379 377 0 0 1436 1092 0 0 10355 1505 0 0 379 377 0 0 796826 169519 0 0 358577 176687 0 0 379 0 0 3 3 0 391 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0.18 0.48 0.10 -1 -1 0.18 -1 -1 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 4.66 vpr 59.70 MiB 0.01 5744 -1 -1 3 0.04 -1 -1 31396 -1 -1 2 13 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61136 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 21.1 MiB 0.01 77 59.7 MiB 0.01 0.00 1.05944 -13.2363 -1.05944 1.05944 0.92 5.291e-05 4.0019e-05 0.00128191 0.00103104 22 259 11 6.79088e+06 26944 443629. 1535.05 1.87 0.0162407 0.0134124 22798 101617 -1 232 10 103 113 6107 1997 0 0 6107 1997 113 109 0 0 445 377 0 0 566 494 0 0 113 112 0 0 2125 436 0 0 2745 469 0 0 113 0 0 10 8 2 153 0 0 1.05944 1.05944 -17.6687 -1.05944 0 0 531479. 1839.03 0.23 0.01 0.11 -1 -1 0.23 0.00195625 0.00171738 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 3.92 vpr 59.50 MiB 0.01 5652 -1 -1 3 0.05 -1 -1 31336 -1 -1 2 15 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60928 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 20.9 MiB 0.01 106 59.5 MiB 0.01 0.00 1.35273 -17.0584 -1.35273 1.35273 1.07 5.1656e-05 3.9748e-05 0.00202925 0.00159136 20 265 10 6.79088e+06 26944 414966. 1435.87 0.62 0.00470584 0.0039504 22510 95286 -1 288 10 135 146 8774 3012 0 0 8774 3012 146 141 0 0 581 478 0 0 837 652 0 0 146 145 0 0 3389 798 0 0 3675 798 0 0 146 0 0 11 7 4 190 0 0 1.35273 1.35273 -23.0336 -1.35273 0 0 503264. 1741.40 0.21 0.01 0.11 -1 -1 0.21 0.00243807 0.00217955 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 4.17 vpr 59.79 MiB 0.01 5592 -1 -1 3 0.06 -1 -1 31660 -1 -1 2 17 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61220 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 21.1 MiB 0.05 132 59.8 MiB 0.01 0.00 1.27433 -18.2338 -1.27433 1.27433 1.05 6.7066e-05 5.1351e-05 0.00201147 0.00161101 26 402 10 6.79088e+06 26944 503264. 1741.40 0.93 0.0122128 0.0102389 23662 119890 -1 373 8 180 195 11468 3626 0 0 11468 3626 195 188 0 0 751 646 0 0 1185 967 0 0 195 193 0 0 4009 809 0 0 5133 823 0 0 195 0 0 15 4 11 255 0 0 1.27433 1.27433 -24.3341 -1.27433 0 0 618332. 2139.56 0.22 0.06 0.13 -1 -1 0.22 0.00248966 0.00222334 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 6.61 vpr 59.84 MiB 0.01 5672 -1 -1 4 0.06 -1 -1 31488 -1 -1 3 19 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61276 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 21.4 MiB 0.06 181 59.8 MiB 0.01 0.00 1.1736 -22.0042 -1.1736 1.1736 1.05 6.6563e-05 5.0089e-05 0.00234033 0.00185521 34 473 12 6.79088e+06 40416 618332. 2139.56 3.32 0.0283027 0.0237133 25102 150614 -1 411 11 188 194 12618 3323 0 0 12618 3323 194 191 0 0 706 584 0 0 1070 816 0 0 194 191 0 0 4815 820 0 0 5639 721 0 0 194 0 0 6 4 5 221 0 0 1.1736 1.1736 -26.8517 -1.1736 0 0 787024. 2723.27 0.31 0.01 0.15 -1 -1 0.31 0.00306864 0.00273181 17 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 5.33 vpr 59.91 MiB 0.01 5740 -1 -1 4 0.05 -1 -1 31440 -1 -1 3 21 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61344 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 21.3 MiB 0.19 174 59.9 MiB 0.02 0.00 1.60338 -26.7594 -1.60338 1.60338 1.07 8.83e-05 6.8597e-05 0.00326342 0.00263007 26 504 15 6.79088e+06 40416 503264. 1741.40 1.90 0.0301833 0.0252723 23662 119890 -1 465 11 239 295 15289 4980 0 0 15289 4980 295 247 0 0 1116 925 0 0 1640 1287 0 0 295 262 0 0 6512 1203 0 0 5431 1056 0 0 295 0 0 56 35 58 556 0 0 1.65023 1.65023 -33.4369 -1.65023 0 0 618332. 2139.56 0.25 0.02 0.13 -1 -1 0.25 0.0035709 0.00317414 21 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 5.96 vpr 59.62 MiB 0.01 5688 -1 -1 5 0.06 -1 -1 31884 -1 -1 3 23 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61056 23 12 73 85 1 60 38 17 17 289 -1 unnamed_device 21.1 MiB 0.09 188 59.6 MiB 0.02 0.00 1.8114 -28.6609 -1.8114 1.8114 1.05 8.5548e-05 6.6906e-05 0.00316061 0.00254693 26 616 11 6.79088e+06 40416 503264. 1741.40 2.60 0.033863 0.0286449 23662 119890 -1 565 13 310 370 23519 7171 0 0 23519 7171 370 327 0 0 1372 1181 0 0 2293 1776 0 0 370 339 0 0 8850 1655 0 0 10264 1893 0 0 370 0 0 60 46 38 634 0 0 1.8114 1.8114 -37.4319 -1.8114 0 0 618332. 2139.56 0.24 0.11 0.14 -1 -1 0.24 0.00486375 0.00435335 20 16 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 6.44 vpr 59.64 MiB 0.01 5648 -1 -1 5 0.05 -1 -1 31640 -1 -1 3 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61068 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 21.1 MiB 0.21 365 59.6 MiB 0.02 0.00 1.85403 -37.101 -1.85403 1.85403 1.05 0.000101208 7.9393e-05 0.00302233 0.00248225 34 767 12 6.79088e+06 40416 618332. 2139.56 2.93 0.035365 0.029765 25102 150614 -1 708 14 250 287 21152 5175 0 0 21152 5175 287 258 0 0 1129 984 0 0 1657 1313 0 0 287 263 0 0 9434 1106 0 0 8358 1251 0 0 287 0 0 37 22 23 443 0 0 1.96814 1.96814 -44.3594 -1.96814 0 0 787024. 2723.27 0.30 0.02 0.19 -1 -1 0.30 0.00406307 0.00360706 24 20 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 5.45 vpr 60.09 MiB 0.01 5820 -1 -1 5 0.04 -1 -1 31984 -1 -1 4 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61532 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 21.5 MiB 0.34 231 60.1 MiB 0.02 0.00 1.81483 -35.8844 -1.81483 1.81483 0.85 8.0275e-05 6.1488e-05 0.00309597 0.00255542 30 724 23 6.79088e+06 53888 556674. 1926.21 2.04 0.0381978 0.0324814 24526 138013 -1 640 10 288 356 19110 5876 0 0 19110 5876 356 308 0 0 1302 1090 0 0 1746 1399 0 0 356 312 0 0 7345 1311 0 0 8005 1456 0 0 356 0 0 68 49 35 658 0 0 1.81483 1.81483 -44.3656 -1.81483 0 0 706193. 2443.58 0.32 0.04 0.12 -1 -1 0.32 0.00532844 0.00492269 27 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 5.16 vpr 59.98 MiB 0.01 5892 -1 -1 6 0.06 -1 -1 31484 -1 -1 4 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61416 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 21.4 MiB 0.25 282 60.0 MiB 0.04 0.00 2.06549 -39.791 -2.06549 2.06549 0.95 0.000111227 8.6736e-05 0.00925705 0.00734255 34 780 37 6.79088e+06 53888 618332. 2139.56 1.70 0.0423705 0.0357475 25102 150614 -1 620 13 361 416 23754 7037 0 0 23754 7037 416 380 0 0 1586 1347 0 0 2473 1917 0 0 416 381 0 0 9974 1513 0 0 8889 1499 0 0 416 0 0 55 41 37 659 0 0 2.06549 2.06549 -48.0608 -2.06549 0 0 787024. 2723.27 0.25 0.02 0.17 -1 -1 0.25 0.0055286 0.00497596 28 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 7.17 vpr 60.00 MiB 0.02 5796 -1 -1 6 0.06 -1 -1 31724 -1 -1 5 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61444 31 16 104 120 1 83 52 17 17 289 -1 unnamed_device 21.4 MiB 0.68 367 60.0 MiB 0.03 0.00 2.28038 -46.4209 -2.28038 2.28038 1.05 0.000130908 0.000104187 0.00467861 0.00383271 34 887 14 6.79088e+06 67360 618332. 2139.56 3.11 0.0506089 0.043254 25102 150614 -1 779 12 296 402 29174 7088 0 0 29174 7088 402 328 0 0 1460 1211 0 0 2455 1787 0 0 402 336 0 0 12274 1756 0 0 12181 1670 0 0 402 0 0 106 78 116 954 0 0 2.28038 2.28038 -53.4377 -2.28038 0 0 787024. 2723.27 0.31 0.03 0.17 -1 -1 0.31 0.0055276 0.00495741 32 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 6.77 vpr 59.91 MiB 0.02 5808 -1 -1 7 0.07 -1 -1 31524 -1 -1 4 33 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61352 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 21.5 MiB 0.66 422 59.9 MiB 0.02 0.00 2.39454 -50.8956 -2.39454 2.39454 1.07 0.00013419 0.000107463 0.00399215 0.00328031 30 985 17 6.79088e+06 53888 556674. 1926.21 2.73 0.0575442 0.0493295 24526 138013 -1 839 11 331 405 24817 6041 0 0 24817 6041 405 343 0 0 1429 1180 0 0 2040 1557 0 0 405 364 0 0 9924 1440 0 0 10614 1157 0 0 405 0 0 74 66 48 741 0 0 2.39454 2.39454 -57.5365 -2.39454 0 0 706193. 2443.58 0.28 0.02 0.15 -1 -1 0.28 0.0057688 0.00519997 32 26 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 8.03 vpr 60.14 MiB 0.01 5708 -1 -1 7 0.05 -1 -1 31416 -1 -1 5 37 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61588 37 19 127 146 1 100 61 17 17 289 -1 unnamed_device 21.6 MiB 1.07 414 60.1 MiB 0.03 0.00 2.57023 -57.6201 -2.57023 2.57023 1.05 0.000161418 0.000127976 0.00499586 0.00411955 36 1061 15 6.79088e+06 67360 648988. 2245.63 3.85 0.0518569 0.0443821 25390 158009 -1 911 12 385 533 36418 8894 0 0 36418 8894 533 434 0 0 1874 1578 0 0 3169 2276 0 0 533 448 0 0 14428 2300 0 0 15881 1858 0 0 533 0 0 148 158 115 1302 0 0 2.65977 2.65977 -67.7694 -2.65977 0 0 828058. 2865.25 0.30 0.03 0.12 -1 -1 0.30 0.00673389 0.00605178 37 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 7.41 vpr 60.30 MiB 0.01 5916 -1 -1 8 0.06 -1 -1 31620 -1 -1 6 41 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61752 41 21 139 160 1 110 68 17 17 289 -1 unnamed_device 21.7 MiB 0.83 522 60.3 MiB 0.04 0.00 2.60599 -66.4078 -2.60599 2.60599 0.80 0.00012442 9.7384e-05 0.00766446 0.00614319 36 1209 13 6.79088e+06 80832 648988. 2245.63 3.51 0.0640076 0.0551096 25390 158009 -1 1040 10 395 518 33558 8621 0 0 33558 8621 518 428 0 0 1892 1602 0 0 3036 2237 0 0 518 437 0 0 14502 1858 0 0 13092 2059 0 0 518 0 0 123 40 114 1097 0 0 2.60599 2.60599 -78.3583 -2.60599 0 0 828058. 2865.25 0.32 0.02 0.18 -1 -1 0.32 0.00570971 0.0051482 42 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 6.65 vpr 60.30 MiB 0.01 5896 -1 -1 9 0.04 -1 -1 31604 -1 -1 6 45 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61752 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 21.9 MiB 1.20 538 60.3 MiB 0.08 0.00 3.32557 -78.6466 -3.32557 3.32557 1.12 0.000183561 0.000143762 0.0135092 0.0109049 30 1398 19 6.79088e+06 80832 556674. 1926.21 2.21 0.0719044 0.0614888 24526 138013 -1 1157 11 433 597 38600 9950 0 0 38600 9950 597 491 0 0 2069 1712 0 0 2859 2224 0 0 597 520 0 0 16353 2493 0 0 16125 2510 0 0 597 0 0 164 93 231 1465 0 0 3.45087 3.45087 -92.8994 -3.45087 0 0 706193. 2443.58 0.28 0.03 0.16 -1 -1 0.28 0.00868738 0.00792196 45 40 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 7.36 vpr 60.27 MiB 0.01 5860 -1 -1 10 0.07 -1 -1 31712 -1 -1 6 49 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61712 49 25 165 190 1 131 80 17 17 289 -1 unnamed_device 21.7 MiB 1.48 744 60.3 MiB 0.10 0.01 3.40059 -93.2005 -3.40059 3.40059 1.07 0.000179394 0.000144974 0.0152911 0.0123705 34 1673 47 6.79088e+06 80832 618332. 2139.56 2.27 0.0944976 0.0815986 25102 150614 -1 1456 13 533 731 54141 12890 0 0 54141 12890 731 588 0 0 2673 2271 0 0 4329 3098 0 0 731 605 0 0 22979 3046 0 0 22698 3282 0 0 731 0 0 198 86 213 1640 0 0 3.40059 3.40059 -104.964 -3.40059 0 0 787024. 2723.27 0.32 0.04 0.17 -1 -1 0.32 0.00991149 0.00897129 48 43 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 10.69 vpr 60.61 MiB 0.01 5872 -1 -1 11 0.08 -1 -1 32024 -1 -1 9 57 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62064 57 29 199 228 1 156 95 17 17 289 -1 unnamed_device 22.2 MiB 2.69 677 60.6 MiB 0.08 0.00 3.86613 -110.405 -3.86613 3.86613 1.00 0.000248931 0.000199816 0.0137009 0.0111469 36 1717 47 6.79088e+06 121248 648988. 2245.63 4.51 0.115723 0.100261 25390 158009 -1 1357 14 549 727 49643 12117 0 0 49643 12117 727 597 0 0 2541 2130 0 0 4092 2997 0 0 727 613 0 0 20659 2964 0 0 20897 2816 0 0 727 0 0 178 176 105 1578 0 0 3.86613 3.86613 -122.935 -3.86613 0 0 828058. 2865.25 0.30 0.04 0.18 -1 -1 0.30 0.0129525 0.0117776 59 57 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 12.49 vpr 60.68 MiB 0.02 6016 -1 -1 13 0.10 -1 -1 31980 -1 -1 9 65 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62140 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 22.0 MiB 1.68 729 60.7 MiB 0.24 0.01 4.41008 -132.741 -4.41008 4.41008 1.06 0.000340886 0.000283422 0.0257591 0.0211845 38 1925 33 6.79088e+06 121248 678818. 2348.85 7.30 0.175628 0.151744 25966 169698 -1 1454 17 789 1021 57239 15756 0 0 57239 15756 1021 889 0 0 3532 3064 0 0 5273 3919 0 0 1021 918 0 0 22713 3546 0 0 23679 3420 0 0 1021 0 0 232 148 175 2040 0 0 4.58222 4.58222 -151.258 -4.58222 0 0 902133. 3121.57 0.28 0.04 0.15 -1 -1 0.28 0.01448 0.0129901 65 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 10.31 vpr 61.75 MiB 0.03 6376 -1 -1 19 0.12 -1 -1 31880 -1 -1 14 97 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63228 97 49 340 389 1 266 160 17 17 289 -1 unnamed_device 23.0 MiB 1.91 1632 61.7 MiB 0.31 0.00 6.45794 -271.133 -6.45794 6.45794 0.95 0.000459447 0.000376329 0.0425132 0.0357128 36 3437 33 6.79088e+06 188608 648988. 2245.63 4.70 0.221809 0.195429 25390 158009 -1 3020 35 1060 1467 300632 152471 0 0 300632 152471 1467 1198 0 0 5225 4369 0 0 11536 7778 0 0 1467 1244 0 0 138860 70267 0 0 142077 67615 0 0 1467 0 0 407 261 395 3370 0 0 6.58324 6.58324 -292.559 -6.58324 0 0 828058. 2865.25 0.30 0.15 0.18 -1 -1 0.30 0.0295061 0.0266103 100 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 13.21 vpr 62.17 MiB 0.02 6524 -1 -1 26 0.13 -1 -1 32200 -1 -1 19 129 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63664 129 65 454 519 1 356 213 17 17 289 -1 unnamed_device 23.2 MiB 5.86 1815 62.2 MiB 0.42 0.01 8.37701 -403.679 -8.37701 8.37701 1.04 0.000676148 0.000563159 0.0590823 0.0503762 36 3899 19 6.79088e+06 255968 648988. 2245.63 3.22 0.260412 0.233057 25390 158009 -1 3478 12 1273 1641 124624 29879 0 0 124624 29879 1641 1395 0 0 5904 4932 0 0 9372 6788 0 0 1641 1416 0 0 53639 7587 0 0 52427 7761 0 0 1641 0 0 368 281 349 3411 0 0 8.50231 8.50231 -437.696 -8.50231 0 0 828058. 2865.25 0.32 0.09 0.18 -1 -1 0.32 0.0293252 0.02707 133 132 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 3.63 vpr 59.66 MiB 0.01 5920 -1 -1 1 0.01 -1 -1 29256 -1 -1 1 7 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61088 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 21.2 MiB 0.03 26 59.7 MiB 0.01 0.00 0.583992 -6.33992 -0.583992 0.583992 1.07 3.0605e-05 2.058e-05 0.000809067 0.000599405 18 89 8 6.87369e+06 13973.8 376052. 1301.22 0.59 0.00205425 0.00165653 22882 88689 -1 86 10 43 43 1909 755 0 0 1909 755 43 43 0 0 203 174 0 0 233 204 0 0 43 43 0 0 785 135 0 0 602 156 0 0 43 0 0 0 0 0 43 0 0 0.62144 0.62144 -7.71822 -0.62144 0 0 470940. 1629.55 0.19 0.01 0.10 -1 -1 0.19 0.00103671 0.000882982 8 -1 5 5 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 4.35 vpr 59.77 MiB 0.01 5920 -1 -1 1 0.01 -1 -1 29340 -1 -1 2 9 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61204 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 21.3 MiB 0.04 50 59.8 MiB 0.01 0.00 0.674773 -8.44771 -0.674773 0.674773 1.06 3.4806e-05 2.588e-05 0.00092491 0.000712739 18 150 17 6.87369e+06 27947.7 376052. 1301.22 1.33 0.00516486 0.00414867 22882 88689 -1 138 10 77 77 3456 1319 0 0 3456 1319 77 77 0 0 285 262 0 0 393 294 0 0 77 77 0 0 1445 295 0 0 1179 314 0 0 77 0 0 0 0 0 77 0 0 1.02867 1.02867 -11.5412 -1.02867 0 0 470940. 1629.55 0.20 0.01 0.11 -1 -1 0.20 0.00135372 0.0011662 10 -1 6 6 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 4.41 vpr 60.13 MiB 0.01 5904 -1 -1 1 0.01 -1 -1 29344 -1 -1 2 11 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61576 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 21.6 MiB 0.05 68 60.1 MiB 0.02 0.00 0.685773 -10.47 -0.685773 0.685773 1.07 3.9047e-05 2.8536e-05 0.00114553 0.000884735 18 230 10 6.87369e+06 27947.7 376052. 1301.22 1.41 0.00490247 0.00400147 22882 88689 -1 206 9 104 104 5370 1805 0 0 5370 1805 104 104 0 0 443 357 0 0 552 471 0 0 104 104 0 0 1782 402 0 0 2385 367 0 0 104 0 0 0 0 0 104 0 0 1.05067 1.05067 -15.5713 -1.05067 0 0 470940. 1629.55 0.20 0.01 0.10 -1 -1 0.20 0.00147026 0.00128345 12 -1 7 7 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 5.83 vpr 59.89 MiB 0.02 5920 -1 -1 1 0.01 -1 -1 29304 -1 -1 2 13 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61332 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 21.3 MiB 0.04 80 59.9 MiB 0.01 0.00 0.707773 -12.5849 -0.707773 0.707773 1.04 4.8574e-05 3.658e-05 0.00167601 0.00129385 34 282 22 6.87369e+06 27947.7 618332. 2139.56 2.61 0.0224146 0.0180717 25762 151098 -1 232 21 275 275 15152 5054 0 0 15152 5054 275 275 0 0 1043 905 0 0 1498 1154 0 0 275 275 0 0 5064 1305 0 0 6997 1140 0 0 275 0 0 0 0 0 275 0 0 1.08367 1.08367 -17.4716 -1.08367 0 0 787024. 2723.27 0.30 0.03 0.16 -1 -1 0.30 0.00314942 0.0026885 14 -1 8 8 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 5.23 vpr 60.23 MiB 0.02 5912 -1 -1 1 0.01 -1 -1 29244 -1 -1 3 15 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61672 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 21.6 MiB 0.09 100 60.2 MiB 0.03 0.00 1.13846 -15.3535 -1.13846 1.13846 1.07 5.7558e-05 4.387e-05 0.00208414 0.0016446 26 362 27 6.87369e+06 41921.5 503264. 1741.40 2.01 0.0193073 0.0156063 24322 120374 -1 326 13 207 207 12299 3948 0 0 12299 3948 207 207 0 0 814 688 0 0 1193 967 0 0 207 207 0 0 5616 916 0 0 4262 963 0 0 207 0 0 0 0 0 207 0 0 1.11467 1.11467 -21.778 -1.11467 0 0 618332. 2139.56 0.22 0.05 0.14 -1 -1 0.22 0.0030046 0.00257071 17 -1 9 9 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 4.00 vpr 59.96 MiB 0.01 5996 -1 -1 1 0.00 -1 -1 29372 -1 -1 3 17 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61396 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 21.3 MiB 0.05 149 60.0 MiB 0.02 0.00 0.964803 -19.1307 -0.964803 0.964803 1.05 6.2936e-05 4.7827e-05 0.00255903 0.00201544 26 363 13 6.87369e+06 41921.5 503264. 1741.40 0.80 0.0113705 0.00933459 24322 120374 -1 325 16 186 186 11962 3711 0 0 11962 3711 186 186 0 0 806 697 0 0 1080 945 0 0 186 186 0 0 4697 895 0 0 5007 802 0 0 186 0 0 0 0 0 186 0 0 1.18497 1.18497 -24.6504 -1.18497 0 0 618332. 2139.56 0.25 0.01 0.14 -1 -1 0.25 0.00294161 0.00254106 18 -1 10 10 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 5.45 vpr 59.95 MiB 0.03 6004 -1 -1 1 0.01 -1 -1 29380 -1 -1 3 19 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61392 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 21.3 MiB 0.04 136 60.0 MiB 0.02 0.00 0.975803 -19.8735 -0.975803 0.975803 1.00 6.9284e-05 5.3059e-05 0.00316412 0.00248653 28 337 12 6.87369e+06 41921.5 531479. 1839.03 2.15 0.0233103 0.0190778 24610 126494 -1 304 10 160 160 10418 3135 0 0 10418 3135 160 160 0 0 654 560 0 0 911 795 0 0 160 160 0 0 3732 827 0 0 4801 633 0 0 160 0 0 0 0 0 160 0 0 1.01137 1.01137 -25.3681 -1.01137 0 0 648988. 2245.63 0.26 0.05 0.14 -1 -1 0.26 0.00256068 0.00228011 20 -1 11 11 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 4.80 vpr 60.01 MiB 0.01 6132 -1 -1 1 0.01 -1 -1 29464 -1 -1 3 21 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61452 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 21.6 MiB 0.06 144 60.0 MiB 0.02 0.00 0.986803 -22.4034 -0.986803 0.986803 0.85 5.4653e-05 4.0819e-05 0.00325472 0.00250042 28 452 25 6.87369e+06 41921.5 531479. 1839.03 1.84 0.0259287 0.0211335 24610 126494 -1 382 15 254 254 22036 5721 0 0 22036 5721 254 254 0 0 1012 893 0 0 1394 1149 0 0 254 254 0 0 8802 1744 0 0 10320 1427 0 0 254 0 0 0 0 0 254 0 0 1.12264 1.12264 -28.5407 -1.12264 0 0 648988. 2245.63 0.26 0.02 0.14 -1 -1 0.26 0.00343265 0.00297367 22 -1 12 12 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 5.70 vpr 59.99 MiB 0.01 5912 -1 -1 1 0.01 -1 -1 29400 -1 -1 4 23 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61428 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 21.5 MiB 0.09 199 60.0 MiB 0.03 0.00 0.997803 -25.4236 -0.997803 0.997803 0.96 8.0628e-05 6.1951e-05 0.00363935 0.00287773 28 448 13 6.87369e+06 55895.4 531479. 1839.03 2.69 0.0247539 0.0198981 24610 126494 -1 404 8 181 181 10689 3291 0 0 10689 3291 181 181 0 0 769 651 0 0 1036 893 0 0 181 181 0 0 4672 669 0 0 3850 716 0 0 181 0 0 0 0 0 181 0 0 1.13667 1.13667 -31.4038 -1.13667 0 0 648988. 2245.63 0.21 0.02 0.13 -1 -1 0.21 0.0024543 0.00220988 24 -1 13 13 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 6.30 vpr 60.07 MiB 0.02 6032 -1 -1 1 0.01 -1 -1 29432 -1 -1 4 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61516 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 21.5 MiB 0.18 274 60.1 MiB 0.02 0.00 1.0088 -27.9535 -1.0088 1.0088 1.03 8.084e-05 6.1922e-05 0.00268433 0.00219985 30 623 15 6.87369e+06 55895.4 556674. 1926.21 2.84 0.0336248 0.0278111 25186 138497 -1 554 21 306 306 23217 5639 0 0 23217 5639 306 306 0 0 1106 932 0 0 1486 1226 0 0 306 306 0 0 10302 1351 0 0 9711 1518 0 0 306 0 0 0 0 0 306 0 0 1.10367 1.10367 -36.3587 -1.10367 0 0 706193. 2443.58 0.28 0.03 0.16 -1 -1 0.28 0.00507602 0.00434258 26 -1 14 14 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 4.01 vpr 60.03 MiB 0.02 6076 -1 -1 1 0.01 -1 -1 29432 -1 -1 4 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61468 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 21.5 MiB 0.07 190 60.0 MiB 0.03 0.00 1.0198 -28.7403 -1.0198 1.0198 0.94 9.4079e-05 7.1932e-05 0.00406131 0.00323217 32 627 14 6.87369e+06 55895.4 586450. 2029.24 0.92 0.0174472 0.0144738 25474 144626 -1 541 17 395 395 27199 8177 0 0 27199 8177 395 395 0 0 1575 1357 0 0 2393 1881 0 0 395 395 0 0 12715 2184 0 0 9726 1965 0 0 395 0 0 0 0 0 395 0 0 1.15867 1.15867 -39.0079 -1.15867 0 0 744469. 2576.02 0.29 0.02 0.16 -1 -1 0.29 0.00470749 0.00408198 28 -1 15 15 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 6.24 vpr 60.30 MiB 0.02 6172 -1 -1 1 0.02 -1 -1 29436 -1 -1 4 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61748 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 21.7 MiB 0.10 231 60.3 MiB 0.04 0.00 1.0901 -31.669 -1.0901 1.0901 1.03 0.000108419 8.5164e-05 0.00772401 0.0060829 36 726 30 6.87369e+06 55895.4 648988. 2245.63 2.99 0.0439544 0.0363455 26050 158493 -1 581 12 399 399 26089 7177 0 0 26089 7177 399 399 0 0 1486 1251 0 0 2043 1634 0 0 399 399 0 0 9934 1845 0 0 11828 1649 0 0 399 0 0 0 0 0 399 0 0 1.19167 1.19167 -40.3081 -1.19167 0 0 828058. 2865.25 0.34 0.03 0.18 -1 -1 0.34 0.00446404 0.00392229 31 -1 16 16 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 5.17 vpr 60.33 MiB 0.02 6076 -1 -1 1 0.01 -1 -1 29420 -1 -1 5 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61780 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 21.7 MiB 0.33 441 60.3 MiB 0.34 0.00 1.27683 -39.8363 -1.27683 1.27683 1.20 0.000125791 8.8784e-05 0.01122 0.00918577 28 966 16 6.87369e+06 69869.2 531479. 1839.03 1.01 0.0282797 0.0236858 24610 126494 -1 912 17 440 440 41654 9362 0 0 41654 9362 440 440 0 0 1692 1445 0 0 2399 1921 0 0 440 440 0 0 19126 2443 0 0 17557 2673 0 0 440 0 0 0 0 0 440 0 0 1.31033 1.31033 -48.8913 -1.31033 0 0 648988. 2245.63 0.25 0.14 0.13 -1 -1 0.25 0.00727091 0.00651479 33 -1 17 17 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 4.85 vpr 60.27 MiB 0.02 6036 -1 -1 1 0.01 -1 -1 29456 -1 -1 5 33 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61720 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 21.8 MiB 0.20 305 60.3 MiB 0.29 0.00 1.28783 -37.2751 -1.28783 1.28783 1.12 0.000153225 0.000125791 0.010784 0.00883117 32 911 24 6.87369e+06 69869.2 586450. 2029.24 0.93 0.0249196 0.0207119 25474 144626 -1 685 18 478 478 45224 11324 0 0 45224 11324 478 478 0 0 2053 1823 0 0 3118 2579 0 0 478 478 0 0 18655 3275 0 0 20442 2691 0 0 478 0 0 0 0 0 478 0 0 1.21167 1.21167 -47.0281 -1.21167 0 0 744469. 2576.02 0.29 0.03 0.17 -1 -1 0.29 0.00574834 0.00500164 34 -1 18 18 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 5.12 vpr 60.39 MiB 0.02 6060 -1 -1 1 0.01 -1 -1 29364 -1 -1 5 37 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61840 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 21.9 MiB 0.22 402 60.4 MiB 0.21 0.00 1.30983 -43.0954 -1.30983 1.30983 1.09 0.000158261 0.0001264 0.00597649 0.00497809 30 996 18 6.87369e+06 69869.2 556674. 1926.21 0.86 0.0228516 0.0192565 25186 138497 -1 842 16 407 407 30076 7586 0 0 30076 7586 407 407 0 0 1498 1282 0 0 1932 1641 0 0 407 407 0 0 12594 1962 0 0 13238 1887 0 0 407 0 0 0 0 0 407 0 0 1.23367 1.23367 -55.3243 -1.23367 0 0 706193. 2443.58 0.29 0.05 0.17 -1 -1 0.29 0.00618182 0.00541375 38 -1 20 20 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 7.32 vpr 60.39 MiB 0.01 6064 -1 -1 1 0.01 -1 -1 29388 -1 -1 6 41 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61840 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 21.8 MiB 0.18 567 60.4 MiB 0.33 0.00 1.33183 -54.5101 -1.33183 1.33183 1.13 0.000100141 8.1731e-05 0.0141022 0.0116736 34 1188 17 6.87369e+06 83843 618332. 2139.56 3.36 0.0733993 0.0622772 25762 151098 -1 1086 13 499 499 43260 9962 0 0 43260 9962 499 499 0 0 1950 1665 0 0 2752 2251 0 0 499 499 0 0 20620 2224 0 0 16940 2824 0 0 499 0 0 0 0 0 499 0 0 1.27767 1.27767 -65.6214 -1.27767 0 0 787024. 2723.27 0.27 0.03 0.12 -1 -1 0.27 0.00610783 0.00539486 42 -1 22 22 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 5.32 vpr 60.71 MiB 0.01 6084 -1 -1 1 0.01 -1 -1 29368 -1 -1 6 45 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62164 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 22.1 MiB 0.28 708 60.7 MiB 0.27 0.01 1.35383 -61.9043 -1.35383 1.35383 0.92 0.000200613 0.000168824 0.0238382 0.0213697 34 1439 16 6.87369e+06 83843 618332. 2139.56 1.78 0.0721687 0.0631629 25762 151098 -1 1333 13 603 603 66318 13830 0 0 66318 13830 603 603 0 0 2349 2014 0 0 3443 2704 0 0 603 603 0 0 29389 4190 0 0 29931 3716 0 0 603 0 0 0 0 0 603 0 0 1.16967 1.16967 -71.0573 -1.16967 0 0 787024. 2723.27 0.27 0.02 0.14 -1 -1 0.27 0.00398694 0.00352683 47 -1 24 24 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 6.01 vpr 60.62 MiB 0.02 6176 -1 -1 1 0.01 -1 -1 29392 -1 -1 7 49 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62076 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 22.1 MiB 0.22 691 60.6 MiB 0.25 0.00 1.61086 -66.1702 -1.61086 1.61086 0.96 0.000179584 0.000142162 0.0152038 0.0124019 34 1437 20 6.87369e+06 97816.9 618332. 2139.56 1.87 0.0692214 0.059128 25762 151098 -1 1303 16 611 611 51104 11849 0 0 51104 11849 611 611 0 0 2347 2009 0 0 3577 2825 0 0 611 611 0 0 23803 2577 0 0 20155 3216 0 0 611 0 0 0 0 0 611 0 0 1.31967 1.31967 -76.8856 -1.31967 0 0 787024. 2723.27 0.30 0.04 0.17 -1 -1 0.30 0.00801856 0.00707247 50 -1 26 26 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 5.95 vpr 60.71 MiB 0.02 6280 -1 -1 1 0.01 -1 -1 29400 -1 -1 8 57 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62168 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 22.1 MiB 0.24 762 60.7 MiB 0.43 0.00 1.65486 -77.9312 -1.65486 1.65486 1.08 0.000360805 0.000287372 0.0212343 0.0176076 34 1612 18 6.87369e+06 111791 618332. 2139.56 2.04 0.0812386 0.0696758 25762 151098 -1 1444 15 723 723 70139 15613 0 0 70139 15613 723 723 0 0 2828 2433 0 0 4035 3263 0 0 723 723 0 0 32260 4308 0 0 29570 4163 0 0 723 0 0 0 0 0 723 0 0 1.26037 1.26037 -86.6925 -1.26037 0 0 787024. 2723.27 0.25 0.04 0.15 -1 -1 0.25 0.00724697 0.00637816 58 -1 30 30 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 6.10 vpr 61.04 MiB 0.02 6204 -1 -1 1 0.01 -1 -1 29420 -1 -1 9 65 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62504 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 22.5 MiB 0.24 779 61.0 MiB 0.38 0.00 1.93389 -88.8786 -1.93389 1.93389 1.12 0.000194699 0.000160031 0.0188187 0.0155945 34 2029 21 6.87369e+06 125765 618332. 2139.56 2.04 0.0923174 0.0794462 25762 151098 -1 1669 14 767 767 64950 15807 0 0 64950 15807 767 767 0 0 2918 2477 0 0 4410 3625 0 0 767 767 0 0 28343 3895 0 0 27745 4276 0 0 767 0 0 0 0 0 767 0 0 1.55297 1.55297 -105.859 -1.55297 0 0 787024. 2723.27 0.32 0.04 0.15 -1 -1 0.32 0.00832473 0.00741667 66 -1 34 34 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 6.24 vpr 61.68 MiB 0.02 6460 -1 -1 1 0.02 -1 -1 29724 -1 -1 13 97 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63160 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 22.9 MiB 0.28 1445 61.7 MiB 0.44 0.01 2.57995 -154.578 -2.57995 2.57995 1.10 0.000498801 0.000411617 0.0329003 0.0278552 34 3093 24 6.87369e+06 181660 618332. 2139.56 2.08 0.14363 0.126069 25762 151098 -1 2748 18 1225 1225 115842 26351 0 0 115842 26351 1225 1225 0 0 4839 4173 0 0 6977 5709 0 0 1225 1225 0 0 51629 6857 0 0 49947 7162 0 0 1225 0 0 0 0 0 1225 0 0 1.69397 1.69397 -166.611 -1.69397 0 0 787024. 2723.27 0.27 0.08 0.13 -1 -1 0.27 0.0198579 0.0178467 98 -1 50 50 0 0 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 7.26 vpr 62.26 MiB 0.01 6728 -1 -1 1 0.03 -1 -1 29824 -1 -1 17 129 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63752 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 23.3 MiB 0.29 1850 62.3 MiB 0.66 0.02 3.22602 -224.976 -3.22602 3.22602 1.12 0.000544901 0.000457419 0.0555454 0.0476381 36 3998 16 6.87369e+06 237555 648988. 2245.63 2.72 0.211689 0.187822 26050 158493 -1 3499 17 1547 1547 155350 33305 0 0 155350 33305 1547 1547 0 0 5787 4910 0 0 8230 6527 0 0 1547 1547 0 0 68944 9517 0 0 69295 9257 0 0 1547 0 0 0 0 0 1547 0 0 1.74537 1.74537 -211.891 -1.74537 0 0 828058. 2865.25 0.35 0.08 0.16 -1 -1 0.35 0.0222914 0.0201755 130 -1 66 66 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 4.18 vpr 59.85 MiB 0.02 5864 -1 -1 1 0.00 -1 -1 29304 -1 -1 1 7 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61284 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 21.4 MiB 0.05 26 59.8 MiB 0.01 0.00 0.583992 -6.33992 -0.583992 0.583992 1.10 2.9115e-05 2.013e-05 0.000797986 0.000591082 18 89 8 6.89349e+06 14093.8 376052. 1301.22 0.81 0.00232828 0.00189652 22882 88689 -1 86 10 43 43 1909 755 0 0 1909 755 43 43 0 0 203 174 0 0 233 204 0 0 43 43 0 0 785 135 0 0 602 156 0 0 43 0 0 0 0 0 43 0 0 0.62144 0.62144 -7.71822 -0.62144 0 0 470940. 1629.55 0.18 0.04 0.11 -1 -1 0.18 0.00133332 0.00115105 8 -1 5 5 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 4.42 vpr 59.61 MiB 0.01 5952 -1 -1 1 0.01 -1 -1 29376 -1 -1 2 9 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61044 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 21.1 MiB 0.08 46 59.6 MiB 0.17 0.00 0.702973 -8.41695 -0.702973 0.702973 1.08 4.7377e-05 3.7753e-05 0.001598 0.0012867 18 146 9 6.89349e+06 28187.7 376052. 1301.22 0.68 0.00343873 0.00287453 22882 88689 -1 124 17 108 108 9944 2853 0 0 9944 2853 108 108 0 0 490 424 0 0 623 517 0 0 108 108 0 0 4901 761 0 0 3714 935 0 0 108 0 0 0 0 0 108 0 0 1.06787 1.06787 -11.0343 -1.06787 0 0 470940. 1629.55 0.20 0.14 0.10 -1 -1 0.20 0.00263565 0.00221154 10 -1 6 6 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 5.00 vpr 59.70 MiB 0.01 5876 -1 -1 1 0.01 -1 -1 29360 -1 -1 2 11 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61136 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 21.2 MiB 0.09 76 59.7 MiB 0.01 0.00 0.724973 -11.2925 -0.724973 0.724973 0.79 3.944e-05 2.9077e-05 0.00105638 0.00082187 20 219 8 6.89349e+06 28187.7 414966. 1435.87 1.98 0.0114326 0.00927427 23170 95770 -1 190 9 116 116 6315 2088 0 0 6315 2088 116 116 0 0 478 413 0 0 609 525 0 0 116 116 0 0 2220 450 0 0 2776 468 0 0 116 0 0 0 0 0 116 0 0 0.942573 0.942573 -14.3646 -0.942573 0 0 503264. 1741.40 0.19 0.02 0.09 -1 -1 0.19 0.00182566 0.00159947 12 -1 7 7 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 6.26 vpr 60.05 MiB 0.02 6172 -1 -1 1 0.01 -1 -1 29300 -1 -1 2 13 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61496 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 21.5 MiB 0.14 124 60.1 MiB 0.01 0.00 0.746973 -13.2352 -0.746973 0.746973 1.02 4.7542e-05 3.5745e-05 0.00149886 0.00118919 32 331 10 6.89349e+06 28187.7 586450. 2029.24 2.89 0.0235661 0.0193287 25474 144626 -1 296 10 147 147 10040 2640 0 0 10040 2640 147 147 0 0 525 432 0 0 749 566 0 0 147 147 0 0 4292 688 0 0 4180 660 0 0 147 0 0 0 0 0 147 0 0 1.07887 1.07887 -18.1118 -1.07887 0 0 744469. 2576.02 0.30 0.01 0.17 -1 -1 0.30 0.00188468 0.00163672 14 -1 8 8 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 5.68 vpr 59.84 MiB 0.02 6188 -1 -1 1 0.01 -1 -1 29224 -1 -1 3 15 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61272 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 21.2 MiB 0.22 109 59.8 MiB 0.11 0.00 1.0151 -15.1836 -1.0151 1.0151 1.15 8.6482e-05 6.9676e-05 0.00278628 0.00231682 28 338 12 6.89349e+06 42281.5 531479. 1839.03 2.02 0.0218627 0.0182332 24610 126494 -1 295 13 176 176 9446 2939 0 0 9446 2939 176 176 0 0 646 522 0 0 966 790 0 0 176 176 0 0 4307 562 0 0 3175 713 0 0 176 0 0 0 0 0 176 0 0 1.10367 1.10367 -21.3382 -1.10367 0 0 648988. 2245.63 0.25 0.01 0.14 -1 -1 0.25 0.00271841 0.00234584 17 -1 9 9 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 5.87 vpr 60.14 MiB 0.01 5872 -1 -1 1 0.01 -1 -1 29296 -1 -1 3 17 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61584 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 21.5 MiB 0.12 232 60.1 MiB 0.01 0.00 0.982003 -21.0353 -0.982003 0.982003 1.08 6.2875e-05 4.7837e-05 0.00237837 0.00186292 26 434 8 6.89349e+06 42281.5 503264. 1741.40 2.66 0.0239622 0.0197469 24322 120374 -1 420 15 213 213 17141 4130 0 0 17141 4130 213 213 0 0 863 712 0 0 1140 970 0 0 213 213 0 0 7452 1037 0 0 7260 985 0 0 213 0 0 0 0 0 213 0 0 0.99132 0.99132 -25.1739 -0.99132 0 0 618332. 2139.56 0.22 0.02 0.11 -1 -1 0.22 0.00245351 0.00212837 18 -1 10 10 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 6.18 vpr 60.07 MiB 0.01 5896 -1 -1 1 0.01 -1 -1 29292 -1 -1 3 19 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61508 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 21.4 MiB 0.11 138 60.1 MiB 0.12 0.01 0.993003 -19.9971 -0.993003 0.993003 1.11 9.3954e-05 7.9658e-05 0.003764 0.00302127 28 365 19 6.89349e+06 42281.5 531479. 1839.03 2.73 0.0225624 0.018666 24610 126494 -1 256 10 139 139 8387 2467 0 0 8387 2467 139 139 0 0 511 404 0 0 731 593 0 0 139 139 0 0 3000 687 0 0 3867 505 0 0 139 0 0 0 0 0 139 0 0 0.886073 0.886073 -22.9686 -0.886073 0 0 648988. 2245.63 0.27 0.01 0.13 -1 -1 0.27 0.00267664 0.002339 20 -1 11 11 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 6.66 vpr 60.07 MiB 0.02 5972 -1 -1 1 0.01 -1 -1 29296 -1 -1 3 21 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61512 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 21.7 MiB 0.14 144 60.1 MiB 0.35 0.01 1.004 -22.3376 -1.004 1.004 1.10 0.000109945 8.9178e-05 0.00645818 0.00528376 32 400 13 6.89349e+06 42281.5 586450. 2029.24 2.87 0.0236742 0.0195661 25474 144626 -1 339 10 168 168 11598 3266 0 0 11598 3266 168 168 0 0 691 572 0 0 942 781 0 0 168 168 0 0 4736 778 0 0 4893 799 0 0 168 0 0 0 0 0 168 0 0 0.995573 0.995573 -27.2063 -0.995573 0 0 744469. 2576.02 0.33 0.01 0.10 -1 -1 0.33 0.0029293 0.00260405 22 -1 12 12 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 6.77 vpr 60.07 MiB 0.01 5940 -1 -1 1 0.01 -1 -1 29460 -1 -1 4 23 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61512 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 21.6 MiB 0.16 171 60.1 MiB 0.02 0.00 1.015 -24.7485 -1.015 1.015 0.95 6.3769e-05 4.8435e-05 0.00359872 0.00282274 32 489 12 6.89349e+06 56375.4 586450. 2029.24 3.51 0.0312684 0.0262087 25474 144626 -1 386 10 195 195 12421 3306 0 0 12421 3306 195 195 0 0 703 568 0 0 1035 783 0 0 195 195 0 0 4725 856 0 0 5568 709 0 0 195 0 0 0 0 0 195 0 0 1.14767 1.14767 -30.773 -1.14767 0 0 744469. 2576.02 0.29 0.01 0.17 -1 -1 0.29 0.00286958 0.00251755 24 -1 13 13 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 6.75 vpr 59.94 MiB 0.01 5996 -1 -1 1 0.01 -1 -1 29348 -1 -1 4 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61376 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 21.5 MiB 0.16 162 59.9 MiB 0.24 0.00 1.026 -26.4185 -1.026 1.026 1.09 9.3375e-05 7.6191e-05 0.00373267 0.00306189 32 550 9 6.89349e+06 56375.4 586450. 2029.24 3.06 0.0326449 0.0273332 25474 144626 -1 445 10 233 233 15957 4961 0 0 15957 4961 233 233 0 0 946 787 0 0 1593 1282 0 0 233 233 0 0 7314 1244 0 0 5638 1182 0 0 233 0 0 0 0 0 233 0 0 1.03532 1.03532 -34.23 -1.03532 0 0 744469. 2576.02 0.29 0.01 0.15 -1 -1 0.29 0.00312247 0.00274727 26 -1 14 14 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 4.77 vpr 59.99 MiB 0.02 6224 -1 -1 1 0.00 -1 -1 29312 -1 -1 4 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61432 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 21.5 MiB 0.15 279 60.0 MiB 0.24 0.00 1.037 -30.2297 -1.037 1.037 1.11 0.000107634 8.1998e-05 0.00400611 0.00329109 30 613 12 6.89349e+06 56375.4 556674. 1926.21 0.97 0.0176666 0.0149284 25186 138497 -1 582 13 243 243 14505 4075 0 0 14505 4075 243 243 0 0 894 752 0 0 1164 992 0 0 243 243 0 0 6029 893 0 0 5932 952 0 0 243 0 0 0 0 0 243 0 0 0.947373 0.947373 -37.1321 -0.947373 0 0 706193. 2443.58 0.27 0.01 0.15 -1 -1 0.27 0.00361232 0.0032022 28 -1 15 15 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 5.46 vpr 60.39 MiB 0.02 5996 -1 -1 1 0.01 -1 -1 29440 -1 -1 4 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61840 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 21.8 MiB 0.19 253 60.4 MiB 0.30 0.00 1.048 -32.1107 -1.048 1.048 1.18 0.000136625 0.000109931 0.0111066 0.00907246 36 825 29 6.89349e+06 56375.4 648988. 2245.63 1.52 0.0360422 0.0299248 26050 158493 -1 621 26 473 473 35051 9454 0 0 35051 9454 473 473 0 0 1719 1404 0 0 2703 1984 0 0 473 473 0 0 13667 2775 0 0 16016 2345 0 0 473 0 0 0 0 0 473 0 0 1.20897 1.20897 -39.7437 -1.20897 0 0 828058. 2865.25 0.30 0.03 0.16 -1 -1 0.30 0.00681924 0.00586493 31 -1 16 16 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 4.68 vpr 60.14 MiB 0.02 6168 -1 -1 1 0.01 -1 -1 29444 -1 -1 5 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61588 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 21.5 MiB 0.29 345 60.1 MiB 0.13 0.02 1.29403 -34.0707 -1.29403 1.29403 1.05 0.000215341 0.000183274 0.00461195 0.00377318 30 876 20 6.89349e+06 70469.2 556674. 1926.21 1.10 0.0243085 0.0205685 25186 138497 -1 757 15 383 383 29857 7219 0 0 29857 7219 383 383 0 0 1383 1121 0 0 1760 1460 0 0 383 383 0 0 12968 1939 0 0 12980 1933 0 0 383 0 0 0 0 0 383 0 0 1.18967 1.18967 -46.1493 -1.18967 0 0 706193. 2443.58 0.26 0.02 0.16 -1 -1 0.26 0.00545743 0.00478832 33 -1 17 17 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 4.64 vpr 60.10 MiB 0.01 5900 -1 -1 1 0.01 -1 -1 29436 -1 -1 5 33 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61540 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 21.5 MiB 0.22 312 60.1 MiB 0.05 0.00 1.30503 -37.6664 -1.30503 1.30503 0.93 0.000114795 8.9535e-05 0.00783678 0.00630315 32 795 15 6.89349e+06 70469.2 586450. 2029.24 1.29 0.0280778 0.0236484 25474 144626 -1 620 19 435 435 29599 7959 0 0 29599 7959 435 435 0 0 1674 1459 0 0 2502 1959 0 0 435 435 0 0 11809 1919 0 0 12744 1752 0 0 435 0 0 0 0 0 435 0 0 1.09737 1.09737 -44.4307 -1.09737 0 0 744469. 2576.02 0.27 0.03 0.16 -1 -1 0.27 0.0059557 0.00516587 34 -1 18 18 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 4.83 vpr 60.36 MiB 0.02 6064 -1 -1 1 0.01 -1 -1 29376 -1 -1 5 37 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61812 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 21.9 MiB 0.18 398 60.4 MiB 0.19 0.01 1.32703 -42.5847 -1.32703 1.32703 1.11 0.000328656 0.000258144 0.00610427 0.00502364 32 1036 15 6.89349e+06 70469.2 586450. 2029.24 0.93 0.0237464 0.0200682 25474 144626 -1 907 13 410 410 34747 8413 0 0 34747 8413 410 410 0 0 1545 1304 0 0 2549 1982 0 0 410 410 0 0 15034 2118 0 0 14799 2189 0 0 410 0 0 0 0 0 410 0 0 1.25567 1.25567 -57.2629 -1.25567 0 0 744469. 2576.02 0.26 0.02 0.16 -1 -1 0.26 0.00494525 0.00439012 38 -1 20 20 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 5.90 vpr 60.27 MiB 0.01 6132 -1 -1 1 0.00 -1 -1 29428 -1 -1 6 41 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61712 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 21.7 MiB 0.20 572 60.3 MiB 0.39 0.00 1.34903 -54.8889 -1.34903 1.34903 1.17 0.000269649 0.000212195 0.0157405 0.0130364 34 1211 12 6.89349e+06 84563 618332. 2139.56 1.69 0.0604726 0.0525625 25762 151098 -1 1123 12 483 483 44121 9866 0 0 44121 9866 483 483 0 0 1816 1528 0 0 2667 2158 0 0 483 483 0 0 21114 2334 0 0 17558 2880 0 0 483 0 0 0 0 0 483 0 0 1.29487 1.29487 -66.3751 -1.29487 0 0 787024. 2723.27 0.32 0.05 0.17 -1 -1 0.32 0.00654482 0.00578419 42 -1 22 22 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 5.86 vpr 60.44 MiB 0.01 6120 -1 -1 1 0.01 -1 -1 29412 -1 -1 6 45 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61892 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 21.9 MiB 0.25 707 60.4 MiB 0.39 0.00 1.37103 -61.9569 -1.37103 1.37103 1.14 0.000147534 0.000125024 0.0147513 0.0121846 34 1428 16 6.89349e+06 84563 618332. 2139.56 1.69 0.0575437 0.0489427 25762 151098 -1 1358 13 558 558 53899 11768 0 0 53899 11768 558 558 0 0 2151 1793 0 0 3207 2560 0 0 558 558 0 0 23884 3296 0 0 23541 3003 0 0 558 0 0 0 0 0 558 0 0 1.27297 1.27297 -71.3893 -1.27297 0 0 787024. 2723.27 0.29 0.04 0.12 -1 -1 0.29 0.00645728 0.0056893 47 -1 24 24 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 5.91 vpr 60.70 MiB 0.02 6180 -1 -1 1 0.01 -1 -1 29420 -1 -1 7 49 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62156 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 22.3 MiB 0.24 639 60.7 MiB 0.42 0.00 1.62806 -63.5666 -1.62806 1.62806 1.11 0.000198129 0.000160184 0.0178257 0.0147383 34 1407 12 6.89349e+06 98656.9 618332. 2139.56 1.80 0.066548 0.0569718 25762 151098 -1 1242 15 574 574 43656 10464 0 0 43656 10464 574 574 0 0 2134 1765 0 0 3121 2481 0 0 574 574 0 0 19872 2336 0 0 17381 2734 0 0 574 0 0 0 0 0 574 0 0 1.32587 1.32587 -74.7575 -1.32587 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.00848889 0.00755689 50 -1 26 26 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 5.62 vpr 60.58 MiB 0.03 6412 -1 -1 1 0.01 -1 -1 29380 -1 -1 8 57 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62032 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 22.0 MiB 0.22 646 60.6 MiB 0.33 0.00 1.67206 -73.0817 -1.67206 1.67206 1.12 0.000237102 0.000190172 0.0188389 0.0155246 34 1553 19 6.89349e+06 112751 618332. 2139.56 1.71 0.0747531 0.0637206 25762 151098 -1 1363 15 653 653 58070 13402 0 0 58070 13402 653 653 0 0 2424 1962 0 0 3439 2707 0 0 653 653 0 0 25284 3802 0 0 25617 3625 0 0 653 0 0 0 0 0 653 0 0 1.40297 1.40297 -86.0358 -1.40297 0 0 787024. 2723.27 0.23 0.04 0.11 -1 -1 0.23 0.0103737 0.00929385 58 -1 30 30 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 7.02 vpr 60.86 MiB 0.02 6332 -1 -1 1 0.01 -1 -1 29464 -1 -1 9 65 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62320 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 22.4 MiB 0.23 790 60.9 MiB 0.45 0.01 1.95109 -89.0439 -1.95109 1.95109 1.09 0.000251074 0.000203915 0.0255399 0.0213226 30 1989 23 6.89349e+06 126845 556674. 1926.21 2.97 0.103178 0.0886187 25186 138497 -1 1627 13 767 767 64329 16046 0 0 64329 16046 767 767 0 0 2787 2285 0 0 3518 2923 0 0 767 767 0 0 27780 4583 0 0 28710 4721 0 0 767 0 0 0 0 0 767 0 0 1.54817 1.54817 -107.446 -1.54817 0 0 706193. 2443.58 0.28 0.04 0.16 -1 -1 0.28 0.00922326 0.00819584 66 -1 34 34 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 6.09 vpr 61.54 MiB 0.03 6500 -1 -1 1 0.02 -1 -1 29612 -1 -1 13 97 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63016 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 22.8 MiB 0.30 1432 61.5 MiB 0.46 0.01 2.59715 -153.64 -2.59715 2.59715 1.10 0.000321671 0.000277793 0.0333458 0.0280636 34 2923 15 6.89349e+06 183220 618332. 2139.56 1.99 0.133833 0.117128 25762 151098 -1 2639 14 1093 1093 100665 22681 0 0 100665 22681 1093 1093 0 0 4192 3501 0 0 5938 4827 0 0 1093 1093 0 0 43730 6221 0 0 44619 5946 0 0 1093 0 0 0 0 0 1093 0 0 1.54037 1.54037 -156.892 -1.54037 0 0 787024. 2723.27 0.25 0.06 0.15 -1 -1 0.25 0.0120385 0.0107438 98 -1 50 50 0 0 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 6.56 vpr 62.48 MiB 0.01 6576 -1 -1 1 0.02 -1 -1 29832 -1 -1 17 129 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63976 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 23.6 MiB 0.29 1809 62.5 MiB 0.77 0.02 3.24322 -222.559 -3.24322 3.24322 1.09 0.000591603 0.000500347 0.0588384 0.050352 34 4126 22 6.89349e+06 239595 618332. 2139.56 2.13 0.2131 0.187878 25762 151098 -1 3425 19 1506 1506 129179 29861 0 0 129179 29861 1506 1506 0 0 5672 4619 0 0 7924 6331 0 0 1506 1506 0 0 57685 7863 0 0 54886 8036 0 0 1506 0 0 0 0 0 1506 0 0 1.74687 1.74687 -212.486 -1.74687 0 0 787024. 2723.27 0.22 0.11 0.13 -1 -1 0.22 0.0312611 0.0284136 130 -1 66 66 0 0 From e9cab30372e601c3bf59a7d68ab1aa1ac5a32ba5 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 4 Apr 2023 16:07:19 -0400 Subject: [PATCH 47/81] golden results updated for FIR_filters_frac using odin-ii --- .../config/golden_results.txt | 782 +++++++++--------- 1 file changed, 391 insertions(+), 391 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt index fd3a99c46a9..74a456bcc0d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt @@ -1,391 +1,391 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_2ripple_N8_22nm.xml fir_pipe_14.v common 8.35 vpr 69.19 MiB 0.07 10312 -1 -1 1 0.19 -1 -1 35768 -1 -1 65 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70852 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 31.5 MiB 0.82 5523 69.2 MiB 0.36 0.01 3.64546 -999.314 -3.64546 3.64546 0.77 0.00290175 0.0025684 0.191746 0.169545 58 10816 31 6.59459e+06 2.52492e+06 871168. 3403.00 3.63 0.726309 0.645252 9096 19 4268 4886 862464 198488 4.27196 4.27196 -1230.4 -4.27196 0 0 1.09288e+06 4269.05 0.27 0.20 0.082179 0.0753626 481 649 247 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_15.v common 8.48 vpr 70.30 MiB 0.08 10792 -1 -1 1 0.27 -1 -1 36044 -1 -1 72 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71992 22 19 2144 1789 1 1110 118 16 16 256 mult_36 auto 32.7 MiB 0.77 5760 70.3 MiB 0.21 0.00 3.89606 -1097.93 -3.89606 3.89606 0.59 0.00144774 0.00124981 0.0954711 0.0825635 60 11691 27 6.59459e+06 3.02225e+06 890343. 3477.90 4.22 0.648923 0.575709 9294 17 4597 5238 733749 176308 4.27196 4.27196 -1321.41 -4.27196 0 0 1.11577e+06 4358.47 0.25 0.17 0.0801104 0.073482 521 704 266 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_16.v common 8.04 vpr 70.48 MiB 0.07 10792 -1 -1 1 0.26 -1 -1 36580 -1 -1 74 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72168 22 19 2218 1846 1 1154 120 16 16 256 mult_36 auto 32.9 MiB 0.74 6393 70.5 MiB 0.20 0.00 4.02136 -1146.25 -4.02136 4.02136 0.50 0.00141863 0.00121341 0.0911137 0.0786745 60 12895 28 6.59459e+06 3.0512e+06 890343. 3477.90 3.95 0.592459 0.523112 10389 21 4775 5474 846846 194545 4.27196 4.27196 -1418.42 -4.27196 0 0 1.11577e+06 4358.47 0.26 0.23 0.107497 0.098528 540 723 285 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_17.v common 9.13 vpr 72.32 MiB 0.10 11636 -1 -1 1 0.22 -1 -1 37424 -1 -1 83 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74052 22 19 2536 2130 1 1256 129 16 16 256 mult_36 auto 34.7 MiB 1.25 7486 72.3 MiB 0.30 0.00 3.89606 -1324.58 -3.89606 3.89606 0.50 0.00170068 0.00146658 0.145224 0.126191 64 13796 45 6.59459e+06 3.18149e+06 943753. 3686.54 4.03 0.864429 0.76723 11367 28 4847 5595 1018774 262766 4.27196 4.27196 -1603.06 -4.27196 0 0 1.19033e+06 4649.74 0.27 0.29 0.138064 0.125148 617 851 304 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_18.v common 9.12 vpr 72.61 MiB 0.10 11776 -1 -1 1 0.37 -1 -1 36812 -1 -1 86 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74348 22 19 2610 2187 1 1305 132 16 16 256 mult_36 auto 35.2 MiB 1.34 7512 72.6 MiB 0.27 0.00 3.89606 -1337.53 -3.89606 3.89606 0.50 0.00177874 0.00153064 0.126905 0.1102 68 13533 30 6.59459e+06 3.22491e+06 1.00038e+06 3907.74 3.65 0.792142 0.70247 11184 17 4961 5779 825049 184817 4.27196 4.27196 -1608.86 -4.27196 0 0 1.24648e+06 4869.04 0.29 0.23 0.116409 0.106977 636 870 323 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_19.v common 8.42 vpr 73.38 MiB 0.11 12140 -1 -1 1 0.30 -1 -1 36652 -1 -1 91 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75136 22 19 2778 2321 1 1401 138 16 16 256 mult_36 auto 36.1 MiB 1.01 7940 73.4 MiB 0.33 0.00 3.89606 -1459.39 -3.89606 3.89606 0.50 0.00189941 0.00160857 0.156545 0.135805 70 13950 40 6.59459e+06 3.69329e+06 1.02522e+06 4004.78 3.31 0.852605 0.751968 11559 20 5201 5912 867197 208644 4.27196 4.27196 -1708.66 -4.27196 0 0 1.29210e+06 5047.26 0.37 0.35 0.185038 0.170399 676 925 342 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_20.v common 8.64 vpr 73.77 MiB 0.10 12360 -1 -1 1 0.30 -1 -1 36712 -1 -1 93 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75536 22 19 2852 2378 1 1441 140 16 16 256 mult_36 auto 36.4 MiB 1.00 8092 73.8 MiB 0.34 0.00 3.89606 -1489.72 -3.89606 3.89606 0.56 0.00226338 0.00197018 0.166002 0.146216 66 15259 30 6.59459e+06 3.72224e+06 974584. 3806.97 3.13 0.832391 0.737065 12368 21 5779 6643 1010407 234801 4.27196 4.27196 -1773.13 -4.27196 0 0 1.22072e+06 4768.46 0.43 0.43 0.201895 0.185017 695 944 361 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_21.v common 10.43 vpr 74.70 MiB 0.08 12696 -1 -1 1 0.26 -1 -1 38468 -1 -1 97 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76492 22 19 3057 2549 1 1544 144 16 16 256 mult_36 auto 37.4 MiB 1.37 9428 74.7 MiB 0.37 0.00 4.02136 -1589.54 -4.02136 4.02136 0.55 0.00220145 0.00191096 0.178464 0.155585 70 17279 35 6.59459e+06 3.78015e+06 1.02522e+06 4004.78 5.14 0.959551 0.844542 13977 21 6052 6873 1176799 267937 4.39726 4.39726 -1929.26 -4.39726 0 0 1.29210e+06 5047.26 0.29 0.33 0.16055 0.146768 742 1017 380 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_22.v common 9.70 vpr 74.90 MiB 0.12 13156 -1 -1 1 0.45 -1 -1 37452 -1 -1 100 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76696 22 19 3131 2606 1 1587 147 16 16 256 mult_36 auto 37.9 MiB 0.94 9142 74.9 MiB 0.32 0.00 3.89606 -1640.95 -3.89606 3.89606 0.51 0.00220702 0.00190992 0.148646 0.12957 66 18320 48 6.59459e+06 3.82357e+06 974584. 3806.97 4.67 0.992138 0.873669 13900 20 6518 7399 1153137 265556 4.39726 4.39726 -1908.55 -4.39726 0 0 1.22072e+06 4768.46 0.29 0.32 0.153584 0.14014 762 1036 399 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_23.v common 10.87 vpr 75.88 MiB 0.14 13228 -1 -1 1 0.35 -1 -1 38096 -1 -1 107 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77700 22 19 3301 2742 1 1685 155 18 18 324 mult_36 auto 38.6 MiB 0.82 9523 75.9 MiB 0.45 0.01 4.02136 -1721.35 -4.02136 4.02136 0.77 0.00238696 0.00206687 0.216243 0.188825 68 17010 24 8.13932e+06 4.3209e+06 1.31159e+06 4048.11 4.87 1.18396 1.04828 14390 15 6317 7208 1218326 268647 4.39726 4.39726 -2025.38 -4.39726 0 0 1.63345e+06 5041.52 0.47 0.31 0.141009 0.129465 802 1091 418 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_24.v common 11.47 vpr 76.46 MiB 0.10 13444 -1 -1 1 0.47 -1 -1 37384 -1 -1 109 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78296 22 19 3375 2799 1 1732 157 18 18 324 mult_36 auto 39.4 MiB 0.64 9972 76.5 MiB 0.83 0.01 4.02136 -1756.38 -4.02136 4.02136 0.78 0.00482401 0.00423384 0.426271 0.37571 72 18444 49 8.13932e+06 4.34985e+06 1.37338e+06 4238.83 5.36 1.69621 1.50693 15506 16 6731 7738 1334432 290576 4.39726 4.39726 -2126.72 -4.39726 0 0 1.72054e+06 5310.31 0.45 0.34 0.153251 0.140778 821 1110 437 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_25.v common 12.35 vpr 77.43 MiB 0.14 13940 -1 -1 1 0.54 -1 -1 38164 -1 -1 116 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79288 22 19 3615 3005 1 1836 164 18 18 324 mult_36 auto 40.4 MiB 0.81 10854 77.4 MiB 0.46 0.01 3.89606 -1924.9 -3.89606 3.89606 0.81 0.00263329 0.00229781 0.211708 0.184336 76 19169 31 8.13932e+06 4.45118e+06 1.43297e+06 4422.75 5.96 1.48724 1.32323 16647 19 7090 8215 1535234 321646 4.39726 4.39726 -2336.64 -4.39726 0 0 1.77541e+06 5479.65 0.46 0.38 0.165884 0.151039 877 1201 456 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_26.v common 12.56 vpr 78.14 MiB 0.10 14116 -1 -1 1 0.41 -1 -1 38112 -1 -1 118 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80020 22 19 3689 3062 1 1874 166 18 18 324 mult_36 auto 40.9 MiB 1.15 11045 78.1 MiB 0.53 0.01 3.89606 -1908.3 -3.89606 3.89606 0.73 0.0029322 0.00257643 0.25417 0.223469 70 21372 50 8.13932e+06 4.48013e+06 1.34436e+06 4149.26 5.95 1.443 1.27679 17280 19 7527 8836 1498128 328654 4.39726 4.39726 -2298.82 -4.39726 0 0 1.69344e+06 5226.66 0.41 0.39 0.17585 0.16037 896 1220 475 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_27.v common 12.96 vpr 79.14 MiB 0.13 14408 -1 -1 1 0.40 -1 -1 38176 -1 -1 126 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81040 22 19 3871 3210 1 1982 175 18 18 324 mult_36 auto 42.0 MiB 1.32 12265 79.1 MiB 0.51 0.01 4.02136 -2034.25 -4.02136 4.02136 0.71 0.00308037 0.00270314 0.24032 0.210802 74 22404 32 8.13932e+06 4.99193e+06 1.40368e+06 4332.34 6.40 1.7856 1.58789 18951 17 8196 9506 1867357 395049 4.52256 4.52256 -2572.48 -4.52256 0 0 1.74764e+06 5393.95 0.43 0.44 0.177693 0.162455 944 1275 494 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_28.v common 13.20 vpr 79.66 MiB 0.10 14660 -1 -1 1 0.41 -1 -1 38092 -1 -1 128 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81576 22 19 3945 3267 1 2025 177 18 18 324 mult_36 auto 42.5 MiB 0.86 11618 79.7 MiB 0.65 0.01 3.89606 -2026.8 -3.89606 3.89606 0.72 0.00331303 0.00292158 0.324872 0.285726 66 22822 33 8.13932e+06 5.02088e+06 1.27759e+06 3943.17 6.71 1.41863 1.25162 17462 17 8183 9255 1471943 330966 4.27196 4.27196 -2506.78 -4.27196 0 0 1.59950e+06 4936.74 0.40 0.60 0.32214 0.29443 962 1294 513 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_29.v common 15.18 vpr 80.70 MiB 0.13 14924 -1 -1 1 0.46 -1 -1 38776 -1 -1 135 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82632 22 19 4159 3447 1 2141 185 22 22 484 mult_36 auto 43.7 MiB 1.32 13587 80.7 MiB 0.68 0.01 3.77076 -2119.26 -3.77076 3.77076 1.33 0.0035132 0.00310228 0.326531 0.286735 74 24167 30 1.32347e+07 5.5182e+06 2.15943e+06 4461.62 6.47 1.50876 1.33678 20421 17 8407 9762 1870955 386434 4.39726 4.39726 -2810.76 -4.39726 0 0 2.68771e+06 5553.12 0.74 0.48 0.196286 0.179394 1015 1367 532 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_30.v common 16.08 vpr 81.14 MiB 0.14 15036 -1 -1 1 0.42 -1 -1 39416 -1 -1 137 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83088 22 19 4233 3504 1 2181 187 22 22 484 mult_36 auto 44.2 MiB 1.28 13980 81.1 MiB 0.70 0.01 3.77076 -2170.5 -3.77076 3.77076 1.19 0.00382534 0.00339948 0.330382 0.290699 70 25208 46 1.32347e+07 5.54715e+06 2.06816e+06 4273.05 7.41 1.67325 1.48068 20944 17 8797 10355 1727760 366618 4.39726 4.39726 -2986.29 -4.39726 0 0 2.60483e+06 5381.88 0.69 0.45 0.20391 0.186862 1034 1386 551 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_31.v common 16.55 vpr 82.20 MiB 0.11 15352 -1 -1 1 0.68 -1 -1 40352 -1 -1 143 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84176 22 19 4410 3647 1 2284 193 22 22 484 mult_36 auto 45.1 MiB 1.15 13654 82.2 MiB 0.67 0.01 4.02136 -2274.16 -4.02136 4.02136 1.21 0.00356788 0.00312742 0.325024 0.285483 68 25266 49 1.32347e+07 5.63401e+06 2.01763e+06 4168.66 8.12 1.85976 1.64719 20573 17 8870 10037 1784559 378195 4.39726 4.39726 -2787.57 -4.39726 0 0 2.51205e+06 5190.18 0.67 0.46 0.202181 0.184881 1077 1441 570 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_32.v common 16.73 vpr 82.37 MiB 0.17 15460 -1 -1 1 0.50 -1 -1 39152 -1 -1 145 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84344 22 19 4484 3704 1 2331 195 22 22 484 mult_36 auto 45.2 MiB 1.10 14611 82.4 MiB 0.67 0.01 3.89606 -2310.54 -3.89606 3.89606 1.25 0.00361204 0.00317305 0.319105 0.279422 76 26196 44 1.32347e+07 5.66296e+06 2.20457e+06 4554.90 8.25 1.88408 1.6707 21676 17 9128 10728 1977274 415132 4.39726 4.39726 -2895.56 -4.39726 0 0 2.73077e+06 5642.09 0.77 0.50 0.212658 0.194379 1096 1460 589 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_33.v common 17.50 vpr 83.88 MiB 0.18 16536 -1 -1 1 0.80 -1 -1 40976 -1 -1 157 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85888 22 19 4843 4029 1 2441 208 22 22 484 mult_36 auto 47.2 MiB 2.13 14313 83.9 MiB 0.72 0.01 3.89606 -2483.64 -3.89606 3.89606 1.20 0.0041488 0.00365942 0.343962 0.302681 70 26175 48 1.32347e+07 6.23266e+06 2.06816e+06 4273.05 7.55 1.77698 1.56589 21695 18 9414 11044 1686782 370365 4.27196 4.27196 -3041.44 -4.27196 0 0 2.60483e+06 5381.88 0.74 0.53 0.259285 0.236559 1185 1606 608 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_34.v common 19.68 vpr 84.49 MiB 0.21 16676 -1 -1 1 0.67 -1 -1 40960 -1 -1 160 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 86520 22 19 4917 4086 1 2486 211 22 22 484 mult_36 auto 47.9 MiB 1.76 15248 84.5 MiB 0.77 0.01 3.89606 -2563 -3.89606 3.89606 1.27 0.00423314 0.00374349 0.37389 0.331035 70 28803 31 1.32347e+07 6.27609e+06 2.06816e+06 4273.05 9.61 1.7207 1.51838 23188 17 10080 11589 2113011 448431 4.27196 4.27196 -3285.23 -4.27196 0 0 2.60483e+06 5381.88 0.86 0.67 0.308081 0.282861 1205 1625 627 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_35.v common 18.29 vpr 85.22 MiB 0.13 16996 -1 -1 1 0.68 -1 -1 41420 -1 -1 163 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 87268 22 19 5093 4228 1 2588 214 22 22 484 mult_36 auto 48.5 MiB 1.84 15746 85.2 MiB 0.84 0.01 4.02136 -2638.76 -4.02136 4.02136 1.24 0.0041952 0.00366224 0.407235 0.359713 76 28506 36 1.32347e+07 6.31951e+06 2.20457e+06 4554.90 7.87 1.87852 1.66339 23794 16 10230 11554 2821914 588903 4.52256 4.52256 -3283.29 -4.52256 0 0 2.73077e+06 5642.09 0.82 0.68 0.255658 0.234266 1248 1680 646 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_36.v common 19.32 vpr 85.75 MiB 0.21 17264 -1 -1 1 0.58 -1 -1 41372 -1 -1 165 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 87812 22 19 5167 4285 1 2632 216 22 22 484 mult_36 auto 49.2 MiB 1.29 16350 85.8 MiB 0.87 0.01 4.02136 -2672.46 -4.02136 4.02136 1.23 0.00431534 0.00379197 0.400513 0.351447 76 30186 48 1.32347e+07 6.34846e+06 2.20457e+06 4554.90 9.87 1.94792 1.71349 24464 20 10632 12522 2045321 426014 4.39726 4.39726 -3509.05 -4.39726 0 0 2.73077e+06 5642.09 0.81 0.61 0.301242 0.274443 1267 1699 665 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_37.v common 21.79 vpr 86.52 MiB 0.18 17692 -1 -1 1 0.57 -1 -1 40264 -1 -1 173 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88592 22 19 5380 4464 1 2743 225 24 24 576 mult_36 auto 50.1 MiB 2.04 17643 86.5 MiB 0.91 0.01 4.14666 -2930.1 -4.14666 4.14666 1.52 0.00485294 0.00431366 0.44645 0.395806 72 32357 50 1.59675e+07 6.86027e+06 2.50747e+06 4353.24 10.45 2.44288 2.16192 25868 16 10245 12148 2115416 435751 4.64786 4.64786 -3531.19 -4.64786 0 0 3.14081e+06 5452.80 0.97 0.65 0.296932 0.271086 1321 1772 684 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_38.v common 20.79 vpr 86.80 MiB 0.17 17668 -1 -1 1 0.58 -1 -1 41968 -1 -1 176 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88880 22 19 5454 4521 1 2787 228 24 24 576 mult_36 auto 50.5 MiB 1.61 17598 86.8 MiB 0.88 0.01 4.14666 -2921.85 -4.14666 4.14666 1.79 0.00487479 0.00433452 0.4314 0.38173 70 31135 32 1.59675e+07 6.90369e+06 2.45377e+06 4260.01 8.94 2.03774 1.80358 26449 14 10722 12268 2263949 476651 4.52256 4.52256 -3447.75 -4.52256 0 0 3.09179e+06 5367.68 0.92 0.58 0.277401 0.255356 1340 1791 703 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_39.v common 19.39 vpr 88.25 MiB 0.21 18172 -1 -1 1 0.66 -1 -1 42212 -1 -1 180 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 90364 22 19 5629 4662 1 2884 232 24 24 576 mult_36 auto 51.6 MiB 1.71 17576 88.2 MiB 0.94 0.01 3.89606 -3034.07 -3.89606 3.89606 1.49 0.0050948 0.00451954 0.447811 0.396096 76 30286 30 1.59675e+07 6.9616e+06 2.61600e+06 4541.67 7.67 1.92915 1.70268 25727 17 10889 12478 2351403 496671 4.39726 4.39726 -3721.88 -4.39726 0 0 3.24203e+06 5628.53 1.16 0.67 0.329219 0.300609 1381 1846 722 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_40.v common 26.49 vpr 88.66 MiB 0.15 18320 -1 -1 1 0.78 -1 -1 42156 -1 -1 182 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 90784 22 19 5703 4719 1 2932 234 24 24 576 mult_36 auto 52.4 MiB 2.35 19422 88.7 MiB 0.94 0.01 4.14666 -3096.68 -4.14666 4.14666 1.80 0.00506461 0.00446681 0.445237 0.393153 80 32201 45 1.59675e+07 6.99055e+06 2.72095e+06 4723.87 13.87 3.03726 2.68506 27299 14 10801 12608 2267146 461441 4.52256 4.52256 -3627.57 -4.52256 0 0 3.41546e+06 5929.62 1.09 0.67 0.308218 0.283534 1400 1865 741 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_41.v common 24.33 vpr 89.24 MiB 0.21 18840 -1 -1 1 0.83 -1 -1 42820 -1 -1 190 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 91384 22 19 5950 4932 1 3040 243 24 24 576 mult_36 auto 53.1 MiB 1.87 18795 89.2 MiB 0.94 0.01 4.02136 -3265.57 -4.02136 4.02136 1.50 0.00551121 0.00492852 0.442832 0.391484 78 30509 23 1.59675e+07 7.50235e+06 2.67122e+06 4637.53 11.97 2.64793 2.33547 26659 32 10844 12243 2455661 581102 4.39726 4.39726 -3817.66 -4.39726 0 0 3.35110e+06 5817.88 1.16 0.95 0.516308 0.467543 1461 1956 760 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_42.v common 22.02 vpr 90.02 MiB 0.21 18976 -1 -1 1 0.84 -1 -1 42760 -1 -1 193 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92184 22 19 6024 4989 1 3083 246 24 24 576 mult_36 auto 53.8 MiB 1.75 19294 90.0 MiB 1.15 0.02 4.14666 -3279.1 -4.14666 4.14666 1.50 0.00918777 0.00812925 0.544555 0.482022 70 36387 44 1.59675e+07 7.54578e+06 2.45377e+06 4260.01 10.05 2.42684 2.14245 28874 18 12119 14159 2527664 537915 4.52256 4.52256 -3911.2 -4.52256 0 0 3.09179e+06 5367.68 0.99 0.90 0.389683 0.355201 1480 1975 779 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_43.v common 26.55 vpr 90.57 MiB 0.23 19160 -1 -1 1 0.95 -1 -1 42932 -1 -1 199 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92740 22 19 6198 5129 1 3182 252 24 24 576 mult_36 auto 54.4 MiB 2.18 21964 90.6 MiB 1.10 0.01 4.27196 -3506.9 -4.27196 4.27196 1.52 0.00579244 0.00515809 0.521079 0.461487 82 34895 30 1.59675e+07 7.63263e+06 2.78508e+06 4835.20 13.63 3.0883 2.73385 29650 15 11420 13031 2378385 482764 4.64786 4.64786 -3936.69 -4.64786 0 0 3.48632e+06 6052.64 1.05 0.83 0.355353 0.32699 1523 2030 798 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_44.v common 26.63 vpr 91.33 MiB 0.17 19444 -1 -1 1 0.78 -1 -1 42984 -1 -1 200 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 93524 22 19 6272 5186 1 3228 253 24 24 576 mult_36 auto 55.1 MiB 1.94 21716 91.3 MiB 1.23 0.01 4.39726 -3427.09 -4.39726 4.39726 1.50 0.00615623 0.00549299 0.577648 0.511284 80 34841 25 1.59675e+07 7.64711e+06 2.72095e+06 4723.87 14.42 3.47669 3.09665 30431 15 12030 13580 2540841 522479 4.77316 4.77316 -4240.53 -4.77316 0 0 3.41546e+06 5929.62 1.03 0.82 0.385073 0.350624 1542 2049 817 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_45.v common 29.97 vpr 92.32 MiB 0.25 19872 -1 -1 1 1.01 -1 -1 43648 -1 -1 208 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 94540 22 19 6485 5365 1 3341 262 24 24 576 mult_36 auto 56.3 MiB 1.75 22182 92.3 MiB 1.16 0.01 4.14666 -3548.68 -4.14666 4.14666 1.44 0.00607905 0.00541342 0.546266 0.484692 80 36183 36 1.59675e+07 8.15891e+06 2.72095e+06 4723.87 17.47 3.55748 3.15823 31524 16 12640 14655 2621820 546850 4.39726 4.39726 -4189.34 -4.39726 0 0 3.41546e+06 5929.62 1.15 1.10 0.501109 0.460811 1593 2122 836 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_46.v common 26.72 vpr 92.84 MiB 0.27 20028 -1 -1 1 1.06 -1 -1 43632 -1 -1 210 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 95068 22 19 6559 5422 1 3381 264 24 24 576 mult_36 auto 56.8 MiB 1.91 22819 92.8 MiB 1.22 0.02 4.14666 -3541.37 -4.14666 4.14666 1.45 0.00703552 0.00627676 0.567008 0.504149 74 43629 49 1.59675e+07 8.18786e+06 2.56259e+06 4448.94 13.71 2.63238 2.32307 33017 18 13396 15430 3188810 652709 4.52256 4.52256 -4396.19 -4.52256 0 0 3.19068e+06 5539.38 1.06 1.12 0.464513 0.424878 1613 2141 855 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_47.v common 31.32 vpr 93.41 MiB 0.26 20588 -1 -1 1 1.09 -1 -1 44012 -1 -1 216 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 95648 22 19 6735 5564 1 3478 270 24 24 576 mult_36 auto 57.3 MiB 1.90 24393 93.4 MiB 1.14 0.01 4.39726 -3821.32 -4.39726 4.39726 1.47 0.00626338 0.00560312 0.534703 0.475543 84 42613 46 1.59675e+07 8.27472e+06 2.84938e+06 4946.85 18.95 3.32993 2.93994 33611 15 13109 14830 2798501 548428 4.77316 4.77316 -4493.3 -4.77316 0 0 3.60864e+06 6265.01 1.03 0.73 0.328845 0.30052 1656 2196 874 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_48.v common 27.85 vpr 94.13 MiB 0.20 20364 -1 -1 1 0.90 -1 -1 43952 -1 -1 218 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 96392 22 19 6809 5621 1 3528 272 24 24 576 mult_36 auto 58.3 MiB 2.29 22444 94.1 MiB 1.33 0.01 4.14666 -3697.25 -4.14666 4.14666 1.73 0.00646126 0.00577185 0.628814 0.559922 76 40277 46 1.59675e+07 8.30367e+06 2.61600e+06 4541.67 15.03 2.96958 2.62639 32244 15 13072 14883 2590036 546240 4.64786 4.64786 -4334.33 -4.64786 0 0 3.24203e+06 5628.53 1.02 0.72 0.332083 0.304053 1674 2215 893 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_49.v common 30.14 vpr 95.36 MiB 0.27 21128 -1 -1 1 0.94 -1 -1 44488 -1 -1 228 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 97644 22 19 7094 5872 1 3643 283 24 24 576 mult_36 auto 59.0 MiB 2.00 23477 95.4 MiB 1.41 0.01 4.02136 -3926.63 -4.02136 4.02136 1.64 0.0067824 0.00607525 0.666845 0.596301 78 38892 35 1.59675e+07 8.84444e+06 2.67122e+06 4637.53 17.07 3.82933 3.39762 33248 16 13354 15165 2623566 553660 4.52256 4.52256 -4590.51 -4.52256 0 0 3.35110e+06 5817.88 1.06 0.82 0.40271 0.369236 1745 2324 912 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_50.v common 29.41 vpr 95.69 MiB 0.20 21304 -1 -1 1 1.19 -1 -1 44372 -1 -1 230 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 97988 22 19 7168 5929 1 3677 285 24 24 576 mult_36 auto 59.4 MiB 2.09 24230 95.7 MiB 1.29 0.02 4.02136 -3932.38 -4.02136 4.02136 1.47 0.00665917 0.0059333 0.583387 0.519176 80 39730 29 1.59675e+07 8.87339e+06 2.72095e+06 4723.87 15.54 3.36034 2.96786 34308 17 13733 16060 2666982 550972 4.52256 4.52256 -4784.92 -4.52256 0 0 3.41546e+06 5929.62 1.19 1.02 0.459657 0.421133 1764 2343 931 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_51.v common 31.39 vpr 96.59 MiB 0.28 21584 -1 -1 1 1.13 -1 -1 44624 -1 -1 235 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 98908 22 19 7344 6071 1 3784 290 24 24 576 mult_36 auto 60.8 MiB 2.52 27301 96.6 MiB 1.28 0.02 4.27196 -4099.57 -4.27196 4.27196 1.77 0.00757942 0.0068387 0.590565 0.527306 84 43702 40 1.59675e+07 8.94577e+06 2.84938e+06 4946.85 16.48 3.65301 3.23819 36582 32 13933 16237 3283141 729427 4.64786 4.64786 -4813.33 -4.64786 0 0 3.60864e+06 6265.01 1.30 1.59 0.878529 0.801182 1808 2398 950 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_pipe_52.v common 30.58 vpr 97.23 MiB 0.28 21628 -1 -1 1 1.28 -1 -1 44640 -1 -1 237 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 99568 22 19 7418 6128 1 3829 292 24 24 576 mult_36 auto 61.3 MiB 2.89 25893 97.2 MiB 1.33 0.02 4.14666 -4135.71 -4.14666 4.14666 1.87 0.00724516 0.00638579 0.614266 0.539817 86 41117 37 1.59675e+07 8.97472e+06 2.91907e+06 5067.82 14.78 3.78385 3.35204 35501 19 13627 15670 3076150 639027 4.52256 4.52256 -4841.51 -4.52256 0 0 3.65856e+06 6351.67 1.27 0.91 0.430902 0.3924 1827 2417 969 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_14.v common 7.58 vpr 65.26 MiB 0.07 9400 -1 -1 1 0.16 -1 -1 34460 -1 -1 43 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66824 22 19 1246 925 1 719 88 16 16 256 mult_36 auto 27.4 MiB 1.02 3841 65.3 MiB 0.16 0.00 7.11861 -316.594 -7.11861 7.11861 0.53 0.000761279 0.000652373 0.065547 0.0567117 56 7753 49 6.59459e+06 2.20645e+06 849745. 3319.32 3.22 0.390933 0.348355 6475 26 7152 8015 1244897 307492 8.54483 8.54483 -445.031 -8.54483 0 0 1.04740e+06 4091.43 0.35 0.31 0.0913317 0.0833135 299 285 247 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_15.v common 9.35 vpr 65.60 MiB 0.07 9436 -1 -1 1 0.20 -1 -1 34500 -1 -1 46 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 67176 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 27.8 MiB 0.93 4358 65.6 MiB 0.30 0.00 7.02627 -335.597 -7.02627 7.02627 0.76 0.0018031 0.00156742 0.135931 0.119203 50 9585 29 6.59459e+06 2.64588e+06 787708. 3076.99 4.61 0.591872 0.532398 7471 30 8961 10036 1822074 430923 8.78494 8.78494 -466.224 -8.78494 0 0 943753. 3686.54 0.23 0.35 0.091087 0.0837419 321 304 266 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_16.v common 8.88 vpr 66.48 MiB 0.07 9584 -1 -1 1 0.20 -1 -1 34988 -1 -1 48 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68072 22 19 1418 1046 1 822 94 16 16 256 mult_36 auto 28.6 MiB 1.34 4684 66.5 MiB 0.15 0.00 7.08747 -344.438 -7.08747 7.08747 0.50 0.000895975 0.000759842 0.0601173 0.0520267 56 9547 43 6.59459e+06 2.67484e+06 849745. 3319.32 4.19 0.451422 0.405012 7882 27 8741 9713 1814974 434374 8.88743 8.88743 -519.412 -8.88743 0 0 1.04740e+06 4091.43 0.33 0.39 0.100077 0.0925831 340 323 285 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_17.v common 10.18 vpr 66.75 MiB 0.08 10220 -1 -1 1 0.22 -1 -1 34652 -1 -1 52 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68348 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 29.1 MiB 1.28 4975 66.7 MiB 0.20 0.00 7.84745 -397.783 -7.84745 7.84745 0.67 0.00099161 0.000837987 0.0799116 0.0693184 58 9910 30 6.59459e+06 2.73274e+06 871168. 3403.00 4.83 0.454378 0.401062 8364 35 9915 11168 2137715 537256 9.16158 9.16158 -526.602 -9.16158 0 0 1.09288e+06 4269.05 0.45 0.55 0.148343 0.136041 365 342 304 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_18.v common 11.57 vpr 67.25 MiB 0.08 10512 -1 -1 1 0.15 -1 -1 35276 -1 -1 55 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68868 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 29.4 MiB 1.11 5162 67.3 MiB 0.22 0.00 7.59385 -411.191 -7.59385 7.59385 0.50 0.000975562 0.000836519 0.0887186 0.0765259 56 11508 47 6.59459e+06 2.77617e+06 849745. 3319.32 7.10 0.667367 0.600888 9134 28 10417 11480 2245733 538246 9.45078 9.45078 -566.998 -9.45078 0 0 1.04740e+06 4091.43 0.24 0.43 0.101456 0.0929303 383 361 323 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_19.v common 8.95 vpr 67.93 MiB 0.09 10404 -1 -1 1 0.25 -1 -1 36416 -1 -1 58 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69556 22 19 1688 1231 1 975 105 16 16 256 mult_36 auto 30.2 MiB 1.05 5711 67.9 MiB 0.22 0.00 7.62205 -393.82 -7.62205 7.62205 0.54 0.00113036 0.000965102 0.0895554 0.0774809 60 11396 47 6.59459e+06 3.21559e+06 890343. 3477.90 4.29 0.558196 0.498486 8907 25 8175 9293 1461083 355823 9.05578 9.05578 -540.264 -9.05578 0 0 1.11577e+06 4358.47 0.36 0.32 0.101109 0.0929292 404 380 342 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_20.v common 10.47 vpr 67.96 MiB 0.09 10504 -1 -1 1 0.25 -1 -1 35732 -1 -1 59 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69588 22 19 1762 1288 1 1013 106 16 16 256 mult_36 auto 30.5 MiB 1.20 6182 68.0 MiB 0.24 0.00 7.69715 -448.129 -7.69715 7.69715 0.51 0.00133711 0.0011369 0.0972374 0.0841589 60 12435 47 6.59459e+06 3.23007e+06 890343. 3477.90 5.33 0.572562 0.509259 9561 25 8613 9930 1545830 349940 9.36938 9.36938 -640.634 -9.36938 0 0 1.11577e+06 4358.47 0.37 0.58 0.210493 0.193888 423 399 361 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_21.v common 10.23 vpr 68.82 MiB 0.10 10744 -1 -1 1 0.20 -1 -1 35848 -1 -1 62 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70472 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 31.2 MiB 1.11 6302 68.8 MiB 0.29 0.00 7.65125 -459.348 -7.65125 7.65125 0.50 0.00128497 0.00110462 0.123375 0.106794 64 12031 46 6.59459e+06 3.2735e+06 943753. 3686.54 5.37 0.714155 0.63761 9590 27 8576 9818 1538190 344220 8.71918 8.71918 -656.857 -8.71918 0 0 1.19033e+06 4649.74 0.33 0.39 0.1373 0.126305 445 418 380 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_22.v common 9.65 vpr 68.88 MiB 0.08 10956 -1 -1 1 0.18 -1 -1 35584 -1 -1 66 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70528 22 19 1933 1408 1 1112 113 16 16 256 mult_36 auto 31.1 MiB 1.48 6603 68.9 MiB 0.27 0.00 7.83165 -453.065 -7.83165 7.83165 0.51 0.00142946 0.00123883 0.115654 0.100814 62 13677 45 6.59459e+06 3.3314e+06 916467. 3579.95 4.63 0.714071 0.638157 10017 26 9752 11065 1685867 385748 8.96198 8.96198 -644.099 -8.96198 0 0 1.13630e+06 4438.68 0.26 0.37 0.120243 0.109899 464 437 399 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_23.v common 9.71 vpr 69.47 MiB 0.08 11256 -1 -1 1 0.18 -1 -1 35796 -1 -1 68 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71140 22 19 2031 1472 1 1172 116 18 18 324 mult_36 auto 32.0 MiB 1.47 6971 69.5 MiB 0.28 0.00 7.67815 -480.467 -7.67815 7.67815 0.70 0.00133131 0.00113927 0.113072 0.0983277 66 13037 44 8.13932e+06 3.75635e+06 1.27759e+06 3943.17 4.29 0.633323 0.563659 11011 24 8814 10099 1669439 356098 9.29988 9.29988 -769.621 -9.29988 0 0 1.59950e+06 4936.74 0.39 0.36 0.116172 0.106644 486 456 418 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_24.v common 12.25 vpr 69.84 MiB 0.07 11736 -1 -1 1 0.25 -1 -1 35964 -1 -1 71 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71516 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 32.2 MiB 1.89 7207 69.8 MiB 0.27 0.00 7.71915 -498.101 -7.71915 7.71915 1.02 0.00136444 0.00117974 0.112621 0.0981806 64 13427 38 8.13932e+06 3.79978e+06 1.23838e+06 3822.15 5.30 0.703512 0.626571 11358 25 9801 11290 1837994 387468 8.97388 8.97388 -786.452 -8.97388 0 0 1.56068e+06 4816.91 0.41 0.56 0.172827 0.158585 505 475 437 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_25.v common 11.34 vpr 70.27 MiB 0.11 12048 -1 -1 1 0.26 -1 -1 36220 -1 -1 73 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71956 22 19 2201 1591 1 1267 121 18 18 324 mult_36 auto 33.0 MiB 1.40 7645 70.3 MiB 0.42 0.01 7.68915 -508.93 -7.68915 7.68915 0.82 0.00395452 0.00347637 0.180377 0.159573 66 14675 46 8.13932e+06 3.82873e+06 1.27759e+06 3943.17 5.51 0.796706 0.711561 11607 28 11250 12837 2072350 446376 9.04008 9.04008 -697.639 -9.04008 0 0 1.59950e+06 4936.74 0.40 0.44 0.138657 0.126759 526 494 456 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_26.v common 14.24 vpr 70.77 MiB 0.10 11832 -1 -1 1 0.35 -1 -1 36592 -1 -1 76 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72468 22 19 2275 1648 1 1304 124 18 18 324 mult_36 auto 33.2 MiB 1.49 8027 70.8 MiB 0.32 0.00 7.84445 -531.979 -7.84445 7.84445 0.68 0.00170869 0.00148976 0.133567 0.116684 66 15121 40 8.13932e+06 3.87216e+06 1.27759e+06 3943.17 7.86 1.40951 1.27682 12646 25 10953 12836 2256342 470596 8.99978 8.99978 -949.864 -8.99978 0 0 1.59950e+06 4936.74 0.49 0.69 0.210533 0.192558 546 513 475 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_27.v common 11.80 vpr 71.55 MiB 0.12 12196 -1 -1 1 0.22 -1 -1 36480 -1 -1 82 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73264 22 19 2385 1724 1 1377 131 18 18 324 mult_36 auto 34.2 MiB 1.45 8544 71.5 MiB 0.38 0.00 7.72215 -518.92 -7.72215 7.72215 0.72 0.00175282 0.0015321 0.146712 0.128432 68 15957 39 8.13932e+06 4.35501e+06 1.31159e+06 4048.11 5.36 0.746852 0.663795 13195 24 11422 12926 2749722 592776 9.08718 9.08718 -755.238 -9.08718 0 0 1.63345e+06 5041.52 0.45 0.69 0.178224 0.163692 575 532 494 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_28.v common 12.74 vpr 71.77 MiB 0.12 12336 -1 -1 1 0.28 -1 -1 36556 -1 -1 83 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73492 22 19 2459 1781 1 1418 132 18 18 324 mult_36 auto 34.4 MiB 1.89 8530 71.8 MiB 0.40 0.00 7.58585 -549.547 -7.58585 7.58585 0.69 0.00200192 0.0017595 0.179429 0.157724 64 15985 32 8.13932e+06 4.36948e+06 1.23838e+06 3822.15 5.54 0.809953 0.72159 13135 25 12335 14017 2295676 494083 8.78798 8.78798 -1028.17 -8.78798 0 0 1.56068e+06 4816.91 0.53 0.58 0.197046 0.18004 594 551 513 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_29.v common 16.37 vpr 72.20 MiB 0.09 12612 -1 -1 1 0.25 -1 -1 36844 -1 -1 85 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73932 22 19 2565 1853 1 1483 135 22 22 484 mult_36 auto 34.8 MiB 2.48 9378 72.2 MiB 0.65 0.01 7.66125 -547.344 -7.66125 7.66125 1.69 0.00193268 0.00168613 0.291619 0.259139 66 17113 32 1.32347e+07 4.79443e+06 1.96511e+06 4060.15 6.54 0.966898 0.864199 14184 26 12606 14517 2833800 586337 9.13228 9.13228 -1061.82 -9.13228 0 0 2.45963e+06 5081.88 0.85 0.67 0.196989 0.180251 619 570 532 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_30.v common 17.63 vpr 72.76 MiB 0.13 12588 -1 -1 1 0.31 -1 -1 36564 -1 -1 89 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74504 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 35.6 MiB 1.98 9490 72.8 MiB 0.39 0.00 7.63595 -520.612 -7.63595 7.63595 1.44 0.00204274 0.00180065 0.16471 0.144303 68 16961 40 1.32347e+07 4.85233e+06 2.01763e+06 4168.66 8.68 1.01692 0.910016 14192 23 12605 14228 3402912 706827 9.03708 9.03708 -880.636 -9.03708 0 0 2.51205e+06 5190.18 0.72 1.11 0.315157 0.289509 639 589 551 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_31.v common 21.64 vpr 73.11 MiB 0.10 12812 -1 -1 1 0.31 -1 -1 37188 -1 -1 93 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74864 22 19 2744 1981 1 1589 143 22 22 484 mult_36 auto 35.9 MiB 2.30 10287 73.1 MiB 0.49 0.01 7.73931 -554.975 -7.73931 7.73931 1.42 0.00210063 0.00181804 0.211279 0.185727 64 19860 49 1.32347e+07 4.91023e+06 1.90554e+06 3937.06 11.52 1.06902 0.95211 15631 24 15700 17917 4091059 867236 9.60838 9.60838 -1034.18 -9.60838 0 0 2.40101e+06 4960.76 1.03 0.79 0.192779 0.177814 665 608 570 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_32.v common 20.04 vpr 73.32 MiB 0.10 13248 -1 -1 1 0.28 -1 -1 36400 -1 -1 96 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75076 22 19 2818 2038 1 1626 146 22 22 484 mult_36 auto 36.1 MiB 2.27 10086 73.3 MiB 0.47 0.01 7.55765 -582.446 -7.55765 7.55765 1.19 0.00228512 0.00199488 0.196142 0.172437 64 19532 46 1.32347e+07 4.95366e+06 1.90554e+06 3937.06 9.96 1.11445 0.994036 15593 24 15226 17761 3189020 658546 9.43968 9.43968 -1133.56 -9.43968 0 0 2.40101e+06 4960.76 0.97 1.05 0.300997 0.276348 684 627 589 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_33.v common 16.36 vpr 74.21 MiB 0.11 13608 -1 -1 1 0.40 -1 -1 37404 -1 -1 100 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75988 22 19 2923 2109 1 1697 151 22 22 484 mult_36 auto 37.2 MiB 2.07 10699 74.2 MiB 0.47 0.01 8.31309 -609.539 -8.31309 8.31309 1.24 0.00231751 0.00203013 0.202615 0.178855 70 18208 28 1.32347e+07 5.40755e+06 2.06816e+06 4273.05 7.44 1.13206 1.01273 15696 26 13975 15726 3113747 647668 10.0695 10.0695 -981.614 -10.0695 0 0 2.60483e+06 5381.88 0.80 0.70 0.213393 0.196118 710 646 608 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_34.v common 21.07 vpr 74.37 MiB 0.16 13712 -1 -1 1 0.39 -1 -1 38100 -1 -1 101 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76156 22 19 2997 2166 1 1733 152 22 22 484 mult_36 auto 37.1 MiB 4.07 10577 74.4 MiB 0.51 0.01 8.32889 -593.239 -8.32889 8.32889 1.37 0.00250297 0.00221098 0.214197 0.188416 68 19476 43 1.32347e+07 5.42203e+06 2.01763e+06 4168.66 9.45 1.30493 1.16777 15842 26 15134 17454 3085843 648121 10.0194 10.0194 -1004.35 -10.0194 0 0 2.51205e+06 5190.18 0.69 0.70 0.210148 0.192835 729 665 627 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_35.v common 16.33 vpr 75.11 MiB 0.16 13972 -1 -1 1 0.31 -1 -1 37048 -1 -1 106 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76912 22 19 3101 2236 1 1798 157 22 22 484 mult_36 auto 37.7 MiB 2.33 11489 75.1 MiB 0.55 0.01 8.35709 -662.121 -8.35709 8.35709 1.21 0.00262191 0.00227422 0.225856 0.199211 72 20788 32 1.32347e+07 5.49441e+06 2.11301e+06 4365.72 7.40 1.00553 0.898229 17259 26 13606 15708 3139005 631698 9.83182 9.83182 -1129.02 -9.83182 0 0 2.64603e+06 5467.00 0.78 0.67 0.202025 0.185044 755 684 646 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_36.v common 20.67 vpr 75.14 MiB 0.16 14340 -1 -1 1 0.50 -1 -1 37672 -1 -1 107 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76940 22 19 3175 2293 1 1835 158 22 22 484 mult_36 auto 38.0 MiB 2.76 11626 75.1 MiB 0.43 0.01 8.48829 -670.883 -8.48829 8.48829 1.28 0.00245848 0.00213662 0.175878 0.1553 68 21467 43 1.32347e+07 5.50888e+06 2.01763e+06 4168.66 10.51 1.43697 1.29218 17743 27 14654 16983 3309928 670011 10.5217 10.5217 -1193.6 -10.5217 0 0 2.51205e+06 5190.18 0.98 0.94 0.28004 0.255748 773 703 665 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_37.v common 20.86 vpr 75.78 MiB 0.16 14328 -1 -1 1 0.35 -1 -1 38216 -1 -1 111 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77600 22 19 3280 2364 1 1905 163 24 24 576 mult_36 auto 38.6 MiB 2.95 12318 75.8 MiB 0.59 0.01 8.59375 -725.704 -8.59375 8.59375 2.03 0.00278773 0.00248036 0.248865 0.220463 70 20722 46 1.59675e+07 5.96278e+06 2.45377e+06 4260.01 8.51 1.18749 1.05534 17785 25 15615 17529 3872144 835710 9.96942 9.96942 -1278.75 -9.96942 0 0 3.09179e+06 5367.68 0.95 0.79 0.205746 0.18823 798 722 684 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_38.v common 24.46 vpr 76.29 MiB 0.15 14756 -1 -1 1 0.54 -1 -1 38016 -1 -1 113 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78120 22 19 3354 2421 1 1940 165 24 24 576 mult_36 auto 39.2 MiB 3.23 13055 76.3 MiB 0.64 0.01 8.70475 -788.921 -8.70475 8.70475 1.51 0.00285072 0.00253554 0.267871 0.237632 68 23937 50 1.59675e+07 5.99174e+06 2.39371e+06 4155.74 12.49 1.44945 1.29548 18920 24 15604 18287 3708162 747902 10.2399 10.2399 -1391.56 -10.2399 0 0 2.98162e+06 5176.42 0.95 1.03 0.312868 0.28716 818 741 703 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_39.v common 24.06 vpr 77.49 MiB 0.14 14764 -1 -1 1 0.47 -1 -1 37732 -1 -1 117 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79352 22 19 3457 2490 1 2006 169 24 24 576 mult_36 auto 40.3 MiB 3.46 13211 77.5 MiB 0.94 0.01 8.72675 -854.498 -8.72675 8.72675 1.64 0.00532752 0.0046605 0.420736 0.374917 68 24798 50 1.59675e+07 6.04964e+06 2.39371e+06 4155.74 12.28 1.4739 1.31531 19260 25 15109 17480 2976989 614129 10.4093 10.4093 -1312.4 -10.4093 0 0 2.98162e+06 5176.42 0.88 0.66 0.217073 0.1988 842 760 722 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_40.v common 20.23 vpr 77.34 MiB 0.18 14904 -1 -1 1 0.42 -1 -1 38320 -1 -1 120 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79196 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 40.2 MiB 3.64 13212 77.3 MiB 0.66 0.01 8.31789 -852.811 -8.31789 8.31789 1.47 0.00301359 0.00268098 0.276887 0.244562 76 22250 45 1.59675e+07 6.09306e+06 2.61600e+06 4541.67 8.62 1.27874 1.13841 18999 25 15448 17642 3155052 653955 9.63112 9.63112 -1243.84 -9.63112 0 0 3.24203e+06 5628.53 0.98 0.72 0.229116 0.209294 862 779 741 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_41.v common 21.18 vpr 77.88 MiB 0.18 15084 -1 -1 1 0.36 -1 -1 37832 -1 -1 122 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79748 22 19 3634 2616 1 2109 175 24 24 576 mult_36 auto 40.8 MiB 3.12 14143 77.9 MiB 0.65 0.01 8.66859 -827.478 -8.66859 8.66859 1.46 0.00300753 0.00266683 0.270191 0.239514 74 23089 44 1.59675e+07 6.51802e+06 2.56259e+06 4448.94 10.04 1.28632 1.14685 20060 26 16883 19787 3554950 719470 9.63862 9.63862 -1240.32 -9.63862 0 0 3.19068e+06 5539.38 1.00 0.78 0.256075 0.234963 886 798 760 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_42.v common 23.81 vpr 78.35 MiB 0.15 15324 -1 -1 1 0.39 -1 -1 38348 -1 -1 125 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80228 22 19 3708 2673 1 2146 178 24 24 576 mult_36 auto 41.2 MiB 3.62 14820 78.3 MiB 0.71 0.01 8.75789 -879.849 -8.75789 8.75789 2.03 0.00338136 0.00301587 0.30654 0.271894 72 25897 34 1.59675e+07 6.56144e+06 2.50747e+06 4353.24 10.82 1.54163 1.37573 21136 25 18001 20796 4184713 846224 9.93322 9.93322 -1428.47 -9.93322 0 0 3.14081e+06 5452.80 0.91 0.86 0.235997 0.215259 906 817 779 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_43.v common 20.75 vpr 78.64 MiB 0.13 15584 -1 -1 1 0.44 -1 -1 39216 -1 -1 129 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80524 22 19 3810 2741 1 2211 182 24 24 576 mult_36 auto 41.6 MiB 3.63 14792 78.6 MiB 0.71 0.01 8.73109 -855.893 -8.73109 8.73109 1.46 0.00342294 0.00296156 0.297222 0.262507 72 25383 41 1.59675e+07 6.61934e+06 2.50747e+06 4353.24 8.58 1.37541 1.22581 21177 22 15278 17964 3602799 752361 10.4002 10.4002 -1359.8 -10.4002 0 0 3.14081e+06 5452.80 1.08 0.78 0.229245 0.209541 930 836 798 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_44.v common 24.75 vpr 79.36 MiB 0.16 15692 -1 -1 1 0.46 -1 -1 38112 -1 -1 132 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81268 22 19 3884 2798 1 2252 185 24 24 576 mult_36 auto 42.3 MiB 3.65 14658 79.4 MiB 0.75 0.01 8.69085 -862.246 -8.69085 8.69085 1.59 0.0033104 0.0029172 0.318968 0.281233 70 26897 44 1.59675e+07 6.66277e+06 2.45377e+06 4260.01 12.26 1.45229 1.29004 21537 26 19551 22397 4365503 903514 9.87992 9.87992 -1381.49 -9.87992 0 0 3.09179e+06 5367.68 0.96 0.98 0.276508 0.252917 949 855 817 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_45.v common 21.84 vpr 79.61 MiB 0.18 15920 -1 -1 1 0.49 -1 -1 40216 -1 -1 135 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81520 22 19 3989 2869 1 2317 189 24 24 576 mult_36 auto 42.6 MiB 4.08 14900 79.6 MiB 0.82 0.01 8.65599 -892.722 -8.65599 8.65599 1.50 0.00363754 0.00324453 0.349934 0.310981 74 24125 29 1.59675e+07 7.1022e+06 2.56259e+06 4448.94 8.25 1.40296 1.25321 21241 25 16839 19592 3524916 743469 9.64172 9.64172 -1380.16 -9.64172 0 0 3.19068e+06 5539.38 1.43 0.89 0.287065 0.263309 975 874 836 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_46.v common 22.74 vpr 79.82 MiB 0.15 16140 -1 -1 1 0.44 -1 -1 40292 -1 -1 136 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81740 22 19 4063 2926 1 2354 190 24 24 576 mult_36 auto 42.9 MiB 3.91 15712 79.8 MiB 0.69 0.01 8.43219 -922.274 -8.43219 8.43219 1.49 0.00387748 0.00345138 0.290833 0.258833 74 26991 41 1.59675e+07 7.11667e+06 2.56259e+06 4448.94 10.23 1.47431 1.31298 22487 25 18031 21179 3819745 785285 10.0682 10.0682 -1458.24 -10.0682 0 0 3.19068e+06 5539.38 1.19 0.92 0.289657 0.265391 993 893 855 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_47.v common 22.90 vpr 80.41 MiB 0.21 16480 -1 -1 1 0.60 -1 -1 40260 -1 -1 141 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82344 22 19 4167 2996 1 2420 195 24 24 576 mult_36 auto 43.2 MiB 3.57 16019 80.4 MiB 0.82 0.01 8.62965 -832.124 -8.62965 8.62965 1.53 0.00354457 0.00313928 0.337652 0.299037 72 28152 36 1.59675e+07 7.18905e+06 2.50747e+06 4353.24 9.07 1.45319 1.29511 22883 25 18502 21329 4683495 1004787 10.2301 10.2301 -1379.83 -10.2301 0 0 3.14081e+06 5452.80 1.22 1.04 0.296789 0.270625 1019 912 874 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_48.v common 25.29 vpr 80.60 MiB 0.22 16648 -1 -1 1 0.50 -1 -1 40480 -1 -1 144 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82536 22 19 4241 3053 1 2458 198 24 24 576 mult_36 auto 43.6 MiB 4.10 16463 80.6 MiB 0.81 0.01 8.58539 -959.587 -8.58539 8.58539 1.54 0.00388233 0.00342323 0.337992 0.300134 74 27537 47 1.59675e+07 7.23248e+06 2.56259e+06 4448.94 11.31 1.83499 1.63511 23550 23 18774 21709 4426159 905798 9.76742 9.76742 -1587.95 -9.76742 0 0 3.19068e+06 5539.38 1.22 1.34 0.502197 0.459369 1038 931 893 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_49.v common 30.02 vpr 81.24 MiB 0.21 17024 -1 -1 1 0.54 -1 -1 40572 -1 -1 145 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83192 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 44.8 MiB 4.15 17329 81.2 MiB 1.45 0.02 8.78289 -981.802 -8.78289 8.78289 2.52 0.00787407 0.0072262 0.675752 0.607378 72 31360 49 1.59675e+07 7.64295e+06 2.50747e+06 4353.24 14.56 2.29324 2.05758 24769 26 21054 24808 4864431 998639 10.1448 10.1448 -1649.29 -10.1448 0 0 3.14081e+06 5452.80 0.99 1.18 0.375132 0.343122 1062 950 912 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_50.v common 25.71 vpr 81.55 MiB 0.16 17128 -1 -1 1 0.60 -1 -1 40680 -1 -1 148 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83512 22 19 4420 3181 1 2563 203 24 24 576 mult_36 auto 44.9 MiB 4.57 16706 81.6 MiB 0.83 0.01 8.50435 -989.585 -8.50435 8.50435 1.53 0.00420418 0.00369704 0.342483 0.302835 74 27470 30 1.59675e+07 7.68637e+06 2.56259e+06 4448.94 11.94 2.01565 1.80248 23719 25 20059 23010 4760525 989768 9.98462 9.98462 -1614.77 -9.98462 0 0 3.19068e+06 5539.38 0.94 1.25 0.408726 0.373555 1082 969 931 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_51.v common 25.92 vpr 82.45 MiB 0.20 17356 -1 -1 1 0.69 -1 -1 39344 -1 -1 152 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84432 22 19 4524 3251 1 2633 207 24 24 576 mult_36 auto 45.7 MiB 4.36 17453 82.5 MiB 0.82 0.01 8.66859 -1003.89 -8.66859 8.66859 1.51 0.00395675 0.00351373 0.332217 0.294452 70 30063 49 1.59675e+07 7.74428e+06 2.45377e+06 4260.01 12.57 1.9323 1.72502 24697 25 21548 25205 4421088 934769 9.80792 9.80792 -1650.95 -9.80792 0 0 3.09179e+06 5367.68 0.93 0.97 0.299422 0.27203 1107 988 950 19 0 0 - k6_frac_2ripple_N8_22nm.xml fir_nopipe_52.v common 26.72 vpr 82.48 MiB 0.16 17440 -1 -1 1 0.54 -1 -1 41432 -1 -1 155 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84460 22 19 4598 3308 1 2667 210 24 24 576 mult_36 auto 45.8 MiB 4.73 18143 82.5 MiB 0.88 0.01 8.59479 -1058.31 -8.59479 8.59479 1.62 0.0041748 0.00366517 0.356171 0.314313 74 30914 46 1.59675e+07 7.7877e+06 2.56259e+06 4448.94 12.82 1.70672 1.51559 25613 26 22952 26275 5145024 1061578 10.1605 10.1605 -1678.01 -10.1605 0 0 3.19068e+06 5539.38 0.96 1.10 0.322883 0.294687 1127 1007 969 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_14.v common 7.74 vpr 69.28 MiB 0.06 10500 -1 -1 1 0.18 -1 -1 35712 -1 -1 65 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70944 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 31.7 MiB 0.36 5393 69.3 MiB 0.18 0.00 3.89606 -992.598 -3.89606 3.89606 0.54 0.00116637 0.000984434 0.0833217 0.0715094 50 12776 50 6.62819e+06 2.54052e+06 787708. 3076.99 4.16 0.604404 0.533725 9482 18 4505 5214 885349 208744 4.27196 4.27196 -1246.01 -4.27196 0 0 943753. 3686.54 0.22 0.21 0.0850645 0.0778776 481 649 247 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_15.v common 8.02 vpr 69.95 MiB 0.07 10728 -1 -1 1 0.22 -1 -1 36104 -1 -1 72 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71632 22 19 2144 1789 1 1107 118 16 16 256 mult_36 auto 32.4 MiB 0.78 5768 70.0 MiB 0.21 0.00 3.89606 -1096.28 -3.89606 3.89606 0.55 0.0012769 0.00106997 0.0987082 0.0850267 54 13364 49 6.62819e+06 3.03953e+06 829453. 3240.05 3.50 0.640487 0.564128 10002 30 4815 5478 1116635 302875 4.27196 4.27196 -1360.16 -4.27196 0 0 1.02522e+06 4004.78 0.33 0.29 0.122731 0.111268 521 704 266 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_16.v common 8.71 vpr 70.34 MiB 0.08 10864 -1 -1 1 0.29 -1 -1 36596 -1 -1 74 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72028 22 19 2218 1846 1 1153 120 16 16 256 mult_36 auto 32.6 MiB 0.58 6498 70.3 MiB 0.38 0.01 3.89606 -1163.7 -3.89606 3.89606 0.61 0.00287136 0.00246643 0.188746 0.164142 68 12136 25 6.62819e+06 3.06896e+06 1.00038e+06 3907.74 3.93 0.721652 0.637242 9929 16 4302 4876 737777 161703 4.39726 4.39726 -1323.99 -4.39726 0 0 1.24648e+06 4869.04 0.43 0.32 0.150222 0.137255 540 723 285 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_17.v common 10.21 vpr 71.58 MiB 0.08 11644 -1 -1 1 0.27 -1 -1 37464 -1 -1 83 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73296 22 19 2536 2130 1 1255 129 16 16 256 mult_36 auto 34.4 MiB 0.64 6956 71.6 MiB 0.25 0.00 3.77076 -1297.68 -3.77076 3.77076 0.52 0.00177916 0.0015335 0.117673 0.101877 60 14999 49 6.62819e+06 3.20141e+06 890343. 3477.90 5.78 0.993658 0.883221 11273 19 5190 5926 1011615 232892 4.39726 4.39726 -1557.81 -4.39726 0 0 1.11577e+06 4358.47 0.29 0.26 0.117368 0.107676 617 851 304 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_18.v common 7.91 vpr 72.30 MiB 0.10 11792 -1 -1 1 0.37 -1 -1 36868 -1 -1 86 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74040 22 19 2610 2187 1 1302 132 16 16 256 mult_36 auto 35.0 MiB 0.87 7323 72.3 MiB 0.24 0.00 3.77076 -1320.79 -3.77076 3.77076 0.50 0.00197283 0.00172007 0.110697 0.0968646 64 13763 30 6.62819e+06 3.24555e+06 943753. 3686.54 3.30 0.70253 0.620102 11229 19 4895 5533 1000055 234332 4.27196 4.27196 -1573.65 -4.27196 0 0 1.19033e+06 4649.74 0.28 0.26 0.115784 0.105874 636 870 323 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_19.v common 8.42 vpr 72.80 MiB 0.10 12448 -1 -1 1 0.37 -1 -1 36512 -1 -1 91 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74544 22 19 2778 2321 1 1398 138 16 16 256 mult_36 auto 35.6 MiB 0.82 7858 72.8 MiB 0.28 0.00 4.02136 -1424.51 -4.02136 4.02136 0.50 0.00183388 0.00157887 0.129866 0.112393 70 14147 45 6.62819e+06 3.71513e+06 1.02522e+06 4004.78 3.55 0.873363 0.769466 11668 18 5175 5866 996131 237510 4.39726 4.39726 -1651.37 -4.39726 0 0 1.29210e+06 5047.26 0.34 0.40 0.180217 0.164987 676 925 342 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_20.v common 8.45 vpr 73.30 MiB 0.11 12280 -1 -1 1 0.28 -1 -1 36852 -1 -1 93 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75056 22 19 2852 2378 1 1440 140 16 16 256 mult_36 auto 36.2 MiB 0.62 8231 73.3 MiB 0.34 0.00 3.89606 -1460.65 -3.89606 3.89606 0.52 0.00201219 0.00174145 0.161167 0.140183 66 15498 27 6.62819e+06 3.74456e+06 974584. 3806.97 3.64 0.889639 0.786747 12255 19 5408 6246 976740 221500 4.27196 4.27196 -1742.92 -4.27196 0 0 1.22072e+06 4768.46 0.34 0.40 0.185026 0.170528 695 944 361 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_21.v common 9.99 vpr 74.46 MiB 0.10 12804 -1 -1 1 0.37 -1 -1 38528 -1 -1 97 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76248 22 19 3057 2549 1 1542 144 16 16 256 mult_36 auto 37.2 MiB 0.77 8566 74.5 MiB 0.36 0.00 4.02136 -1597.25 -4.02136 4.02136 0.50 0.00218757 0.00188959 0.167225 0.145895 70 15645 37 6.62819e+06 3.80343e+06 1.02522e+06 4004.78 4.86 1.28565 1.14607 12961 17 5654 6551 1011269 233063 4.39726 4.39726 -1930.15 -4.39726 0 0 1.29210e+06 5047.26 0.30 0.40 0.243544 0.225329 742 1017 380 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_22.v common 9.95 vpr 74.96 MiB 0.08 12984 -1 -1 1 0.29 -1 -1 37540 -1 -1 100 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76760 22 19 3131 2606 1 1585 147 16 16 256 mult_36 auto 37.7 MiB 0.74 9191 75.0 MiB 0.34 0.01 4.02136 -1662.31 -4.02136 4.02136 0.71 0.00217971 0.00188005 0.1599 0.140028 74 16821 34 6.62819e+06 3.84757e+06 1.07073e+06 4182.55 4.93 1.099 0.971759 13852 17 6044 6822 1262679 276366 4.39726 4.39726 -1993.55 -4.39726 0 0 1.33358e+06 5209.30 0.32 0.32 0.156445 0.144135 762 1036 399 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_23.v common 10.99 vpr 75.50 MiB 0.12 13272 -1 -1 1 0.30 -1 -1 38132 -1 -1 107 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77308 22 19 3301 2742 1 1683 155 18 18 324 mult_36 auto 38.6 MiB 0.60 9698 75.5 MiB 0.52 0.01 3.89606 -1704.37 -3.89606 3.89606 0.76 0.00266526 0.00234321 0.253052 0.221728 70 17740 29 8.18539e+06 4.34658e+06 1.34436e+06 4149.26 5.31 1.63081 1.4483 14883 17 6407 7601 1193525 267180 4.39726 4.39726 -2130.94 -4.39726 0 0 1.69344e+06 5226.66 0.44 0.35 0.162834 0.149087 802 1091 418 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_24.v common 10.73 vpr 76.19 MiB 0.09 13372 -1 -1 1 0.32 -1 -1 37572 -1 -1 109 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78020 22 19 3375 2799 1 1730 157 18 18 324 mult_36 auto 39.0 MiB 0.68 10761 76.2 MiB 0.42 0.01 3.77076 -1739.46 -3.77076 3.77076 0.70 0.00244178 0.00212174 0.195932 0.172093 70 20267 29 8.18539e+06 4.37601e+06 1.34436e+06 4149.26 5.13 1.04293 0.922039 16381 17 6905 8050 1377864 298728 4.39726 4.39726 -2159.62 -4.39726 0 0 1.69344e+06 5226.66 0.42 0.45 0.193673 0.177123 821 1110 437 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_25.v common 11.07 vpr 77.51 MiB 0.12 13784 -1 -1 1 0.32 -1 -1 38088 -1 -1 116 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79368 22 19 3615 3005 1 1835 164 18 18 324 mult_36 auto 40.4 MiB 0.64 11405 77.5 MiB 0.56 0.01 4.14666 -1920.23 -4.14666 4.14666 0.74 0.00278345 0.00241367 0.261143 0.229078 76 19919 39 8.18539e+06 4.47902e+06 1.43297e+06 4422.75 5.03 1.26166 1.11227 16820 17 7035 7982 1539622 318356 4.39726 4.39726 -2292.68 -4.39726 0 0 1.77541e+06 5479.65 0.56 0.40 0.186354 0.170878 877 1201 456 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_26.v common 11.49 vpr 77.39 MiB 0.13 14292 -1 -1 1 0.35 -1 -1 38224 -1 -1 118 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79248 22 19 3689 3062 1 1872 166 18 18 324 mult_36 auto 40.4 MiB 0.63 10859 77.4 MiB 0.51 0.01 3.89606 -1901.07 -3.89606 3.89606 0.73 0.00272327 0.00238242 0.245691 0.215902 68 20940 35 8.18539e+06 4.50845e+06 1.31159e+06 4048.11 5.34 1.15871 1.0203 16496 18 7194 8171 1360690 300349 4.39726 4.39726 -2293.97 -4.39726 0 0 1.63345e+06 5041.52 0.63 0.54 0.249103 0.22841 896 1220 475 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_27.v common 12.33 vpr 78.71 MiB 0.12 14476 -1 -1 1 0.40 -1 -1 38176 -1 -1 126 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80596 22 19 3871 3210 1 1979 175 18 18 324 mult_36 auto 41.6 MiB 0.74 11667 78.7 MiB 0.59 0.01 4.02136 -2054.03 -4.02136 4.02136 0.72 0.00318484 0.00279741 0.278156 0.244823 76 21900 28 8.18539e+06 5.02217e+06 1.43297e+06 4422.75 5.74 1.27036 1.12376 18037 16 7626 8758 1550464 319234 4.39726 4.39726 -2546.63 -4.39726 0 0 1.77541e+06 5479.65 0.60 0.40 0.209868 0.193086 944 1275 494 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_28.v common 11.09 vpr 79.16 MiB 0.11 14552 -1 -1 1 0.44 -1 -1 38136 -1 -1 128 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81060 22 19 3945 3267 1 2024 177 18 18 324 mult_36 auto 42.2 MiB 0.75 11884 79.2 MiB 0.60 0.01 4.02136 -2014.33 -4.02136 4.02136 0.72 0.00327132 0.00289169 0.291937 0.257705 72 21736 35 8.18539e+06 5.0516e+06 1.37338e+06 4238.83 4.21 1.2752 1.12627 17649 15 7346 8615 1398399 307746 4.52256 4.52256 -2555.98 -4.52256 0 0 1.72054e+06 5310.31 0.58 0.47 0.221806 0.20438 962 1294 513 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_29.v common 14.32 vpr 80.38 MiB 0.15 14976 -1 -1 1 0.44 -1 -1 38736 -1 -1 135 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82304 22 19 4159 3447 1 2140 185 22 22 484 mult_36 auto 43.3 MiB 0.64 13236 80.4 MiB 0.59 0.01 3.89606 -2138.9 -3.89606 3.89606 1.21 0.00347571 0.00305618 0.281322 0.247221 70 22601 31 1.33067e+07 5.5506e+06 2.06816e+06 4273.05 6.76 1.41834 1.25496 19405 19 8075 9415 1607817 343946 4.39726 4.39726 -2661.65 -4.39726 0 0 2.60483e+06 5381.88 0.81 0.44 0.203941 0.185855 1015 1367 532 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_30.v common 16.16 vpr 80.57 MiB 0.14 15048 -1 -1 1 0.45 -1 -1 39456 -1 -1 137 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82504 22 19 4233 3504 1 2179 187 22 22 484 mult_36 auto 43.7 MiB 0.86 13937 80.6 MiB 0.74 0.01 4.02136 -2120.05 -4.02136 4.02136 1.27 0.00409208 0.00367377 0.364507 0.32336 66 25718 41 1.33067e+07 5.58003e+06 1.96511e+06 4060.15 7.82 1.74214 1.54849 20627 17 8239 9911 1747584 371811 4.52256 4.52256 -2669.36 -4.52256 0 0 2.45963e+06 5081.88 0.73 0.51 0.245071 0.224086 1034 1386 551 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_31.v common 16.81 vpr 81.71 MiB 0.11 15500 -1 -1 1 0.56 -1 -1 40344 -1 -1 143 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83672 22 19 4410 3647 1 2283 193 22 22 484 mult_36 auto 44.5 MiB 1.12 14240 81.7 MiB 0.77 0.01 3.89606 -2246.21 -3.89606 3.89606 1.18 0.00350687 0.00308633 0.370672 0.327486 70 26955 38 1.33067e+07 5.66832e+06 2.06816e+06 4273.05 7.99 1.75815 1.55914 21537 20 8934 10473 1814940 397394 4.27196 4.27196 -2841.87 -4.27196 0 0 2.60483e+06 5381.88 0.87 0.48 0.219069 0.199327 1077 1441 570 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_32.v common 17.03 vpr 81.75 MiB 0.10 15688 -1 -1 1 0.50 -1 -1 39196 -1 -1 145 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83712 22 19 4484 3704 1 2328 195 22 22 484 mult_36 auto 44.7 MiB 0.87 15651 81.8 MiB 0.70 0.02 3.89606 -2311.39 -3.89606 3.89606 1.21 0.00743641 0.00649171 0.322114 0.283439 76 27158 46 1.33067e+07 5.69776e+06 2.20457e+06 4554.90 8.43 1.65518 1.46368 22647 16 8830 10134 1785136 363846 4.39726 4.39726 -2760.95 -4.39726 0 0 2.73077e+06 5642.09 0.96 0.51 0.221815 0.204358 1096 1460 589 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_33.v common 18.57 vpr 83.15 MiB 0.19 16532 -1 -1 1 0.55 -1 -1 41084 -1 -1 157 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85148 22 19 4843 4029 1 2439 208 22 22 484 mult_36 auto 46.2 MiB 0.92 15687 83.2 MiB 0.74 0.01 3.89606 -2437.13 -3.89606 3.89606 1.41 0.00418574 0.00369212 0.341323 0.299959 74 29300 40 1.33067e+07 6.27034e+06 2.15943e+06 4461.62 8.89 1.76086 1.55631 23532 34 9278 10836 2753860 635533 4.52256 4.52256 -3099.12 -4.52256 0 0 2.68771e+06 5553.12 0.79 0.83 0.393605 0.354417 1185 1606 608 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_34.v common 18.18 vpr 83.86 MiB 0.17 16788 -1 -1 1 0.52 -1 -1 41008 -1 -1 160 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85868 22 19 4917 4086 1 2483 211 22 22 484 mult_36 auto 47.2 MiB 1.25 15790 83.9 MiB 0.82 0.01 3.77076 -2535.89 -3.77076 3.77076 1.31 0.00457314 0.00394466 0.374258 0.326569 74 28567 36 1.33067e+07 6.31449e+06 2.15943e+06 4461.62 7.96 1.87413 1.65492 24084 18 9619 10897 2248405 453410 4.39726 4.39726 -3227.08 -4.39726 0 0 2.68771e+06 5553.12 0.95 0.67 0.307688 0.279012 1205 1625 627 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_35.v common 17.80 vpr 84.58 MiB 0.19 17108 -1 -1 1 0.89 -1 -1 41432 -1 -1 163 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 86612 22 19 5093 4228 1 2586 214 22 22 484 mult_36 auto 48.2 MiB 1.25 16314 84.6 MiB 0.84 0.01 3.89606 -2676.7 -3.89606 3.89606 1.40 0.00437317 0.00387712 0.394226 0.347986 74 29209 38 1.33067e+07 6.35863e+06 2.15943e+06 4461.62 7.22 1.80299 1.59406 24194 18 9902 11432 2256652 470373 4.39726 4.39726 -3520.47 -4.39726 0 0 2.68771e+06 5553.12 0.79 0.59 0.261464 0.23869 1248 1680 646 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_36.v common 17.09 vpr 85.12 MiB 0.19 17100 -1 -1 1 0.77 -1 -1 41440 -1 -1 165 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 87164 22 19 5167 4285 1 2630 216 22 22 484 mult_36 auto 48.5 MiB 1.01 16433 85.1 MiB 0.78 0.01 3.89606 -2650.31 -3.89606 3.89606 1.29 0.00473915 0.0042124 0.378714 0.335138 70 30296 47 1.33067e+07 6.38806e+06 2.06816e+06 4273.05 7.62 1.97245 1.74459 24292 18 9700 11437 1858639 395783 4.52256 4.52256 -3323.16 -4.52256 0 0 2.60483e+06 5381.88 0.77 0.73 0.426467 0.389299 1267 1699 665 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_37.v common 21.31 vpr 86.21 MiB 0.14 17552 -1 -1 1 0.63 -1 -1 40244 -1 -1 173 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88280 22 19 5380 4464 1 2739 225 24 24 576 mult_36 auto 49.6 MiB 0.88 18432 86.2 MiB 1.14 0.01 4.02136 -2891.57 -4.02136 4.02136 2.31 0.0044296 0.00388941 0.556836 0.493218 72 32976 42 1.60519e+07 6.90179e+06 2.50747e+06 4353.24 9.90 2.18082 1.92624 26422 30 10435 12363 2268146 523470 4.52256 4.52256 -3532.21 -4.52256 0 0 3.14081e+06 5452.80 0.96 0.83 0.431729 0.391255 1321 1772 684 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_38.v common 17.37 vpr 86.75 MiB 0.17 17716 -1 -1 1 0.63 -1 -1 42016 -1 -1 176 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88828 22 19 5454 4521 1 2784 228 24 24 576 mult_36 auto 50.3 MiB 0.91 18228 86.7 MiB 0.90 0.01 4.27196 -2913.63 -4.27196 4.27196 1.48 0.00468178 0.00415206 0.424268 0.372981 74 31607 45 1.60519e+07 6.94594e+06 2.56259e+06 4448.94 7.54 2.04191 1.80576 26431 16 9933 11521 2153457 445571 4.52256 4.52256 -3653.89 -4.52256 0 0 3.19068e+06 5539.38 0.99 0.60 0.273582 0.25034 1340 1791 703 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_39.v common 21.85 vpr 87.38 MiB 0.16 18056 -1 -1 1 0.67 -1 -1 42260 -1 -1 180 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 89472 22 19 5629 4662 1 2882 232 24 24 576 mult_36 auto 50.9 MiB 1.04 18688 87.4 MiB 0.91 0.01 4.14666 -3102.18 -4.14666 4.14666 1.52 0.00499338 0.00442264 0.427255 0.378778 72 36813 47 1.60519e+07 7.0048e+06 2.50747e+06 4353.24 11.74 2.16527 1.90966 28123 18 11528 13514 2484940 513858 4.39726 4.39726 -3854.49 -4.39726 0 0 3.14081e+06 5452.80 0.95 0.67 0.296778 0.270418 1381 1846 722 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_40.v common 21.96 vpr 87.81 MiB 0.18 18180 -1 -1 1 0.64 -1 -1 42176 -1 -1 182 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 89916 22 19 5703 4719 1 2929 234 24 24 576 mult_36 auto 51.3 MiB 0.93 19323 87.8 MiB 1.06 0.01 4.02136 -3115.67 -4.02136 4.02136 1.52 0.00510213 0.0045249 0.496634 0.438034 80 30350 34 1.60519e+07 7.03423e+06 2.72095e+06 4723.87 10.92 2.6719 2.35327 27006 18 10267 11795 2355218 491921 4.39726 4.39726 -3699.1 -4.39726 0 0 3.41546e+06 5929.62 1.15 0.79 0.394134 0.360417 1400 1865 741 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_41.v common 21.82 vpr 88.52 MiB 0.22 18884 -1 -1 1 0.91 -1 -1 42852 -1 -1 190 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 90644 22 19 5950 4932 1 3039 243 24 24 576 mult_36 auto 52.2 MiB 1.25 19807 88.5 MiB 1.02 0.01 4.02136 -3223.77 -4.02136 4.02136 1.48 0.00520012 0.00461491 0.468571 0.413394 74 36816 41 1.60519e+07 7.54795e+06 2.56259e+06 4448.94 10.80 2.28925 2.0225 29111 17 11550 13456 2725942 566679 4.52256 4.52256 -3792.81 -4.52256 0 0 3.19068e+06 5539.38 1.00 0.87 0.408121 0.375016 1461 1956 760 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_42.v common 21.29 vpr 89.11 MiB 0.15 18928 -1 -1 1 0.80 -1 -1 42852 -1 -1 193 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 91244 22 19 6024 4989 1 3082 246 24 24 576 mult_36 auto 52.8 MiB 1.34 20424 89.1 MiB 1.05 0.01 4.27196 -3287.89 -4.27196 4.27196 1.50 0.00529685 0.00470214 0.487765 0.432828 74 38316 36 1.60519e+07 7.5921e+06 2.56259e+06 4448.94 10.35 2.29854 2.03488 29727 18 11523 13478 2557486 517078 4.64786 4.64786 -4043.12 -4.64786 0 0 3.19068e+06 5539.38 0.99 0.72 0.325819 0.296673 1480 1975 779 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_43.v common 27.07 vpr 90.09 MiB 0.24 19152 -1 -1 1 0.73 -1 -1 42984 -1 -1 199 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92248 22 19 6198 5129 1 3181 252 24 24 576 mult_36 auto 53.9 MiB 1.28 21190 90.1 MiB 1.15 0.01 4.27196 -3393.01 -4.27196 4.27196 1.47 0.00572214 0.00507472 0.528687 0.468907 80 34459 46 1.60519e+07 7.68039e+06 2.72095e+06 4723.87 15.42 3.20924 2.83269 29852 30 11524 13153 3006114 697156 4.64786 4.64786 -4049.18 -4.64786 0 0 3.41546e+06 5929.62 1.18 1.08 0.51803 0.470089 1523 2030 798 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_44.v common 20.45 vpr 90.79 MiB 0.25 19484 -1 -1 1 0.82 -1 -1 42988 -1 -1 200 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92968 22 19 6272 5186 1 3226 253 24 24 576 mult_36 auto 54.6 MiB 1.03 22130 90.8 MiB 1.12 0.01 4.27196 -3423.13 -4.27196 4.27196 1.46 0.00568919 0.00505989 0.52582 0.466093 76 37291 39 1.60519e+07 7.69511e+06 2.61600e+06 4541.67 9.34 2.63034 2.33406 31220 18 11948 13887 2674772 555720 4.52256 4.52256 -4112.86 -4.52256 0 0 3.24203e+06 5628.53 1.18 0.81 0.359823 0.326514 1542 2049 817 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_45.v common 26.10 vpr 91.52 MiB 0.26 19896 -1 -1 1 0.92 -1 -1 43752 -1 -1 208 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 93712 22 19 6485 5365 1 3338 262 24 24 576 mult_36 auto 55.4 MiB 1.13 22402 91.5 MiB 1.08 0.01 4.14666 -3654.29 -4.14666 4.14666 1.51 0.00583977 0.00517128 0.510048 0.452444 80 35643 31 1.60519e+07 8.20883e+06 2.72095e+06 4723.87 14.66 3.53016 3.13829 31018 18 11975 14303 2425872 502711 4.64786 4.64786 -4500.63 -4.64786 0 0 3.41546e+06 5929.62 1.05 0.70 0.345991 0.315895 1593 2122 836 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_46.v common 22.64 vpr 91.77 MiB 0.21 19912 -1 -1 1 1.16 -1 -1 43672 -1 -1 210 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 93976 22 19 6559 5422 1 3380 264 24 24 576 mult_36 auto 55.7 MiB 1.15 20826 91.8 MiB 1.13 0.01 4.02136 -3520.41 -4.02136 4.02136 1.50 0.00611857 0.00541628 0.531862 0.470224 74 37467 33 1.60519e+07 8.23826e+06 2.56259e+06 4448.94 11.02 2.48844 2.20083 30447 19 12456 14369 2735798 586353 4.39726 4.39726 -4282.34 -4.39726 0 0 3.19068e+06 5539.38 1.04 0.81 0.394065 0.359821 1613 2141 855 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_47.v common 36.82 vpr 92.64 MiB 0.21 20388 -1 -1 1 1.13 -1 -1 44040 -1 -1 216 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 94864 22 19 6735 5564 1 3477 270 24 24 576 mult_36 auto 56.5 MiB 1.08 23445 92.6 MiB 1.25 0.01 4.52256 -3754.57 -4.52256 4.52256 1.53 0.00605529 0.00538063 0.578798 0.513921 80 38902 40 1.60519e+07 8.32656e+06 2.72095e+06 4723.87 24.69 4.41854 3.92156 32398 16 12358 14236 2716403 558169 4.77316 4.77316 -4650.22 -4.77316 0 0 3.41546e+06 5929.62 1.18 0.79 0.357728 0.326809 1656 2196 874 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_48.v common 24.42 vpr 93.57 MiB 0.19 20728 -1 -1 1 1.08 -1 -1 43992 -1 -1 218 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 95816 22 19 6809 5621 1 3526 272 24 24 576 mult_36 auto 57.6 MiB 1.15 22555 93.6 MiB 1.18 0.01 4.14666 -3754.57 -4.14666 4.14666 1.47 0.00631183 0.00563527 0.535308 0.475064 84 36996 25 1.60519e+07 8.35599e+06 2.84938e+06 4946.85 12.65 3.38298 3.0005 30964 17 11940 13656 2469592 505668 4.52256 4.52256 -4552.61 -4.52256 0 0 3.60864e+06 6265.01 1.32 0.76 0.3874 0.355269 1674 2215 893 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_49.v common 32.94 vpr 94.74 MiB 0.30 21060 -1 -1 1 1.29 -1 -1 44460 -1 -1 228 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 97012 22 19 7094 5872 1 3640 283 24 24 576 mult_36 auto 58.7 MiB 1.23 23507 94.7 MiB 2.36 0.03 4.27196 -3852.13 -4.27196 4.27196 1.97 0.0134753 0.0120124 1.15343 1.03343 78 39901 47 1.60519e+07 8.89916e+06 2.67122e+06 4637.53 18.03 4.33853 3.8338 33389 25 13039 15170 2844969 624877 4.52256 4.52256 -4711.51 -4.52256 0 0 3.35110e+06 5817.88 1.42 0.97 0.510419 0.463336 1745 2324 912 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_50.v common 32.64 vpr 94.88 MiB 0.30 21156 -1 -1 1 0.94 -1 -1 44576 -1 -1 230 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 97156 22 19 7168 5929 1 3676 285 24 24 576 mult_36 auto 58.5 MiB 1.36 25451 94.9 MiB 1.40 0.02 4.14666 -3913.65 -4.14666 4.14666 1.72 0.00691261 0.00619103 0.645067 0.574154 78 43417 48 1.60519e+07 8.92859e+06 2.67122e+06 4637.53 20.47 3.82744 3.37513 35359 16 13562 15785 2811765 590145 4.64786 4.64786 -4835.57 -4.64786 0 0 3.35110e+06 5817.88 1.02 0.77 0.358903 0.328382 1764 2343 931 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_51.v common 27.21 vpr 97.94 MiB 0.27 21492 -1 -1 1 1.28 -1 -1 44748 -1 -1 235 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 100292 22 19 7344 6071 1 3782 290 24 24 576 mult_36 auto 59.8 MiB 1.56 27225 95.8 MiB 1.25 0.02 4.39726 -3961.77 -4.39726 4.39726 1.51 0.00707907 0.00632059 0.559698 0.497301 90 41472 34 1.60519e+07 9.00217e+06 3.04237e+06 5281.89 14.20 3.6263 3.22067 36799 16 13143 15534 3032120 624853 4.77316 4.77316 -4860.96 -4.77316 0 0 3.75721e+06 6522.94 1.25 0.84 0.385888 0.353077 1808 2398 950 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_pipe_52.v common 38.00 vpr 96.12 MiB 0.24 21592 -1 -1 1 0.91 -1 -1 44576 -1 -1 237 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 98428 22 19 7418 6128 1 3828 292 24 24 576 mult_36 auto 60.0 MiB 1.33 25580 96.1 MiB 1.89 0.01 4.14666 -4033.85 -4.14666 4.14666 1.90 0.00626284 0.00552787 0.858213 0.761226 80 41559 40 1.60519e+07 9.0316e+06 2.72095e+06 4723.87 24.04 4.18749 3.69987 34923 17 13412 15474 2665790 552596 4.52256 4.52256 -4855.45 -4.52256 0 0 3.41546e+06 5929.62 1.50 0.89 0.445755 0.408442 1827 2417 969 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_14.v common 7.19 vpr 64.79 MiB 0.06 9216 -1 -1 1 0.16 -1 -1 34412 -1 -1 43 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66344 22 19 1246 925 1 718 88 16 16 256 mult_36 auto 27.1 MiB 0.26 3993 64.8 MiB 0.16 0.00 6.78041 -316.226 -6.78041 6.78041 0.49 0.000791133 0.00067756 0.065632 0.056582 48 9333 49 6.62819e+06 2.21677e+06 755748. 2952.14 3.95 0.392181 0.350542 7125 22 7150 7989 1601296 384976 8.42933 8.42933 -474.117 -8.42933 0 0 916467. 3579.95 0.24 0.32 0.0753009 0.0696309 299 285 247 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_15.v common 6.87 vpr 65.49 MiB 0.09 9664 -1 -1 1 0.17 -1 -1 34628 -1 -1 46 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 67060 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 27.7 MiB 0.25 4297 65.5 MiB 0.16 0.00 6.89671 -348.632 -6.89671 6.89671 0.50 0.000849967 0.00071952 0.0671273 0.0579252 50 9012 33 6.62819e+06 2.65692e+06 787708. 3076.99 3.51 0.461245 0.416337 7253 31 7392 8368 1672764 424445 8.11073 8.11073 -478.736 -8.11073 0 0 943753. 3686.54 0.24 0.37 0.100625 0.0924518 321 304 266 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_16.v common 6.06 vpr 66.09 MiB 0.06 9512 -1 -1 1 0.17 -1 -1 34852 -1 -1 48 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 67680 22 19 1418 1046 1 821 94 16 16 256 mult_36 auto 28.3 MiB 0.28 4586 66.1 MiB 0.14 0.00 6.7404 -357.748 -6.7404 6.7404 0.50 0.000888862 0.000748092 0.0556414 0.0480111 54 9289 37 6.62819e+06 2.68636e+06 829453. 3240.05 2.84 0.391861 0.350483 7499 27 7483 8388 1278433 299296 8.17568 8.17568 -443.042 -8.17568 0 0 1.02522e+06 4004.78 0.24 0.26 0.0806309 0.0737634 340 323 285 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_17.v common 8.11 vpr 66.44 MiB 0.05 10220 -1 -1 1 0.19 -1 -1 34684 -1 -1 52 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68032 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 28.7 MiB 0.28 5075 66.4 MiB 0.19 0.00 7.4514 -397.398 -7.4514 7.4514 0.50 0.00100638 0.00086265 0.0770593 0.0667345 56 10431 40 6.62819e+06 2.74522e+06 849745. 3319.32 4.48 0.525049 0.471671 8335 29 8981 9982 1633906 384873 9.33962 9.33962 -547.053 -9.33962 0 0 1.04740e+06 4091.43 0.33 0.54 0.17282 0.158685 365 342 304 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_18.v common 7.10 vpr 66.98 MiB 0.09 10304 -1 -1 1 0.14 -1 -1 35364 -1 -1 55 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68584 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 29.2 MiB 0.29 5207 67.0 MiB 0.18 0.00 7.46239 -396.659 -7.46239 7.46239 0.52 0.00100163 0.000864292 0.0702652 0.060863 56 10299 31 6.62819e+06 2.78937e+06 849745. 3319.32 3.70 0.464255 0.414515 8688 27 9307 10184 1797566 416111 9.02288 9.02288 -582.658 -9.02288 0 0 1.04740e+06 4091.43 0.25 0.37 0.103592 0.0948394 383 361 323 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_19.v common 8.16 vpr 67.13 MiB 0.09 10480 -1 -1 1 0.18 -1 -1 36416 -1 -1 58 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68740 22 19 1688 1231 1 976 105 16 16 256 mult_36 auto 29.5 MiB 0.33 5869 67.1 MiB 0.22 0.00 7.44225 -443.659 -7.44225 7.44225 0.57 0.00109717 0.000936298 0.0859349 0.0741798 60 11318 30 6.62819e+06 3.22951e+06 890343. 3477.90 4.52 0.480287 0.428785 9315 23 8207 9447 1477415 328302 9.02087 9.02087 -590.677 -9.02087 0 0 1.11577e+06 4358.47 0.26 0.32 0.107001 0.099223 404 380 342 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_20.v common 8.08 vpr 67.75 MiB 0.07 10648 -1 -1 1 0.23 -1 -1 35636 -1 -1 59 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69376 22 19 1762 1288 1 1014 106 16 16 256 mult_36 auto 30.1 MiB 0.57 5793 67.8 MiB 0.26 0.00 7.33709 -431.525 -7.33709 7.33709 0.50 0.00143869 0.00122642 0.10914 0.0948019 56 11813 47 6.62819e+06 3.24423e+06 849745. 3319.32 4.03 0.59131 0.526358 9641 28 9827 10913 1809969 436729 9.32747 9.32747 -610.973 -9.32747 0 0 1.04740e+06 4091.43 0.24 0.43 0.129876 0.119147 423 399 361 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_21.v common 8.49 vpr 68.28 MiB 0.11 10976 -1 -1 1 0.17 -1 -1 35808 -1 -1 62 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69916 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 30.8 MiB 0.58 6253 68.3 MiB 0.26 0.00 7.48439 -430.186 -7.48439 7.48439 0.49 0.0012285 0.0010647 0.101832 0.0883958 66 11964 32 6.62819e+06 3.28838e+06 974584. 3806.97 4.36 0.720935 0.649438 9598 25 8183 9392 1544891 354125 8.94288 8.94288 -678.686 -8.94288 0 0 1.22072e+06 4768.46 0.28 0.39 0.124754 0.114576 445 418 380 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_22.v common 8.05 vpr 68.47 MiB 0.07 11024 -1 -1 1 0.23 -1 -1 35628 -1 -1 66 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70116 22 19 1933 1408 1 1111 113 16 16 256 mult_36 auto 30.8 MiB 0.45 6811 68.5 MiB 0.25 0.00 7.47639 -480.61 -7.47639 7.47639 0.50 0.00124932 0.00108401 0.100361 0.0869758 68 12063 42 6.62819e+06 3.34724e+06 1.00038e+06 3907.74 3.76 0.591941 0.527325 9951 28 7574 8958 1482345 343383 8.74613 8.74613 -690.194 -8.74613 0 0 1.24648e+06 4869.04 0.29 0.53 0.226447 0.207387 464 437 399 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_23.v common 10.19 vpr 68.96 MiB 0.10 11320 -1 -1 1 0.19 -1 -1 35792 -1 -1 68 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70616 22 19 2031 1472 1 1174 116 18 18 324 mult_36 auto 31.3 MiB 0.51 7132 69.0 MiB 0.28 0.00 7.46525 -457.957 -7.46525 7.46525 0.70 0.0012973 0.00112076 0.111847 0.0973071 64 13804 48 8.18539e+06 3.77267e+06 1.23838e+06 3822.15 4.98 0.675616 0.602955 11437 23 9862 11300 2439849 521619 8.95637 8.95637 -824.885 -8.95637 0 0 1.56068e+06 4816.91 0.52 0.67 0.201684 0.186223 486 456 418 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_24.v common 10.10 vpr 69.10 MiB 0.08 11480 -1 -1 1 0.27 -1 -1 35956 -1 -1 71 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70760 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 31.5 MiB 0.60 7033 69.1 MiB 0.27 0.00 7.31094 -462.562 -7.31094 7.31094 0.69 0.00145574 0.0012656 0.113541 0.0989426 64 13067 32 8.18539e+06 3.81682e+06 1.23838e+06 3822.15 4.90 0.731436 0.654585 11000 24 9515 10756 1818882 389874 8.66898 8.66898 -758.482 -8.66898 0 0 1.56068e+06 4816.91 0.39 0.68 0.248777 0.228849 505 475 437 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_25.v common 11.52 vpr 69.73 MiB 0.11 11840 -1 -1 1 0.32 -1 -1 36264 -1 -1 73 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71408 22 19 2201 1591 1 1268 121 18 18 324 mult_36 auto 32.6 MiB 0.43 7713 69.7 MiB 0.35 0.00 7.49539 -487.789 -7.49539 7.49539 0.74 0.00142257 0.00123694 0.144717 0.126669 60 14618 33 8.18539e+06 3.84625e+06 1.16833e+06 3605.96 6.05 0.918532 0.82651 12122 27 11285 12899 2429851 522559 9.10402 9.10402 -731.1 -9.10402 0 0 1.46313e+06 4515.82 0.65 0.64 0.183236 0.169059 526 494 456 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_26.v common 34.51 vpr 70.47 MiB 0.11 12008 -1 -1 1 0.23 -1 -1 36572 -1 -1 76 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72160 22 19 2275 1648 1 1306 124 18 18 324 mult_36 auto 33.0 MiB 0.64 7985 70.5 MiB 0.30 0.00 7.52355 -485.955 -7.52355 7.52355 0.73 0.00157629 0.00136674 0.121788 0.105773 66 14511 26 8.18539e+06 3.8904e+06 1.27759e+06 3943.17 29.20 1.51356 1.34857 12140 27 10139 11644 2374559 510294 9.12182 9.12182 -801.182 -9.12182 0 0 1.59950e+06 4936.74 0.41 0.49 0.141126 0.128864 546 513 475 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 11.05 vpr 70.80 MiB 0.09 12088 -1 -1 1 0.25 -1 -1 36476 -1 -1 82 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72496 22 19 2385 1724 1 1378 131 18 18 324 mult_36 auto 33.4 MiB 0.77 8259 70.8 MiB 0.42 0.00 7.41124 -510.759 -7.41124 7.41124 0.71 0.00183176 0.00160191 0.18094 0.158295 68 14936 37 8.18539e+06 4.37469e+06 1.31159e+06 4048.11 5.18 0.807973 0.719509 12567 26 11185 12924 2252385 474062 8.57427 8.57427 -832.242 -8.57427 0 0 1.63345e+06 5041.52 0.49 0.55 0.186697 0.171422 575 532 494 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 10.88 vpr 71.21 MiB 0.09 12256 -1 -1 1 0.26 -1 -1 36540 -1 -1 83 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72916 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 33.9 MiB 0.48 8632 71.2 MiB 0.50 0.01 7.49539 -542.199 -7.49539 7.49539 0.79 0.00222059 0.00196827 0.219019 0.193496 64 16871 33 8.18539e+06 4.3894e+06 1.23838e+06 3822.15 5.64 0.819311 0.730116 13839 24 11998 13926 2584277 556116 8.98767 8.98767 -968.34 -8.98767 0 0 1.56068e+06 4816.91 0.38 0.60 0.180311 0.165015 594 551 513 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 16.80 vpr 72.03 MiB 0.12 12800 -1 -1 1 0.25 -1 -1 36840 -1 -1 85 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73760 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 34.8 MiB 0.52 9251 72.0 MiB 0.42 0.01 7.61255 -575.843 -7.61255 7.61255 1.19 0.00191887 0.00166835 0.178755 0.156492 60 17943 49 1.33067e+07 4.81483e+06 1.79840e+06 3715.71 10.01 1.07153 0.960301 14411 25 13129 15201 2502875 541636 9.07972 9.07972 -1068.49 -9.07972 0 0 2.25108e+06 4650.99 0.62 0.54 0.159381 0.146147 619 570 532 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 14.72 vpr 72.07 MiB 0.11 12532 -1 -1 1 0.34 -1 -1 36548 -1 -1 89 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73804 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 35.0 MiB 0.58 9658 72.1 MiB 0.41 0.01 7.3951 -532.11 -7.3951 7.3951 1.37 0.00230974 0.0020123 0.181499 0.160137 66 17063 47 1.33067e+07 4.87369e+06 1.96511e+06 4060.15 7.40 1.03082 0.922091 14296 34 13853 16102 3805780 843703 9.03467 9.03467 -923.279 -9.03467 0 0 2.45963e+06 5081.88 0.91 0.82 0.207475 0.188844 639 589 551 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 15.83 vpr 72.70 MiB 0.11 13212 -1 -1 1 0.26 -1 -1 37120 -1 -1 93 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74440 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 35.3 MiB 0.87 10603 72.7 MiB 0.46 0.01 7.49539 -590.476 -7.49539 7.49539 1.35 0.00210596 0.00184169 0.182402 0.159779 66 19013 45 1.33067e+07 4.93255e+06 1.96511e+06 4060.15 8.21 0.930396 0.828531 15616 27 14342 16925 3807372 797279 8.87942 8.87942 -994.332 -8.87942 0 0 2.45963e+06 5081.88 0.73 0.84 0.197706 0.180997 665 608 570 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 15.24 vpr 72.89 MiB 0.14 12884 -1 -1 1 0.29 -1 -1 36444 -1 -1 96 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74640 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 35.6 MiB 0.88 10271 72.9 MiB 0.44 0.01 7.37926 -571.424 -7.37926 7.37926 1.23 0.00211983 0.00184212 0.172937 0.150475 66 19023 34 1.33067e+07 4.9767e+06 1.96511e+06 4060.15 7.30 0.884828 0.786457 15290 24 13140 15291 3256942 690335 9.29962 9.29962 -1090.33 -9.29962 0 0 2.45963e+06 5081.88 0.96 0.75 0.19615 0.179528 684 627 589 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 18.23 vpr 73.41 MiB 0.15 13540 -1 -1 1 0.30 -1 -1 37460 -1 -1 100 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75172 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 36.1 MiB 0.52 10728 73.4 MiB 0.90 0.01 8.03294 -623.449 -8.03294 8.03294 1.20 0.00492335 0.00450876 0.420285 0.375505 64 21328 44 1.33067e+07 5.43155e+06 1.90554e+06 3937.06 10.81 1.28161 1.14603 16668 34 15201 16947 3362600 760319 10.0536 10.0536 -976.338 -10.0536 0 0 2.40101e+06 4960.76 0.69 0.76 0.227544 0.207231 710 646 608 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 15.20 vpr 73.73 MiB 0.15 13696 -1 -1 1 0.41 -1 -1 38112 -1 -1 101 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75500 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 36.4 MiB 0.81 11228 73.7 MiB 0.55 0.01 7.92149 -635.505 -7.92149 7.92149 1.22 0.00252203 0.00223071 0.231843 0.204319 68 20345 38 1.33067e+07 5.44627e+06 2.01763e+06 4168.66 7.65 1.02939 0.916544 16580 25 14397 16378 3343692 715823 9.83861 9.83861 -1079.72 -9.83861 0 0 2.51205e+06 5190.18 0.71 0.75 0.204643 0.187352 729 665 627 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_35.v common 18.47 vpr 74.23 MiB 0.15 13964 -1 -1 1 0.46 -1 -1 37040 -1 -1 106 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76016 22 19 3101 2236 1 1801 157 22 22 484 mult_36 auto 37.3 MiB 0.72 11935 74.2 MiB 0.85 0.01 7.98179 -701.811 -7.98179 7.98179 1.55 0.00495508 0.00445575 0.401509 0.363169 66 22339 41 1.33067e+07 5.51985e+06 1.96511e+06 4060.15 9.75 1.26029 1.13111 17704 27 16912 19718 4175840 870347 9.75266 9.75266 -1074.15 -9.75266 0 0 2.45963e+06 5081.88 0.75 1.07 0.302232 0.275865 755 684 646 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_36.v common 15.81 vpr 74.68 MiB 0.15 14028 -1 -1 1 0.32 -1 -1 37704 -1 -1 107 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76468 22 19 3175 2293 1 1836 158 22 22 484 mult_36 auto 37.5 MiB 0.79 12220 74.7 MiB 0.52 0.01 8.18309 -687.464 -8.18309 8.18309 1.23 0.00249581 0.00220567 0.213521 0.188493 70 21270 42 1.33067e+07 5.53456e+06 2.06816e+06 4273.05 7.76 1.09451 0.974631 17911 23 14237 16762 2961895 618723 9.83982 9.83982 -1227.21 -9.83982 0 0 2.60483e+06 5381.88 1.12 0.66 0.206536 0.18945 773 703 665 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_37.v common 19.89 vpr 75.32 MiB 0.17 14428 -1 -1 1 0.44 -1 -1 38272 -1 -1 111 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77124 22 19 3280 2364 1 1904 163 24 24 576 mult_36 auto 38.3 MiB 0.98 12748 75.3 MiB 0.60 0.01 8.514 -738.227 -8.514 8.514 1.58 0.00265817 0.00233132 0.245622 0.21639 66 24470 48 1.60519e+07 5.98942e+06 2.33135e+06 4047.49 10.51 1.16077 1.03306 18809 27 14220 16866 3305078 691724 9.81787 9.81787 -1306.81 -9.81787 0 0 2.91907e+06 5067.82 1.10 0.75 0.224955 0.205176 798 722 684 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_38.v common 19.27 vpr 75.69 MiB 0.17 14608 -1 -1 1 0.55 -1 -1 37968 -1 -1 113 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77508 22 19 3354 2421 1 1941 165 24 24 576 mult_36 auto 38.5 MiB 0.88 13961 75.7 MiB 0.64 0.01 8.32468 -788.623 -8.32468 8.32468 1.47 0.00274476 0.00242732 0.2592 0.226894 68 25242 49 1.60519e+07 6.01886e+06 2.39371e+06 4155.74 10.53 1.24335 1.10609 19843 24 14562 17012 3058537 631791 10.0266 10.0266 -1240.54 -10.0266 0 0 2.98162e+06 5176.42 0.93 0.69 0.211827 0.193637 818 741 703 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_39.v common 20.94 vpr 76.33 MiB 0.18 14696 -1 -1 1 0.37 -1 -1 37772 -1 -1 117 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78164 22 19 3457 2490 1 2007 169 24 24 576 mult_36 auto 39.3 MiB 0.94 14018 76.3 MiB 0.64 0.01 8.15538 -799.328 -8.15538 8.15538 1.46 0.00290308 0.00256533 0.251442 0.221637 68 26400 50 1.60519e+07 6.07772e+06 2.39371e+06 4155.74 12.06 1.22358 1.08798 20725 28 15648 18709 3452250 721279 9.89902 9.89902 -1332.02 -9.89902 0 0 2.98162e+06 5176.42 0.87 0.95 0.338124 0.308877 842 760 722 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_40.v common 17.16 vpr 76.36 MiB 0.18 14924 -1 -1 1 0.39 -1 -1 38260 -1 -1 120 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78188 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 39.3 MiB 1.01 13408 76.4 MiB 0.80 0.01 8.34154 -844.297 -8.34154 8.34154 1.51 0.00290151 0.00256401 0.352826 0.313515 74 21404 50 1.60519e+07 6.12186e+06 2.56259e+06 4448.94 8.23 1.35473 1.20766 19024 24 14115 16413 2862109 593773 9.68027 9.68027 -1304.43 -9.68027 0 0 3.19068e+06 5539.38 0.95 0.64 0.217875 0.200105 862 779 741 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_41.v common 20.52 vpr 76.96 MiB 0.17 15260 -1 -1 1 0.42 -1 -1 37760 -1 -1 122 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78804 22 19 3634 2616 1 2113 175 24 24 576 mult_36 auto 39.7 MiB 1.03 14284 77.0 MiB 0.70 0.01 8.4853 -821.201 -8.4853 8.4853 1.48 0.00309478 0.00275525 0.297219 0.264835 72 25523 40 1.60519e+07 6.5473e+06 2.50747e+06 4353.24 11.27 1.59459 1.42727 20250 22 14414 16802 3226739 668987 9.65936 9.65936 -1220.83 -9.65936 0 0 3.14081e+06 5452.80 0.97 0.73 0.226142 0.207436 886 798 760 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_42.v common 21.47 vpr 77.46 MiB 0.16 15184 -1 -1 1 0.45 -1 -1 38256 -1 -1 125 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79316 22 19 3708 2673 1 2147 178 24 24 576 mult_36 auto 40.5 MiB 0.98 15042 77.5 MiB 0.68 0.01 8.33054 -853.387 -8.33054 8.33054 1.63 0.00318989 0.00282919 0.27179 0.240723 70 25792 32 1.60519e+07 6.59144e+06 2.45377e+06 4260.01 11.68 1.69324 1.52297 21663 26 17638 20747 3982315 834058 9.82762 9.82762 -1352.07 -9.82762 0 0 3.09179e+06 5367.68 1.08 1.00 0.293242 0.269456 906 817 779 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_43.v common 18.15 vpr 77.94 MiB 0.17 15476 -1 -1 1 0.49 -1 -1 39172 -1 -1 129 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79812 22 19 3810 2741 1 2214 182 24 24 576 mult_36 auto 40.8 MiB 1.21 15304 77.9 MiB 0.75 0.01 8.33655 -839.979 -8.33655 8.33655 1.48 0.00333974 0.00295649 0.315245 0.277466 72 25631 47 1.60519e+07 6.6503e+06 2.50747e+06 4353.24 8.53 1.42844 1.27163 20884 25 14866 17464 3352745 703799 9.68242 9.68242 -1362.95 -9.68242 0 0 3.14081e+06 5452.80 0.97 0.86 0.304204 0.277965 930 836 798 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_44.v common 19.12 vpr 78.34 MiB 0.19 15612 -1 -1 1 0.46 -1 -1 38024 -1 -1 132 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80216 22 19 3884 2798 1 2251 185 24 24 576 mult_36 auto 41.2 MiB 1.00 13985 78.3 MiB 0.77 0.01 8.15739 -849.642 -8.15739 8.15739 1.59 0.00349852 0.00311467 0.32344 0.28584 68 25184 42 1.60519e+07 6.69445e+06 2.39371e+06 4155.74 9.50 1.42058 1.26243 20332 25 15802 18805 3383168 734866 9.58412 9.58412 -1509.48 -9.58412 0 0 2.98162e+06 5176.42 0.87 0.91 0.325189 0.295684 949 855 817 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_45.v common 20.74 vpr 78.96 MiB 0.20 15932 -1 -1 1 0.47 -1 -1 40204 -1 -1 135 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80856 22 19 3989 2869 1 2318 189 24 24 576 mult_36 auto 41.7 MiB 1.01 15462 79.0 MiB 0.85 0.01 8.12109 -872.621 -8.12109 8.12109 1.52 0.00358186 0.00313344 0.335284 0.295172 72 27525 49 1.60519e+07 7.1346e+06 2.50747e+06 4353.24 10.44 1.4946 1.32797 22007 23 16441 19402 3909826 827494 9.66307 9.66307 -1381.61 -9.66307 0 0 3.14081e+06 5452.80 1.14 1.03 0.293264 0.267716 975 874 836 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_46.v common 22.38 vpr 79.35 MiB 0.23 16120 -1 -1 1 0.44 -1 -1 40308 -1 -1 136 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81256 22 19 4063 2926 1 2357 190 24 24 576 mult_36 auto 42.3 MiB 1.18 15978 79.4 MiB 1.11 0.02 8.00588 -935.888 -8.00588 8.00588 1.91 0.00732167 0.00665214 0.47609 0.426939 74 27235 39 1.60519e+07 7.14931e+06 2.56259e+06 4448.94 11.61 1.87388 1.68023 22643 25 18935 21795 3953316 786483 9.55912 9.55912 -1619.99 -9.55912 0 0 3.19068e+06 5539.38 0.95 0.99 0.329844 0.300174 993 893 855 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_47.v common 18.53 vpr 79.55 MiB 0.16 16480 -1 -1 1 0.54 -1 -1 40276 -1 -1 141 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81460 22 19 4167 2996 1 2421 195 24 24 576 mult_36 auto 42.6 MiB 1.21 16445 79.6 MiB 0.84 0.01 8.35769 -939.381 -8.35769 8.35769 1.50 0.00373547 0.00331193 0.356328 0.31648 76 25769 30 1.60519e+07 7.22289e+06 2.61600e+06 4541.67 8.45 1.48715 1.32718 22832 33 16905 19907 4030328 900396 9.68341 9.68341 -1422.11 -9.68341 0 0 3.24203e+06 5628.53 0.98 0.98 0.32915 0.299264 1019 912 874 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_48.v common 24.35 vpr 80.04 MiB 0.15 16608 -1 -1 1 0.56 -1 -1 40548 -1 -1 144 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81964 22 19 4241 3053 1 2459 198 24 24 576 mult_36 auto 42.9 MiB 1.21 16729 80.0 MiB 0.82 0.01 8.27353 -955.758 -8.27353 8.27353 1.52 0.003786 0.00330813 0.337593 0.297913 72 29366 37 1.60519e+07 7.26704e+06 2.50747e+06 4353.24 13.37 2.47174 2.21643 23750 26 18581 21533 4220688 881398 9.67551 9.67551 -1558.84 -9.67551 0 0 3.14081e+06 5452.80 1.36 1.30 0.449266 0.408204 1038 931 893 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_49.v common 21.10 vpr 80.50 MiB 0.17 16992 -1 -1 1 0.66 -1 -1 40568 -1 -1 145 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82436 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 43.9 MiB 1.09 17038 80.5 MiB 0.81 0.01 8.7719 -964.391 -8.7719 8.7719 1.45 0.00375481 0.00335457 0.348011 0.309133 74 27499 30 1.60519e+07 7.67775e+06 2.56259e+06 4448.94 10.49 2.04244 1.83378 23783 27 18854 22235 4443869 928911 10.4333 10.4333 -1509.29 -10.4333 0 0 3.19068e+06 5539.38 1.03 1.22 0.346911 0.316739 1062 950 912 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_50.v common 23.34 vpr 80.97 MiB 0.19 17320 -1 -1 1 0.56 -1 -1 40716 -1 -1 148 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82916 22 19 4420 3181 1 2564 203 24 24 576 mult_36 auto 44.2 MiB 1.45 17354 81.0 MiB 0.94 0.01 8.29754 -979.317 -8.29754 8.29754 1.46 0.00407354 0.00362983 0.393385 0.349019 76 27852 43 1.60519e+07 7.72189e+06 2.61600e+06 4541.67 12.79 2.67021 2.39749 24031 23 19020 22253 4112866 869888 9.70062 9.70062 -1423.65 -9.70062 0 0 3.24203e+06 5628.53 0.97 0.91 0.27588 0.252099 1082 969 931 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_51.v common 23.12 vpr 81.67 MiB 0.16 17292 -1 -1 1 0.85 -1 -1 39416 -1 -1 152 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83632 22 19 4524 3251 1 2634 207 24 24 576 mult_36 auto 44.9 MiB 1.16 16950 81.7 MiB 0.82 0.01 8.539 -959.955 -8.539 8.539 1.48 0.00410168 0.00366079 0.344404 0.306335 74 27773 36 1.60519e+07 7.78076e+06 2.56259e+06 4448.94 12.42 2.54242 2.29073 23908 25 18382 21430 4143762 855761 9.76142 9.76142 -1600.32 -9.76142 0 0 3.19068e+06 5539.38 1.22 0.98 0.317303 0.288935 1107 988 950 19 0 0 - k6_frac_2uripple_N8_22nm.xml fir_nopipe_52.v common 24.06 vpr 82.15 MiB 0.22 17484 -1 -1 1 0.51 -1 -1 41332 -1 -1 155 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84120 22 19 4598 3308 1 2668 210 24 24 576 mult_36 auto 45.3 MiB 1.53 18073 82.1 MiB 0.96 0.01 8.514 -1041.9 -8.514 8.514 1.63 0.00427865 0.00381595 0.398261 0.352585 78 28052 29 1.60519e+07 7.8249e+06 2.67122e+06 4637.53 12.81 2.35889 2.10095 24919 24 18033 21408 4039451 839009 9.81657 9.81657 -1721.29 -9.81657 0 0 3.35110e+06 5817.88 1.20 0.97 0.326475 0.297065 1127 1007 969 19 0 0 - k6_frac_N8_22nm.xml fir_pipe_14.v common 8.83 vpr 67.50 MiB 0.08 10372 -1 -1 8 0.42 -1 -1 37036 -1 -1 79 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69120 22 19 1764 1664 1 1014 124 16 16 256 mult_36 auto 29.9 MiB 0.41 6602 67.5 MiB 0.31 0.00 4.02136 -1189.27 -4.02136 4.02136 0.61 0.00144162 0.0012287 0.156421 0.135969 66 13015 38 6.45408e+06 2.64829e+06 974584. 3806.97 4.09 0.83552 0.745884 10641 14 4274 7507 746559 170133 4.39726 4.39726 -1325.5 -4.39726 0 0 1.22072e+06 4768.46 0.45 0.34 0.162592 0.149924 599 909 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_15.v common 9.37 vpr 68.31 MiB 0.08 10752 -1 -1 8 0.68 -1 -1 37304 -1 -1 85 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69948 22 19 1918 1801 1 1104 131 16 16 256 mult_36 auto 30.6 MiB 0.64 6774 68.3 MiB 0.21 0.00 4.02136 -1298.78 -4.02136 4.02136 0.59 0.00149712 0.00126947 0.0955409 0.0817417 62 15437 50 6.45408e+06 3.12512e+06 916467. 3579.95 4.40 0.756064 0.670046 11143 16 4761 8303 811401 185535 4.27196 4.27196 -1535.41 -4.27196 0 0 1.13630e+06 4438.68 0.29 0.22 0.109311 0.10133 651 984 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_16.v common 7.75 vpr 68.76 MiB 0.08 10892 -1 -1 8 0.77 -1 -1 36420 -1 -1 87 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70408 22 19 1976 1859 1 1141 133 16 16 256 mult_36 auto 31.1 MiB 0.44 7253 68.8 MiB 0.22 0.00 4.02136 -1351.78 -4.02136 4.02136 0.50 0.00155368 0.00130851 0.101993 0.0876881 66 14088 29 6.45408e+06 3.15206e+06 974584. 3806.97 3.33 0.72102 0.642077 11657 15 4672 8009 802497 182935 4.39726 4.39726 -1470.63 -4.39726 0 0 1.22072e+06 4768.46 0.29 0.23 0.102245 0.0940396 679 1023 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_17.v common 11.15 vpr 70.37 MiB 0.06 11652 -1 -1 8 0.60 -1 -1 37084 -1 -1 102 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72056 22 19 2278 2144 1 1269 148 16 16 256 mult_36 auto 32.7 MiB 0.62 8103 70.4 MiB 0.25 0.00 4.02136 -1521.71 -4.02136 4.02136 0.50 0.00199423 0.00171856 0.113693 0.0979854 60 17507 42 6.45408e+06 3.35414e+06 890343. 3477.90 6.61 0.832856 0.736071 13641 15 5681 9771 1236244 282070 4.39726 4.39726 -1722.47 -4.39726 0 0 1.11577e+06 4358.47 0.25 0.30 0.121771 0.112451 768 1171 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_18.v common 9.59 vpr 70.68 MiB 0.08 11900 -1 -1 8 0.75 -1 -1 36720 -1 -1 105 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72380 22 19 2336 2202 1 1299 151 16 16 256 mult_36 auto 33.2 MiB 0.75 8893 70.7 MiB 0.26 0.01 4.02136 -1594.13 -4.02136 4.02136 0.50 0.00210849 0.00182525 0.119187 0.103016 68 16781 38 6.45408e+06 3.39456e+06 1.00038e+06 3907.74 4.67 0.866036 0.765954 13373 16 5435 9477 1040093 229428 4.39726 4.39726 -1801.81 -4.39726 0 0 1.24648e+06 4869.04 0.29 0.28 0.122448 0.112496 794 1210 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_19.v common 10.68 vpr 71.12 MiB 0.10 12412 -1 -1 8 0.92 -1 -1 37228 -1 -1 111 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72828 22 19 2488 2337 1 1399 158 16 16 256 mult_36 auto 33.9 MiB 0.51 9440 71.1 MiB 0.31 0.01 4.27196 -1695.26 -4.27196 4.27196 0.51 0.00223062 0.00191877 0.153522 0.135932 70 17965 31 6.45408e+06 3.87139e+06 1.02522e+06 4004.78 5.53 0.921056 0.819167 14764 15 5764 10292 1095231 247762 4.39726 4.39726 -1971.41 -4.39726 0 0 1.29210e+06 5047.26 0.30 0.30 0.135703 0.12529 837 1285 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_20.v common 9.12 vpr 71.72 MiB 0.12 12364 -1 -1 8 0.73 -1 -1 37196 -1 -1 114 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73440 22 19 2546 2395 1 1440 161 16 16 256 mult_36 auto 34.6 MiB 0.64 9995 71.7 MiB 0.36 0.01 4.02136 -1796.97 -4.02136 4.02136 0.50 0.00226514 0.00195339 0.165608 0.142899 76 17836 32 6.45408e+06 3.91181e+06 1.09288e+06 4269.05 3.90 0.931653 0.825347 15130 13 5691 10287 1134550 246565 4.52256 4.52256 -1977.98 -4.52256 0 0 1.35486e+06 5292.42 0.32 0.29 0.127752 0.118173 867 1324 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_21.v common 11.66 vpr 72.58 MiB 0.11 12860 -1 -1 8 0.88 -1 -1 37576 -1 -1 122 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74324 22 19 2735 2567 1 1547 169 16 16 256 mult_36 auto 35.4 MiB 0.56 10806 72.6 MiB 0.34 0.01 4.14666 -1910.8 -4.14666 4.14666 0.50 0.00254345 0.00220237 0.156948 0.135951 78 18268 32 6.45408e+06 4.01958e+06 1.11577e+06 4358.47 5.98 1.27326 1.12683 16184 14 6032 10286 1201169 264299 4.52256 4.52256 -2196.83 -4.52256 0 0 1.40012e+06 5469.22 0.47 0.38 0.1784 0.16621 931 1417 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_22.v common 11.46 vpr 72.96 MiB 0.08 12976 -1 -1 8 0.83 -1 -1 38008 -1 -1 126 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74716 22 19 2793 2625 1 1580 173 16 16 256 mult_36 auto 35.7 MiB 0.60 10949 73.0 MiB 0.34 0.01 4.02136 -1917.87 -4.02136 4.02136 0.50 0.00470218 0.00406809 0.159746 0.138378 72 20883 39 6.45408e+06 4.07347e+06 1.04740e+06 4091.43 6.10 1.21459 1.07961 16679 15 6517 11808 1286965 285882 4.39726 4.39726 -2182.21 -4.39726 0 0 1.31294e+06 5128.69 0.30 0.35 0.160263 0.14762 962 1456 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_23.v common 16.01 vpr 73.90 MiB 0.13 13320 -1 -1 8 0.83 -1 -1 38068 -1 -1 131 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75676 22 19 2947 2762 1 1693 179 18 18 324 mult_36 auto 36.5 MiB 0.62 11331 73.9 MiB 0.42 0.01 4.02136 -2074.26 -4.02136 4.02136 0.70 0.0028131 0.00244627 0.199395 0.17341 68 22999 50 7.94662e+06 4.53683e+06 1.31159e+06 4048.11 9.78 1.41994 1.25599 17961 17 7166 12692 1376699 293359 4.39726 4.39726 -2342.3 -4.39726 0 0 1.63345e+06 5041.52 0.40 0.36 0.172918 0.158664 1008 1531 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_24.v common 16.09 vpr 74.10 MiB 0.12 13476 -1 -1 8 0.94 -1 -1 38428 -1 -1 135 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75876 22 19 3005 2820 1 1720 183 18 18 324 mult_36 auto 36.8 MiB 0.69 11478 74.1 MiB 0.41 0.01 4.14666 -2089.82 -4.14666 4.14666 0.70 0.00296468 0.00259407 0.194023 0.169567 68 22546 44 7.94662e+06 4.59072e+06 1.31159e+06 4048.11 9.78 1.41957 1.25483 18217 14 7267 13074 1336381 283625 4.52256 4.52256 -2442.16 -4.52256 0 0 1.63345e+06 5041.52 0.40 0.35 0.153865 0.141707 1039 1570 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_25.v common 15.27 vpr 75.25 MiB 0.13 14084 -1 -1 8 1.14 -1 -1 40228 -1 -1 145 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77056 22 19 3229 3027 1 1824 193 18 18 324 mult_36 auto 37.8 MiB 0.70 12389 75.2 MiB 0.46 0.01 4.14666 -2217.95 -4.14666 4.14666 0.72 0.0032672 0.00288199 0.217231 0.190505 68 23295 50 7.94662e+06 4.72544e+06 1.31159e+06 4048.11 8.58 1.44648 1.28516 19368 17 7594 13578 1684462 352793 4.52256 4.52256 -2609.75 -4.52256 0 0 1.63345e+06 5041.52 0.40 0.55 0.215399 0.197399 1106 1681 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_26.v common 14.84 vpr 75.81 MiB 0.14 14220 -1 -1 8 1.25 -1 -1 40444 -1 -1 151 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77628 22 19 3287 3085 1 1862 199 18 18 324 mult_36 auto 38.4 MiB 0.77 12488 75.8 MiB 0.47 0.01 4.02136 -2277.12 -4.02136 4.02136 0.76 0.00359964 0.00316838 0.224537 0.197399 70 24022 43 7.94662e+06 4.80627e+06 1.34436e+06 4149.26 6.93 1.37641 1.2209 20098 16 7807 14030 1477080 320931 4.39726 4.39726 -2611.53 -4.39726 0 0 1.69344e+06 5226.66 0.55 0.50 0.2468 0.228658 1134 1720 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_27.v common 16.90 vpr 76.81 MiB 0.11 14616 -1 -1 8 1.05 -1 -1 40676 -1 -1 156 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78656 22 19 3453 3234 1 1964 205 18 18 324 mult_36 auto 39.5 MiB 0.72 14328 76.8 MiB 0.60 0.01 4.14666 -2397.38 -4.14666 4.14666 0.76 0.00334164 0.00294092 0.289127 0.255277 78 24136 24 7.94662e+06 5.26963e+06 1.46313e+06 4515.82 9.74 2.06511 1.83935 21281 16 7668 13690 1501614 323513 4.39726 4.39726 -2876.8 -4.39726 0 0 1.83526e+06 5664.38 0.51 0.60 0.251032 0.229665 1189 1795 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_28.v common 17.14 vpr 77.33 MiB 0.14 14792 -1 -1 8 1.38 -1 -1 39572 -1 -1 160 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79188 22 19 3511 3292 1 2001 209 18 18 324 mult_36 auto 40.0 MiB 0.77 13938 77.3 MiB 0.50 0.01 4.02136 -2425.74 -4.02136 4.02136 0.68 0.00369912 0.00326079 0.229232 0.19996 78 24394 35 7.94662e+06 5.32352e+06 1.46313e+06 4515.82 9.52 2.18279 1.93736 21095 17 7861 14121 1451544 314680 4.39726 4.39726 -2810.79 -4.39726 0 0 1.83526e+06 5664.38 0.56 0.47 0.265195 0.244096 1221 1834 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_29.v common 17.32 vpr 78.08 MiB 0.15 15204 -1 -1 8 1.49 -1 -1 41036 -1 -1 168 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79956 22 19 3709 3473 1 2127 218 22 22 484 mult_36 auto 41.0 MiB 0.83 14974 78.1 MiB 0.54 0.01 4.02136 -2517.71 -4.02136 4.02136 1.21 0.00356525 0.00311114 0.247992 0.216222 72 28669 40 1.29336e+07 5.8273e+06 2.11301e+06 4365.72 8.04 1.65777 1.46865 23192 18 8656 15543 1732394 373866 4.27196 4.27196 -3048.84 -4.27196 0 0 2.64603e+06 5467.00 0.86 0.50 0.226436 0.205749 1281 1927 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_30.v common 16.95 vpr 78.61 MiB 0.11 15296 -1 -1 8 1.44 -1 -1 41568 -1 -1 170 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80496 22 19 3767 3531 1 2168 220 22 22 484 mult_36 auto 41.2 MiB 0.90 15261 78.6 MiB 0.63 0.01 4.02136 -2631.95 -4.02136 4.02136 1.23 0.00499191 0.0044698 0.291074 0.255795 74 27791 40 1.29336e+07 5.85424e+06 2.15943e+06 4461.62 7.05 1.57601 1.39781 23631 15 8793 15689 1676395 352349 4.39726 4.39726 -3029.79 -4.39726 0 0 2.68771e+06 5553.12 0.80 0.70 0.336939 0.307528 1309 1966 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_31.v common 16.87 vpr 79.23 MiB 0.11 15664 -1 -1 8 1.27 -1 -1 41788 -1 -1 177 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81132 22 19 3928 3675 1 2252 227 22 22 484 mult_36 auto 42.0 MiB 0.89 15188 79.2 MiB 0.65 0.01 4.02136 -2714.62 -4.02136 4.02136 1.29 0.00410026 0.00361151 0.298911 0.261583 70 27727 30 1.29336e+07 5.94854e+06 2.06816e+06 4273.05 7.72 1.59476 1.41516 24543 19 9384 16693 1867406 395751 4.39726 4.39726 -3140.24 -4.39726 0 0 2.60483e+06 5381.88 0.78 0.55 0.254028 0.232208 1363 2041 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_32.v common 22.54 vpr 79.34 MiB 0.16 16040 -1 -1 8 1.66 -1 -1 40104 -1 -1 181 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81244 22 19 3986 3733 1 2287 231 22 22 484 mult_36 auto 42.4 MiB 1.10 17095 79.3 MiB 0.62 0.01 4.02136 -2746.04 -4.02136 4.02136 1.34 0.00418161 0.00367024 0.288987 0.253838 74 32382 42 1.29336e+07 6.00243e+06 2.15943e+06 4461.62 12.09 1.80512 1.59944 26543 15 9789 17713 2195810 449549 4.52256 4.52256 -3228.82 -4.52256 0 0 2.68771e+06 5553.12 0.80 0.74 0.332767 0.304279 1391 2080 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_33.v common 22.69 vpr 80.99 MiB 0.19 17040 -1 -1 8 1.49 -1 -1 42184 -1 -1 192 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82936 22 19 4329 4059 1 2422 243 22 22 484 mult_36 auto 44.1 MiB 0.97 17787 81.0 MiB 1.23 0.02 4.14666 -2972.64 -4.14666 4.14666 1.45 0.00953025 0.00862321 0.674122 0.608668 72 34663 44 1.29336e+07 6.54662e+06 2.11301e+06 4365.72 11.88 2.41682 2.16009 27820 29 10134 17821 2561764 658104 4.52256 4.52256 -3547.8 -4.52256 0 0 2.64603e+06 5467.00 0.77 1.03 0.4879 0.441879 1494 2246 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_34.v common 21.20 vpr 81.60 MiB 0.13 16988 -1 -1 8 1.79 -1 -1 42636 -1 -1 198 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83556 22 19 4387 4117 1 2459 249 22 22 484 mult_36 auto 44.6 MiB 0.90 18367 81.6 MiB 0.77 0.01 4.14666 -2974.88 -4.14666 4.14666 1.19 0.00480759 0.00424647 0.360205 0.316216 74 33827 42 1.29336e+07 6.62746e+06 2.15943e+06 4461.62 11.16 2.71107 2.42601 28115 15 9968 17924 2020129 417722 4.52256 4.52256 -3612.57 -4.52256 0 0 2.68771e+06 5553.12 0.81 0.58 0.258091 0.236578 1521 2285 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_35.v common 21.98 vpr 82.34 MiB 0.17 17348 -1 -1 8 1.65 -1 -1 42644 -1 -1 208 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84320 22 19 4547 4260 1 2575 259 22 22 484 mult_36 auto 45.2 MiB 1.52 18388 82.3 MiB 0.74 0.01 4.02136 -3041.28 -4.02136 4.02136 1.39 0.00489653 0.00429158 0.337308 0.295102 76 33735 38 1.29336e+07 6.76218e+06 2.20457e+06 4554.90 9.41 1.93459 1.71586 28514 30 10551 18958 2826248 683640 4.52256 4.52256 -3765.24 -4.52256 0 0 2.73077e+06 5642.09 1.06 1.02 0.473905 0.43093 1571 2360 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_36.v common 28.05 vpr 82.81 MiB 0.20 17504 -1 -1 8 1.80 -1 -1 43024 -1 -1 210 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84800 22 19 4605 4318 1 2609 261 22 22 484 mult_36 auto 45.9 MiB 0.98 20084 82.8 MiB 0.82 0.01 4.02136 -3165.49 -4.02136 4.02136 1.19 0.00502827 0.00440938 0.379216 0.331359 78 35023 34 1.29336e+07 6.78912e+06 2.25108e+06 4650.99 17.22 2.64581 2.34088 29873 16 10630 19109 2258762 462926 4.39726 4.39726 -3816.13 -4.39726 0 0 2.82299e+06 5832.63 0.95 0.65 0.283528 0.259661 1597 2399 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_37.v common 27.66 vpr 83.63 MiB 0.22 17980 -1 -1 8 1.78 -1 -1 43172 -1 -1 218 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85640 22 19 4802 4498 1 2726 270 24 24 576 mult_36 auto 47.2 MiB 1.03 21239 83.6 MiB 1.11 0.02 4.39726 -3461.54 -4.39726 4.39726 1.52 0.0109337 0.00968274 0.558735 0.496489 82 36348 28 1.56141e+07 7.2929e+06 2.78508e+06 4835.20 15.92 3.73162 3.33778 31044 16 10370 18379 2455391 492777 4.64786 4.64786 -4022.26 -4.64786 0 0 3.48632e+06 6052.64 1.13 0.69 0.303541 0.278908 1661 2492 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_38.v common 28.73 vpr 84.12 MiB 0.22 18112 -1 -1 8 2.35 -1 -1 43332 -1 -1 221 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 86140 22 19 4860 4556 1 2764 273 24 24 576 mult_36 auto 47.6 MiB 1.00 19983 84.1 MiB 1.55 0.02 4.39726 -3547.62 -4.39726 4.39726 1.93 0.0114032 0.0102192 0.791546 0.702968 74 38222 49 1.56141e+07 7.33331e+06 2.56259e+06 4448.94 15.41 2.95518 2.63118 31295 16 11347 20331 2412336 490421 4.64786 4.64786 -4293.67 -4.64786 0 0 3.19068e+06 5539.38 0.97 0.72 0.330518 0.3049 1689 2531 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_39.v common 27.39 vpr 86.74 MiB 0.15 18500 -1 -1 8 2.08 -1 -1 41960 -1 -1 226 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88824 22 19 5019 4698 1 2868 278 24 24 576 mult_36 auto 48.2 MiB 1.65 21919 84.6 MiB 0.97 0.01 4.14666 -3598.32 -4.14666 4.14666 1.48 0.00549993 0.00483242 0.448809 0.394462 84 36904 23 1.56141e+07 7.40067e+06 2.84938e+06 4946.85 14.32 2.77162 2.46148 31430 14 10595 19468 2341160 484360 4.52256 4.52256 -4203.06 -4.52256 0 0 3.60864e+06 6265.01 1.09 0.70 0.304581 0.280261 1735 2606 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_40.v common 26.60 vpr 84.84 MiB 0.22 18692 -1 -1 8 2.31 -1 -1 43452 -1 -1 230 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 86880 22 19 5077 4756 1 2904 282 24 24 576 mult_36 auto 48.4 MiB 1.11 21627 84.8 MiB 1.07 0.01 4.27196 -3684.79 -4.27196 4.27196 1.56 0.0057535 0.00508783 0.500194 0.439499 78 37079 29 1.56141e+07 7.45456e+06 2.67122e+06 4637.53 13.82 2.99111 2.65404 32428 14 11423 20552 2411064 497894 4.52256 4.52256 -4188.93 -4.52256 0 0 3.35110e+06 5817.88 1.06 0.74 0.350496 0.323756 1765 2645 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_41.v common 25.89 vpr 86.19 MiB 0.15 19196 -1 -1 8 2.41 -1 -1 44060 -1 -1 239 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88260 22 19 5308 4970 1 3021 292 24 24 576 mult_36 auto 49.7 MiB 1.30 21819 86.2 MiB 1.04 0.01 4.14666 -3895.54 -4.14666 4.14666 1.58 0.00628623 0.00559996 0.485734 0.427685 76 39716 43 1.56141e+07 7.97181e+06 2.61600e+06 4541.67 12.60 2.601 2.3088 32816 15 12074 22267 2380931 503407 4.39726 4.39726 -4578.72 -4.39726 0 0 3.24203e+06 5628.53 1.11 0.75 0.343246 0.314984 1838 2756 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_42.v common 23.62 vpr 86.59 MiB 0.23 19356 -1 -1 8 2.58 -1 -1 44116 -1 -1 242 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88668 22 19 5366 5028 1 3055 295 24 24 576 mult_36 auto 50.3 MiB 1.21 22223 86.6 MiB 1.02 0.01 4.27196 -3816.17 -4.27196 4.27196 1.53 0.00619329 0.00549894 0.460448 0.403942 76 39708 30 1.56141e+07 8.01222e+06 2.61600e+06 4541.67 10.96 3.21848 2.87571 33824 16 12282 22462 2624388 547668 4.52256 4.52256 -4349.14 -4.52256 0 0 3.24203e+06 5628.53 1.02 0.77 0.35147 0.322572 1862 2795 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_43.v common 28.90 vpr 90.57 MiB 0.16 19912 -1 -1 8 2.94 -1 -1 42964 -1 -1 255 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92744 22 19 5524 5169 1 3162 308 24 24 576 mult_36 auto 51.2 MiB 1.41 24468 87.7 MiB 1.07 0.01 4.39726 -4067.28 -4.39726 4.39726 1.54 0.00641718 0.00568838 0.492727 0.434304 86 39715 22 1.56141e+07 8.18736e+06 2.91907e+06 5067.82 14.20 3.63094 3.23027 35149 15 11914 21669 2418921 489786 4.77316 4.77316 -4792.37 -4.77316 0 0 3.65856e+06 6351.67 1.13 0.76 0.389549 0.357954 1916 2870 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_44.v common 31.99 vpr 88.25 MiB 0.17 19884 -1 -1 8 2.62 -1 -1 45084 -1 -1 254 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 90364 22 19 5582 5227 1 3204 307 24 24 576 mult_36 auto 51.8 MiB 1.24 22983 88.2 MiB 1.15 0.02 4.27196 -4093.75 -4.27196 4.27196 1.76 0.00672008 0.00597483 0.533374 0.471848 80 39437 34 1.56141e+07 8.17389e+06 2.72095e+06 4723.87 18.46 3.54393 3.15481 34438 18 12076 22258 2309647 480300 4.52256 4.52256 -4627.5 -4.52256 0 0 3.41546e+06 5929.62 1.09 0.80 0.418221 0.382549 1945 2909 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_45.v common 30.35 vpr 89.25 MiB 0.19 20376 -1 -1 8 2.36 -1 -1 45548 -1 -1 262 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 91388 22 19 5779 5407 1 3306 316 24 24 576 mult_36 auto 52.7 MiB 1.46 24442 89.2 MiB 1.12 0.02 4.39726 -4158.63 -4.39726 4.39726 1.68 0.00672308 0.00592985 0.499975 0.439291 80 39609 22 1.56141e+07 8.67766e+06 2.72095e+06 4723.87 16.65 3.35125 2.98375 36120 15 12661 23680 2531830 524039 4.52256 4.52256 -4797.11 -4.52256 0 0 3.41546e+06 5929.62 1.17 0.82 0.41162 0.38024 2012 3002 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_46.v common 30.77 vpr 89.21 MiB 0.25 20456 -1 -1 8 3.04 -1 -1 45328 -1 -1 267 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 91348 22 19 5837 5465 1 3341 321 24 24 576 mult_36 auto 52.7 MiB 1.26 24221 89.2 MiB 1.34 0.02 4.27196 -4231.84 -4.27196 4.27196 1.79 0.00695271 0.00620991 0.662464 0.596013 80 39854 38 1.56141e+07 8.74502e+06 2.72095e+06 4723.87 16.27 4.18762 3.73142 35928 14 12714 22919 2468708 522073 4.52256 4.52256 -4786.82 -4.52256 0 0 3.41546e+06 5929.62 1.04 0.77 0.390712 0.359892 2043 3041 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_47.v common 36.50 vpr 90.68 MiB 0.29 20848 -1 -1 8 2.50 -1 -1 45008 -1 -1 275 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92852 22 19 5997 5608 1 3446 329 24 24 576 mult_36 auto 53.6 MiB 1.31 25121 90.7 MiB 1.15 0.02 4.14666 -4339.53 -4.14666 4.14666 1.45 0.00691851 0.00598453 0.507487 0.443008 80 42003 31 1.56141e+07 8.8528e+06 2.72095e+06 4723.87 22.79 4.60837 4.1099 37073 16 13330 24369 2738267 571946 4.52256 4.52256 -4998.31 -4.52256 0 0 3.41546e+06 5929.62 1.06 0.85 0.409772 0.375345 2100 3116 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_48.v common 42.52 vpr 91.05 MiB 0.18 21032 -1 -1 8 3.24 -1 -1 46020 -1 -1 279 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 93236 22 19 6055 5666 1 3477 333 24 24 576 mult_36 auto 54.0 MiB 1.43 26469 91.1 MiB 1.31 0.02 4.27196 -4527.5 -4.27196 4.27196 1.56 0.00722518 0.00640734 0.602894 0.533353 82 46770 41 1.56141e+07 8.90669e+06 2.78508e+06 4835.20 27.20 4.13663 3.67958 38587 15 13412 24369 2648071 544201 4.52256 4.52256 -5087.29 -4.52256 0 0 3.48632e+06 6052.64 1.07 0.85 0.403518 0.36921 2126 3155 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_49.v common 44.84 vpr 92.51 MiB 0.23 21588 -1 -1 8 2.96 -1 -1 46508 -1 -1 285 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 94728 22 19 6324 5918 1 3577 340 24 24 576 mult_36 auto 55.6 MiB 1.35 26256 92.5 MiB 1.52 0.02 4.27196 -4614.84 -4.27196 4.27196 1.85 0.00777458 0.00692273 0.73935 0.658633 78 45989 39 1.56141e+07 9.38352e+06 2.67122e+06 4637.53 29.28 4.20775 3.74795 39473 14 13651 25000 2922583 613956 4.64786 4.64786 -5358.44 -4.64786 0 0 3.35110e+06 5817.88 1.12 1.17 0.531994 0.49005 2206 3284 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_50.v common 35.30 vpr 92.52 MiB 0.19 21660 -1 -1 8 3.67 -1 -1 47140 -1 -1 292 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 94744 22 19 6382 5976 1 3610 347 24 24 576 mult_36 auto 55.7 MiB 1.41 28392 92.5 MiB 1.22 0.02 4.39726 -4603.19 -4.39726 4.39726 1.58 0.00742458 0.00658686 0.547646 0.481701 84 47328 48 1.56141e+07 9.47782e+06 2.84938e+06 4946.85 20.08 4.18685 3.73191 39938 15 13329 25070 2711455 552800 4.64786 4.64786 -5497.54 -4.64786 0 0 3.60864e+06 6265.01 1.08 0.86 0.417857 0.383679 2235 3323 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_51.v common 33.99 vpr 96.83 MiB 0.23 22168 -1 -1 8 3.25 -1 -1 47244 -1 -1 297 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 99152 22 19 6542 6119 1 3736 352 24 24 576 mult_36 auto 56.7 MiB 1.59 28246 93.3 MiB 2.16 0.03 4.27196 -4766.97 -4.27196 4.27196 1.91 0.0161899 0.014591 1.03584 0.91709 86 44879 33 1.56141e+07 9.54518e+06 2.91907e+06 5067.82 17.45 5.23737 4.67334 40669 18 13841 25294 2736577 574784 4.39726 4.39726 -5388 -4.39726 0 0 3.65856e+06 6351.67 1.23 0.92 0.481292 0.441611 2287 3398 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_pipe_52.v common 29.99 vpr 97.70 MiB 0.28 22284 -1 -1 8 3.56 -1 -1 47616 -1 -1 301 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 100048 22 19 6600 6177 1 3777 356 24 24 576 mult_36 auto 57.1 MiB 1.86 28705 93.9 MiB 1.33 0.02 4.27196 -4771.22 -4.27196 4.27196 1.41 0.00748856 0.00663945 0.586558 0.514426 88 44454 30 1.56141e+07 9.59907e+06 2.98162e+06 5176.42 14.06 4.00537 3.56469 41252 15 13719 25160 3017924 617670 4.64786 4.64786 -5460.56 -4.64786 0 0 3.70823e+06 6437.90 1.17 0.92 0.430798 0.39558 2318 3437 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_14.v common 15.49 vpr 64.80 MiB 0.06 9032 -1 -1 10 0.63 -1 -1 35248 -1 -1 57 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66360 22 19 1149 1049 1 785 102 16 16 256 mult_36 auto 27.0 MiB 0.40 5318 64.8 MiB 0.21 0.00 12.2353 -371.405 -12.2353 12.2353 0.80 0.00228823 0.00203121 0.107789 0.0962022 58 11887 46 6.45408e+06 2.3519e+06 871168. 3403.00 10.09 0.618348 0.557158 10214 37 5283 10272 1664373 444275 13.1873 13.1873 -466.7 -13.1873 0 0 1.09288e+06 4269.05 0.41 0.66 0.216428 0.198259 433 658 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_15.v common 9.86 vpr 65.27 MiB 0.07 9352 -1 -1 11 0.62 -1 -1 35292 -1 -1 63 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66840 22 19 1261 1144 1 857 109 16 16 256 mult_36 auto 27.6 MiB 0.26 5527 65.3 MiB 0.13 0.00 12.5175 -406.232 -12.5175 12.5175 0.50 0.00107917 0.000940964 0.0547373 0.0477131 64 11785 32 6.45408e+06 2.82874e+06 943753. 3686.54 5.55 0.540043 0.485585 9906 20 5065 9940 1131826 251743 13.2266 13.2266 -559.18 -13.2266 0 0 1.19033e+06 4649.74 0.43 0.42 0.151001 0.139402 471 727 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_16.v common 9.56 vpr 66.18 MiB 0.07 9504 -1 -1 11 0.69 -1 -1 36024 -1 -1 70 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 67772 22 19 1336 1219 1 919 116 16 16 256 mult_36 auto 28.4 MiB 0.33 6180 66.2 MiB 0.14 0.00 13.5067 -466.726 -13.5067 13.5067 0.57 0.0011146 0.000942422 0.058744 0.0511482 64 13606 43 6.45408e+06 2.92304e+06 943753. 3686.54 5.40 0.515774 0.462029 10897 18 5451 10595 1317543 276892 13.9687 13.9687 -624.869 -13.9687 0 0 1.19033e+06 4649.74 0.27 0.38 0.100451 0.0932156 512 783 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_17.v common 8.89 vpr 66.88 MiB 0.08 9896 -1 -1 11 0.61 -1 -1 36000 -1 -1 77 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68488 22 19 1446 1312 1 981 123 16 16 256 mult_36 auto 28.9 MiB 0.45 6535 66.9 MiB 0.20 0.00 13.4492 -430.082 -13.4492 13.4492 0.50 0.00120912 0.0010462 0.0841135 0.0732895 68 12681 27 6.45408e+06 3.01734e+06 1.00038e+06 3907.74 4.67 0.858281 0.770485 11197 18 5427 10525 1072500 238750 14.1856 14.1856 -599.208 -14.1856 0 0 1.24648e+06 4869.04 0.29 0.25 0.0900091 0.0833579 558 848 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_18.v common 10.18 vpr 67.10 MiB 0.08 10140 -1 -1 11 0.56 -1 -1 35908 -1 -1 79 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68712 22 19 1507 1373 1 1020 125 16 16 256 mult_36 auto 29.2 MiB 0.48 6933 67.1 MiB 0.19 0.00 13.0468 -460.582 -13.0468 13.0468 0.52 0.00131267 0.00113532 0.0884528 0.0774822 66 14663 39 6.45408e+06 3.04429e+06 974584. 3806.97 5.24 0.684779 0.612166 12289 19 6112 12067 1342231 300975 13.5633 13.5633 -592.92 -13.5633 0 0 1.22072e+06 4768.46 0.43 0.34 0.107534 0.099427 576 890 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_19.v common 8.25 vpr 67.69 MiB 0.07 10400 -1 -1 11 0.64 -1 -1 36608 -1 -1 80 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69316 22 19 1596 1445 1 1103 127 16 16 256 mult_36 auto 30.1 MiB 0.34 7645 67.7 MiB 0.23 0.00 13.0656 -481.045 -13.0656 13.0656 0.53 0.00163318 0.00143066 0.100052 0.0876282 76 15017 25 6.45408e+06 3.45376e+06 1.09288e+06 4269.05 3.91 0.604898 0.540768 12927 20 6347 12846 1721461 373579 13.5703 13.5703 -654.925 -13.5703 0 0 1.35486e+06 5292.42 0.33 0.39 0.1141 0.105442 615 938 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_20.v common 9.82 vpr 68.17 MiB 0.09 10456 -1 -1 11 0.66 -1 -1 36192 -1 -1 86 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69804 22 19 1656 1505 1 1131 133 16 16 256 mult_36 auto 30.3 MiB 0.50 7730 68.2 MiB 0.45 0.01 12.8577 -482.542 -12.8577 12.8577 0.61 0.00336778 0.00300196 0.210781 0.185638 76 15722 50 6.45408e+06 3.53459e+06 1.09288e+06 4269.05 4.68 0.994161 0.889173 13081 19 6722 13439 1588797 339428 13.6606 13.6606 -750.405 -13.6606 0 0 1.35486e+06 5292.42 0.32 0.36 0.117703 0.10878 637 979 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_21.v common 9.13 vpr 68.43 MiB 0.11 10820 -1 -1 12 0.70 -1 -1 36608 -1 -1 91 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70072 22 19 1754 1586 1 1196 138 16 16 256 mult_36 auto 30.6 MiB 0.51 8467 68.4 MiB 0.23 0.00 13.8602 -526.112 -13.8602 13.8602 0.49 0.00166462 0.00145613 0.0997754 0.0871764 76 16371 29 6.45408e+06 3.60195e+06 1.09288e+06 4269.05 3.92 0.690803 0.617676 13855 24 6382 12486 1720133 444416 14.8626 14.8626 -738.226 -14.8626 0 0 1.35486e+06 5292.42 0.46 0.50 0.176717 0.162885 662 1035 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_22.v common 11.16 vpr 68.77 MiB 0.10 10908 -1 -1 11 0.85 -1 -1 36772 -1 -1 97 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70420 22 19 1827 1659 1 1261 144 16 16 256 mult_36 auto 31.1 MiB 0.39 8930 68.8 MiB 0.19 0.00 12.9333 -525.209 -12.9333 12.9333 0.50 0.00175612 0.00153108 0.0791928 0.0696464 74 17887 48 6.45408e+06 3.68278e+06 1.07073e+06 4182.55 6.13 0.961243 0.859451 14908 24 7767 15503 1493971 329957 13.4737 13.4737 -748.907 -13.4737 0 0 1.33358e+06 5209.30 0.31 0.36 0.140178 0.128642 708 1089 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_23.v common 10.17 vpr 69.31 MiB 0.11 11320 -1 -1 12 0.86 -1 -1 36568 -1 -1 97 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70976 22 19 1905 1720 1 1293 145 18 18 324 mult_36 auto 31.7 MiB 0.40 9182 69.3 MiB 0.28 0.00 14.6043 -581.827 -14.6043 14.6043 0.70 0.00185494 0.00162787 0.127406 0.111991 74 17588 22 7.94662e+06 4.07878e+06 1.40368e+06 4332.34 4.47 0.798449 0.712871 15478 22 7212 14370 1755476 368190 15.5787 15.5787 -862.5 -15.5787 0 0 1.74764e+06 5393.95 0.45 0.45 0.15216 0.139482 722 1124 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_24.v common 11.08 vpr 69.76 MiB 0.08 11328 -1 -1 12 1.03 -1 -1 36700 -1 -1 98 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71432 22 19 1979 1794 1 1336 146 18 18 324 mult_36 auto 32.1 MiB 0.46 9083 69.8 MiB 0.50 0.01 13.5088 -585.782 -13.5088 13.5088 0.70 0.00330197 0.00287916 0.243522 0.213897 70 18098 44 7.94662e+06 4.09226e+06 1.34436e+06 4149.26 4.83 1.04488 0.930539 15506 20 7866 15208 1546037 332908 14.2676 14.2676 -947.804 -14.2676 0 0 1.69344e+06 5226.66 0.52 0.46 0.177312 0.163091 739 1179 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_25.v common 11.11 vpr 70.53 MiB 0.08 11752 -1 -1 12 0.91 -1 -1 37236 -1 -1 105 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72220 22 19 2073 1871 1 1394 153 18 18 324 mult_36 auto 33.0 MiB 0.46 9672 70.5 MiB 0.33 0.01 14.1355 -586.82 -14.1355 14.1355 0.68 0.00207787 0.00182995 0.153979 0.135895 74 18431 29 7.94662e+06 4.18656e+06 1.40368e+06 4332.34 5.38 0.879321 0.785761 16256 18 7714 15004 2147088 434575 15.0987 15.0987 -855.406 -15.0987 0 0 1.74764e+06 5393.95 0.48 0.45 0.135642 0.124889 791 1232 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_26.v common 15.46 vpr 71.00 MiB 0.12 11824 -1 -1 12 1.28 -1 -1 37504 -1 -1 106 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72704 22 19 2130 1928 1 1451 154 18 18 324 mult_36 auto 33.6 MiB 0.44 10096 71.0 MiB 0.40 0.00 13.3555 -623.125 -13.3555 13.3555 0.69 0.00211597 0.00186749 0.19399 0.171495 68 21587 48 7.94662e+06 4.20003e+06 1.31159e+06 4048.11 9.28 1.12499 1.00375 17510 20 9074 17689 2171238 469198 14.1542 14.1542 -1162.94 -14.1542 0 0 1.63345e+06 5041.52 0.45 0.48 0.153689 0.141904 811 1270 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_27.v common 12.91 vpr 71.16 MiB 0.11 12092 -1 -1 12 1.12 -1 -1 37208 -1 -1 114 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72868 22 19 2238 2019 1 1541 163 18 18 324 mult_36 auto 33.7 MiB 0.45 10952 71.2 MiB 0.28 0.01 13.7538 -624.26 -13.7538 13.7538 0.69 0.00228495 0.00202129 0.126592 0.112276 84 19831 23 7.94662e+06 4.70381e+06 1.56068e+06 4816.91 6.47 1.08803 0.970659 17392 20 7932 15389 1871499 393948 14.7373 14.7373 -951.269 -14.7373 0 0 1.97679e+06 6101.21 0.49 0.46 0.165223 0.152361 851 1323 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_28.v common 12.83 vpr 71.54 MiB 0.10 12304 -1 -1 12 1.05 -1 -1 37164 -1 -1 117 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73256 22 19 2299 2080 1 1575 166 18 18 324 mult_36 auto 34.3 MiB 0.48 10961 71.5 MiB 0.37 0.01 14.2976 -625.478 -14.2976 14.2976 0.71 0.00235884 0.00208188 0.163111 0.143984 70 21614 49 7.94662e+06 4.74422e+06 1.34436e+06 4149.26 6.84 1.02347 0.908831 18528 18 9001 17223 2240388 472658 14.7988 14.7988 -902.273 -14.7988 0 0 1.69344e+06 5226.66 0.42 0.47 0.149372 0.137279 874 1365 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_29.v common 15.31 vpr 72.20 MiB 0.12 12532 -1 -1 12 1.15 -1 -1 37940 -1 -1 121 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73928 22 19 2400 2164 1 1649 171 22 22 484 mult_36 auto 34.7 MiB 0.49 11851 72.2 MiB 0.45 0.01 12.937 -622.359 -12.937 12.937 1.19 0.0025212 0.00221232 0.20544 0.18111 74 23098 32 1.29336e+07 5.19411e+06 2.15943e+06 4461.62 7.34 1.0241 0.912021 19718 19 9216 17774 2376797 490112 14.0254 14.0254 -1069.89 -14.0254 0 0 2.68771e+06 5553.12 0.78 0.53 0.192993 0.178938 915 1415 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_30.v common 17.28 vpr 72.80 MiB 0.10 12608 -1 -1 12 1.28 -1 -1 38144 -1 -1 127 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74544 22 19 2474 2238 1 1692 177 22 22 484 mult_36 auto 35.5 MiB 0.48 12294 72.8 MiB 0.44 0.01 12.9908 -676.255 -12.9908 12.9908 1.19 0.00241549 0.00212083 0.199039 0.17572 72 26028 43 1.29336e+07 5.27494e+06 2.11301e+06 4365.72 9.07 1.10084 0.976526 20805 20 10059 19411 2197967 457996 14.1934 14.1934 -1265.96 -14.1934 0 0 2.64603e+06 5467.00 0.91 0.58 0.192006 0.175668 947 1470 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_31.v common 18.40 vpr 73.37 MiB 0.12 12976 -1 -1 12 1.55 -1 -1 39440 -1 -1 137 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75128 22 19 2603 2350 1 1765 187 22 22 484 mult_36 auto 36.3 MiB 0.65 12473 73.4 MiB 0.49 0.01 13.4598 -637.607 -13.4598 13.4598 1.21 0.00291146 0.00258727 0.220364 0.194394 78 22397 22 1.29336e+07 5.40966e+06 2.25108e+06 4650.99 8.98 1.4505 1.28975 20202 18 9104 17977 2476747 507868 14.9634 14.9634 -1187.54 -14.9634 0 0 2.82299e+06 5832.63 1.31 0.68 0.196906 0.180172 1001 1549 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_32.v common 20.55 vpr 74.07 MiB 0.11 13084 -1 -1 12 1.41 -1 -1 39880 -1 -1 141 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75844 22 19 2694 2441 1 1849 191 22 22 484 mult_36 auto 36.8 MiB 0.81 13313 74.1 MiB 0.52 0.01 13.7315 -717.16 -13.7315 13.7315 1.23 0.0054925 0.00487718 0.239018 0.211348 80 23431 21 1.29336e+07 5.46355e+06 2.29262e+06 4736.82 11.04 1.49481 1.32887 21391 17 9812 18665 2169261 442378 14.7842 14.7842 -1322.75 -14.7842 0 0 2.87723e+06 5944.70 0.90 0.57 0.18859 0.17404 1040 1621 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_33.v common 23.19 vpr 74.53 MiB 0.15 13596 -1 -1 13 1.59 -1 -1 39648 -1 -1 140 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76316 22 19 2787 2517 1 1916 191 22 22 484 mult_36 auto 37.3 MiB 0.83 14169 74.5 MiB 0.52 0.01 13.7315 -729.704 -13.7315 13.7315 1.21 0.00323886 0.00288654 0.2323 0.205281 86 24830 46 1.29336e+07 5.84608e+06 2.45963e+06 5081.88 12.82 2.21389 1.97251 22655 21 10289 20105 2372739 485663 15.3135 15.3135 -1262.93 -15.3135 0 0 3.08119e+06 6366.09 1.16 0.60 0.21438 0.195957 1070 1664 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_34.v common 18.92 vpr 74.89 MiB 0.15 13688 -1 -1 13 1.39 -1 -1 38724 -1 -1 142 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76688 22 19 2834 2564 1 1944 193 22 22 484 mult_36 auto 37.6 MiB 0.56 13646 74.9 MiB 0.66 0.01 13.9148 -764.133 -13.9148 13.9148 1.88 0.00330306 0.00295136 0.311669 0.275197 76 26792 36 1.29336e+07 5.87302e+06 2.20457e+06 4554.90 9.41 1.68067 1.49714 22315 20 10828 20986 2324686 485909 15.1601 15.1601 -1332.39 -15.1601 0 0 2.73077e+06 5642.09 0.84 0.56 0.203404 0.186032 1084 1692 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_35.v common 20.12 vpr 75.36 MiB 0.12 13952 -1 -1 13 1.36 -1 -1 40284 -1 -1 150 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77172 22 19 2941 2654 1 2012 201 22 22 484 mult_36 auto 38.0 MiB 0.60 14449 75.4 MiB 0.63 0.01 13.567 -723.831 -13.567 13.567 1.39 0.00342155 0.00297151 0.271951 0.23888 84 26448 24 1.29336e+07 5.9808e+06 2.40101e+06 4960.76 10.73 1.71267 1.52088 22709 21 10874 21010 2416077 500478 14.9061 14.9061 -1175.99 -14.9061 0 0 3.03951e+06 6279.99 0.91 0.64 0.231763 0.211847 1131 1750 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_36.v common 20.89 vpr 75.93 MiB 0.15 14060 -1 -1 13 1.54 -1 -1 40392 -1 -1 153 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77756 22 19 3011 2724 1 2050 204 22 22 484 mult_36 auto 38.5 MiB 0.86 14817 75.9 MiB 0.53 0.01 13.7784 -793.571 -13.7784 13.7784 1.26 0.00360331 0.00321423 0.242657 0.215402 76 29792 46 1.29336e+07 6.02122e+06 2.20457e+06 4554.90 11.16 1.44817 1.28635 24445 20 11790 22903 2819416 578845 15.2777 15.2777 -1576.67 -15.2777 0 0 2.73077e+06 5642.09 0.80 0.72 0.26023 0.237844 1168 1801 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_37.v common 24.27 vpr 76.16 MiB 0.12 14376 -1 -1 13 1.64 -1 -1 39184 -1 -1 158 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77984 22 19 3132 2828 1 2123 210 24 24 576 mult_36 auto 38.9 MiB 0.77 15341 76.2 MiB 0.57 0.01 15.074 -914.84 -15.074 15.074 1.48 0.00357728 0.00317967 0.254961 0.225085 74 30862 41 1.56141e+07 6.48458e+06 2.56259e+06 4448.94 13.87 1.63825 1.45505 25192 19 11864 23079 2741187 571173 15.4423 15.4423 -1512.06 -15.4423 0 0 3.19068e+06 5539.38 0.98 0.92 0.327137 0.298731 1192 1872 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_38.v common 25.74 vpr 76.72 MiB 0.16 14528 -1 -1 13 1.82 -1 -1 39296 -1 -1 160 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78560 22 19 3159 2855 1 2172 212 24 24 576 mult_36 auto 39.5 MiB 0.95 15635 76.7 MiB 0.49 0.01 14.659 -909.261 -14.659 14.659 1.57 0.00366381 0.00325367 0.218081 0.193448 74 31247 40 1.56141e+07 6.51152e+06 2.56259e+06 4448.94 14.01 1.77608 1.58614 25778 23 11853 22704 2838167 577416 15.3247 15.3247 -1815.67 -15.3247 0 0 3.19068e+06 5539.38 1.26 0.93 0.385453 0.35058 1207 1880 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_39.v common 24.58 vpr 77.58 MiB 0.17 14800 -1 -1 13 2.15 -1 -1 41256 -1 -1 169 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79440 22 19 3284 2963 1 2259 221 24 24 576 mult_36 auto 40.4 MiB 0.78 16439 77.6 MiB 0.66 0.01 15.6718 -854.729 -15.6718 15.6718 1.47 0.00382992 0.00341027 0.291877 0.258248 74 32283 47 1.56141e+07 6.63277e+06 2.56259e+06 4448.94 13.69 2.48218 2.20949 26983 18 12093 23989 3069384 635242 16.4593 16.4593 -1579.41 -16.4593 0 0 3.19068e+06 5539.38 0.99 0.76 0.232308 0.211623 1267 1957 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_40.v common 27.72 vpr 77.77 MiB 0.16 14956 -1 -1 13 1.71 -1 -1 39712 -1 -1 169 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79640 22 19 3343 3022 1 2282 221 24 24 576 mult_36 auto 40.6 MiB 0.86 16428 77.8 MiB 0.53 0.01 14.4587 -818.737 -14.4587 14.4587 1.46 0.00389102 0.00347228 0.23856 0.211279 78 30899 36 1.56141e+07 6.63277e+06 2.67122e+06 4637.53 17.20 2.66675 2.37787 26884 20 12502 23914 3349977 696265 15.5864 15.5864 -1318.98 -15.5864 0 0 3.35110e+06 5817.88 1.07 0.77 0.252482 0.230914 1284 1997 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_41.v common 25.22 vpr 78.13 MiB 0.17 15172 -1 -1 13 1.89 -1 -1 40156 -1 -1 175 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80004 22 19 3448 3110 1 2364 228 24 24 576 mult_36 auto 40.8 MiB 0.75 17129 78.1 MiB 0.62 0.01 14.4587 -907.282 -14.4587 14.4587 1.55 0.00432724 0.00386346 0.277822 0.246045 80 29249 21 1.56141e+07 7.1096e+06 2.72095e+06 4723.87 14.17 1.90977 1.69103 26876 22 12748 24688 2800629 575976 14.8703 14.8703 -1430.3 -14.8703 0 0 3.41546e+06 5929.62 1.22 0.95 0.348733 0.316606 1333 2054 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_42.v common 27.93 vpr 78.57 MiB 0.17 15376 -1 -1 13 2.10 -1 -1 41624 -1 -1 179 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80456 22 19 3510 3172 1 2403 232 24 24 576 mult_36 auto 41.5 MiB 0.85 17222 78.6 MiB 0.67 0.01 14.5694 -889.317 -14.5694 14.5694 1.48 0.00425776 0.00380341 0.302472 0.267611 78 32080 40 1.56141e+07 7.16349e+06 2.67122e+06 4637.53 15.95 2.39227 2.12367 28001 19 13130 25288 3966413 823871 15.4073 15.4073 -1495.46 -15.4073 0 0 3.35110e+06 5817.88 1.03 1.04 0.294175 0.266624 1352 2097 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_43.v common 23.57 vpr 79.50 MiB 0.22 15612 -1 -1 13 2.04 -1 -1 41872 -1 -1 182 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81412 22 19 3598 3243 1 2469 235 24 24 576 mult_36 auto 42.1 MiB 0.78 17634 79.5 MiB 0.69 0.01 14.4433 -931.788 -14.4433 14.4433 1.51 0.00440819 0.00393517 0.307646 0.272637 76 33946 33 1.56141e+07 7.2039e+06 2.61600e+06 4541.67 12.66 2.37279 2.1246 28591 20 13636 26485 2877158 623070 14.9845 14.9845 -1564.29 -14.9845 0 0 3.24203e+06 5628.53 0.99 0.75 0.281195 0.256516 1391 2138 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_44.v common 27.53 vpr 79.79 MiB 0.19 15948 -1 -1 13 2.05 -1 -1 41696 -1 -1 189 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81704 22 19 3689 3334 1 2527 242 24 24 576 mult_36 auto 42.6 MiB 0.94 18039 79.8 MiB 0.86 0.02 14.5371 -893.936 -14.5371 14.5371 1.49 0.00818269 0.00730428 0.390317 0.345111 78 33029 31 1.56141e+07 7.29821e+06 2.67122e+06 4637.53 15.61 2.39005 2.11962 29399 19 13469 26568 3115088 642928 15.2889 15.2889 -1661.3 -15.2889 0 0 3.35110e+06 5817.88 1.13 0.81 0.28796 0.262142 1433 2210 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_45.v common 23.46 vpr 80.31 MiB 0.20 16100 -1 -1 13 2.67 -1 -1 38488 -1 -1 191 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82236 22 19 3763 3391 1 2591 245 24 24 576 mult_36 auto 43.0 MiB 0.79 18795 80.3 MiB 0.76 0.01 14.3076 -999.563 -14.3076 14.3076 1.48 0.00479286 0.00418191 0.343293 0.306337 76 36955 33 1.56141e+07 7.72115e+06 2.61600e+06 4541.67 11.59 1.76762 1.56072 30896 20 15021 29268 3549872 724876 14.9487 14.9487 -1715.66 -14.9487 0 0 3.24203e+06 5628.53 0.98 0.91 0.305502 0.277222 1453 2234 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_46.v common 30.54 vpr 80.80 MiB 0.17 16236 -1 -1 13 2.49 -1 -1 42408 -1 -1 195 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82740 22 19 3845 3473 1 2635 249 24 24 576 mult_36 auto 43.4 MiB 0.93 19203 80.8 MiB 0.77 0.01 14.4475 -1026.55 -14.4475 14.4475 1.51 0.00491035 0.00440526 0.346258 0.306552 80 34151 46 1.56141e+07 7.77504e+06 2.72095e+06 4723.87 18.69 2.92379 2.58234 30489 21 14110 27535 3162502 647736 14.8626 14.8626 -1685.55 -14.8626 0 0 3.41546e+06 5929.62 1.02 0.79 0.288951 0.263246 1482 2297 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_47.v common 26.89 vpr 81.69 MiB 0.22 16648 -1 -1 13 2.30 -1 -1 38852 -1 -1 206 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83652 22 19 3983 3594 1 2724 260 24 24 576 mult_36 auto 44.6 MiB 0.78 19462 81.7 MiB 0.73 0.01 14.4867 -1039.06 -14.4867 14.4867 1.65 0.00492348 0.00441498 0.313724 0.277832 76 39043 34 1.56141e+07 7.92323e+06 2.61600e+06 4541.67 15.39 1.90031 1.68171 31661 19 14587 28626 3645998 759501 15.3604 15.3604 -1631.69 -15.3604 0 0 3.24203e+06 5628.53 1.01 0.93 0.30501 0.277595 1559 2386 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_48.v common 32.24 vpr 81.62 MiB 0.22 16592 -1 -1 13 2.76 -1 -1 42820 -1 -1 202 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83584 22 19 4025 3636 1 2760 256 24 24 576 mult_36 auto 44.7 MiB 0.86 21290 81.6 MiB 0.74 0.01 14.6332 -1094.13 -14.6332 14.6332 1.57 0.00519236 0.00453159 0.324035 0.286479 82 40809 36 1.56141e+07 7.86934e+06 2.78508e+06 4835.20 19.59 2.68047 2.3776 34046 22 15956 31538 4008105 820634 15.5472 15.5472 -1645.47 -15.5472 0 0 3.48632e+06 6052.64 1.10 1.06 0.347503 0.314778 1547 2409 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_49.v common 34.90 vpr 82.57 MiB 0.22 17060 -1 -1 13 2.40 -1 -1 41112 -1 -1 213 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84552 22 19 4164 3758 1 2857 268 24 24 576 mult_36 auto 45.9 MiB 0.89 21756 82.6 MiB 0.84 0.01 14.7059 -1021.52 -14.7059 14.7059 1.44 0.00535596 0.00471174 0.368751 0.326615 78 40701 48 1.56141e+07 8.41354e+06 2.67122e+06 4637.53 22.74 2.72757 2.40148 34753 21 17591 34849 5185109 1072206 15.3323 15.3323 -1875.69 -15.3323 0 0 3.35110e+06 5817.88 0.97 1.18 0.335992 0.304532 1622 2498 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_50.v common 32.91 vpr 82.48 MiB 0.15 17132 -1 -1 13 2.86 -1 -1 42924 -1 -1 212 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84464 22 19 4190 3784 1 2864 267 24 24 576 mult_36 auto 45.9 MiB 0.92 21041 82.5 MiB 0.77 0.01 14.4049 -1262.34 -14.4049 14.4049 1.54 0.00532294 0.00474145 0.333807 0.296619 78 38912 29 1.56141e+07 8.40006e+06 2.67122e+06 4637.53 20.42 2.73686 2.41896 33423 20 16004 31785 3589947 726853 14.8592 14.8592 -2131.51 -14.8592 0 0 3.35110e+06 5817.88 1.02 0.90 0.325802 0.296811 1618 2505 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_51.v common 32.44 vpr 83.80 MiB 0.20 17388 -1 -1 13 3.02 -1 -1 43212 -1 -1 216 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85816 22 19 4305 3882 1 2950 271 24 24 576 mult_36 auto 46.8 MiB 0.84 21791 83.8 MiB 0.96 0.01 14.5771 -1159.28 -14.5771 14.5771 1.45 0.00556477 0.00502727 0.413023 0.367148 82 41654 30 1.56141e+07 8.45395e+06 2.78508e+06 4835.20 19.42 3.00364 2.65378 34625 20 16289 32735 3603831 753616 15.282 15.282 -1853.01 -15.282 0 0 3.48632e+06 6052.64 1.04 0.96 0.364211 0.331188 1666 2571 -1 -1 -1 -1 - k6_frac_N8_22nm.xml fir_nopipe_52.v common 29.91 vpr 83.86 MiB 0.19 17564 -1 -1 13 2.74 -1 -1 43448 -1 -1 227 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85872 22 19 4363 3940 1 3005 282 24 24 576 mult_36 auto 47.0 MiB 1.20 22653 83.9 MiB 1.06 0.02 14.6947 -1096.06 -14.6947 14.6947 1.44 0.0102343 0.0089375 0.455445 0.401643 84 41557 38 1.56141e+07 8.60214e+06 2.84938e+06 4946.85 15.85 2.72183 2.40366 34674 21 16516 31977 3880186 792166 15.3323 15.3323 -1700.43 -15.3323 0 0 3.60864e+06 6265.01 1.33 1.06 0.367991 0.33405 1697 2610 -1 -1 -1 -1 - k6_frac_ripple_N8_22nm.xml fir_pipe_14.v common 6.88 vpr 68.39 MiB 0.08 10336 -1 -1 1 0.26 -1 -1 35704 -1 -1 81 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70028 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 30.7 MiB 0.32 6039 68.4 MiB 0.22 0.00 4.02136 -1058.1 -4.02136 4.02136 0.50 0.00132824 0.00114723 0.0868564 0.0741771 56 11222 43 6.52434e+06 2.71588e+06 849745. 3319.32 3.33 0.602956 0.53149 8986 19 3945 4503 698033 180110 4.29396 4.29396 -1197.43 -4.29396 0 0 1.04740e+06 4091.43 0.26 0.18 0.0888749 0.0814468 605 649 247 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_15.v common 6.86 vpr 69.06 MiB 0.08 10752 -1 -1 1 0.29 -1 -1 36044 -1 -1 88 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70716 22 19 2144 1789 1 1119 134 16 16 256 mult_36 auto 31.5 MiB 0.34 6804 69.1 MiB 0.28 0.00 3.91806 -1200.74 -3.91806 3.91806 0.50 0.00146998 0.00125927 0.10805 0.0932664 58 12357 26 6.52434e+06 3.20969e+06 871168. 3403.00 2.92 0.657438 0.58194 10264 19 4285 4866 821136 194759 4.41926 4.41926 -1384.52 -4.41926 0 0 1.09288e+06 4269.05 0.26 0.29 0.151525 0.138147 654 704 266 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_16.v common 7.89 vpr 69.41 MiB 0.08 11012 -1 -1 1 0.31 -1 -1 36556 -1 -1 91 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71072 22 19 2218 1846 1 1161 137 16 16 256 mult_36 auto 31.6 MiB 0.54 7211 69.4 MiB 0.25 0.00 3.91806 -1206.33 -3.91806 3.91806 0.50 0.00148082 0.0012587 0.100996 0.0870462 54 15223 46 6.52434e+06 3.25161e+06 829453. 3240.05 3.74 0.677757 0.598012 11138 17 4620 5373 822690 195279 4.41926 4.41926 -1402.3 -4.41926 0 0 1.02522e+06 4004.78 0.27 0.22 0.0976318 0.0894295 683 723 285 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_17.v common 7.94 vpr 70.75 MiB 0.10 11672 -1 -1 1 0.32 -1 -1 37508 -1 -1 103 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72444 22 19 2536 2130 1 1274 149 16 16 256 mult_36 auto 33.1 MiB 0.60 7997 70.7 MiB 0.31 0.00 3.91806 -1407.39 -3.91806 3.91806 0.51 0.0020023 0.00176531 0.125283 0.10862 56 15072 26 6.52434e+06 3.4193e+06 849745. 3319.32 3.60 0.780443 0.69302 12316 20 4988 5866 910484 223973 4.54456 4.54456 -1660.48 -4.54456 0 0 1.04740e+06 4091.43 0.30 0.28 0.145858 0.132531 770 851 304 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_18.v common 8.51 vpr 71.06 MiB 0.08 11752 -1 -1 1 0.25 -1 -1 36812 -1 -1 107 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72764 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 33.6 MiB 0.44 7842 71.1 MiB 0.34 0.00 3.91806 -1376.46 -3.91806 3.91806 0.51 0.00196613 0.00170732 0.140294 0.122079 58 14876 36 6.52434e+06 3.47519e+06 871168. 3403.00 4.36 0.984101 0.873287 11856 18 5088 5887 910009 223836 4.41926 4.41926 -1680.16 -4.41926 0 0 1.09288e+06 4269.05 0.26 0.29 0.159815 0.145244 798 870 323 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_19.v common 8.04 vpr 71.77 MiB 0.12 12260 -1 -1 1 0.26 -1 -1 36584 -1 -1 113 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73496 22 19 2778 2321 1 1410 160 16 16 256 mult_36 auto 34.7 MiB 0.50 8329 71.8 MiB 0.32 0.01 3.91806 -1525.58 -3.91806 3.91806 0.67 0.00213984 0.00187108 0.131457 0.115029 58 14390 31 6.52434e+06 3.95503e+06 871168. 3403.00 3.75 0.770454 0.680346 12366 20 5190 6127 828218 201852 4.29396 4.29396 -1819.11 -4.29396 0 0 1.09288e+06 4269.05 0.26 0.26 0.129482 0.117943 846 925 342 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_20.v common 7.94 vpr 72.24 MiB 0.08 12232 -1 -1 1 0.29 -1 -1 36696 -1 -1 118 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73976 22 19 2852 2378 1 1454 165 16 16 256 mult_36 auto 34.8 MiB 0.67 9209 72.2 MiB 0.31 0.01 4.02136 -1542.89 -4.02136 4.02136 0.54 0.00395407 0.00343372 0.132907 0.116422 64 15754 32 6.52434e+06 4.0249e+06 943753. 3686.54 3.29 0.82623 0.726838 12669 16 4978 5750 764721 185118 4.41926 4.41926 -1774.83 -4.41926 0 0 1.19033e+06 4649.74 0.40 0.23 0.118203 0.107948 875 944 361 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_21.v common 9.30 vpr 72.91 MiB 0.09 13016 -1 -1 1 0.37 -1 -1 38452 -1 -1 122 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74656 22 19 3057 2549 1 1559 169 16 16 256 mult_36 auto 35.8 MiB 0.55 9965 72.9 MiB 0.41 0.01 4.04336 -1685.93 -4.04336 4.04336 0.49 0.0023297 0.00203999 0.158025 0.137899 64 17330 49 6.52434e+06 4.0808e+06 943753. 3686.54 4.47 1.11126 0.980666 13729 17 5618 6851 963497 239100 4.41926 4.41926 -1921.7 -4.41926 0 0 1.19033e+06 4649.74 0.27 0.30 0.162888 0.148273 932 1017 380 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_22.v common 8.83 vpr 73.81 MiB 0.09 13160 -1 -1 1 0.34 -1 -1 37492 -1 -1 125 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75580 22 19 3131 2606 1 1599 172 16 16 256 mult_36 auto 36.7 MiB 0.42 10046 73.8 MiB 0.65 0.01 3.91806 -1729.57 -3.91806 3.91806 0.50 0.00437667 0.00382934 0.26836 0.236737 64 16472 28 6.52434e+06 4.12272e+06 943753. 3686.54 3.95 1.12475 0.992935 13962 18 5750 6939 1008402 241672 4.39726 4.39726 -2067.34 -4.39726 0 0 1.19033e+06 4649.74 0.27 0.28 0.134075 0.121874 961 1036 399 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_23.v common 11.16 vpr 74.38 MiB 0.12 13204 -1 -1 1 0.32 -1 -1 38108 -1 -1 133 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76160 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 37.3 MiB 0.55 10575 74.4 MiB 0.42 0.01 3.91806 -1820.04 -3.91806 3.91806 0.68 0.00247247 0.00215875 0.171456 0.150003 58 20056 37 8.04299e+06 4.63052e+06 1.14310e+06 3528.09 6.11 1.03337 0.910528 15892 18 6762 8068 1191415 277162 4.41926 4.41926 -2180.27 -4.41926 0 0 1.43297e+06 4422.75 0.35 0.36 0.158371 0.143668 1012 1091 418 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_24.v common 12.20 vpr 74.95 MiB 0.11 13448 -1 -1 1 0.34 -1 -1 37400 -1 -1 137 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76748 22 19 3375 2799 1 1743 185 18 18 324 mult_36 auto 37.8 MiB 0.69 10090 74.9 MiB 0.46 0.01 3.79276 -1894.04 -3.79276 3.79276 0.68 0.00261491 0.0022951 0.182249 0.159843 58 20271 43 8.04299e+06 4.68641e+06 1.14310e+06 3528.09 6.62 1.26895 1.12238 15346 20 6607 7584 1134982 263467 4.29396 4.29396 -2247.05 -4.29396 0 0 1.43297e+06 4422.75 0.36 0.40 0.197923 0.180222 1041 1110 437 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_25.v common 10.02 vpr 75.66 MiB 0.11 13796 -1 -1 1 0.45 -1 -1 38104 -1 -1 146 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77480 22 19 3615 3005 1 1847 194 18 18 324 mult_36 auto 38.6 MiB 0.73 11743 75.7 MiB 0.55 0.01 4.04336 -2019.74 -4.04336 4.04336 0.73 0.00312347 0.0027423 0.223728 0.196766 62 20492 32 8.04299e+06 4.81218e+06 1.20291e+06 3712.69 4.17 1.11325 0.982196 16197 17 6567 7500 1133216 266121 4.39726 4.39726 -2286.56 -4.39726 0 0 1.49010e+06 4599.06 0.36 0.34 0.161207 0.146838 1107 1201 456 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_26.v common 11.17 vpr 76.09 MiB 0.13 14084 -1 -1 1 0.51 -1 -1 38196 -1 -1 148 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77916 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 39.0 MiB 0.71 11533 76.1 MiB 0.46 0.01 3.91806 -2031.9 -3.91806 3.91806 0.69 0.0028755 0.00251607 0.181712 0.159443 62 22394 42 8.04299e+06 4.84013e+06 1.20291e+06 3712.69 5.30 1.32381 1.16992 16551 18 7059 8091 1281883 296195 4.41926 4.41926 -2363.24 -4.41926 0 0 1.49010e+06 4599.06 0.41 0.37 0.174213 0.158385 1135 1220 475 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_27.v common 11.05 vpr 77.23 MiB 0.09 14368 -1 -1 1 0.42 -1 -1 38052 -1 -1 156 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79084 22 19 3871 3210 1 1998 205 18 18 324 mult_36 auto 40.2 MiB 0.68 12575 77.2 MiB 0.50 0.01 3.91806 -2130.73 -3.91806 3.91806 0.71 0.00329311 0.00290651 0.20615 0.181642 64 21677 40 8.04299e+06 5.34793e+06 1.23838e+06 3822.15 5.23 1.4659 1.30082 17761 18 6950 8164 1119760 267433 4.39726 4.39726 -2494.62 -4.39726 0 0 1.56068e+06 4816.91 0.39 0.42 0.221824 0.203871 1191 1275 494 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_28.v common 11.87 vpr 77.64 MiB 0.11 14508 -1 -1 1 0.53 -1 -1 38156 -1 -1 160 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79508 22 19 3945 3267 1 2043 209 18 18 324 mult_36 auto 40.4 MiB 0.69 13318 77.6 MiB 0.68 0.01 4.16866 -2231.75 -4.16866 4.16866 0.73 0.0031882 0.0028034 0.268548 0.236769 64 22503 28 8.04299e+06 5.40382e+06 1.23838e+06 3822.15 5.70 1.25976 1.11154 18833 17 7319 8533 1269442 285888 4.54456 4.54456 -2560.28 -4.54456 0 0 1.56068e+06 4816.91 0.38 0.41 0.191997 0.174909 1219 1294 513 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_29.v common 15.24 vpr 78.75 MiB 0.10 14900 -1 -1 1 0.44 -1 -1 38836 -1 -1 170 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80644 22 19 4159 3447 1 2157 220 22 22 484 mult_36 auto 41.6 MiB 0.70 13492 78.8 MiB 0.70 0.01 3.79276 -2298.7 -3.79276 3.79276 1.19 0.00353042 0.00312941 0.278024 0.242983 56 26481 33 1.30842e+07 5.93957e+06 1.71605e+06 3545.56 8.14 1.4063 1.23563 21270 18 8739 10354 1723725 393548 4.41926 4.41926 -2829.3 -4.41926 0 0 2.11301e+06 4365.72 0.53 0.45 0.189921 0.171739 1283 1367 532 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_30.v common 16.17 vpr 78.72 MiB 0.17 15084 -1 -1 1 0.53 -1 -1 39468 -1 -1 173 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80608 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 41.7 MiB 0.73 14302 78.7 MiB 0.59 0.01 3.91806 -2298.21 -3.91806 3.91806 1.20 0.00357162 0.00314254 0.231558 0.203423 58 26692 42 1.30842e+07 5.98149e+06 1.75961e+06 3635.55 8.23 1.44655 1.27112 21641 20 8759 10266 1738808 383006 4.41926 4.41926 -2973.12 -4.41926 0 0 2.20457e+06 4554.90 0.67 0.55 0.23719 0.215349 1311 1386 551 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_31.v common 17.73 vpr 80.08 MiB 0.12 15436 -1 -1 1 0.52 -1 -1 40320 -1 -1 179 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82004 22 19 4410 3647 1 2304 229 22 22 484 mult_36 auto 43.0 MiB 0.87 14482 80.1 MiB 0.74 0.01 3.79276 -2376.8 -3.79276 3.79276 1.28 0.00366131 0.00321513 0.301769 0.265963 58 26664 45 1.30842e+07 6.06533e+06 1.75961e+06 3635.55 9.29 1.52568 1.34223 21235 20 8545 9831 1783870 407037 4.39726 4.39726 -2872.3 -4.39726 0 0 2.20457e+06 4554.90 0.61 0.50 0.228402 0.207469 1363 1441 570 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_32.v common 21.55 vpr 80.22 MiB 0.15 15624 -1 -1 1 0.66 -1 -1 39184 -1 -1 183 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82144 22 19 4484 3704 1 2346 233 22 22 484 mult_36 auto 43.2 MiB 0.87 15953 80.2 MiB 0.87 0.01 3.91806 -2389.93 -3.91806 3.91806 1.31 0.003765 0.00330445 0.342871 0.303778 58 30827 36 1.30842e+07 6.12123e+06 1.75961e+06 3635.55 12.31 1.59336 1.40342 23544 19 9513 11308 2019581 441824 4.52256 4.52256 -3068.24 -4.52256 0 0 2.20457e+06 4554.90 0.94 0.55 0.241662 0.220833 1393 1460 589 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_33.v common 15.64 vpr 81.18 MiB 0.14 16504 -1 -1 1 0.64 -1 -1 41048 -1 -1 196 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83132 22 19 4843 4029 1 2462 247 22 22 484 mult_36 auto 44.4 MiB 0.77 17535 81.2 MiB 0.90 0.01 3.91806 -2844.17 -3.91806 3.91806 1.23 0.00545562 0.00490982 0.390775 0.350039 64 30007 37 1.30842e+07 6.6989e+06 1.90554e+06 3937.06 7.32 1.76536 1.56487 24070 19 9046 10378 1815779 389096 4.39726 4.39726 -3244.22 -4.39726 0 0 2.40101e+06 4960.76 0.68 0.60 0.301782 0.273629 1490 1606 608 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_34.v common 16.44 vpr 81.97 MiB 0.18 16672 -1 -1 1 0.54 -1 -1 40964 -1 -1 199 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 83940 22 19 4917 4086 1 2503 250 22 22 484 mult_36 auto 45.2 MiB 0.75 16149 82.0 MiB 0.85 0.01 3.91806 -2605.87 -3.91806 3.91806 1.29 0.00443471 0.00394615 0.328179 0.289919 60 28786 30 1.30842e+07 6.74082e+06 1.79840e+06 3715.71 8.01 1.72573 1.52158 23453 19 9352 10675 1889097 418839 4.39726 4.39726 -3104.65 -4.39726 0 0 2.25108e+06 4650.99 0.65 0.56 0.271174 0.247972 1519 1625 627 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_35.v common 19.38 vpr 82.65 MiB 0.14 17036 -1 -1 1 0.60 -1 -1 41340 -1 -1 207 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84632 22 19 5093 4228 1 2606 258 22 22 484 mult_36 auto 45.7 MiB 1.15 17586 82.6 MiB 0.88 0.01 3.91806 -2777.42 -3.91806 3.91806 1.60 0.00466016 0.00410991 0.342838 0.301877 62 33369 50 1.30842e+07 6.85261e+06 1.85176e+06 3825.95 9.60 2.12989 1.88221 24961 17 9759 11727 1759153 388553 4.54456 4.54456 -3512.4 -4.54456 0 0 2.29262e+06 4736.82 0.62 0.51 0.242126 0.219468 1572 1680 646 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_36.v common 20.88 vpr 83.02 MiB 0.20 17244 -1 -1 1 0.62 -1 -1 41404 -1 -1 209 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85012 22 19 5167 4285 1 2653 260 22 22 484 mult_36 auto 46.3 MiB 1.13 18943 83.0 MiB 1.61 0.02 4.04336 -2801.67 -4.04336 4.04336 1.75 0.0104802 0.00946792 0.759752 0.691131 66 34636 40 1.30842e+07 6.88056e+06 1.96511e+06 4060.15 10.01 2.54654 2.26828 26427 18 10065 12031 2070953 441777 4.64786 4.64786 -3382.54 -4.64786 0 0 2.45963e+06 5081.88 0.66 0.59 0.248845 0.225555 1600 1699 665 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_37.v common 20.39 vpr 84.14 MiB 0.18 17692 -1 -1 1 0.58 -1 -1 40232 -1 -1 218 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 86160 22 19 5380 4464 1 2755 270 24 24 576 mult_36 auto 47.5 MiB 0.93 18983 84.1 MiB 0.98 0.01 4.04336 -3122.57 -4.04336 4.04336 1.48 0.00471324 0.00418258 0.378718 0.333453 60 33406 35 1.57908e+07 7.40233e+06 2.13333e+06 3703.69 10.94 1.89793 1.67051 26970 18 10359 11905 1955561 440160 4.54456 4.54456 -3609.9 -4.54456 0 0 2.67122e+06 4637.53 0.81 0.63 0.304149 0.277517 1662 1772 684 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_38.v common 19.46 vpr 84.43 MiB 0.20 17804 -1 -1 1 0.69 -1 -1 42136 -1 -1 220 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 86456 22 19 5454 4521 1 2802 272 24 24 576 mult_36 auto 47.7 MiB 0.83 18582 84.4 MiB 0.95 0.01 4.04336 -3161.12 -4.04336 4.04336 1.47 0.00475633 0.00419824 0.363269 0.320311 62 34745 45 1.57908e+07 7.43028e+06 2.19658e+06 3813.51 9.79 2.24876 1.99152 26525 18 10324 11988 2001414 441541 4.41926 4.41926 -3606.03 -4.41926 0 0 2.72095e+06 4723.87 0.85 0.59 0.283375 0.25711 1690 1791 703 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_39.v common 19.96 vpr 85.34 MiB 0.21 18364 -1 -1 1 0.59 -1 -1 42112 -1 -1 228 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 87388 22 19 5629 4662 1 2909 280 24 24 576 mult_36 auto 49.0 MiB 1.19 18464 85.3 MiB 0.77 0.01 4.16866 -3159.53 -4.16866 4.16866 1.51 0.00503401 0.0044618 0.298725 0.263791 68 31558 28 1.57908e+07 7.54207e+06 2.39371e+06 4155.74 8.96 1.95958 1.73539 25668 17 9757 11479 1725467 388189 4.54456 4.54456 -3579.07 -4.54456 0 0 2.98162e+06 5176.42 1.30 0.82 0.413376 0.376912 1742 1846 722 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_40.v common 20.51 vpr 85.52 MiB 0.17 18232 -1 -1 1 0.73 -1 -1 42184 -1 -1 232 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 87568 22 19 5703 4719 1 2951 284 24 24 576 mult_36 auto 49.3 MiB 1.03 21989 85.5 MiB 1.05 0.01 4.29396 -3376.99 -4.29396 4.29396 1.56 0.00504851 0.00448685 0.38596 0.339786 66 37454 39 1.57908e+07 7.59797e+06 2.33135e+06 4047.49 9.82 2.0738 1.83048 30211 16 10486 12570 2023855 431513 4.79516 4.79516 -3929.15 -4.79516 0 0 2.91907e+06 5067.82 1.08 0.61 0.281871 0.256563 1771 1865 741 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_41.v common 21.63 vpr 86.71 MiB 0.16 18888 -1 -1 1 0.74 -1 -1 42832 -1 -1 240 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88796 22 19 5950 4932 1 3065 293 24 24 576 mult_36 auto 50.6 MiB 0.90 20711 86.7 MiB 1.03 0.01 4.04336 -3387.96 -4.04336 4.04336 1.53 0.0052662 0.00465562 0.391923 0.34448 64 34749 33 1.57908e+07 8.10576e+06 2.26035e+06 3924.22 11.53 2.31686 2.04653 28698 21 10661 12870 1860012 423937 4.41926 4.41926 -3901.44 -4.41926 0 0 2.84938e+06 4946.85 0.85 0.79 0.444986 0.40318 1841 1956 760 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_42.v common 19.62 vpr 86.64 MiB 0.25 18828 -1 -1 1 0.92 -1 -1 42724 -1 -1 242 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88720 22 19 6024 4989 1 3106 295 24 24 576 mult_36 auto 50.6 MiB 1.10 22881 86.6 MiB 1.11 0.01 4.04336 -3447.67 -4.04336 4.04336 1.49 0.00527151 0.00465695 0.42401 0.374576 68 37446 32 1.57908e+07 8.13371e+06 2.39371e+06 4155.74 8.81 2.20825 1.9483 31266 17 11470 13449 2330458 505098 4.39726 4.39726 -4180.56 -4.39726 0 0 2.98162e+06 5176.42 1.18 0.66 0.300793 0.273254 1869 1975 779 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_43.v common 21.57 vpr 87.80 MiB 0.18 19196 -1 -1 1 0.74 -1 -1 42996 -1 -1 250 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 89912 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 51.6 MiB 0.98 22979 87.8 MiB 0.97 0.01 4.29396 -3526.34 -4.29396 4.29396 1.54 0.00536275 0.00474227 0.359613 0.317783 66 41312 41 1.57908e+07 8.2455e+06 2.33135e+06 4047.49 11.53 2.2073 1.9478 31980 20 11411 13511 2358497 515021 4.54456 4.54456 -4076.35 -4.54456 0 0 2.91907e+06 5067.82 0.88 0.73 0.351628 0.319772 1921 2030 798 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_44.v common 22.39 vpr 88.02 MiB 0.24 19364 -1 -1 1 0.84 -1 -1 42980 -1 -1 253 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 90128 22 19 6272 5186 1 3253 306 24 24 576 mult_36 auto 51.7 MiB 1.07 21526 88.0 MiB 1.01 0.01 4.04336 -3556.01 -4.04336 4.04336 1.50 0.00558893 0.00494765 0.385884 0.33914 64 37322 37 1.57908e+07 8.28742e+06 2.26035e+06 3924.22 11.38 2.34615 2.06829 30417 20 11724 13837 2178431 488772 4.54456 4.54456 -4225.55 -4.54456 0 0 2.84938e+06 4946.85 0.87 0.86 0.470102 0.424721 1949 2049 817 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_45.v common 27.05 vpr 89.30 MiB 0.27 20076 -1 -1 1 0.88 -1 -1 43660 -1 -1 262 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 91440 22 19 6485 5365 1 3362 316 24 24 576 mult_36 auto 53.2 MiB 1.13 26414 89.3 MiB 1.39 0.02 4.16866 -3902.74 -4.16866 4.16866 1.66 0.00596783 0.00530805 0.500793 0.442957 70 44046 44 1.57908e+07 8.80919e+06 2.45377e+06 4260.01 15.78 3.15447 2.80171 35286 15 12195 14141 2460167 512065 4.66986 4.66986 -4692.36 -4.66986 0 0 3.09179e+06 5367.68 0.94 0.74 0.326642 0.298135 2011 2122 836 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_46.v common 21.01 vpr 89.27 MiB 0.25 19908 -1 -1 1 0.90 -1 -1 43596 -1 -1 266 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 91408 22 19 6559 5422 1 3404 320 24 24 576 mult_36 auto 53.2 MiB 1.06 25963 89.3 MiB 1.34 0.02 4.16866 -3868.49 -4.16866 4.16866 1.73 0.00611257 0.00543982 0.548048 0.492993 74 41576 30 1.57908e+07 8.86508e+06 2.56259e+06 4448.94 9.17 2.44462 2.16518 34966 17 12569 15019 2678549 557972 4.66986 4.66986 -4598.77 -4.66986 0 0 3.19068e+06 5539.38 0.99 0.91 0.402445 0.366343 2040 2141 855 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_47.v common 22.26 vpr 90.31 MiB 0.25 20260 -1 -1 1 0.86 -1 -1 44004 -1 -1 273 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92476 22 19 6735 5564 1 3511 327 24 24 576 mult_36 auto 54.0 MiB 1.20 25319 90.3 MiB 1.21 0.02 4.04336 -4011.76 -4.04336 4.04336 1.51 0.00643104 0.00573093 0.445495 0.39452 70 42510 42 1.57908e+07 8.9629e+06 2.45377e+06 4260.01 11.00 2.90358 2.57558 34398 19 12393 14464 2376560 521487 4.52256 4.52256 -4499.77 -4.52256 0 0 3.09179e+06 5367.68 0.94 0.86 0.440328 0.401487 2092 2196 874 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_48.v common 21.92 vpr 91.16 MiB 0.20 20412 -1 -1 1 0.85 -1 -1 44000 -1 -1 276 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 93348 22 19 6809 5621 1 3555 330 24 24 576 mult_36 auto 55.2 MiB 1.17 24292 91.2 MiB 1.35 0.02 4.04336 -3865.09 -4.04336 4.04336 1.53 0.00650067 0.00580954 0.496732 0.440402 68 40134 32 1.57908e+07 9.00482e+06 2.39371e+06 4155.74 10.92 2.64939 2.34815 32714 17 12189 13908 2027594 455332 4.41926 4.41926 -4542 -4.41926 0 0 2.98162e+06 5176.42 0.88 0.70 0.391646 0.359175 2121 2215 893 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_49.v common 27.92 vpr 92.23 MiB 0.25 20936 -1 -1 1 0.96 -1 -1 44436 -1 -1 287 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 94448 22 19 7094 5872 1 3669 342 24 24 576 mult_36 auto 55.9 MiB 1.19 24197 92.2 MiB 1.39 0.02 4.04336 -4125.7 -4.04336 4.04336 1.52 0.00661026 0.00585765 0.503762 0.444865 66 43378 47 1.57908e+07 9.55454e+06 2.33135e+06 4047.49 16.38 3.03842 2.67975 32904 21 12721 15138 2304828 513093 4.64786 4.64786 -4931.35 -4.64786 0 0 2.91907e+06 5067.82 0.87 0.80 0.426656 0.387364 2200 2324 912 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_50.v common 26.85 vpr 93.36 MiB 0.20 21280 -1 -1 1 1.10 -1 -1 44484 -1 -1 290 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 95600 22 19 7168 5929 1 3710 345 24 24 576 mult_36 auto 56.7 MiB 1.21 26555 93.4 MiB 1.45 0.02 4.16866 -4349.85 -4.16866 4.16866 1.69 0.00867898 0.00787895 0.541273 0.483144 74 43998 45 1.57908e+07 9.59646e+06 2.56259e+06 4448.94 14.56 3.25653 2.89464 36521 17 12940 14873 2624431 546799 4.54456 4.54456 -4911.37 -4.54456 0 0 3.19068e+06 5539.38 0.98 1.02 0.478455 0.435999 2229 2343 931 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_51.v common 23.56 vpr 93.30 MiB 0.28 21584 -1 -1 1 1.12 -1 -1 44636 -1 -1 297 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 95544 22 19 7344 6071 1 3814 352 24 24 576 mult_36 auto 57.1 MiB 1.25 25779 93.3 MiB 1.35 0.02 4.16866 -4172.61 -4.16866 4.16866 1.50 0.00713776 0.00639665 0.491657 0.436172 68 43201 43 1.57908e+07 9.69428e+06 2.39371e+06 4155.74 11.57 2.84169 2.51052 34609 17 12950 15274 2328176 528704 4.54456 4.54456 -4884.88 -4.54456 0 0 2.98162e+06 5176.42 0.94 0.77 0.421145 0.383356 2282 2398 950 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_pipe_52.v common 26.93 vpr 93.67 MiB 0.29 21708 -1 -1 1 0.98 -1 -1 44564 -1 -1 301 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 95920 22 19 7418 6128 1 3859 356 24 24 576 mult_36 auto 57.5 MiB 1.19 27814 93.7 MiB 1.38 0.02 4.16866 -4377.2 -4.16866 4.16866 1.71 0.00731406 0.00619405 0.489531 0.431738 70 46232 40 1.57908e+07 9.75017e+06 2.45377e+06 4260.01 14.63 3.13574 2.76903 37148 17 13609 15554 2585768 569776 4.66986 4.66986 -4997.97 -4.66986 0 0 3.09179e+06 5367.68 0.92 0.77 0.375638 0.342473 2310 2417 969 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_14.v common 8.56 vpr 64.50 MiB 0.05 9332 -1 -1 1 0.12 -1 -1 34400 -1 -1 58 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66048 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 26.7 MiB 2.65 3995 64.5 MiB 0.15 0.00 7.18447 -328.31 -7.18447 7.18447 0.50 0.000767406 0.000657719 0.053375 0.046038 44 8964 36 6.52434e+06 2.39448e+06 686998. 2683.59 3.06 0.413243 0.370176 6383 22 5348 6105 831127 210685 8.07244 8.07244 -428.283 -8.07244 0 0 871168. 3403.00 0.21 0.24 0.0724941 0.0662452 421 285 247 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_15.v common 7.66 vpr 64.96 MiB 0.07 9436 -1 -1 1 0.17 -1 -1 34572 -1 -1 61 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66516 22 19 1344 989 1 793 107 16 16 256 mult_36 auto 27.3 MiB 1.91 4531 65.0 MiB 0.18 0.00 7.27677 -358.348 -7.27677 7.27677 0.50 0.000878726 0.000761767 0.0637174 0.0550505 50 8453 31 6.52434e+06 2.8324e+06 787708. 3076.99 2.81 0.386382 0.345697 6733 25 5608 6442 987873 252037 7.69024 7.69024 -455.253 -7.69024 0 0 943753. 3686.54 0.27 0.26 0.0815095 0.0749424 453 304 266 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_16.v common 9.32 vpr 65.54 MiB 0.07 9592 -1 -1 1 0.13 -1 -1 34828 -1 -1 65 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 67108 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 27.9 MiB 2.52 4874 65.5 MiB 0.20 0.00 7.43507 -362.671 -7.43507 7.43507 0.50 0.00108463 0.000895723 0.0686079 0.0589537 44 9943 33 6.52434e+06 2.88829e+06 686998. 2683.59 3.52 0.48226 0.432698 7523 24 6935 7617 1297336 316469 8.06943 8.06943 -467.41 -8.06943 0 0 871168. 3403.00 0.30 0.45 0.138747 0.127389 481 323 285 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_17.v common 9.00 vpr 66.12 MiB 0.06 10120 -1 -1 1 0.19 -1 -1 34568 -1 -1 71 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 67712 22 19 1518 1112 1 896 117 16 16 256 mult_36 auto 28.6 MiB 2.24 5550 66.1 MiB 0.20 0.00 7.98361 -388.717 -7.98361 7.98361 0.49 0.000966574 0.00083578 0.0676772 0.0584942 46 11062 34 6.52434e+06 2.97214e+06 723233. 2825.13 3.72 0.456503 0.408318 8562 22 7067 7904 1476894 363957 8.64898 8.64898 -489.772 -8.64898 0 0 890343. 3477.90 0.20 0.29 0.0779353 0.0716638 514 342 304 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_18.v common 9.90 vpr 66.49 MiB 0.06 10336 -1 -1 1 0.13 -1 -1 35276 -1 -1 74 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68088 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 28.8 MiB 3.23 5633 66.5 MiB 0.20 0.00 7.92861 -419.902 -7.92861 7.92861 0.50 0.00107081 0.00090442 0.067164 0.0578092 44 12766 36 6.52434e+06 3.01406e+06 686998. 2683.59 3.83 0.456672 0.405444 8707 25 7877 8811 1210854 300281 9.08288 9.08288 -636.036 -9.08288 0 0 871168. 3403.00 0.20 0.26 0.0865449 0.0790112 542 361 323 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_19.v common 10.09 vpr 66.77 MiB 0.07 10460 -1 -1 1 0.14 -1 -1 36300 -1 -1 79 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68368 22 19 1688 1231 1 994 126 16 16 256 mult_36 auto 28.9 MiB 2.65 5786 66.8 MiB 0.25 0.00 8.06677 -425.895 -8.06677 8.06677 0.54 0.0011542 0.00100222 0.0835647 0.0728555 54 10650 46 6.52434e+06 3.47993e+06 829453. 3240.05 4.02 0.704621 0.633829 8320 21 6714 7539 973212 255999 8.42838 8.42838 -579.903 -8.42838 0 0 1.02522e+06 4004.78 0.36 0.41 0.163238 0.150455 573 380 342 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_20.v common 10.62 vpr 67.38 MiB 0.09 10656 -1 -1 1 0.23 -1 -1 35592 -1 -1 81 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69000 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 29.6 MiB 3.19 6492 67.4 MiB 0.21 0.00 8.19207 -419.981 -8.19207 8.19207 0.50 0.00111348 0.000949652 0.0674981 0.0586046 50 12827 43 6.52434e+06 3.50787e+06 787708. 3076.99 3.78 0.509409 0.452886 9463 24 7145 7942 1098997 283906 9.01288 9.01288 -602.369 -9.01288 0 0 943753. 3686.54 0.33 0.48 0.202693 0.186854 601 399 361 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_21.v common 10.45 vpr 67.84 MiB 0.07 10860 -1 -1 1 0.25 -1 -1 35740 -1 -1 85 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69468 22 19 1859 1351 1 1093 132 16 16 256 mult_36 auto 30.2 MiB 3.01 6645 67.8 MiB 0.26 0.00 8.10891 -436.621 -8.10891 8.10891 0.51 0.00136787 0.00119215 0.0926567 0.0806544 56 11500 32 6.52434e+06 3.56377e+06 849745. 3319.32 4.01 0.661006 0.591202 9928 25 7658 8836 1460442 369210 8.73228 8.73228 -594.817 -8.73228 0 0 1.04740e+06 4091.43 0.25 0.34 0.110578 0.1012 632 418 380 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_22.v common 9.96 vpr 68.10 MiB 0.09 11028 -1 -1 1 0.21 -1 -1 35588 -1 -1 90 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69732 22 19 1933 1408 1 1131 137 16 16 256 mult_36 auto 30.4 MiB 3.47 6992 68.1 MiB 0.26 0.00 8.10891 -470.525 -8.10891 8.10891 0.49 0.00132263 0.00114347 0.0805037 0.0700486 54 12524 32 6.52434e+06 3.63364e+06 829453. 3240.05 3.15 0.535598 0.476919 9901 23 6301 7191 1016126 259025 8.56968 8.56968 -637.349 -8.56968 0 0 1.02522e+06 4004.78 0.24 0.38 0.171667 0.156829 661 437 399 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_23.v common 11.65 vpr 68.18 MiB 0.10 11336 -1 -1 1 0.18 -1 -1 35852 -1 -1 94 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69820 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 30.6 MiB 3.52 7371 68.2 MiB 0.29 0.00 7.98361 -464.13 -7.98361 7.98361 0.71 0.00152543 0.00133929 0.0995586 0.0874057 56 12833 28 8.04299e+06 4.08553e+06 1.11497e+06 3441.27 4.06 0.668945 0.599386 10974 25 8638 9840 1876948 459796 8.77458 8.77458 -707.618 -8.77458 0 0 1.37338e+06 4238.83 0.40 0.45 0.130483 0.119369 693 456 418 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_24.v common 12.24 vpr 69.06 MiB 0.09 11424 -1 -1 1 0.21 -1 -1 35920 -1 -1 97 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70720 22 19 2105 1529 1 1232 145 18 18 324 mult_36 auto 31.4 MiB 3.94 7797 69.1 MiB 0.34 0.00 8.22321 -511.74 -8.22321 8.22321 0.70 0.00152198 0.00133677 0.11067 0.096991 54 14474 34 8.04299e+06 4.12745e+06 1.08842e+06 3359.33 4.24 0.793764 0.712005 11549 24 7161 8429 1277146 308078 8.70598 8.70598 -747.494 -8.70598 0 0 1.34436e+06 4149.26 0.45 0.33 0.120078 0.109471 721 475 437 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_25.v common 15.04 vpr 69.27 MiB 0.11 11908 -1 -1 1 0.25 -1 -1 36228 -1 -1 101 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70932 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 31.7 MiB 3.65 7970 69.3 MiB 0.34 0.01 7.94147 -515.879 -7.94147 7.94147 0.70 0.00165132 0.00144922 0.114303 0.100614 46 17802 45 8.04299e+06 4.18335e+06 948677. 2928.01 7.03 0.801293 0.716344 12393 27 10708 12250 1902022 457646 9.19918 9.19918 -863.234 -9.19918 0 0 1.16833e+06 3605.96 0.49 0.42 0.131842 0.120206 751 494 456 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_26.v common 14.49 vpr 69.54 MiB 0.08 12008 -1 -1 1 0.21 -1 -1 36540 -1 -1 105 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71204 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 32.0 MiB 4.00 8153 69.5 MiB 0.43 0.00 8.10891 -522.846 -8.10891 8.10891 0.70 0.00152679 0.00133015 0.147878 0.129123 50 15873 40 8.04299e+06 4.23924e+06 1.03391e+06 3191.07 6.16 0.804362 0.715672 12472 25 11138 12536 2120873 486487 8.85428 8.85428 -764.35 -8.85428 0 0 1.23838e+06 3822.15 0.30 0.53 0.160466 0.145945 779 513 475 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_27.v common 15.39 vpr 70.45 MiB 0.09 12092 -1 -1 1 0.27 -1 -1 36472 -1 -1 111 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72144 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 32.9 MiB 4.57 8897 70.5 MiB 0.37 0.01 8.23421 -578.853 -8.23421 8.23421 0.76 0.00191843 0.00170218 0.138915 0.122033 54 16304 42 8.04299e+06 4.7191e+06 1.08842e+06 3359.33 6.62 0.916994 0.818284 12789 23 9288 10848 1644811 394936 8.61468 8.61468 -875.746 -8.61468 0 0 1.34436e+06 4149.26 0.32 0.40 0.132235 0.120613 817 532 494 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_28.v common 13.91 vpr 70.46 MiB 0.12 12192 -1 -1 1 0.25 -1 -1 36628 -1 -1 114 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72152 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 32.8 MiB 4.44 9080 70.5 MiB 0.45 0.01 8.19207 -583.955 -8.19207 8.19207 0.69 0.00176252 0.00154033 0.145473 0.12759 56 15655 32 8.04299e+06 4.76102e+06 1.11497e+06 3441.27 5.24 0.745544 0.661915 12993 23 10250 11600 1661011 397239 8.76528 8.76528 -857.918 -8.76528 0 0 1.37338e+06 4238.83 0.33 0.39 0.146761 0.134493 845 551 513 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_29.v common 18.58 vpr 71.31 MiB 0.10 12436 -1 -1 1 0.25 -1 -1 36844 -1 -1 118 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73024 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 33.7 MiB 4.62 9913 71.3 MiB 0.48 0.01 7.85831 -526.382 -7.85831 7.85831 1.16 0.00214571 0.00189318 0.161278 0.14236 48 21302 48 1.30842e+07 5.21292e+06 1.52614e+06 3153.19 7.72 0.934584 0.832809 16149 25 14534 16349 4263571 938907 9.16418 9.16418 -1120.65 -9.16418 0 0 1.85176e+06 3825.95 0.52 0.80 0.158253 0.144258 881 570 532 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_30.v common 17.64 vpr 71.45 MiB 0.13 12692 -1 -1 1 0.27 -1 -1 36552 -1 -1 123 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73160 22 19 2639 1910 1 1549 173 22 22 484 mult_36 auto 34.0 MiB 5.31 9515 71.4 MiB 0.43 0.01 8.19207 -597.288 -8.19207 8.19207 1.21 0.00219957 0.00194485 0.143847 0.126512 50 20059 36 1.30842e+07 5.28279e+06 1.59181e+06 3288.87 6.45 0.894489 0.797751 15174 23 13090 15011 2594311 587737 8.73998 8.73998 -1097.7 -8.73998 0 0 1.90554e+06 3937.06 0.51 0.54 0.158057 0.14481 910 589 551 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_31.v common 18.76 vpr 71.88 MiB 0.18 12796 -1 -1 1 0.45 -1 -1 37216 -1 -1 128 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73600 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 34.7 MiB 5.24 10495 71.9 MiB 0.56 0.01 8.27337 -578.554 -8.27337 8.27337 1.18 0.00223135 0.0019122 0.191922 0.168137 52 20204 36 1.30842e+07 5.35266e+06 1.63434e+06 3376.74 6.74 0.992856 0.885088 15362 24 12678 14546 2876909 664049 8.88458 8.88458 -1021.81 -8.88458 0 0 2.01763e+06 4168.66 0.53 0.99 0.281581 0.257901 946 608 570 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_32.v common 18.98 vpr 71.82 MiB 0.14 13040 -1 -1 1 0.34 -1 -1 36304 -1 -1 131 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73544 22 19 2818 2038 1 1657 181 22 22 484 mult_36 auto 34.7 MiB 5.57 11121 71.8 MiB 0.52 0.01 8.19207 -602.412 -8.19207 8.19207 1.18 0.00230031 0.00203353 0.171494 0.150388 50 21867 49 1.30842e+07 5.39458e+06 1.59181e+06 3288.87 7.10 1.01178 0.900111 16371 24 13791 15832 2681657 598087 9.39948 9.39948 -1119.91 -9.39948 0 0 1.90554e+06 3937.06 0.60 0.63 0.194538 0.178643 974 627 589 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_33.v common 18.30 vpr 72.73 MiB 0.13 13548 -1 -1 1 0.45 -1 -1 37372 -1 -1 137 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74480 22 19 2923 2109 1 1726 188 22 22 484 mult_36 auto 35.6 MiB 4.75 11439 72.7 MiB 0.74 0.01 8.76075 -660.911 -8.76075 8.76075 1.23 0.00246925 0.00216006 0.247681 0.219188 50 22516 48 1.30842e+07 5.87443e+06 1.59181e+06 3288.87 7.06 1.06127 0.944755 17062 25 14810 16818 2636703 608942 9.89302 9.89302 -1060.22 -9.89302 0 0 1.90554e+06 3937.06 0.52 0.58 0.177425 0.161665 1009 646 608 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_34.v common 20.96 vpr 73.21 MiB 0.10 13780 -1 -1 1 0.28 -1 -1 38028 -1 -1 140 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74964 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 36.0 MiB 7.35 11382 73.2 MiB 0.60 0.01 8.65745 -701.285 -8.65745 8.65745 1.21 0.00251302 0.00221178 0.211715 0.186846 50 22463 49 1.30842e+07 5.91636e+06 1.59181e+06 3288.87 7.50 1.25278 1.1201 17026 23 12146 14238 2277962 518996 9.67572 9.67572 -1229.72 -9.67572 0 0 1.90554e+06 3937.06 0.54 0.54 0.187734 0.172063 1037 665 627 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_35.v common 21.89 vpr 73.61 MiB 0.10 13968 -1 -1 1 0.41 -1 -1 37076 -1 -1 145 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75372 22 19 3101 2236 1 1831 196 22 22 484 mult_36 auto 36.4 MiB 7.50 12531 73.6 MiB 0.66 0.01 8.53215 -735.38 -8.53215 8.53215 1.20 0.00276268 0.00246768 0.233921 0.208061 54 24126 31 1.30842e+07 5.98623e+06 1.67518e+06 3461.11 7.65 1.04059 0.92906 18297 24 14479 16690 2629786 600996 9.33582 9.33582 -1176.27 -9.33582 0 0 2.06816e+06 4273.05 0.61 0.63 0.20135 0.184281 1072 684 646 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_36.v common 22.50 vpr 74.21 MiB 0.11 14016 -1 -1 1 0.32 -1 -1 37588 -1 -1 148 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75988 22 19 3175 2293 1 1871 199 22 22 484 mult_36 auto 36.9 MiB 8.71 11899 74.2 MiB 0.68 0.01 8.64645 -651.946 -8.64645 8.64645 1.22 0.00283821 0.00247983 0.240852 0.213024 54 22277 48 1.30842e+07 6.02815e+06 1.67518e+06 3461.11 7.54 1.40544 1.25846 17099 23 13507 15718 2338181 565737 9.33112 9.33112 -963.511 -9.33112 0 0 2.06816e+06 4273.05 0.54 0.58 0.191039 0.174577 1100 703 665 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_37.v common 22.11 vpr 74.36 MiB 0.11 14460 -1 -1 1 0.42 -1 -1 38304 -1 -1 152 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76144 22 19 3280 2364 1 1938 204 24 24 576 mult_36 auto 37.3 MiB 7.49 12964 74.4 MiB 0.73 0.01 8.90805 -740.374 -8.90805 8.90805 1.53 0.00282807 0.00251775 0.246499 0.2187 54 23169 35 1.57908e+07 6.48005e+06 1.98675e+06 3449.22 7.22 1.08621 0.968161 18227 24 14871 16843 3166542 739938 9.57072 9.57072 -1145.13 -9.57072 0 0 2.45377e+06 4260.01 0.73 0.83 0.252893 0.230563 1135 722 684 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_38.v common 22.75 vpr 74.94 MiB 0.11 14424 -1 -1 1 0.34 -1 -1 37948 -1 -1 157 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76736 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 37.8 MiB 8.69 13129 74.9 MiB 0.69 0.01 9.24181 -789.893 -9.24181 9.24181 1.46 0.00281805 0.00249649 0.23343 0.206891 54 23412 40 1.57908e+07 6.54992e+06 1.98675e+06 3449.22 6.87 1.1328 1.00941 18518 24 12796 14694 2374379 554500 10.0203 10.0203 -1256.12 -10.0203 0 0 2.45377e+06 4260.01 0.73 0.58 0.200903 0.182974 1164 741 703 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_39.v common 25.16 vpr 75.70 MiB 0.11 14708 -1 -1 1 0.38 -1 -1 37748 -1 -1 161 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77512 22 19 3457 2490 1 2044 213 24 24 576 mult_36 auto 38.6 MiB 8.30 13928 75.7 MiB 0.79 0.01 8.86591 -781.705 -8.86591 8.86591 1.51 0.00303248 0.00270109 0.249359 0.221166 54 27092 46 1.57908e+07 6.60581e+06 1.98675e+06 3449.22 9.43 1.31045 1.168 19845 24 15175 17269 2754592 639905 9.49542 9.49542 -1253.13 -9.49542 0 0 2.45377e+06 4260.01 0.72 0.65 0.215613 0.19694 1198 760 722 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_40.v common 25.90 vpr 76.14 MiB 0.14 14724 -1 -1 1 0.34 -1 -1 38204 -1 -1 164 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77968 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 39.0 MiB 9.15 14006 76.1 MiB 0.80 0.01 8.79991 -900.513 -8.79991 8.79991 1.48 0.00324391 0.00284604 0.26108 0.229563 56 25354 35 1.57908e+07 6.64774e+06 2.03561e+06 3534.04 9.17 1.17979 1.04592 21066 22 15781 18089 3359882 763234 9.80602 9.80602 -1496.89 -9.80602 0 0 2.50747e+06 4353.24 0.69 0.72 0.215795 0.197554 1226 779 741 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_41.v common 24.84 vpr 76.47 MiB 0.14 15180 -1 -1 1 0.39 -1 -1 37844 -1 -1 170 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78304 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 39.4 MiB 8.41 14324 76.5 MiB 0.84 0.01 8.81091 -829.439 -8.81091 8.81091 1.41 0.00327643 0.00287438 0.275373 0.243297 58 24623 39 1.57908e+07 7.12758e+06 2.08734e+06 3623.85 9.12 1.26251 1.12418 20111 24 12849 14888 2669144 605209 9.56442 9.56442 -1423.37 -9.56442 0 0 2.61600e+06 4541.67 0.76 0.62 0.207666 0.188583 1261 798 760 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_42.v common 25.76 vpr 76.44 MiB 0.18 15228 -1 -1 1 0.39 -1 -1 38224 -1 -1 173 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78276 22 19 3708 2673 1 2187 226 24 24 576 mult_36 auto 39.4 MiB 9.69 14717 76.4 MiB 0.84 0.01 8.86405 -973.49 -8.86405 8.86405 1.63 0.0033206 0.00292232 0.275873 0.243105 56 24882 37 1.57908e+07 7.1695e+06 2.03561e+06 3534.04 8.04 1.25595 1.11703 21081 25 15101 17258 2649910 620707 9.57342 9.57342 -1525.09 -9.57342 0 0 2.50747e+06 4353.24 0.84 0.81 0.306555 0.279536 1289 817 779 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_43.v common 28.80 vpr 77.11 MiB 0.14 15608 -1 -1 1 0.50 -1 -1 39120 -1 -1 178 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78960 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 40.0 MiB 10.23 15140 77.1 MiB 0.85 0.01 8.85491 -961.324 -8.85491 8.85491 1.46 0.00347138 0.00303059 0.275435 0.244064 54 28413 42 1.57908e+07 7.23937e+06 1.98675e+06 3449.22 10.88 1.36244 1.21374 21583 25 16726 19214 2944141 682180 9.42042 9.42042 -1439.89 -9.42042 0 0 2.45377e+06 4260.01 0.68 0.81 0.291701 0.262145 1323 836 798 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_44.v common 26.79 vpr 78.02 MiB 0.19 15692 -1 -1 1 0.41 -1 -1 38040 -1 -1 181 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79892 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 40.9 MiB 10.36 15957 78.0 MiB 0.77 0.01 8.91905 -946.559 -8.91905 8.91905 1.48 0.00347909 0.00309635 0.244094 0.217312 58 26042 37 1.57908e+07 7.28129e+06 2.08734e+06 3623.85 8.26 1.27856 1.13827 21580 25 13222 15057 2407597 554349 9.69902 9.69902 -1382.81 -9.69902 0 0 2.61600e+06 4541.67 0.93 0.67 0.25846 0.234838 1351 855 817 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_45.v common 29.18 vpr 77.74 MiB 0.19 15888 -1 -1 1 0.45 -1 -1 40120 -1 -1 186 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79608 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 40.7 MiB 9.86 16349 77.7 MiB 0.98 0.01 8.82191 -945.998 -8.82191 8.82191 1.46 0.00366171 0.00321117 0.31606 0.280718 58 27585 33 1.57908e+07 7.74716e+06 2.08734e+06 3623.85 11.42 1.57098 1.40141 22531 28 15206 17415 3255551 758835 10.4022 10.4022 -1570.26 -10.4022 0 0 2.61600e+06 4541.67 0.80 0.79 0.268653 0.2437 1387 874 836 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_46.v common 28.46 vpr 78.62 MiB 0.17 16040 -1 -1 1 0.64 -1 -1 40328 -1 -1 189 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80504 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 41.5 MiB 10.97 16746 78.6 MiB 0.92 0.01 9.17581 -1011.17 -9.17581 9.17581 1.47 0.00393642 0.00348862 0.311095 0.275938 56 27375 33 1.57908e+07 7.78909e+06 2.03561e+06 3534.04 8.90 1.41771 1.26362 23437 26 17240 19807 3209622 743407 9.85532 9.85532 -1609.29 -9.85532 0 0 2.50747e+06 4353.24 1.08 0.92 0.306176 0.279137 1414 893 855 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_47.v common 28.75 vpr 78.69 MiB 0.16 16552 -1 -1 1 0.52 -1 -1 40256 -1 -1 194 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80580 22 19 4167 2996 1 2466 248 24 24 576 mult_36 auto 41.8 MiB 10.71 16131 78.7 MiB 1.09 0.01 9.11651 -934.646 -9.11651 9.11651 1.48 0.00460653 0.00410911 0.364917 0.32442 58 27403 36 1.57908e+07 7.85896e+06 2.08734e+06 3623.85 9.55 1.51802 1.35158 22103 25 15412 17551 2912542 678451 9.94802 9.94802 -1447.23 -9.94802 0 0 2.61600e+06 4541.67 1.01 0.76 0.291928 0.264446 1449 912 874 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_48.v common 33.20 vpr 79.16 MiB 0.17 16612 -1 -1 1 0.48 -1 -1 40480 -1 -1 197 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81056 22 19 4241 3053 1 2505 251 24 24 576 mult_36 auto 41.9 MiB 12.80 17045 79.2 MiB 0.73 0.01 8.99121 -943.677 -8.99121 8.99121 1.49 0.00388778 0.0034089 0.239632 0.212118 56 31407 49 1.57908e+07 7.90088e+06 2.03561e+06 3534.04 12.39 1.60913 1.42821 24459 23 18423 20902 3785044 889425 10.0606 10.0606 -1807.66 -10.0606 0 0 2.50747e+06 4353.24 0.67 0.83 0.248232 0.22549 1477 931 893 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_49.v common 29.44 vpr 79.33 MiB 0.22 17044 -1 -1 1 0.77 -1 -1 40584 -1 -1 204 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81236 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 42.2 MiB 10.99 17340 79.3 MiB 1.01 0.01 9.15865 -1011.4 -9.15865 9.15865 1.54 0.00397717 0.00354098 0.325857 0.289193 64 27814 27 1.57908e+07 8.3947e+06 2.26035e+06 3924.22 9.76 1.47734 1.31601 23605 22 14881 17382 3063665 668723 9.51412 9.51412 -1626.4 -9.51412 0 0 2.84938e+06 4946.85 0.81 0.70 0.237519 0.215486 1512 950 912 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_50.v common 33.89 vpr 79.79 MiB 0.23 17008 -1 -1 1 0.75 -1 -1 40728 -1 -1 206 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81700 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 42.7 MiB 12.51 19590 79.8 MiB 1.05 0.01 9.10365 -1056.62 -9.10365 9.10365 1.48 0.00405229 0.00361414 0.335192 0.297951 60 32451 49 1.57908e+07 8.42264e+06 2.13333e+06 3703.69 11.70 1.75394 1.56244 26269 26 21018 24017 3936192 872001 9.74572 9.74572 -1556.38 -9.74572 0 0 2.67122e+06 4637.53 1.05 1.43 0.488027 0.442089 1541 969 931 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_51.v common 35.37 vpr 80.56 MiB 0.25 17216 -1 -1 1 0.87 -1 -1 39356 -1 -1 211 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82492 22 19 4524 3251 1 2681 266 24 24 576 mult_36 auto 43.6 MiB 12.61 18397 80.6 MiB 0.96 0.01 8.90805 -954.187 -8.90805 8.90805 1.47 0.00416561 0.00371168 0.304537 0.270238 58 32027 39 1.57908e+07 8.49251e+06 2.08734e+06 3623.85 12.98 1.58698 1.41171 25325 24 20069 23211 4344690 993138 9.54772 9.54772 -1744.78 -9.54772 0 0 2.61600e+06 4541.67 1.10 1.24 0.341421 0.311801 1576 988 950 19 0 0 - k6_frac_ripple_N8_22nm.xml fir_nopipe_52.v common 31.27 vpr 81.00 MiB 0.25 17660 -1 -1 1 0.63 -1 -1 41264 -1 -1 215 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82940 22 19 4598 3308 1 2718 270 24 24 576 mult_36 auto 44.1 MiB 12.82 18411 81.0 MiB 1.16 0.01 8.99121 -1082.45 -8.99121 8.99121 1.47 0.00428246 0.0038107 0.358645 0.317876 64 29155 41 1.57908e+07 8.54841e+06 2.26035e+06 3924.22 9.62 1.69475 1.50879 24797 23 16699 19350 3019449 683048 9.40612 9.40612 -1818.64 -9.40612 0 0 2.84938e+06 4946.85 0.82 0.75 0.259719 0.235005 1605 1007 969 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_14.v common 6.32 vpr 67.55 MiB 0.08 10496 -1 -1 1 0.27 -1 -1 35744 -1 -1 81 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69168 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 29.8 MiB 0.38 5650 67.5 MiB 0.18 0.00 3.91806 -1041.17 -3.91806 3.91806 0.73 0.00114217 0.000965019 0.0669116 0.0575085 50 11917 30 6.54114e+06 2.7256e+06 787708. 3076.99 2.36 0.463731 0.407011 9235 20 3933 4576 838237 204303 4.39726 4.39726 -1246.8 -4.39726 0 0 943753. 3686.54 0.22 0.19 0.0764945 0.0692266 605 649 247 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_15.v common 6.85 vpr 68.75 MiB 0.08 10900 -1 -1 1 0.21 -1 -1 36016 -1 -1 88 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70396 22 19 2144 1789 1 1120 134 16 16 256 mult_36 auto 31.1 MiB 0.41 6352 68.7 MiB 0.22 0.00 3.91806 -1155.23 -3.91806 3.91806 0.51 0.00160603 0.00139735 0.0882642 0.0769014 54 12324 27 6.54114e+06 3.22025e+06 829453. 3240.05 2.61 0.596215 0.527608 9697 18 4222 4788 732793 183355 4.39726 4.39726 -1306.14 -4.39726 0 0 1.02522e+06 4004.78 0.38 0.37 0.186739 0.170498 654 704 266 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_16.v common 8.91 vpr 68.91 MiB 0.07 10864 -1 -1 1 0.31 -1 -1 36564 -1 -1 91 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70564 22 19 2218 1846 1 1162 137 16 16 256 mult_36 auto 31.3 MiB 0.43 6744 68.9 MiB 0.45 0.00 3.79276 -1226.52 -3.79276 3.79276 0.78 0.00167654 0.00144436 0.198422 0.175042 54 14012 43 6.54114e+06 3.26253e+06 829453. 3240.05 4.25 0.8479 0.75386 10509 20 4487 5237 758365 182507 4.41926 4.41926 -1444.32 -4.41926 0 0 1.02522e+06 4004.78 0.23 0.21 0.0934757 0.0846485 683 723 285 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_17.v common 8.31 vpr 70.15 MiB 0.10 11784 -1 -1 1 0.24 -1 -1 37408 -1 -1 103 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71832 22 19 2536 2130 1 1275 149 16 16 256 mult_36 auto 32.6 MiB 0.32 7649 70.1 MiB 0.54 0.01 3.79276 -1374.42 -3.79276 3.79276 0.65 0.00340139 0.00294506 0.230562 0.201142 54 15526 30 6.54114e+06 3.43166e+06 829453. 3240.05 3.93 0.978693 0.865863 11744 22 5188 5986 992360 246682 4.41926 4.41926 -1598.38 -4.41926 0 0 1.02522e+06 4004.78 0.37 0.29 0.134691 0.122968 770 851 304 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_18.v common 7.26 vpr 70.46 MiB 0.06 11748 -1 -1 1 0.31 -1 -1 36808 -1 -1 107 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72156 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 33.1 MiB 0.35 7574 70.5 MiB 0.29 0.00 3.91806 -1399.02 -3.91806 3.91806 0.53 0.00197037 0.00172255 0.120011 0.105006 58 14102 31 6.54114e+06 3.48803e+06 871168. 3403.00 3.34 0.745396 0.658429 11407 22 4741 5625 736195 181207 4.39726 4.39726 -1615.41 -4.39726 0 0 1.09288e+06 4269.05 0.26 0.25 0.134065 0.121515 798 870 323 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_19.v common 7.12 vpr 71.41 MiB 0.10 12280 -1 -1 1 0.25 -1 -1 36560 -1 -1 113 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73120 22 19 2778 2321 1 1412 160 16 16 256 mult_36 auto 34.2 MiB 0.39 8372 71.4 MiB 0.29 0.01 4.04336 -1507.42 -4.04336 4.04336 0.53 0.00211575 0.00185311 0.116905 0.102023 62 15178 34 6.54114e+06 3.96859e+06 916467. 3579.95 2.97 0.807767 0.711768 11410 19 4680 5653 802199 206845 4.29396 4.29396 -1699.36 -4.29396 0 0 1.13630e+06 4438.68 0.26 0.24 0.120275 0.109367 846 925 342 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_20.v common 9.08 vpr 71.78 MiB 0.08 12236 -1 -1 1 0.27 -1 -1 36768 -1 -1 118 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73504 22 19 2852 2378 1 1455 165 16 16 256 mult_36 auto 34.3 MiB 0.41 8992 71.8 MiB 0.34 0.01 3.91806 -1537.07 -3.91806 3.91806 0.51 0.00198998 0.00172508 0.133 0.115633 58 15469 33 6.54114e+06 4.03906e+06 871168. 3403.00 4.50 0.987205 0.87123 12982 19 5332 6126 1029092 252255 4.29396 4.29396 -1764.5 -4.29396 0 0 1.09288e+06 4269.05 0.41 0.51 0.251905 0.230709 875 944 361 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_21.v common 7.31 vpr 72.67 MiB 0.11 12648 -1 -1 1 0.28 -1 -1 38444 -1 -1 122 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74416 22 19 3057 2549 1 1560 169 16 16 256 mult_36 auto 35.2 MiB 0.41 9602 72.7 MiB 0.45 0.01 4.04336 -1645.81 -4.04336 4.04336 0.50 0.00229964 0.00200382 0.179808 0.158211 64 15262 25 6.54114e+06 4.09544e+06 943753. 3686.54 2.99 0.866101 0.763316 13156 16 5098 5854 970090 242304 4.29396 4.29396 -1877.74 -4.29396 0 0 1.19033e+06 4649.74 0.28 0.27 0.128257 0.117199 932 1017 380 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_22.v common 9.35 vpr 72.95 MiB 0.10 12844 -1 -1 1 0.32 -1 -1 37608 -1 -1 125 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74696 22 19 3131 2606 1 1600 172 16 16 256 mult_36 auto 35.5 MiB 0.38 10397 72.9 MiB 0.36 0.01 3.91806 -1699.17 -3.91806 3.91806 0.51 0.00238807 0.00208839 0.139731 0.122058 68 17989 35 6.54114e+06 4.13772e+06 1.00038e+06 3907.74 4.56 0.943583 0.832446 13924 19 5612 6331 973228 234239 4.29396 4.29396 -1985.34 -4.29396 0 0 1.24648e+06 4869.04 0.43 0.46 0.245657 0.224041 961 1036 399 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_23.v common 11.28 vpr 73.83 MiB 0.12 13244 -1 -1 1 0.33 -1 -1 38156 -1 -1 133 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75600 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 36.5 MiB 0.41 10029 73.8 MiB 0.44 0.01 4.04336 -1773.44 -4.04336 4.04336 0.89 0.00237882 0.00206316 0.176994 0.15496 58 18471 42 8.06603e+06 4.64648e+06 1.14310e+06 3528.09 5.83 1.17902 1.04007 15087 21 6227 7176 1190635 278528 4.39726 4.39726 -2074.41 -4.39726 0 0 1.43297e+06 4422.75 0.39 0.38 0.185414 0.168515 1012 1091 418 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_24.v common 10.10 vpr 74.70 MiB 0.13 13420 -1 -1 1 0.34 -1 -1 37484 -1 -1 137 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76492 22 19 3375 2799 1 1744 185 18 18 324 mult_36 auto 37.4 MiB 0.45 10833 74.7 MiB 0.55 0.01 4.04336 -1842.14 -4.04336 4.04336 0.71 0.00316289 0.00281635 0.244226 0.218148 60 18955 23 8.06603e+06 4.70285e+06 1.16833e+06 3605.96 4.98 1.11792 0.991775 15673 18 6236 7365 1036964 240848 4.52256 4.52256 -2173.18 -4.52256 0 0 1.46313e+06 4515.82 0.36 0.37 0.166983 0.151567 1041 1110 437 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_25.v common 9.69 vpr 75.27 MiB 0.13 13864 -1 -1 1 0.32 -1 -1 38084 -1 -1 146 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77080 22 19 3615 3005 1 1848 194 18 18 324 mult_36 auto 37.8 MiB 0.49 11121 75.3 MiB 0.49 0.01 4.16866 -1995.14 -4.16866 4.16866 0.78 0.00278723 0.00244178 0.200418 0.175411 60 18453 21 8.06603e+06 4.8297e+06 1.16833e+06 3605.96 4.51 1.20639 1.07107 15879 15 6258 7501 989222 233721 4.54456 4.54456 -2418.74 -4.54456 0 0 1.46313e+06 4515.82 0.36 0.29 0.145119 0.132251 1107 1201 456 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_26.v common 10.46 vpr 75.51 MiB 0.09 14052 -1 -1 1 0.36 -1 -1 38112 -1 -1 148 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77320 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 38.2 MiB 0.54 11531 75.5 MiB 0.51 0.01 4.04336 -2057.3 -4.04336 4.04336 0.76 0.00325354 0.00288929 0.202919 0.177901 64 19715 38 8.06603e+06 4.85789e+06 1.23838e+06 3822.15 4.91 1.22122 1.07946 15896 16 6520 7750 1151774 270379 4.29396 4.29396 -2276.3 -4.29396 0 0 1.56068e+06 4816.91 0.40 0.39 0.208489 0.190871 1135 1220 475 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_27.v common 11.96 vpr 76.63 MiB 0.10 14648 -1 -1 1 0.38 -1 -1 38088 -1 -1 156 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78472 22 19 3871 3210 1 2002 205 18 18 324 mult_36 auto 39.3 MiB 0.60 12954 76.6 MiB 0.63 0.01 4.02136 -2114.1 -4.02136 4.02136 0.69 0.00309568 0.00270766 0.246547 0.216433 64 23113 37 8.06603e+06 5.36665e+06 1.23838e+06 3822.15 6.24 1.37607 1.21523 18052 19 6976 8359 1300714 302166 4.41926 4.41926 -2526.78 -4.41926 0 0 1.56068e+06 4816.91 0.46 0.38 0.205256 0.187156 1191 1275 494 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_28.v common 10.99 vpr 77.09 MiB 0.13 14432 -1 -1 1 0.50 -1 -1 38176 -1 -1 160 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78940 22 19 3945 3267 1 2045 209 18 18 324 mult_36 auto 39.9 MiB 0.57 12608 77.1 MiB 0.56 0.01 3.91806 -2143.02 -3.91806 3.91806 0.74 0.00324025 0.00285054 0.222866 0.195658 64 21666 34 8.06603e+06 5.42302e+06 1.23838e+06 3822.15 5.16 1.38912 1.2238 17823 16 7010 8259 1214355 288056 4.29396 4.29396 -2531.79 -4.29396 0 0 1.56068e+06 4816.91 0.42 0.37 0.188859 0.171849 1219 1294 513 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_29.v common 19.44 vpr 77.96 MiB 0.15 15076 -1 -1 1 0.44 -1 -1 38808 -1 -1 170 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79828 22 19 4159 3447 1 2159 220 22 22 484 mult_36 auto 40.6 MiB 0.55 14483 78.0 MiB 0.81 0.01 4.16866 -2371.09 -4.16866 4.16866 1.47 0.00430942 0.00379621 0.332647 0.294238 58 28954 45 1.31202e+07 5.95997e+06 1.75961e+06 3635.55 11.43 1.56391 1.38251 21948 21 8691 10123 1885866 411293 4.79516 4.79516 -2845.39 -4.79516 0 0 2.20457e+06 4554.90 0.57 0.47 0.196904 0.177708 1283 1367 532 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_30.v common 16.86 vpr 78.10 MiB 0.16 15364 -1 -1 1 0.53 -1 -1 39420 -1 -1 173 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79972 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 40.9 MiB 0.80 13777 78.1 MiB 0.69 0.01 3.79276 -2265.44 -3.79276 3.79276 1.27 0.00359826 0.00316401 0.268424 0.235326 56 26497 44 1.31202e+07 6.00225e+06 1.71605e+06 3545.56 8.67 1.62478 1.43224 21779 20 8445 9867 1601613 364462 4.41926 4.41926 -2785.89 -4.41926 0 0 2.11301e+06 4365.72 0.54 0.44 0.199294 0.180123 1311 1386 551 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_31.v common 15.68 vpr 79.50 MiB 0.15 15708 -1 -1 1 0.72 -1 -1 40332 -1 -1 179 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81408 22 19 4410 3647 1 2305 229 22 22 484 mult_36 auto 42.2 MiB 0.63 15176 79.5 MiB 0.68 0.01 3.91806 -2367.78 -3.91806 3.91806 1.20 0.00376047 0.00331975 0.271092 0.239263 62 27724 45 1.31202e+07 6.08682e+06 1.85176e+06 3825.95 7.15 1.5741 1.3904 21531 18 8485 9855 1634882 366010 4.41926 4.41926 -2853.94 -4.41926 0 0 2.29262e+06 4736.82 0.71 0.75 0.369302 0.335502 1363 1441 570 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_32.v common 17.35 vpr 79.43 MiB 0.12 15464 -1 -1 1 0.61 -1 -1 39176 -1 -1 183 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 81332 22 19 4484 3704 1 2348 233 22 22 484 mult_36 auto 42.3 MiB 0.60 14963 79.4 MiB 0.79 0.01 3.79276 -2349.2 -3.79276 3.79276 1.45 0.00486944 0.00439515 0.33697 0.302268 60 27030 32 1.31202e+07 6.14319e+06 1.79840e+06 3715.71 9.06 1.78008 1.57668 21870 20 9019 10607 1663549 375241 4.39726 4.39726 -2795.24 -4.39726 0 0 2.25108e+06 4650.99 0.67 0.48 0.220402 0.199358 1393 1460 589 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_33.v common 15.87 vpr 80.66 MiB 0.12 16456 -1 -1 1 0.61 -1 -1 40968 -1 -1 196 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82596 22 19 4843 4029 1 2463 247 22 22 484 mult_36 auto 43.9 MiB 0.63 17285 80.7 MiB 0.99 0.01 4.16866 -2646.29 -4.16866 4.16866 1.28 0.0050843 0.00455312 0.415557 0.371537 64 29540 36 1.31202e+07 6.72242e+06 1.90554e+06 3937.06 7.08 1.89787 1.6881 24042 17 8823 10655 1787454 388961 4.52256 4.52256 -3205.24 -4.52256 0 0 2.40101e+06 4960.76 1.03 0.63 0.257923 0.234715 1490 1606 608 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_34.v common 20.53 vpr 81.00 MiB 0.19 16600 -1 -1 1 0.77 -1 -1 41008 -1 -1 199 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 82940 22 19 4917 4086 1 2505 250 22 22 484 mult_36 auto 44.0 MiB 0.58 16060 81.0 MiB 0.74 0.01 3.79276 -2589.11 -3.79276 3.79276 1.23 0.0045586 0.00405265 0.292337 0.255931 58 31078 43 1.31202e+07 6.7647e+06 1.75961e+06 3635.55 12.28 1.78633 1.56991 24081 20 9692 11637 1968306 441056 4.54456 4.54456 -3315.81 -4.54456 0 0 2.20457e+06 4554.90 0.63 0.58 0.268033 0.241956 1519 1625 627 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_35.v common 17.87 vpr 82.24 MiB 0.18 17024 -1 -1 1 0.71 -1 -1 41324 -1 -1 207 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84212 22 19 5093 4228 1 2607 258 22 22 484 mult_36 auto 45.1 MiB 0.62 18187 82.2 MiB 0.76 0.01 4.04336 -2789.03 -4.04336 4.04336 1.26 0.00457993 0.00405872 0.302415 0.268069 66 32597 48 1.31202e+07 6.87745e+06 1.96511e+06 4060.15 9.02 2.07437 1.838 25802 17 9662 11499 1963255 413129 4.54456 4.54456 -3461.82 -4.54456 0 0 2.45963e+06 5081.88 0.89 0.80 0.331154 0.300771 1572 1680 646 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_36.v common 16.90 vpr 82.50 MiB 0.20 17280 -1 -1 1 0.57 -1 -1 41388 -1 -1 209 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 84480 22 19 5167 4285 1 2655 260 22 22 484 mult_36 auto 45.4 MiB 0.62 17085 82.5 MiB 0.91 0.01 3.79276 -2738.97 -3.79276 3.79276 1.21 0.00445086 0.00394513 0.352853 0.310881 60 30088 31 1.31202e+07 6.90564e+06 1.79840e+06 3715.71 8.40 1.74062 1.53105 24951 19 10148 11634 2118117 474924 4.39726 4.39726 -3290.08 -4.39726 0 0 2.25108e+06 4650.99 0.69 0.74 0.356767 0.325058 1600 1699 665 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_37.v common 21.86 vpr 83.24 MiB 0.20 17640 -1 -1 1 0.67 -1 -1 40228 -1 -1 218 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85236 22 19 5380 4464 1 2756 270 24 24 576 mult_36 auto 46.1 MiB 0.71 18604 83.2 MiB 1.05 0.01 4.16866 -3093.82 -4.16866 4.16866 1.47 0.00471989 0.00415037 0.425331 0.376363 60 33221 34 1.58331e+07 7.42849e+06 2.13333e+06 3703.69 11.69 2.05171 1.81106 26249 17 9683 11477 1811046 401181 4.54456 4.54456 -3838.47 -4.54456 0 0 2.67122e+06 4637.53 1.19 0.65 0.306332 0.279448 1662 1772 684 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_38.v common 19.80 vpr 83.69 MiB 0.16 17688 -1 -1 1 0.65 -1 -1 42044 -1 -1 220 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 85700 22 19 5454 4521 1 2804 272 24 24 576 mult_36 auto 46.7 MiB 0.67 20832 83.7 MiB 1.05 0.01 4.04336 -3233.25 -4.04336 4.04336 1.83 0.00621722 0.00563179 0.445764 0.400404 66 38125 39 1.58331e+07 7.45668e+06 2.33135e+06 4047.49 9.82 2.16099 1.91609 29580 20 10910 12901 2351294 481635 4.77316 4.77316 -3932.02 -4.77316 0 0 2.91907e+06 5067.82 0.87 0.77 0.323241 0.292711 1690 1791 703 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_39.v common 17.41 vpr 84.39 MiB 0.16 18236 -1 -1 1 0.61 -1 -1 42176 -1 -1 228 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 86412 22 19 5629 4662 1 2910 280 24 24 576 mult_36 auto 47.6 MiB 0.83 19290 84.4 MiB 1.04 0.01 4.29396 -3187.85 -4.29396 4.29396 1.54 0.0049664 0.00440851 0.406363 0.358935 64 33286 27 1.58331e+07 7.56943e+06 2.26035e+06 3924.22 7.79 1.92031 1.69552 27310 17 10178 11869 2289704 505068 4.66986 4.66986 -3778.39 -4.66986 0 0 2.84938e+06 4946.85 0.91 0.64 0.275797 0.250348 1742 1846 722 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_40.v common 23.63 vpr 84.73 MiB 0.23 18256 -1 -1 1 0.67 -1 -1 42188 -1 -1 232 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 86768 22 19 5703 4719 1 2952 284 24 24 576 mult_36 auto 48.4 MiB 0.68 19277 84.7 MiB 1.18 0.02 4.04336 -3189.28 -4.04336 4.04336 1.55 0.005933 0.00529733 0.443955 0.39193 60 36997 48 1.58331e+07 7.62581e+06 2.13333e+06 3703.69 13.68 2.32347 2.04717 27810 20 11223 13242 2197264 497527 4.41926 4.41926 -3854 -4.41926 0 0 2.67122e+06 4637.53 0.91 0.66 0.31159 0.281753 1771 1865 741 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_41.v common 18.19 vpr 86.02 MiB 0.27 18888 -1 -1 1 0.74 -1 -1 42868 -1 -1 240 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88080 22 19 5950 4932 1 3067 293 24 24 576 mult_36 auto 49.3 MiB 0.81 20862 86.0 MiB 1.22 0.01 4.16866 -3487.48 -4.16866 4.16866 1.50 0.00530928 0.00469299 0.473918 0.418644 66 35235 37 1.58331e+07 8.13456e+06 2.33135e+06 4047.49 8.01 2.26726 2.00421 28798 16 10242 12221 1875595 417392 4.54456 4.54456 -3969.67 -4.54456 0 0 2.91907e+06 5067.82 0.91 0.62 0.302791 0.27621 1841 1956 760 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_42.v common 19.60 vpr 86.34 MiB 0.21 19052 -1 -1 1 0.72 -1 -1 42736 -1 -1 242 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 88408 22 19 6024 4989 1 3108 295 24 24 576 mult_36 auto 49.6 MiB 0.75 22110 86.3 MiB 1.05 0.01 4.29396 -3478.92 -4.29396 4.29396 1.47 0.00526284 0.00466028 0.398021 0.351992 64 37181 41 1.58331e+07 8.16275e+06 2.26035e+06 3924.22 9.72 2.5972 2.30374 30016 16 10269 12480 2036425 436418 4.79516 4.79516 -4316.09 -4.79516 0 0 2.84938e+06 4946.85 0.86 0.72 0.343227 0.309999 1869 1975 779 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_43.v common 17.86 vpr 87.38 MiB 0.17 19236 -1 -1 1 0.83 -1 -1 42964 -1 -1 250 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 89480 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 50.4 MiB 0.78 21553 87.4 MiB 1.20 0.02 3.91806 -3552.26 -3.91806 3.91806 1.46 0.00563738 0.00500487 0.452853 0.39942 66 35434 24 1.58331e+07 8.2755e+06 2.33135e+06 4047.49 7.37 2.06399 1.81368 29314 18 10687 12289 2004516 449496 4.54456 4.54456 -4044.18 -4.54456 0 0 2.91907e+06 5067.82 0.96 0.76 0.374385 0.341264 1921 2030 798 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_44.v common 18.44 vpr 87.45 MiB 0.20 19440 -1 -1 1 1.13 -1 -1 42988 -1 -1 253 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 89544 22 19 6272 5186 1 3255 306 24 24 576 mult_36 auto 50.7 MiB 0.87 21601 87.4 MiB 1.10 0.02 4.04336 -3549.86 -4.04336 4.04336 1.50 0.00602594 0.00541955 0.410756 0.366303 68 35331 23 1.58331e+07 8.31778e+06 2.39371e+06 4155.74 7.61 2.05606 1.82191 29606 17 10622 12522 1931708 422867 4.52256 4.52256 -4102.63 -4.52256 0 0 2.98162e+06 5176.42 0.91 0.68 0.341678 0.30991 1949 2049 817 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_45.v common 24.45 vpr 88.40 MiB 0.17 19892 -1 -1 1 1.18 -1 -1 43660 -1 -1 262 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 90520 22 19 6485 5365 1 3364 316 24 24 576 mult_36 auto 51.6 MiB 0.81 23305 88.4 MiB 1.16 0.02 4.29396 -3689.68 -4.29396 4.29396 1.46 0.00613564 0.00547883 0.443855 0.392539 68 39690 45 1.58331e+07 8.84063e+06 2.39371e+06 4155.74 13.17 2.65451 2.34127 31696 16 11126 13097 2028978 432950 4.64786 4.64786 -4523.75 -4.64786 0 0 2.98162e+06 5176.42 1.20 0.92 0.462278 0.421671 2011 2122 836 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_46.v common 19.36 vpr 88.58 MiB 0.23 19904 -1 -1 1 0.91 -1 -1 43604 -1 -1 266 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 90708 22 19 6559 5422 1 3406 320 24 24 576 mult_36 auto 51.9 MiB 0.95 22043 88.6 MiB 1.16 0.02 4.04336 -3659.63 -4.04336 4.04336 1.51 0.00611787 0.00533415 0.432171 0.383126 64 36255 34 1.58331e+07 8.897e+06 2.26035e+06 3924.22 8.22 2.39881 2.12265 30608 20 11409 13501 2003774 465600 4.41926 4.41926 -4170.51 -4.41926 0 0 2.84938e+06 4946.85 1.05 0.71 0.413374 0.376342 2040 2141 855 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_47.v common 19.27 vpr 89.93 MiB 0.22 20336 -1 -1 1 1.38 -1 -1 44040 -1 -1 273 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92092 22 19 6735 5564 1 3513 327 24 24 576 mult_36 auto 53.2 MiB 0.87 23656 89.9 MiB 1.11 0.02 4.16866 -3878.02 -4.16866 4.16866 1.53 0.00627253 0.0055848 0.408909 0.361971 70 37149 22 1.58331e+07 8.99566e+06 2.45377e+06 4260.01 8.22 2.2344 1.97951 31949 15 11272 13261 2003325 447336 4.54456 4.54456 -4350.05 -4.54456 0 0 3.09179e+06 5367.68 0.90 0.75 0.407627 0.370452 2092 2196 874 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_48.v common 24.06 vpr 90.14 MiB 0.26 20444 -1 -1 1 1.39 -1 -1 44008 -1 -1 276 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 92300 22 19 6809 5621 1 3556 330 24 24 576 mult_36 auto 53.4 MiB 0.86 25552 90.1 MiB 1.31 0.02 4.16866 -3960.45 -4.16866 4.16866 1.62 0.0063781 0.00568641 0.471864 0.418585 70 41834 38 1.58331e+07 9.03794e+06 2.45377e+06 4260.01 11.67 2.5553 2.25801 34487 19 12290 14665 2360986 518891 4.66986 4.66986 -4518.48 -4.66986 0 0 3.09179e+06 5367.68 1.18 1.03 0.544406 0.494667 2121 2215 893 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_49.v common 26.22 vpr 91.52 MiB 0.22 21108 -1 -1 1 0.88 -1 -1 44464 -1 -1 287 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 93716 22 19 7094 5872 1 3671 342 24 24 576 mult_36 auto 54.8 MiB 1.00 26339 91.5 MiB 1.36 0.02 4.04336 -4133.54 -4.04336 4.04336 1.50 0.00708956 0.00633101 0.514823 0.455509 68 46053 50 1.58331e+07 9.58898e+06 2.39371e+06 4155.74 15.16 3.06173 2.70729 35423 19 12739 15099 2393926 528258 4.52256 4.52256 -4849.68 -4.52256 0 0 2.98162e+06 5176.42 0.90 0.77 0.388578 0.35351 2200 2324 912 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_50.v common 23.07 vpr 92.27 MiB 0.21 21244 -1 -1 1 1.01 -1 -1 44436 -1 -1 290 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 94484 22 19 7168 5929 1 3712 345 24 24 576 mult_36 auto 55.4 MiB 1.01 25974 92.3 MiB 1.29 0.02 4.04336 -4071.53 -4.04336 4.04336 1.47 0.00662019 0.00589122 0.471179 0.416821 70 42382 42 1.58331e+07 9.63126e+06 2.45377e+06 4260.01 11.33 2.73613 2.41407 34926 16 12583 14592 2357841 524071 4.52256 4.52256 -4778.29 -4.52256 0 0 3.09179e+06 5367.68 1.02 0.76 0.418873 0.382551 2229 2343 931 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_51.v common 22.14 vpr 92.49 MiB 0.18 21800 -1 -1 1 1.54 -1 -1 44636 -1 -1 297 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 94712 22 19 7344 6071 1 3815 352 24 24 576 mult_36 auto 55.9 MiB 0.94 27020 92.5 MiB 1.21 0.02 4.04336 -4276 -4.04336 4.04336 1.52 0.00720525 0.00647523 0.437203 0.389141 74 42765 31 1.58331e+07 9.72992e+06 2.56259e+06 4448.94 10.10 2.97436 2.63243 36442 15 12584 14833 2693717 571539 4.52256 4.52256 -4913.71 -4.52256 0 0 3.19068e+06 5539.38 1.00 0.75 0.371634 0.339579 2282 2398 950 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_pipe_52.v common 21.60 vpr 92.67 MiB 0.28 21704 -1 -1 1 1.56 -1 -1 44572 -1 -1 301 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 94896 22 19 7418 6128 1 3860 356 24 24 576 mult_36 auto 56.2 MiB 0.99 26180 92.7 MiB 1.30 0.02 4.04336 -4267.39 -4.04336 4.04336 1.47 0.00702759 0.00627523 0.478127 0.425471 72 41442 42 1.58331e+07 9.78629e+06 2.50747e+06 4353.24 9.52 2.82766 2.50753 34540 18 11971 14276 2338490 522044 4.64786 4.64786 -4939.73 -4.64786 0 0 3.14081e+06 5452.80 0.98 0.75 0.389125 0.354096 2310 2417 969 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_14.v common 7.15 vpr 64.10 MiB 0.06 9300 -1 -1 1 0.17 -1 -1 34448 -1 -1 58 22 0 4 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 65640 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 26.4 MiB 1.14 4137 64.1 MiB 0.21 0.00 7.33503 -335.366 -7.33503 7.33503 0.50 0.000816238 0.000700391 0.0726186 0.0631129 44 8666 28 6.54114e+06 2.40144e+06 686998. 2683.59 2.99 0.397843 0.357082 6539 24 5808 6594 1002574 249137 7.96433 7.96433 -430.55 -7.96433 0 0 871168. 3403.00 0.28 0.29 0.0944457 0.0870931 421 285 247 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_15.v common 6.81 vpr 64.64 MiB 0.07 9492 -1 -1 1 0.13 -1 -1 34432 -1 -1 61 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66192 22 19 1344 989 1 791 107 16 16 256 mult_36 auto 26.9 MiB 1.02 4696 64.6 MiB 0.23 0.01 7.26587 -334.628 -7.26587 7.26587 0.52 0.00151306 0.00132064 0.077868 0.0674263 46 9211 29 6.54114e+06 2.83972e+06 723233. 2825.13 2.52 0.378754 0.337431 7081 24 4903 5535 891528 221419 7.60754 7.60754 -442.687 -7.60754 0 0 890343. 3477.90 0.38 0.41 0.157564 0.145547 453 304 266 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_16.v common 10.15 vpr 65.09 MiB 0.06 9736 -1 -1 1 0.14 -1 -1 34800 -1 -1 65 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66648 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 27.5 MiB 1.57 5022 65.1 MiB 0.20 0.00 7.39682 -360.721 -7.39682 7.39682 0.72 0.000893626 0.000762148 0.0637254 0.0547853 40 9898 38 6.54114e+06 2.89609e+06 616420. 2407.89 5.07 0.566181 0.508375 8403 24 8168 8849 1796830 426574 8.25798 8.25798 -478.465 -8.25798 0 0 808720. 3159.06 0.22 0.33 0.076497 0.0697984 481 323 285 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_17.v common 9.19 vpr 65.30 MiB 0.08 10112 -1 -1 1 0.22 -1 -1 34548 -1 -1 71 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 66868 22 19 1518 1112 1 895 117 16 16 256 mult_36 auto 27.7 MiB 1.59 5509 65.3 MiB 0.26 0.00 7.9168 -385.306 -7.9168 7.9168 0.52 0.000987214 0.000853941 0.0837517 0.072553 46 11580 40 6.54114e+06 2.98066e+06 723233. 2825.13 4.38 0.522944 0.468841 8535 23 6423 7193 1481949 354046 8.26102 8.26102 -492.429 -8.26102 0 0 890343. 3477.90 0.21 0.29 0.0777155 0.071224 514 342 304 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_18.v common 7.87 vpr 66.07 MiB 0.08 10240 -1 -1 1 0.21 -1 -1 35208 -1 -1 74 22 0 5 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 67660 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 28.0 MiB 1.39 5708 66.1 MiB 0.19 0.00 7.96791 -408.285 -7.96791 7.96791 0.50 0.00108019 0.000925405 0.0691289 0.0596167 48 10133 38 6.54114e+06 3.02294e+06 755748. 2952.14 3.14 0.643489 0.574653 8236 23 5964 6907 1066835 271700 8.43362 8.43362 -663.132 -8.43362 0 0 916467. 3579.95 0.31 0.35 0.107845 0.09894 542 361 323 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_19.v common 7.54 vpr 66.69 MiB 0.08 10404 -1 -1 1 0.23 -1 -1 36280 -1 -1 79 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68288 22 19 1688 1231 1 993 126 16 16 256 mult_36 auto 28.8 MiB 1.29 6258 66.7 MiB 0.27 0.00 8.09321 -401.32 -8.09321 8.09321 0.51 0.00113849 0.000986735 0.0885056 0.0770817 50 11472 32 6.54114e+06 3.48941e+06 787708. 3076.99 3.00 0.487288 0.433165 9132 25 6698 7696 1281376 312725 8.56788 8.56788 -614.036 -8.56788 0 0 943753. 3686.54 0.24 0.28 0.0902291 0.0823014 573 380 342 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_20.v common 8.09 vpr 67.02 MiB 0.07 10876 -1 -1 1 0.20 -1 -1 35616 -1 -1 81 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68624 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 29.1 MiB 1.87 6273 67.0 MiB 0.24 0.00 8.08841 -425.214 -8.08841 8.08841 0.51 0.00118974 0.00102834 0.0794231 0.0690072 50 12073 29 6.54114e+06 3.51759e+06 787708. 3076.99 3.13 0.494299 0.439386 9329 24 6793 7652 1219952 300543 8.54612 8.54612 -595.179 -8.54612 0 0 943753. 3686.54 0.22 0.28 0.0942745 0.0858863 601 399 361 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_21.v common 8.71 vpr 67.15 MiB 0.09 10928 -1 -1 1 0.24 -1 -1 35748 -1 -1 85 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68760 22 19 1859 1351 1 1092 132 16 16 256 mult_36 auto 29.4 MiB 1.43 6925 67.1 MiB 0.24 0.00 7.85556 -441.946 -7.85556 7.85556 0.50 0.00122122 0.0010607 0.0789413 0.0688032 54 12681 48 6.54114e+06 3.57397e+06 829453. 3240.05 4.05 0.60274 0.537967 9993 24 6869 8083 1523008 370796 8.26943 8.26943 -732.67 -8.26943 0 0 1.02522e+06 4004.78 0.23 0.34 0.110361 0.100801 632 418 380 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_22.v common 8.92 vpr 67.34 MiB 0.09 11096 -1 -1 1 0.21 -1 -1 35680 -1 -1 90 22 0 6 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 68956 22 19 1933 1408 1 1130 137 16 16 256 mult_36 auto 29.8 MiB 1.89 7013 67.3 MiB 0.41 0.01 8.18632 -434.307 -8.18632 8.18632 0.79 0.00250419 0.00219393 0.154579 0.136092 50 12777 33 6.54114e+06 3.64444e+06 787708. 3076.99 3.13 0.60428 0.537649 10467 23 6644 7601 1269666 311177 8.60477 8.60477 -644.791 -8.60477 0 0 943753. 3686.54 0.22 0.29 0.102794 0.0938924 661 437 399 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_23.v common 11.72 vpr 67.87 MiB 0.11 11400 -1 -1 1 0.27 -1 -1 35744 -1 -1 94 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69496 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 30.0 MiB 1.62 7168 67.9 MiB 0.35 0.00 7.85361 -454.032 -7.85361 7.85361 0.72 0.00155929 0.00136484 0.121908 0.107213 48 15141 49 8.06603e+06 4.09681e+06 991730. 3060.90 5.85 0.768902 0.686585 11740 28 8810 10065 2089800 474608 9.30263 9.30263 -675.084 -9.30263 0 0 1.20291e+06 3712.69 0.30 0.49 0.148893 0.13488 693 456 418 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_24.v common 12.84 vpr 68.35 MiB 0.10 11528 -1 -1 1 0.22 -1 -1 35924 -1 -1 97 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 69988 22 19 2105 1529 1 1230 145 18 18 324 mult_36 auto 30.6 MiB 1.59 7295 68.3 MiB 0.38 0.00 7.84456 -513.918 -7.84456 7.84456 0.70 0.00148976 0.00129844 0.124931 0.108786 48 14839 41 8.06603e+06 4.13909e+06 991730. 3060.90 6.66 0.894611 0.799019 11320 25 8536 9791 1643243 384251 8.78158 8.78158 -703.981 -8.78158 0 0 1.20291e+06 3712.69 0.47 0.52 0.193426 0.176169 721 475 437 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_25.v common 12.36 vpr 68.84 MiB 0.12 11884 -1 -1 1 0.22 -1 -1 36224 -1 -1 101 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70488 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 31.3 MiB 1.70 8373 68.8 MiB 0.32 0.01 7.97891 -513.776 -7.97891 7.97891 1.06 0.00181577 0.00157933 0.113924 0.100236 52 16425 33 8.06603e+06 4.19547e+06 1.06151e+06 3276.26 5.13 0.939506 0.844888 12395 24 9528 10780 2099879 490272 8.75293 8.75293 -794.277 -8.75293 0 0 1.31159e+06 4048.11 0.55 0.66 0.216216 0.198166 751 494 456 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_26.v common 10.06 vpr 68.85 MiB 0.12 11944 -1 -1 1 0.25 -1 -1 36540 -1 -1 105 22 0 7 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 70500 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 31.3 MiB 1.83 8137 68.8 MiB 0.35 0.00 8.09321 -524.175 -8.09321 8.09321 0.71 0.00162464 0.00142268 0.127062 0.111159 52 15441 28 8.06603e+06 4.25184e+06 1.06151e+06 3276.26 3.84 0.659633 0.586399 12084 26 9909 11220 2027430 469713 8.43237 8.43237 -739.391 -8.43237 0 0 1.31159e+06 4048.11 0.37 0.44 0.134812 0.12265 779 513 475 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_27.v common 11.77 vpr 69.60 MiB 0.11 12268 -1 -1 1 0.22 -1 -1 36416 -1 -1 111 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71268 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 31.9 MiB 1.80 8871 69.6 MiB 0.37 0.00 8.10615 -543.237 -8.10615 8.10615 0.72 0.00175859 0.00153938 0.133143 0.116507 54 16702 38 8.06603e+06 4.73242e+06 1.08842e+06 3359.33 5.56 0.832241 0.743408 12994 23 10086 11217 1894337 443834 8.72322 8.72322 -754.472 -8.72322 0 0 1.34436e+06 4149.26 0.33 0.41 0.133059 0.121659 817 532 494 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_28.v common 12.11 vpr 69.58 MiB 0.11 12208 -1 -1 1 0.20 -1 -1 36496 -1 -1 114 22 0 8 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71252 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 32.0 MiB 2.19 9597 69.6 MiB 0.42 0.01 7.98086 -587.296 -7.98086 7.98086 0.69 0.00187804 0.00163737 0.130525 0.114383 56 16472 34 8.06603e+06 4.7747e+06 1.11497e+06 3441.27 5.51 0.764623 0.680367 14006 24 10492 11830 2148696 484750 8.70118 8.70118 -945.76 -8.70118 0 0 1.37338e+06 4238.83 0.34 0.46 0.14028 0.128186 845 551 513 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_29.v common 16.12 vpr 70.25 MiB 0.10 12436 -1 -1 1 0.29 -1 -1 36820 -1 -1 118 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 71932 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 32.9 MiB 1.98 9948 70.2 MiB 0.44 0.01 7.9436 -521.239 -7.9436 7.9436 1.22 0.00203711 0.00177344 0.152966 0.134497 50 19741 46 1.31202e+07 5.22708e+06 1.59181e+06 3288.87 7.87 0.951354 0.84871 14918 25 12011 13714 2569420 566811 9.05292 9.05292 -986.103 -9.05292 0 0 1.90554e+06 3937.06 0.55 0.62 0.176074 0.161113 881 570 532 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_30.v common 49.81 vpr 71.14 MiB 0.13 12612 -1 -1 1 0.24 -1 -1 36492 -1 -1 123 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 72844 22 19 2639 1910 1 1548 173 22 22 484 mult_36 auto 33.5 MiB 2.12 10311 71.1 MiB 0.54 0.01 7.94166 -567.92 -7.94166 7.94166 1.41 0.00213398 0.00186898 0.184554 0.161819 48 21215 50 1.31202e+07 5.29755e+06 1.52614e+06 3153.19 40.95 1.87114 1.66891 16446 26 13710 15605 3196615 707302 8.93283 8.93283 -1156.73 -8.93283 0 0 1.85176e+06 3825.95 0.71 0.66 0.181829 0.165958 910 589 551 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_31.v common 14.20 vpr 71.41 MiB 0.14 12960 -1 -1 1 0.39 -1 -1 37116 -1 -1 128 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73128 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 33.9 MiB 2.31 10203 71.4 MiB 0.66 0.01 7.83356 -630.999 -7.83356 7.83356 1.21 0.00510465 0.00445226 0.22237 0.194984 50 19126 31 1.31202e+07 5.36802e+06 1.59181e+06 3288.87 5.67 0.894836 0.795458 15396 25 12072 13992 2412104 549539 8.47747 8.47747 -1460.95 -8.47747 0 0 1.90554e+06 3937.06 0.52 0.53 0.16078 0.146384 946 608 570 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_32.v common 15.00 vpr 71.79 MiB 0.12 13132 -1 -1 1 0.38 -1 -1 36348 -1 -1 131 22 0 9 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73516 22 19 2818 2038 1 1656 181 22 22 484 mult_36 auto 34.2 MiB 2.57 10146 71.8 MiB 0.49 0.01 8.08841 -573.723 -8.08841 8.08841 1.24 0.00216248 0.00189417 0.165676 0.145155 54 19211 41 1.31202e+07 5.4103e+06 1.67518e+06 3461.11 6.39 0.974213 0.868345 14832 23 9977 11584 1648418 390660 8.48183 8.48183 -1006.67 -8.48183 0 0 2.06816e+06 4273.05 0.56 0.43 0.163926 0.149783 974 627 589 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_33.v common 16.38 vpr 71.66 MiB 0.16 13540 -1 -1 1 0.39 -1 -1 37380 -1 -1 137 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73376 22 19 2923 2109 1 1725 188 22 22 484 mult_36 auto 34.0 MiB 2.06 11285 71.7 MiB 0.57 0.01 8.55565 -630.916 -8.55565 8.55565 1.14 0.00241616 0.00210732 0.186361 0.163788 52 23690 42 1.31202e+07 5.89087e+06 1.63434e+06 3376.74 7.63 1.06562 0.95297 16934 24 13226 15158 2930622 670166 9.42547 9.42547 -1148.88 -9.42547 0 0 2.01763e+06 4168.66 0.57 0.62 0.169294 0.154574 1009 646 608 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_34.v common 18.40 vpr 71.77 MiB 0.12 13704 -1 -1 1 0.55 -1 -1 37928 -1 -1 140 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 73496 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 34.3 MiB 3.62 11711 71.8 MiB 0.77 0.01 8.4041 -701.178 -8.4041 8.4041 1.60 0.00312797 0.00278688 0.286374 0.258585 54 21873 44 1.31202e+07 5.93316e+06 1.67518e+06 3461.11 7.10 1.2049 1.08328 17141 29 12057 14042 2445562 564001 9.36291 9.36291 -1123.17 -9.36291 0 0 2.06816e+06 4273.05 0.60 0.62 0.203726 0.184971 1037 665 627 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_35.v common 16.91 vpr 72.33 MiB 0.13 14252 -1 -1 1 0.41 -1 -1 36972 -1 -1 145 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74064 22 19 3101 2236 1 1830 196 22 22 484 mult_36 auto 34.9 MiB 3.18 11904 72.3 MiB 0.64 0.01 8.65665 -674.154 -8.65665 8.65665 1.36 0.00256383 0.00227512 0.216602 0.190569 54 21591 34 1.31202e+07 6.00363e+06 1.67518e+06 3461.11 6.63 1.00281 0.892062 17076 24 11985 13627 2385333 554544 9.60431 9.60431 -1038.8 -9.60431 0 0 2.06816e+06 4273.05 0.58 0.55 0.178476 0.162643 1072 684 646 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_36.v common 20.80 vpr 72.86 MiB 0.18 14332 -1 -1 1 0.64 -1 -1 37632 -1 -1 148 22 0 10 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74604 22 19 3175 2293 1 1870 199 22 22 484 mult_36 auto 35.3 MiB 3.38 12550 72.9 MiB 0.67 0.01 8.5026 -695.375 -8.5026 8.5026 1.73 0.002731 0.00240279 0.244235 0.217913 54 24237 45 1.31202e+07 6.04591e+06 1.67518e+06 3461.11 8.74 1.47555 1.32581 18556 25 14557 16459 3558780 815029 9.49042 9.49042 -1245.85 -9.49042 0 0 2.06816e+06 4273.05 0.73 1.18 0.32913 0.303964 1100 703 665 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_37.v common 19.55 vpr 73.09 MiB 0.15 14632 -1 -1 1 0.49 -1 -1 37972 -1 -1 152 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 74840 22 19 3280 2364 1 1940 204 24 24 576 mult_36 auto 35.6 MiB 3.17 13649 73.1 MiB 0.67 0.01 8.90955 -789.231 -8.90955 8.90955 1.42 0.00282377 0.00251455 0.2088 0.184784 56 23083 50 1.58331e+07 6.49829e+06 2.03561e+06 3534.04 8.22 1.16711 1.04034 19589 22 12385 14419 2952330 676636 9.63921 9.63921 -1417.83 -9.63921 0 0 2.50747e+06 4353.24 0.90 0.73 0.234192 0.216178 1135 722 684 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_38.v common 19.05 vpr 73.68 MiB 0.16 14368 -1 -1 1 0.45 -1 -1 37960 -1 -1 157 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 75444 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 36.4 MiB 3.73 12892 73.7 MiB 0.75 0.01 8.78 -776.105 -8.78 8.78 1.68 0.0030013 0.00266984 0.243152 0.215107 54 23278 32 1.58331e+07 6.56876e+06 1.98675e+06 3449.22 7.08 1.20192 1.07407 18131 24 12447 14099 2607601 607828 9.73117 9.73117 -1164.18 -9.73117 0 0 2.45377e+06 4260.01 0.72 0.70 0.251729 0.230243 1164 741 703 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_39.v common 21.19 vpr 74.26 MiB 0.13 14740 -1 -1 1 0.42 -1 -1 37608 -1 -1 161 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76040 22 19 3457 2490 1 2042 213 24 24 576 mult_36 auto 36.7 MiB 3.32 14003 74.3 MiB 0.82 0.01 8.98546 -801.291 -8.98546 8.98546 1.99 0.00317212 0.00282305 0.257002 0.227921 54 26734 49 1.58331e+07 6.62513e+06 1.98675e+06 3449.22 8.98 1.27594 1.13866 19950 24 12268 14046 2892518 658425 9.41622 9.41622 -1297.92 -9.41622 0 0 2.45377e+06 4260.01 0.92 0.76 0.236234 0.216179 1198 760 722 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_40.v common 19.20 vpr 74.54 MiB 0.14 14896 -1 -1 1 0.51 -1 -1 38160 -1 -1 164 22 0 11 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76324 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 37.3 MiB 3.85 14188 74.5 MiB 0.72 0.01 8.91575 -832.089 -8.91575 8.91575 1.68 0.00320532 0.00285671 0.233175 0.20677 60 22999 31 1.58331e+07 6.66742e+06 2.13333e+06 3703.69 7.09 1.13327 1.01043 19101 22 10104 11691 1955987 448661 8.93322 8.93322 -1291.23 -8.93322 0 0 2.67122e+06 4637.53 0.81 0.55 0.197419 0.180486 1226 779 741 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_41.v common 22.24 vpr 74.90 MiB 0.17 15152 -1 -1 1 0.46 -1 -1 37624 -1 -1 170 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 76700 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 37.7 MiB 3.60 14967 74.9 MiB 0.75 0.01 8.84916 -848.995 -8.84916 8.84916 2.02 0.00319733 0.00284896 0.252903 0.224125 54 27986 43 1.58331e+07 7.14798e+06 1.98675e+06 3449.22 9.51 1.49016 1.3322 20568 26 14834 16970 2675772 622256 9.67697 9.67697 -1620.16 -9.67697 0 0 2.45377e+06 4260.01 1.00 0.96 0.323144 0.295333 1261 798 760 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_42.v common 21.79 vpr 75.45 MiB 0.21 15220 -1 -1 1 0.73 -1 -1 38040 -1 -1 173 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77264 22 19 3708 2673 1 2186 226 24 24 576 mult_36 auto 37.9 MiB 4.23 15155 75.5 MiB 0.68 0.01 9.05205 -808.34 -9.05205 9.05205 1.52 0.00332327 0.00295489 0.228089 0.201611 58 25713 43 1.58331e+07 7.19026e+06 2.08734e+06 3623.85 9.03 1.26737 1.12715 20964 23 13127 15232 2892808 666743 9.56052 9.56052 -1318.97 -9.56052 0 0 2.61600e+06 4541.67 0.77 0.74 0.245956 0.223699 1289 817 779 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_43.v common 21.10 vpr 75.84 MiB 0.21 15576 -1 -1 1 0.73 -1 -1 39024 -1 -1 178 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77664 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 38.3 MiB 4.14 15129 75.8 MiB 0.79 0.01 8.88895 -1010.91 -8.88895 8.88895 1.46 0.00340023 0.00302221 0.264517 0.233609 56 25729 32 1.58331e+07 7.26073e+06 2.03561e+06 3534.04 8.66 1.25107 1.11184 21287 24 14900 16918 2904930 690610 9.64242 9.64242 -1501.86 -9.64242 0 0 2.50747e+06 4353.24 0.69 0.68 0.226094 0.206075 1323 836 798 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_44.v common 23.11 vpr 75.96 MiB 0.21 15540 -1 -1 1 0.54 -1 -1 38136 -1 -1 181 22 0 12 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 77788 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 38.7 MiB 4.31 16252 76.0 MiB 0.78 0.01 8.79525 -850.155 -8.79525 8.79525 1.45 0.00358296 0.00315069 0.252706 0.223608 58 27476 45 1.58331e+07 7.30301e+06 2.08734e+06 3623.85 10.51 1.56812 1.39899 22390 24 14551 16637 3377799 774449 9.33666 9.33666 -1478.93 -9.33666 0 0 2.61600e+06 4541.67 0.82 0.80 0.25464 0.231981 1351 855 817 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_45.v common 22.86 vpr 76.45 MiB 0.15 15832 -1 -1 1 0.58 -1 -1 40080 -1 -1 186 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78284 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 39.2 MiB 4.05 16595 76.4 MiB 0.85 0.01 8.89936 -923.173 -8.89936 8.89936 1.45 0.00374981 0.00335898 0.273013 0.242723 60 28834 40 1.58331e+07 7.76948e+06 2.13333e+06 3703.69 10.19 1.43647 1.27935 22855 25 14149 16406 2825815 629599 9.19077 9.19077 -1559.41 -9.19077 0 0 2.67122e+06 4637.53 0.79 0.69 0.247639 0.225316 1387 874 836 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_46.v common 23.69 vpr 76.95 MiB 0.23 15936 -1 -1 1 0.51 -1 -1 40064 -1 -1 189 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78800 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 39.5 MiB 4.66 17181 77.0 MiB 0.96 0.01 8.9053 -851.376 -8.9053 8.9053 1.49 0.00374552 0.00332784 0.30292 0.269129 60 27738 48 1.58331e+07 7.81177e+06 2.13333e+06 3703.69 9.78 1.61603 1.44191 23149 22 15121 17374 3857662 866500 9.23171 9.23171 -1453.63 -9.23171 0 0 2.67122e+06 4637.53 0.91 0.98 0.263546 0.240727 1414 893 855 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_47.v common 21.75 vpr 77.07 MiB 0.24 16468 -1 -1 1 0.73 -1 -1 40204 -1 -1 194 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 78916 22 19 4167 2996 1 2465 248 24 24 576 mult_36 auto 40.0 MiB 4.74 17256 77.1 MiB 0.99 0.01 8.89936 -937.697 -8.89936 8.89936 1.51 0.00396949 0.0034942 0.306214 0.272328 64 26658 42 1.58331e+07 7.88224e+06 2.26035e+06 3924.22 7.99 1.53575 1.37222 22892 22 11938 13888 2738951 615424 9.26067 9.26067 -1492.12 -9.26067 0 0 2.84938e+06 4946.85 0.85 0.71 0.247386 0.226027 1449 912 874 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_48.v common 24.27 vpr 77.28 MiB 0.25 16496 -1 -1 1 0.78 -1 -1 40332 -1 -1 197 22 0 13 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79132 22 19 4241 3053 1 2504 251 24 24 576 mult_36 auto 40.1 MiB 5.59 17158 77.3 MiB 0.80 0.01 9.11076 -953.722 -9.11076 9.11076 1.48 0.00394436 0.00351393 0.252554 0.224375 60 29143 49 1.58331e+07 7.92452e+06 2.13333e+06 3703.69 9.47 1.58277 1.40962 23169 25 13366 15277 2514717 576905 9.45527 9.45527 -1448.89 -9.45527 0 0 2.67122e+06 4637.53 0.97 0.66 0.271997 0.247758 1477 931 893 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_49.v common 25.78 vpr 77.97 MiB 0.23 16904 -1 -1 1 0.53 -1 -1 40412 -1 -1 204 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 79840 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 40.6 MiB 4.56 18943 78.0 MiB 1.10 0.01 8.98546 -953.602 -8.98546 8.98546 1.68 0.00402407 0.00356886 0.346944 0.306769 64 31207 39 1.58331e+07 8.41918e+06 2.26035e+06 3924.22 11.45 1.62165 1.44028 25369 23 14240 16362 3660669 802427 9.37481 9.37481 -1754.16 -9.37481 0 0 2.84938e+06 4946.85 0.84 0.85 0.259953 0.236771 1512 950 912 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_50.v common 24.32 vpr 78.23 MiB 0.19 17308 -1 -1 1 0.57 -1 -1 40528 -1 -1 206 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80108 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 41.0 MiB 6.47 17787 78.2 MiB 0.89 0.01 9.0698 -993.854 -9.0698 9.0698 1.56 0.00419196 0.0037522 0.292025 0.25987 62 29466 40 1.58331e+07 8.44736e+06 2.19658e+06 3813.51 8.90 1.66277 1.48226 23246 24 14570 16831 2535721 599651 9.22937 9.22937 -1478.36 -9.22937 0 0 2.72095e+06 4723.87 0.80 0.78 0.340604 0.308457 1541 969 931 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_51.v common 26.98 vpr 78.95 MiB 0.24 17296 -1 -1 1 0.65 -1 -1 39172 -1 -1 211 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80844 22 19 4524 3251 1 2680 266 24 24 576 mult_36 auto 41.8 MiB 4.76 18202 78.9 MiB 1.02 0.01 8.86441 -1010.18 -8.86441 8.86441 1.50 0.00436055 0.00382882 0.320534 0.285641 60 29746 45 1.58331e+07 8.51783e+06 2.13333e+06 3703.69 12.41 2.13905 1.91641 24390 24 15023 17143 2697468 633030 9.16042 9.16042 -1669.79 -9.16042 0 0 2.67122e+06 4637.53 0.77 0.92 0.399839 0.362109 1576 988 950 19 0 0 - k6_frac_uripple_N8_22nm.xml fir_nopipe_52.v common 32.81 vpr 79.04 MiB 0.21 17484 -1 -1 1 0.63 -1 -1 41248 -1 -1 215 22 0 14 success v8.0.0-6799-gedbc4804d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-28T21:57:36 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 80940 22 19 4598 3308 1 2717 270 24 24 576 mult_36 auto 42.0 MiB 5.91 19125 79.0 MiB 1.11 0.02 9.2372 -1053.72 -9.2372 9.2372 1.46 0.00502329 0.00444984 0.357006 0.319515 58 32824 41 1.58331e+07 8.57421e+06 2.08734e+06 3623.85 17.24 1.69386 1.50812 25981 26 15202 17753 3004036 671189 9.50217 9.50217 -1614.05 -9.50217 0 0 2.61600e+06 4541.67 0.93 1.08 0.483246 0.439421 1605 1007 969 19 0 0 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_2ripple_N8_22nm.xml fir_pipe_14.v common 11.27 vpr 70.45 MiB 0.08 10424 -1 -1 1 0.27 -1 -1 35084 -1 -1 65 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72136 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 33.0 MiB 0.87 5366 70.4 MiB 0.69 0.01 3.77076 -1035.59 -3.77076 3.77076 0.61 0.0031809 0.0027707 0.235447 0.206725 58 11364 32 6.59459e+06 2.52492e+06 871168. 3403.00 5.95 0.813354 0.718203 26872 219187 -1 9253 19 4459 5017 908425 202125 0 0 908425 202125 4792 4531 0 0 38601 35201 0 0 49456 42088 0 0 4829 4563 0 0 404690 57597 0 0 406057 58145 0 0 4792 0 0 352 2010 2688 17233 236 1 4.27196 4.27196 -1275.82 -4.27196 0 0 1.09288e+06 4269.05 0.26 0.26 0.16 -1 -1 0.26 0.0974959 0.0888496 481 649 247 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_15.v common 13.65 vpr 71.05 MiB 0.06 10680 -1 -1 1 0.33 -1 -1 35936 -1 -1 72 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72756 22 19 2144 1789 1 1110 118 16 16 256 mult_36 auto 33.4 MiB 0.84 6094 71.1 MiB 0.45 0.01 4.02136 -1124.61 -4.02136 4.02136 0.73 0.00180083 0.00150368 0.136409 0.115409 66 11727 27 6.59459e+06 3.02225e+06 974584. 3806.97 8.75 1.44903 1.28613 28148 247068 -1 9508 16 4298 4938 816397 184971 0 0 816397 184971 4747 4382 0 0 36647 33388 0 0 47748 40533 0 0 4809 4453 0 0 360948 51908 0 0 361498 50307 0 0 4747 0 0 467 3664 3729 30254 222 8 4.39726 4.39726 -1333.61 -4.39726 0 0 1.22072e+06 4768.46 0.29 0.23 0.18 -1 -1 0.29 0.0938266 0.0858934 521 704 266 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_16.v common 13.24 vpr 71.64 MiB 0.13 10916 -1 -1 1 0.19 -1 -1 35876 -1 -1 74 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73360 22 19 2218 1846 1 1154 120 16 16 256 mult_36 auto 33.9 MiB 0.82 6705 71.6 MiB 0.89 0.01 3.89606 -1175.83 -3.89606 3.89606 0.93 0.0041163 0.00361442 0.313433 0.274823 60 13554 39 6.59459e+06 3.0512e+06 890343. 3477.90 7.13 1.24082 1.1037 27128 224764 -1 10853 27 5146 5941 1128590 279945 0 0 1128590 279945 5591 5188 0 0 43361 39471 0 0 57990 47922 0 0 5593 5212 0 0 503103 93557 0 0 512952 88595 0 0 5591 0 0 464 4094 3407 28507 369 1 4.39726 4.39726 -1456.06 -4.39726 0 0 1.11577e+06 4358.47 0.27 0.41 0.19 -1 -1 0.27 0.153291 0.138278 540 723 285 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_17.v common 13.07 vpr 73.32 MiB 0.10 11584 -1 -1 1 0.30 -1 -1 36728 -1 -1 83 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75084 22 19 2536 2130 1 1256 129 16 16 256 mult_36 auto 35.8 MiB 1.23 7097 73.3 MiB 0.41 0.01 3.89606 -1305 -3.89606 3.89606 0.60 0.00224231 0.00191333 0.135123 0.116004 66 12904 28 6.59459e+06 3.18149e+06 974584. 3806.97 7.51 1.28603 1.13961 28148 247068 -1 10701 20 4792 5387 942343 212307 0 0 942343 212307 5154 4832 0 0 39129 35538 0 0 52405 43936 0 0 5170 4858 0 0 419696 60605 0 0 420789 62538 0 0 5154 0 0 375 2504 2617 20633 247 15 4.39726 4.39726 -1591.94 -4.39726 0 0 1.22072e+06 4768.46 0.31 0.32 0.29 -1 -1 0.31 0.129401 0.117627 617 851 304 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_18.v common 10.46 vpr 73.55 MiB 0.10 11856 -1 -1 1 0.37 -1 -1 36624 -1 -1 86 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75312 22 19 2610 2187 1 1305 132 16 16 256 mult_36 auto 36.2 MiB 1.03 7245 73.5 MiB 0.70 0.01 3.89606 -1380.69 -3.89606 3.89606 0.58 0.00240423 0.00204717 0.226648 0.195204 64 14771 30 6.59459e+06 3.22491e+06 943753. 3686.54 4.80 1.09898 0.961795 27892 240595 -1 11408 18 5181 5899 1055496 237831 0 0 1055496 237831 5620 5299 0 0 44452 40248 0 0 58814 49667 0 0 5693 5387 0 0 474135 68095 0 0 466782 69135 0 0 5620 0 0 456 3909 3538 26086 292 14 4.39726 4.39726 -1612.74 -4.39726 0 0 1.19033e+06 4649.74 0.35 0.31 0.18 -1 -1 0.35 0.124842 0.11382 636 870 323 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_19.v common 10.63 vpr 74.36 MiB 0.10 12076 -1 -1 1 0.43 -1 -1 36892 -1 -1 91 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76148 22 19 2778 2321 1 1401 138 16 16 256 mult_36 auto 37.1 MiB 1.13 8014 74.4 MiB 0.55 0.01 4.02136 -1450.91 -4.02136 4.02136 0.77 0.00293179 0.00254451 0.195103 0.170986 70 14162 31 6.59459e+06 3.69329e+06 1.02522e+06 4004.78 4.48 1.12004 0.989713 28912 262511 -1 11956 15 5075 5923 934815 218802 0 0 934815 218802 5373 5115 0 0 44130 39792 0 0 57374 48410 0 0 5384 5163 0 0 410271 60288 0 0 412283 60034 0 0 5373 0 0 315 3086 2625 6489 645 193 4.27196 4.27196 -1778.69 -4.27196 0 0 1.29210e+06 5047.26 0.30 0.29 0.20 -1 -1 0.30 0.128369 0.117788 676 925 342 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_20.v common 15.88 vpr 74.84 MiB 0.11 12264 -1 -1 1 0.48 -1 -1 36768 -1 -1 93 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76632 22 19 2852 2378 1 1441 140 16 16 256 mult_36 auto 37.5 MiB 1.56 7863 74.8 MiB 1.13 0.02 4.02136 -1481.38 -4.02136 4.02136 0.91 0.00564452 0.00496592 0.383056 0.3375 74 13963 33 6.59459e+06 3.72224e+06 1.07073e+06 4182.55 8.55 1.65838 1.46244 29424 273870 -1 11977 15 5212 6035 892961 203454 0 0 892961 203454 5515 5257 0 0 39774 35744 0 0 53660 44223 0 0 5524 5296 0 0 390725 57129 0 0 397763 55805 0 0 5515 0 0 319 2489 2849 6838 574 89 4.52256 4.52256 -1745.6 -4.52256 0 0 1.33358e+06 5209.30 0.32 0.27 0.23 -1 -1 0.32 0.127413 0.116902 695 944 361 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_21.v common 12.07 vpr 75.82 MiB 0.12 12784 -1 -1 1 0.47 -1 -1 37424 -1 -1 97 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77644 22 19 3057 2549 1 1544 144 16 16 256 mult_36 auto 38.5 MiB 1.36 8892 75.8 MiB 0.59 0.01 4.02136 -1636.32 -4.02136 4.02136 0.59 0.00272659 0.00231647 0.192715 0.16542 70 16111 48 6.59459e+06 3.78015e+06 1.02522e+06 4004.78 5.86 1.17762 1.02855 28912 262511 -1 13171 19 5821 6948 1092361 257777 0 0 1092361 257777 6165 5857 0 0 51617 46407 0 0 67414 56422 0 0 6175 5900 0 0 480563 71067 0 0 480427 72124 0 0 6165 0 0 359 3917 3495 7714 858 89 4.27196 4.27196 -2018.68 -4.27196 0 0 1.29210e+06 5047.26 0.36 0.38 0.22 -1 -1 0.36 0.167673 0.152452 742 1017 380 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_22.v common 19.56 vpr 76.44 MiB 0.14 12912 -1 -1 1 0.41 -1 -1 37784 -1 -1 100 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78276 22 19 3131 2606 1 1587 147 16 16 256 mult_36 auto 39.2 MiB 1.47 9428 76.4 MiB 0.66 0.01 3.89606 -1628.34 -3.89606 3.89606 0.56 0.00270416 0.00229233 0.210001 0.180117 70 17539 45 6.59459e+06 3.82357e+06 1.02522e+06 4004.78 12.92 2.6934 2.38541 28912 262511 -1 13830 19 6233 7200 1204425 275278 0 0 1204425 275278 6609 6284 0 0 51936 46789 0 0 69069 57019 0 0 6616 6328 0 0 537452 78465 0 0 532743 80393 0 0 6609 0 0 392 2981 3612 8325 671 115 4.27196 4.27196 -1941.46 -4.27196 0 0 1.29210e+06 5047.26 0.30 0.37 0.20 -1 -1 0.30 0.160488 0.14629 762 1036 399 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_23.v common 15.87 vpr 77.11 MiB 0.13 13216 -1 -1 1 0.52 -1 -1 37504 -1 -1 107 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78956 22 19 3301 2742 1 1685 155 18 18 324 mult_36 auto 39.9 MiB 1.27 9566 77.1 MiB 0.76 0.01 4.27196 -1725.13 -4.27196 4.27196 0.77 0.00307579 0.0026462 0.235907 0.203314 68 18355 50 8.13932e+06 4.3209e+06 1.31159e+06 4048.11 8.93 1.73252 1.52434 36620 334356 -1 14765 19 6833 7654 1360627 293484 0 0 1360627 293484 7192 6865 0 0 53626 48955 0 0 72098 59905 0 0 7194 6929 0 0 617969 83300 0 0 602548 87530 0 0 7192 0 0 378 2772 2733 9171 499 2 4.27196 4.27196 -1996.38 -4.27196 0 0 1.63345e+06 5041.52 0.42 0.41 0.25 -1 -1 0.42 0.167074 0.151652 802 1091 418 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_24.v common 20.81 vpr 77.48 MiB 0.08 13604 -1 -1 1 0.43 -1 -1 37936 -1 -1 109 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79344 22 19 3375 2799 1 1732 157 18 18 324 mult_36 auto 40.4 MiB 0.75 10421 77.5 MiB 1.24 0.02 3.89606 -1763.04 -3.89606 3.89606 0.82 0.00647137 0.00564886 0.392624 0.340402 74 18744 26 8.13932e+06 4.34985e+06 1.40368e+06 4332.34 13.72 2.1988 1.92654 37912 362744 -1 15993 18 6776 7852 1424420 297324 0 0 1424420 297324 7107 6821 0 0 51479 46272 0 0 70270 57204 0 0 7115 6877 0 0 638763 88363 0 0 649686 91787 0 0 7107 0 0 347 3708 3389 8728 809 43 4.52256 4.52256 -2111.67 -4.52256 0 0 1.74764e+06 5393.95 0.44 0.51 0.35 -1 -1 0.44 0.195365 0.1791 821 1110 437 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_25.v common 17.14 vpr 78.51 MiB 0.14 14100 -1 -1 1 0.35 -1 -1 37776 -1 -1 116 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80392 22 19 3615 3005 1 1836 164 18 18 324 mult_36 auto 41.4 MiB 0.89 11333 78.5 MiB 1.09 0.02 4.27196 -1928.99 -4.27196 4.27196 0.86 0.00643979 0.00562402 0.335194 0.290104 74 20910 30 8.13932e+06 4.45118e+06 1.40368e+06 4332.34 8.32 1.93166 1.70239 37912 362744 -1 17170 16 7421 8502 1559887 323698 0 0 1559887 323698 7758 7457 0 0 58047 52650 0 0 79191 65020 0 0 7760 7505 0 0 700747 96223 0 0 706384 94843 0 0 7758 0 0 356 3470 3556 9389 796 16 4.52256 4.52256 -2368.73 -4.52256 0 0 1.74764e+06 5393.95 0.78 0.98 0.46 -1 -1 0.78 0.432392 0.397334 877 1201 456 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_26.v common 13.83 vpr 78.71 MiB 0.15 13932 -1 -1 1 0.38 -1 -1 37628 -1 -1 118 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80600 22 19 3689 3062 1 1874 166 18 18 324 mult_36 auto 41.5 MiB 1.16 10423 78.7 MiB 0.89 0.01 3.89606 -1897.14 -3.89606 3.89606 0.78 0.00332552 0.00284329 0.274277 0.236524 66 21667 39 8.13932e+06 4.48013e+06 1.27759e+06 3943.17 6.64 1.47752 1.29038 36296 327148 -1 16303 18 7570 9196 1446521 333154 0 0 1446521 333154 8014 7623 0 0 66461 60119 0 0 87283 73438 0 0 8024 7706 0 0 624330 92831 0 0 652409 91437 0 0 8014 0 0 462 6239 5782 9747 1312 246 4.27196 4.27196 -2378.18 -4.27196 0 0 1.59950e+06 4936.74 0.52 0.47 0.30 -1 -1 0.52 0.191985 0.174635 896 1220 475 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_27.v common 15.99 vpr 80.04 MiB 0.11 14384 -1 -1 1 0.64 -1 -1 38540 -1 -1 126 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81964 22 19 3871 3210 1 1982 175 18 18 324 mult_36 auto 42.9 MiB 1.76 12196 80.0 MiB 1.10 0.01 4.14666 -2025.63 -4.14666 4.14666 0.96 0.00351218 0.00301143 0.343994 0.298352 74 21829 44 8.13932e+06 4.99193e+06 1.40368e+06 4332.34 7.02 1.82401 1.60767 37912 362744 -1 18397 17 7675 8924 1605694 341211 0 0 1605694 341211 8122 7769 0 0 60429 54263 0 0 83214 67279 0 0 8128 7824 0 0 718586 100785 0 0 727215 103291 0 0 8122 0 0 464 3582 4665 10131 901 213 4.39726 4.39726 -2635.62 -4.39726 0 0 1.74764e+06 5393.95 0.45 0.49 0.27 -1 -1 0.45 0.198404 0.180833 944 1275 494 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_28.v common 23.38 vpr 80.50 MiB 0.15 14460 -1 -1 1 0.53 -1 -1 37928 -1 -1 128 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82428 22 19 3945 3267 1 2025 177 18 18 324 mult_36 auto 43.4 MiB 1.35 11387 80.5 MiB 1.02 0.01 3.89606 -2106.62 -3.89606 3.89606 1.25 0.00372079 0.00321118 0.317793 0.274731 70 21909 34 8.13932e+06 5.02088e+06 1.34436e+06 4149.26 14.43 2.74738 2.40739 37264 347768 -1 17347 20 8059 9105 1589950 349497 0 0 1589950 349497 8460 8103 0 0 67506 61027 0 0 90417 74269 0 0 8468 8156 0 0 700140 99517 0 0 714959 98425 0 0 8460 0 0 415 3249 3170 10380 695 10 4.27196 4.27196 -2559.57 -4.27196 0 0 1.69344e+06 5226.66 0.46 0.51 0.32 -1 -1 0.46 0.22233 0.202152 962 1294 513 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_29.v common 81.78 vpr 81.86 MiB 0.16 14988 -1 -1 1 0.71 -1 -1 38852 -1 -1 135 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83820 22 19 4159 3447 1 2141 185 22 22 484 mult_36 auto 44.9 MiB 1.96 13290 81.9 MiB 1.32 0.03 3.89606 -2170.33 -3.89606 3.89606 1.32 0.0100397 0.0090439 0.428751 0.374226 68 24792 49 1.32347e+07 5.5182e+06 2.01763e+06 4168.66 70.67 4.28073 3.75388 55470 518816 -1 19720 18 8392 9799 1675281 361152 0 0 1675281 361152 8804 8442 0 0 68743 62007 0 0 90599 75051 0 0 8815 8524 0 0 744439 104474 0 0 753881 102654 0 0 8804 0 0 430 4061 5106 10797 1043 316 4.27196 4.27196 -2629.7 -4.27196 0 0 2.51205e+06 5190.18 0.87 0.59 0.40 -1 -1 0.87 0.245645 0.223632 1015 1367 532 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_30.v common 27.30 vpr 81.90 MiB 0.17 14996 -1 -1 1 0.70 -1 -1 40096 -1 -1 137 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83864 22 19 4233 3504 1 2181 187 22 22 484 mult_36 auto 44.9 MiB 1.81 13678 81.9 MiB 1.68 0.03 3.77076 -2179.16 -3.77076 3.77076 1.33 0.00954964 0.00854182 0.612135 0.547976 68 24441 26 1.32347e+07 5.54715e+06 2.01763e+06 4168.66 15.55 3.44795 3.07759 55470 518816 -1 20282 29 8720 10247 1924971 455022 0 0 1924971 455022 9214 8833 0 0 72027 65113 0 0 96056 79865 0 0 9214 8897 0 0 867771 146049 0 0 870689 146265 0 0 9214 0 0 511 4309 5473 11913 1057 28 4.52256 4.52256 -2745.67 -4.52256 0 0 2.51205e+06 5190.18 0.70 0.77 0.39 -1 -1 0.70 0.320382 0.287968 1034 1386 551 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_31.v common 25.79 vpr 83.68 MiB 0.17 15340 -1 -1 1 0.79 -1 -1 40420 -1 -1 143 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85692 22 19 4410 3647 1 2284 193 22 22 484 mult_36 auto 45.9 MiB 1.90 13644 83.7 MiB 2.12 0.03 3.89606 -2272.68 -3.89606 3.89606 2.30 0.00779044 0.00665685 0.669269 0.585161 68 24967 24 1.32347e+07 5.63401e+06 2.01763e+06 4168.66 11.96 3.04584 2.70917 55470 518816 -1 20507 15 8680 9906 1641219 347698 0 0 1641219 347698 9059 8740 0 0 68299 61477 0 0 89391 75028 0 0 9059 8778 0 0 741685 94229 0 0 723726 99446 0 0 9059 0 0 396 4207 4323 11271 869 485 4.52256 4.52256 -2774.15 -4.52256 0 0 2.51205e+06 5190.18 0.94 0.57 0.63 -1 -1 0.94 0.227583 0.207758 1077 1441 570 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_32.v common 29.92 vpr 83.69 MiB 0.17 15448 -1 -1 1 0.81 -1 -1 39268 -1 -1 145 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85700 22 19 4484 3704 1 2331 195 22 22 484 mult_36 auto 46.6 MiB 1.78 14654 83.7 MiB 1.10 0.02 3.89606 -2316.3 -3.89606 3.89606 1.32 0.00440122 0.00381136 0.326116 0.281273 72 28562 39 1.32347e+07 5.66296e+06 2.11301e+06 4365.72 17.23 3.87517 3.45088 56918 551676 -1 22650 33 9999 11462 2668350 634634 0 0 2668350 634634 10555 10103 0 0 82321 75042 0 0 114004 93521 0 0 10567 10161 0 0 1221536 229642 0 0 1229367 216165 0 0 10555 0 0 574 4474 4504 13473 962 66 4.27196 4.27196 -2971.2 -4.27196 0 0 2.64603e+06 5467.00 1.13 1.14 0.66 -1 -1 1.13 0.430834 0.387866 1096 1460 589 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_33.v common 31.62 vpr 85.82 MiB 0.19 16412 -1 -1 1 0.79 -1 -1 40992 -1 -1 157 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87876 22 19 4843 4029 1 2441 208 22 22 484 mult_36 auto 48.4 MiB 2.04 15149 85.8 MiB 1.95 0.04 3.89606 -2514.82 -3.89606 3.89606 1.51 0.0144047 0.0131782 0.692357 0.62599 70 27473 34 1.32347e+07 6.23266e+06 2.06816e+06 4273.05 18.22 3.85258 3.4349 56434 539830 -1 22742 17 9309 10921 1929493 403263 0 0 1929493 403263 9835 9388 0 0 76592 68466 0 0 102783 84530 0 0 9837 9420 0 0 857903 115136 0 0 872543 116323 0 0 9835 0 0 548 4882 5177 12570 1141 364 4.52256 4.52256 -3117.17 -4.52256 0 0 2.60483e+06 5381.88 1.16 0.73 0.67 -1 -1 1.16 0.291038 0.266225 1185 1606 608 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_34.v common 26.31 vpr 85.32 MiB 0.18 16704 -1 -1 1 0.90 -1 -1 41084 -1 -1 160 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87364 22 19 4917 4086 1 2486 211 22 22 484 mult_36 auto 48.5 MiB 2.22 14895 85.3 MiB 1.22 0.02 3.89606 -2490.39 -3.89606 3.89606 1.38 0.00470826 0.00404519 0.369012 0.318152 68 29022 29 1.32347e+07 6.27609e+06 2.01763e+06 4168.66 13.12 2.7454 2.40552 55470 518816 -1 22687 18 10037 11831 1942787 418529 0 0 1942787 418529 10646 10115 0 0 84086 76239 0 0 108364 91507 0 0 10651 10168 0 0 851791 116006 0 0 877249 114494 0 0 10646 0 0 626 5616 6203 13540 1273 88 4.27196 4.27196 -3134.39 -4.27196 0 0 2.51205e+06 5190.18 0.98 0.82 0.63 -1 -1 0.98 0.383181 0.345989 1205 1625 627 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_35.v common 33.52 vpr 86.73 MiB 0.20 17132 -1 -1 1 0.92 -1 -1 41204 -1 -1 163 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88812 22 19 5093 4228 1 2588 214 22 22 484 mult_36 auto 50.2 MiB 2.19 16010 86.7 MiB 2.73 0.04 3.89606 -2614.77 -3.89606 3.89606 1.67 0.0107323 0.00946172 1.01175 0.917691 74 29369 42 1.32347e+07 6.31951e+06 2.15943e+06 4461.62 18.20 4.83864 4.32387 57402 562966 -1 24189 18 10463 12068 2602636 540131 0 0 2602636 540131 10989 10545 0 0 89037 81172 0 0 119280 98652 0 0 10994 10609 0 0 1180049 165865 0 0 1192287 173288 0 0 10989 0 0 544 5541 4981 13654 1136 153 4.39726 4.39726 -3393.35 -4.39726 0 0 2.68771e+06 5553.12 0.81 1.05 0.44 -1 -1 0.81 0.486512 0.446855 1248 1680 646 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_36.v common 32.60 vpr 86.50 MiB 0.22 16972 -1 -1 1 0.93 -1 -1 41536 -1 -1 165 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88580 22 19 5167 4285 1 2632 216 22 22 484 mult_36 auto 49.9 MiB 2.29 16595 86.5 MiB 2.58 0.03 3.89606 -2653.33 -3.89606 3.89606 2.23 0.00967005 0.00850742 0.823034 0.729895 76 29465 42 1.32347e+07 6.34846e+06 2.20457e+06 4554.90 16.85 4.03914 3.59339 57882 574062 -1 24499 18 10245 11944 2157165 449545 0 0 2157165 449545 10808 10315 0 0 82303 74580 0 0 111989 91399 0 0 10811 10359 0 0 962376 131371 0 0 978878 131521 0 0 10808 0 0 578 5324 5961 13813 1195 584 4.39726 4.39726 -3315.87 -4.39726 0 0 2.73077e+06 5642.09 0.93 0.94 0.48 -1 -1 0.93 0.452481 0.410536 1267 1699 665 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_37.v common 47.60 vpr 92.17 MiB 0.24 17516 -1 -1 1 0.99 -1 -1 40316 -1 -1 173 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94384 22 19 5380 4464 1 2743 225 24 24 576 mult_36 auto 51.6 MiB 2.55 17747 88.1 MiB 2.64 0.04 4.14666 -2916.96 -4.14666 4.14666 2.85 0.0112405 0.00994893 0.840878 0.742593 74 31381 35 1.59675e+07 6.86027e+06 2.56259e+06 4448.94 30.84 5.43491 4.83621 67906 667765 -1 26084 18 10424 12045 2131286 448303 0 0 2131286 448303 10980 10516 0 0 79717 71642 0 0 108325 88903 0 0 10985 10575 0 0 959779 132756 0 0 961500 133911 0 0 10980 0 0 573 5605 6009 13868 1144 250 4.64786 4.64786 -3495.37 -4.64786 0 0 3.19068e+06 5539.38 0.91 0.68 0.54 -1 -1 0.91 0.289615 0.263082 1321 1772 684 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_38.v common 55.48 vpr 91.13 MiB 0.33 17768 -1 -1 1 1.10 -1 -1 41916 -1 -1 176 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93320 22 19 5454 4521 1 2787 228 24 24 576 mult_36 auto 51.4 MiB 2.74 17903 87.7 MiB 3.32 0.04 4.02136 -2982.57 -4.02136 4.02136 2.78 0.0120224 0.0107345 1.16342 1.04533 74 33607 45 1.59675e+07 6.90369e+06 2.56259e+06 4448.94 36.97 6.96957 6.21257 67906 667765 -1 26662 17 10693 12555 2408488 498648 0 0 2408488 498648 11317 10763 0 0 85278 76921 0 0 115093 94812 0 0 11317 10828 0 0 1093519 150303 0 0 1091964 155021 0 0 11317 0 0 644 6044 6580 14908 1275 380 4.52256 4.52256 -3668.38 -4.52256 0 0 3.19068e+06 5539.38 1.67 0.81 0.52 -1 -1 1.67 0.32538 0.297234 1340 1791 703 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_39.v common 46.57 vpr 94.26 MiB 0.22 17964 -1 -1 1 0.92 -1 -1 41128 -1 -1 180 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96520 22 19 5629 4662 1 2884 232 24 24 576 mult_36 auto 52.2 MiB 2.62 19446 88.7 MiB 1.93 0.04 4.14666 -3053.8 -4.14666 4.14666 2.34 0.0116749 0.0103774 0.585067 0.508264 78 31162 30 1.59675e+07 6.9616e+06 2.67122e+06 4637.53 30.83 5.19741 4.62884 69630 706637 -1 27564 15 10542 12047 2296579 465921 0 0 2296579 465921 11154 10642 0 0 84634 76329 0 0 113732 93764 0 0 11160 10734 0 0 1044616 134352 0 0 1031283 140100 0 0 11154 0 0 630 4753 5268 14633 934 166 4.52256 4.52256 -3563.4 -4.52256 0 0 3.35110e+06 5817.88 1.13 0.78 0.55 -1 -1 1.13 0.292703 0.26687 1381 1846 722 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_40.v common 43.22 vpr 89.59 MiB 0.23 18344 -1 -1 1 1.05 -1 -1 41884 -1 -1 182 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91740 22 19 5703 4719 1 2932 234 24 24 576 mult_36 auto 53.3 MiB 2.81 19863 89.6 MiB 3.17 0.04 4.14666 -3075.56 -4.14666 4.14666 2.13 0.011481 0.010144 0.985525 0.869635 76 35388 42 1.59675e+07 6.99055e+06 2.61600e+06 4541.67 25.45 5.77595 5.12089 68478 680951 -1 28413 19 11615 13403 2758841 567891 0 0 2758841 567891 12257 11728 0 0 91167 82564 0 0 122781 101065 0 0 12257 11781 0 0 1255327 177559 0 0 1265052 183194 0 0 12257 0 0 661 5606 6422 15860 1199 279 4.52256 4.52256 -3677.42 -4.52256 0 0 3.24203e+06 5628.53 1.15 0.89 0.84 -1 -1 1.15 0.334625 0.302397 1400 1865 741 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_41.v common 39.81 vpr 90.39 MiB 0.24 18732 -1 -1 1 1.17 -1 -1 41156 -1 -1 190 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92560 22 19 5950 4932 1 3040 243 24 24 576 mult_36 auto 53.8 MiB 3.19 19463 90.4 MiB 3.26 0.04 4.14666 -3316.72 -4.14666 4.14666 2.38 0.0116991 0.0103151 0.98864 0.868648 74 33639 48 1.59675e+07 7.50235e+06 2.56259e+06 4448.94 19.90 5.63211 5.02014 67906 667765 -1 28278 16 11118 12938 2279496 476502 0 0 2279496 476502 11663 11216 0 0 85389 76686 0 0 119240 96073 0 0 11666 11271 0 0 1022802 141151 0 0 1028736 140105 0 0 11663 0 0 563 5458 6488 14568 1322 275 4.64786 4.64786 -4001.67 -4.64786 0 0 3.19068e+06 5539.38 1.56 1.37 0.87 -1 -1 1.56 0.618263 0.564458 1461 1956 760 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_42.v common 52.29 vpr 94.33 MiB 0.24 18804 -1 -1 1 1.20 -1 -1 42872 -1 -1 193 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96596 22 19 6024 4989 1 3083 246 24 24 576 mult_36 auto 54.2 MiB 2.88 21094 90.7 MiB 4.02 0.04 4.02136 -3285.13 -4.02136 4.02136 2.71 0.0109243 0.00951367 1.31306 1.16068 80 33456 26 1.59675e+07 7.54578e+06 2.72095e+06 4723.87 33.78 7.04952 6.24246 70206 720185 -1 29687 15 11411 13172 2339146 482941 0 0 2339146 482941 12094 11513 0 0 89209 80221 0 0 121603 99001 0 0 12098 11614 0 0 1051644 141297 0 0 1052498 139295 0 0 12094 0 0 704 5314 6276 16097 1113 30 4.52256 4.52256 -3918.64 -4.52256 0 0 3.41546e+06 5929.62 0.93 0.65 0.57 -1 -1 0.93 0.252187 0.228299 1480 1975 779 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_43.v common 133.73 vpr 91.89 MiB 0.34 19456 -1 -1 1 1.19 -1 -1 42804 -1 -1 199 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94096 22 19 6198 5129 1 3182 252 24 24 576 mult_36 auto 55.7 MiB 2.93 21170 91.9 MiB 1.82 0.02 4.27196 -3455.47 -4.27196 4.27196 2.30 0.00633339 0.00548364 0.54037 0.466906 74 38262 40 1.59675e+07 7.63263e+06 2.56259e+06 4448.94 117.62 4.94386 4.28996 67906 667765 -1 30941 16 12293 14565 2833699 576261 0 0 2833699 576261 12953 12382 0 0 94424 84636 0 0 129893 105513 0 0 12966 12465 0 0 1295181 178531 0 0 1288282 182734 0 0 12953 0 0 680 7874 8084 16612 1681 656 4.77316 4.77316 -4176.13 -4.77316 0 0 3.19068e+06 5539.38 0.84 0.80 0.50 -1 -1 0.84 0.298702 0.271007 1523 2030 798 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_44.v common 48.49 vpr 92.54 MiB 0.26 19440 -1 -1 1 1.41 -1 -1 43024 -1 -1 200 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94756 22 19 6272 5186 1 3228 253 24 24 576 mult_36 auto 56.1 MiB 3.36 21298 92.5 MiB 3.97 0.05 4.02136 -3400.38 -4.02136 4.02136 2.91 0.0126965 0.0113022 1.2512 1.11083 78 35898 40 1.59675e+07 7.64711e+06 2.67122e+06 4637.53 27.89 6.2345 5.52142 69630 706637 -1 30241 18 12039 14055 2610256 537086 0 0 2610256 537086 12682 12105 0 0 98242 88394 0 0 130115 108326 0 0 12683 12172 0 0 1177325 157147 0 0 1179209 158942 0 0 12682 0 0 663 6425 7490 16294 1424 280 4.52256 4.52256 -4077.55 -4.52256 0 0 3.35110e+06 5817.88 0.95 1.25 0.61 -1 -1 0.95 0.579014 0.527208 1542 2049 817 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_45.v common 54.52 vpr 93.21 MiB 0.26 19604 -1 -1 1 1.49 -1 -1 43548 -1 -1 208 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 95448 22 19 6485 5365 1 3341 262 24 24 576 mult_36 auto 57.1 MiB 2.83 22454 93.2 MiB 3.33 0.05 4.14666 -3614.83 -4.14666 4.14666 2.49 0.0137243 0.0122897 0.985504 0.865983 80 37463 31 1.59675e+07 8.15891e+06 2.72095e+06 4723.87 35.44 5.91606 5.21784 70206 720185 -1 31900 17 12682 14705 2444809 499878 0 0 2444809 499878 13407 12769 0 0 98092 87923 0 0 134962 109634 0 0 13409 12830 0 0 1085488 140379 0 0 1099451 136343 0 0 13407 0 0 745 6517 7527 17515 1400 186 4.52256 4.52256 -4365.6 -4.52256 0 0 3.41546e+06 5929.62 1.23 0.81 0.81 -1 -1 1.23 0.34344 0.310908 1593 2122 836 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_46.v common 53.79 vpr 98.95 MiB 0.25 19936 -1 -1 1 1.32 -1 -1 43372 -1 -1 210 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 101320 22 19 6559 5422 1 3381 264 24 24 576 mult_36 auto 57.6 MiB 3.06 21956 93.7 MiB 3.70 0.03 4.14666 -3557.64 -4.14666 4.14666 2.69 0.00718473 0.00623042 1.29835 1.16262 76 37183 29 1.59675e+07 8.18786e+06 2.61600e+06 4541.67 34.14 7.02644 6.25632 68478 680951 -1 31236 17 13070 15136 2812753 594279 0 0 2812753 594279 13806 13163 0 0 100548 90824 0 0 139842 113139 0 0 13815 13226 0 0 1272389 178578 0 0 1272353 185349 0 0 13806 0 0 754 6523 7607 17607 1400 255 4.52256 4.52256 -4312.43 -4.52256 0 0 3.24203e+06 5628.53 1.00 1.23 0.60 -1 -1 1.00 0.479529 0.433227 1613 2141 855 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_47.v common 43.36 vpr 94.53 MiB 0.27 20200 -1 -1 1 1.10 -1 -1 43692 -1 -1 216 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96800 22 19 6735 5564 1 3478 270 24 24 576 mult_36 auto 58.4 MiB 3.25 23179 94.5 MiB 4.03 0.05 4.14666 -3746.57 -4.14666 4.14666 2.70 0.0143649 0.012735 1.28585 1.15134 80 37843 32 1.59675e+07 8.27472e+06 2.72095e+06 4723.87 22.21 5.96448 5.30549 70206 720185 -1 32139 17 12589 14266 2462069 511321 0 0 2462069 511321 13182 12666 0 0 95311 85449 0 0 129082 105499 0 0 13188 12735 0 0 1112984 146466 0 0 1098322 148506 0 0 13182 0 0 609 5080 5687 16510 1139 270 4.52256 4.52256 -4368.5 -4.52256 0 0 3.41546e+06 5929.62 1.60 0.89 0.93 -1 -1 1.60 0.384967 0.350293 1656 2196 874 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_48.v common 47.52 vpr 101.16 MiB 0.28 20540 -1 -1 1 1.34 -1 -1 43780 -1 -1 218 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 103592 22 19 6809 5621 1 3528 272 24 24 576 mult_36 auto 59.0 MiB 2.87 23697 95.1 MiB 3.51 0.05 4.02136 -3739.94 -4.02136 4.02136 2.18 0.0142582 0.0125566 0.989866 0.861509 82 39597 45 1.59675e+07 8.30367e+06 2.78508e+06 4835.20 29.02 6.03223 5.33158 70778 734779 -1 33279 16 13296 15154 2708984 551703 0 0 2708984 551703 14068 13404 0 0 102400 92159 0 0 140530 113594 0 0 14069 13483 0 0 1208148 161921 0 0 1229769 157142 0 0 14068 0 0 788 6062 5707 18497 1149 36 4.52256 4.52256 -4635.56 -4.52256 0 0 3.48632e+06 6052.64 0.99 0.87 0.59 -1 -1 0.99 0.362635 0.330241 1674 2215 893 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_49.v common 64.76 vpr 111.13 MiB 0.29 21048 -1 -1 1 1.42 -1 -1 44044 -1 -1 228 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 113796 22 19 7094 5872 1 3643 283 24 24 576 mult_36 auto 60.5 MiB 3.05 26701 96.6 MiB 4.07 0.05 4.27196 -3967.24 -4.27196 4.27196 2.40 0.0146418 0.0129576 1.20063 1.05649 84 43943 34 1.59675e+07 8.84444e+06 2.84938e+06 4946.85 44.70 7.27716 6.44323 71930 760447 -1 35945 16 13806 15906 3002313 601571 0 0 3002313 601571 14515 13903 0 0 105959 95502 0 0 143638 116627 0 0 14519 13986 0 0 1369459 177324 0 0 1354223 184229 0 0 14515 0 0 730 6363 6596 18697 1442 625 4.64786 4.64786 -4676.16 -4.64786 0 0 3.60864e+06 6265.01 1.33 1.12 0.63 -1 -1 1.33 0.453247 0.412513 1745 2324 912 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_50.v common 50.47 vpr 96.88 MiB 0.29 21184 -1 -1 1 1.50 -1 -1 43704 -1 -1 230 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99200 22 19 7168 5929 1 3677 285 24 24 576 mult_36 auto 60.7 MiB 3.36 24124 96.9 MiB 4.47 0.06 4.39726 -3899.23 -4.39726 4.39726 2.60 0.0195764 0.0180278 1.50631 1.34802 80 38015 32 1.59675e+07 8.87339e+06 2.72095e+06 4723.87 29.49 7.64568 6.80123 70206 720185 -1 33468 15 13227 14841 2770518 570638 0 0 2770518 570638 13977 13330 0 0 103655 93105 0 0 142418 115684 0 0 13983 13406 0 0 1236290 168228 0 0 1260195 166885 0 0 13977 0 0 766 4198 5870 18307 908 29 4.64786 4.64786 -4886.71 -4.64786 0 0 3.41546e+06 5929.62 0.97 0.90 0.61 -1 -1 0.97 0.364848 0.33113 1764 2343 931 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_51.v common 45.24 vpr 97.58 MiB 0.33 21416 -1 -1 1 1.53 -1 -1 44492 -1 -1 235 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99920 22 19 7344 6071 1 3784 290 24 24 576 mult_36 auto 61.4 MiB 3.47 24958 97.6 MiB 4.16 0.06 4.14666 -4033.64 -4.14666 4.14666 2.27 0.0161293 0.0145047 1.18013 1.03395 82 41446 40 1.59675e+07 8.94577e+06 2.78508e+06 4835.20 23.12 7.01636 6.2177 70778 734779 -1 34370 16 13799 16054 2754306 581378 0 0 2754306 581378 14551 13868 0 0 105759 94767 0 0 144362 117510 0 0 14556 13960 0 0 1233099 171906 0 0 1241979 169367 0 0 14551 0 0 771 7131 8545 18366 1580 983 4.64786 4.64786 -4786.06 -4.64786 0 0 3.48632e+06 6052.64 1.55 1.65 0.92 -1 -1 1.55 0.753912 0.687874 1808 2398 950 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_52.v common 35.19 vpr 97.89 MiB 0.39 21688 -1 -1 1 1.47 -1 -1 44448 -1 -1 237 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100236 22 19 7418 6128 1 3829 292 24 24 576 mult_36 auto 61.8 MiB 3.36 25267 97.9 MiB 3.49 0.04 4.14666 -4056.06 -4.14666 4.14666 2.67 0.00817917 0.00718428 1.02981 0.90011 80 42359 40 1.59675e+07 8.97472e+06 2.72095e+06 4723.87 14.73 4.20223 3.68423 70206 720185 -1 35314 16 14446 16351 2728788 589034 0 0 2728788 589034 15178 14570 0 0 114604 103244 0 0 153319 127197 0 0 15180 14649 0 0 1208189 166290 0 0 1222318 163084 0 0 15178 0 0 752 4953 7035 19317 1223 461 4.39726 4.39726 -4789.94 -4.39726 0 0 3.41546e+06 5929.62 1.03 1.14 0.64 -1 -1 1.03 0.537181 0.487096 1827 2417 969 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_14.v common 11.93 vpr 66.46 MiB 0.06 9360 -1 -1 1 0.19 -1 -1 33992 -1 -1 43 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68060 22 19 1246 925 1 719 88 16 16 256 mult_36 auto 28.7 MiB 1.50 3950 66.5 MiB 0.55 0.01 6.98711 -334.178 -6.98711 6.98711 0.95 0.00231156 0.00203398 0.182463 0.160011 56 7274 28 6.59459e+06 2.20645e+06 849745. 3319.32 5.18 0.854528 0.769013 26364 208198 -1 6619 26 6682 7552 1237557 281768 0 0 1237557 281768 7552 6880 0 0 53663 50368 0 0 75047 58677 0 0 7596 6945 0 0 550117 80799 0 0 543582 78099 0 0 7552 0 0 897 4525 3651 42775 0 0 8.19264 8.19264 -457.679 -8.19264 0 0 1.04740e+06 4091.43 0.42 0.40 0.26 -1 -1 0.42 0.109773 0.101001 299 285 247 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_15.v common 19.58 vpr 66.74 MiB 0.06 9544 -1 -1 1 0.18 -1 -1 34724 -1 -1 46 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68344 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 29.1 MiB 1.53 4251 66.7 MiB 0.72 0.01 7.02947 -342.05 -7.02947 7.02947 0.89 0.00237255 0.00207805 0.207165 0.180942 54 8831 46 6.59459e+06 2.64588e+06 829453. 3240.05 12.89 1.49777 1.34477 26108 202796 -1 7281 23 7336 8378 1492501 356251 0 0 1492501 356251 8378 7543 0 0 69010 65710 0 0 85985 71952 0 0 8466 7638 0 0 662671 103441 0 0 657991 99967 0 0 8378 0 0 1064 3897 4897 53508 0 0 8.61383 8.61383 -420.283 -8.61383 0 0 1.02522e+06 4004.78 0.39 0.59 0.25 -1 -1 0.39 0.147173 0.134916 321 304 266 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_16.v common 13.36 vpr 67.13 MiB 0.06 9692 -1 -1 1 0.22 -1 -1 34772 -1 -1 48 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68744 22 19 1418 1046 1 822 94 16 16 256 mult_36 auto 29.3 MiB 1.56 4676 67.1 MiB 0.67 0.01 7.09841 -340.993 -7.09841 7.09841 0.92 0.00239627 0.00202856 0.212673 0.184057 56 8599 28 6.59459e+06 2.67484e+06 849745. 3319.32 6.37 0.956335 0.855524 26364 208198 -1 7458 25 8060 9086 1944921 456122 0 0 1944921 456122 9086 8228 0 0 73449 69398 0 0 100069 79364 0 0 9094 8275 0 0 884108 142201 0 0 869115 148656 0 0 9086 0 0 1049 5301 4471 47477 0 0 8.57773 8.57773 -471.689 -8.57773 0 0 1.04740e+06 4091.43 0.40 0.78 0.25 -1 -1 0.40 0.175875 0.16137 340 323 285 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_17.v common 18.20 vpr 67.70 MiB 0.08 10252 -1 -1 1 0.23 -1 -1 34632 -1 -1 52 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69328 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 29.9 MiB 1.37 4861 67.7 MiB 0.50 0.01 7.80825 -382.565 -7.80825 7.80825 0.57 0.00271212 0.00241447 0.147859 0.129647 60 9516 36 6.59459e+06 2.73274e+06 890343. 3477.90 12.23 1.63954 1.46577 27128 224764 -1 7470 24 7628 8517 1266506 301586 0 0 1266506 301586 8517 7819 0 0 62950 59564 0 0 82773 67071 0 0 8585 7907 0 0 573416 79149 0 0 530265 80076 0 0 8517 0 0 912 3632 4158 43899 0 0 8.89448 8.89448 -499.261 -8.89448 0 0 1.11577e+06 4358.47 0.41 0.55 0.27 -1 -1 0.41 0.179686 0.164864 365 342 304 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_18.v common 16.56 vpr 68.37 MiB 0.09 10220 -1 -1 1 0.20 -1 -1 34764 -1 -1 55 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70012 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 30.6 MiB 1.80 5268 68.4 MiB 0.67 0.01 7.72835 -401.323 -7.72835 7.72835 0.91 0.00314648 0.00278159 0.197739 0.174787 56 10979 44 6.59459e+06 2.77617e+06 849745. 3319.32 9.25 1.11499 1.0039 26364 208198 -1 9074 25 9168 10314 1932510 430754 0 0 1932510 430754 10314 9506 0 0 76894 72311 0 0 105216 83542 0 0 10379 9575 0 0 867138 126087 0 0 862569 129733 0 0 10314 0 0 1173 5866 6469 57504 0 0 9.33468 9.33468 -567.027 -9.33468 0 0 1.04740e+06 4091.43 0.40 0.80 0.24 -1 -1 0.40 0.204337 0.187212 383 361 323 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_19.v common 20.73 vpr 68.56 MiB 0.09 10400 -1 -1 1 0.23 -1 -1 35156 -1 -1 58 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70204 22 19 1688 1231 1 975 105 16 16 256 mult_36 auto 30.9 MiB 1.44 5779 68.6 MiB 0.74 0.01 7.75835 -390.261 -7.75835 7.75835 0.90 0.00267747 0.0023062 0.226042 0.198505 64 10849 45 6.59459e+06 3.21559e+06 943753. 3686.54 13.72 1.9513 1.76003 27892 240595 -1 8556 25 7224 8309 1087210 250867 0 0 1087210 250867 7979 7326 0 0 51659 47750 0 0 74750 57377 0 0 7995 7410 0 0 469825 66867 0 0 475002 64137 0 0 7979 0 0 778 4654 4234 35730 369 9 9.58838 9.58838 -597.752 -9.58838 0 0 1.19033e+06 4649.74 0.41 0.51 0.31 -1 -1 0.41 0.181659 0.166208 404 380 342 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_20.v common 21.62 vpr 69.24 MiB 0.09 10488 -1 -1 1 0.27 -1 -1 34980 -1 -1 59 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70900 22 19 1762 1288 1 1013 106 16 16 256 mult_36 auto 31.7 MiB 1.94 6222 69.2 MiB 0.61 0.01 7.68911 -431.664 -7.68911 7.68911 0.90 0.00299245 0.00264061 0.181152 0.15888 62 12520 34 6.59459e+06 3.23007e+06 916467. 3579.95 13.88 1.84568 1.66018 27384 229598 -1 9364 23 8026 9244 1390051 309174 0 0 1390051 309174 8903 8237 0 0 63939 60008 0 0 82665 67128 0 0 8965 8352 0 0 610001 82836 0 0 615578 82613 0 0 8903 0 0 902 4815 4719 38901 370 2 9.37378 9.37378 -564.448 -9.37378 0 0 1.13630e+06 4438.68 0.45 0.63 0.29 -1 -1 0.45 0.197528 0.180577 423 399 361 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_21.v common 17.41 vpr 69.33 MiB 0.19 10908 -1 -1 1 0.28 -1 -1 35704 -1 -1 62 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70996 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 31.7 MiB 1.74 6303 69.3 MiB 0.73 0.01 7.62205 -457.249 -7.62205 7.62205 0.87 0.00172835 0.00149786 0.224512 0.198778 64 12190 48 6.59459e+06 3.2735e+06 943753. 3686.54 9.66 1.43709 1.28393 27892 240595 -1 9835 26 9070 10262 1521610 339009 0 0 1521610 339009 9952 9412 0 0 68120 63431 0 0 96416 74745 0 0 10014 9500 0 0 683455 92150 0 0 653653 89771 0 0 9952 0 0 905 4872 5050 35698 327 2 8.98378 8.98378 -627.371 -8.98378 0 0 1.19033e+06 4649.74 0.51 0.61 0.32 -1 -1 0.51 0.200218 0.182644 445 418 380 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_22.v common 21.36 vpr 70.12 MiB 0.10 11004 -1 -1 1 0.27 -1 -1 35436 -1 -1 66 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71800 22 19 1933 1408 1 1112 113 16 16 256 mult_36 auto 32.5 MiB 2.23 6333 70.1 MiB 0.78 0.01 7.62315 -473.145 -7.62315 7.62315 0.73 0.00361099 0.00313239 0.222897 0.195085 64 12429 31 6.59459e+06 3.3314e+06 943753. 3686.54 13.24 1.90235 1.71051 27892 240595 -1 9808 25 9584 10846 1683948 381323 0 0 1683948 381323 10211 9743 0 0 75442 70393 0 0 107315 83340 0 0 10215 9784 0 0 753662 107480 0 0 727103 100583 0 0 10211 0 0 656 3246 3885 14160 677 2 8.66969 8.66969 -746.461 -8.66969 0 0 1.19033e+06 4649.74 0.51 0.77 0.31 -1 -1 0.51 0.244172 0.224282 464 437 399 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_23.v common 19.15 vpr 70.32 MiB 0.11 11240 -1 -1 1 0.32 -1 -1 35712 -1 -1 68 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72008 22 19 2031 1472 1 1172 116 18 18 324 mult_36 auto 32.7 MiB 2.44 7302 70.3 MiB 0.62 0.02 7.71915 -469.387 -7.71915 7.71915 1.01 0.00363929 0.00313087 0.17031 0.147774 62 14803 38 8.13932e+06 3.75635e+06 1.20291e+06 3712.69 10.41 1.39612 1.24921 35328 304176 -1 11663 24 10309 11824 2139086 462153 0 0 2139086 462153 11119 10443 0 0 87634 82781 0 0 113865 92261 0 0 11126 10535 0 0 969114 131148 0 0 946228 134985 0 0 11119 0 0 839 3943 5009 18002 781 2 9.31258 9.31258 -752.691 -9.31258 0 0 1.49010e+06 4599.06 0.60 0.80 0.37 -1 -1 0.60 0.199632 0.182375 486 456 418 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_24.v common 20.78 vpr 70.78 MiB 0.11 11440 -1 -1 1 0.21 -1 -1 35756 -1 -1 71 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72480 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 33.2 MiB 2.46 6909 70.8 MiB 1.07 0.02 7.56085 -470.498 -7.56085 7.56085 1.27 0.00535468 0.00471573 0.349075 0.307946 64 13430 34 8.13932e+06 3.79978e+06 1.23838e+06 3822.15 10.92 1.59028 1.43268 35972 318676 -1 11061 24 9564 10965 1884847 406164 0 0 1884847 406164 10336 9818 0 0 78715 73700 0 0 108242 86500 0 0 10350 9882 0 0 846015 111568 0 0 831189 114696 0 0 10336 0 0 800 4273 4910 18619 669 9 9.16728 9.16728 -775.541 -9.16728 0 0 1.56068e+06 4816.91 0.64 0.87 0.40 -1 -1 0.64 0.268668 0.24691 505 475 437 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_25.v common 27.03 vpr 71.48 MiB 0.13 11572 -1 -1 1 0.32 -1 -1 36132 -1 -1 73 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73196 22 19 2201 1591 1 1267 121 18 18 324 mult_36 auto 34.1 MiB 2.07 7669 71.5 MiB 1.01 0.01 7.62205 -492.613 -7.62205 7.62205 1.30 0.00354086 0.00305669 0.270002 0.23481 68 13647 28 8.13932e+06 3.82873e+06 1.31159e+06 4048.11 17.62 2.64489 2.3944 36620 334356 -1 11520 23 9389 11018 1759568 384822 0 0 1759568 384822 10157 9527 0 0 76861 72190 0 0 102702 82765 0 0 10163 9611 0 0 770873 107585 0 0 788812 103144 0 0 10157 0 0 792 4538 5339 13613 991 21 8.95588 8.95588 -839.515 -8.95588 0 0 1.63345e+06 5041.52 0.69 0.84 0.42 -1 -1 0.69 0.278027 0.255915 526 494 456 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_26.v common 26.38 vpr 71.65 MiB 0.12 11724 -1 -1 1 0.37 -1 -1 36384 -1 -1 76 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73368 22 19 2275 1648 1 1304 124 18 18 324 mult_36 auto 34.1 MiB 2.50 7450 71.6 MiB 1.35 0.02 7.80825 -523.983 -7.80825 7.80825 1.32 0.00477277 0.00417242 0.428147 0.382128 72 12810 26 8.13932e+06 3.87216e+06 1.37338e+06 4238.83 15.92 2.40612 2.14548 37588 355536 -1 11175 25 10276 11592 2031586 434781 0 0 2031586 434781 11057 10454 0 0 81627 76634 0 0 116305 89151 0 0 11057 10563 0 0 914331 123667 0 0 897209 124312 0 0 11057 0 0 806 3084 3321 14895 574 21 8.87728 8.87728 -752.323 -8.87728 0 0 1.72054e+06 5310.31 0.57 0.81 0.38 -1 -1 0.57 0.263671 0.241336 546 513 475 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_27.v common 54.50 vpr 72.01 MiB 0.12 12212 -1 -1 1 0.41 -1 -1 36268 -1 -1 82 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73740 22 19 2385 1724 1 1377 131 18 18 324 mult_36 auto 34.7 MiB 2.52 8656 72.0 MiB 0.74 0.01 7.67995 -523.927 -7.67995 7.67995 0.91 0.0022541 0.00190769 0.203086 0.174957 62 17421 47 8.13932e+06 4.35501e+06 1.20291e+06 3712.69 45.17 2.60224 2.3222 35328 304176 -1 13139 24 11813 13550 2319149 502142 0 0 2319149 502142 12648 11962 0 0 97579 91875 0 0 125721 102676 0 0 12648 12051 0 0 1038804 142455 0 0 1031749 141123 0 0 12648 0 0 863 4608 5187 16758 1006 67 8.96188 8.96188 -852.074 -8.96188 0 0 1.49010e+06 4599.06 0.40 1.11 0.22 -1 -1 0.40 0.345613 0.319417 575 532 494 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_28.v common 25.31 vpr 72.88 MiB 0.13 12248 -1 -1 1 0.39 -1 -1 36384 -1 -1 83 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74628 22 19 2459 1781 1 1418 132 18 18 324 mult_36 auto 35.6 MiB 2.72 8745 72.9 MiB 0.60 0.01 7.60005 -550.785 -7.60005 7.60005 0.81 0.00232931 0.00202553 0.167406 0.144642 66 15827 32 8.13932e+06 4.36948e+06 1.27759e+06 3943.17 15.70 1.86211 1.66278 36296 327148 -1 13390 26 12951 14549 2662497 565067 0 0 2662497 565067 13937 13222 0 0 99481 93698 0 0 141486 108649 0 0 13939 13301 0 0 1205886 165574 0 0 1187768 170623 0 0 13937 0 0 1018 5246 5058 31184 634 35 9.09798 9.09798 -878.539 -9.09798 0 0 1.59950e+06 4936.74 0.65 1.41 0.40 -1 -1 0.65 0.454903 0.418548 594 551 513 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_29.v common 38.16 vpr 73.10 MiB 0.14 12472 -1 -1 1 0.43 -1 -1 36124 -1 -1 85 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74852 22 19 2565 1853 1 1483 135 22 22 484 mult_36 auto 35.7 MiB 3.29 9467 73.1 MiB 0.70 0.01 7.58425 -519.207 -7.58425 7.58425 1.66 0.00276741 0.00243109 0.198234 0.173092 68 16435 45 1.32347e+07 4.79443e+06 2.01763e+06 4168.66 24.53 2.60935 2.34354 55470 518816 -1 13853 25 12220 14490 2783050 587169 0 0 2783050 587169 13275 12421 0 0 105016 99072 0 0 141915 112813 0 0 13288 12527 0 0 1262134 172292 0 0 1247422 178044 0 0 13275 0 0 1082 6812 6375 18476 1305 219 9.21838 9.21838 -933.695 -9.21838 0 0 2.51205e+06 5190.18 1.09 1.28 0.65 -1 -1 1.09 0.329948 0.30283 619 570 532 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_30.v common 28.47 vpr 73.77 MiB 0.14 12592 -1 -1 1 0.43 -1 -1 36636 -1 -1 89 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75536 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 36.4 MiB 2.42 9163 73.8 MiB 1.40 0.02 7.71115 -535.323 -7.71115 7.71115 2.14 0.00548872 0.00487059 0.42492 0.372382 66 16255 28 1.32347e+07 4.85233e+06 1.96511e+06 4060.15 14.98 2.49107 2.2462 54986 507526 -1 13759 24 12873 14544 2859992 606760 0 0 2859992 606760 13853 13088 0 0 115809 109850 0 0 159179 126302 0 0 13866 13188 0 0 1276728 171362 0 0 1280557 172970 0 0 13853 0 0 1007 4248 4781 18903 761 2 9.09008 9.09008 -854.358 -9.09008 0 0 2.45963e+06 5081.88 1.20 1.22 0.65 -1 -1 1.20 0.345107 0.317489 639 589 551 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_31.v common 35.70 vpr 74.05 MiB 0.14 13112 -1 -1 1 0.46 -1 -1 36736 -1 -1 93 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75824 22 19 2744 1981 1 1589 143 22 22 484 mult_36 auto 36.8 MiB 3.07 10314 74.0 MiB 0.84 0.01 7.68295 -597.427 -7.68295 7.68295 1.65 0.00267521 0.00231581 0.22805 0.197263 70 18057 41 1.32347e+07 4.91023e+06 2.06816e+06 4273.05 23.35 2.35589 2.09704 56434 539830 -1 15371 25 12743 14615 3049478 632328 0 0 3049478 632328 13706 13010 0 0 105022 98445 0 0 145859 113551 0 0 13709 13133 0 0 1369958 197251 0 0 1401224 196938 0 0 13706 0 0 992 4951 5330 19204 927 11 9.33888 9.33888 -1175.2 -9.33888 0 0 2.60483e+06 5381.88 0.88 0.79 0.66 -1 -1 0.88 0.196977 0.178519 665 608 570 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_32.v common 39.63 vpr 74.45 MiB 0.14 12968 -1 -1 1 0.49 -1 -1 36880 -1 -1 96 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76232 22 19 2818 2038 1 1626 146 22 22 484 mult_36 auto 37.3 MiB 2.70 10761 74.4 MiB 1.80 0.02 7.66715 -553.462 -7.66715 7.66715 2.15 0.00478105 0.00415001 0.49958 0.438192 68 20214 45 1.32347e+07 4.95366e+06 2.01763e+06 4168.66 25.18 2.6469 2.34981 55470 518816 -1 15948 27 15374 17821 3544346 735313 0 0 3544346 735313 16574 15628 0 0 125841 118846 0 0 177221 135954 0 0 16590 15770 0 0 1603920 222915 0 0 1604200 226200 0 0 16574 0 0 1231 7940 7676 33365 1298 135 9.43328 9.43328 -1200.18 -9.43328 0 0 2.51205e+06 5190.18 1.20 1.59 0.64 -1 -1 1.20 0.41224 0.376898 684 627 589 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_33.v common 96.74 vpr 75.23 MiB 0.15 13836 -1 -1 1 0.49 -1 -1 37160 -1 -1 100 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77036 22 19 2923 2109 1 1697 151 22 22 484 mult_36 auto 38.0 MiB 3.62 10682 75.2 MiB 2.11 0.01 8.36299 -612.502 -8.36299 8.36299 1.75 0.00286723 0.00246462 0.528956 0.460872 64 21092 45 1.32347e+07 5.40755e+06 1.90554e+06 3937.06 82.70 3.05769 2.69656 54502 494576 -1 16584 25 16717 18815 4090813 849958 0 0 4090813 849958 17824 17045 0 0 136104 127265 0 0 189472 147378 0 0 17825 17108 0 0 1875770 265447 0 0 1853818 275715 0 0 17824 0 0 1137 5986 5968 23849 1064 138 9.98022 9.98022 -1074.71 -9.98022 0 0 2.40101e+06 4960.76 0.69 0.96 0.36 -1 -1 0.69 0.192004 0.173955 710 646 608 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_34.v common 27.84 vpr 75.46 MiB 0.15 13608 -1 -1 1 0.50 -1 -1 37784 -1 -1 101 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77276 22 19 2997 2166 1 1733 152 22 22 484 mult_36 auto 38.2 MiB 3.99 11016 75.5 MiB 0.98 0.01 8.20359 -612.989 -8.20359 8.20359 1.93 0.00300193 0.00254959 0.274202 0.237821 66 20704 39 1.32347e+07 5.42203e+06 1.96511e+06 4060.15 13.39 1.56775 1.38816 54986 507526 -1 16623 24 15229 17233 3510468 738061 0 0 3510468 738061 16318 15557 0 0 129062 121858 0 0 175963 139490 0 0 16321 15645 0 0 1594801 215885 0 0 1578003 229626 0 0 16318 0 0 1114 4880 5713 22414 953 2 9.64792 9.64792 -1054.11 -9.64792 0 0 2.45963e+06 5081.88 1.09 1.45 0.39 -1 -1 1.09 0.368035 0.33623 729 665 627 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_35.v common 25.68 vpr 76.22 MiB 0.16 13844 -1 -1 1 0.53 -1 -1 36832 -1 -1 106 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78048 22 19 3101 2236 1 1798 157 22 22 484 mult_36 auto 38.8 MiB 3.54 11748 76.2 MiB 1.93 0.02 8.32889 -634.18 -8.32889 8.32889 1.75 0.00604862 0.005351 0.52849 0.468469 72 20808 32 1.32347e+07 5.49441e+06 2.11301e+06 4365.72 11.60 1.76526 1.57623 56918 551676 -1 17360 23 12772 14878 3121498 653933 0 0 3121498 653933 13673 12995 0 0 102559 96175 0 0 141758 112726 0 0 13674 13109 0 0 1421440 205421 0 0 1428394 213507 0 0 13673 0 0 926 6879 7036 18209 1258 75 10.1117 10.1117 -1103.59 -10.1117 0 0 2.64603e+06 5467.00 1.13 1.27 0.67 -1 -1 1.13 0.346943 0.316939 755 684 646 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_36.v common 50.47 vpr 76.41 MiB 0.16 13928 -1 -1 1 0.57 -1 -1 37304 -1 -1 107 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78248 22 19 3175 2293 1 1835 158 22 22 484 mult_36 auto 39.1 MiB 3.25 12781 76.4 MiB 1.36 0.03 8.44139 -676.284 -8.44139 8.44139 1.60 0.00907661 0.00819233 0.366266 0.322567 76 22477 49 1.32347e+07 5.50888e+06 2.20457e+06 4554.90 35.38 3.85479 3.48037 57882 574062 -1 18561 25 15277 17633 3650736 741168 0 0 3650736 741168 16462 15539 0 0 119504 112111 0 0 166512 128438 0 0 16464 15685 0 0 1666486 236571 0 0 1665308 232824 0 0 16462 0 0 1213 7285 6384 22946 1221 16 10.2448 10.2448 -1287.59 -10.2448 0 0 2.73077e+06 5642.09 1.27 1.59 0.72 -1 -1 1.27 0.430928 0.394496 773 703 665 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_37.v common 106.22 vpr 76.98 MiB 0.16 14292 -1 -1 1 0.60 -1 -1 37788 -1 -1 111 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78824 22 19 3280 2364 1 1905 163 24 24 576 mult_36 auto 39.6 MiB 3.64 12281 77.0 MiB 1.77 0.01 8.51829 -743.663 -8.51829 8.51829 2.56 0.0038858 0.00342315 0.568275 0.502601 64 23320 43 1.59675e+07 5.96278e+06 2.26035e+06 3924.22 91.74 3.76662 3.33902 64454 586630 -1 18470 25 16404 18951 3408789 711687 0 0 3408789 711687 17544 16673 0 0 133768 124864 0 0 183390 145237 0 0 17553 16765 0 0 1524503 203469 0 0 1532031 204679 0 0 17544 0 0 1168 10547 11390 50791 1467 33 9.99302 9.99302 -1075.61 -9.99302 0 0 2.84938e+06 4946.85 0.73 0.78 0.45 -1 -1 0.73 0.199904 0.180698 798 722 684 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_38.v common 48.97 vpr 79.49 MiB 0.17 14324 -1 -1 1 0.62 -1 -1 38392 -1 -1 113 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81400 22 19 3354 2421 1 1940 165 24 24 576 mult_36 auto 40.3 MiB 5.37 13705 77.4 MiB 1.83 0.03 8.63069 -824.429 -8.63069 8.63069 1.64 0.00675512 0.00599743 0.485943 0.425498 78 22121 40 1.59675e+07 5.99174e+06 2.67122e+06 4637.53 30.77 3.7313 3.33133 69630 706637 -1 19154 24 14240 16585 2997885 593944 0 0 2997885 593944 15260 14462 0 0 110819 103295 0 0 155935 120645 0 0 15261 14593 0 0 1353278 172096 0 0 1347332 168853 0 0 15260 0 0 1044 6915 7121 20778 1350 133 9.82202 9.82202 -1310.71 -9.82202 0 0 3.35110e+06 5817.88 1.29 1.34 1.06 -1 -1 1.29 0.405284 0.369422 818 741 703 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_39.v common 46.95 vpr 79.89 MiB 0.18 14640 -1 -1 1 0.62 -1 -1 38084 -1 -1 117 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81812 22 19 3457 2490 1 2006 169 24 24 576 mult_36 auto 40.7 MiB 4.29 13303 78.0 MiB 1.36 0.02 8.58539 -842.059 -8.58539 8.58539 1.81 0.00427683 0.00376652 0.421349 0.373772 74 22181 33 1.59675e+07 6.04964e+06 2.56259e+06 4448.94 31.08 3.85718 3.46372 67906 667765 -1 19078 24 15586 17760 3458932 696645 0 0 3458932 696645 16701 15846 0 0 122219 114511 0 0 173138 132741 0 0 16703 16007 0 0 1568910 209816 0 0 1561261 207724 0 0 16701 0 0 1141 5281 6293 22831 1080 14 9.88952 9.88952 -1345.91 -9.88952 0 0 3.19068e+06 5539.38 1.48 1.45 0.82 -1 -1 1.48 0.437291 0.39993 842 760 722 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_40.v common 86.94 vpr 78.18 MiB 0.18 14708 -1 -1 1 0.63 -1 -1 38432 -1 -1 120 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80060 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 41.2 MiB 5.07 13036 78.2 MiB 1.23 0.02 8.45419 -831.231 -8.45419 8.45419 1.80 0.00363514 0.00308978 0.321352 0.277083 70 22560 29 1.59675e+07 6.09306e+06 2.45377e+06 4260.01 71.02 3.18682 2.80804 66754 640332 -1 19265 25 16061 18668 3538769 751661 0 0 3538769 751661 17382 16420 0 0 133798 125278 0 0 185280 145226 0 0 17386 16508 0 0 1614577 221733 0 0 1570346 226496 0 0 17382 0 0 1347 8252 7983 28477 1340 174 9.81282 9.81282 -1305.19 -9.81282 0 0 3.09179e+06 5367.68 1.36 1.13 0.78 -1 -1 1.36 0.313637 0.287964 862 779 741 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_41.v common 37.11 vpr 78.67 MiB 0.31 15060 -1 -1 1 0.65 -1 -1 37896 -1 -1 122 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80560 22 19 3634 2616 1 2109 175 24 24 576 mult_36 auto 41.7 MiB 4.94 13522 78.7 MiB 2.44 0.03 8.53849 -836.13 -8.53849 8.53849 2.44 0.0078741 0.00693777 0.662334 0.533943 70 23859 37 1.59675e+07 6.51802e+06 2.45377e+06 4260.01 17.84 2.63859 2.30697 66754 640332 -1 20087 24 17696 20339 3636874 757647 0 0 3636874 757647 19093 18069 0 0 141981 132870 0 0 196499 153374 0 0 19119 18197 0 0 1628341 216780 0 0 1631841 218357 0 0 19093 0 0 1425 9535 10281 50631 1289 126 9.78602 9.78602 -1384.93 -9.78602 0 0 3.09179e+06 5367.68 1.53 1.64 0.83 -1 -1 1.53 0.494554 0.451908 886 798 760 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_42.v common 115.40 vpr 79.23 MiB 0.20 15224 -1 -1 1 0.73 -1 -1 37548 -1 -1 125 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81136 22 19 3708 2673 1 2146 178 24 24 576 mult_36 auto 42.3 MiB 6.17 13720 79.2 MiB 2.06 0.03 8.41799 -828.567 -8.41799 8.41799 2.44 0.00803639 0.00694575 0.65868 0.58157 66 25238 41 1.59675e+07 6.56144e+06 2.33135e+06 4047.49 96.33 5.07893 4.51834 65030 601923 -1 20211 25 17799 20512 3917564 811811 0 0 3917564 811811 19178 18127 0 0 144532 136066 0 0 205511 159414 0 0 19194 18260 0 0 1764748 240090 0 0 1764401 239854 0 0 19178 0 0 1407 8959 9372 35609 1376 2 9.92122 9.92122 -1402.93 -9.92122 0 0 2.91907e+06 5067.82 1.67 1.13 0.55 -1 -1 1.67 0.298749 0.271083 906 817 779 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_43.v common 37.81 vpr 79.52 MiB 0.28 15452 -1 -1 1 0.74 -1 -1 38936 -1 -1 129 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81424 22 19 3810 2741 1 2211 182 24 24 576 mult_36 auto 42.5 MiB 5.91 15182 79.5 MiB 2.11 0.03 8.70475 -847.982 -8.70475 8.70475 2.57 0.00761795 0.0066442 0.584971 0.513334 68 26353 39 1.59675e+07 6.61934e+06 2.39371e+06 4155.74 17.80 2.88647 2.57584 65606 615345 -1 21386 26 16065 18609 3449770 726656 0 0 3449770 726656 17368 16328 0 0 134012 126249 0 0 180335 144455 0 0 17372 16437 0 0 1541973 211098 0 0 1558710 212089 0 0 17368 0 0 1330 7312 7531 24429 1275 60 10.3763 10.3763 -1440.62 -10.3763 0 0 2.98162e+06 5176.42 1.19 1.63 0.49 -1 -1 1.19 0.501333 0.4561 930 836 798 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_44.v common 35.29 vpr 80.36 MiB 0.37 15484 -1 -1 1 0.72 -1 -1 38308 -1 -1 132 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82288 22 19 3884 2798 1 2252 185 24 24 576 mult_36 auto 43.1 MiB 5.67 14741 80.4 MiB 1.38 0.02 8.80515 -846.092 -8.80515 8.80515 2.92 0.00400288 0.00344467 0.368232 0.316908 68 27010 41 1.59675e+07 6.66277e+06 2.39371e+06 4155.74 16.05 2.25575 1.99282 65606 615345 -1 21281 24 16894 19389 3776684 795847 0 0 3776684 795847 18163 17168 0 0 141557 133427 0 0 187060 152049 0 0 18165 17292 0 0 1679859 236594 0 0 1731880 239317 0 0 18163 0 0 1297 6914 6776 25002 1280 28 10.1037 10.1037 -1274.18 -10.1037 0 0 2.98162e+06 5176.42 1.34 1.82 0.50 -1 -1 1.34 0.558797 0.508178 949 855 817 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_45.v common 31.99 vpr 80.46 MiB 0.23 15724 -1 -1 1 0.69 -1 -1 40004 -1 -1 135 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82396 22 19 3989 2869 1 2317 189 24 24 576 mult_36 auto 43.5 MiB 6.06 15307 80.5 MiB 2.03 0.02 8.58375 -899.572 -8.58375 8.58375 1.61 0.00432379 0.00368273 0.530959 0.466173 74 25426 50 1.59675e+07 7.1022e+06 2.56259e+06 4448.94 12.54 2.04049 1.8053 67906 667765 -1 21828 25 17197 20383 3509109 723161 0 0 3509109 723161 18491 17525 0 0 134309 125694 0 0 192347 147763 0 0 18494 17654 0 0 1562858 207920 0 0 1582610 206605 0 0 18491 0 0 1321 9870 10180 25464 1930 241 10.0535 10.0535 -1410.54 -10.0535 0 0 3.19068e+06 5539.38 1.47 1.48 0.88 -1 -1 1.47 0.433339 0.394376 975 874 836 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_46.v common 58.24 vpr 85.49 MiB 0.21 16072 -1 -1 1 0.73 -1 -1 40188 -1 -1 136 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87540 22 19 4063 2926 1 2354 190 24 24 576 mult_36 auto 43.8 MiB 6.54 15749 80.9 MiB 1.39 0.03 8.58249 -857.872 -8.58249 8.58249 1.69 0.00831376 0.00362048 0.367942 0.316681 78 25387 44 1.59675e+07 7.11667e+06 2.67122e+06 4637.53 39.23 5.53895 4.96321 69630 706637 -1 21867 25 15871 18384 3403674 704952 0 0 3403674 704952 17148 16126 0 0 137200 128744 0 0 186568 148195 0 0 17148 16200 0 0 1505899 201283 0 0 1539711 194404 0 0 17148 0 0 1299 5898 7717 24207 1284 79 9.61362 9.61362 -1431.18 -9.61362 0 0 3.35110e+06 5817.88 1.42 1.45 0.88 -1 -1 1.42 0.47328 0.431266 993 893 855 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_47.v common 57.14 vpr 85.05 MiB 0.22 16412 -1 -1 1 0.72 -1 -1 40440 -1 -1 141 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87096 22 19 4167 2996 1 2420 195 24 24 576 mult_36 auto 44.2 MiB 6.32 16868 81.4 MiB 2.49 0.02 8.63695 -958.698 -8.63695 8.63695 2.28 0.00432587 0.00375989 0.658148 0.581993 74 28413 35 1.59675e+07 7.18905e+06 2.56259e+06 4448.94 35.29 5.26025 4.72208 67906 667765 -1 23928 26 18540 21810 4034882 822976 0 0 4034882 822976 19861 18863 0 0 144280 135090 0 0 205004 156756 0 0 19862 18966 0 0 1820641 246449 0 0 1825234 246852 0 0 19861 0 0 1352 10455 10721 27105 2005 219 10.0366 10.0366 -1447.59 -10.0366 0 0 3.19068e+06 5539.38 1.61 2.02 0.87 -1 -1 1.61 0.630165 0.574902 1019 912 874 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_48.v common 55.65 vpr 86.46 MiB 0.23 16632 -1 -1 1 0.78 -1 -1 40408 -1 -1 144 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88536 22 19 4241 3053 1 2458 198 24 24 576 mult_36 auto 44.8 MiB 7.20 15648 81.7 MiB 1.66 0.02 8.54649 -901.089 -8.54649 8.54649 1.87 0.00415738 0.00347771 0.449584 0.387511 76 24932 41 1.59675e+07 7.23248e+06 2.61600e+06 4541.67 34.47 4.94807 4.40935 68478 680951 -1 22058 22 16525 19320 3412584 743035 0 0 3412584 743035 17779 16757 0 0 133608 125670 0 0 183667 145096 0 0 17788 16889 0 0 1539918 217750 0 0 1519824 220873 0 0 17779 0 0 1279 8104 8780 24401 1608 440 9.49942 9.49942 -1724.72 -9.49942 0 0 3.24203e+06 5628.53 1.63 1.69 0.94 -1 -1 1.63 0.535029 0.488519 1038 931 893 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_49.v common 63.10 vpr 85.75 MiB 0.25 16988 -1 -1 1 0.54 -1 -1 40476 -1 -1 145 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87812 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 45.7 MiB 7.02 17914 82.1 MiB 1.69 0.02 8.67149 -899.265 -8.67149 8.67149 1.64 0.00461608 0.00403151 0.429009 0.370125 74 30787 42 1.59675e+07 7.64295e+06 2.56259e+06 4448.94 41.95 5.17793 4.62094 67906 667765 -1 25475 26 23355 27104 6018365 1227340 0 0 6018365 1227340 25276 23803 0 0 189936 178846 0 0 266305 203790 0 0 25279 23994 0 0 2732170 398735 0 0 2779399 398172 0 0 25276 0 0 1951 12562 12698 55015 1857 555 10.1993 10.1993 -1502.89 -10.1993 0 0 3.19068e+06 5539.38 1.58 2.62 0.81 -1 -1 1.58 0.652665 0.594088 1062 950 912 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_50.v common 44.52 vpr 82.24 MiB 0.22 17076 -1 -1 1 0.90 -1 -1 40632 -1 -1 148 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84212 22 19 4420 3181 1 2563 203 24 24 576 mult_36 auto 45.6 MiB 7.63 17842 82.2 MiB 2.45 0.04 9.01655 -961.77 -9.01655 9.01655 2.24 0.0102458 0.00880925 0.662029 0.576804 70 30643 40 1.59675e+07 7.68637e+06 2.45377e+06 4260.01 22.92 3.92034 3.50005 66754 640332 -1 25117 22 19334 22724 4115308 869383 0 0 4115308 869383 20786 19702 0 0 161847 150765 0 0 220265 175486 0 0 20790 19855 0 0 1848292 248660 0 0 1843328 254915 0 0 20786 0 0 1479 10032 11044 28696 2007 747 10.3265 10.3265 -1708.83 -10.3265 0 0 3.09179e+06 5367.68 1.35 1.61 0.82 -1 -1 1.35 0.434867 0.395675 1082 969 931 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_51.v common 64.15 vpr 86.34 MiB 0.25 17180 -1 -1 1 1.02 -1 -1 40784 -1 -1 152 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88408 22 19 4524 3251 1 2633 207 24 24 576 mult_36 auto 46.6 MiB 7.56 17656 83.3 MiB 1.40 0.02 8.50409 -1012.06 -8.50409 8.50409 2.50 0.00456334 0.00397978 0.383258 0.333346 74 29723 39 1.59675e+07 7.74428e+06 2.56259e+06 4448.94 41.51 5.39506 4.81971 67906 667765 -1 25531 25 22236 25618 4764084 952226 0 0 4764084 952226 23809 22450 0 0 167986 157411 0 0 244095 183837 0 0 23810 22627 0 0 2132945 285952 0 0 2171439 279949 0 0 23809 0 0 1601 9205 10987 32741 1833 213 10.215 10.215 -1591.21 -10.215 0 0 3.19068e+06 5539.38 1.59 2.12 0.87 -1 -1 1.59 0.620463 0.566285 1107 988 950 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_52.v common 48.49 vpr 83.69 MiB 0.25 17324 -1 -1 1 1.03 -1 -1 38972 -1 -1 155 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85696 22 19 4598 3308 1 2667 210 24 24 576 mult_36 auto 46.9 MiB 8.33 18143 83.7 MiB 1.69 0.02 8.85319 -995.156 -8.85319 8.85319 2.88 0.00485901 0.00424828 0.428703 0.37186 74 31788 47 1.59675e+07 7.7877e+06 2.56259e+06 4448.94 24.09 3.36569 3.0092 67906 667765 -1 25922 30 20829 24352 4698218 964838 0 0 4698218 964838 22538 21138 0 0 150050 139964 0 0 238597 167585 0 0 22543 21290 0 0 2129961 308161 0 0 2134529 306700 0 0 22538 0 0 1733 10864 9637 32256 1861 165 10.0223 10.0223 -1669.6 -10.0223 0 0 3.19068e+06 5539.38 1.58 2.48 0.84 -1 -1 1.58 0.784918 0.715597 1127 1007 969 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_14.v common 17.39 vpr 70.05 MiB 0.08 10320 -1 -1 1 0.30 -1 -1 35056 -1 -1 65 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71736 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 32.4 MiB 0.45 5455 70.1 MiB 0.78 0.02 3.89606 -995.417 -3.89606 3.89606 0.92 0.00226979 0.00200545 0.197036 0.169206 64 10286 29 6.62819e+06 2.54052e+06 943753. 3686.54 11.44 1.56162 1.38473 27892 240595 -1 8612 20 3771 4299 609202 136076 0 0 609202 136076 4127 3868 0 0 28547 25537 0 0 39253 32491 0 0 4167 3911 0 0 265810 35414 0 0 267298 34855 0 0 4127 0 0 370 2178 1952 15558 197 1 4.27196 4.27196 -1190.62 -4.27196 0 0 1.19033e+06 4649.74 0.47 0.45 0.31 -1 -1 0.47 0.240355 0.222578 481 649 247 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_15.v common 16.41 vpr 71.05 MiB 0.09 10980 -1 -1 1 0.32 -1 -1 35880 -1 -1 72 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72752 22 19 2144 1789 1 1107 118 16 16 256 mult_36 auto 33.3 MiB 0.83 5718 71.0 MiB 0.60 0.01 3.89606 -1112.51 -3.89606 3.89606 0.76 0.00345065 0.00300181 0.201852 0.174713 56 12361 48 6.62819e+06 3.03953e+06 849745. 3319.32 10.47 1.88834 1.67592 26364 208198 -1 10180 21 4736 5399 1076168 305549 0 0 1076168 305549 5075 4823 0 0 40417 36838 0 0 54677 45737 0 0 5132 4880 0 0 485835 105849 0 0 485032 107422 0 0 5075 0 0 357 2950 2997 20823 340 25 4.27196 4.27196 -1351.76 -4.27196 0 0 1.04740e+06 4091.43 0.26 0.34 0.22 -1 -1 0.26 0.117796 0.107071 521 704 266 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_16.v common 37.26 vpr 71.09 MiB 0.08 10672 -1 -1 1 0.33 -1 -1 35828 -1 -1 74 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72796 22 19 2218 1846 1 1153 120 16 16 256 mult_36 auto 33.2 MiB 0.86 6289 71.1 MiB 0.76 0.01 3.89606 -1149.49 -3.89606 3.89606 0.63 0.00413226 0.00361266 0.287216 0.255322 56 14077 34 6.62819e+06 3.06896e+06 849745. 3319.32 30.94 2.62439 2.32106 26364 208198 -1 11084 20 5001 5670 1037995 245468 0 0 1037995 245468 5487 5107 0 0 44132 40293 0 0 57444 48949 0 0 5543 5204 0 0 464443 71688 0 0 460946 74227 0 0 5487 0 0 501 3163 3408 25573 208 1 4.27196 4.27196 -1398.88 -4.27196 0 0 1.04740e+06 4091.43 0.40 0.70 0.26 -1 -1 0.40 0.335422 0.309857 540 723 285 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_17.v common 15.64 vpr 73.00 MiB 0.10 11720 -1 -1 1 0.30 -1 -1 36720 -1 -1 83 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74748 22 19 2536 2130 1 1255 129 16 16 256 mult_36 auto 35.6 MiB 1.00 6827 73.0 MiB 0.78 0.01 3.89606 -1296.1 -3.89606 3.89606 0.91 0.00459908 0.00406656 0.289015 0.255157 60 13881 31 6.62819e+06 3.20141e+06 890343. 3477.90 8.45 1.75569 1.5757 27128 224764 -1 10875 19 5135 5905 916034 212668 0 0 916034 212668 5450 5192 0 0 43390 39459 0 0 54177 46582 0 0 5472 5251 0 0 405762 56621 0 0 401783 59563 0 0 5450 0 0 331 2592 2661 6611 555 17 4.27196 4.27196 -1546.11 -4.27196 0 0 1.11577e+06 4358.47 0.44 0.60 0.28 -1 -1 0.44 0.213629 0.195903 617 851 304 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_18.v common 17.18 vpr 73.36 MiB 0.10 11712 -1 -1 1 0.38 -1 -1 36768 -1 -1 86 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75116 22 19 2610 2187 1 1302 132 16 16 256 mult_36 auto 35.9 MiB 0.97 7491 73.4 MiB 0.67 0.01 3.89606 -1345.56 -3.89606 3.89606 0.84 0.00227433 0.00194166 0.223129 0.193721 66 15279 37 6.62819e+06 3.24555e+06 974584. 3806.97 10.30 2.0282 1.8139 28148 247068 -1 11466 18 4897 5602 888829 200765 0 0 888829 200765 5278 4983 0 0 40041 36203 0 0 51677 43918 0 0 5316 5044 0 0 395442 56492 0 0 391075 54125 0 0 5278 0 0 396 3213 3451 22596 350 2 4.27196 4.27196 -1580.71 -4.27196 0 0 1.22072e+06 4768.46 0.48 0.54 0.31 -1 -1 0.48 0.253127 0.230615 636 870 323 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_19.v common 14.68 vpr 74.09 MiB 0.08 12176 -1 -1 1 0.38 -1 -1 36872 -1 -1 91 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75872 22 19 2778 2321 1 1398 138 16 16 256 mult_36 auto 36.6 MiB 0.99 7954 74.1 MiB 0.83 0.02 3.89606 -1429.01 -3.89606 3.89606 0.88 0.00553068 0.00489857 0.259951 0.22571 68 14511 31 6.62819e+06 3.71513e+06 1.00038e+06 3907.74 7.23 1.81584 1.60711 28404 252462 -1 11685 17 5436 6171 874974 213327 0 0 874974 213327 5728 5493 0 0 46380 42485 0 0 60510 51115 0 0 5734 5535 0 0 380579 53996 0 0 376043 54703 0 0 5728 0 0 309 2035 2324 6955 509 49 4.27196 4.27196 -1708.86 -4.27196 0 0 1.24648e+06 4869.04 0.49 0.57 0.32 -1 -1 0.49 0.250063 0.227989 676 925 342 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_20.v common 21.54 vpr 74.39 MiB 0.10 12244 -1 -1 1 0.44 -1 -1 36836 -1 -1 93 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76172 22 19 2852 2378 1 1440 140 16 16 256 mult_36 auto 37.2 MiB 1.05 8088 74.4 MiB 0.89 0.02 3.89606 -1432.9 -3.89606 3.89606 0.95 0.00688576 0.00625788 0.292188 0.25848 68 15219 44 6.62819e+06 3.74456e+06 1.00038e+06 3907.74 13.99 2.94344 2.55266 28404 252462 -1 12027 16 5268 6092 844988 197290 0 0 844988 197290 5599 5333 0 0 43229 39134 0 0 55078 46791 0 0 5604 5379 0 0 363178 49611 0 0 372300 51042 0 0 5599 0 0 347 2255 2518 7158 544 11 4.27196 4.27196 -1695.63 -4.27196 0 0 1.24648e+06 4869.04 0.46 0.52 0.31 -1 -1 0.46 0.242593 0.222237 695 944 361 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_21.v common 17.81 vpr 75.44 MiB 0.13 12832 -1 -1 1 0.46 -1 -1 37372 -1 -1 97 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77252 22 19 3057 2549 1 1542 144 16 16 256 mult_36 auto 38.1 MiB 1.21 8730 75.4 MiB 1.14 0.02 4.02136 -1577.56 -4.02136 4.02136 0.89 0.0059371 0.00524646 0.356632 0.308802 70 15517 36 6.62819e+06 3.80343e+06 1.02522e+06 4004.78 9.27 2.27929 2.03755 28912 262511 -1 13063 19 5713 6765 1030885 239892 0 0 1030885 239892 6035 5740 0 0 50245 45203 0 0 64205 54220 0 0 6039 5779 0 0 454635 65061 0 0 449726 63889 0 0 6035 0 0 342 3429 3768 7384 810 2 4.27196 4.27196 -1878.29 -4.27196 0 0 1.29210e+06 5047.26 0.47 0.72 0.33 -1 -1 0.47 0.348041 0.317307 742 1017 380 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_22.v common 19.19 vpr 76.10 MiB 0.10 12920 -1 -1 1 0.53 -1 -1 37716 -1 -1 100 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77928 22 19 3131 2606 1 1585 147 16 16 256 mult_36 auto 38.9 MiB 1.05 9937 76.1 MiB 1.09 0.02 4.02136 -1634.72 -4.02136 4.02136 0.93 0.00623312 0.00549252 0.367155 0.325157 72 19024 32 6.62819e+06 3.84757e+06 1.04740e+06 4091.43 10.58 2.65734 2.35201 29168 268476 -1 14853 16 6083 7149 1335544 289554 0 0 1335544 289554 6382 6133 0 0 50554 45635 0 0 66212 55447 0 0 6393 6173 0 0 603159 88629 0 0 602844 87537 0 0 6382 0 0 314 3622 3960 7616 842 55 4.52256 4.52256 -1980.38 -4.52256 0 0 1.31294e+06 5128.69 0.51 0.81 0.36 -1 -1 0.51 0.320106 0.296147 762 1036 399 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_23.v common 19.79 vpr 76.75 MiB 0.13 13260 -1 -1 1 0.52 -1 -1 37396 -1 -1 107 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78588 22 19 3301 2742 1 1683 155 18 18 324 mult_36 auto 39.6 MiB 1.05 9471 76.7 MiB 0.90 0.01 4.02136 -1706.28 -4.02136 4.02136 1.31 0.00332745 0.00287971 0.282956 0.244092 70 18248 49 8.18539e+06 4.34658e+06 1.34436e+06 4149.26 10.37 2.48841 2.22057 37264 347768 -1 14508 18 6224 7225 1157806 258991 0 0 1157806 258991 6590 6266 0 0 52027 47030 0 0 68145 57109 0 0 6596 6305 0 0 513501 70614 0 0 510947 71667 0 0 6590 0 0 382 3073 3583 8023 715 130 4.39726 4.39726 -2080.7 -4.39726 0 0 1.69344e+06 5226.66 0.71 0.82 0.43 -1 -1 0.71 0.409631 0.377029 802 1091 418 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_24.v common 21.56 vpr 77.33 MiB 0.13 13184 -1 -1 1 0.52 -1 -1 37940 -1 -1 109 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79184 22 19 3375 2799 1 1730 157 18 18 324 mult_36 auto 40.1 MiB 0.98 10319 77.3 MiB 1.38 0.02 3.77076 -1743.26 -3.77076 3.77076 1.22 0.00539014 0.00462703 0.46162 0.40546 68 19284 29 8.18539e+06 4.37601e+06 1.31159e+06 4048.11 12.86 3.44355 3.07871 36620 334356 -1 15345 18 6770 7825 1259917 277735 0 0 1259917 277735 7148 6820 0 0 56138 51103 0 0 71099 60765 0 0 7165 6859 0 0 558427 75744 0 0 559940 76444 0 0 7148 0 0 393 3382 3538 8828 763 24 4.39726 4.39726 -2102.6 -4.39726 0 0 1.63345e+06 5041.52 0.53 0.45 0.33 -1 -1 0.53 0.20548 0.188743 821 1110 437 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_25.v common 56.55 vpr 78.13 MiB 0.14 13788 -1 -1 1 0.58 -1 -1 37656 -1 -1 116 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80004 22 19 3615 3005 1 1835 164 18 18 324 mult_36 auto 40.9 MiB 1.12 10681 78.1 MiB 1.79 0.02 3.89606 -1905.11 -3.89606 3.89606 1.41 0.00743505 0.00657976 0.584767 0.531518 68 20567 41 8.18539e+06 4.47902e+06 1.31159e+06 4048.11 46.07 4.19652 3.71377 36620 334356 -1 16275 18 7004 7823 1366273 300388 0 0 1366273 300388 7282 7067 0 0 58913 53694 0 0 74652 63751 0 0 7285 7095 0 0 603806 85978 0 0 614335 82803 0 0 7282 0 0 296 2601 2394 8737 563 183 4.39726 4.39726 -2281.95 -4.39726 0 0 1.63345e+06 5041.52 0.66 0.82 0.41 -1 -1 0.66 0.386515 0.352625 877 1201 456 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_26.v common 30.28 vpr 78.40 MiB 0.15 13932 -1 -1 1 0.63 -1 -1 37692 -1 -1 118 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80280 22 19 3689 3062 1 1872 166 18 18 324 mult_36 auto 41.2 MiB 1.01 10842 78.4 MiB 1.65 0.02 3.77076 -1893.81 -3.77076 3.77076 1.07 0.00701359 0.006249 0.546476 0.481838 70 19569 29 8.18539e+06 4.50845e+06 1.34436e+06 4149.26 20.28 4.39581 3.89592 37264 347768 -1 16606 15 7094 8192 1381500 300240 0 0 1381500 300240 7451 7138 0 0 59124 53275 0 0 75979 64063 0 0 7457 7194 0 0 615239 83529 0 0 616250 85041 0 0 7451 0 0 374 3538 4044 9206 802 235 4.39726 4.39726 -2311.09 -4.39726 0 0 1.69344e+06 5226.66 0.72 0.81 0.43 -1 -1 0.72 0.375574 0.344892 896 1220 475 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_27.v common 56.32 vpr 79.54 MiB 0.15 14348 -1 -1 1 0.61 -1 -1 38508 -1 -1 126 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81452 22 19 3871 3210 1 1979 175 18 18 324 mult_36 auto 42.2 MiB 1.27 11433 79.5 MiB 1.93 0.03 3.89606 -1981.57 -3.89606 3.89606 1.32 0.00982682 0.00883509 0.66674 0.596514 68 22283 39 8.18539e+06 5.02217e+06 1.31159e+06 4048.11 45.86 5.58239 4.98135 36620 334356 -1 17472 19 7737 8725 1391939 311827 0 0 1391939 311827 8054 7795 0 0 63451 57858 0 0 80282 68464 0 0 8058 7828 0 0 609501 85506 0 0 622593 84376 0 0 8054 0 0 336 3248 3234 9504 729 247 4.27196 4.27196 -2338.39 -4.27196 0 0 1.63345e+06 5041.52 0.57 0.95 0.26 -1 -1 0.57 0.480331 0.437808 944 1275 494 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_28.v common 22.93 vpr 80.14 MiB 0.15 14540 -1 -1 1 0.66 -1 -1 38048 -1 -1 128 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82068 22 19 3945 3267 1 2024 177 18 18 324 mult_36 auto 43.1 MiB 1.23 11681 80.1 MiB 1.94 0.03 4.02136 -2037.61 -4.02136 4.02136 1.29 0.00914078 0.00817264 0.682278 0.611304 70 21620 31 8.18539e+06 5.0516e+06 1.34436e+06 4149.26 11.73 3.39794 3.03837 37264 347768 -1 17704 15 7541 8837 1442349 318893 0 0 1442349 318893 7945 7591 0 0 63705 57224 0 0 82471 69579 0 0 7958 7660 0 0 642725 87607 0 0 637545 89232 0 0 7945 0 0 422 4183 4696 9682 984 50 4.52256 4.52256 -2497.97 -4.52256 0 0 1.69344e+06 5226.66 0.62 0.92 0.43 -1 -1 0.62 0.425672 0.390191 962 1294 513 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_29.v common 33.07 vpr 81.32 MiB 0.16 14984 -1 -1 1 0.66 -1 -1 38856 -1 -1 135 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83272 22 19 4159 3447 1 2140 185 22 22 484 mult_36 auto 44.2 MiB 0.77 13379 81.3 MiB 1.64 0.02 3.89606 -2167.34 -3.89606 3.89606 3.22 0.00430869 0.00371591 0.547856 0.482984 68 26287 45 1.33067e+07 5.5506e+06 2.01763e+06 4168.66 20.02 4.6527 4.16532 55470 518816 -1 20287 19 8403 9886 1847263 392459 0 0 1847263 392459 8801 8457 0 0 70702 64302 0 0 90026 76613 0 0 8803 8517 0 0 835082 118823 0 0 833849 115747 0 0 8801 0 0 417 4419 5194 10888 1130 126 4.39726 4.39726 -2864.08 -4.39726 0 0 2.51205e+06 5190.18 0.91 0.78 0.54 -1 -1 0.91 0.297935 0.268282 1015 1367 532 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_30.v common 39.07 vpr 81.64 MiB 0.17 15064 -1 -1 1 0.66 -1 -1 40168 -1 -1 137 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83604 22 19 4233 3504 1 2179 187 22 22 484 mult_36 auto 44.4 MiB 1.51 13676 81.6 MiB 1.09 0.02 3.77076 -2120.46 -3.77076 3.77076 1.48 0.0041638 0.00356601 0.340077 0.29306 70 24321 28 1.33067e+07 5.58003e+06 2.06816e+06 4273.05 26.73 4.47673 3.97047 56434 539830 -1 20411 19 8458 9929 1954456 415180 0 0 1954456 415180 8936 8534 0 0 74645 67369 0 0 95807 81307 0 0 8940 8612 0 0 877213 123441 0 0 888915 125917 0 0 8936 0 0 493 4140 5694 11066 1080 68 4.39726 4.39726 -2673.53 -4.39726 0 0 2.60483e+06 5381.88 1.14 1.03 0.63 -1 -1 1.14 0.42542 0.387674 1034 1386 551 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_31.v common 24.03 vpr 83.41 MiB 0.17 15328 -1 -1 1 0.63 -1 -1 40440 -1 -1 143 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85416 22 19 4410 3647 1 2283 193 22 22 484 mult_36 auto 45.4 MiB 1.01 14460 83.4 MiB 1.59 0.03 3.89606 -2213.07 -3.89606 3.89606 2.13 0.0078167 0.00685212 0.515858 0.450597 70 25164 41 1.33067e+07 5.66832e+06 2.06816e+06 4273.05 10.76 2.7806 2.47346 56434 539830 -1 21753 16 8661 9981 1804264 382134 0 0 1804264 382134 9008 8691 0 0 71874 64860 0 0 94355 79240 0 0 9009 8731 0 0 821766 106046 0 0 798252 114566 0 0 9008 0 0 366 4871 4429 10872 1019 296 4.52256 4.52256 -2872.8 -4.52256 0 0 2.60483e+06 5381.88 1.17 1.01 0.64 -1 -1 1.17 0.456602 0.416387 1077 1441 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_32.v common 111.25 vpr 83.61 MiB 0.20 15600 -1 -1 1 0.71 -1 -1 39248 -1 -1 145 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85620 22 19 4484 3704 1 2328 195 22 22 484 mult_36 auto 45.8 MiB 1.38 14008 83.6 MiB 2.13 0.03 3.77076 -2263.87 -3.77076 3.77076 2.17 0.00955446 0.00852055 0.685871 0.607844 68 27330 44 1.33067e+07 5.69776e+06 2.01763e+06 4168.66 96.93 6.68193 5.92565 55470 518816 -1 20985 23 9698 11440 1886849 406909 0 0 1886849 406909 10230 9776 0 0 83533 76164 0 0 105343 89884 0 0 10239 9859 0 0 824309 111092 0 0 853195 110134 0 0 10230 0 0 553 5549 6159 12903 1277 175 4.39726 4.39726 -2885.9 -4.39726 0 0 2.51205e+06 5190.18 1.18 0.98 0.66 -1 -1 1.18 0.393671 0.355609 1096 1460 589 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_33.v common 98.96 vpr 85.14 MiB 0.16 16572 -1 -1 1 0.88 -1 -1 41108 -1 -1 157 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87184 22 19 4843 4029 1 2439 208 22 22 484 mult_36 auto 47.4 MiB 1.38 14297 85.1 MiB 2.50 0.03 3.77076 -2409.32 -3.77076 3.77076 2.15 0.00985288 0.00860096 0.792931 0.694721 68 26380 24 1.33067e+07 6.27034e+06 2.01763e+06 4168.66 83.70 6.45042 5.69365 55470 518816 -1 21476 16 8831 10383 1694194 370818 0 0 1694194 370818 9327 8933 0 0 77354 70476 0 0 97191 83430 0 0 9339 8998 0 0 739864 101333 0 0 761119 97648 0 0 9327 0 0 512 5265 5661 11757 1118 246 4.39726 4.39726 -3176.06 -4.39726 0 0 2.51205e+06 5190.18 1.20 1.06 0.62 -1 -1 1.20 0.498756 0.457465 1185 1606 608 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_34.v common 30.86 vpr 84.64 MiB 0.19 16716 -1 -1 1 0.85 -1 -1 41136 -1 -1 160 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86676 22 19 4917 4086 1 2483 211 22 22 484 mult_36 auto 47.8 MiB 1.41 16311 84.6 MiB 2.16 0.03 4.02136 -2519.45 -4.02136 4.02136 1.93 0.0100641 0.00886295 0.65816 0.574746 74 29743 47 1.33067e+07 6.31449e+06 2.15943e+06 4461.62 16.32 3.34816 2.96503 57402 562966 -1 24396 16 9887 11478 2397145 481602 0 0 2397145 481602 10452 9998 0 0 77068 69668 0 0 103246 84759 0 0 10460 10063 0 0 1092564 150853 0 0 1103355 156261 0 0 10452 0 0 584 5522 5161 13375 1089 206 4.52256 4.52256 -3217.23 -4.52256 0 0 2.68771e+06 5553.12 1.16 1.19 0.67 -1 -1 1.16 0.43463 0.394295 1205 1625 627 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_35.v common 44.55 vpr 85.85 MiB 0.29 16912 -1 -1 1 0.95 -1 -1 41276 -1 -1 163 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87908 22 19 5093 4228 1 2586 214 22 22 484 mult_36 auto 49.3 MiB 0.95 17244 85.8 MiB 2.40 0.03 3.89606 -2602.71 -3.89606 3.89606 2.11 0.0105519 0.00935272 0.77854 0.688042 76 29083 31 1.33067e+07 6.35863e+06 2.20457e+06 4554.90 30.06 5.83623 5.20282 57882 574062 -1 24927 17 9741 11134 2136889 442932 0 0 2136889 442932 10225 9809 0 0 77925 70916 0 0 102832 85935 0 0 10230 9868 0 0 961988 132020 0 0 973689 134384 0 0 10225 0 0 500 4623 4964 12809 970 60 4.52256 4.52256 -3330.35 -4.52256 0 0 2.73077e+06 5642.09 1.23 1.13 0.70 -1 -1 1.23 0.518624 0.471458 1248 1680 646 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_36.v common 50.24 vpr 86.00 MiB 0.26 17048 -1 -1 1 0.88 -1 -1 41552 -1 -1 165 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88060 22 19 5167 4285 1 2630 216 22 22 484 mult_36 auto 49.3 MiB 1.45 15944 86.0 MiB 3.15 0.03 4.02136 -2636.64 -4.02136 4.02136 2.27 0.0102348 0.0090309 1.05061 0.921377 74 29769 46 1.33067e+07 6.38806e+06 2.15943e+06 4461.62 33.65 7.8433 6.93586 57402 562966 -1 24294 17 10288 11994 1977380 411307 0 0 1977380 411307 10809 10347 0 0 78833 71139 0 0 106254 87472 0 0 10811 10404 0 0 877214 117611 0 0 893459 114334 0 0 10809 0 0 542 5212 6416 13715 1234 3 4.27196 4.27196 -3335.05 -4.27196 0 0 2.68771e+06 5553.12 1.29 1.21 0.77 -1 -1 1.29 0.502098 0.455189 1267 1699 665 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_37.v common 44.95 vpr 91.41 MiB 0.21 17644 -1 -1 1 1.06 -1 -1 40432 -1 -1 173 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93600 22 19 5380 4464 1 2739 225 24 24 576 mult_36 auto 50.5 MiB 1.02 17893 87.0 MiB 2.89 0.03 4.02136 -2915.58 -4.02136 4.02136 2.67 0.010447 0.0091824 0.906969 0.794917 74 30118 32 1.60519e+07 6.90179e+06 2.56259e+06 4448.94 28.46 4.83616 4.25753 67906 667765 -1 25456 17 9846 11504 2099895 440259 0 0 2099895 440259 10315 9907 0 0 78089 70269 0 0 103183 85609 0 0 10320 9969 0 0 950598 131339 0 0 947390 133166 0 0 10315 0 0 486 5822 6038 12896 1247 506 4.64786 4.64786 -3554.28 -4.64786 0 0 3.19068e+06 5539.38 1.41 1.27 0.81 -1 -1 1.41 0.572674 0.520589 1321 1772 684 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_38.v common 46.64 vpr 92.64 MiB 0.32 17640 -1 -1 1 1.03 -1 -1 41816 -1 -1 176 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94868 22 19 5454 4521 1 2784 228 24 24 576 mult_36 auto 51.0 MiB 1.34 17465 87.5 MiB 3.03 0.04 4.14666 -2931.9 -4.14666 4.14666 2.35 0.0113849 0.00999837 0.908699 0.795723 76 30411 23 1.60519e+07 6.94594e+06 2.61600e+06 4541.67 30.71 5.63886 5.01513 68478 680951 -1 25523 18 9919 11342 2160619 459180 0 0 2160619 459180 10413 9961 0 0 79415 72231 0 0 104673 87490 0 0 10416 10009 0 0 986893 136169 0 0 968809 143320 0 0 10413 0 0 512 4429 5752 13234 963 21 4.39726 4.39726 -3523.92 -4.39726 0 0 3.24203e+06 5628.53 1.14 1.00 0.55 -1 -1 1.14 0.453461 0.412707 1340 1791 703 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_39.v common 50.37 vpr 92.53 MiB 0.32 18104 -1 -1 1 0.97 -1 -1 41096 -1 -1 180 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94752 22 19 5629 4662 1 2882 232 24 24 576 mult_36 auto 51.6 MiB 1.18 18842 88.0 MiB 3.16 0.04 4.27196 -3070.83 -4.27196 4.27196 2.73 0.0108896 0.00955986 1.17827 1.05124 80 30368 37 1.60519e+07 7.0048e+06 2.72095e+06 4723.87 33.27 6.37045 5.65441 70206 720185 -1 26825 16 10118 11683 2144155 438880 0 0 2144155 438880 10612 10173 0 0 81689 73425 0 0 107536 89518 0 0 10613 10241 0 0 966653 129297 0 0 967052 126226 0 0 10612 0 0 511 4565 6326 13507 1110 287 4.52256 4.52256 -3638.71 -4.52256 0 0 3.41546e+06 5929.62 1.48 1.44 0.82 -1 -1 1.48 0.568341 0.51646 1381 1846 722 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_40.v common 143.79 vpr 88.71 MiB 0.25 18176 -1 -1 1 1.14 -1 -1 41808 -1 -1 182 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90840 22 19 5703 4719 1 2929 234 24 24 576 mult_36 auto 52.2 MiB 1.61 19511 88.7 MiB 3.04 0.04 4.02136 -3137.4 -4.02136 4.02136 2.66 0.0117049 0.0103563 0.921947 0.808602 68 37642 48 1.60519e+07 7.03423e+06 2.39371e+06 4155.74 126.24 6.40654 5.62069 65606 615345 -1 28472 28 11875 13800 2590467 581457 0 0 2590467 581457 12457 11975 0 0 94374 85530 0 0 126052 105133 0 0 12460 12034 0 0 1182478 183379 0 0 1162646 183406 0 0 12457 0 0 604 6749 7018 15727 1394 223 4.52256 4.52256 -3881.14 -4.52256 0 0 2.98162e+06 5176.42 0.97 1.54 0.75 -1 -1 0.97 0.727922 0.652183 1400 1865 741 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_41.v common 48.20 vpr 95.12 MiB 0.26 18648 -1 -1 1 1.11 -1 -1 41172 -1 -1 190 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 97404 22 19 5950 4932 1 3039 243 24 24 576 mult_36 auto 53.3 MiB 1.82 20898 89.6 MiB 2.87 0.04 4.27196 -3240.13 -4.27196 4.27196 2.70 0.0123164 0.0109529 0.855169 0.751262 80 32462 18 1.60519e+07 7.54795e+06 2.72095e+06 4723.87 29.66 5.61631 4.98043 70206 720185 -1 28437 15 10116 11695 2128957 434936 0 0 2128957 434936 10631 10217 0 0 79659 71255 0 0 105510 87325 0 0 10636 10262 0 0 948124 129589 0 0 974397 126288 0 0 10631 0 0 533 5361 5598 13641 1098 35 4.89846 4.89846 -4153.72 -4.89846 0 0 3.41546e+06 5929.62 1.64 1.18 0.89 -1 -1 1.64 0.5755 0.530019 1461 1956 760 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_42.v common 56.58 vpr 95.61 MiB 0.26 18800 -1 -1 1 1.27 -1 -1 42796 -1 -1 193 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 97900 22 19 6024 4989 1 3082 246 24 24 576 mult_36 auto 53.8 MiB 1.86 19813 90.1 MiB 3.93 0.05 4.02136 -3217.23 -4.02136 4.02136 2.59 0.0179972 0.0165635 1.1017 0.986322 80 31525 34 1.60519e+07 7.5921e+06 2.72095e+06 4723.87 36.21 7.68783 6.85918 70206 720185 -1 27937 19 10608 12332 2251218 471815 0 0 2251218 471815 11213 10704 0 0 86367 77769 0 0 112983 94343 0 0 11216 10767 0 0 1010535 140013 0 0 1018904 138219 0 0 11213 0 0 623 5010 6693 14406 1190 79 4.39726 4.39726 -3782.5 -4.39726 0 0 3.41546e+06 5929.62 1.67 1.42 0.95 -1 -1 1.67 0.621753 0.56138 1480 1975 779 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_43.v common 43.30 vpr 90.86 MiB 0.25 19212 -1 -1 1 1.19 -1 -1 42864 -1 -1 199 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93044 22 19 6198 5129 1 3181 252 24 24 576 mult_36 auto 54.7 MiB 1.90 20655 90.9 MiB 4.49 0.07 4.14666 -3346.84 -4.14666 4.14666 3.53 0.0376913 0.0362513 1.36885 1.21488 74 37107 44 1.60519e+07 7.68039e+06 2.56259e+06 4448.94 21.79 6.43418 5.74952 67906 667765 -1 30308 18 12350 14284 2757615 577678 0 0 2757615 577678 12936 12444 0 0 99862 90795 0 0 132920 109679 0 0 12936 12507 0 0 1242055 178152 0 0 1256906 174101 0 0 12936 0 0 603 7140 6756 16422 1377 673 4.39726 4.39726 -4239.22 -4.39726 0 0 3.19068e+06 5539.38 1.36 1.38 0.86 -1 -1 1.36 0.65656 0.60001 1523 2030 798 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_44.v common 58.27 vpr 97.99 MiB 0.24 19208 -1 -1 1 1.29 -1 -1 43072 -1 -1 200 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100344 22 19 6272 5186 1 3226 253 24 24 576 mult_36 auto 55.4 MiB 1.92 21784 91.5 MiB 5.23 0.04 4.14666 -3366.96 -4.14666 4.14666 2.41 0.0101334 0.00901705 1.69125 1.42688 82 34125 47 1.60519e+07 7.69511e+06 2.78508e+06 4835.20 36.56 8.54377 7.53285 70778 734779 -1 29262 17 11360 13038 2199998 461194 0 0 2199998 461194 11919 11454 0 0 86116 77331 0 0 114078 94530 0 0 11921 11519 0 0 993344 130955 0 0 982620 135405 0 0 11919 0 0 576 5130 5587 15034 1168 385 4.52256 4.52256 -3919.58 -4.52256 0 0 3.48632e+06 6052.64 1.67 1.40 0.94 -1 -1 1.67 0.587719 0.531426 1542 2049 817 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_45.v common 54.28 vpr 108.11 MiB 0.40 19604 -1 -1 1 1.18 -1 -1 43444 -1 -1 208 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 110704 22 19 6485 5365 1 3338 262 24 24 576 mult_36 auto 56.3 MiB 1.92 22644 92.5 MiB 2.72 0.04 4.14666 -3504.85 -4.14666 4.14666 2.27 0.0117332 0.0102194 0.788064 0.690696 88 34129 22 1.60519e+07 8.20883e+06 2.98162e+06 5176.42 35.40 6.833 6.06974 73078 787199 -1 30740 16 11435 13510 2273906 471597 0 0 2273906 471597 12007 11502 0 0 89268 80016 0 0 123713 100826 0 0 12014 11596 0 0 1025435 131877 0 0 1011469 135780 0 0 12007 0 0 590 7553 7281 15137 1556 511 4.64786 4.64786 -4239.83 -4.64786 0 0 3.70823e+06 6437.90 1.55 1.21 1.00 -1 -1 1.55 0.550439 0.498115 1593 2122 836 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_46.v common 51.83 vpr 98.26 MiB 0.43 20052 -1 -1 1 1.26 -1 -1 43436 -1 -1 210 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100620 22 19 6559 5422 1 3380 264 24 24 576 mult_36 auto 56.6 MiB 1.97 22795 92.6 MiB 3.12 0.05 4.14666 -3537.9 -4.14666 4.14666 2.28 0.0117893 0.0101713 0.872019 0.759247 78 37117 50 1.60519e+07 8.23826e+06 2.67122e+06 4637.53 33.01 7.1482 6.33385 69630 706637 -1 31531 17 12527 14798 2555511 549221 0 0 2555511 549221 13191 12627 0 0 101510 91694 0 0 134624 111757 0 0 13194 12695 0 0 1141514 161812 0 0 1151478 158636 0 0 13191 0 0 682 7784 8593 16646 1701 669 4.39726 4.39726 -4226.25 -4.39726 0 0 3.35110e+06 5817.88 1.40 1.38 0.78 -1 -1 1.40 0.555274 0.504857 1613 2141 855 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_47.v common 56.26 vpr 109.41 MiB 0.17 20344 -1 -1 1 1.32 -1 -1 43708 -1 -1 216 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 112036 22 19 6735 5564 1 3477 270 24 24 576 mult_36 auto 57.5 MiB 2.09 24680 93.6 MiB 2.75 0.05 4.52256 -3782.14 -4.52256 4.52256 2.59 0.0135222 0.011944 0.766367 0.668755 82 40151 44 1.60519e+07 8.32656e+06 2.78508e+06 4835.20 36.60 6.67382 5.92495 70778 734779 -1 33310 16 12709 14582 2738720 561613 0 0 2738720 561613 13258 12793 0 0 98034 88135 0 0 130783 107316 0 0 13260 12858 0 0 1236344 171727 0 0 1247041 168784 0 0 13258 0 0 566 6601 7069 16362 1376 54 4.89846 4.89846 -4451.49 -4.89846 0 0 3.48632e+06 6052.64 1.25 1.44 0.93 -1 -1 1.25 0.75829 0.702063 1656 2196 874 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_48.v common 47.39 vpr 93.99 MiB 0.30 20388 -1 -1 1 1.30 -1 -1 43672 -1 -1 218 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96244 22 19 6809 5621 1 3526 272 24 24 576 mult_36 auto 57.8 MiB 2.03 23908 94.0 MiB 3.92 0.05 4.02136 -3693.79 -4.02136 4.02136 2.43 0.0122545 0.0106533 1.06699 0.922926 82 40663 46 1.60519e+07 8.35599e+06 2.78508e+06 4835.20 27.30 6.70518 5.90371 70778 734779 -1 32725 17 12567 14420 2628492 552991 0 0 2628492 552991 13190 12656 0 0 99962 90116 0 0 130310 108468 0 0 13194 12718 0 0 1193099 161456 0 0 1178737 167577 0 0 13190 0 0 645 6404 5811 16599 1285 706 4.52256 4.52256 -4726.77 -4.52256 0 0 3.48632e+06 6052.64 1.57 1.41 0.95 -1 -1 1.57 0.650293 0.59243 1674 2215 893 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_49.v common 63.87 vpr 97.84 MiB 0.28 20968 -1 -1 1 1.07 -1 -1 44064 -1 -1 228 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100184 22 19 7094 5872 1 3640 283 24 24 576 mult_36 auto 59.8 MiB 1.63 23816 97.8 MiB 4.37 0.06 4.27196 -3979.66 -4.27196 4.27196 2.67 0.0188282 0.0170599 1.36229 1.21272 78 41490 47 1.60519e+07 8.89916e+06 2.67122e+06 4637.53 43.17 8.07746 7.12879 69630 706637 -1 33616 16 12984 15090 2797542 567951 0 0 2797542 567951 13592 13057 0 0 101708 91026 0 0 135966 111883 0 0 13597 13111 0 0 1265761 171137 0 0 1266918 167737 0 0 13592 0 0 625 6998 7415 16785 1556 228 4.77316 4.77316 -4868.19 -4.77316 0 0 3.35110e+06 5817.88 1.59 1.65 0.89 -1 -1 1.59 0.736614 0.671917 1745 2324 912 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_50.v common 67.47 vpr 111.22 MiB 0.29 21188 -1 -1 1 1.53 -1 -1 43732 -1 -1 230 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 113888 22 19 7168 5929 1 3676 285 24 24 576 mult_36 auto 59.5 MiB 1.93 24753 95.9 MiB 4.51 0.06 4.14666 -3986.24 -4.14666 4.14666 2.39 0.0154272 0.0136461 1.54703 1.3815 84 41338 30 1.60519e+07 8.92859e+06 2.84938e+06 4946.85 45.20 9.11684 8.11356 71930 760447 -1 34036 18 12877 14990 2676930 541389 0 0 2676930 541389 13507 12964 0 0 99808 89990 0 0 130273 108351 0 0 13510 13044 0 0 1207771 160234 0 0 1212061 156806 0 0 13507 0 0 650 7728 8659 16822 1551 696 4.64786 4.64786 -4700.22 -4.64786 0 0 3.60864e+06 6265.01 1.58 2.13 1.01 -1 -1 1.58 0.927589 0.855554 1764 2343 931 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_51.v common 51.34 vpr 96.62 MiB 0.29 21416 -1 -1 1 1.61 -1 -1 44460 -1 -1 235 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98936 22 19 7344 6071 1 3782 290 24 24 576 mult_36 auto 60.7 MiB 1.81 26953 96.6 MiB 3.94 0.06 4.39726 -4060.21 -4.39726 4.39726 2.71 0.0177796 0.015997 1.18938 1.0653 88 42143 36 1.60519e+07 9.00217e+06 2.98162e+06 5176.42 29.81 8.75842 7.80646 73078 787199 -1 36249 18 13376 15456 2994147 604506 0 0 2994147 604506 13987 13462 0 0 102842 92226 0 0 139646 115134 0 0 13989 13543 0 0 1355590 187361 0 0 1368093 182780 0 0 13987 0 0 629 6629 8055 17576 1519 922 4.77316 4.77316 -5039.11 -4.77316 0 0 3.70823e+06 6437.90 1.76 1.95 1.01 -1 -1 1.76 0.903784 0.823937 1808 2398 950 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_52.v common 54.70 vpr 97.21 MiB 0.31 21532 -1 -1 1 1.62 -1 -1 44368 -1 -1 237 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99548 22 19 7418 6128 1 3828 292 24 24 576 mult_36 auto 61.4 MiB 2.13 25183 97.2 MiB 4.06 0.06 4.14666 -3993.8 -4.14666 4.14666 2.59 0.0140783 0.0123666 1.1056 0.965081 78 42609 33 1.60519e+07 9.0316e+06 2.67122e+06 4637.53 33.06 6.38951 5.63173 69630 706637 -1 35584 16 14122 16543 2974148 623128 0 0 2974148 623128 14827 14240 0 0 115003 103688 0 0 152499 126511 0 0 14831 14324 0 0 1339108 180311 0 0 1337880 184054 0 0 14827 0 0 723 8785 9664 18674 1786 820 4.52256 4.52256 -4766.31 -4.52256 0 0 3.35110e+06 5817.88 1.57 1.66 0.90 -1 -1 1.57 0.676216 0.614209 1827 2417 969 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_14.v common 14.79 vpr 66.29 MiB 0.07 9244 -1 -1 1 0.19 -1 -1 34080 -1 -1 43 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67880 22 19 1246 925 1 718 88 16 16 256 mult_36 auto 28.2 MiB 0.49 3935 66.3 MiB 0.54 0.01 7.03101 -320.951 -7.03101 7.03101 0.94 0.00227422 0.00199492 0.172154 0.151368 54 7598 31 6.62819e+06 2.21677e+06 829453. 3240.05 9.19 1.14747 1.03293 26108 202796 -1 6246 30 6107 6843 1306069 347543 0 0 1306069 347543 6843 6223 0 0 50695 48243 0 0 70909 54111 0 0 6874 6303 0 0 587540 118945 0 0 583208 113718 0 0 6843 0 0 755 3335 2885 37434 0 0 7.78353 7.78353 -418.187 -7.78353 0 0 1.02522e+06 4004.78 0.38 0.72 0.26 -1 -1 0.38 0.168387 0.153553 299 285 247 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_15.v common 17.21 vpr 66.61 MiB 0.06 9324 -1 -1 1 0.21 -1 -1 34720 -1 -1 46 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68208 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 28.8 MiB 0.53 4309 66.6 MiB 0.84 0.01 6.86185 -318.377 -6.86185 6.86185 0.82 0.00241537 0.0021082 0.267159 0.234995 56 8709 31 6.62819e+06 2.65692e+06 849745. 3319.32 11.20 1.4122 1.26407 26364 208198 -1 7175 38 9347 10495 2241356 621767 0 0 2241356 621767 10495 9635 0 0 75405 70778 0 0 113967 82462 0 0 10555 9708 0 0 1018669 225109 0 0 1012265 224075 0 0 10495 0 0 1176 6049 5031 57327 0 0 8.25203 8.25203 -469.107 -8.25203 0 0 1.04740e+06 4091.43 0.30 0.79 0.25 -1 -1 0.30 0.193958 0.177572 321 304 266 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_16.v common 16.82 vpr 66.92 MiB 0.09 9472 -1 -1 1 0.21 -1 -1 34640 -1 -1 48 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68528 22 19 1418 1046 1 821 94 16 16 256 mult_36 auto 29.0 MiB 0.55 4533 66.9 MiB 0.67 0.01 7.04201 -332.846 -7.04201 7.04201 0.88 0.00260814 0.00230112 0.208746 0.183424 56 8805 33 6.62819e+06 2.68636e+06 849745. 3319.32 10.88 1.47352 1.32383 26364 208198 -1 7200 24 6776 7744 1291063 323531 0 0 1291063 323531 7744 7029 0 0 60153 56491 0 0 79991 64841 0 0 7802 7088 0 0 559091 93700 0 0 576282 94382 0 0 7744 0 0 994 4383 3812 47503 0 0 8.75508 8.75508 -464.641 -8.75508 0 0 1.04740e+06 4091.43 0.39 0.59 0.26 -1 -1 0.39 0.158766 0.145413 340 323 285 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_17.v common 13.49 vpr 67.52 MiB 0.09 10004 -1 -1 1 0.26 -1 -1 34648 -1 -1 52 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69136 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 29.8 MiB 0.50 4914 67.5 MiB 0.93 0.01 7.54655 -377.521 -7.54655 7.54655 0.92 0.00143919 0.0012402 0.265568 0.233792 56 9847 38 6.62819e+06 2.74522e+06 849745. 3319.32 7.16 1.03386 0.928371 26364 208198 -1 8172 29 8511 9452 1620916 387505 0 0 1620916 387505 9452 8682 0 0 68373 64093 0 0 94361 74351 0 0 9498 8732 0 0 736595 115620 0 0 702637 116027 0 0 9452 0 0 967 6672 6211 60384 0 0 9.48072 9.48072 -559.343 -9.48072 0 0 1.04740e+06 4091.43 0.36 0.76 0.25 -1 -1 0.36 0.17097 0.156457 365 342 304 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_18.v common 13.57 vpr 68.23 MiB 0.09 10260 -1 -1 1 0.23 -1 -1 34816 -1 -1 55 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69872 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 30.5 MiB 0.53 5324 68.2 MiB 0.56 0.01 7.49539 -396.092 -7.49539 7.49539 0.94 0.00315309 0.00277913 0.143834 0.125291 56 10175 41 6.62819e+06 2.78937e+06 849745. 3319.32 7.43 1.08625 0.979818 26364 208198 -1 8820 25 8485 9392 1754146 399895 0 0 1754146 399895 9392 8760 0 0 73262 68935 0 0 96411 78553 0 0 9497 8844 0 0 780385 116312 0 0 785199 118491 0 0 9392 0 0 934 5700 5057 51989 0 0 9.29732 9.29732 -569.304 -9.29732 0 0 1.04740e+06 4091.43 0.33 0.87 0.25 -1 -1 0.33 0.205228 0.18844 383 361 323 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_19.v common 16.51 vpr 68.38 MiB 0.09 10708 -1 -1 1 0.26 -1 -1 35180 -1 -1 58 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70020 22 19 1688 1231 1 976 105 16 16 256 mult_36 auto 30.5 MiB 0.66 5689 68.4 MiB 0.78 0.01 7.48725 -407.023 -7.48725 7.48725 0.93 0.00331835 0.00294675 0.220875 0.19433 58 11164 50 6.62819e+06 3.22951e+06 871168. 3403.00 9.84 1.49116 1.33185 26872 219187 -1 9023 28 8283 9373 1575543 378918 0 0 1575543 378918 9140 8457 0 0 63141 59205 0 0 88321 68810 0 0 9174 8542 0 0 712447 117167 0 0 693320 116737 0 0 9140 0 0 884 3947 4133 33901 251 1 8.99658 8.99658 -560.549 -8.99658 0 0 1.09288e+06 4269.05 0.41 0.89 0.26 -1 -1 0.41 0.233085 0.214648 404 380 342 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_20.v common 21.82 vpr 68.94 MiB 0.09 10664 -1 -1 1 0.29 -1 -1 35112 -1 -1 59 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70592 22 19 1762 1288 1 1014 106 16 16 256 mult_36 auto 31.2 MiB 0.65 5969 68.9 MiB 1.01 0.01 7.3951 -425.079 -7.3951 7.3951 0.94 0.00243518 0.00219706 0.28939 0.255509 64 10985 45 6.62819e+06 3.24423e+06 943753. 3686.54 15.25 2.15536 1.93718 27892 240595 -1 8995 25 7632 8671 1307192 296614 0 0 1307192 296614 8671 7840 0 0 61282 57126 0 0 83018 66388 0 0 8722 7913 0 0 586842 78817 0 0 558657 78530 0 0 8671 0 0 1063 5680 6502 64790 0 0 8.58677 8.58677 -595.348 -8.58677 0 0 1.19033e+06 4649.74 0.43 0.63 0.28 -1 -1 0.43 0.230092 0.211031 423 399 361 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_21.v common 19.54 vpr 69.18 MiB 0.09 10984 -1 -1 1 0.28 -1 -1 35664 -1 -1 62 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70844 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 31.5 MiB 0.41 6209 69.2 MiB 0.67 0.01 7.42524 -437.67 -7.42524 7.42524 0.56 0.00291402 0.00254567 0.187597 0.162475 68 10750 34 6.62819e+06 3.28838e+06 1.00038e+06 3907.74 14.17 2.19343 1.97123 28404 252462 -1 9000 26 8038 9122 1342352 301835 0 0 1342352 301835 8892 8203 0 0 63463 59905 0 0 85157 67970 0 0 8917 8311 0 0 586354 80069 0 0 589569 77377 0 0 8892 0 0 876 4434 4440 37532 251 2 8.40132 8.40132 -614.701 -8.40132 0 0 1.24648e+06 4869.04 0.51 0.86 0.23 -1 -1 0.51 0.299964 0.27986 445 418 380 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_22.v common 13.67 vpr 69.59 MiB 0.09 11012 -1 -1 1 0.30 -1 -1 35512 -1 -1 66 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71256 22 19 1933 1408 1 1111 113 16 16 256 mult_36 auto 31.7 MiB 0.46 6696 69.6 MiB 0.47 0.01 7.42025 -475.635 -7.42025 7.42025 0.57 0.00160707 0.00137028 0.124487 0.1073 64 12438 27 6.62819e+06 3.34724e+06 943753. 3686.54 8.30 1.24916 1.12118 27892 240595 -1 10417 25 8720 10261 1590282 353061 0 0 1590282 353061 9438 8878 0 0 70251 65368 0 0 94294 76000 0 0 9442 8957 0 0 692973 99671 0 0 713884 94187 0 0 9438 0 0 746 4298 4607 13342 857 26 8.55982 8.55982 -827.888 -8.55982 0 0 1.19033e+06 4649.74 0.46 0.79 0.29 -1 -1 0.46 0.240743 0.220986 464 437 399 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_23.v common 21.71 vpr 69.76 MiB 0.10 11136 -1 -1 1 0.29 -1 -1 35564 -1 -1 68 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71436 22 19 2031 1472 1 1174 116 18 18 324 mult_36 auto 31.9 MiB 0.49 7205 69.8 MiB 0.47 0.01 7.41124 -456.649 -7.41124 7.41124 0.77 0.00171518 0.00144456 0.12926 0.109954 66 13039 28 8.18539e+06 3.77267e+06 1.27759e+06 3943.17 14.96 1.6829 1.50765 36296 327148 -1 11163 27 9089 10501 2035132 431506 0 0 2035132 431506 9841 9231 0 0 73433 68962 0 0 99178 79010 0 0 9847 9300 0 0 931238 129959 0 0 911595 135044 0 0 9841 0 0 780 3610 3880 13836 737 2 8.65982 8.65982 -737.158 -8.65982 0 0 1.59950e+06 4936.74 0.71 1.00 0.41 -1 -1 0.71 0.317467 0.292363 486 456 418 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_24.v common 16.73 vpr 70.51 MiB 0.11 11436 -1 -1 1 0.24 -1 -1 35780 -1 -1 71 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72200 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 32.8 MiB 0.73 7199 70.5 MiB 0.64 0.01 7.45239 -513.793 -7.45239 7.45239 1.24 0.00175223 0.00148588 0.18009 0.156236 60 13436 43 8.18539e+06 3.81682e+06 1.16833e+06 3605.96 9.31 1.381 1.24024 35004 297736 -1 11139 25 9768 11288 1773678 391274 0 0 1773678 391274 10439 9948 0 0 80739 75951 0 0 103678 84944 0 0 10449 10009 0 0 788110 106212 0 0 780263 104210 0 0 10439 0 0 700 3822 4833 13994 881 20 8.84022 8.84022 -915.141 -8.84022 0 0 1.46313e+06 4515.82 0.51 0.87 0.34 -1 -1 0.51 0.2821 0.258716 505 475 437 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_25.v common 21.23 vpr 70.98 MiB 0.12 11676 -1 -1 1 0.34 -1 -1 36088 -1 -1 73 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72688 22 19 2201 1591 1 1268 121 18 18 324 mult_36 auto 33.7 MiB 0.73 7323 71.0 MiB 0.85 0.01 7.52039 -496.459 -7.52039 7.52039 1.25 0.0019154 0.00165018 0.244872 0.212734 58 14599 31 8.18539e+06 3.84625e+06 1.14310e+06 3528.09 12.92 1.73995 1.56128 34680 290288 -1 12204 26 12491 14297 2555693 556298 0 0 2555693 556298 13411 12760 0 0 99954 93832 0 0 133003 106287 0 0 13411 12831 0 0 1132493 167085 0 0 1163421 163503 0 0 13411 0 0 947 5393 5971 20150 922 11 9.02177 9.02177 -873.394 -9.02177 0 0 1.43297e+06 4422.75 0.59 1.22 0.34 -1 -1 0.59 0.317723 0.291819 526 494 456 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_26.v common 18.33 vpr 71.51 MiB 0.09 11796 -1 -1 1 0.36 -1 -1 36396 -1 -1 76 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73228 22 19 2275 1648 1 1306 124 18 18 324 mult_36 auto 34.2 MiB 0.59 8154 71.5 MiB 0.93 0.01 7.8713 -494.386 -7.8713 7.8713 1.22 0.00190041 0.00162816 0.268446 0.236548 66 15030 37 8.18539e+06 3.8904e+06 1.27759e+06 3943.17 10.20 1.6108 1.44935 36296 327148 -1 12316 24 9811 10877 2416659 509317 0 0 2416659 509317 10421 10034 0 0 83531 78767 0 0 109777 89079 0 0 10436 10065 0 0 1108208 157594 0 0 1094286 163778 0 0 10421 0 0 634 2408 3187 13131 552 2 8.75592 8.75592 -671.212 -8.75592 0 0 1.59950e+06 4936.74 0.67 1.09 0.40 -1 -1 0.67 0.321311 0.293336 546 513 475 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 19.72 vpr 71.66 MiB 0.15 11992 -1 -1 1 0.44 -1 -1 36364 -1 -1 82 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73376 22 19 2385 1724 1 1378 131 18 18 324 mult_36 auto 34.3 MiB 0.89 8296 71.7 MiB 1.36 0.02 7.43624 -537.906 -7.43624 7.43624 1.22 0.00480603 0.00413056 0.358642 0.311706 66 15441 28 8.18539e+06 4.37469e+06 1.27759e+06 3943.17 10.79 1.80143 1.60468 36296 327148 -1 12743 25 9390 11009 2267756 485159 0 0 2267756 485159 10267 9644 0 0 81955 76821 0 0 107835 88281 0 0 10272 9722 0 0 1027139 147994 0 0 1030288 152697 0 0 10267 0 0 904 4422 4614 14973 801 2 8.92128 8.92128 -910.776 -8.92128 0 0 1.59950e+06 4936.74 0.67 1.06 0.41 -1 -1 0.67 0.333005 0.306045 575 532 494 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 23.60 vpr 72.12 MiB 0.13 12008 -1 -1 1 0.41 -1 -1 36312 -1 -1 83 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73848 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 34.5 MiB 0.66 8901 72.1 MiB 0.72 0.01 7.8713 -549.689 -7.8713 7.8713 1.18 0.00238335 0.00207061 0.208229 0.182276 68 15372 24 8.18539e+06 4.3894e+06 1.31159e+06 4048.11 15.66 2.2695 2.03577 36620 334356 -1 13204 24 9296 10858 1886768 401124 0 0 1886768 401124 9998 9428 0 0 78516 73655 0 0 100620 83250 0 0 10006 9497 0 0 850334 113033 0 0 837294 112261 0 0 9998 0 0 722 4655 4846 13716 903 18 8.98558 8.98558 -1053.82 -8.98558 0 0 1.63345e+06 5041.52 0.64 0.62 0.40 -1 -1 0.64 0.178567 0.162598 594 551 513 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 39.24 vpr 72.76 MiB 0.13 12620 -1 -1 1 0.41 -1 -1 36264 -1 -1 85 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74508 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 35.4 MiB 0.70 9689 72.8 MiB 1.21 0.01 7.43624 -544.661 -7.43624 7.43624 2.11 0.00258501 0.00220752 0.358898 0.314395 74 15847 29 1.33067e+07 4.81483e+06 2.15943e+06 4461.62 27.55 3.7997 3.4439 57402 562966 -1 13943 25 11215 12893 2368384 490605 0 0 2368384 490605 12177 11408 0 0 92127 86593 0 0 124365 98933 0 0 12178 11488 0 0 1051849 144544 0 0 1075688 137639 0 0 12177 0 0 985 4080 4735 17259 748 2 8.75427 8.75427 -904.863 -8.75427 0 0 2.68771e+06 5553.12 0.98 1.13 0.56 -1 -1 0.98 0.316287 0.289957 619 570 532 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 44.69 vpr 73.08 MiB 0.13 12640 -1 -1 1 0.44 -1 -1 36460 -1 -1 89 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74836 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 35.6 MiB 0.80 9650 73.1 MiB 1.60 0.02 7.43624 -524.521 -7.43624 7.43624 2.09 0.00537707 0.0048052 0.431532 0.377589 70 16643 47 1.33067e+07 4.87369e+06 2.06816e+06 4273.05 32.04 3.36958 3.02284 56434 539830 -1 14296 28 12062 14042 2642552 543182 0 0 2642552 543182 13161 12240 0 0 92763 86251 0 0 133095 101165 0 0 13169 12355 0 0 1195638 166627 0 0 1194726 164544 0 0 13161 0 0 1129 5437 5220 19219 974 83 8.65597 8.65597 -934.518 -8.65597 0 0 2.60483e+06 5381.88 1.13 1.42 0.64 -1 -1 1.13 0.464339 0.431316 639 589 551 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 27.98 vpr 73.75 MiB 0.12 12780 -1 -1 1 0.42 -1 -1 36656 -1 -1 93 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75520 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 36.3 MiB 1.16 10213 73.8 MiB 1.59 0.02 7.49539 -582.535 -7.49539 7.49539 2.03 0.00541554 0.00480853 0.433049 0.385577 66 19115 41 1.33067e+07 4.93255e+06 1.96511e+06 4060.15 16.30 2.0928 1.87432 54986 507526 -1 15427 26 13248 15585 3206151 671977 0 0 3206151 671977 14478 13489 0 0 110810 103724 0 0 152621 119258 0 0 14483 13561 0 0 1448395 210870 0 0 1465364 211075 0 0 14478 0 0 1259 6528 7096 21924 1152 33 8.85917 8.85917 -1094.79 -8.85917 0 0 2.45963e+06 5081.88 0.76 1.09 0.45 -1 -1 0.76 0.280293 0.255782 665 608 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 37.16 vpr 73.78 MiB 0.14 12988 -1 -1 1 0.49 -1 -1 36928 -1 -1 96 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75552 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 36.5 MiB 1.25 10362 73.8 MiB 1.52 0.02 7.3951 -550.069 -7.3951 7.3951 1.95 0.00515135 0.00452794 0.455945 0.402047 72 17928 49 1.33067e+07 4.9767e+06 2.11301e+06 4365.72 24.72 3.22868 2.8887 56918 551676 -1 15334 24 13147 15116 2915499 602826 0 0 2915499 602826 14274 13410 0 0 104515 97870 0 0 145569 112538 0 0 14285 13523 0 0 1302518 181690 0 0 1334338 183795 0 0 14274 0 0 1151 5635 5705 20562 901 2 9.17512 9.17512 -1040.08 -9.17512 0 0 2.64603e+06 5467.00 1.22 1.26 0.70 -1 -1 1.22 0.307544 0.279613 684 627 589 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 22.67 vpr 74.54 MiB 0.19 13472 -1 -1 1 0.38 -1 -1 37280 -1 -1 100 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76332 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 37.3 MiB 0.75 10491 74.5 MiB 1.44 0.02 7.94064 -597.141 -7.94064 7.94064 2.21 0.00308407 0.0024663 0.415301 0.36136 64 18725 50 1.33067e+07 5.43155e+06 1.90554e+06 3937.06 11.07 1.72772 1.53514 54502 494576 -1 15624 26 14025 15725 2844460 605059 0 0 2844460 605059 14922 14277 0 0 112829 105589 0 0 153766 122042 0 0 14930 14390 0 0 1284410 172497 0 0 1263603 176264 0 0 14922 0 0 920 5184 5513 22697 853 34 9.66307 9.66307 -1135.39 -9.66307 0 0 2.40101e+06 4960.76 1.07 1.19 0.59 -1 -1 1.07 0.336925 0.306837 710 646 608 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 25.55 vpr 74.91 MiB 0.10 13760 -1 -1 1 0.53 -1 -1 37820 -1 -1 101 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76704 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 37.6 MiB 1.04 10939 74.9 MiB 1.00 0.02 7.88963 -601.708 -7.88963 7.88963 1.93 0.00515611 0.00446603 0.267139 0.232123 64 20629 44 1.33067e+07 5.44627e+06 1.90554e+06 3937.06 14.97 2.13644 1.90673 54502 494576 -1 16432 23 12305 14141 2480038 520783 0 0 2480038 520783 13303 12597 0 0 98622 91921 0 0 131586 107417 0 0 13311 12690 0 0 1115088 145783 0 0 1108128 150375 0 0 13303 0 0 1024 5137 5851 18838 893 45 9.49497 9.49497 -1263.79 -9.49497 0 0 2.40101e+06 4960.76 0.78 0.91 0.45 -1 -1 0.78 0.253218 0.230019 729 665 627 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_35.v common 45.69 vpr 75.45 MiB 0.14 13928 -1 -1 1 0.55 -1 -1 36848 -1 -1 106 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77264 22 19 3101 2236 1 1801 157 22 22 484 mult_36 auto 38.4 MiB 1.17 11969 75.5 MiB 1.89 0.01 8.30854 -645.602 -8.30854 8.30854 2.21 0.00352101 0.00310041 0.521197 0.44651 72 21260 42 1.33067e+07 5.51985e+06 2.11301e+06 4365.72 32.35 4.21557 3.79268 56918 551676 -1 17602 28 14440 16721 3289301 678899 0 0 3289301 678899 15722 14784 0 0 115902 108413 0 0 157930 123714 0 0 15727 14868 0 0 1478587 207986 0 0 1505433 209134 0 0 15722 0 0 1309 6270 7156 22767 1084 15 10.2964 10.2964 -1101.77 -10.2964 0 0 2.64603e+06 5467.00 1.16 1.61 0.66 -1 -1 1.16 0.47267 0.433503 755 684 646 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_36.v common 29.76 vpr 75.65 MiB 0.17 13952 -1 -1 1 0.56 -1 -1 37168 -1 -1 107 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77464 22 19 3175 2293 1 1836 158 22 22 484 mult_36 auto 38.5 MiB 1.25 12024 75.6 MiB 1.49 0.01 8.31654 -624.914 -8.31654 8.31654 2.01 0.00331431 0.00289515 0.435726 0.380367 70 21857 47 1.33067e+07 5.53456e+06 2.06816e+06 4273.05 17.34 2.80439 2.52254 56434 539830 -1 17897 24 14712 17132 3610829 744407 0 0 3610829 744407 15996 15005 0 0 125170 117118 0 0 166800 132585 0 0 15997 15159 0 0 1649993 229338 0 0 1636873 235202 0 0 15996 0 0 1308 6187 7670 23496 1167 212 10.0053 10.0053 -1119.05 -10.0053 0 0 2.60483e+06 5381.88 1.12 1.48 0.64 -1 -1 1.12 0.411509 0.376477 773 703 665 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_37.v common 49.69 vpr 77.91 MiB 0.20 14604 -1 -1 1 0.51 -1 -1 37524 -1 -1 111 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79784 22 19 3280 2364 1 1904 163 24 24 576 mult_36 auto 39.1 MiB 1.36 12635 76.4 MiB 1.44 0.01 8.4137 -696.557 -8.4137 8.4137 2.67 0.00330863 0.00286997 0.392736 0.345701 70 21805 32 1.60519e+07 5.98942e+06 2.45377e+06 4260.01 35.14 4.45913 4.00099 66754 640332 -1 18474 24 14238 16841 2928484 617751 0 0 2928484 617751 15661 14512 0 0 117748 109863 0 0 156238 125533 0 0 15666 14677 0 0 1299018 177918 0 0 1324153 175248 0 0 15661 0 0 1448 6260 7508 23478 1264 16 10.0063 10.0063 -1238.37 -10.0063 0 0 3.09179e+06 5367.68 1.49 1.32 0.83 -1 -1 1.49 0.420392 0.383125 798 722 684 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_38.v common 34.00 vpr 77.20 MiB 0.15 14512 -1 -1 1 0.54 -1 -1 38368 -1 -1 113 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79052 22 19 3354 2421 1 1941 165 24 24 576 mult_36 auto 40.0 MiB 1.66 12518 77.2 MiB 2.07 0.03 8.4137 -735.79 -8.4137 8.4137 2.72 0.0100233 0.00887192 0.677314 0.611507 68 22306 46 1.60519e+07 6.01886e+06 2.39371e+06 4155.74 18.80 2.95022 2.63882 65606 615345 -1 18217 27 15971 18457 3286501 707942 0 0 3286501 707942 17385 16236 0 0 134221 126367 0 0 177365 141784 0 0 17390 16304 0 0 1457725 203293 0 0 1482415 203958 0 0 17385 0 0 1441 6137 6485 25611 1140 20 9.66151 9.66151 -1221.14 -9.66151 0 0 2.98162e+06 5176.42 1.38 1.66 0.78 -1 -1 1.38 0.479081 0.436899 818 741 703 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_39.v common 31.31 vpr 77.16 MiB 0.19 14724 -1 -1 1 0.60 -1 -1 38056 -1 -1 117 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79012 22 19 3457 2490 1 2007 169 24 24 576 mult_36 auto 40.1 MiB 1.61 13220 77.2 MiB 2.62 0.02 8.17224 -882.394 -8.17224 8.17224 2.74 0.00606493 0.00516086 0.783657 0.703711 68 22506 49 1.60519e+07 6.07772e+06 2.39371e+06 4155.74 16.66 3.16228 2.85834 65606 615345 -1 18840 25 13908 16460 2836354 587375 0 0 2836354 587375 15143 14138 0 0 112456 105181 0 0 147535 119542 0 0 15146 14238 0 0 1256174 168154 0 0 1289900 166122 0 0 15143 0 0 1265 7480 8203 22064 1344 121 9.34467 9.34467 -1333 -9.34467 0 0 2.98162e+06 5176.42 0.87 1.10 0.46 -1 -1 0.87 0.385755 0.35279 842 760 722 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_40.v common 33.25 vpr 77.50 MiB 0.16 14844 -1 -1 1 0.63 -1 -1 38372 -1 -1 120 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79360 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 40.3 MiB 1.59 13688 77.5 MiB 1.88 0.01 8.34154 -875.21 -8.34154 8.34154 2.89 0.00354953 0.00308804 0.512907 0.450267 70 23055 35 1.60519e+07 6.12186e+06 2.45377e+06 4260.01 18.54 2.73446 2.44802 66754 640332 -1 19523 23 13601 16151 2728954 581910 0 0 2728954 581910 15016 13901 0 0 114097 105947 0 0 151978 122905 0 0 15019 14002 0 0 1220905 164380 0 0 1211939 160775 0 0 15016 0 0 1442 6053 7325 23566 1164 247 9.91787 9.91787 -1289.67 -9.91787 0 0 3.09179e+06 5367.68 1.52 1.32 0.55 -1 -1 1.52 0.424403 0.386918 862 779 741 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_41.v common 30.57 vpr 78.12 MiB 0.15 15136 -1 -1 1 0.69 -1 -1 37980 -1 -1 122 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80000 22 19 3634 2616 1 2113 175 24 24 576 mult_36 auto 40.8 MiB 1.75 13869 78.1 MiB 1.99 0.03 8.14823 -817.705 -8.14823 8.14823 2.76 0.00735224 0.00651492 0.558997 0.490742 68 23987 29 1.60519e+07 6.5473e+06 2.39371e+06 4155.74 14.91 2.16127 1.92572 65606 615345 -1 19994 24 15476 18124 3768212 791193 0 0 3768212 791193 16829 15666 0 0 134628 126591 0 0 171057 142519 0 0 16831 15808 0 0 1709696 239969 0 0 1719171 250640 0 0 16829 0 0 1382 7774 8165 24412 1359 253 9.53231 9.53231 -1397.99 -9.53231 0 0 2.98162e+06 5176.42 1.33 1.62 0.74 -1 -1 1.33 0.456412 0.416421 886 798 760 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_42.v common 38.10 vpr 78.79 MiB 0.17 15148 -1 -1 1 0.66 -1 -1 37596 -1 -1 125 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80680 22 19 3708 2673 1 2147 178 24 24 576 mult_36 auto 41.8 MiB 1.86 14396 78.8 MiB 2.28 0.03 8.34154 -807.018 -8.34154 8.34154 1.76 0.00653646 0.00569174 0.53256 0.464307 68 25119 45 1.60519e+07 6.59144e+06 2.39371e+06 4155.74 22.91 3.90218 3.46522 65606 615345 -1 20417 29 16576 19390 3584894 752230 0 0 3584894 752230 18211 16853 0 0 138527 130445 0 0 186940 147024 0 0 18212 16996 0 0 1603939 222389 0 0 1619065 218523 0 0 18211 0 0 1663 6192 7604 27612 1220 13 9.50726 9.50726 -1175.54 -9.50726 0 0 2.98162e+06 5176.42 1.20 1.81 0.74 -1 -1 1.20 0.553227 0.501545 906 817 779 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_43.v common 54.34 vpr 83.21 MiB 0.13 15732 -1 -1 1 0.54 -1 -1 38912 -1 -1 129 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85212 22 19 3810 2741 1 2214 182 24 24 576 mult_36 auto 42.0 MiB 1.88 15273 79.1 MiB 2.82 0.03 8.22139 -844.621 -8.22139 8.22139 2.82 0.0091266 0.00822817 0.77121 0.683033 78 22993 23 1.60519e+07 6.6503e+06 2.67122e+06 4637.53 36.47 5.05561 4.55431 69630 706637 -1 20630 23 14566 16928 4037111 853177 0 0 4037111 853177 15831 14751 0 0 132738 124701 0 0 171832 141578 0 0 15831 14845 0 0 1873119 271760 0 0 1827760 285542 0 0 15831 0 0 1290 5956 6635 23150 1123 62 9.43091 9.43091 -1335.54 -9.43091 0 0 3.35110e+06 5817.88 1.77 1.95 0.93 -1 -1 1.77 0.527029 0.482058 930 836 798 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_44.v common 54.61 vpr 82.26 MiB 0.19 15512 -1 -1 1 0.68 -1 -1 38232 -1 -1 132 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84236 22 19 3884 2798 1 2251 185 24 24 576 mult_36 auto 42.6 MiB 2.12 14737 79.6 MiB 2.60 0.03 8.39064 -943.666 -8.39064 8.39064 2.03 0.00788879 0.00699079 0.708352 0.623718 76 25138 29 1.60519e+07 6.69445e+06 2.61600e+06 4541.67 38.24 5.2667 4.7043 68478 680951 -1 20784 28 16219 18889 3090963 652662 0 0 3090963 652662 17681 16486 0 0 124922 116275 0 0 171524 133383 0 0 17681 16659 0 0 1388131 186143 0 0 1371024 183716 0 0 17681 0 0 1489 6338 8290 26275 1230 258 9.76457 9.76457 -1619.43 -9.76457 0 0 3.24203e+06 5628.53 1.61 1.33 0.79 -1 -1 1.61 0.463168 0.421356 949 855 817 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_45.v common 53.29 vpr 83.45 MiB 0.22 16136 -1 -1 1 0.77 -1 -1 40120 -1 -1 135 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85456 22 19 3989 2869 1 2318 189 24 24 576 mult_36 auto 42.3 MiB 1.97 15141 79.6 MiB 2.89 0.03 8.4137 -874.23 -8.4137 8.4137 2.21 0.00710175 0.00614305 0.730148 0.654382 74 24533 27 1.60519e+07 7.1346e+06 2.56259e+06 4448.94 36.02 5.26964 4.73711 67906 667765 -1 21279 23 14462 16933 3203286 666848 0 0 3203286 666848 15930 14737 0 0 119134 111713 0 0 161782 128508 0 0 15941 14879 0 0 1440014 200794 0 0 1450485 196217 0 0 15930 0 0 1490 6347 6055 24150 1072 2 9.57716 9.57716 -1434.52 -9.57716 0 0 3.19068e+06 5539.38 1.53 1.75 0.82 -1 -1 1.53 0.530588 0.481202 975 874 836 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_46.v common 54.19 vpr 85.27 MiB 0.25 15952 -1 -1 1 0.76 -1 -1 40152 -1 -1 136 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87316 22 19 4063 2926 1 2357 190 24 24 576 mult_36 auto 43.0 MiB 2.18 16042 80.1 MiB 2.79 0.06 8.30554 -961.246 -8.30554 8.30554 1.84 0.0118833 0.0104461 0.687561 0.611793 80 24029 26 1.60519e+07 7.14931e+06 2.72095e+06 4723.87 36.74 5.30349 4.76466 70206 720185 -1 21546 25 15450 18131 3537268 718577 0 0 3537268 718577 16977 15660 0 0 131184 122670 0 0 172255 140279 0 0 16977 15785 0 0 1592251 210412 0 0 1607624 213771 0 0 16977 0 0 1553 6293 7462 25785 1202 20 9.17417 9.17417 -1479.79 -9.17417 0 0 3.41546e+06 5929.62 1.59 1.81 0.94 -1 -1 1.59 0.599998 0.543337 993 893 855 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_47.v common 42.12 vpr 80.56 MiB 0.31 16512 -1 -1 1 0.76 -1 -1 40316 -1 -1 141 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82496 22 19 4167 2996 1 2421 195 24 24 576 mult_36 auto 43.6 MiB 1.56 15866 80.6 MiB 3.42 0.02 8.2457 -854.27 -8.2457 8.2457 2.44 0.00484725 0.00428734 0.999967 0.897983 74 26113 43 1.60519e+07 7.22289e+06 2.56259e+06 4448.94 24.23 4.9807 4.49535 67906 667765 -1 22579 24 16819 19633 4273815 905792 0 0 4273815 905792 18317 17113 0 0 144871 135939 0 0 188193 153699 0 0 18318 17228 0 0 1959809 288561 0 0 1944307 293252 0 0 18317 0 0 1526 8141 7951 27270 1346 52 9.75551 9.75551 -1306.46 -9.75551 0 0 3.19068e+06 5539.38 1.36 1.99 0.79 -1 -1 1.36 0.562121 0.512453 1019 912 874 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_48.v common 35.25 vpr 80.88 MiB 0.25 16544 -1 -1 1 0.85 -1 -1 40328 -1 -1 144 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82820 22 19 4241 3053 1 2459 198 24 24 576 mult_36 auto 43.7 MiB 2.11 15835 80.9 MiB 2.23 0.02 8.25153 -946.137 -8.25153 8.25153 2.50 0.0042362 0.00359126 0.617726 0.544468 72 27021 38 1.60519e+07 7.26704e+06 2.50747e+06 4353.24 18.63 3.69662 3.29088 67330 654343 -1 22011 23 15838 18683 3162988 688680 0 0 3162988 688680 17413 16168 0 0 131366 122076 0 0 173006 141073 0 0 17415 16298 0 0 1420730 195142 0 0 1403058 197923 0 0 17413 0 0 1600 8010 7649 26502 1297 170 9.47921 9.47921 -1532 -9.47921 0 0 3.14081e+06 5452.80 1.42 1.53 0.80 -1 -1 1.42 0.551534 0.504149 1038 931 893 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_49.v common 35.31 vpr 81.37 MiB 0.23 16872 -1 -1 1 0.69 -1 -1 40372 -1 -1 145 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83324 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 44.9 MiB 2.29 17627 81.4 MiB 2.90 0.03 8.38055 -927.403 -8.38055 8.38055 2.25 0.00790506 0.00694318 0.714869 0.625164 74 30469 41 1.60519e+07 7.67775e+06 2.56259e+06 4448.94 17.56 2.86495 2.54057 67906 667765 -1 24632 27 19735 22995 4730851 964157 0 0 4730851 964157 21741 20132 0 0 153720 143874 0 0 215137 165409 0 0 21742 20349 0 0 2156420 305739 0 0 2162091 308654 0 0 21741 0 0 2030 8700 7768 34022 1281 190 10.0844 10.0844 -1564.76 -10.0844 0 0 3.19068e+06 5539.38 1.35 2.14 0.71 -1 -1 1.35 0.659106 0.596954 1062 950 912 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_50.v common 45.44 vpr 81.53 MiB 0.21 16940 -1 -1 1 0.87 -1 -1 40544 -1 -1 148 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83488 22 19 4420 3181 1 2564 203 24 24 576 mult_36 auto 45.0 MiB 2.30 17684 81.5 MiB 2.73 0.03 8.43799 -901.079 -8.43799 8.43799 3.24 0.00881941 0.00793234 0.703288 0.621384 74 30424 34 1.60519e+07 7.72189e+06 2.56259e+06 4448.94 27.00 4.38138 3.90017 67906 667765 -1 25185 27 21673 25268 6014160 1237795 0 0 6014160 1237795 23816 21969 0 0 179319 168492 0 0 243182 189945 0 0 23822 22218 0 0 2752175 413472 0 0 2791846 421699 0 0 23816 0 0 2175 9698 10019 36591 1516 537 10.1105 10.1105 -1511.73 -10.1105 0 0 3.19068e+06 5539.38 1.07 2.54 0.55 -1 -1 1.07 0.605326 0.549232 1082 969 931 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_51.v common 51.91 vpr 87.77 MiB 0.18 17184 -1 -1 1 0.89 -1 -1 40620 -1 -1 152 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89880 22 19 4524 3251 1 2634 207 24 24 576 mult_36 auto 45.9 MiB 2.32 17414 82.5 MiB 1.85 0.04 8.38584 -1089.25 -8.38584 8.38584 2.19 0.0082275 0.00713423 0.467174 0.410062 76 28092 39 1.60519e+07 7.78076e+06 2.61600e+06 4541.67 34.96 4.54772 4.0514 68478 680951 -1 24355 25 19290 22691 4033385 831289 0 0 4033385 831289 21204 19627 0 0 157018 147221 0 0 211302 167347 0 0 21205 19736 0 0 1835661 237183 0 0 1786995 240175 0 0 21204 0 0 1940 9073 9199 32674 1514 92 10.0143 10.0143 -1711.69 -10.0143 0 0 3.24203e+06 5628.53 1.61 1.83 0.84 -1 -1 1.61 0.673879 0.61663 1107 988 950 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_52.v common 44.71 vpr 82.65 MiB 0.25 17304 -1 -1 1 0.88 -1 -1 39012 -1 -1 155 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84632 22 19 4598 3308 1 2668 210 24 24 576 mult_36 auto 46.0 MiB 1.60 18532 82.6 MiB 2.63 0.04 8.22439 -1032.19 -8.22439 8.22439 2.54 0.0135463 0.0121267 0.738311 0.647223 78 29734 45 1.60519e+07 7.8249e+06 2.67122e+06 4637.53 28.56 5.05653 4.51998 69630 706637 -1 25472 24 19725 23351 4028468 834493 0 0 4028468 834493 21806 20034 0 0 161406 150524 0 0 220565 172153 0 0 21810 20216 0 0 1792336 239788 0 0 1810545 231778 0 0 21806 0 0 2108 9760 9992 34339 1589 14 9.66151 9.66151 -1400.93 -9.66151 0 0 3.35110e+06 5817.88 1.26 1.29 0.79 -1 -1 1.26 0.354953 0.322102 1127 1007 969 19 0 0 +k6_frac_N8_22nm.xml fir_pipe_14.v common 14.84 vpr 69.10 MiB 0.08 10212 -1 -1 8 0.72 -1 -1 36748 -1 -1 79 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70756 22 19 1764 1664 1 1014 124 16 16 256 mult_36 auto 30.7 MiB 0.69 6664 69.1 MiB 0.53 0.01 4.14666 -1180.14 -4.14666 4.14666 0.75 0.00436987 0.00383851 0.202081 0.178636 64 12519 50 6.45408e+06 2.64829e+06 943753. 3686.54 8.06 1.70573 1.52702 27332 240185 -1 10495 15 4068 7084 715713 165388 0 0 715713 165388 6334 4594 0 0 38637 33625 0 0 53540 43248 0 0 6340 4910 0 0 303844 39375 0 0 307018 39636 0 0 6334 0 0 2286 5461 5792 19227 778 11 4.27196 4.27196 -1335.68 -4.27196 0 0 1.19033e+06 4649.74 0.47 0.45 0.30 -1 -1 0.47 0.203043 0.187927 599 909 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_15.v common 18.71 vpr 70.07 MiB 0.13 10752 -1 -1 8 0.75 -1 -1 35740 -1 -1 85 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71756 22 19 1918 1801 1 1104 131 16 16 256 mult_36 auto 31.7 MiB 0.75 6819 70.1 MiB 0.82 0.01 4.14666 -1318.66 -4.14666 4.14666 0.92 0.00442623 0.00395291 0.288911 0.252642 66 12539 24 6.45408e+06 3.12512e+06 974584. 3806.97 12.16 2.30233 2.06241 27588 246658 -1 10862 14 4239 7235 804613 183146 0 0 804613 183146 6502 4736 0 0 40803 35803 0 0 55681 44962 0 0 6508 5020 0 0 349908 46719 0 0 345211 45906 0 0 6502 0 0 2283 5281 5781 18891 758 68 4.39726 4.39726 -1510.89 -4.39726 0 0 1.22072e+06 4768.46 0.29 0.26 0.19 -1 -1 0.29 0.103585 0.0952483 651 984 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_16.v common 19.67 vpr 70.31 MiB 0.09 10816 -1 -1 8 0.80 -1 -1 36952 -1 -1 87 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71996 22 19 1976 1859 1 1141 133 16 16 256 mult_36 auto 31.9 MiB 0.79 7432 70.3 MiB 0.64 0.01 4.02136 -1345.26 -4.02136 4.02136 0.76 0.00424215 0.00374808 0.246187 0.217006 68 13873 39 6.45408e+06 3.15206e+06 1.00038e+06 3907.74 12.78 2.29068 2.04306 27844 252052 -1 11545 14 4567 8006 875720 202594 0 0 875720 202594 7218 5073 0 0 42808 37509 0 0 57955 46661 0 0 7231 5463 0 0 385713 53002 0 0 374795 54886 0 0 7218 0 0 2673 6170 6295 21656 868 25 4.39726 4.39726 -1519.17 -4.39726 0 0 1.24648e+06 4869.04 0.50 0.52 0.30 -1 -1 0.50 0.224791 0.207783 679 1023 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_17.v common 19.54 vpr 71.89 MiB 0.10 11636 -1 -1 8 0.58 -1 -1 36352 -1 -1 102 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73612 22 19 2278 2144 1 1269 148 16 16 256 mult_36 auto 33.5 MiB 0.63 8156 71.9 MiB 0.84 0.02 4.02136 -1502.91 -4.02136 4.02136 0.85 0.00544312 0.00480723 0.295753 0.261331 68 15244 27 6.45408e+06 3.35414e+06 1.00038e+06 3907.74 12.66 2.54842 2.27157 27844 252052 -1 12768 16 5165 8848 942693 217535 0 0 942693 217535 8170 5849 0 0 49183 43311 0 0 66459 53858 0 0 8186 6192 0 0 409575 53838 0 0 401120 54487 0 0 8170 0 0 3025 6228 6749 24730 787 2 4.27196 4.27196 -1694.32 -4.27196 0 0 1.24648e+06 4869.04 0.49 0.60 0.28 -1 -1 0.49 0.26467 0.241848 768 1171 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_18.v common 17.64 vpr 72.01 MiB 0.15 11864 -1 -1 8 0.95 -1 -1 36552 -1 -1 105 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73740 22 19 2336 2202 1 1299 151 16 16 256 mult_36 auto 33.8 MiB 0.87 8121 72.0 MiB 0.80 0.02 4.02136 -1558.46 -4.02136 4.02136 0.88 0.00555204 0.00491737 0.299103 0.263509 64 16667 48 6.45408e+06 3.39456e+06 943753. 3686.54 9.79 2.57165 2.30784 27332 240185 -1 13380 16 5488 9706 1150054 259085 0 0 1150054 259085 8778 6266 0 0 55046 48242 0 0 75710 60901 0 0 8782 6606 0 0 495844 68136 0 0 505894 68934 0 0 8778 0 0 3312 7490 8407 27685 1009 79 4.27196 4.27196 -1830.49 -4.27196 0 0 1.19033e+06 4649.74 0.44 0.63 0.29 -1 -1 0.44 0.22229 0.204582 794 1210 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_19.v common 25.18 vpr 73.14 MiB 0.11 12188 -1 -1 8 0.98 -1 -1 37016 -1 -1 111 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74900 22 19 2488 2337 1 1399 158 16 16 256 mult_36 auto 35.0 MiB 0.84 9918 73.1 MiB 0.92 0.02 4.14666 -1722.94 -4.14666 4.14666 0.95 0.00560564 0.00492504 0.337422 0.295337 80 15911 35 6.45408e+06 3.87139e+06 1.13630e+06 4438.68 17.05 3.84008 3.44777 29884 294868 -1 14502 17 5260 9195 1039281 224421 0 0 1039281 224421 8340 5967 0 0 48268 41707 0 0 67431 53101 0 0 8353 6405 0 0 444873 60774 0 0 462016 56467 0 0 8340 0 0 3101 7313 7483 25295 921 36 4.39726 4.39726 -1949.86 -4.39726 0 0 1.42763e+06 5576.70 0.79 0.51 0.38 -1 -1 0.79 0.21795 0.201826 837 1285 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_20.v common 14.44 vpr 73.27 MiB 0.11 12232 -1 -1 8 0.95 -1 -1 38220 -1 -1 114 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75024 22 19 2546 2395 1 1440 161 16 16 256 mult_36 auto 35.2 MiB 0.99 9776 73.3 MiB 0.83 0.02 4.14666 -1761.21 -4.14666 4.14666 0.57 0.00504126 0.00431183 0.270763 0.236838 76 17543 23 6.45408e+06 3.91181e+06 1.09288e+06 4269.05 7.12 1.99079 1.79348 29116 278758 -1 14884 14 5618 10190 1068168 234261 0 0 1068168 234261 9175 6508 0 0 52997 46259 0 0 73745 59050 0 0 9178 6972 0 0 457764 58673 0 0 465309 56799 0 0 9175 0 0 3575 8430 8650 29604 1085 20 4.39726 4.39726 -1972.51 -4.39726 0 0 1.35486e+06 5292.42 0.44 0.46 0.27 -1 -1 0.44 0.172685 0.15911 867 1324 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_21.v common 19.36 vpr 74.53 MiB 0.10 12720 -1 -1 8 1.07 -1 -1 37300 -1 -1 122 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76320 22 19 2735 2567 1 1547 169 16 16 256 mult_36 auto 36.4 MiB 1.03 11045 74.5 MiB 0.54 0.01 4.27196 -1939.62 -4.27196 4.27196 0.57 0.00327066 0.00282116 0.177753 0.15175 74 20359 48 6.45408e+06 4.01958e+06 1.07073e+06 4182.55 11.80 2.88713 2.61582 28864 273460 -1 16345 13 6242 11040 1212688 267829 0 0 1212688 267829 9803 7078 0 0 59153 51562 0 0 81433 64914 0 0 9813 7582 0 0 524958 69464 0 0 527528 67229 0 0 9803 0 0 3578 9624 9361 30164 1311 116 4.64786 4.64786 -2181.73 -4.64786 0 0 1.33358e+06 5209.30 0.48 0.51 0.34 -1 -1 0.48 0.215389 0.197242 931 1417 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_22.v common 28.14 vpr 74.26 MiB 0.11 12948 -1 -1 8 1.24 -1 -1 37760 -1 -1 126 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76040 22 19 2793 2625 1 1580 173 16 16 256 mult_36 auto 36.6 MiB 0.90 11763 74.3 MiB 0.96 0.01 4.27196 -1979.74 -4.27196 4.27196 0.87 0.00322918 0.00275656 0.340541 0.294763 74 21414 49 6.45408e+06 4.07347e+06 1.07073e+06 4182.55 18.92 3.8771 3.44998 28864 273460 -1 17592 16 6529 11591 1300915 285802 0 0 1300915 285802 10517 7385 0 0 58849 51024 0 0 82660 65028 0 0 10523 7993 0 0 566390 77861 0 0 571976 76511 0 0 10517 0 0 4009 9203 9701 34063 1142 162 4.52256 4.52256 -2172.97 -4.52256 0 0 1.33358e+06 5209.30 0.55 0.83 0.46 -1 -1 0.55 0.391265 0.358241 962 1456 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_23.v common 28.68 vpr 75.17 MiB 0.10 13264 -1 -1 8 1.14 -1 -1 37896 -1 -1 131 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76972 22 19 2947 2762 1 1693 179 18 18 324 mult_36 auto 37.7 MiB 0.78 11113 75.2 MiB 0.98 0.01 4.14666 -2006.09 -4.14666 4.14666 1.25 0.00317047 0.00269639 0.337001 0.292614 70 19988 23 7.94662e+06 4.53683e+06 1.34436e+06 4149.26 19.10 3.82221 3.42376 36496 347204 -1 17551 16 6873 11967 1285765 290243 0 0 1285765 290243 10786 7700 0 0 65501 56976 0 0 92423 73314 0 0 10794 8189 0 0 557843 71309 0 0 548418 72755 0 0 10786 0 0 3932 8120 10963 33583 1249 359 4.39726 4.39726 -2271.23 -4.39726 0 0 1.69344e+06 5226.66 0.70 0.79 0.38 -1 -1 0.70 0.327668 0.29925 1008 1531 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_24.v common 30.19 vpr 75.42 MiB 0.11 13516 -1 -1 8 1.35 -1 -1 37968 -1 -1 135 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77232 22 19 3005 2820 1 1720 183 18 18 324 mult_36 auto 37.9 MiB 1.04 11269 75.4 MiB 0.67 0.01 4.14666 -2096.61 -4.14666 4.14666 1.09 0.00354753 0.00306511 0.223119 0.192287 72 22153 24 7.94662e+06 4.59072e+06 1.37338e+06 4238.83 20.21 4.00146 3.56291 36820 354972 -1 18033 15 6909 12254 1302664 275973 0 0 1302664 275973 11029 7911 0 0 63653 55100 0 0 92118 71683 0 0 11032 8424 0 0 556169 68238 0 0 568663 64617 0 0 11029 0 0 4142 9656 10101 34686 1278 102 4.52256 4.52256 -2347.69 -4.52256 0 0 1.72054e+06 5310.31 0.74 0.82 0.43 -1 -1 0.74 0.366168 0.335284 1039 1570 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_25.v common 34.95 vpr 76.45 MiB 0.13 14040 -1 -1 8 1.23 -1 -1 40004 -1 -1 145 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78280 22 19 3229 3027 1 1824 193 18 18 324 mult_36 auto 39.0 MiB 1.23 12146 76.4 MiB 1.35 0.02 4.02136 -2210.67 -4.02136 4.02136 1.19 0.00781808 0.00694686 0.463781 0.405358 70 22739 37 7.94662e+06 4.72544e+06 1.34436e+06 4149.26 24.00 5.3432 4.74225 36496 347204 -1 19213 17 7570 13561 1540093 336741 0 0 1540093 336741 12036 8506 0 0 74249 64654 0 0 102961 82258 0 0 12040 9119 0 0 666463 85818 0 0 672344 86386 0 0 12036 0 0 4485 11395 12122 38090 1584 450 4.27196 4.27196 -2595.58 -4.27196 0 0 1.69344e+06 5226.66 0.70 1.01 0.43 -1 -1 0.70 0.460766 0.421137 1106 1681 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_26.v common 32.79 vpr 77.64 MiB 0.13 14336 -1 -1 8 1.39 -1 -1 40284 -1 -1 151 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79508 22 19 3287 3085 1 1862 199 18 18 324 mult_36 auto 39.3 MiB 1.24 13093 77.6 MiB 1.17 0.02 4.02136 -2277.85 -4.02136 4.02136 1.10 0.0054934 0.00471544 0.37754 0.32799 76 23702 29 7.94662e+06 4.80627e+06 1.43297e+06 4422.75 21.67 4.78705 4.32241 37464 369264 -1 20288 16 7605 13428 1503742 321185 0 0 1503742 321185 12132 8518 0 0 68188 59603 0 0 96852 76279 0 0 12134 8981 0 0 654496 85054 0 0 659940 82750 0 0 12132 0 0 4548 10415 11124 39158 1330 129 4.27196 4.27196 -2617.6 -4.27196 0 0 1.77541e+06 5479.65 0.75 0.96 0.49 -1 -1 0.75 0.431534 0.395054 1134 1720 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_27.v common 24.87 vpr 78.65 MiB 0.19 14696 -1 -1 8 1.57 -1 -1 39200 -1 -1 156 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80536 22 19 3453 3234 1 1964 205 18 18 324 mult_36 auto 40.3 MiB 0.91 14116 78.6 MiB 1.05 0.01 4.02136 -2356.9 -4.02136 4.02136 1.19 0.00415129 0.00355959 0.356271 0.311425 74 27600 47 7.94662e+06 5.26963e+06 1.40368e+06 4332.34 14.69 2.86293 2.52545 37144 362180 -1 21982 21 8434 15288 1858136 394162 0 0 1858136 394162 13402 9627 0 0 79226 69060 0 0 110671 87474 0 0 13410 10318 0 0 816547 107641 0 0 824880 110042 0 0 13402 0 0 4991 14158 14815 42510 1993 606 4.27196 4.27196 -2809.64 -4.27196 0 0 1.74764e+06 5393.95 0.72 1.20 0.45 -1 -1 0.72 0.514198 0.467552 1189 1795 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_28.v common 23.51 vpr 78.57 MiB 0.15 14708 -1 -1 8 1.39 -1 -1 40660 -1 -1 160 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80460 22 19 3511 3292 1 2001 209 18 18 324 mult_36 auto 40.4 MiB 1.32 13669 78.6 MiB 1.22 0.03 4.02136 -2389.87 -4.02136 4.02136 1.00 0.00822745 0.00721795 0.403706 0.352804 74 24660 32 7.94662e+06 5.32352e+06 1.40368e+06 4332.34 13.73 3.92909 3.50381 37144 362180 -1 20935 15 7817 14366 1624283 350318 0 0 1624283 350318 12705 8722 0 0 73062 63424 0 0 103216 81095 0 0 12715 9383 0 0 706575 93511 0 0 716010 94183 0 0 12705 0 0 4909 13130 13551 40828 1778 451 4.39726 4.39726 -2815.24 -4.39726 0 0 1.74764e+06 5393.95 0.46 0.59 0.27 -1 -1 0.46 0.251961 0.230873 1221 1834 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_29.v common 154.03 vpr 79.97 MiB 0.13 15180 -1 -1 8 1.90 -1 -1 39400 -1 -1 168 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81892 22 19 3709 3473 1 2127 218 22 22 484 mult_36 auto 41.8 MiB 1.45 14626 80.0 MiB 1.25 0.03 4.02136 -2545.74 -4.02136 4.02136 1.42 0.00983437 0.00870237 0.418372 0.36191 66 29135 40 1.29336e+07 5.8273e+06 1.96511e+06 4060.15 139.72 7.39256 6.5794 53786 506641 -1 23163 19 8772 15838 1646298 352161 0 0 1646298 352161 14086 10061 0 0 82056 71253 0 0 114854 90791 0 0 14089 10696 0 0 709530 84425 0 0 711683 84935 0 0 14086 0 0 5338 13358 15632 44930 1826 768 4.52256 4.52256 -3093.77 -4.52256 0 0 2.45963e+06 5081.88 0.91 1.20 0.67 -1 -1 0.91 0.470632 0.431805 1281 1927 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_30.v common 32.33 vpr 80.60 MiB 0.16 15316 -1 -1 8 1.97 -1 -1 39556 -1 -1 170 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82536 22 19 3767 3531 1 2168 220 22 22 484 mult_36 auto 42.3 MiB 1.56 15943 80.6 MiB 2.03 0.03 4.02136 -2629.36 -4.02136 4.02136 2.21 0.00921903 0.008117 0.765951 0.685897 74 28994 34 1.29336e+07 5.85424e+06 2.15943e+06 4461.62 16.64 3.71337 3.31481 56202 562081 -1 24544 15 8887 15825 1942314 398265 0 0 1942314 398265 14222 10017 0 0 81802 71363 0 0 115170 90354 0 0 14222 10653 0 0 851450 110322 0 0 865448 105556 0 0 14222 0 0 5358 12399 14048 46287 1633 214 4.52256 4.52256 -3225.5 -4.52256 0 0 2.68771e+06 5553.12 1.21 1.05 0.59 -1 -1 1.21 0.399042 0.364136 1309 1966 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_31.v common 52.36 vpr 81.08 MiB 0.17 15656 -1 -1 8 2.08 -1 -1 41400 -1 -1 177 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83024 22 19 3928 3675 1 2252 227 22 22 484 mult_36 auto 42.9 MiB 1.55 15600 81.1 MiB 2.10 0.03 3.89606 -2728.48 -3.89606 3.89606 2.56 0.0101914 0.00910921 0.83443 0.748988 74 29200 42 1.29336e+07 5.94854e+06 2.15943e+06 4461.62 36.03 7.4193 6.67781 56202 562081 -1 24356 15 8986 16227 1796707 370785 0 0 1796707 370785 14366 10125 0 0 81012 70064 0 0 115379 90234 0 0 14367 10835 0 0 776097 96610 0 0 795486 92917 0 0 14366 0 0 5404 14569 14678 46462 1903 617 4.39726 4.39726 -3240.5 -4.39726 0 0 2.68771e+06 5553.12 1.25 1.12 0.68 -1 -1 1.25 0.470881 0.429619 1363 2041 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_32.v common 45.84 vpr 81.62 MiB 0.18 15660 -1 -1 8 2.17 -1 -1 40056 -1 -1 181 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83584 22 19 3986 3733 1 2287 231 22 22 484 mult_36 auto 43.3 MiB 1.64 16835 81.6 MiB 2.32 0.03 4.02136 -2767.1 -4.02136 4.02136 1.69 0.0100922 0.00886789 0.867049 0.775747 80 27676 17 1.29336e+07 6.00243e+06 2.29262e+06 4736.82 29.94 5.26065 4.71478 58134 606231 -1 25075 15 8796 15991 1718289 352451 0 0 1718289 352451 14203 9789 0 0 79426 67938 0 0 113904 88020 0 0 14207 10435 0 0 750725 88651 0 0 745824 87618 0 0 14203 0 0 5427 13548 14640 46527 1823 12 4.52256 4.52256 -3269.52 -4.52256 0 0 2.87723e+06 5944.70 1.38 0.95 0.80 -1 -1 1.38 0.395834 0.361939 1391 2080 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_33.v common 43.95 vpr 82.97 MiB 0.24 16796 -1 -1 8 2.02 -1 -1 42036 -1 -1 192 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84964 22 19 4329 4059 1 2422 243 22 22 484 mult_36 auto 44.9 MiB 1.68 17478 83.0 MiB 2.07 0.03 4.14666 -2966.64 -4.14666 4.14666 2.04 0.009822 0.00873398 0.698536 0.615776 74 32810 31 1.29336e+07 6.54662e+06 2.15943e+06 4461.62 27.25 4.70675 4.16747 56202 562081 -1 27049 16 9867 17456 2289141 474616 0 0 2289141 474616 15813 11069 0 0 91317 79702 0 0 127606 101123 0 0 15816 11881 0 0 1009823 134360 0 0 1028766 136481 0 0 15813 0 0 5969 14253 14817 50991 1702 149 4.52256 4.52256 -3487.29 -4.52256 0 0 2.68771e+06 5553.12 1.25 1.23 0.62 -1 -1 1.25 0.455698 0.415194 1494 2246 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_34.v common 55.08 vpr 83.54 MiB 0.27 16920 -1 -1 8 2.49 -1 -1 42464 -1 -1 198 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85540 22 19 4387 4117 1 2459 249 22 22 484 mult_36 auto 45.3 MiB 1.81 17850 83.5 MiB 1.95 0.03 4.02136 -2976 -4.02136 4.02136 2.19 0.0109129 0.00966684 0.632876 0.551889 76 31954 33 1.29336e+07 6.62746e+06 2.20457e+06 4554.90 37.89 6.56642 5.90468 56682 573177 -1 27093 15 9798 17433 2029456 432691 0 0 2029456 432691 15946 11030 0 0 89871 78566 0 0 125755 99885 0 0 15960 11761 0 0 882483 114779 0 0 899441 116670 0 0 15946 0 0 6170 13595 14678 52120 1596 143 4.39726 4.39726 -3472.9 -4.39726 0 0 2.73077e+06 5642.09 1.25 1.12 0.65 -1 -1 1.25 0.447005 0.409852 1521 2285 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_35.v common 152.12 vpr 84.64 MiB 0.25 17520 -1 -1 8 2.34 -1 -1 41056 -1 -1 208 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86668 22 19 4547 4260 1 2575 259 22 22 484 mult_36 auto 46.4 MiB 1.85 17782 84.6 MiB 2.78 0.04 4.02136 -3114.87 -4.02136 4.02136 1.98 0.0113783 0.0101275 0.922868 0.812247 70 33025 36 1.29336e+07 6.76218e+06 2.06816e+06 4273.05 134.18 9.44733 8.41353 55234 538945 -1 27814 16 10449 18232 2204205 473115 0 0 2204205 473115 16515 11663 0 0 100838 87832 0 0 141802 112438 0 0 16518 12444 0 0 960414 123654 0 0 968118 125084 0 0 16515 0 0 6087 13859 14866 51935 1771 574 4.52256 4.52256 -3695.86 -4.52256 0 0 2.60483e+06 5381.88 1.18 1.32 0.62 -1 -1 1.18 0.556496 0.509612 1571 2360 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_36.v common 33.40 vpr 84.79 MiB 0.28 17444 -1 -1 8 2.63 -1 -1 42696 -1 -1 210 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86820 22 19 4605 4318 1 2609 261 22 22 484 mult_36 auto 46.6 MiB 1.84 18420 84.8 MiB 2.14 0.04 4.02136 -3107.21 -4.02136 4.02136 2.10 0.00952783 0.00817452 0.703744 0.619924 76 32081 36 1.29336e+07 6.78912e+06 2.20457e+06 4554.90 16.12 3.80841 3.38619 56682 573177 -1 27810 16 10294 18816 1946807 416742 0 0 1946807 416742 16701 11472 0 0 93642 81363 0 0 133681 104639 0 0 16709 12349 0 0 832157 104986 0 0 853917 101933 0 0 16701 0 0 6430 16209 17404 54805 2172 563 4.39726 4.39726 -3740.88 -4.39726 0 0 2.73077e+06 5642.09 0.97 1.14 0.68 -1 -1 0.97 0.479017 0.436118 1597 2399 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_37.v common 206.16 vpr 85.86 MiB 0.30 17944 -1 -1 8 2.68 -1 -1 39868 -1 -1 218 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87916 22 19 4802 4498 1 2726 270 24 24 576 mult_36 auto 48.2 MiB 1.89 19138 85.9 MiB 2.50 0.04 4.14666 -3404.17 -4.14666 4.14666 2.55 0.0116913 0.0104 0.847612 0.744449 74 36202 47 1.56141e+07 7.2929e+06 2.56259e+06 4448.94 185.90 9.00181 7.92449 66498 666725 -1 29796 14 10684 19122 2091368 446223 0 0 2091368 446223 17151 12258 0 0 98498 85492 0 0 139015 109664 0 0 17152 13003 0 0 905453 115802 0 0 914099 110004 0 0 17151 0 0 6488 15878 16511 54747 2011 388 4.52256 4.52256 -3921.18 -4.52256 0 0 3.19068e+06 5539.38 1.59 1.39 0.84 -1 -1 1.59 0.603599 0.553844 1661 2492 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_38.v common 49.38 vpr 86.17 MiB 0.24 18128 -1 -1 8 2.91 -1 -1 43452 -1 -1 221 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88236 22 19 4860 4556 1 2764 273 24 24 576 mult_36 auto 48.5 MiB 1.94 20168 86.2 MiB 2.42 0.04 4.27196 -3479.6 -4.27196 4.27196 2.56 0.011861 0.0106853 0.826004 0.728573 74 37197 49 1.56141e+07 7.33331e+06 2.56259e+06 4448.94 30.02 6.35033 5.71271 66498 666725 -1 30709 18 11248 20538 2499065 522232 0 0 2499065 522232 17979 12689 0 0 104937 91121 0 0 149427 116680 0 0 17986 13498 0 0 1096938 143800 0 0 1111798 144444 0 0 17979 0 0 6751 17623 20608 57250 2621 796 4.52256 4.52256 -3994.89 -4.52256 0 0 3.19068e+06 5539.38 1.15 1.13 0.65 -1 -1 1.15 0.484942 0.441968 1689 2531 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_39.v common 45.74 vpr 87.00 MiB 0.23 18512 -1 -1 8 3.14 -1 -1 43548 -1 -1 226 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89084 22 19 5019 4698 1 2868 278 24 24 576 mult_36 auto 49.4 MiB 2.02 21602 87.0 MiB 3.23 0.04 4.14666 -3593.28 -4.14666 4.14666 2.75 0.0125371 0.011125 1.11317 0.990011 80 35912 25 1.56141e+07 7.40067e+06 2.72095e+06 4723.87 24.81 5.92898 5.33988 68798 719145 -1 31945 14 11104 20220 2291269 477937 0 0 2291269 477937 17912 12370 0 0 104453 90473 0 0 146539 114595 0 0 17917 13189 0 0 1007732 124433 0 0 996716 122877 0 0 17912 0 0 6830 19439 19192 59642 2367 537 4.52256 4.52256 -4189.11 -4.52256 0 0 3.41546e+06 5929.62 1.21 1.38 0.94 -1 -1 1.21 0.548971 0.501916 1735 2606 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_40.v common 47.83 vpr 87.50 MiB 0.23 18600 -1 -1 8 2.82 -1 -1 43648 -1 -1 230 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89604 22 19 5077 4756 1 2904 282 24 24 576 mult_36 auto 49.8 MiB 2.10 21930 87.5 MiB 2.41 0.04 4.14666 -3671.85 -4.14666 4.14666 2.68 0.0126204 0.0112634 0.793626 0.689807 78 37461 39 1.56141e+07 7.45456e+06 2.67122e+06 4637.53 28.11 5.65786 5.01682 68222 705597 -1 32589 15 11153 20176 2364504 485781 0 0 2364504 485781 17994 12668 0 0 102975 88215 0 0 147800 115936 0 0 18003 13556 0 0 1037209 127365 0 0 1040523 128041 0 0 17994 0 0 6865 19049 18613 59997 2258 882 4.52256 4.52256 -4161.17 -4.52256 0 0 3.35110e+06 5817.88 1.58 1.48 0.77 -1 -1 1.58 0.610047 0.556837 1765 2645 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_41.v common 34.85 vpr 88.53 MiB 0.23 19184 -1 -1 8 3.15 -1 -1 43920 -1 -1 239 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90652 22 19 5308 4970 1 3021 292 24 24 576 mult_36 auto 50.8 MiB 2.31 21921 88.5 MiB 2.51 0.03 4.14666 -3885.06 -4.14666 4.14666 2.65 0.00729794 0.00610569 0.842894 0.735672 76 39595 42 1.56141e+07 7.97181e+06 2.61600e+06 4541.67 14.93 3.89286 3.45305 67070 679911 -1 33670 14 11947 21831 2407182 505898 0 0 2407182 505898 19508 13500 0 0 111646 97174 0 0 156723 123566 0 0 19509 14546 0 0 1060200 128753 0 0 1039596 128359 0 0 19508 0 0 7584 19026 19570 64716 2343 525 4.64786 4.64786 -4480.94 -4.64786 0 0 3.24203e+06 5628.53 1.12 1.42 0.67 -1 -1 1.12 0.566507 0.516583 1838 2756 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_42.v common 64.62 vpr 96.22 MiB 0.25 19260 -1 -1 8 3.35 -1 -1 43940 -1 -1 242 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98528 22 19 5366 5028 1 3055 295 24 24 576 mult_36 auto 51.3 MiB 2.14 22765 88.8 MiB 3.32 0.09 4.27196 -3912.77 -4.27196 4.27196 2.54 0.0125095 0.0109954 0.944226 0.821349 78 39143 45 1.56141e+07 8.01222e+06 2.67122e+06 4637.53 42.92 9.0764 8.10833 68222 705597 -1 34147 16 11869 21944 2548554 512010 0 0 2548554 512010 19542 13422 0 0 108202 92708 0 0 158498 121951 0 0 19542 14386 0 0 1099482 138420 0 0 1143288 131123 0 0 19542 0 0 7692 20680 19058 66129 2424 333 4.64786 4.64786 -4620.52 -4.64786 0 0 3.35110e+06 5817.88 1.60 1.61 0.80 -1 -1 1.60 0.637956 0.580572 1862 2795 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_43.v common 196.13 vpr 88.59 MiB 0.15 19552 -1 -1 8 3.39 -1 -1 44016 -1 -1 255 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90716 22 19 5524 5169 1 3162 308 24 24 576 mult_36 auto 52.0 MiB 2.33 22483 88.6 MiB 2.98 0.05 4.27196 -3937.42 -4.27196 4.27196 2.08 0.020058 0.0185937 0.862166 0.751845 76 42029 38 1.56141e+07 8.18736e+06 2.61600e+06 4541.67 175.42 11.2638 9.94482 67070 679911 -1 34242 17 12907 22977 2421899 519757 0 0 2421899 519757 20933 14560 0 0 117031 102118 0 0 165009 130148 0 0 20940 15695 0 0 1029754 133656 0 0 1068232 123580 0 0 20933 0 0 8048 17831 19375 68422 2125 188 4.39726 4.39726 -4594.94 -4.39726 0 0 3.24203e+06 5628.53 1.22 0.93 0.86 -1 -1 1.22 0.387775 0.353925 1916 2870 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_44.v common 62.40 vpr 89.23 MiB 0.19 20020 -1 -1 8 3.07 -1 -1 44884 -1 -1 254 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91376 22 19 5582 5227 1 3204 307 24 24 576 mult_36 auto 52.4 MiB 2.33 24330 89.2 MiB 3.41 0.05 4.27196 -4171.59 -4.27196 4.27196 2.57 0.0151744 0.0135366 1.06408 0.926292 80 41408 42 1.56141e+07 8.17389e+06 2.72095e+06 4723.87 40.41 6.41872 5.6916 68798 719145 -1 35864 16 12313 22244 2529196 517669 0 0 2529196 517669 20119 13855 0 0 114718 99140 0 0 161389 126320 0 0 20121 14772 0 0 1117054 132792 0 0 1095795 130790 0 0 20119 0 0 7829 18571 19534 67389 2152 1473 4.64786 4.64786 -4699.78 -4.64786 0 0 3.41546e+06 5929.62 1.59 1.26 0.90 -1 -1 1.59 0.500391 0.460434 1945 2909 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_45.v common 53.82 vpr 90.08 MiB 0.28 20340 -1 -1 8 3.41 -1 -1 41592 -1 -1 262 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92240 22 19 5779 5407 1 3306 316 24 24 576 mult_36 auto 53.3 MiB 2.32 25034 90.1 MiB 3.48 0.04 4.27196 -4178.46 -4.27196 4.27196 2.78 0.0127585 0.0113282 1.10759 0.982279 76 44912 44 1.56141e+07 8.67766e+06 2.61600e+06 4541.67 31.20 6.83628 6.04328 67070 679911 -1 37700 16 13590 24644 2842764 604363 0 0 2842764 604363 21914 15285 0 0 126179 110402 0 0 176900 139697 0 0 21915 16193 0 0 1258211 160817 0 0 1237645 161969 0 0 21914 0 0 8347 22553 23276 72216 2784 588 4.52256 4.52256 -4828.1 -4.52256 0 0 3.24203e+06 5628.53 1.44 1.81 0.82 -1 -1 1.44 0.744272 0.679395 2012 3002 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_46.v common 79.51 vpr 92.18 MiB 0.20 20496 -1 -1 8 4.12 -1 -1 45572 -1 -1 267 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94388 22 19 5837 5465 1 3341 321 24 24 576 mult_36 auto 53.6 MiB 2.42 25644 92.2 MiB 3.99 0.05 4.52256 -4257.26 -4.52256 4.52256 3.09 0.0149146 0.0134279 1.20569 1.05049 78 44721 48 1.56141e+07 8.74502e+06 2.67122e+06 4637.53 55.02 8.34772 7.38345 68222 705597 -1 37922 15 13417 24333 2954666 597265 0 0 2954666 597265 21745 15117 0 0 125359 108176 0 0 180593 141248 0 0 21752 16240 0 0 1290343 158972 0 0 1314874 157512 0 0 21745 0 0 8351 23247 21701 72007 2637 1227 4.52256 4.52256 -4813.34 -4.52256 0 0 3.35110e+06 5817.88 1.59 1.27 0.93 -1 -1 1.59 0.496135 0.45512 2043 3041 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_47.v common 51.69 vpr 92.91 MiB 0.28 20776 -1 -1 8 4.41 -1 -1 45232 -1 -1 275 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 95136 22 19 5997 5608 1 3446 329 24 24 576 mult_36 auto 54.5 MiB 2.40 24110 92.9 MiB 3.57 0.04 4.27196 -4282.3 -4.27196 4.27196 2.58 0.0102527 0.00887739 1.16815 1.02181 76 42740 36 1.56141e+07 8.8528e+06 2.61600e+06 4541.67 28.25 7.98409 7.10181 67070 679911 -1 36118 17 13455 23876 2594769 560963 0 0 2594769 560963 21449 15094 0 0 122496 106823 0 0 173643 137093 0 0 21459 16062 0 0 1117818 143812 0 0 1137904 142079 0 0 21449 0 0 8016 21341 20577 69060 2503 858 4.39726 4.39726 -4906.67 -4.39726 0 0 3.24203e+06 5628.53 0.99 1.69 0.53 -1 -1 0.99 0.782781 0.716039 2100 3116 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_48.v common 46.88 vpr 91.57 MiB 0.27 20956 -1 -1 8 4.23 -1 -1 46196 -1 -1 279 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93772 22 19 6055 5666 1 3477 333 24 24 576 mult_36 auto 54.9 MiB 2.34 25932 91.6 MiB 3.56 0.05 4.27196 -4460.71 -4.27196 4.27196 2.67 0.0134252 0.0116931 1.03398 0.892245 80 43384 35 1.56141e+07 8.90669e+06 2.72095e+06 4723.87 24.35 5.65418 5.00216 68798 719145 -1 38171 14 13473 24141 2627724 545080 0 0 2627724 545080 21615 14936 0 0 123227 106008 0 0 174099 135367 0 0 21617 15860 0 0 1153908 137207 0 0 1133258 135702 0 0 21615 0 0 8164 21775 22442 71299 2549 1906 4.52256 4.52256 -5117.04 -4.52256 0 0 3.41546e+06 5929.62 1.22 1.57 0.57 -1 -1 1.22 0.608926 0.556541 2126 3155 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_49.v common 52.54 vpr 94.61 MiB 0.34 21628 -1 -1 8 4.75 -1 -1 46008 -1 -1 285 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96880 22 19 6324 5918 1 3577 340 24 24 576 mult_36 auto 56.6 MiB 2.88 26212 94.6 MiB 3.76 0.06 4.27196 -4538.26 -4.27196 4.27196 2.55 0.0152934 0.0135335 1.11137 0.966076 76 47502 47 1.56141e+07 9.38352e+06 2.61600e+06 4541.67 27.57 7.46439 6.60921 67070 679911 -1 39258 16 14161 25891 3090924 645275 0 0 3090924 645275 23060 16127 0 0 133463 116360 0 0 188040 148576 0 0 23066 17181 0 0 1341960 172589 0 0 1381335 174442 0 0 23060 0 0 8923 23748 24233 76304 2926 1132 4.64786 4.64786 -5171.62 -4.64786 0 0 3.24203e+06 5628.53 1.48 1.36 0.65 -1 -1 1.48 0.563538 0.517125 2206 3284 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_50.v common 57.99 vpr 94.86 MiB 0.28 21604 -1 -1 8 4.71 -1 -1 46952 -1 -1 292 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 97132 22 19 6382 5976 1 3610 347 24 24 576 mult_36 auto 56.6 MiB 1.57 29603 94.9 MiB 4.08 0.06 4.39726 -4599.11 -4.39726 4.39726 2.80 0.0157851 0.0137943 1.19552 1.03438 84 50960 39 1.56141e+07 9.47782e+06 2.84938e+06 4946.85 33.63 7.09308 6.25242 70522 759407 -1 41657 16 14122 25753 3384293 691202 0 0 3384293 691202 23148 15721 0 0 131863 115130 0 0 180838 142412 0 0 23155 16758 0 0 1522968 195919 0 0 1502321 205262 0 0 23148 0 0 9049 24391 25276 79905 2686 2063 4.52256 4.52256 -5209.39 -4.52256 0 0 3.60864e+06 6265.01 1.69 2.11 0.88 -1 -1 1.69 0.82855 0.753813 2235 3323 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_51.v common 74.50 vpr 115.68 MiB 0.29 22036 -1 -1 8 4.91 -1 -1 47120 -1 -1 297 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 118456 22 19 6542 6119 1 3736 352 24 24 576 mult_36 auto 57.8 MiB 1.93 29625 95.9 MiB 4.45 0.07 4.27196 -4812.72 -4.27196 4.27196 2.64 0.0310979 0.0231 1.68417 1.50891 88 46639 37 1.56141e+07 9.54518e+06 2.98162e+06 5176.42 49.21 10.3135 9.21674 71670 786159 -1 41997 14 13689 24609 2757822 567091 0 0 2757822 567091 22362 15510 0 0 124256 106813 0 0 177466 139319 0 0 22365 16473 0 0 1174909 150529 0 0 1236464 138447 0 0 22362 0 0 8694 22855 20860 76132 2317 1196 4.64786 4.64786 -5476.7 -4.64786 0 0 3.70823e+06 6437.90 1.73 1.86 0.99 -1 -1 1.73 0.796676 0.725452 2287 3398 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_52.v common 99.92 vpr 98.03 MiB 0.40 22276 -1 -1 8 5.04 -1 -1 46924 -1 -1 301 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100380 22 19 6600 6177 1 3777 356 24 24 576 mult_36 auto 57.8 MiB 2.51 28901 96.0 MiB 4.13 0.06 4.27196 -4740.14 -4.27196 4.27196 2.47 0.0173231 0.0151808 1.21679 1.05711 80 47550 38 1.56141e+07 9.59907e+06 2.72095e+06 4723.87 74.82 9.87275 8.69784 68798 719145 -1 42516 14 14912 27229 2994777 630196 0 0 2994777 630196 24476 16631 0 0 137657 118401 0 0 193657 151129 0 0 24488 17722 0 0 1320335 160986 0 0 1294164 165327 0 0 24476 0 0 9584 22341 26229 83300 2824 569 4.52256 4.52256 -5359.53 -4.52256 0 0 3.41546e+06 5929.62 1.52 1.75 0.91 -1 -1 1.52 0.695202 0.636324 2318 3437 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_14.v common 20.53 vpr 66.35 MiB 0.10 9088 -1 -1 10 0.73 -1 -1 35324 -1 -1 57 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67944 22 19 1149 1049 1 785 102 16 16 256 mult_36 auto 28.1 MiB 0.48 5145 66.4 MiB 0.49 0.01 12.0204 -361.379 -12.0204 12.0204 0.96 0.00261059 0.00226673 0.164385 0.14463 68 10281 29 6.45408e+06 2.3519e+06 1.00038e+06 3907.74 13.67 1.51028 1.35621 27844 252052 -1 9044 19 4869 9419 1105135 239642 0 0 1105135 239642 9419 5851 0 0 49382 44924 0 0 66894 53463 0 0 9886 6761 0 0 477457 64833 0 0 492097 63810 0 0 9419 0 0 4577 12724 10344 87264 0 0 12.3927 12.3927 -459.515 -12.3927 0 0 1.24648e+06 4869.04 0.48 0.54 0.32 -1 -1 0.48 0.174534 0.160934 433 658 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_15.v common 16.23 vpr 66.99 MiB 0.07 9336 -1 -1 11 0.67 -1 -1 35196 -1 -1 63 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68600 22 19 1261 1144 1 857 109 16 16 256 mult_36 auto 28.9 MiB 0.67 5395 67.0 MiB 0.31 0.01 12.4748 -393.909 -12.4748 12.4748 0.91 0.00165492 0.00143176 0.0968626 0.0852172 64 11799 39 6.45408e+06 2.82874e+06 943753. 3686.54 9.63 1.03104 0.921744 27332 240185 -1 9607 21 5169 10063 1108773 241951 0 0 1108773 241951 9745 6116 0 0 51498 46314 0 0 71578 56537 0 0 10156 6869 0 0 476101 63352 0 0 489695 62763 0 0 9745 0 0 4601 9783 10063 62326 363 1 12.8934 12.8934 -590.94 -12.8934 0 0 1.19033e+06 4649.74 0.47 0.62 0.29 -1 -1 0.47 0.20885 0.192543 471 727 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_16.v common 13.97 vpr 66.88 MiB 0.07 9424 -1 -1 11 0.68 -1 -1 35280 -1 -1 70 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68484 22 19 1336 1219 1 919 116 16 16 256 mult_36 auto 28.9 MiB 0.56 5948 66.9 MiB 0.32 0.01 13.6285 -453.588 -13.6285 13.6285 0.91 0.00195275 0.0017232 0.102551 0.0888503 64 12359 26 6.45408e+06 2.92304e+06 943753. 3686.54 7.65 1.07506 0.967916 27332 240185 -1 10516 18 5327 10451 1173946 255080 0 0 1173946 255080 10156 6074 0 0 53946 48678 0 0 75770 59840 0 0 10381 6865 0 0 506070 67709 0 0 517623 65914 0 0 10156 0 0 4852 11632 10153 65376 335 1 13.9183 13.9183 -614.979 -13.9183 0 0 1.19033e+06 4649.74 0.46 0.56 0.29 -1 -1 0.46 0.178585 0.164782 512 783 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_17.v common 14.13 vpr 67.89 MiB 0.08 9924 -1 -1 11 0.88 -1 -1 35436 -1 -1 77 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69520 22 19 1446 1312 1 981 123 16 16 256 mult_36 auto 29.9 MiB 0.57 6339 67.9 MiB 0.58 0.01 12.8431 -458.354 -12.8431 12.8431 0.92 0.00383354 0.00343165 0.19999 0.177586 64 14123 43 6.45408e+06 3.01734e+06 943753. 3686.54 7.08 1.06043 0.947738 27332 240185 -1 11611 18 5743 11089 1204411 270351 0 0 1204411 270351 10535 6972 0 0 60776 54674 0 0 82229 66403 0 0 11056 7885 0 0 524601 68274 0 0 515214 66143 0 0 10535 0 0 4817 8710 8987 40713 592 2 13.3631 13.3631 -640.32 -13.3631 0 0 1.19033e+06 4649.74 0.47 0.74 0.30 -1 -1 0.47 0.271774 0.252779 558 848 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_18.v common 20.70 vpr 68.18 MiB 0.09 10036 -1 -1 11 0.93 -1 -1 35732 -1 -1 79 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69812 22 19 1507 1373 1 1020 125 16 16 256 mult_36 auto 30.1 MiB 0.57 7248 68.2 MiB 0.71 0.01 13.0656 -433.002 -13.0656 13.0656 0.92 0.00365933 0.00319337 0.201974 0.181166 72 14511 26 6.45408e+06 3.04429e+06 1.04740e+06 4091.43 13.22 1.86991 1.68133 28608 268066 -1 12225 20 5787 11421 1300359 292005 0 0 1300359 292005 10859 6799 0 0 59811 53652 0 0 82443 65635 0 0 11152 7800 0 0 560232 78759 0 0 575862 79360 0 0 10859 0 0 5101 9352 9370 41830 668 48 13.814 13.814 -697.656 -13.814 0 0 1.31294e+06 5128.69 0.59 0.71 0.30 -1 -1 0.59 0.234547 0.214156 576 890 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_19.v common 72.66 vpr 69.00 MiB 0.11 10320 -1 -1 11 0.95 -1 -1 35916 -1 -1 80 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70660 22 19 1596 1445 1 1103 127 16 16 256 mult_36 auto 30.7 MiB 0.62 7942 69.0 MiB 0.82 0.01 13.4135 -482.658 -13.4135 13.4135 0.86 0.00212423 0.0018263 0.256504 0.230566 70 16470 46 6.45408e+06 3.45376e+06 1.02522e+06 4004.78 64.96 3.37909 3.0398 28352 262101 -1 13897 20 6791 13476 1545857 337290 0 0 1545857 337290 12666 8300 0 0 70245 62898 0 0 98733 77431 0 0 13189 9362 0 0 668088 89909 0 0 682936 89390 0 0 12666 0 0 5904 11304 11665 49063 874 2 13.6641 13.6641 -707.811 -13.6641 0 0 1.29210e+06 5047.26 0.49 0.77 0.33 -1 -1 0.49 0.246448 0.226559 615 938 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_20.v common 14.95 vpr 68.82 MiB 0.11 10384 -1 -1 11 0.99 -1 -1 35868 -1 -1 86 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70476 22 19 1656 1505 1 1131 133 16 16 256 mult_36 auto 31.0 MiB 0.63 8031 68.8 MiB 0.71 0.01 13.1944 -495.967 -13.1944 13.1944 0.92 0.00402643 0.00343673 0.236051 0.207913 76 15112 31 6.45408e+06 3.53459e+06 1.09288e+06 4269.05 7.80 1.51839 1.34829 29116 278758 -1 13023 20 6718 13368 1398934 308843 0 0 1398934 308843 12572 7866 0 0 68329 62097 0 0 95259 74918 0 0 13028 8812 0 0 599166 79942 0 0 610580 75208 0 0 12572 0 0 5881 12511 10723 49140 839 2 13.9854 13.9854 -716.853 -13.9854 0 0 1.35486e+06 5292.42 0.53 0.49 0.36 -1 -1 0.53 0.152555 0.140057 637 979 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_21.v common 50.71 vpr 69.67 MiB 0.09 10712 -1 -1 12 1.14 -1 -1 36492 -1 -1 91 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71340 22 19 1754 1586 1 1196 138 16 16 256 mult_36 auto 31.8 MiB 0.70 8206 69.7 MiB 0.76 0.02 13.688 -507.173 -13.688 13.688 0.90 0.00648628 0.00585818 0.213674 0.189557 68 17279 45 6.45408e+06 3.60195e+06 1.00038e+06 3907.74 43.14 3.34025 3.01293 27844 252052 -1 13604 20 6778 13015 1578312 344831 0 0 1578312 344831 12273 7989 0 0 68463 61777 0 0 92467 74141 0 0 12712 8691 0 0 693646 94049 0 0 698751 98184 0 0 12273 0 0 5522 10576 10517 44707 836 2 14.4398 14.4398 -713.501 -14.4398 0 0 1.24648e+06 4869.04 0.49 0.49 0.30 -1 -1 0.49 0.146706 0.134973 662 1035 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_22.v common 24.18 vpr 70.25 MiB 0.10 10756 -1 -1 11 1.16 -1 -1 37420 -1 -1 97 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71932 22 19 1827 1659 1 1261 144 16 16 256 mult_36 auto 32.4 MiB 0.62 9037 70.2 MiB 0.71 0.02 12.8941 -491.838 -12.8941 12.8941 0.99 0.00458631 0.00396425 0.239501 0.210887 76 17668 33 6.45408e+06 3.68278e+06 1.09288e+06 4269.05 15.65 2.41698 2.14963 29116 278758 -1 14721 19 7553 15065 1687352 379860 0 0 1687352 379860 14079 8741 0 0 74452 67002 0 0 105064 82185 0 0 14611 9768 0 0 732217 104898 0 0 746929 107266 0 0 14079 0 0 6554 12627 12172 53944 1068 117 13.5276 13.5276 -757.528 -13.5276 0 0 1.35486e+06 5292.42 0.47 0.98 0.44 -1 -1 0.47 0.293881 0.268507 708 1089 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_23.v common 21.06 vpr 70.15 MiB 0.11 11148 -1 -1 12 1.26 -1 -1 37512 -1 -1 97 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71836 22 19 1905 1720 1 1293 145 18 18 324 mult_36 auto 32.5 MiB 0.68 9192 70.2 MiB 0.81 0.01 13.8995 -555.981 -13.8995 13.8995 1.29 0.00464604 0.00407884 0.264068 0.231634 70 18619 48 7.94662e+06 4.07878e+06 1.34436e+06 4149.26 11.72 1.88817 1.69902 36496 347204 -1 16098 21 7668 14962 2031639 422704 0 0 2031639 422704 14022 8960 0 0 81295 73115 0 0 110808 88388 0 0 14558 9710 0 0 899613 119390 0 0 911343 123141 0 0 14022 0 0 6380 12119 12664 52839 1001 192 14.6547 14.6547 -869.331 -14.6547 0 0 1.69344e+06 5226.66 0.65 0.97 0.42 -1 -1 0.65 0.302694 0.278708 722 1124 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_24.v common 21.41 vpr 70.73 MiB 0.09 11264 -1 -1 12 1.10 -1 -1 36872 -1 -1 98 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72432 22 19 1979 1794 1 1336 146 18 18 324 mult_36 auto 32.8 MiB 0.78 9655 70.7 MiB 1.19 0.01 13.3044 -573.887 -13.3044 13.3044 1.32 0.00383581 0.00346276 0.42489 0.38563 70 18941 35 7.94662e+06 4.09226e+06 1.34436e+06 4149.26 11.76 2.12155 1.90725 36496 347204 -1 16351 19 7901 15064 1757286 371051 0 0 1757286 371051 14002 9207 0 0 77325 69055 0 0 108964 85315 0 0 14528 10199 0 0 770207 100052 0 0 772260 97223 0 0 14002 0 0 6128 13306 12950 52153 1089 2 14.4398 14.4398 -904.773 -14.4398 0 0 1.69344e+06 5226.66 0.58 0.82 0.48 -1 -1 0.58 0.360899 0.334669 739 1179 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_25.v common 31.60 vpr 72.04 MiB 0.14 11668 -1 -1 12 1.12 -1 -1 36604 -1 -1 105 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73768 22 19 2073 1871 1 1394 153 18 18 324 mult_36 auto 34.1 MiB 0.80 9629 72.0 MiB 0.97 0.02 14.762 -609.654 -14.762 14.762 1.31 0.00565616 0.00505935 0.341347 0.301499 76 19940 49 7.94662e+06 4.18656e+06 1.43297e+06 4422.75 21.83 3.26826 2.92777 37464 369264 -1 16565 17 7518 14805 1766323 376847 0 0 1766323 376847 13743 9011 0 0 77678 69752 0 0 107072 85488 0 0 14445 10131 0 0 787017 101082 0 0 766368 101383 0 0 13743 0 0 6250 13332 13861 53320 1094 98 15.4746 15.4746 -880.967 -15.4746 0 0 1.77541e+06 5479.65 0.59 0.98 0.37 -1 -1 0.59 0.290156 0.264911 791 1232 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_26.v common 31.08 vpr 72.21 MiB 0.09 11960 -1 -1 12 1.48 -1 -1 37320 -1 -1 106 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73944 22 19 2130 1928 1 1451 154 18 18 324 mult_36 auto 34.3 MiB 0.81 10169 72.2 MiB 1.09 0.02 14.0681 -619.224 -14.0681 14.0681 1.23 0.00582762 0.00525377 0.385576 0.340738 76 20093 31 7.94662e+06 4.20003e+06 1.43297e+06 4422.75 20.45 3.42089 3.06623 37464 369264 -1 17149 19 8277 16250 1887938 399118 0 0 1887938 399118 15103 9850 0 0 80941 73206 0 0 113263 89462 0 0 15737 11206 0 0 829217 108323 0 0 833677 107071 0 0 15103 0 0 6851 13196 14847 57062 1213 26 14.5301 14.5301 -983.587 -14.5301 0 0 1.77541e+06 5479.65 0.76 0.99 0.47 -1 -1 0.76 0.314454 0.288804 811 1270 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_27.v common 74.38 vpr 72.46 MiB 0.21 12076 -1 -1 12 1.63 -1 -1 37000 -1 -1 114 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74196 22 19 2238 2019 1 1541 163 18 18 324 mult_36 auto 34.8 MiB 0.80 11015 72.5 MiB 1.12 0.02 13.5032 -633.141 -13.5032 13.5032 1.33 0.00587482 0.00516355 0.383215 0.337614 70 24160 44 7.94662e+06 4.70381e+06 1.34436e+06 4149.26 63.44 3.92924 3.49435 36496 347204 -1 19217 22 10306 20438 2404134 499638 0 0 2404134 499638 19107 12307 0 0 104443 93594 0 0 148229 114254 0 0 19893 14164 0 0 1046000 136449 0 0 1066462 128870 0 0 19107 0 0 8828 18225 18749 76483 1391 58 14.7485 14.7485 -1009.8 -14.7485 0 0 1.69344e+06 5226.66 0.67 1.10 0.41 -1 -1 0.67 0.346929 0.31722 851 1323 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_28.v common 29.75 vpr 73.06 MiB 0.12 12212 -1 -1 12 1.59 -1 -1 37464 -1 -1 117 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74816 22 19 2299 2080 1 1575 166 18 18 324 mult_36 auto 35.4 MiB 0.73 10911 73.1 MiB 1.20 0.02 14.0471 -622.998 -14.0471 14.0471 1.01 0.00563879 0.00504356 0.442191 0.400317 78 20363 35 7.94662e+06 4.74422e+06 1.46313e+06 4515.82 19.40 3.16843 2.85243 38112 383040 -1 18060 19 8132 15838 2215953 467238 0 0 2215953 467238 14730 9707 0 0 84496 75753 0 0 117194 93345 0 0 15510 10707 0 0 1001004 135733 0 0 983019 141993 0 0 14730 0 0 6622 13857 14128 56916 1173 56 15.2463 15.2463 -877.948 -15.2463 0 0 1.83526e+06 5664.38 0.94 1.16 0.42 -1 -1 0.94 0.359172 0.33011 874 1365 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_29.v common 35.11 vpr 73.59 MiB 0.13 12344 -1 -1 12 1.80 -1 -1 37416 -1 -1 121 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75360 22 19 2400 2164 1 1649 171 22 22 484 mult_36 auto 35.5 MiB 0.85 12373 73.6 MiB 1.21 0.02 12.9796 -660.103 -12.9796 12.9796 2.13 0.00663361 0.00590276 0.388943 0.340233 72 26277 45 1.29336e+07 5.19411e+06 2.11301e+06 4365.72 21.44 2.72155 2.42349 55718 550791 -1 21080 19 10024 19599 2371232 484003 0 0 2371232 484003 18114 12012 0 0 98975 88762 0 0 138080 108924 0 0 19035 13736 0 0 1061380 128811 0 0 1035648 131758 0 0 18114 0 0 8117 17511 18458 68631 1529 394 14.2718 14.2718 -1223.01 -14.2718 0 0 2.64603e+06 5467.00 1.27 1.19 0.64 -1 -1 1.27 0.354298 0.324455 915 1415 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_30.v common 42.75 vpr 74.21 MiB 0.36 12536 -1 -1 12 1.52 -1 -1 37576 -1 -1 127 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75992 22 19 2474 2238 1 1692 177 22 22 484 mult_36 auto 36.3 MiB 0.93 12402 74.2 MiB 1.18 0.02 13.1798 -668.115 -13.1798 13.1798 2.02 0.00868524 0.0077159 0.408445 0.357908 74 24265 47 1.29336e+07 5.27494e+06 2.15943e+06 4461.62 29.37 3.91203 3.48156 56202 562081 -1 20834 19 11175 21756 2461756 505464 0 0 2461756 505464 20368 12986 0 0 108276 97791 0 0 151288 118174 0 0 21171 15276 0 0 1075254 134584 0 0 1085399 126653 0 0 20368 0 0 9222 18300 19754 76793 1432 2 14.1318 14.1318 -1060.98 -14.1318 0 0 2.68771e+06 5553.12 1.29 1.19 0.70 -1 -1 1.29 0.360275 0.32681 947 1470 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_31.v common 132.84 vpr 74.95 MiB 0.14 12884 -1 -1 12 1.98 -1 -1 39244 -1 -1 137 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76748 22 19 2603 2350 1 1765 187 22 22 484 mult_36 auto 37.2 MiB 0.79 12571 74.9 MiB 1.33 0.02 13.3737 -659.34 -13.3737 13.3737 2.21 0.00502964 0.00437552 0.405508 0.355409 70 24588 33 1.29336e+07 5.40966e+06 2.06816e+06 4273.05 120.04 5.3262 4.74201 55234 538945 -1 21448 19 10064 19891 2576889 524040 0 0 2576889 524040 18378 11391 0 0 103914 92828 0 0 143779 114405 0 0 18874 12697 0 0 1128842 146611 0 0 1163102 146108 0 0 18378 0 0 8341 18267 19081 72067 1572 270 14.7128 14.7128 -1205.77 -14.7128 0 0 2.60483e+06 5381.88 0.84 0.90 0.51 -1 -1 0.84 0.236418 0.215037 1001 1549 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_32.v common 35.01 vpr 74.86 MiB 0.15 13164 -1 -1 12 1.95 -1 -1 39468 -1 -1 141 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76652 22 19 2694 2441 1 1849 191 22 22 484 mult_36 auto 37.4 MiB 0.96 13128 74.9 MiB 1.53 0.02 13.4059 -652.366 -13.4059 13.4059 2.21 0.0072606 0.0065147 0.528333 0.476673 74 26088 47 1.29336e+07 5.46355e+06 2.15943e+06 4461.62 20.14 3.34353 3.00733 56202 562081 -1 21704 22 10757 20256 2539471 515819 0 0 2539471 515819 18894 12184 0 0 101146 90642 0 0 141052 111245 0 0 19325 13606 0 0 1125663 141724 0 0 1133391 146418 0 0 18894 0 0 8168 16510 17889 67204 1501 25 14.283 14.283 -1091.43 -14.283 0 0 2.68771e+06 5553.12 1.43 1.41 0.69 -1 -1 1.43 0.433914 0.397131 1040 1621 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_33.v common 105.39 vpr 75.43 MiB 0.15 13436 -1 -1 13 2.08 -1 -1 38284 -1 -1 140 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77244 22 19 2787 2517 1 1916 191 22 22 484 mult_36 auto 38.0 MiB 1.04 13860 75.4 MiB 1.53 0.03 13.6488 -711.294 -13.6488 13.6488 2.22 0.0101822 0.00930384 0.479073 0.405747 74 27172 29 1.29336e+07 5.84608e+06 2.15943e+06 4461.62 90.36 5.34485 4.70258 56202 562081 -1 22940 21 11002 21468 2868174 596117 0 0 2868174 596117 20052 12692 0 0 108058 97265 0 0 150078 118373 0 0 20680 14221 0 0 1274243 173756 0 0 1295063 179810 0 0 20052 0 0 9078 18376 18415 75878 1474 299 15.0741 15.0741 -1268.72 -15.0741 0 0 2.68771e+06 5553.12 1.22 1.27 0.73 -1 -1 1.22 0.412455 0.376532 1070 1664 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_34.v common 31.52 vpr 75.73 MiB 0.10 13592 -1 -1 13 2.12 -1 -1 40164 -1 -1 142 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77552 22 19 2834 2564 1 1944 193 22 22 484 mult_36 auto 38.4 MiB 1.14 13776 75.7 MiB 1.43 0.02 14.2753 -741.266 -14.2753 14.2753 1.93 0.00727282 0.00655635 0.413997 0.354344 76 27411 35 1.29336e+07 5.87302e+06 2.20457e+06 4554.90 16.91 2.63539 2.35723 56682 573177 -1 23086 20 10872 20923 2566066 535285 0 0 2566066 535285 19742 12690 0 0 109924 99410 0 0 152514 121275 0 0 20362 14498 0 0 1144473 144447 0 0 1119051 142965 0 0 19742 0 0 8900 17654 17464 75775 1210 37 16.0296 16.0296 -1349.18 -16.0296 0 0 2.73077e+06 5642.09 1.03 1.35 0.73 -1 -1 1.03 0.419285 0.380139 1084 1692 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_35.v common 114.77 vpr 76.10 MiB 0.15 13916 -1 -1 13 2.14 -1 -1 38800 -1 -1 150 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77924 22 19 2941 2654 1 2012 201 22 22 484 mult_36 auto 38.7 MiB 1.08 14392 76.1 MiB 1.78 0.03 13.9352 -781.481 -13.9352 13.9352 2.16 0.00797015 0.00713696 0.559887 0.48426 74 28682 29 1.29336e+07 5.9808e+06 2.15943e+06 4461.62 100.34 5.14063 4.55169 56202 562081 -1 24136 21 11626 22459 2761295 568544 0 0 2761295 568544 20799 13386 0 0 117286 105910 0 0 160773 127612 0 0 21415 14970 0 0 1225182 154685 0 0 1215840 151981 0 0 20799 0 0 9203 19077 20055 76621 1713 228 15.074 15.074 -1574.59 -15.074 0 0 2.68771e+06 5553.12 0.99 0.98 0.47 -1 -1 0.99 0.350135 0.31784 1131 1750 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_36.v common 35.79 vpr 76.78 MiB 0.18 13980 -1 -1 13 2.24 -1 -1 40104 -1 -1 153 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78624 22 19 3011 2724 1 2050 204 22 22 484 mult_36 auto 39.4 MiB 1.16 14453 76.8 MiB 1.74 0.03 13.7707 -751.494 -13.7707 13.7707 2.11 0.0113536 0.0103137 0.585264 0.51878 76 29166 47 1.29336e+07 6.02122e+06 2.20457e+06 4554.90 20.48 3.02173 2.68034 56682 573177 -1 24174 21 12121 23445 2974695 614218 0 0 2974695 614218 21988 13845 0 0 122333 110950 0 0 168746 134322 0 0 22790 15583 0 0 1310893 167979 0 0 1327945 171539 0 0 21988 0 0 9898 19163 19575 82292 1497 212 14.9018 14.9018 -1391.02 -14.9018 0 0 2.73077e+06 5642.09 1.13 1.16 0.46 -1 -1 1.13 0.420401 0.384186 1168 1801 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_37.v common 31.98 vpr 77.19 MiB 0.16 14332 -1 -1 13 2.44 -1 -1 40348 -1 -1 158 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79040 22 19 3132 2828 1 2123 210 24 24 576 mult_36 auto 39.8 MiB 1.17 15481 77.2 MiB 1.10 0.02 14.4868 -903.454 -14.4868 14.4868 2.20 0.00629734 0.00523395 0.331648 0.283902 74 29452 32 1.56141e+07 6.48458e+06 2.56259e+06 4448.94 14.95 2.43336 2.16207 66498 666725 -1 25337 21 11769 22731 2983928 599958 0 0 2983928 599958 21317 13737 0 0 114590 102878 0 0 157808 125386 0 0 21951 15152 0 0 1311616 173115 0 0 1356646 169690 0 0 21317 0 0 9577 19036 19669 80749 1448 22 14.8704 14.8704 -1523.2 -14.8704 0 0 3.19068e+06 5539.38 1.77 1.72 0.83 -1 -1 1.77 0.537037 0.491118 1192 1872 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_38.v common 37.32 vpr 77.45 MiB 0.20 14404 -1 -1 13 1.72 -1 -1 40512 -1 -1 160 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79304 22 19 3159 2855 1 2172 212 24 24 576 mult_36 auto 40.1 MiB 1.15 15337 77.4 MiB 1.41 0.02 14.4084 -940.203 -14.4084 14.4084 2.30 0.00451724 0.00395729 0.430286 0.374877 74 30259 35 1.56141e+07 6.51152e+06 2.56259e+06 4448.94 21.72 3.05197 2.70909 66498 666725 -1 25578 20 12078 22960 2674420 542857 0 0 2674420 542857 21228 13939 0 0 113706 101270 0 0 158343 125181 0 0 21777 15614 0 0 1174697 148697 0 0 1184669 138156 0 0 21228 0 0 9177 19896 21161 78183 1763 104 15.2386 15.2386 -1564.1 -15.2386 0 0 3.19068e+06 5539.38 1.63 1.25 0.86 -1 -1 1.63 0.365017 0.333248 1207 1880 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_39.v common 53.57 vpr 84.43 MiB 0.19 14768 -1 -1 13 2.11 -1 -1 39332 -1 -1 169 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86460 22 19 3284 2963 1 2259 221 24 24 576 mult_36 auto 40.9 MiB 1.49 16556 78.2 MiB 1.46 0.03 14.8416 -966.85 -14.8416 14.8416 2.54 0.0084965 0.00759024 0.433982 0.376978 76 32170 30 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 36.38 4.33287 3.85465 67070 679911 -1 26884 21 13810 27680 3176058 652222 0 0 3176058 652222 25655 16135 0 0 137932 124280 0 0 192955 149921 0 0 26692 18056 0 0 1400623 174048 0 0 1392201 169782 0 0 25655 0 0 11873 26622 27157 100786 2051 376 15.4681 15.4681 -1620.41 -15.4681 0 0 3.24203e+06 5628.53 1.63 1.85 0.86 -1 -1 1.63 0.609515 0.552613 1267 1957 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_40.v common 54.13 vpr 88.19 MiB 0.19 14784 -1 -1 13 2.52 -1 -1 39876 -1 -1 169 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90308 22 19 3343 3022 1 2282 221 24 24 576 mult_36 auto 41.3 MiB 1.37 16103 78.5 MiB 1.79 0.03 14.5379 -829.329 -14.5379 14.5379 2.59 0.00806021 0.00699449 0.569001 0.496427 84 28959 27 1.56141e+07 6.63277e+06 2.84938e+06 4946.85 35.44 4.96111 4.43036 70522 759407 -1 25145 19 11859 23115 3436709 729344 0 0 3436709 729344 21610 13601 0 0 118541 106459 0 0 158323 126188 0 0 22422 15361 0 0 1564745 227740 0 0 1551068 239995 0 0 21610 0 0 9778 18865 18910 81389 1564 78 14.9564 14.9564 -1239.47 -14.9564 0 0 3.60864e+06 6265.01 1.83 1.82 1.01 -1 -1 1.83 0.510003 0.467294 1284 1997 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_41.v common 49.07 vpr 79.09 MiB 0.26 15144 -1 -1 13 2.76 -1 -1 39680 -1 -1 175 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80984 22 19 3448 3110 1 2364 228 24 24 576 mult_36 auto 41.9 MiB 0.79 17649 79.1 MiB 2.16 0.04 14.3188 -964.321 -14.3188 14.3188 2.57 0.0140425 0.0123871 0.660677 0.579953 78 32357 39 1.56141e+07 7.1096e+06 2.67122e+06 4637.53 31.31 4.44034 3.95962 68222 705597 -1 28453 21 13551 26328 3635002 733011 0 0 3635002 733011 24522 15496 0 0 141779 127416 0 0 197677 156706 0 0 25322 17215 0 0 1581279 210240 0 0 1664423 205938 0 0 24522 0 0 11003 24627 22161 93773 1842 81 14.7304 14.7304 -1614.39 -14.7304 0 0 3.35110e+06 5817.88 1.44 1.90 0.79 -1 -1 1.44 0.51684 0.468587 1333 2054 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_42.v common 50.10 vpr 79.65 MiB 0.25 15284 -1 -1 13 2.78 -1 -1 41332 -1 -1 179 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81564 22 19 3510 3172 1 2403 232 24 24 576 mult_36 auto 42.5 MiB 1.18 18000 79.7 MiB 2.19 0.04 14.4441 -997.144 -14.4441 14.4441 2.27 0.0141479 0.0128942 0.611938 0.539614 78 33010 27 1.56141e+07 7.16349e+06 2.67122e+06 4637.53 31.99 4.23837 3.76554 68222 705597 -1 29079 20 13363 25835 3098611 622458 0 0 3098611 622458 24053 15542 0 0 131352 117386 0 0 185001 145637 0 0 24858 17574 0 0 1358194 166877 0 0 1375153 159442 0 0 24053 0 0 10717 23329 23655 92480 1844 32 14.9453 14.9453 -1699.6 -14.9453 0 0 3.35110e+06 5817.88 1.48 1.91 0.91 -1 -1 1.48 0.62645 0.58055 1352 2097 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_43.v common 43.18 vpr 81.07 MiB 0.20 15500 -1 -1 13 2.92 -1 -1 38132 -1 -1 182 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83016 22 19 3598 3243 1 2469 235 24 24 576 mult_36 auto 43.1 MiB 1.09 18261 81.1 MiB 2.24 0.07 14.6232 -927.547 -14.6232 14.6232 2.81 0.0090958 0.00801516 0.688267 0.59047 76 36211 43 1.56141e+07 7.2039e+06 2.61600e+06 4541.67 24.22 3.60867 3.19506 67070 679911 -1 29422 21 13780 27118 3755300 769975 0 0 3755300 769975 25212 16118 0 0 140806 127180 0 0 191391 153917 0 0 26161 17789 0 0 1641643 227480 0 0 1730087 227491 0 0 25212 0 0 11459 23819 23226 95820 1991 507 15.6648 15.6648 -1425.06 -15.6648 0 0 3.24203e+06 5628.53 1.57 1.69 0.85 -1 -1 1.57 0.495761 0.447566 1391 2138 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_44.v common 56.85 vpr 90.86 MiB 0.21 15716 -1 -1 13 3.06 -1 -1 42064 -1 -1 189 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93044 22 19 3689 3334 1 2527 242 24 24 576 mult_36 auto 43.6 MiB 1.34 17950 81.6 MiB 2.03 0.03 14.7093 -995.949 -14.7093 14.7093 2.50 0.00955864 0.00846981 0.601229 0.53339 80 31854 24 1.56141e+07 7.29821e+06 2.72095e+06 4723.87 38.46 5.62132 5.02996 68798 719145 -1 28673 18 12944 25586 2715756 560406 0 0 2715756 560406 24115 14817 0 0 123992 109544 0 0 174043 135460 0 0 24954 16750 0 0 1160984 143006 0 0 1207668 140829 0 0 24115 0 0 11197 21780 21638 94095 1564 191 15.4611 15.4611 -1510.96 -15.4611 0 0 3.41546e+06 5929.62 1.56 1.39 0.92 -1 -1 1.56 0.503582 0.457897 1433 2210 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_45.v common 60.90 vpr 88.01 MiB 0.30 15908 -1 -1 13 3.22 -1 -1 42072 -1 -1 191 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90124 22 19 3763 3391 1 2591 245 24 24 576 mult_36 auto 43.6 MiB 1.49 18553 81.7 MiB 2.59 0.04 14.3222 -1050.75 -14.3222 14.3222 2.02 0.00927119 0.00792283 0.771398 0.669858 78 34887 31 1.56141e+07 7.72115e+06 2.67122e+06 4637.53 41.04 5.8728 5.16559 68222 705597 -1 30167 20 14304 28037 3284685 677320 0 0 3284685 677320 25946 16458 0 0 148275 133119 0 0 206134 163390 0 0 26718 18401 0 0 1428332 175965 0 0 1449280 169987 0 0 25946 0 0 11670 25311 24767 97343 2122 90 14.9487 14.9487 -1615.32 -14.9487 0 0 3.35110e+06 5817.88 1.83 2.05 0.93 -1 -1 1.83 0.681378 0.620308 1453 2234 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_46.v common 60.88 vpr 92.80 MiB 0.22 16140 -1 -1 13 3.08 -1 -1 42208 -1 -1 195 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 95024 22 19 3845 3473 1 2635 249 24 24 576 mult_36 auto 44.1 MiB 1.43 19437 82.1 MiB 1.95 0.04 14.8984 -1016.65 -14.8984 14.8984 2.45 0.00991382 0.00879902 0.595535 0.518236 84 34637 50 1.56141e+07 7.77504e+06 2.84938e+06 4946.85 41.17 6.73612 5.97447 70522 759407 -1 29931 19 13077 25267 2706634 553613 0 0 2706634 553613 23821 14871 0 0 122332 108789 0 0 163366 130026 0 0 24560 16358 0 0 1168270 143528 0 0 1204285 140041 0 0 23821 0 0 10773 22176 20578 91713 1521 189 15.7789 15.7789 -1519.94 -15.7789 0 0 3.60864e+06 6265.01 1.70 1.89 0.93 -1 -1 1.70 0.665644 0.616478 1482 2297 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_47.v common 38.68 vpr 82.43 MiB 0.27 16464 -1 -1 13 3.44 -1 -1 41100 -1 -1 206 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84404 22 19 3983 3594 1 2724 260 24 24 576 mult_36 auto 45.2 MiB 1.39 19383 82.4 MiB 2.45 0.04 14.4083 -1073.29 -14.4083 14.4083 2.35 0.0109981 0.00981762 0.732556 0.634095 76 37619 40 1.56141e+07 7.92323e+06 2.61600e+06 4541.67 19.40 3.98814 3.5249 67070 679911 -1 31418 19 14350 27897 3024453 647081 0 0 3024453 647081 26087 16696 0 0 141954 127412 0 0 192823 154889 0 0 27079 18681 0 0 1319692 167343 0 0 1316818 162060 0 0 26087 0 0 11766 24510 24504 98247 1847 321 15.4577 15.4577 -1762.38 -15.4577 0 0 3.24203e+06 5628.53 1.61 1.90 0.67 -1 -1 1.61 0.700523 0.640923 1559 2386 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_48.v common 43.88 vpr 82.53 MiB 0.25 16832 -1 -1 13 3.18 -1 -1 42424 -1 -1 202 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84508 22 19 4025 3636 1 2760 256 24 24 576 mult_36 auto 45.4 MiB 1.41 19748 82.5 MiB 1.31 0.04 14.4441 -1129.92 -14.4441 14.4441 2.05 0.00951105 0.00823765 0.384056 0.331357 78 36206 32 1.56141e+07 7.86934e+06 2.67122e+06 4637.53 25.33 4.34019 3.85925 68222 705597 -1 31780 20 14732 29166 3050171 640462 0 0 3050171 640462 27073 17004 0 0 144560 128289 0 0 205853 160431 0 0 27915 19257 0 0 1310627 160508 0 0 1334143 154973 0 0 27073 0 0 12370 25514 25794 102982 2183 744 15.1959 15.1959 -1647.86 -15.1959 0 0 3.35110e+06 5817.88 1.59 1.75 0.92 -1 -1 1.59 0.630499 0.572822 1547 2409 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_49.v common 62.20 vpr 94.28 MiB 0.22 16984 -1 -1 13 3.40 -1 -1 42544 -1 -1 213 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96540 22 19 4164 3758 1 2857 268 24 24 576 mult_36 auto 46.8 MiB 1.49 23570 84.2 MiB 2.09 0.07 15.3682 -1091.87 -15.3682 15.3682 1.96 0.0108526 0.00966517 0.571932 0.500191 86 40045 40 1.56141e+07 8.41354e+06 2.91907e+06 5067.82 42.39 6.52505 5.81982 71098 772847 -1 35724 20 15280 29755 3868435 805425 0 0 3868435 805425 27800 17596 0 0 154447 137980 0 0 216227 171472 0 0 28645 19959 0 0 1726135 231894 0 0 1715181 226524 0 0 27800 0 0 12548 29353 27332 109523 1978 339 15.7049 15.7049 -1687.11 -15.7049 0 0 3.65856e+06 6351.67 1.88 2.45 1.03 -1 -1 1.88 0.737087 0.670736 1622 2498 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_50.v common 49.68 vpr 84.32 MiB 0.27 17124 -1 -1 13 3.59 -1 -1 38732 -1 -1 212 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86340 22 19 4190 3784 1 2864 267 24 24 576 mult_36 auto 46.7 MiB 1.57 20824 84.3 MiB 2.43 0.04 14.6589 -1033.43 -14.6589 14.6589 2.49 0.0110453 0.00984577 0.749527 0.650294 76 41580 39 1.56141e+07 8.40006e+06 2.61600e+06 4541.67 28.65 4.57192 4.04491 67070 679911 -1 33992 21 15684 30416 4399730 932746 0 0 4399730 932746 28054 17931 0 0 160316 144471 0 0 216328 174713 0 0 28880 20107 0 0 1976819 281765 0 0 1989333 293759 0 0 28054 0 0 12400 27584 27617 104428 2415 1002 15.536 15.536 -1815.29 -15.536 0 0 3.24203e+06 5628.53 1.55 2.18 0.89 -1 -1 1.55 0.633667 0.574695 1618 2505 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_51.v common 69.04 vpr 97.97 MiB 0.23 17356 -1 -1 13 3.64 -1 -1 42568 -1 -1 216 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100324 22 19 4305 3882 1 2950 271 24 24 576 mult_36 auto 47.7 MiB 1.57 22869 85.5 MiB 1.78 0.04 14.9061 -1242.71 -14.9061 14.9061 2.00 0.0121791 0.0104623 0.511852 0.43566 86 40531 32 1.56141e+07 8.45395e+06 2.91907e+06 5067.82 48.84 7.19461 6.3899 71098 772847 -1 35651 21 15658 31646 3584692 726369 0 0 3584692 726369 28734 18151 0 0 158422 140913 0 0 225128 175563 0 0 29965 20156 0 0 1550980 192621 0 0 1591463 178965 0 0 28734 0 0 13105 33825 31633 112909 2946 531 15.5214 15.5214 -1802.51 -15.5214 0 0 3.65856e+06 6351.67 1.63 1.97 0.88 -1 -1 1.63 0.68986 0.628972 1666 2571 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_52.v common 52.71 vpr 85.80 MiB 0.23 17712 -1 -1 13 3.41 -1 -1 39496 -1 -1 227 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87860 22 19 4363 3940 1 3005 282 24 24 576 mult_36 auto 48.2 MiB 1.57 22655 85.8 MiB 2.48 0.04 14.5582 -1126.55 -14.5582 14.5582 2.42 0.0119116 0.0105537 0.739895 0.644831 84 40631 33 1.56141e+07 8.60214e+06 2.84938e+06 4946.85 31.75 5.27905 4.66055 70522 759407 -1 34378 19 16460 32184 3917767 793689 0 0 3917767 793689 29904 18370 0 0 159185 143402 0 0 212628 169300 0 0 30671 20643 0 0 1680611 222904 0 0 1804768 219070 0 0 29904 0 0 13471 31423 27704 114486 2377 1574 14.9879 14.9879 -1965.6 -14.9879 0 0 3.60864e+06 6265.01 1.66 1.81 0.94 -1 -1 1.66 0.617871 0.560028 1697 2610 -1 -1 -1 -1 +k6_frac_ripple_N8_22nm.xml fir_pipe_14.v common 13.20 vpr 69.36 MiB 0.08 10368 -1 -1 1 0.28 -1 -1 35140 -1 -1 81 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71024 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 31.3 MiB 0.56 5532 69.4 MiB 0.70 0.02 3.91806 -1040.42 -3.91806 3.91806 0.97 0.00344565 0.00298835 0.188639 0.164813 54 11342 33 6.52434e+06 2.71588e+06 829453. 3240.05 7.33 1.53053 1.37179 26108 202796 -1 8650 20 4018 4750 649693 168989 0 0 649693 168989 4454 4033 0 0 36219 32933 0 0 42534 38339 0 0 4467 4056 0 0 277772 43888 0 0 284247 45740 0 0 4454 0 0 456 3917 3417 27350 360 2 4.29396 4.29396 -1256.64 -4.29396 0 0 1.02522e+06 4004.78 0.32 0.30 0.25 -1 -1 0.32 0.150278 0.137789 605 649 247 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_15.v common 13.25 vpr 70.48 MiB 0.08 10776 -1 -1 1 0.32 -1 -1 35880 -1 -1 88 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72172 22 19 2144 1789 1 1119 134 16 16 256 mult_36 auto 32.4 MiB 0.58 6531 70.5 MiB 0.56 0.01 3.91806 -1168.25 -3.91806 3.91806 0.90 0.00340214 0.00289322 0.161494 0.141694 56 11905 25 6.52434e+06 3.20969e+06 849745. 3319.32 7.28 1.45042 1.29663 26364 208198 -1 10017 16 4104 4669 690773 169975 0 0 690773 169975 4335 4126 0 0 34740 31006 0 0 42417 38039 0 0 4345 4159 0 0 303224 45243 0 0 301712 47402 0 0 4335 0 0 250 1783 2119 5006 438 10 4.41926 4.41926 -1412.23 -4.41926 0 0 1.04740e+06 4091.43 0.40 0.44 0.24 -1 -1 0.40 0.208076 0.190883 654 704 266 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_16.v common 18.75 vpr 70.93 MiB 0.08 10804 -1 -1 1 0.31 -1 -1 35988 -1 -1 91 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72632 22 19 2218 1846 1 1161 137 16 16 256 mult_36 auto 32.9 MiB 0.63 6725 70.9 MiB 0.68 0.02 3.91806 -1218.73 -3.91806 3.91806 0.97 0.0041558 0.00357316 0.178518 0.155672 56 13191 40 6.52434e+06 3.25161e+06 849745. 3319.32 11.98 1.97083 1.7474 26364 208198 -1 10869 20 4819 5527 890551 213383 0 0 890551 213383 5030 4853 0 0 41273 37144 0 0 50707 45232 0 0 5033 4880 0 0 403268 59703 0 0 385240 61571 0 0 5030 0 0 228 2525 2548 5890 559 21 4.41926 4.41926 -1406.51 -4.41926 0 0 1.04740e+06 4091.43 0.38 0.62 0.26 -1 -1 0.38 0.282716 0.26232 683 723 285 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_17.v common 15.43 vpr 72.28 MiB 0.06 11580 -1 -1 1 0.29 -1 -1 36716 -1 -1 103 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74016 22 19 2536 2130 1 1274 149 16 16 256 mult_36 auto 34.2 MiB 0.71 7384 72.3 MiB 1.03 0.02 4.04336 -1366.18 -4.04336 4.04336 0.95 0.00507009 0.00446052 0.300969 0.266671 54 14694 39 6.52434e+06 3.4193e+06 829453. 3240.05 8.89 2.206 1.96857 26108 202796 -1 11063 19 4686 5415 805239 204345 0 0 805239 204345 4878 4704 0 0 41629 37778 0 0 48615 44000 0 0 4881 4727 0 0 352891 55114 0 0 352345 58022 0 0 4878 0 0 210 2273 2877 5641 596 120 4.41926 4.41926 -1537.81 -4.41926 0 0 1.02522e+06 4004.78 0.44 0.48 0.25 -1 -1 0.44 0.185481 0.16239 770 851 304 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_18.v common 13.98 vpr 72.61 MiB 0.16 11864 -1 -1 1 0.41 -1 -1 36648 -1 -1 107 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74356 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 34.7 MiB 0.69 7505 72.6 MiB 0.93 0.02 3.79276 -1370.42 -3.79276 3.79276 0.97 0.00494116 0.00436223 0.246557 0.215917 58 14015 35 6.52434e+06 3.47519e+06 871168. 3403.00 6.92 1.45085 1.28816 26872 219187 -1 11258 18 4808 5568 739157 183362 0 0 739157 183362 5069 4872 0 0 40530 36270 0 0 49740 44354 0 0 5077 4902 0 0 316326 46799 0 0 322415 46165 0 0 5069 0 0 276 2374 2716 6047 582 35 4.29396 4.29396 -1585.89 -4.29396 0 0 1.09288e+06 4269.05 0.43 0.51 0.26 -1 -1 0.43 0.262684 0.239772 798 870 323 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_19.v common 18.79 vpr 73.46 MiB 0.11 12140 -1 -1 1 0.39 -1 -1 37020 -1 -1 113 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75228 22 19 2778 2321 1 1410 160 16 16 256 mult_36 auto 35.7 MiB 0.64 8691 73.5 MiB 1.39 0.02 3.91806 -1509.95 -3.91806 3.91806 0.99 0.00482962 0.00422195 0.355925 0.310874 60 15087 28 6.52434e+06 3.95503e+06 890343. 3477.90 10.38 2.35669 2.10177 27128 224764 -1 12451 18 5081 5941 840313 204622 0 0 840313 204622 5391 5117 0 0 43815 39351 0 0 52006 46842 0 0 5396 5141 0 0 371684 53493 0 0 362021 54678 0 0 5391 0 0 328 3218 2936 6406 679 57 4.41926 4.41926 -1819.23 -4.41926 0 0 1.11577e+06 4358.47 0.48 0.72 0.32 -1 -1 0.48 0.293968 0.269599 846 925 342 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_20.v common 17.38 vpr 73.80 MiB 0.18 12416 -1 -1 1 0.40 -1 -1 36804 -1 -1 118 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75576 22 19 2852 2378 1 1454 165 16 16 256 mult_36 auto 35.9 MiB 0.65 9483 73.8 MiB 1.32 0.02 4.04336 -1544.54 -4.04336 4.04336 0.98 0.00485862 0.00417425 0.340172 0.298799 66 15447 26 6.52434e+06 4.0249e+06 974584. 3806.97 10.75 2.4051 2.1416 28148 247068 -1 12702 16 4968 5709 783144 192127 0 0 783144 192127 5238 5021 0 0 42094 37740 0 0 51121 45860 0 0 5242 5046 0 0 343111 49122 0 0 336338 49338 0 0 5238 0 0 286 2436 2530 6230 557 26 4.41926 4.41926 -1751.26 -4.41926 0 0 1.22072e+06 4768.46 0.30 0.29 0.18 -1 -1 0.30 0.128336 0.11629 875 944 361 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_21.v common 17.58 vpr 74.76 MiB 0.12 12836 -1 -1 1 0.48 -1 -1 37380 -1 -1 122 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76556 22 19 3057 2549 1 1559 169 16 16 256 mult_36 auto 37.0 MiB 0.75 10025 74.8 MiB 1.00 0.02 4.16866 -1686.98 -4.16866 4.16866 0.89 0.00592718 0.00517947 0.26189 0.228856 62 17895 38 6.52434e+06 4.0808e+06 916467. 3579.95 9.83 2.37102 2.10002 27384 229598 -1 13915 17 5736 6724 1049725 259179 0 0 1049725 259179 5996 5782 0 0 53921 48820 0 0 63148 57310 0 0 6000 5806 0 0 463070 69332 0 0 457590 72129 0 0 5996 0 0 277 3412 3655 6795 840 212 4.41926 4.41926 -2002.24 -4.41926 0 0 1.13630e+06 4438.68 0.39 0.55 0.28 -1 -1 0.39 0.242858 0.222601 932 1017 380 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_22.v common 15.38 vpr 75.45 MiB 0.14 12832 -1 -1 1 0.49 -1 -1 37736 -1 -1 125 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77256 22 19 3131 2606 1 1599 172 16 16 256 mult_36 auto 37.6 MiB 0.83 9771 75.4 MiB 0.99 0.02 4.04336 -1711.14 -4.04336 4.04336 0.91 0.00299074 0.00255989 0.26944 0.236982 64 16768 28 6.52434e+06 4.12272e+06 943753. 3686.54 7.35 2.14804 1.92261 27892 240595 -1 13524 16 5637 6577 904226 221207 0 0 904226 221207 5884 5688 0 0 48062 42825 0 0 59166 52880 0 0 5889 5707 0 0 394843 56868 0 0 390382 57239 0 0 5884 0 0 264 3491 3569 6856 770 107 4.41926 4.41926 -2045.7 -4.41926 0 0 1.19033e+06 4649.74 0.47 0.71 0.45 -1 -1 0.47 0.347311 0.318544 961 1036 399 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_23.v common 20.28 vpr 75.99 MiB 0.13 13184 -1 -1 1 0.50 -1 -1 37396 -1 -1 133 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77812 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 38.3 MiB 0.67 9614 76.0 MiB 1.66 0.03 3.91806 -1787.72 -3.91806 3.91806 1.29 0.00662584 0.00589117 0.419992 0.364572 58 17491 26 8.04299e+06 4.63052e+06 1.14310e+06 3528.09 10.84 2.25774 2.00864 34680 290288 -1 14748 19 6534 7558 1147484 273613 0 0 1147484 273613 6790 6574 0 0 57230 51557 0 0 69112 62294 0 0 6795 6606 0 0 501947 72093 0 0 505610 74489 0 0 6790 0 0 276 3674 4069 7867 835 30 4.29396 4.29396 -2144.48 -4.29396 0 0 1.43297e+06 4422.75 0.64 0.75 0.34 -1 -1 0.64 0.346341 0.31785 1012 1091 418 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_24.v common 22.27 vpr 76.44 MiB 0.13 13240 -1 -1 1 0.52 -1 -1 37908 -1 -1 137 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78276 22 19 3375 2799 1 1743 185 18 18 324 mult_36 auto 38.5 MiB 0.96 10338 76.4 MiB 1.71 0.03 4.16866 -1810.95 -4.16866 4.16866 1.34 0.00565305 0.0048485 0.436285 0.383515 58 19035 49 8.04299e+06 4.68641e+06 1.14310e+06 3528.09 11.93 2.59779 2.30859 34680 290288 -1 15628 19 6420 7514 1247362 294088 0 0 1247362 294088 6728 6474 0 0 56581 50751 0 0 69222 61961 0 0 6734 6512 0 0 553104 82907 0 0 554993 85483 0 0 6728 0 0 326 3689 4120 7972 872 128 4.64786 4.64786 -2086.5 -4.64786 0 0 1.43297e+06 4422.75 0.58 0.94 0.33 -1 -1 0.58 0.478672 0.443476 1041 1110 437 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_25.v common 20.22 vpr 77.34 MiB 0.14 13820 -1 -1 1 0.61 -1 -1 37640 -1 -1 146 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79196 22 19 3615 3005 1 1847 194 18 18 324 mult_36 auto 39.6 MiB 0.99 11465 77.3 MiB 1.98 0.03 4.04336 -2012.57 -4.04336 4.04336 1.25 0.0072945 0.00649267 0.51425 0.456257 58 21207 44 8.04299e+06 4.81218e+06 1.14310e+06 3528.09 10.08 2.86991 2.56772 34680 290288 -1 16861 18 6917 8332 1253666 293735 0 0 1253666 293735 7162 6954 0 0 59060 52667 0 0 72446 64645 0 0 7164 6973 0 0 553627 79779 0 0 554207 82717 0 0 7162 0 0 264 5759 5338 8269 1220 266 4.41926 4.41926 -2378.91 -4.41926 0 0 1.43297e+06 4422.75 0.51 0.93 0.34 -1 -1 0.51 0.369249 0.335976 1107 1201 456 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_26.v common 25.41 vpr 77.68 MiB 0.24 14036 -1 -1 1 0.51 -1 -1 37756 -1 -1 148 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79544 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 39.9 MiB 1.08 11745 77.7 MiB 1.63 0.03 3.79276 -1993.71 -3.79276 3.79276 1.28 0.00775102 0.00693768 0.427658 0.378367 64 20921 30 8.04299e+06 4.84013e+06 1.23838e+06 3822.15 15.42 3.45459 3.08072 35972 318676 -1 16768 17 7074 8107 1252216 283611 0 0 1252216 283611 7379 7115 0 0 59487 53017 0 0 73056 65248 0 0 7383 7156 0 0 552687 74947 0 0 552224 76128 0 0 7379 0 0 324 3730 3758 8779 796 56 4.79516 4.79516 -2402.43 -4.79516 0 0 1.56068e+06 4816.91 0.59 0.72 0.36 -1 -1 0.59 0.309688 0.279956 1135 1220 475 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_27.v common 26.57 vpr 78.98 MiB 0.15 14288 -1 -1 1 0.61 -1 -1 38468 -1 -1 156 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80872 22 19 3871 3210 1 1998 205 18 18 324 mult_36 auto 41.2 MiB 1.15 12494 79.0 MiB 1.78 0.03 4.16866 -2116.43 -4.16866 4.16866 1.21 0.00756034 0.00668743 0.434038 0.381917 66 21954 33 8.04299e+06 5.34793e+06 1.27759e+06 3943.17 16.11 3.8525 3.45358 36296 327148 -1 17589 18 6955 7945 1151159 265542 0 0 1151159 265542 7244 7001 0 0 55946 49562 0 0 68894 61409 0 0 7253 7029 0 0 516273 69157 0 0 495549 71384 0 0 7244 0 0 304 3305 3717 8473 770 46 4.52256 4.52256 -2411.76 -4.52256 0 0 1.59950e+06 4936.74 0.62 0.68 0.37 -1 -1 0.62 0.375553 0.341458 1191 1275 494 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_28.v common 24.09 vpr 79.43 MiB 0.15 14564 -1 -1 1 0.66 -1 -1 37940 -1 -1 160 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81340 22 19 3945 3267 1 2043 209 18 18 324 mult_36 auto 41.7 MiB 1.31 13469 79.4 MiB 1.81 0.03 4.04336 -2173.61 -4.04336 4.04336 1.20 0.0104411 0.00956917 0.419964 0.371788 64 24442 44 8.04299e+06 5.40382e+06 1.23838e+06 3822.15 12.55 2.80445 2.48986 35972 318676 -1 19057 20 7480 8574 1272210 285216 0 0 1272210 285216 7775 7515 0 0 59346 52543 0 0 74503 65892 0 0 7780 7572 0 0 560447 77112 0 0 562359 74582 0 0 7775 0 0 312 3438 4111 9295 838 180 4.41926 4.41926 -2635.89 -4.41926 0 0 1.56068e+06 4816.91 0.64 1.10 0.40 -1 -1 0.64 0.45888 0.418549 1219 1294 513 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_29.v common 27.65 vpr 80.18 MiB 0.21 14956 -1 -1 1 0.66 -1 -1 38908 -1 -1 170 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82104 22 19 4159 3447 1 2157 220 22 22 484 mult_36 auto 42.5 MiB 1.27 13881 80.2 MiB 2.10 0.02 3.91806 -2256.75 -3.91806 3.91806 2.12 0.00416375 0.00357552 0.529232 0.463133 56 25870 28 1.30842e+07 5.93957e+06 1.71605e+06 3545.56 13.64 2.6687 2.36022 51606 428054 -1 21578 17 8723 10189 1827548 416661 0 0 1827548 416661 9097 8805 0 0 81086 72985 0 0 97944 88169 0 0 9099 8863 0 0 809356 118178 0 0 820966 119661 0 0 9097 0 0 397 5343 5818 11154 1135 79 4.41926 4.41926 -2881.94 -4.41926 0 0 2.11301e+06 4365.72 1.02 1.05 0.43 -1 -1 1.02 0.409624 0.371097 1283 1367 532 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_30.v common 31.53 vpr 80.25 MiB 0.16 15100 -1 -1 1 0.69 -1 -1 40216 -1 -1 173 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82172 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 42.5 MiB 1.19 14538 80.2 MiB 2.05 0.03 3.79276 -2331.2 -3.79276 3.79276 2.09 0.00818935 0.00724423 0.465565 0.407833 58 27133 33 1.30842e+07 5.98149e+06 1.75961e+06 3635.55 17.93 3.27427 2.90104 52570 450426 -1 21764 18 8536 10026 1662281 366926 0 0 1662281 366926 8947 8619 0 0 72074 64370 0 0 88358 78903 0 0 8951 8689 0 0 747280 101739 0 0 736671 104606 0 0 8947 0 0 427 5026 5796 11156 1125 250 4.41926 4.41926 -2770.54 -4.41926 0 0 2.20457e+06 4554.90 1.00 0.97 0.51 -1 -1 1.00 0.424501 0.387032 1311 1386 551 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_31.v common 29.82 vpr 81.96 MiB 0.16 15356 -1 -1 1 0.76 -1 -1 40552 -1 -1 179 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83924 22 19 4410 3647 1 2304 229 22 22 484 mult_36 auto 43.4 MiB 0.97 14019 82.0 MiB 1.81 0.04 3.79276 -2360.11 -3.79276 3.79276 2.08 0.00876401 0.00771538 0.459829 0.40135 58 27437 41 1.30842e+07 6.06533e+06 1.75961e+06 3635.55 16.03 3.26306 2.89194 52570 450426 -1 21673 20 9118 10564 1758128 401153 0 0 1758128 401153 9431 9168 0 0 81625 73861 0 0 98312 88328 0 0 9432 9203 0 0 774195 112209 0 0 785133 108384 0 0 9431 0 0 332 5036 5516 11066 1178 68 4.39726 4.39726 -2947.03 -4.39726 0 0 2.20457e+06 4554.90 1.01 1.11 0.55 -1 -1 1.01 0.472817 0.428553 1363 1441 570 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_32.v common 34.74 vpr 82.79 MiB 0.16 15600 -1 -1 1 0.56 -1 -1 39292 -1 -1 183 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84780 22 19 4484 3704 1 2346 233 22 22 484 mult_36 auto 44.2 MiB 1.30 15386 82.8 MiB 2.91 0.03 4.04336 -2411.15 -4.04336 4.04336 2.20 0.00726119 0.00636408 0.878125 0.784966 60 28281 31 1.30842e+07 6.12123e+06 1.79840e+06 3715.71 20.11 4.07854 3.62332 53054 462096 -1 22591 18 8761 10239 1814040 392114 0 0 1814040 392114 9124 8817 0 0 77936 69890 0 0 92855 83673 0 0 9125 8861 0 0 820011 108805 0 0 804989 112068 0 0 9124 0 0 382 4899 5847 11094 1146 27 4.64786 4.64786 -2928.97 -4.64786 0 0 2.25108e+06 4650.99 0.84 1.00 0.62 -1 -1 0.84 0.495416 0.447632 1393 1460 589 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_33.v common 30.59 vpr 84.07 MiB 0.19 16448 -1 -1 1 0.86 -1 -1 40968 -1 -1 196 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86092 22 19 4843 4029 1 2462 247 22 22 484 mult_36 auto 45.7 MiB 1.40 16459 84.1 MiB 2.44 0.05 3.89606 -2651.16 -3.89606 3.89606 2.38 0.0147476 0.0130076 0.687147 0.611863 62 30168 49 1.30842e+07 6.6989e+06 1.85176e+06 3825.95 15.75 4.20289 3.73658 53538 472186 -1 22898 17 8776 10377 1483263 329023 0 0 1483263 329023 9174 8830 0 0 75335 67392 0 0 89475 80522 0 0 9178 8891 0 0 651579 82449 0 0 648522 80939 0 0 9174 0 0 417 5645 5452 11258 1248 15 4.39726 4.39726 -3165.23 -4.39726 0 0 2.29262e+06 4736.82 0.90 1.12 0.42 -1 -1 0.90 0.513619 0.468343 1490 1606 608 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_34.v common 38.36 vpr 83.38 MiB 0.21 16720 -1 -1 1 0.75 -1 -1 41124 -1 -1 199 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85380 22 19 4917 4086 1 2503 250 22 22 484 mult_36 auto 45.8 MiB 1.66 17150 83.4 MiB 1.89 0.02 3.91806 -2639.01 -3.91806 3.91806 2.19 0.00494618 0.00423059 0.452578 0.394611 64 29030 40 1.30842e+07 6.74082e+06 1.90554e+06 3937.06 24.04 5.47015 4.85381 54502 494576 -1 24080 17 9325 11144 1850076 402603 0 0 1850076 402603 9724 9377 0 0 79950 71020 0 0 98560 87457 0 0 9729 9403 0 0 824022 111129 0 0 828091 114217 0 0 9724 0 0 421 6977 6924 11857 1475 1073 4.41926 4.41926 -3264.59 -4.41926 0 0 2.40101e+06 4960.76 1.08 1.11 0.62 -1 -1 1.08 0.484776 0.442422 1519 1625 627 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_35.v common 42.09 vpr 85.48 MiB 0.18 16956 -1 -1 1 0.92 -1 -1 41268 -1 -1 207 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87528 22 19 5093 4228 1 2606 258 22 22 484 mult_36 auto 47.0 MiB 1.40 18465 85.5 MiB 2.72 0.04 3.79276 -2819.04 -3.79276 3.79276 2.21 0.0107547 0.00918456 0.683005 0.594882 64 32846 49 1.30842e+07 6.85261e+06 1.90554e+06 3937.06 26.63 5.74518 5.08791 54502 494576 -1 26210 19 10148 12063 2053669 446910 0 0 2053669 446910 10593 10255 0 0 86601 76963 0 0 106741 94705 0 0 10598 10314 0 0 913952 125449 0 0 925184 129224 0 0 10593 0 0 464 6611 7382 12734 1537 163 4.41926 4.41926 -3447.39 -4.41926 0 0 2.40101e+06 4960.76 1.08 1.23 0.52 -1 -1 1.08 0.545982 0.499634 1572 1680 646 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_36.v common 33.12 vpr 84.89 MiB 0.21 17100 -1 -1 1 0.78 -1 -1 41544 -1 -1 209 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86932 22 19 5167 4285 1 2653 260 22 22 484 mult_36 auto 47.2 MiB 1.13 17974 84.9 MiB 2.79 0.04 3.79276 -2763.15 -3.79276 3.79276 2.33 0.0102613 0.00865648 0.64261 0.554253 66 33446 38 1.30842e+07 6.88056e+06 1.96511e+06 4060.15 17.33 3.94213 3.45884 54986 507526 -1 25571 19 9957 11511 1992287 435170 0 0 1992287 435170 10461 10036 0 0 87438 78852 0 0 105574 95001 0 0 10473 10096 0 0 898991 120186 0 0 879350 120999 0 0 10461 0 0 524 5184 6006 12936 1154 67 4.29396 4.29396 -3320.74 -4.29396 0 0 2.45963e+06 5081.88 1.40 1.38 0.56 -1 -1 1.40 0.620551 0.558858 1600 1699 665 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_37.v common 42.27 vpr 85.75 MiB 0.21 17584 -1 -1 1 0.96 -1 -1 40372 -1 -1 218 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87812 22 19 5380 4464 1 2755 270 24 24 576 mult_36 auto 48.5 MiB 1.47 18637 85.8 MiB 2.68 0.02 4.16866 -3145.82 -4.16866 4.16866 2.71 0.00539159 0.00463913 0.635006 0.554028 58 35336 46 1.57908e+07 7.40233e+06 2.08734e+06 3623.85 24.47 4.84273 4.26569 62154 534210 -1 28370 23 11306 13304 2308958 513018 0 0 2308958 513018 11714 11355 0 0 101509 91611 0 0 123532 110764 0 0 11715 11423 0 0 1034331 144891 0 0 1026157 142974 0 0 11714 0 0 431 7888 7985 13954 1633 124 4.54456 4.54456 -3952.02 -4.54456 0 0 2.61600e+06 4541.67 1.32 1.62 0.73 -1 -1 1.32 0.694512 0.630086 1662 1772 684 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_38.v common 36.44 vpr 85.84 MiB 0.22 17960 -1 -1 1 1.04 -1 -1 41852 -1 -1 220 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87900 22 19 5454 4521 1 2802 272 24 24 576 mult_36 auto 48.3 MiB 1.52 19630 85.8 MiB 2.96 0.04 4.04336 -3159.99 -4.04336 4.04336 2.58 0.00939307 0.00821351 0.687441 0.602314 62 35837 37 1.57908e+07 7.43028e+06 2.19658e+06 3813.51 18.98 4.22592 3.7345 63306 560109 -1 27373 20 10539 12452 1958235 439033 0 0 1958235 439033 10964 10604 0 0 93232 83861 0 0 109740 99131 0 0 10968 10652 0 0 875276 115901 0 0 858055 118884 0 0 10964 0 0 442 5963 7386 13286 1547 476 4.41926 4.41926 -3744.33 -4.41926 0 0 2.72095e+06 4723.87 1.29 1.43 0.66 -1 -1 1.29 0.730993 0.662612 1690 1791 703 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_39.v common 110.86 vpr 86.80 MiB 0.30 18020 -1 -1 1 1.04 -1 -1 41112 -1 -1 228 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88880 22 19 5629 4662 1 2909 280 24 24 576 mult_36 auto 49.7 MiB 1.43 18773 86.8 MiB 4.04 0.05 4.04336 -3208.57 -4.04336 4.04336 2.86 0.0114891 0.0103151 0.936438 0.83243 58 35135 44 1.57908e+07 7.54207e+06 2.08734e+06 3623.85 92.46 8.48036 7.48745 62154 534210 -1 27530 17 10702 12609 2192053 495504 0 0 2192053 495504 11128 10785 0 0 92395 82793 0 0 112518 100667 0 0 11131 10829 0 0 988465 143307 0 0 976416 147123 0 0 11128 0 0 445 6543 7375 13201 1554 116 4.54456 4.54456 -3739.15 -4.54456 0 0 2.61600e+06 4541.67 0.91 1.20 0.67 -1 -1 0.91 0.518851 0.472543 1742 1846 722 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_40.v common 37.69 vpr 88.31 MiB 0.24 18212 -1 -1 1 1.10 -1 -1 42088 -1 -1 232 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90432 22 19 5703 4719 1 2951 284 24 24 576 mult_36 auto 50.3 MiB 1.48 19791 88.3 MiB 2.77 0.05 4.16866 -3225.65 -4.16866 4.16866 2.40 0.0113244 0.00997784 0.644102 0.565981 64 36918 44 1.57908e+07 7.59797e+06 2.26035e+06 3924.22 20.51 4.70191 4.17822 64454 586630 -1 28354 19 10740 12619 2023263 456596 0 0 2023263 456596 11162 10836 0 0 95430 85387 0 0 116102 103764 0 0 11165 10887 0 0 894018 123082 0 0 895386 122640 0 0 11162 0 0 443 6630 7196 13416 1509 186 4.41926 4.41926 -3967.59 -4.41926 0 0 2.84938e+06 4946.85 1.34 1.28 0.67 -1 -1 1.34 0.607343 0.548572 1771 1865 741 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_41.v common 36.75 vpr 88.59 MiB 0.38 18716 -1 -1 1 1.15 -1 -1 41136 -1 -1 240 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90720 22 19 5950 4932 1 3065 293 24 24 576 mult_36 auto 51.5 MiB 1.39 20763 88.6 MiB 3.44 0.09 4.04336 -3408.74 -4.04336 4.04336 3.02 0.0081646 0.0070455 0.822947 0.712739 64 35795 46 1.57908e+07 8.10576e+06 2.26035e+06 3924.22 18.17 4.76601 4.20291 64454 586630 -1 29070 17 10701 12361 2055646 466496 0 0 2055646 466496 11090 10777 0 0 89895 80120 0 0 110311 98446 0 0 11095 10828 0 0 922278 130456 0 0 910977 135869 0 0 11090 0 0 408 6162 7428 12982 1333 392 4.54456 4.54456 -3887.52 -4.54456 0 0 2.84938e+06 4946.85 1.26 1.18 0.74 -1 -1 1.26 0.507479 0.46387 1841 1956 760 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_42.v common 47.43 vpr 91.96 MiB 0.23 18836 -1 -1 1 1.18 -1 -1 42816 -1 -1 242 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94172 22 19 6024 4989 1 3106 295 24 24 576 mult_36 auto 51.6 MiB 1.65 22076 88.6 MiB 3.78 0.04 4.16866 -3520.33 -4.16866 4.16866 2.54 0.0106296 0.009485 0.934466 0.793453 70 35862 26 1.57908e+07 8.13371e+06 2.45377e+06 4260.01 29.13 5.71709 5.01681 66754 640332 -1 29886 17 10550 12706 1909066 414328 0 0 1909066 414328 11032 10624 0 0 87513 76803 0 0 107418 94802 0 0 11035 10686 0 0 847757 111842 0 0 844311 109571 0 0 11032 0 0 503 7751 7861 13929 1710 258 4.54456 4.54456 -3978.56 -4.54456 0 0 3.09179e+06 5367.68 1.55 1.29 0.67 -1 -1 1.55 0.559567 0.507404 1869 1975 779 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_43.v common 37.12 vpr 89.36 MiB 0.19 19100 -1 -1 1 1.22 -1 -1 42828 -1 -1 250 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91508 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 52.5 MiB 1.68 22368 89.4 MiB 3.59 0.04 4.16866 -3591.6 -4.16866 4.16866 2.54 0.00865153 0.00747758 0.782302 0.686125 66 39251 46 1.57908e+07 8.2455e+06 2.33135e+06 4047.49 19.36 5.13338 4.48828 65030 601923 -1 30844 17 11509 13494 2204654 487349 0 0 2204654 487349 12043 11601 0 0 99479 88966 0 0 121612 108570 0 0 12046 11663 0 0 978785 134510 0 0 980689 132039 0 0 12043 0 0 552 7276 8401 14897 1509 205 4.54456 4.54456 -4264.7 -4.54456 0 0 2.91907e+06 5067.82 1.39 1.19 0.69 -1 -1 1.39 0.495184 0.451831 1921 2030 798 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_44.v common 52.59 vpr 92.62 MiB 0.24 19492 -1 -1 1 1.26 -1 -1 43080 -1 -1 253 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94848 22 19 6272 5186 1 3253 306 24 24 576 mult_36 auto 53.3 MiB 1.60 24531 90.5 MiB 3.89 0.06 4.16866 -3662 -4.16866 4.16866 2.47 0.0136166 0.0119878 0.885507 0.779558 68 39697 34 1.57908e+07 8.28742e+06 2.39371e+06 4155.74 33.45 7.0197 6.23133 65606 615345 -1 32596 16 11495 13516 2175186 470257 0 0 2175186 470257 11979 11573 0 0 93815 83490 0 0 113776 101416 0 0 11985 11647 0 0 959674 130579 0 0 983957 131552 0 0 11979 0 0 501 7648 7963 14672 1588 3246 4.66986 4.66986 -4280.07 -4.66986 0 0 2.98162e+06 5176.42 1.34 1.82 0.57 -1 -1 1.34 0.839165 0.757363 1949 2049 817 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_45.v common 58.87 vpr 95.87 MiB 0.26 19784 -1 -1 1 1.35 -1 -1 43448 -1 -1 262 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98172 22 19 6485 5365 1 3362 316 24 24 576 mult_36 auto 54.1 MiB 1.81 24875 91.2 MiB 4.06 0.06 4.16866 -3860.22 -4.16866 4.16866 2.69 0.0125724 0.010822 1.01774 0.883439 72 42703 41 1.57908e+07 8.80919e+06 2.50747e+06 4353.24 38.42 8.02887 7.16175 67330 654343 -1 33856 20 12125 14244 2370878 505780 0 0 2370878 505780 12687 12227 0 0 98991 88022 0 0 121915 108275 0 0 12690 12336 0 0 1063725 143808 0 0 1060870 141112 0 0 12687 0 0 581 7429 8215 16000 1595 1007 4.54456 4.54456 -4492.65 -4.54456 0 0 3.14081e+06 5452.80 1.56 1.55 0.84 -1 -1 1.56 0.769439 0.697189 2011 2122 836 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_46.v common 73.76 vpr 91.40 MiB 0.24 19976 -1 -1 1 1.22 -1 -1 43452 -1 -1 266 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93592 22 19 6559 5422 1 3404 320 24 24 576 mult_36 auto 54.5 MiB 1.77 23197 91.4 MiB 3.74 0.06 4.16866 -3803.43 -4.16866 4.16866 2.66 0.0140699 0.0126864 0.901979 0.799239 66 38742 35 1.57908e+07 8.86508e+06 2.33135e+06 4047.49 55.31 7.67701 6.76203 65030 601923 -1 31592 17 11527 13424 2138348 486221 0 0 2138348 486221 12042 11586 0 0 100422 89505 0 0 121463 109052 0 0 12043 11647 0 0 952489 133236 0 0 939889 131195 0 0 12042 0 0 533 6361 6901 14621 1452 598 4.54456 4.54456 -4396.18 -4.54456 0 0 2.91907e+06 5067.82 1.04 0.84 0.75 -1 -1 1.04 0.364712 0.330052 2040 2141 855 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_47.v common 36.56 vpr 92.20 MiB 0.35 20176 -1 -1 1 1.49 -1 -1 43692 -1 -1 273 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94416 22 19 6735 5564 1 3511 327 24 24 576 mult_36 auto 55.1 MiB 1.90 23716 92.2 MiB 4.21 0.15 4.16866 -3895.9 -4.16866 4.16866 1.95 0.0329806 0.0308781 0.919359 0.814187 70 37921 23 1.57908e+07 8.9629e+06 2.45377e+06 4260.01 16.46 4.96279 4.42489 66754 640332 -1 31853 18 11704 13832 2021801 455296 0 0 2021801 455296 12202 11754 0 0 95046 83567 0 0 118173 103720 0 0 12212 11811 0 0 892872 122643 0 0 891296 121801 0 0 12202 0 0 517 7329 8392 14604 1717 1047 4.52256 4.52256 -4377.81 -4.52256 0 0 3.09179e+06 5367.68 1.43 1.49 0.77 -1 -1 1.43 0.740075 0.674387 2092 2196 874 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_48.v common 55.62 vpr 97.21 MiB 0.50 20300 -1 -1 1 1.53 -1 -1 43596 -1 -1 276 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99540 22 19 6809 5621 1 3555 330 24 24 576 mult_36 auto 55.7 MiB 1.89 26298 92.8 MiB 4.48 0.08 4.04336 -3971.87 -4.04336 4.04336 1.66 0.0149015 0.0129614 0.907334 0.790819 74 41851 35 1.57908e+07 9.00482e+06 2.56259e+06 4448.94 35.03 7.6008 6.73348 67906 667765 -1 35491 18 12373 14314 2480035 530605 0 0 2480035 530605 12892 12460 0 0 97782 86976 0 0 122676 107850 0 0 12903 12552 0 0 1125700 154336 0 0 1108082 156431 0 0 12892 0 0 540 6365 6775 15947 1472 766 4.54456 4.54456 -4756.94 -4.54456 0 0 3.19068e+06 5539.38 1.68 1.87 0.85 -1 -1 1.68 0.903862 0.830609 2121 2215 893 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_49.v common 55.09 vpr 97.79 MiB 0.27 21036 -1 -1 1 1.43 -1 -1 44036 -1 -1 287 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100136 22 19 7094 5872 1 3669 342 24 24 576 mult_36 auto 56.9 MiB 2.10 25761 94.0 MiB 4.53 0.07 4.29396 -4126.54 -4.29396 4.29396 1.73 0.0129807 0.0113688 0.92582 0.809123 68 41911 40 1.57908e+07 9.55454e+06 2.39371e+06 4155.74 35.10 7.46556 6.61325 65606 615345 -1 33965 17 12548 15195 2377820 529113 0 0 2377820 529113 13075 12620 0 0 108314 96382 0 0 130080 116544 0 0 13081 12713 0 0 1055861 145158 0 0 1057409 145696 0 0 13075 0 0 544 9351 11650 15859 2183 1614 4.54456 4.54456 -4777.31 -4.54456 0 0 2.98162e+06 5176.42 1.33 1.47 0.68 -1 -1 1.33 0.662294 0.598253 2200 2324 912 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_50.v common 105.48 vpr 94.40 MiB 0.28 21104 -1 -1 1 1.40 -1 -1 43672 -1 -1 290 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96664 22 19 7168 5929 1 3710 345 24 24 576 mult_36 auto 57.5 MiB 2.28 24936 94.4 MiB 3.96 0.07 4.04336 -4136.97 -4.04336 4.04336 1.95 0.0168961 0.0152057 0.874606 0.768963 68 42433 36 1.57908e+07 9.59646e+06 2.39371e+06 4155.74 85.51 9.22205 8.10373 65606 615345 -1 34116 19 12986 15314 2298005 507439 0 0 2298005 507439 13522 13073 0 0 108176 96401 0 0 130305 116563 0 0 13523 13117 0 0 1039343 130190 0 0 993136 138095 0 0 13522 0 0 552 8599 8801 16348 1851 959 4.41926 4.41926 -4698.88 -4.41926 0 0 2.98162e+06 5176.42 1.47 1.62 0.73 -1 -1 1.47 0.713245 0.643522 2229 2343 931 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_51.v common 58.02 vpr 99.58 MiB 0.34 21392 -1 -1 1 1.24 -1 -1 44584 -1 -1 297 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 101972 22 19 7344 6071 1 3814 352 24 24 576 mult_36 auto 58.2 MiB 2.04 28314 95.3 MiB 5.18 0.06 4.29396 -4303.37 -4.29396 4.29396 1.95 0.00788491 0.00686228 1.09549 0.928395 74 45280 28 1.57908e+07 9.69428e+06 2.56259e+06 4448.94 36.97 8.36297 7.35472 67906 667765 -1 38552 15 13344 15881 2736685 580320 0 0 2736685 580320 13898 13401 0 0 106405 94322 0 0 132297 116680 0 0 13899 13462 0 0 1242901 169684 0 0 1227285 172771 0 0 13898 0 0 571 9666 10717 16809 2066 773 4.66986 4.66986 -5106.69 -4.66986 0 0 3.19068e+06 5539.38 1.87 1.75 0.85 -1 -1 1.87 0.723222 0.656958 2282 2398 950 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_52.v common 65.68 vpr 100.29 MiB 0.29 21748 -1 -1 1 1.45 -1 -1 44464 -1 -1 301 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 102700 22 19 7418 6128 1 3859 356 24 24 576 mult_36 auto 58.4 MiB 1.92 27209 95.3 MiB 4.96 0.08 4.27196 -4220.72 -4.27196 4.27196 2.32 0.014075 0.0122511 1.06539 0.929359 74 43396 31 1.57908e+07 9.75017e+06 2.56259e+06 4448.94 43.61 9.32681 8.24732 67906 667765 -1 36748 18 13148 15874 2736435 593714 0 0 2736435 593714 13699 13176 0 0 107396 95076 0 0 133285 117317 0 0 13700 13222 0 0 1235692 175901 0 0 1232663 179022 0 0 13699 0 0 571 10372 11196 16250 2295 1876 4.54456 4.54456 -4842.34 -4.54456 0 0 3.19068e+06 5539.38 1.59 1.85 0.88 -1 -1 1.59 0.869078 0.789704 2310 2417 969 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_14.v common 30.10 vpr 66.15 MiB 0.08 9356 -1 -1 1 0.19 -1 -1 33996 -1 -1 58 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67736 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 27.8 MiB 3.64 4081 66.1 MiB 0.65 0.01 7.39293 -331.127 -7.39293 7.39293 0.86 0.00258891 0.00228291 0.154086 0.135769 40 8622 37 6.52434e+06 2.39448e+06 616420. 2407.89 21.45 1.39939 1.25595 23812 153515 -1 7234 27 7536 8347 1393382 352416 0 0 1393382 352416 8347 7772 0 0 68226 63064 0 0 84982 74664 0 0 8386 7851 0 0 618435 100766 0 0 605006 98299 0 0 8347 0 0 840 4669 4583 43707 0 0 8.41534 8.41534 -471.286 -8.41534 0 0 808720. 3159.06 0.30 0.57 0.18 -1 -1 0.30 0.140776 0.127957 421 285 247 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_15.v common 28.34 vpr 66.50 MiB 0.07 9324 -1 -1 1 0.21 -1 -1 34800 -1 -1 61 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68092 22 19 1344 989 1 793 107 16 16 256 mult_36 auto 28.4 MiB 2.93 4749 66.5 MiB 0.67 0.01 7.43507 -344.031 -7.43507 7.43507 0.98 0.00239199 0.0020564 0.149996 0.132447 44 9557 33 6.52434e+06 2.8324e+06 686998. 2683.59 20.31 1.44829 1.30294 24576 170172 -1 7140 23 5095 5887 826439 215440 0 0 826439 215440 5887 5247 0 0 49433 46432 0 0 56984 52217 0 0 5934 5301 0 0 360637 53077 0 0 347564 53166 0 0 5887 0 0 820 5885 5117 50695 0 0 8.06643 8.06643 -446.895 -8.06643 0 0 871168. 3403.00 0.33 0.48 0.19 -1 -1 0.33 0.158357 0.14541 453 304 266 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_16.v common 19.67 vpr 66.42 MiB 0.08 9492 -1 -1 1 0.20 -1 -1 34620 -1 -1 65 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68012 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 28.5 MiB 4.14 4817 66.4 MiB 0.81 0.01 7.30977 -364.374 -7.30977 7.30977 0.96 0.00318381 0.00282758 0.187959 0.165428 46 10099 41 6.52434e+06 2.88829e+06 723233. 2825.13 10.06 1.4878 1.3287 24832 174915 -1 7678 22 6962 7756 1181959 293265 0 0 1181959 293265 7756 7119 0 0 64230 60620 0 0 74116 67087 0 0 7803 7188 0 0 514653 74793 0 0 513401 76458 0 0 7756 0 0 814 4807 4906 51883 0 0 8.32803 8.32803 -516.053 -8.32803 0 0 890343. 3477.90 0.33 0.51 0.20 -1 -1 0.33 0.142961 0.130373 481 323 285 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_17.v common 21.46 vpr 67.10 MiB 0.08 9948 -1 -1 1 0.22 -1 -1 34640 -1 -1 71 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68712 22 19 1518 1112 1 896 117 16 16 256 mult_36 auto 29.1 MiB 3.53 5385 67.1 MiB 1.12 0.01 8.10891 -418.461 -8.10891 8.10891 0.92 0.00283448 0.00241001 0.215783 0.186212 54 9977 32 6.52434e+06 2.97214e+06 829453. 3240.05 12.08 1.58934 1.42254 26108 202796 -1 7906 24 6497 7337 947574 248654 0 0 947574 248654 7337 6632 0 0 56865 53271 0 0 66232 59946 0 0 7396 6712 0 0 416749 61331 0 0 392995 60762 0 0 7337 0 0 866 4855 5133 53013 0 0 8.78558 8.78558 -523.238 -8.78558 0 0 1.02522e+06 4004.78 0.39 0.60 0.25 -1 -1 0.39 0.205021 0.18944 514 342 304 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_18.v common 19.38 vpr 67.64 MiB 0.09 10144 -1 -1 1 0.23 -1 -1 34792 -1 -1 74 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69264 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 29.8 MiB 5.00 5761 67.6 MiB 0.96 0.02 7.95061 -441.879 -7.95061 7.95061 0.88 0.00396967 0.00360247 0.235717 0.208774 46 12197 39 6.52434e+06 3.01406e+06 723233. 2825.13 9.26 1.51176 1.35933 24832 174915 -1 8801 23 7411 8334 1122296 283958 0 0 1122296 283958 8334 7618 0 0 66482 62486 0 0 76133 69599 0 0 8390 7682 0 0 487106 69657 0 0 475851 66916 0 0 8334 0 0 952 5764 5915 59767 0 0 8.66998 8.66998 -562.591 -8.66998 0 0 890343. 3477.90 0.34 0.45 0.19 -1 -1 0.34 0.123546 0.112569 542 361 323 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_19.v common 16.87 vpr 68.11 MiB 0.09 10716 -1 -1 1 0.23 -1 -1 35204 -1 -1 79 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69744 22 19 1688 1231 1 994 126 16 16 256 mult_36 auto 30.2 MiB 4.09 5706 68.1 MiB 0.79 0.01 8.06677 -399.655 -8.06677 8.06677 0.90 0.00251316 0.00215545 0.175168 0.153682 54 11416 45 6.52434e+06 3.47993e+06 829453. 3240.05 7.58 1.22563 1.0811 26108 202796 -1 8377 24 6918 7778 1050656 272461 0 0 1050656 272461 7599 7044 0 0 60215 56524 0 0 69941 63405 0 0 7647 7099 0 0 458140 69248 0 0 447114 69141 0 0 7599 0 0 705 4017 3783 33300 248 1 8.95158 8.95158 -515.887 -8.95158 0 0 1.02522e+06 4004.78 0.33 0.53 0.18 -1 -1 0.33 0.179636 0.164297 573 380 342 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_20.v common 17.94 vpr 68.50 MiB 0.09 10592 -1 -1 1 0.27 -1 -1 34832 -1 -1 81 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70144 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 30.5 MiB 4.81 5976 68.5 MiB 0.94 0.02 8.06677 -426.077 -8.06677 8.06677 0.80 0.00355312 0.00314407 0.193799 0.170336 50 12037 50 6.52434e+06 3.50787e+06 787708. 3076.99 7.63 1.37763 1.24543 25344 186282 -1 9044 24 7463 8409 1149185 300275 0 0 1149185 300275 8206 7637 0 0 70140 65380 0 0 81244 73988 0 0 8297 7740 0 0 496884 73446 0 0 484414 72084 0 0 8206 0 0 770 5539 5087 44174 225 15 8.68998 8.68998 -608.281 -8.68998 0 0 943753. 3686.54 0.28 0.65 0.17 -1 -1 0.28 0.22896 0.210719 601 399 361 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_21.v common 18.76 vpr 68.62 MiB 0.10 11112 -1 -1 1 0.30 -1 -1 35680 -1 -1 85 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70268 22 19 1859 1351 1 1093 132 16 16 256 mult_36 auto 30.7 MiB 4.78 6741 68.6 MiB 0.90 0.02 7.98361 -446.241 -7.98361 7.98361 0.94 0.00413424 0.0036887 0.231769 0.207495 52 13640 48 6.52434e+06 3.56377e+06 808720. 3159.06 8.10 1.53483 1.39343 25852 197779 -1 9861 22 7279 8262 1337756 329246 0 0 1337756 329246 8073 7468 0 0 66434 62120 0 0 77420 71061 0 0 8130 7547 0 0 590101 90246 0 0 587598 90804 0 0 8073 0 0 818 5625 4802 43602 237 1 8.80128 8.80128 -592.932 -8.80128 0 0 1.00038e+06 3907.74 0.37 0.62 0.24 -1 -1 0.37 0.170264 0.157542 632 418 380 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_22.v common 18.36 vpr 69.23 MiB 0.09 11012 -1 -1 1 0.31 -1 -1 35392 -1 -1 90 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70888 22 19 1933 1408 1 1131 137 16 16 256 mult_36 auto 31.4 MiB 5.94 7075 69.2 MiB 0.66 0.01 8.10891 -466.13 -8.10891 8.10891 0.79 0.00307775 0.00273572 0.149867 0.130882 54 13043 42 6.52434e+06 3.63364e+06 829453. 3240.05 7.30 1.31042 1.19002 26108 202796 -1 10039 24 7336 8267 1090947 283206 0 0 1090947 283206 8035 7470 0 0 63029 59061 0 0 73048 66424 0 0 8049 7525 0 0 475174 70571 0 0 463612 72155 0 0 8035 0 0 722 4483 4184 39444 246 1 8.66198 8.66198 -659.137 -8.66198 0 0 1.02522e+06 4004.78 0.34 0.53 0.24 -1 -1 0.34 0.189584 0.172002 661 437 399 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_23.v common 54.03 vpr 69.68 MiB 0.06 11348 -1 -1 1 0.31 -1 -1 35584 -1 -1 94 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71352 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 31.9 MiB 5.70 7675 69.7 MiB 1.40 0.05 8.28437 -491.885 -8.28437 8.28437 1.26 0.0118071 0.011402 0.293178 0.264006 48 16112 37 8.04299e+06 4.08553e+06 991730. 3060.90 40.69 2.81688 2.53356 32420 239176 -1 12305 26 8944 10440 1978494 446045 0 0 1978494 446045 9577 9255 0 0 84742 78867 0 0 102662 92399 0 0 9579 9304 0 0 889660 126016 0 0 882274 130204 0 0 9577 0 0 664 5077 5076 13096 910 2 9.16918 9.16918 -723.218 -9.16918 0 0 1.20291e+06 3712.69 0.55 0.98 0.28 -1 -1 0.55 0.280407 0.256347 693 456 418 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_24.v common 20.18 vpr 69.98 MiB 0.10 11432 -1 -1 1 0.33 -1 -1 35832 -1 -1 97 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71664 22 19 2105 1529 1 1232 145 18 18 324 mult_36 auto 32.2 MiB 6.26 8304 70.0 MiB 0.80 0.01 8.09791 -534.964 -8.09791 8.09791 1.01 0.00192766 0.00165995 0.17258 0.149901 54 15824 31 8.04299e+06 4.12745e+06 1.08842e+06 3359.33 7.68 1.18412 1.05867 33712 268580 -1 11719 22 8615 9932 1499942 356145 0 0 1499942 356145 9191 8789 0 0 76937 71805 0 0 88872 80962 0 0 9193 8833 0 0 668361 92697 0 0 647388 93059 0 0 9191 0 0 603 3442 4298 12296 773 2 8.54039 8.54039 -784.408 -8.54039 0 0 1.34436e+06 4149.26 0.52 0.73 0.31 -1 -1 0.52 0.242131 0.221754 721 475 437 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_25.v common 27.40 vpr 70.46 MiB 0.12 11640 -1 -1 1 0.35 -1 -1 36036 -1 -1 101 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72156 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 32.8 MiB 5.09 8532 70.5 MiB 0.68 0.02 8.06491 -503.392 -8.06491 8.06491 0.97 0.00445113 0.00389632 0.137133 0.119304 50 17147 40 8.04299e+06 4.18335e+06 1.03391e+06 3191.07 15.72 2.14884 1.91414 32744 246704 -1 12701 22 9852 11353 2143317 494736 0 0 2143317 494736 10516 10000 0 0 96949 90021 0 0 111924 101956 0 0 10528 10058 0 0 958333 140144 0 0 955067 142557 0 0 10516 0 0 693 5058 5197 19613 939 59 9.05188 9.05188 -992.524 -9.05188 0 0 1.23838e+06 3822.15 0.44 0.97 0.30 -1 -1 0.44 0.247319 0.226159 751 494 456 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_26.v common 24.79 vpr 70.74 MiB 0.12 11896 -1 -1 1 0.31 -1 -1 36396 -1 -1 105 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72436 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 33.0 MiB 6.76 8137 70.7 MiB 1.41 0.02 8.06677 -535.891 -8.06677 8.06677 1.26 0.00566919 0.00511851 0.365992 0.327972 50 16279 48 8.04299e+06 4.23924e+06 1.03391e+06 3191.07 10.36 2.05675 1.8355 32744 246704 -1 12276 24 9434 10965 1636329 385379 0 0 1636329 385379 9917 9636 0 0 87818 81472 0 0 103580 93249 0 0 9922 9677 0 0 716583 95570 0 0 708509 95775 0 0 9917 0 0 512 5618 5444 12440 1094 40 8.77628 8.77628 -864.423 -8.77628 0 0 1.23838e+06 3822.15 0.49 0.83 0.27 -1 -1 0.49 0.301881 0.275294 779 513 475 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_27.v common 23.94 vpr 71.21 MiB 0.12 12148 -1 -1 1 0.41 -1 -1 36300 -1 -1 111 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72916 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 33.6 MiB 6.27 8719 71.2 MiB 1.60 0.02 7.97261 -566.816 -7.97261 7.97261 1.89 0.0049413 0.00434932 0.353581 0.310745 54 16092 32 8.04299e+06 4.7191e+06 1.08842e+06 3359.33 8.61 1.85065 1.66854 33712 268580 -1 12792 22 9899 11296 1786527 424562 0 0 1786527 424562 10534 10021 0 0 88622 83271 0 0 102733 93650 0 0 10537 10127 0 0 786497 113886 0 0 787604 113607 0 0 10534 0 0 657 4620 4352 13717 850 16 8.61468 8.61468 -794.099 -8.61468 0 0 1.34436e+06 4149.26 0.52 0.82 0.32 -1 -1 0.52 0.266806 0.244439 817 532 494 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_28.v common 27.98 vpr 71.68 MiB 0.13 12124 -1 -1 1 0.29 -1 -1 36340 -1 -1 114 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73400 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 33.9 MiB 7.57 9043 71.7 MiB 1.22 0.01 8.31737 -559.506 -8.31737 8.31737 1.30 0.00239131 0.00208184 0.234951 0.205017 54 16884 39 8.04299e+06 4.76102e+06 1.08842e+06 3359.33 12.58 1.97367 1.76042 33712 268580 -1 13321 24 10306 11938 2171936 517620 0 0 2171936 517620 11135 10544 0 0 94497 88508 0 0 110937 99914 0 0 11151 10645 0 0 965594 151536 0 0 978622 156473 0 0 11135 0 0 859 5012 4592 15142 916 246 8.86858 8.86858 -857.135 -8.86858 0 0 1.34436e+06 4149.26 0.57 1.01 0.33 -1 -1 0.57 0.273979 0.247712 845 551 513 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_29.v common 33.04 vpr 72.19 MiB 0.11 12620 -1 -1 1 0.39 -1 -1 36180 -1 -1 118 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73920 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 34.4 MiB 7.28 10043 72.2 MiB 2.28 0.02 8.06677 -579.764 -8.06677 8.06677 2.34 0.00425382 0.00375331 0.611714 0.55342 48 19988 46 1.30842e+07 5.21292e+06 1.52614e+06 3153.19 14.10 2.12677 1.92347 49190 371334 -1 15546 25 14163 16028 2754286 616310 0 0 2754286 616310 14854 14332 0 0 125849 116882 0 0 156077 137652 0 0 14859 14437 0 0 1237562 165641 0 0 1205085 167366 0 0 14854 0 0 722 6545 7435 18701 1204 48 9.14218 9.14218 -1062.13 -9.14218 0 0 1.85176e+06 3825.95 0.84 1.22 0.45 -1 -1 0.84 0.335064 0.307671 881 570 532 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_30.v common 39.17 vpr 72.73 MiB 0.12 12516 -1 -1 1 0.43 -1 -1 36648 -1 -1 123 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74476 22 19 2639 1910 1 1549 173 22 22 484 mult_36 auto 35.1 MiB 8.22 10614 72.7 MiB 2.45 0.05 8.23421 -554.147 -8.23421 8.23421 1.89 0.00451562 0.00396293 0.572223 0.520739 52 22015 32 1.30842e+07 5.28279e+06 1.63434e+06 3376.74 19.88 2.87935 2.61291 50638 406276 -1 15697 25 12395 14215 2562127 583907 0 0 2562127 583907 13110 12648 0 0 112704 104952 0 0 133705 120372 0 0 13112 12715 0 0 1140238 166948 0 0 1149258 166272 0 0 13110 0 0 749 6406 6242 17165 1146 82 9.31048 9.31048 -1168.2 -9.31048 0 0 2.01763e+06 4168.66 0.73 1.32 0.35 -1 -1 0.73 0.352375 0.313505 910 589 551 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_31.v common 41.02 vpr 73.18 MiB 0.11 12832 -1 -1 1 0.45 -1 -1 36668 -1 -1 128 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74940 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 35.7 MiB 7.64 10337 73.2 MiB 1.94 0.03 7.94147 -603.174 -7.94147 7.94147 2.17 0.00592635 0.00537859 0.370077 0.329359 54 20069 30 1.30842e+07 5.35266e+06 1.67518e+06 3461.11 22.47 2.7587 2.46376 51122 416746 -1 15458 23 11949 13646 2139229 487837 0 0 2139229 487837 12659 12151 0 0 102375 95516 0 0 120035 108348 0 0 12677 12228 0 0 947458 129445 0 0 944025 130149 0 0 12659 0 0 739 5524 5798 16515 1046 43 9.01418 9.01418 -1073.88 -9.01418 0 0 2.06816e+06 4273.05 0.83 1.19 0.43 -1 -1 0.83 0.366735 0.335997 946 608 570 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_32.v common 45.04 vpr 73.44 MiB 0.10 12856 -1 -1 1 0.46 -1 -1 36980 -1 -1 131 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75204 22 19 2818 2038 1 1657 181 22 22 484 mult_36 auto 36.0 MiB 8.87 10554 73.4 MiB 2.41 0.03 8.06677 -582.352 -8.06677 8.06677 2.28 0.00545888 0.00480269 0.552834 0.493047 56 18497 29 1.30842e+07 5.39458e+06 1.71605e+06 3545.56 24.17 3.15059 2.81875 51606 428054 -1 15637 22 12547 14519 2401826 569206 0 0 2401826 569206 13367 12773 0 0 116489 107856 0 0 140259 126445 0 0 13375 12900 0 0 1048630 153241 0 0 1069706 155991 0 0 13367 0 0 846 6605 6706 17643 1219 335 8.92358 8.92358 -1033.41 -8.92358 0 0 2.11301e+06 4365.72 0.98 1.25 0.35 -1 -1 0.98 0.355619 0.325958 974 627 589 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_33.v common 44.67 vpr 74.23 MiB 0.25 13512 -1 -1 1 0.42 -1 -1 37244 -1 -1 137 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76016 22 19 2923 2109 1 1726 188 22 22 484 mult_36 auto 36.8 MiB 7.57 11348 74.2 MiB 2.39 0.02 8.60431 -609.519 -8.60431 8.60431 2.15 0.00474167 0.00414154 0.509296 0.44536 54 21270 33 1.30842e+07 5.87443e+06 1.67518e+06 3461.11 25.10 3.56393 3.20505 51122 416746 -1 16699 25 12444 14319 2422501 565779 0 0 2422501 565779 13310 12663 0 0 114427 107278 0 0 134014 121218 0 0 13318 12771 0 0 1071723 155373 0 0 1075709 156476 0 0 13310 0 0 894 6040 5626 17974 1082 185 9.88532 9.88532 -1029.67 -9.88532 0 0 2.06816e+06 4273.05 0.98 1.30 0.49 -1 -1 0.98 0.431384 0.395609 1009 646 608 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_34.v common 48.74 vpr 74.33 MiB 0.24 13564 -1 -1 1 0.42 -1 -1 37784 -1 -1 140 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76112 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 36.9 MiB 12.66 11877 74.3 MiB 1.75 0.03 8.48815 -621.554 -8.48815 8.48815 1.89 0.00538818 0.00475367 0.357856 0.311475 52 23899 47 1.30842e+07 5.91636e+06 1.63434e+06 3376.74 24.59 3.23674 2.90016 50638 406276 -1 17339 24 13375 15398 3459114 793379 0 0 3459114 793379 14277 13573 0 0 136135 127661 0 0 157744 144332 0 0 14289 13730 0 0 1570254 245155 0 0 1566415 248928 0 0 14277 0 0 928 7033 8280 28169 1173 51 10.1026 10.1026 -1265.17 -10.1026 0 0 2.01763e+06 4168.66 0.91 1.58 0.49 -1 -1 0.91 0.40971 0.37346 1037 665 627 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_35.v common 35.43 vpr 74.81 MiB 0.14 14012 -1 -1 1 0.52 -1 -1 36904 -1 -1 145 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76604 22 19 3101 2236 1 1831 196 22 22 484 mult_36 auto 37.3 MiB 9.32 12013 74.8 MiB 2.16 0.04 8.73875 -694.534 -8.73875 8.73875 1.96 0.00533961 0.00460841 0.397027 0.348668 54 23267 45 1.30842e+07 5.98623e+06 1.67518e+06 3461.11 14.28 2.35247 2.12748 51122 416746 -1 17907 24 14879 16912 2731796 626601 0 0 2731796 626601 15736 15107 0 0 133976 125629 0 0 155139 140679 0 0 15770 15181 0 0 1219759 165472 0 0 1191416 164533 0 0 15736 0 0 888 8397 8473 39112 1215 76 9.62342 9.62342 -1351.07 -9.62342 0 0 2.06816e+06 4273.05 0.93 1.30 0.48 -1 -1 0.93 0.435685 0.4024 1072 684 646 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_36.v common 40.53 vpr 75.29 MiB 0.14 14080 -1 -1 1 0.42 -1 -1 37204 -1 -1 148 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77096 22 19 3175 2293 1 1871 199 22 22 484 mult_36 auto 37.8 MiB 13.20 12991 75.3 MiB 1.94 0.03 8.86591 -715.004 -8.86591 8.86591 2.62 0.00976788 0.00897685 0.476349 0.424234 54 25176 46 1.30842e+07 6.02815e+06 1.67518e+06 3461.11 15.02 2.49028 2.23215 51122 416746 -1 18954 24 15446 17471 2825079 652786 0 0 2825079 652786 16305 15662 0 0 140079 131470 0 0 165741 148664 0 0 16309 15731 0 0 1253632 172816 0 0 1233013 168443 0 0 16305 0 0 891 5975 6281 21307 1206 120 10.2002 10.2002 -1399.57 -10.2002 0 0 2.06816e+06 4273.05 0.91 1.26 0.48 -1 -1 0.91 0.339221 0.309987 1100 703 665 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_37.v common 47.47 vpr 75.98 MiB 0.11 14284 -1 -1 1 0.52 -1 -1 37484 -1 -1 152 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77800 22 19 3280 2364 1 1938 204 24 24 576 mult_36 auto 38.5 MiB 11.94 12732 76.0 MiB 1.66 0.03 8.90805 -748.944 -8.90805 8.90805 1.96 0.00484032 0.00419029 0.332373 0.288059 56 22834 34 1.57908e+07 6.48005e+06 2.03561e+06 3534.04 23.83 2.98441 2.66552 61006 507707 -1 18797 22 13411 15307 2810659 664274 0 0 2810659 664274 14182 13624 0 0 127071 117648 0 0 149697 136333 0 0 14190 13688 0 0 1264400 188218 0 0 1241119 194763 0 0 14182 0 0 798 6078 6163 18204 1189 95 9.62402 9.62402 -1110.03 -9.62402 0 0 2.50747e+06 4353.24 1.33 1.29 0.65 -1 -1 1.33 0.339135 0.308393 1135 722 684 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_38.v common 56.78 vpr 76.36 MiB 0.22 14384 -1 -1 1 0.55 -1 -1 38340 -1 -1 157 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78188 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 38.9 MiB 13.43 13773 76.4 MiB 2.45 0.03 9.11651 -769.173 -9.11651 9.11651 2.51 0.00627885 0.00553153 0.484259 0.427006 58 23474 41 1.57908e+07 6.54992e+06 2.08734e+06 3623.85 29.16 4.07973 3.67449 62154 534210 -1 19215 26 12520 14050 2631166 598040 0 0 2631166 598040 13106 12693 0 0 109493 101525 0 0 131228 118661 0 0 13109 12750 0 0 1178287 177846 0 0 1185943 174565 0 0 13106 0 0 610 4490 5525 16254 990 2 10.0436 10.0436 -1093.5 -10.0436 0 0 2.61600e+06 4541.67 1.33 1.56 0.66 -1 -1 1.33 0.510285 0.465876 1164 741 703 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_39.v common 43.97 vpr 76.57 MiB 0.25 14756 -1 -1 1 0.64 -1 -1 38100 -1 -1 161 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78412 22 19 3457 2490 1 2044 213 24 24 576 mult_36 auto 39.5 MiB 11.75 13664 76.6 MiB 2.71 0.02 8.86591 -773.732 -8.86591 8.86591 2.49 0.00412007 0.0036184 0.470618 0.404505 54 26142 39 1.57908e+07 6.60581e+06 1.98675e+06 3449.22 18.24 2.70318 2.42467 60430 494267 -1 19479 22 13042 15273 2563276 618172 0 0 2563276 618172 13855 13219 0 0 122565 114817 0 0 141455 129420 0 0 13863 13305 0 0 1149288 171880 0 0 1122250 175531 0 0 13855 0 0 837 7643 7401 18008 1535 23 9.73772 9.73772 -1252.66 -9.73772 0 0 2.45377e+06 4260.01 1.07 1.24 0.52 -1 -1 1.07 0.436293 0.402324 1198 760 722 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_40.v common 46.76 vpr 77.00 MiB 0.18 14852 -1 -1 1 0.75 -1 -1 38372 -1 -1 164 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78848 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 39.6 MiB 14.79 13852 77.0 MiB 1.92 0.04 8.95821 -843.505 -8.95821 8.95821 2.39 0.00629728 0.00536887 0.368142 0.322644 54 26462 42 1.57908e+07 6.64774e+06 1.98675e+06 3449.22 18.71 2.46488 2.19293 60430 494267 -1 20173 24 15076 17247 2565070 595036 0 0 2565070 595036 15898 15279 0 0 125510 116681 0 0 148041 133102 0 0 15907 15326 0 0 1142153 157542 0 0 1117561 157106 0 0 15898 0 0 850 6958 7048 20140 1430 118 10.0573 10.0573 -1473.95 -10.0573 0 0 2.45377e+06 4260.01 1.14 1.23 0.55 -1 -1 1.14 0.383631 0.346815 1226 779 741 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_41.v common 53.61 vpr 77.41 MiB 0.16 15076 -1 -1 1 0.72 -1 -1 37864 -1 -1 170 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79264 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 40.1 MiB 14.28 15822 77.4 MiB 2.55 0.04 9.03335 -936.123 -9.03335 9.03335 2.41 0.0068708 0.00617632 0.465273 0.408039 60 25342 27 1.57908e+07 7.12758e+06 2.13333e+06 3703.69 26.18 3.63459 3.25619 62730 548095 -1 21470 24 12788 14844 2518622 561158 0 0 2518622 561158 13498 12974 0 0 116577 108266 0 0 135588 124011 0 0 13500 13046 0 0 1130251 151001 0 0 1109208 151860 0 0 13498 0 0 737 5879 7198 17395 1380 16 9.68942 9.68942 -1624.51 -9.68942 0 0 2.67122e+06 4637.53 0.92 1.17 0.46 -1 -1 0.92 0.399116 0.362445 1261 798 760 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_42.v common 54.00 vpr 77.93 MiB 0.19 15228 -1 -1 1 0.69 -1 -1 37672 -1 -1 173 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79804 22 19 3708 2673 1 2187 226 24 24 576 mult_36 auto 40.8 MiB 15.50 14199 77.9 MiB 2.76 0.04 9.11651 -862.039 -9.11651 9.11651 2.50 0.00741609 0.00632276 0.51035 0.446463 58 22801 27 1.57908e+07 7.1695e+06 2.08734e+06 3623.85 24.59 3.79293 3.41656 62154 534210 -1 19622 23 13349 15173 2336242 550432 0 0 2336242 550432 14004 13465 0 0 113511 105067 0 0 139516 124919 0 0 14004 13533 0 0 1049165 145819 0 0 1006042 147629 0 0 14004 0 0 687 5978 5992 17631 1199 48 9.78672 9.78672 -1329.82 -9.78672 0 0 2.61600e+06 4541.67 1.28 1.30 0.66 -1 -1 1.28 0.4718 0.430671 1289 817 779 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_43.v common 55.76 vpr 78.42 MiB 0.25 15560 -1 -1 1 0.74 -1 -1 38912 -1 -1 178 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80304 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 41.3 MiB 15.00 15675 78.4 MiB 2.12 0.02 8.88605 -942.223 -8.88605 8.88605 2.17 0.00439819 0.00389093 0.371909 0.322977 56 28181 44 1.57908e+07 7.23937e+06 2.03561e+06 3534.04 26.97 4.01603 3.59828 61006 507707 -1 22273 26 16642 19345 3073848 710032 0 0 3073848 710032 17593 16981 0 0 145658 133744 0 0 176304 157628 0 0 17595 17067 0 0 1365178 191672 0 0 1351520 192940 0 0 17593 0 0 979 9048 9880 22931 1798 175 9.76902 9.76902 -1544.31 -9.76902 0 0 2.50747e+06 4353.24 1.15 1.52 0.66 -1 -1 1.15 0.514267 0.465399 1323 836 798 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_44.v common 50.83 vpr 78.70 MiB 0.20 15524 -1 -1 1 0.72 -1 -1 38008 -1 -1 181 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80592 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 41.4 MiB 17.47 15422 78.7 MiB 1.91 0.02 8.86591 -857.062 -8.86591 8.86591 2.27 0.00385804 0.00334405 0.354925 0.306001 56 26552 37 1.57908e+07 7.28129e+06 2.03561e+06 3534.04 19.57 3.44213 3.07525 61006 507707 -1 21513 26 16205 18786 3146021 748972 0 0 3146021 748972 17258 16446 0 0 149331 138131 0 0 179531 160789 0 0 17264 16540 0 0 1379783 205840 0 0 1402854 211226 0 0 17258 0 0 1077 8242 9099 22839 1611 170 9.87002 9.87002 -1271.36 -9.87002 0 0 2.50747e+06 4353.24 1.28 1.60 0.62 -1 -1 1.28 0.518472 0.468582 1351 855 817 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_45.v common 53.58 vpr 78.72 MiB 0.20 16148 -1 -1 1 0.75 -1 -1 40004 -1 -1 186 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80608 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 41.5 MiB 15.78 16774 78.7 MiB 2.36 0.04 8.98021 -909.184 -8.98021 8.98021 2.58 0.00587946 0.00517888 0.455147 0.396662 56 29821 36 1.57908e+07 7.74716e+06 2.03561e+06 3534.04 23.32 3.47769 3.08974 61006 507707 -1 24106 23 16920 19594 3477283 828924 0 0 3477283 828924 17840 17198 0 0 165224 153442 0 0 196021 177450 0 0 17846 17292 0 0 1537664 233189 0 0 1542688 230353 0 0 17840 0 0 950 10351 10325 22977 1813 333 9.78672 9.78672 -1526.25 -9.78672 0 0 2.50747e+06 4353.24 1.05 1.75 0.50 -1 -1 1.05 0.494865 0.450131 1387 874 836 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_46.v common 59.62 vpr 79.29 MiB 0.22 15988 -1 -1 1 0.75 -1 -1 40216 -1 -1 189 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81192 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 42.2 MiB 17.99 16570 79.3 MiB 2.64 0.05 8.99121 -895.905 -8.99121 8.99121 3.00 0.00891756 0.00801639 0.500017 0.440944 60 26772 27 1.57908e+07 7.78909e+06 2.13333e+06 3703.69 27.71 4.41134 3.96164 62730 548095 -1 21881 24 14117 16315 2439131 565674 0 0 2439131 565674 14890 14285 0 0 122290 113275 0 0 145402 131712 0 0 14890 14362 0 0 1090442 144680 0 0 1051217 147360 0 0 14890 0 0 802 7530 7995 19253 1463 128 9.55642 9.55642 -1439.05 -9.55642 0 0 2.67122e+06 4637.53 0.84 1.31 0.46 -1 -1 0.84 0.561714 0.504068 1414 893 855 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_47.v common 56.33 vpr 80.05 MiB 0.53 16520 -1 -1 1 0.76 -1 -1 40340 -1 -1 194 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81976 22 19 4167 2996 1 2466 248 24 24 576 mult_36 auto 43.0 MiB 15.50 17393 80.1 MiB 3.88 0.05 9.11651 -968.129 -9.11651 9.11651 2.39 0.00835539 0.00747179 0.873491 0.786845 58 29750 46 1.57908e+07 7.85896e+06 2.08734e+06 3623.85 24.40 3.79278 3.41487 62154 534210 -1 23972 24 15675 18304 3298494 747876 0 0 3298494 747876 16619 15963 0 0 141375 130992 0 0 172378 154263 0 0 16621 16069 0 0 1490856 213494 0 0 1460645 217095 0 0 16619 0 0 969 9263 9632 22051 1718 270 10.1766 10.1766 -1491.01 -10.1766 0 0 2.61600e+06 4541.67 1.24 1.71 0.67 -1 -1 1.24 0.562802 0.513602 1449 912 874 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_48.v common 70.10 vpr 80.24 MiB 0.31 16560 -1 -1 1 0.77 -1 -1 40404 -1 -1 197 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82164 22 19 4241 3053 1 2505 251 24 24 576 mult_36 auto 42.9 MiB 19.02 18540 80.2 MiB 2.92 0.03 9.11651 -916.185 -9.11651 9.11651 3.16 0.00467164 0.00396588 0.517752 0.455932 60 30474 41 1.57908e+07 7.90088e+06 2.13333e+06 3703.69 34.38 5.11366 4.57905 62730 548095 -1 24848 24 17343 20039 4009005 904507 0 0 4009005 904507 18237 17557 0 0 161464 150842 0 0 189175 172107 0 0 18239 17670 0 0 1836340 268778 0 0 1785550 277553 0 0 18237 0 0 927 8636 10630 23353 1881 450 10.0936 10.0936 -1512.97 -10.0936 0 0 2.67122e+06 4637.53 1.37 1.78 0.71 -1 -1 1.37 0.463264 0.420627 1477 931 893 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_49.v common 51.24 vpr 80.44 MiB 0.23 16852 -1 -1 1 0.66 -1 -1 40348 -1 -1 204 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82372 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 43.3 MiB 17.60 18886 80.4 MiB 3.15 0.05 9.40925 -1010.13 -9.40925 9.40925 2.68 0.00909112 0.00785863 0.587811 0.511989 60 32096 49 1.57908e+07 8.3947e+06 2.13333e+06 3703.69 18.36 3.36782 3.00236 62730 548095 -1 25755 22 15180 17529 2863977 653883 0 0 2863977 653883 15919 15356 0 0 142881 133040 0 0 164581 151710 0 0 15922 15451 0 0 1270404 170906 0 0 1254270 167420 0 0 15919 0 0 768 8528 9472 20064 1667 108 10.3022 10.3022 -1748.68 -10.3022 0 0 2.67122e+06 4637.53 0.94 1.43 0.68 -1 -1 0.94 0.492093 0.448836 1512 950 912 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_50.v common 55.52 vpr 81.04 MiB 0.37 17048 -1 -1 1 0.81 -1 -1 40588 -1 -1 206 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82980 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 43.8 MiB 20.00 17972 81.0 MiB 3.09 0.04 9.03335 -975.073 -9.03335 9.03335 2.61 0.00625225 0.00527409 0.639717 0.55741 58 30357 34 1.57908e+07 8.42264e+06 2.08734e+06 3623.85 19.20 3.74116 3.32188 62154 534210 -1 24697 22 17394 19842 3364825 788744 0 0 3364825 788744 18369 17622 0 0 157838 146884 0 0 187299 170095 0 0 18370 17730 0 0 1501619 219737 0 0 1481330 216676 0 0 18369 0 0 1004 7879 8526 23962 1519 249 9.66713 9.66713 -1584.01 -9.66713 0 0 2.61600e+06 4541.67 1.27 1.78 0.65 -1 -1 1.27 0.56522 0.51564 1541 969 931 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_51.v common 67.12 vpr 81.56 MiB 0.27 17288 -1 -1 1 0.83 -1 -1 40652 -1 -1 211 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83516 22 19 4524 3251 1 2681 266 24 24 576 mult_36 auto 44.6 MiB 18.11 18180 81.6 MiB 3.43 0.07 9.36711 -1018.4 -9.36711 9.36711 2.91 0.00660861 0.0057545 0.593821 0.52924 64 28144 33 1.57908e+07 8.49251e+06 2.26035e+06 3924.22 32.37 5.12423 4.58524 64454 586630 -1 24153 24 15670 18150 3057720 705467 0 0 3057720 705467 16622 15938 0 0 145372 135105 0 0 177887 159376 0 0 16624 16057 0 0 1348488 192092 0 0 1352727 186899 0 0 16622 0 0 978 7935 8782 21959 1595 151 9.80202 9.80202 -1750.42 -9.80202 0 0 2.84938e+06 4946.85 1.83 1.84 0.50 -1 -1 1.83 0.621447 0.568002 1576 988 950 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_52.v common 85.03 vpr 83.82 MiB 0.27 17280 -1 -1 1 0.90 -1 -1 38864 -1 -1 215 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85836 22 19 4598 3308 1 2718 270 24 24 576 mult_36 auto 44.6 MiB 20.92 21535 81.6 MiB 2.63 0.04 9.20881 -1033.49 -9.20881 9.20881 1.92 0.00648864 0.00556034 0.474187 0.413622 70 33048 29 1.57908e+07 8.54841e+06 2.45377e+06 4260.01 48.17 4.93198 4.39018 66754 640332 -1 27827 22 17227 19551 4901421 1016673 0 0 4901421 1016673 18003 17399 0 0 157864 146615 0 0 187564 169641 0 0 18006 17475 0 0 2229366 325849 0 0 2290618 339694 0 0 18003 0 0 805 7463 9038 22248 1600 88 9.93232 9.93232 -1588.22 -9.93232 0 0 3.09179e+06 5367.68 1.47 2.41 0.79 -1 -1 1.47 0.677267 0.618219 1605 1007 969 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_14.v common 13.11 vpr 69.30 MiB 0.07 10352 -1 -1 1 0.25 -1 -1 35104 -1 -1 81 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70968 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 31.0 MiB 0.57 5972 69.3 MiB 0.88 0.01 3.79276 -1064.84 -3.79276 3.79276 0.88 0.00282888 0.0024166 0.212747 0.18608 50 13019 46 6.54114e+06 2.7256e+06 787708. 3076.99 6.85 1.37511 1.22172 25344 186282 -1 9739 20 4172 4793 798055 191604 0 0 798055 191604 4519 4248 0 0 40070 36515 0 0 47519 42889 0 0 4566 4295 0 0 353790 50454 0 0 347591 53203 0 0 4519 0 0 366 3037 3362 22755 314 1 4.52256 4.52256 -1258.87 -4.52256 0 0 943753. 3686.54 0.37 0.43 0.22 -1 -1 0.37 0.172966 0.155929 605 649 247 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_15.v common 13.64 vpr 69.98 MiB 0.08 10984 -1 -1 1 0.31 -1 -1 35868 -1 -1 88 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71664 22 19 2144 1789 1 1120 134 16 16 256 mult_36 auto 31.8 MiB 0.48 6659 70.0 MiB 1.13 0.01 4.04336 -1171.67 -4.04336 4.04336 0.95 0.00419461 0.00369321 0.27966 0.247159 54 13390 41 6.54114e+06 3.22025e+06 829453. 3240.05 7.10 1.61193 1.44275 26108 202796 -1 10584 20 4334 5101 698961 173217 0 0 698961 173217 4561 4371 0 0 37426 33928 0 0 44219 39574 0 0 4573 4385 0 0 307241 44958 0 0 300941 46001 0 0 4561 0 0 245 2367 2540 5222 645 3 4.29396 4.29396 -1372.96 -4.29396 0 0 1.02522e+06 4004.78 0.35 0.34 0.28 -1 -1 0.35 0.1727 0.15607 654 704 266 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_16.v common 12.79 vpr 70.19 MiB 0.11 10824 -1 -1 1 0.32 -1 -1 35940 -1 -1 91 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71872 22 19 2218 1846 1 1162 137 16 16 256 mult_36 auto 32.0 MiB 0.46 6645 70.2 MiB 0.95 0.02 3.91806 -1189.41 -3.91806 3.91806 0.83 0.00374848 0.00322501 0.229815 0.198328 54 14055 36 6.54114e+06 3.26253e+06 829453. 3240.05 6.68 1.43617 1.28044 26108 202796 -1 10583 20 4697 5359 816374 199868 0 0 816374 199868 4935 4743 0 0 41132 37509 0 0 48277 43531 0 0 4935 4753 0 0 361726 53920 0 0 355369 55412 0 0 4935 0 0 255 2530 2054 5893 502 10 4.39726 4.39726 -1353.36 -4.39726 0 0 1.02522e+06 4004.78 0.38 0.51 0.17 -1 -1 0.38 0.220527 0.199392 683 723 285 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_17.v common 16.81 vpr 71.86 MiB 0.12 11776 -1 -1 1 0.37 -1 -1 36732 -1 -1 103 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73588 22 19 2536 2130 1 1275 149 16 16 256 mult_36 auto 33.6 MiB 0.55 7862 71.9 MiB 0.99 0.04 4.04336 -1364.39 -4.04336 4.04336 0.72 0.00471542 0.00414638 0.264757 0.233152 58 12981 30 6.54114e+06 3.43166e+06 871168. 3403.00 10.50 2.2546 2.00983 26872 219187 -1 10958 18 4294 5014 769453 192821 0 0 769453 192821 4534 4309 0 0 39174 35164 0 0 46940 42443 0 0 4544 4343 0 0 336100 52730 0 0 338161 53832 0 0 4534 0 0 256 2209 2733 5288 580 75 4.29396 4.29396 -1540.21 -4.29396 0 0 1.09288e+06 4269.05 0.38 0.40 0.25 -1 -1 0.38 0.181761 0.162832 770 851 304 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_18.v common 16.41 vpr 72.30 MiB 0.12 11740 -1 -1 1 0.37 -1 -1 36692 -1 -1 107 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74036 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 34.2 MiB 0.58 7910 72.3 MiB 1.13 0.02 3.79276 -1415.98 -3.79276 3.79276 0.87 0.00474617 0.00420001 0.282992 0.247444 56 15309 35 6.54114e+06 3.48803e+06 849745. 3319.32 9.36 1.93555 1.71978 26364 208198 -1 11980 19 5036 5970 904298 220894 0 0 904298 220894 5252 5075 0 0 45558 40639 0 0 55173 49491 0 0 5259 5102 0 0 398916 59514 0 0 394140 61073 0 0 5252 0 0 236 3290 3269 6249 765 156 4.39726 4.39726 -1668.04 -4.39726 0 0 1.04740e+06 4091.43 0.40 0.54 0.27 -1 -1 0.40 0.240708 0.218228 798 870 323 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_19.v common 14.21 vpr 73.13 MiB 0.11 11964 -1 -1 1 0.36 -1 -1 36880 -1 -1 113 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74888 22 19 2778 2321 1 1412 160 16 16 256 mult_36 auto 35.2 MiB 0.64 8346 73.1 MiB 1.12 0.02 3.79276 -1487.7 -3.79276 3.79276 0.85 0.00446021 0.00383056 0.302276 0.262752 58 15230 41 6.54114e+06 3.96859e+06 871168. 3403.00 7.21 1.7306 1.53275 26872 219187 -1 12136 18 5089 5880 814912 204128 0 0 814912 204128 5325 5113 0 0 43081 38530 0 0 52108 46807 0 0 5327 5137 0 0 355185 53433 0 0 353886 55108 0 0 5325 0 0 255 2273 3009 6331 616 163 4.29396 4.29396 -1724.8 -4.29396 0 0 1.09288e+06 4269.05 0.40 0.58 0.27 -1 -1 0.40 0.257546 0.234033 846 925 342 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_20.v common 17.55 vpr 73.62 MiB 0.11 12336 -1 -1 1 0.43 -1 -1 36820 -1 -1 118 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75392 22 19 2852 2378 1 1455 165 16 16 256 mult_36 auto 35.1 MiB 0.63 9052 73.6 MiB 0.78 0.02 3.91806 -1567.01 -3.91806 3.91806 0.86 0.00545861 0.00481748 0.201676 0.176266 60 14855 31 6.54114e+06 4.03906e+06 890343. 3477.90 10.80 2.3341 2.0735 27128 224764 -1 12241 16 4918 5599 829361 212572 0 0 829361 212572 5156 4971 0 0 44594 40215 0 0 51833 47374 0 0 5165 4993 0 0 358412 56374 0 0 364201 58645 0 0 5156 0 0 255 2177 2743 6163 513 2 4.29396 4.29396 -1737.03 -4.29396 0 0 1.11577e+06 4358.47 0.43 0.50 0.28 -1 -1 0.43 0.22163 0.200014 875 944 361 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_21.v common 15.03 vpr 74.31 MiB 0.15 12640 -1 -1 1 0.44 -1 -1 37496 -1 -1 122 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76096 22 19 3057 2549 1 1560 169 16 16 256 mult_36 auto 36.4 MiB 0.70 10145 74.3 MiB 1.12 0.02 3.91806 -1657.7 -3.91806 3.91806 0.86 0.0055702 0.00480377 0.302999 0.266696 60 16591 34 6.54114e+06 4.09544e+06 890343. 3477.90 7.43 2.01567 1.77307 27128 224764 -1 13770 18 5500 6444 1071451 259247 0 0 1071451 259247 5777 5524 0 0 50281 45334 0 0 59730 53937 0 0 5778 5545 0 0 473949 73157 0 0 475936 75750 0 0 5777 0 0 295 3339 3527 6737 770 244 4.41926 4.41926 -1879.02 -4.41926 0 0 1.11577e+06 4358.47 0.36 0.73 0.25 -1 -1 0.36 0.274973 0.249305 932 1017 380 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_22.v common 17.00 vpr 74.83 MiB 0.20 12912 -1 -1 1 0.48 -1 -1 37724 -1 -1 125 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76624 22 19 3131 2606 1 1600 172 16 16 256 mult_36 auto 36.9 MiB 0.70 10124 74.8 MiB 0.95 0.01 4.02136 -1704.37 -4.02136 4.02136 0.69 0.00307385 0.00263869 0.234218 0.203449 68 16819 31 6.54114e+06 4.13772e+06 1.00038e+06 3907.74 9.59 1.87655 1.65039 28404 252462 -1 13635 20 5537 6193 867491 206106 0 0 867491 206106 5781 5561 0 0 43283 38610 0 0 52695 47065 0 0 5786 5579 0 0 383087 52952 0 0 376859 56339 0 0 5781 0 0 261 2348 2015 6802 476 2 4.39726 4.39726 -1896.61 -4.39726 0 0 1.24648e+06 4869.04 0.48 0.78 0.32 -1 -1 0.48 0.357857 0.329138 961 1036 399 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_23.v common 20.12 vpr 75.45 MiB 0.13 13144 -1 -1 1 0.47 -1 -1 37376 -1 -1 133 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77256 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 37.3 MiB 0.76 10269 75.4 MiB 0.85 0.01 3.91806 -1815.19 -3.91806 3.91806 1.19 0.00326647 0.00280133 0.225633 0.196101 56 19535 36 8.06603e+06 4.64648e+06 1.11497e+06 3441.27 12.13 2.39492 2.1255 34036 275796 -1 16012 16 6494 7589 1166508 276969 0 0 1166508 276969 6833 6512 0 0 56729 50590 0 0 68786 61708 0 0 6836 6539 0 0 514529 75194 0 0 512795 76426 0 0 6833 0 0 358 3645 3976 8220 848 20 4.54456 4.54456 -2213.39 -4.54456 0 0 1.37338e+06 4238.83 0.55 0.52 0.35 -1 -1 0.55 0.227544 0.209175 1012 1091 418 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_24.v common 19.25 vpr 76.04 MiB 0.14 13308 -1 -1 1 0.50 -1 -1 37968 -1 -1 137 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77860 22 19 3375 2799 1 1744 185 18 18 324 mult_36 auto 38.2 MiB 0.70 10613 76.0 MiB 1.05 0.02 4.04336 -1855.71 -4.04336 4.04336 0.85 0.00338358 0.00290379 0.257777 0.22309 60 20330 50 8.06603e+06 4.70285e+06 1.16833e+06 3605.96 11.29 2.65857 2.35243 35004 297736 -1 15716 18 6382 7415 1250228 292002 0 0 1250228 292002 6699 6453 0 0 55997 50285 0 0 66530 59907 0 0 6708 6483 0 0 565108 83246 0 0 549186 85628 0 0 6699 0 0 337 3130 4070 8036 795 20 4.39726 4.39726 -2180.44 -4.39726 0 0 1.46313e+06 4515.82 0.44 0.77 0.33 -1 -1 0.44 0.31921 0.288808 1041 1110 437 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_25.v common 19.74 vpr 76.40 MiB 0.13 13676 -1 -1 1 0.53 -1 -1 37664 -1 -1 146 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78232 22 19 3615 3005 1 1848 194 18 18 324 mult_36 auto 38.3 MiB 0.77 11307 76.4 MiB 1.78 0.03 3.91806 -1971.06 -3.91806 3.91806 1.22 0.00723529 0.00644019 0.474563 0.419583 60 18893 30 8.06603e+06 4.8297e+06 1.16833e+06 3605.96 10.07 2.85049 2.5298 35004 297736 -1 16146 16 6464 7598 1227259 287669 0 0 1227259 287669 6796 6512 0 0 57794 51650 0 0 68503 61744 0 0 6807 6550 0 0 553979 78767 0 0 533380 82446 0 0 6796 0 0 347 3984 3756 8137 891 145 4.39726 4.39726 -2319.28 -4.39726 0 0 1.46313e+06 4515.82 0.62 0.80 0.36 -1 -1 0.62 0.343553 0.315248 1107 1201 456 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_26.v common 26.03 vpr 77.09 MiB 0.33 13876 -1 -1 1 0.47 -1 -1 37660 -1 -1 148 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78936 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 38.9 MiB 0.76 12301 77.1 MiB 1.82 0.03 4.04336 -2020.33 -4.04336 4.04336 1.22 0.00687425 0.00609254 0.472836 0.41652 66 22366 34 8.06603e+06 4.85789e+06 1.27759e+06 3943.17 16.17 3.20685 2.85316 36296 327148 -1 17195 19 6576 7557 1314540 294198 0 0 1314540 294198 6936 6624 0 0 57665 51509 0 0 68758 62176 0 0 6941 6658 0 0 586357 82101 0 0 587883 85130 0 0 6936 0 0 378 2919 3301 8343 723 81 4.41926 4.41926 -2337.7 -4.41926 0 0 1.59950e+06 4936.74 0.62 0.76 0.36 -1 -1 0.62 0.352754 0.322491 1135 1220 475 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_27.v common 18.63 vpr 78.22 MiB 0.15 14240 -1 -1 1 0.63 -1 -1 38528 -1 -1 156 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80100 22 19 3871 3210 1 2002 205 18 18 324 mult_36 auto 40.2 MiB 0.85 12335 78.2 MiB 1.80 0.04 4.04336 -2177.99 -4.04336 4.04336 1.15 0.00827041 0.00729236 0.442708 0.389184 64 21265 29 8.06603e+06 5.36665e+06 1.23838e+06 3822.15 8.73 2.44596 2.174 35972 318676 -1 17337 17 6939 7994 1218901 286489 0 0 1218901 286489 7243 6968 0 0 60909 54271 0 0 73492 66153 0 0 7249 7013 0 0 548590 74428 0 0 521418 77656 0 0 7243 0 0 324 3563 3898 8699 815 127 4.41926 4.41926 -2475.79 -4.41926 0 0 1.56068e+06 4816.91 0.64 0.74 0.38 -1 -1 0.64 0.321145 0.29066 1191 1275 494 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_28.v common 19.96 vpr 78.69 MiB 0.15 14440 -1 -1 1 0.65 -1 -1 38040 -1 -1 160 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80580 22 19 3945 3267 1 2045 209 18 18 324 mult_36 auto 40.6 MiB 0.77 12356 78.7 MiB 1.95 0.03 3.91806 -2130.05 -3.91806 3.91806 1.28 0.00809682 0.00724692 0.499614 0.442534 64 21708 29 8.06603e+06 5.42302e+06 1.23838e+06 3822.15 10.17 2.58384 2.29199 35972 318676 -1 17506 18 7087 8292 1326254 307260 0 0 1326254 307260 7403 7125 0 0 64473 57458 0 0 77743 69929 0 0 7411 7164 0 0 578854 83518 0 0 590370 82066 0 0 7403 0 0 334 4503 4101 8602 991 92 4.29396 4.29396 -2523.87 -4.29396 0 0 1.56068e+06 4816.91 0.58 0.47 0.36 -1 -1 0.58 0.226605 0.20609 1219 1294 513 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_29.v common 34.08 vpr 79.66 MiB 0.16 15036 -1 -1 1 0.71 -1 -1 38924 -1 -1 170 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81568 22 19 4159 3447 1 2159 220 22 22 484 mult_36 auto 41.6 MiB 0.89 14296 79.7 MiB 2.46 0.04 3.91806 -2272.88 -3.91806 3.91806 2.00 0.0119285 0.0108903 0.648838 0.570309 58 28364 39 1.31202e+07 5.95997e+06 1.75961e+06 3635.55 20.55 3.47293 3.08785 52570 450426 -1 21836 20 8713 10544 1785055 388229 0 0 1785055 388229 9105 8803 0 0 75403 66971 0 0 91273 81546 0 0 9116 8871 0 0 806904 109438 0 0 793254 112600 0 0 9105 0 0 412 6090 7186 11079 1493 304 4.52256 4.52256 -2814.06 -4.52256 0 0 2.20457e+06 4554.90 0.95 0.91 0.57 -1 -1 0.95 0.383558 0.346416 1283 1367 532 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_30.v common 34.23 vpr 79.86 MiB 0.16 15100 -1 -1 1 0.74 -1 -1 40132 -1 -1 173 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81776 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 41.9 MiB 0.86 14580 79.9 MiB 2.31 0.03 3.91806 -2232.55 -3.91806 3.91806 1.60 0.00790736 0.00680576 0.584745 0.508981 60 25392 27 1.31202e+07 6.00225e+06 1.79840e+06 3715.71 22.26 4.46416 3.94949 53054 462096 -1 20637 17 7950 9421 1500708 338777 0 0 1500708 338777 8387 8112 0 0 70477 63010 0 0 84007 75506 0 0 8391 8166 0 0 663802 91336 0 0 665644 92647 0 0 8387 0 0 459 5154 5467 10470 1099 152 4.41926 4.41926 -2696.08 -4.41926 0 0 2.25108e+06 4650.99 0.71 0.82 0.42 -1 -1 0.71 0.346425 0.314464 1311 1386 551 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_31.v common 27.49 vpr 81.46 MiB 0.16 15412 -1 -1 1 0.74 -1 -1 40364 -1 -1 179 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83420 22 19 4410 3647 1 2305 229 22 22 484 mult_36 auto 42.6 MiB 1.08 15174 81.5 MiB 2.12 0.04 3.79276 -2360.14 -3.79276 3.79276 1.93 0.0105064 0.00959857 0.533656 0.476093 62 26919 35 1.31202e+07 6.08682e+06 1.85176e+06 3825.95 14.10 3.85984 3.45573 53538 472186 -1 20914 17 7889 9383 1264357 294908 0 0 1264357 294908 8205 7947 0 0 69852 62254 0 0 82350 74182 0 0 8216 7968 0 0 552932 70862 0 0 542802 71695 0 0 8205 0 0 335 5215 5627 9644 1247 499 4.29396 4.29396 -3039.44 -4.29396 0 0 2.29262e+06 4736.82 0.98 0.81 0.53 -1 -1 0.98 0.402131 0.365042 1363 1441 570 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_32.v common 31.97 vpr 81.94 MiB 0.17 15648 -1 -1 1 0.75 -1 -1 39240 -1 -1 183 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83904 22 19 4484 3704 1 2348 233 22 22 484 mult_36 auto 43.2 MiB 0.96 15026 81.9 MiB 2.91 0.04 3.79276 -2437.3 -3.79276 3.79276 2.17 0.0136459 0.0122544 0.855379 0.771533 58 28136 43 1.31202e+07 6.14319e+06 1.75961e+06 3635.55 17.50 4.32476 3.89409 52570 450426 -1 22569 19 8937 10584 1635344 363842 0 0 1635344 363842 9305 8994 0 0 75807 67469 0 0 92476 82685 0 0 9313 9043 0 0 727503 98380 0 0 720940 97271 0 0 9305 0 0 388 5704 6691 11120 1337 69 4.54456 4.54456 -2943.41 -4.54456 0 0 2.20457e+06 4554.90 1.02 1.04 0.54 -1 -1 1.02 0.431537 0.391017 1393 1460 589 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_33.v common 35.96 vpr 82.49 MiB 0.24 16588 -1 -1 1 0.86 -1 -1 40912 -1 -1 196 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84472 22 19 4843 4029 1 2463 247 22 22 484 mult_36 auto 44.8 MiB 1.02 17421 82.5 MiB 2.46 0.05 3.91806 -2610.2 -3.91806 3.91806 1.71 0.013565 0.0123689 0.619541 0.549355 62 31794 48 1.31202e+07 6.72242e+06 1.85176e+06 3825.95 21.94 4.949 4.3965 53538 472186 -1 24422 19 9475 11148 1996420 428215 0 0 1996420 428215 9944 9551 0 0 83056 74195 0 0 97183 87836 0 0 9950 9603 0 0 907062 120503 0 0 889225 126527 0 0 9944 0 0 490 6103 6048 12229 1275 60 4.52256 4.52256 -3063.87 -4.52256 0 0 2.29262e+06 4736.82 0.87 1.29 0.48 -1 -1 0.87 0.505813 0.458286 1490 1606 608 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_34.v common 45.31 vpr 82.71 MiB 0.24 16600 -1 -1 1 0.62 -1 -1 41060 -1 -1 199 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84696 22 19 4917 4086 1 2505 250 22 22 484 mult_36 auto 45.0 MiB 1.05 16861 82.7 MiB 2.63 0.07 3.91806 -2596.99 -3.91806 3.91806 2.12 0.00787707 0.00693164 0.639965 0.565468 64 29911 38 1.31202e+07 6.7647e+06 1.90554e+06 3937.06 30.84 6.02665 5.36986 54502 494576 -1 23699 19 9000 10475 1899761 415182 0 0 1899761 415182 9442 9075 0 0 79371 70688 0 0 95680 86052 0 0 9446 9136 0 0 857087 115646 0 0 848735 124585 0 0 9442 0 0 460 5197 5178 11754 1098 382 4.39726 4.39726 -3168.37 -4.39726 0 0 2.40101e+06 4960.76 1.00 1.15 0.62 -1 -1 1.00 0.469443 0.427248 1519 1625 627 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_35.v common 29.90 vpr 84.94 MiB 0.22 17020 -1 -1 1 0.77 -1 -1 41188 -1 -1 207 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86976 22 19 5093 4228 1 2607 258 22 22 484 mult_36 auto 46.1 MiB 1.11 17900 84.9 MiB 3.02 0.05 4.04336 -2813.59 -4.04336 4.04336 1.78 0.00941463 0.00790347 0.68423 0.58989 66 32457 44 1.31202e+07 6.87745e+06 1.96511e+06 4060.15 15.19 3.75818 3.31305 54986 507526 -1 25001 17 8868 10688 1630122 348190 0 0 1630122 348190 9329 8970 0 0 73133 64229 0 0 90122 79780 0 0 9336 9016 0 0 732638 92528 0 0 715564 93667 0 0 9329 0 0 480 6969 6503 11785 1415 96 4.54456 4.54456 -3415.49 -4.54456 0 0 2.45963e+06 5081.88 0.92 1.02 0.59 -1 -1 0.92 0.494916 0.449057 1572 1680 646 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_36.v common 40.55 vpr 84.07 MiB 0.26 17080 -1 -1 1 0.96 -1 -1 41588 -1 -1 209 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86092 22 19 5167 4285 1 2655 260 22 22 484 mult_36 auto 46.3 MiB 1.22 19138 84.1 MiB 2.99 0.05 3.91806 -2798.96 -3.91806 3.91806 2.16 0.0112161 0.00998026 0.693418 0.603494 68 32277 23 1.31202e+07 6.90564e+06 2.01763e+06 4168.66 24.44 5.08246 4.47929 55470 518816 -1 25818 17 9208 10813 1726380 370488 0 0 1726380 370488 9677 9279 0 0 74430 65891 0 0 89362 79893 0 0 9684 9307 0 0 777926 101889 0 0 765301 104229 0 0 9677 0 0 486 5543 5910 12284 1193 729 4.54456 4.54456 -3346.24 -4.54456 0 0 2.51205e+06 5190.18 1.12 1.32 0.57 -1 -1 1.12 0.604859 0.554693 1600 1699 665 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_37.v common 38.41 vpr 86.09 MiB 0.23 17624 -1 -1 1 0.94 -1 -1 40404 -1 -1 218 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88156 22 19 5380 4464 1 2756 270 24 24 576 mult_36 auto 47.3 MiB 1.23 20063 86.1 MiB 2.71 0.03 4.16866 -3164.83 -4.16866 4.16866 2.06 0.00702326 0.00604074 0.625416 0.556372 60 35296 33 1.58331e+07 7.42849e+06 2.13333e+06 3703.69 22.34 4.12192 3.62014 62730 548095 -1 28246 18 10104 12221 1936556 414741 0 0 1936556 414741 10596 10193 0 0 82747 72710 0 0 99443 88720 0 0 10603 10263 0 0 874945 116235 0 0 858222 116620 0 0 10596 0 0 513 7283 8497 13389 1666 388 4.66986 4.66986 -3795.32 -4.66986 0 0 2.67122e+06 4637.53 1.18 1.24 0.65 -1 -1 1.18 0.533665 0.485197 1662 1772 684 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_38.v common 32.54 vpr 85.32 MiB 0.19 17780 -1 -1 1 1.03 -1 -1 41852 -1 -1 220 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87372 22 19 5454 4521 1 2804 272 24 24 576 mult_36 auto 47.6 MiB 1.24 19459 85.3 MiB 2.86 0.05 4.16866 -3108.05 -4.16866 4.16866 2.51 0.0109243 0.00964348 0.660881 0.58271 64 33829 26 1.58331e+07 7.45668e+06 2.26035e+06 3924.22 15.69 3.62667 3.18586 64454 586630 -1 27285 18 9748 11270 1913581 424064 0 0 1913581 424064 10172 9818 0 0 84614 75091 0 0 102473 91825 0 0 10178 9872 0 0 861860 118248 0 0 844284 119210 0 0 10172 0 0 442 5682 5776 12338 1156 412 4.54456 4.54456 -3514.29 -4.54456 0 0 2.84938e+06 4946.85 1.22 1.24 0.68 -1 -1 1.22 0.577936 0.524971 1690 1791 703 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_39.v common 31.90 vpr 86.16 MiB 0.16 18312 -1 -1 1 1.04 -1 -1 41068 -1 -1 228 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88224 22 19 5629 4662 1 2910 280 24 24 576 mult_36 auto 48.8 MiB 1.23 19361 86.2 MiB 2.90 0.05 3.91806 -3167.21 -3.91806 3.91806 2.67 0.0113525 0.00997347 0.696995 0.613579 60 34328 41 1.58331e+07 7.56943e+06 2.13333e+06 3703.69 15.87 4.31023 3.80348 62730 548095 -1 27360 23 10572 12445 2039567 465158 0 0 2039567 465158 11008 10616 0 0 94261 84539 0 0 112528 101333 0 0 11012 10674 0 0 903339 128735 0 0 907419 129261 0 0 11008 0 0 456 6459 7204 13411 1485 619 4.66986 4.66986 -3704.79 -4.66986 0 0 2.67122e+06 4637.53 0.83 1.12 0.41 -1 -1 0.83 0.582769 0.526084 1742 1846 722 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_40.v common 50.07 vpr 87.88 MiB 0.23 18284 -1 -1 1 0.91 -1 -1 42060 -1 -1 232 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89988 22 19 5703 4719 1 2952 284 24 24 576 mult_36 auto 49.3 MiB 1.33 20734 87.7 MiB 3.57 0.03 4.16866 -3276.4 -4.16866 4.16866 2.74 0.00720914 0.00640253 0.914052 0.770839 64 37401 34 1.58331e+07 7.62581e+06 2.26035e+06 3924.22 32.08 7.01254 6.18185 64454 586630 -1 29150 19 10714 12563 2133412 472386 0 0 2133412 472386 11179 10793 0 0 92540 82373 0 0 113510 100978 0 0 11180 10850 0 0 957885 132755 0 0 947118 134637 0 0 11179 0 0 483 6565 6978 14026 1413 175 4.52256 4.52256 -3859.66 -4.52256 0 0 2.84938e+06 4946.85 1.29 1.31 0.71 -1 -1 1.29 0.591972 0.533631 1771 1865 741 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_41.v common 54.62 vpr 90.41 MiB 0.25 18976 -1 -1 1 1.13 -1 -1 41152 -1 -1 240 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92576 22 19 5950 4932 1 3067 293 24 24 576 mult_36 auto 50.1 MiB 1.46 21064 87.4 MiB 3.28 0.04 4.04336 -3445.69 -4.04336 4.04336 2.93 0.0110631 0.00965368 0.760025 0.670442 68 36564 36 1.58331e+07 8.13456e+06 2.39371e+06 4155.74 36.78 7.84128 6.99804 65606 615345 -1 29319 20 11140 13425 2126161 453781 0 0 2126161 453781 11719 11280 0 0 95354 84858 0 0 114452 102419 0 0 11730 11381 0 0 958836 121675 0 0 934070 122168 0 0 11719 0 0 598 9040 8416 14742 1789 389 4.29396 4.29396 -3980.84 -4.29396 0 0 2.98162e+06 5176.42 1.22 1.32 0.47 -1 -1 1.22 0.574596 0.514834 1841 1956 760 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_42.v common 36.16 vpr 87.52 MiB 0.24 18944 -1 -1 1 1.20 -1 -1 42804 -1 -1 242 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89616 22 19 6024 4989 1 3108 295 24 24 576 mult_36 auto 50.0 MiB 1.35 20798 87.5 MiB 3.27 0.04 4.16866 -3417.51 -4.16866 4.16866 2.46 0.00798262 0.00689676 0.760763 0.665902 64 35011 29 1.58331e+07 8.16275e+06 2.26035e+06 3924.22 18.97 4.86442 4.31762 64454 586630 -1 29318 18 10688 12903 2129573 473975 0 0 2129573 473975 11207 10739 0 0 94570 83628 0 0 116042 103289 0 0 11214 10789 0 0 960905 130582 0 0 935635 134948 0 0 11207 0 0 537 7226 9127 13933 1762 255 4.64786 4.64786 -4100.73 -4.64786 0 0 2.84938e+06 4946.85 1.21 1.03 0.51 -1 -1 1.21 0.48456 0.440816 1869 1975 779 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_43.v common 35.68 vpr 88.70 MiB 0.44 19452 -1 -1 1 1.23 -1 -1 42912 -1 -1 250 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90824 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 51.3 MiB 1.46 22220 88.7 MiB 3.14 0.06 4.16866 -3551.25 -4.16866 4.16866 2.70 0.0123596 0.0110134 0.76067 0.674662 66 38599 44 1.58331e+07 8.2755e+06 2.33135e+06 4047.49 17.86 4.43045 3.93152 65030 601923 -1 30729 16 10882 12658 2015580 442185 0 0 2015580 442185 11376 10988 0 0 90069 79577 0 0 111041 98936 0 0 11380 11049 0 0 908312 120958 0 0 883402 120677 0 0 11376 0 0 514 6995 6759 14072 1325 85 4.54456 4.54456 -4129.43 -4.54456 0 0 2.91907e+06 5067.82 1.37 1.28 0.71 -1 -1 1.37 0.5631 0.510431 1921 2030 798 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_44.v common 38.47 vpr 89.21 MiB 0.27 19256 -1 -1 1 1.09 -1 -1 43104 -1 -1 253 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91356 22 19 6272 5186 1 3255 306 24 24 576 mult_36 auto 51.7 MiB 1.39 21683 89.2 MiB 3.60 0.06 3.91806 -3599.86 -3.91806 3.91806 2.66 0.0116363 0.0101911 0.807047 0.711041 66 37755 41 1.58331e+07 8.31778e+06 2.33135e+06 4047.49 20.51 5.58975 4.95166 65030 601923 -1 30053 17 11038 12939 2040304 455989 0 0 2040304 455989 11503 11126 0 0 96176 85457 0 0 116396 104380 0 0 11515 11198 0 0 914874 121905 0 0 889840 121923 0 0 11503 0 0 481 6393 7536 13951 1503 496 4.41926 4.41926 -4091.1 -4.41926 0 0 2.91907e+06 5067.82 1.15 1.28 0.62 -1 -1 1.15 0.57141 0.516846 1949 2049 817 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_45.v common 35.78 vpr 90.19 MiB 0.43 19816 -1 -1 1 1.40 -1 -1 43428 -1 -1 262 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92352 22 19 6485 5365 1 3364 316 24 24 576 mult_36 auto 52.7 MiB 1.57 23340 90.2 MiB 3.88 0.05 4.16866 -3679.38 -4.16866 4.16866 2.56 0.0137971 0.0123284 0.889857 0.786054 68 38626 38 1.58331e+07 8.84063e+06 2.39371e+06 4155.74 16.30 3.99148 3.53035 65606 615345 -1 31150 17 11240 13140 2051924 459468 0 0 2051924 459468 11689 11277 0 0 92934 82513 0 0 112267 100465 0 0 11692 11332 0 0 923791 125204 0 0 899551 128677 0 0 11689 0 0 465 6216 7198 14178 1496 510 4.41926 4.41926 -4297.54 -4.41926 0 0 2.98162e+06 5176.42 1.28 1.45 0.72 -1 -1 1.28 0.657358 0.598127 2011 2122 836 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_46.v common 58.05 vpr 93.34 MiB 0.44 19748 -1 -1 1 1.27 -1 -1 43480 -1 -1 266 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 95576 22 19 6559 5422 1 3406 320 24 24 576 mult_36 auto 52.9 MiB 1.46 23671 90.3 MiB 5.14 0.10 4.16866 -3712.31 -4.16866 4.16866 2.70 0.0112635 0.0100092 1.11562 0.990559 68 38983 36 1.58331e+07 8.897e+06 2.39371e+06 4155.74 37.28 7.76211 6.93112 65606 615345 -1 31944 17 11000 12742 2050814 447848 0 0 2050814 447848 11537 11061 0 0 89550 79187 0 0 106883 96083 0 0 11545 11117 0 0 923247 123274 0 0 908052 127126 0 0 11537 0 0 555 6162 6611 14365 1277 320 4.64786 4.64786 -4262.33 -4.64786 0 0 2.98162e+06 5176.42 1.31 1.31 0.84 -1 -1 1.31 0.625328 0.566962 2040 2141 855 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_47.v common 56.92 vpr 96.04 MiB 0.56 20328 -1 -1 1 1.27 -1 -1 43784 -1 -1 273 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98348 22 19 6735 5564 1 3513 327 24 24 576 mult_36 auto 53.9 MiB 1.72 23732 91.2 MiB 4.72 0.05 4.04336 -3875.46 -4.04336 4.04336 2.70 0.00932269 0.00805426 0.910809 0.782874 72 39218 24 1.58331e+07 8.99566e+06 2.50747e+06 4353.24 36.93 7.56763 6.71762 67330 654343 -1 32357 15 11529 13259 2311269 510739 0 0 2311269 510739 11975 11563 0 0 97366 86472 0 0 118673 105746 0 0 11986 11616 0 0 1032519 146633 0 0 1038750 148709 0 0 11975 0 0 467 6213 7254 14174 1362 548 4.54456 4.54456 -4512.49 -4.54456 0 0 3.14081e+06 5452.80 1.44 1.31 0.70 -1 -1 1.44 0.543081 0.48941 2092 2196 874 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_48.v common 58.90 vpr 96.59 MiB 0.33 20352 -1 -1 1 1.50 -1 -1 43644 -1 -1 276 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98904 22 19 6809 5621 1 3556 330 24 24 576 mult_36 auto 54.2 MiB 1.45 25754 91.7 MiB 4.31 0.03 4.16866 -3927.23 -4.16866 4.16866 2.64 0.00683363 0.00593745 1.1064 0.970688 72 42351 32 1.58331e+07 9.03794e+06 2.50747e+06 4353.24 38.57 8.33924 7.40306 67330 654343 -1 34948 15 11839 14044 2565791 550405 0 0 2565791 550405 12373 11918 0 0 101664 89965 0 0 123857 109991 0 0 12379 11994 0 0 1159423 163002 0 0 1156095 163535 0 0 12373 0 0 553 8476 9096 15164 1739 1439 4.77316 4.77316 -4567.33 -4.77316 0 0 3.14081e+06 5452.80 1.41 1.36 0.84 -1 -1 1.41 0.560569 0.505592 2121 2215 893 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_49.v common 62.68 vpr 97.98 MiB 0.29 20928 -1 -1 1 1.45 -1 -1 43988 -1 -1 287 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100336 22 19 7094 5872 1 3671 342 24 24 576 mult_36 auto 55.7 MiB 1.65 26414 93.3 MiB 4.41 0.05 4.16866 -4112.14 -4.16866 4.16866 2.48 0.0100671 0.00879585 1.01946 0.909257 72 44205 37 1.58331e+07 9.58898e+06 2.50747e+06 4353.24 41.33 9.58713 8.53089 67330 654343 -1 35373 17 12117 14511 2301231 494833 0 0 2301231 494833 12643 12218 0 0 100179 87920 0 0 123910 109352 0 0 12647 12274 0 0 1019909 138506 0 0 1031943 134563 0 0 12643 0 0 544 9004 9342 15574 1920 221 4.64786 4.64786 -4910.55 -4.64786 0 0 3.14081e+06 5452.80 1.52 2.20 0.96 -1 -1 1.52 0.953389 0.859871 2200 2324 912 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_50.v common 58.23 vpr 98.52 MiB 0.27 21048 -1 -1 1 1.28 -1 -1 43688 -1 -1 290 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100888 22 19 7168 5929 1 3712 345 24 24 576 mult_36 auto 55.7 MiB 1.64 25005 93.1 MiB 3.90 0.08 4.16866 -4097.24 -4.16866 4.16866 2.32 0.0249966 0.0227111 0.893038 0.787414 72 41778 45 1.58331e+07 9.63126e+06 2.50747e+06 4353.24 38.53 8.57331 7.65029 67330 654343 -1 33887 19 12170 14450 2208825 490117 0 0 2208825 490117 12725 12249 0 0 101897 89691 0 0 126449 111631 0 0 12732 12294 0 0 979552 131840 0 0 975470 132412 0 0 12725 0 0 572 7945 7934 15501 1812 534 4.52256 4.52256 -4818.74 -4.52256 0 0 3.14081e+06 5452.80 1.48 1.44 0.73 -1 -1 1.48 0.677551 0.608883 2229 2343 931 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_51.v common 39.94 vpr 94.64 MiB 0.27 21468 -1 -1 1 1.57 -1 -1 44516 -1 -1 297 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96916 22 19 7344 6071 1 3815 352 24 24 576 mult_36 auto 57.0 MiB 1.74 27352 94.6 MiB 5.55 0.08 4.16866 -4185.33 -4.16866 4.16866 2.58 0.0159791 0.014308 1.15779 1.00089 74 43261 26 1.58331e+07 9.72992e+06 2.56259e+06 4448.94 18.09 4.73446 4.16919 67906 667765 -1 37598 16 12547 14942 2893172 605463 0 0 2893172 605463 13043 12608 0 0 104251 92219 0 0 129211 114037 0 0 13045 12678 0 0 1328555 182027 0 0 1305067 191894 0 0 13043 0 0 513 8637 9751 15745 1955 530 4.79516 4.79516 -5106.88 -4.79516 0 0 3.19068e+06 5539.38 1.34 1.60 0.80 -1 -1 1.34 0.682617 0.61689 2282 2398 950 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_52.v common 70.22 vpr 100.57 MiB 0.27 21644 -1 -1 1 1.63 -1 -1 44440 -1 -1 301 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 102984 22 19 7418 6128 1 3860 356 24 24 576 mult_36 auto 57.3 MiB 1.35 30449 94.7 MiB 5.18 0.05 4.29396 -4395.87 -4.29396 4.29396 2.52 0.0115222 0.0101272 1.35118 1.18347 78 45732 30 1.58331e+07 9.78629e+06 2.67122e+06 4637.53 49.63 9.05807 8.00248 69630 706637 -1 39290 17 12969 15224 2492396 517522 0 0 2492396 517522 13573 13060 0 0 100343 87964 0 0 125615 109825 0 0 13575 13121 0 0 1126986 146882 0 0 1112304 146670 0 0 13573 0 0 622 8065 8328 17018 1724 1219 4.64786 4.64786 -5024.68 -4.64786 0 0 3.35110e+06 5817.88 1.49 1.47 0.93 -1 -1 1.49 0.621511 0.557499 2310 2417 969 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_14.v common 16.90 vpr 65.78 MiB 0.06 9116 -1 -1 1 0.16 -1 -1 33996 -1 -1 58 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67360 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 27.3 MiB 1.62 4199 65.8 MiB 0.62 0.01 7.56363 -345.083 -7.56363 7.56363 0.92 0.00198803 0.00170317 0.146899 0.129943 46 8614 36 6.54114e+06 2.40144e+06 723233. 2825.13 10.04 1.25185 1.13223 24832 174915 -1 6763 23 5159 6022 867473 210383 0 0 867473 210383 6022 5375 0 0 48045 44479 0 0 55889 50622 0 0 6130 5460 0 0 379681 52946 0 0 371706 51501 0 0 6022 0 0 882 4187 4189 40118 0 0 7.90214 7.90214 -444.971 -7.90214 0 0 890343. 3477.90 0.35 0.53 0.20 -1 -1 0.35 0.159032 0.147552 421 285 247 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_15.v common 11.46 vpr 66.16 MiB 0.07 9504 -1 -1 1 0.21 -1 -1 34692 -1 -1 61 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67744 22 19 1344 989 1 791 107 16 16 256 mult_36 auto 27.9 MiB 1.30 4448 66.2 MiB 0.59 0.01 7.59857 -338.987 -7.59857 7.59857 0.91 0.00180217 0.00158435 0.14707 0.129162 46 8733 33 6.54114e+06 2.83972e+06 723233. 2825.13 4.71 0.867951 0.788334 24832 174915 -1 6675 22 4390 4914 734731 196941 0 0 734731 196941 4914 4479 0 0 45518 42840 0 0 50533 47037 0 0 4961 4540 0 0 322307 49693 0 0 306498 48352 0 0 4914 0 0 546 2391 2777 29266 0 0 7.56783 7.56783 -468.481 -7.56783 0 0 890343. 3477.90 0.35 0.47 0.20 -1 -1 0.35 0.159809 0.148586 453 304 266 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_16.v common 16.04 vpr 66.20 MiB 0.07 9544 -1 -1 1 0.21 -1 -1 34640 -1 -1 65 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67792 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 27.8 MiB 1.79 4747 66.2 MiB 0.88 0.01 7.22861 -377.81 -7.22861 7.22861 0.91 0.00181577 0.00156238 0.216639 0.189745 48 8905 25 6.54114e+06 2.89609e+06 755748. 2952.14 8.37 1.2612 1.12763 25088 180500 -1 7501 25 6050 6646 1061416 256007 0 0 1061416 256007 6646 6237 0 0 54919 50756 0 0 67208 59895 0 0 6695 6298 0 0 460681 68272 0 0 465267 64549 0 0 6646 0 0 620 3143 3521 36290 0 0 7.73873 7.73873 -480.008 -7.73873 0 0 916467. 3579.95 0.37 0.81 0.28 -1 -1 0.37 0.228257 0.212028 481 323 285 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_17.v common 15.13 vpr 67.22 MiB 0.08 10088 -1 -1 1 0.23 -1 -1 34652 -1 -1 71 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68836 22 19 1518 1112 1 895 117 16 16 256 mult_36 auto 29.0 MiB 1.43 5305 67.2 MiB 1.01 0.01 7.96791 -388.775 -7.96791 7.96791 1.01 0.00285382 0.00251327 0.233064 0.204626 46 10617 43 6.54114e+06 2.98066e+06 723233. 2825.13 7.92 1.15757 1.0413 24832 174915 -1 8136 22 6375 7195 1210202 306640 0 0 1210202 306640 6949 6530 0 0 62187 58334 0 0 70870 64680 0 0 6976 6583 0 0 538329 84807 0 0 524891 85706 0 0 6949 0 0 600 3427 3708 25949 264 12 8.41027 8.41027 -486.017 -8.41027 0 0 890343. 3477.90 0.34 0.67 0.21 -1 -1 0.34 0.164383 0.150663 514 342 304 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_18.v common 17.32 vpr 67.27 MiB 0.09 10180 -1 -1 1 0.24 -1 -1 34748 -1 -1 74 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68888 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 29.1 MiB 2.28 5629 67.3 MiB 0.94 0.02 8.07121 -411.148 -8.07121 8.07121 0.92 0.00295285 0.00257155 0.205864 0.180323 50 10306 28 6.54114e+06 3.02294e+06 787708. 3076.99 8.91 1.48178 1.33147 25344 186282 -1 8386 23 6301 7185 954103 240883 0 0 954103 240883 6811 6398 0 0 55556 50711 0 0 65866 59086 0 0 6816 6439 0 0 413196 60197 0 0 405858 58052 0 0 6811 0 0 536 3669 3584 21584 394 39 8.83428 8.83428 -660.355 -8.83428 0 0 943753. 3686.54 0.34 0.62 0.22 -1 -1 0.34 0.234257 0.2182 542 361 323 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_19.v common 16.69 vpr 67.73 MiB 0.09 10524 -1 -1 1 0.21 -1 -1 35216 -1 -1 79 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69356 22 19 1688 1231 1 993 126 16 16 256 mult_36 auto 29.8 MiB 1.90 6105 67.7 MiB 0.69 0.01 8.17337 -408.351 -8.17337 8.17337 0.92 0.0034072 0.00301146 0.168807 0.149575 52 11550 46 6.54114e+06 3.48941e+06 808720. 3159.06 8.74 1.46137 1.32097 25852 197779 -1 8696 21 6124 6903 1074347 280877 0 0 1074347 280877 6708 6268 0 0 59620 55511 0 0 68915 63119 0 0 6721 6294 0 0 469737 75922 0 0 462646 73763 0 0 6708 0 0 606 3230 3942 27000 253 2 8.38333 8.38333 -552.706 -8.38333 0 0 1.00038e+06 3907.74 0.37 0.73 0.22 -1 -1 0.37 0.223746 0.207306 573 380 342 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_20.v common 14.42 vpr 67.95 MiB 0.09 10632 -1 -1 1 0.27 -1 -1 35216 -1 -1 81 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69580 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 30.0 MiB 1.58 6158 67.9 MiB 1.06 0.03 7.8183 -416.944 -7.8183 7.8183 0.92 0.00343799 0.00303187 0.229624 0.203306 50 12049 28 6.54114e+06 3.51759e+06 787708. 3076.99 7.02 1.19361 1.07317 25344 186282 -1 9359 26 7708 8718 1418550 345173 0 0 1418550 345173 8428 7953 0 0 71577 65873 0 0 84752 76161 0 0 8475 8036 0 0 625992 90686 0 0 619326 96464 0 0 8428 0 0 752 5534 4923 36144 352 1 8.59692 8.59692 -683.011 -8.59692 0 0 943753. 3686.54 0.36 0.66 0.22 -1 -1 0.36 0.217829 0.198553 601 399 361 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_21.v common 15.55 vpr 68.52 MiB 0.11 10804 -1 -1 1 0.30 -1 -1 35644 -1 -1 85 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70160 22 19 1859 1351 1 1092 132 16 16 256 mult_36 auto 30.4 MiB 1.60 6980 68.5 MiB 1.07 0.02 8.05907 -434.522 -8.05907 8.05907 1.02 0.00306387 0.00263533 0.20695 0.182124 52 13660 45 6.54114e+06 3.57397e+06 808720. 3159.06 8.09 1.51104 1.38307 25852 197779 -1 10160 23 6930 7976 1444632 362314 0 0 1444632 362314 7676 7102 0 0 65470 60718 0 0 75811 69039 0 0 7693 7166 0 0 646856 107339 0 0 641126 110950 0 0 7676 0 0 767 3802 4102 27517 351 1 8.56247 8.56247 -594.703 -8.56247 0 0 1.00038e+06 3907.74 0.36 0.67 0.23 -1 -1 0.36 0.210636 0.192502 632 418 380 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_22.v common 19.87 vpr 68.86 MiB 0.11 10864 -1 -1 1 0.31 -1 -1 35504 -1 -1 90 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70516 22 19 1933 1408 1 1130 137 16 16 256 mult_36 auto 30.8 MiB 2.50 7098 68.9 MiB 0.89 0.02 7.98086 -441.507 -7.98086 7.98086 0.87 0.00337982 0.00290635 0.185141 0.162226 54 12969 36 6.54114e+06 3.64444e+06 829453. 3240.05 11.66 1.89181 1.69542 26108 202796 -1 10241 22 6560 7511 1320686 334667 0 0 1320686 334667 7228 6682 0 0 63439 58960 0 0 72252 66362 0 0 7237 6751 0 0 588137 96780 0 0 582393 99132 0 0 7228 0 0 687 3560 3338 22758 402 142 8.47133 8.47133 -702.847 -8.47133 0 0 1.02522e+06 4004.78 0.35 0.62 0.22 -1 -1 0.35 0.190715 0.174887 661 437 399 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_23.v common 18.51 vpr 68.84 MiB 0.09 11364 -1 -1 1 0.29 -1 -1 35588 -1 -1 94 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70496 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 31.0 MiB 2.49 7327 68.8 MiB 1.19 0.02 7.94165 -476.826 -7.94165 7.94165 1.26 0.00337559 0.00289283 0.252635 0.21923 46 16395 49 8.06603e+06 4.09681e+06 948677. 2928.01 8.76 1.48779 1.33521 32096 231720 -1 11525 24 7643 8726 1470927 349533 0 0 1470927 349533 8425 7821 0 0 72067 66802 0 0 82437 75177 0 0 8452 7915 0 0 658872 94954 0 0 640674 96864 0 0 8425 0 0 807 4751 4977 36177 316 1 8.62207 8.62207 -688.219 -8.62207 0 0 1.16833e+06 3605.96 0.46 0.74 0.27 -1 -1 0.46 0.288113 0.262459 693 456 418 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_24.v common 21.19 vpr 69.38 MiB 0.11 11312 -1 -1 1 0.34 -1 -1 35712 -1 -1 97 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71044 22 19 2105 1529 1 1230 145 18 18 324 mult_36 auto 31.4 MiB 1.82 7498 69.4 MiB 1.37 0.02 8.06696 -495.55 -8.06696 8.06696 1.29 0.00405343 0.00357903 0.319638 0.281174 50 14667 40 8.06603e+06 4.13909e+06 1.03391e+06 3191.07 12.44 2.07214 1.85847 32744 246704 -1 11475 21 6905 8143 1309766 304549 0 0 1309766 304549 7737 7138 0 0 65028 59425 0 0 76539 69357 0 0 7788 7235 0 0 579998 79150 0 0 572676 82244 0 0 7737 0 0 855 5598 6077 37674 446 2 8.54152 8.54152 -701.685 -8.54152 0 0 1.23838e+06 3822.15 0.45 0.64 0.24 -1 -1 0.45 0.215647 0.196911 721 475 437 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_25.v common 24.58 vpr 69.98 MiB 0.13 11700 -1 -1 1 0.30 -1 -1 36036 -1 -1 101 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71660 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 32.1 MiB 2.12 7979 70.0 MiB 0.97 0.02 8.31162 -488.996 -8.31162 8.31162 1.19 0.00371001 0.00329605 0.234849 0.206498 54 14170 42 8.06603e+06 4.19547e+06 1.08842e+06 3359.33 15.46 2.41668 2.16919 33712 268580 -1 11399 24 8426 9483 1466240 347645 0 0 1466240 347645 9136 8580 0 0 72540 66851 0 0 84394 76166 0 0 9173 8663 0 0 650583 92669 0 0 640414 94716 0 0 9136 0 0 731 4526 4316 32345 382 1 8.81243 8.81243 -714.04 -8.81243 0 0 1.34436e+06 4149.26 0.38 1.10 0.26 -1 -1 0.38 0.372748 0.344702 751 494 456 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_26.v common 23.60 vpr 70.49 MiB 0.15 11808 -1 -1 1 0.33 -1 -1 36352 -1 -1 105 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72184 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 32.7 MiB 1.96 8151 70.5 MiB 1.33 0.02 8.26141 -557.097 -8.26141 8.26141 1.21 0.00515222 0.00468455 0.320467 0.281284 58 13063 33 8.06603e+06 4.25184e+06 1.14310e+06 3528.09 13.82 2.11796 1.89408 34680 290288 -1 11325 23 6806 7815 1268301 300351 0 0 1268301 300351 7425 6930 0 0 62602 57414 0 0 73246 67348 0 0 7449 6985 0 0 561037 81663 0 0 556542 80011 0 0 7425 0 0 638 4284 5322 31646 400 2 8.53852 8.53852 -732.028 -8.53852 0 0 1.43297e+06 4422.75 0.60 0.72 0.37 -1 -1 0.60 0.289987 0.266732 779 513 475 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_27.v common 24.14 vpr 70.70 MiB 0.15 12024 -1 -1 1 0.37 -1 -1 36264 -1 -1 111 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72396 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 32.8 MiB 2.51 9073 70.7 MiB 1.42 0.02 7.83356 -576.168 -7.83356 7.83356 1.11 0.00430155 0.00377401 0.275473 0.240818 56 16789 38 8.06603e+06 4.73242e+06 1.11497e+06 3441.27 13.82 2.02677 1.8111 34036 275796 -1 13726 22 10227 11689 1907377 439639 0 0 1907377 439639 11143 10460 0 0 93933 85454 0 0 110882 100052 0 0 11166 10566 0 0 842881 118386 0 0 837372 114721 0 0 11143 0 0 943 8545 7956 47657 565 43 8.56673 8.56673 -796.798 -8.56673 0 0 1.37338e+06 4238.83 0.57 0.87 0.34 -1 -1 0.57 0.269027 0.245147 817 532 494 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_28.v common 24.11 vpr 71.08 MiB 0.14 12196 -1 -1 1 0.45 -1 -1 36472 -1 -1 114 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72788 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 33.1 MiB 2.29 9268 71.1 MiB 1.42 0.02 7.83161 -557.515 -7.83161 7.83161 1.20 0.00429928 0.00375738 0.322798 0.284973 54 16905 38 8.06603e+06 4.7747e+06 1.08842e+06 3359.33 14.10 2.22587 1.96263 33712 268580 -1 13212 24 8694 10094 1782098 407050 0 0 1782098 407050 9536 8819 0 0 77751 71945 0 0 92807 83233 0 0 9547 8875 0 0 792202 114173 0 0 800255 120005 0 0 9536 0 0 868 6624 6233 37142 576 1 8.66993 8.66993 -816.798 -8.66993 0 0 1.34436e+06 4149.26 0.56 0.96 0.33 -1 -1 0.56 0.360623 0.332389 845 551 513 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_29.v common 35.80 vpr 71.78 MiB 0.15 12464 -1 -1 1 0.38 -1 -1 36288 -1 -1 118 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73504 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 34.0 MiB 2.12 10821 71.8 MiB 1.90 0.02 7.96791 -544.735 -7.96791 7.96791 1.82 0.00530059 0.00468012 0.43113 0.371291 56 17930 41 1.31202e+07 5.22708e+06 1.71605e+06 3545.56 23.28 3.15892 2.77455 51606 428054 -1 15582 23 10588 11995 2388487 547665 0 0 2388487 547665 11528 10755 0 0 104442 95988 0 0 122776 111387 0 0 11548 10834 0 0 1075284 157147 0 0 1062909 161554 0 0 11528 0 0 967 7020 7500 45911 481 77 8.83012 8.83012 -1015.76 -8.83012 0 0 2.11301e+06 4365.72 0.93 1.12 0.52 -1 -1 0.93 0.310441 0.283414 881 570 532 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_30.v common 38.28 vpr 71.85 MiB 0.19 12560 -1 -1 1 0.45 -1 -1 36804 -1 -1 123 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73572 22 19 2639 1910 1 1548 173 22 22 484 mult_36 auto 34.1 MiB 2.65 10390 71.8 MiB 1.90 0.02 7.95691 -542.487 -7.95691 7.95691 2.12 0.00442258 0.00378659 0.39409 0.343688 52 22435 42 1.31202e+07 5.29755e+06 1.63434e+06 3376.74 24.18 2.96617 2.65344 50638 406276 -1 15864 25 12140 14086 2808137 630444 0 0 2808137 630444 12995 12372 0 0 113170 104667 0 0 133829 120012 0 0 12995 12453 0 0 1278466 187701 0 0 1256682 193239 0 0 12995 0 0 883 5678 6738 17520 1178 95 8.88677 8.88677 -1093.81 -8.88677 0 0 2.01763e+06 4168.66 0.88 1.53 0.50 -1 -1 0.88 0.407254 0.374243 910 589 551 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_31.v common 37.25 vpr 72.62 MiB 0.15 13112 -1 -1 1 0.49 -1 -1 36716 -1 -1 128 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74364 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 34.9 MiB 3.18 11314 72.6 MiB 1.83 0.01 8.19225 -602.916 -8.19225 8.19225 2.01 0.00265336 0.0023025 0.347513 0.303147 54 20376 47 1.31202e+07 5.36802e+06 1.67518e+06 3461.11 22.89 3.08242 2.76671 51122 416746 -1 16311 23 11917 13378 2505333 549393 0 0 2505333 549393 12634 12072 0 0 107283 98814 0 0 123770 111997 0 0 12635 12112 0 0 1136809 155606 0 0 1112202 158792 0 0 12634 0 0 742 5154 4957 16978 770 20 8.86142 8.86142 -955.512 -8.86142 0 0 2.06816e+06 4273.05 0.84 1.18 0.48 -1 -1 0.84 0.32439 0.296385 946 608 570 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_32.v common 75.51 vpr 72.72 MiB 0.17 12756 -1 -1 1 0.50 -1 -1 36892 -1 -1 131 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74468 22 19 2818 2038 1 1656 181 22 22 484 mult_36 auto 35.1 MiB 3.95 11120 72.7 MiB 1.86 0.02 8.19225 -611.518 -8.19225 8.19225 1.92 0.00561232 0.00498043 0.39625 0.347714 50 21307 50 1.31202e+07 5.4103e+06 1.59181e+06 3288.87 61.16 3.79353 3.38758 49674 382800 -1 16483 24 11997 13796 2462768 553683 0 0 2462768 553683 12822 12234 0 0 113180 103999 0 0 134663 120511 0 0 12828 12289 0 0 1090911 150827 0 0 1098364 153823 0 0 12822 0 0 854 5527 5910 17076 1051 281 8.75313 8.75313 -1249.02 -8.75313 0 0 1.90554e+06 3937.06 0.84 1.17 0.30 -1 -1 0.84 0.33256 0.304717 974 627 589 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_33.v common 40.04 vpr 73.43 MiB 0.20 13840 -1 -1 1 0.51 -1 -1 37320 -1 -1 137 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75196 22 19 2923 2109 1 1725 188 22 22 484 mult_36 auto 35.9 MiB 3.28 11560 73.4 MiB 2.05 0.03 8.6217 -605.128 -8.6217 8.6217 2.08 0.00783898 0.00689422 0.472741 0.418879 56 20412 33 1.31202e+07 5.89087e+06 1.71605e+06 3545.56 24.54 3.18781 2.87367 51606 428054 -1 17269 23 14384 16324 3350232 773818 0 0 3350232 773818 15392 14588 0 0 146863 135881 0 0 172268 155644 0 0 15394 14728 0 0 1513797 225237 0 0 1486518 227740 0 0 15392 0 0 1034 6445 6143 21035 1002 12 9.19047 9.19047 -1068.08 -9.19047 0 0 2.11301e+06 4365.72 0.82 1.76 0.50 -1 -1 0.82 0.445581 0.415238 1009 646 608 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_34.v common 29.21 vpr 73.59 MiB 0.32 13600 -1 -1 1 0.51 -1 -1 37888 -1 -1 140 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75356 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 36.0 MiB 5.54 11834 73.6 MiB 1.86 0.02 8.6547 -641.145 -8.6547 8.6547 2.35 0.00399001 0.00342636 0.341412 0.282237 54 21877 33 1.31202e+07 5.93316e+06 1.67518e+06 3461.11 12.14 2.0101 1.79103 51122 416746 -1 17087 25 11125 12732 2229486 518174 0 0 2229486 518174 11892 11286 0 0 106426 98855 0 0 121322 111140 0 0 11895 11334 0 0 1003510 143962 0 0 974441 141597 0 0 11892 0 0 793 4453 5155 15902 895 32 9.47697 9.47697 -1215.91 -9.47697 0 0 2.06816e+06 4273.05 0.96 1.17 0.50 -1 -1 0.96 0.386126 0.353444 1037 665 627 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_35.v common 38.50 vpr 74.30 MiB 0.30 14056 -1 -1 1 0.54 -1 -1 36884 -1 -1 145 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76084 22 19 3101 2236 1 1830 196 22 22 484 mult_36 auto 36.6 MiB 4.54 12141 74.3 MiB 1.96 0.03 8.8192 -651.805 -8.8192 8.8192 1.95 0.00628509 0.00563868 0.450707 0.398322 56 20673 42 1.31202e+07 6.00363e+06 1.71605e+06 3545.56 22.30 3.58219 3.22329 51606 428054 -1 17440 24 12078 14018 2624224 614162 0 0 2624224 614162 13029 12295 0 0 120554 110625 0 0 143759 128905 0 0 13032 12384 0 0 1178406 171594 0 0 1155444 178359 0 0 13029 0 0 977 5964 6012 18464 1048 3 9.71667 9.71667 -1169.4 -9.71667 0 0 2.11301e+06 4365.72 0.97 1.31 0.49 -1 -1 0.97 0.36873 0.336814 1072 684 646 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_36.v common 43.53 vpr 74.64 MiB 0.23 14076 -1 -1 1 0.58 -1 -1 37224 -1 -1 148 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76432 22 19 3175 2293 1 1870 199 22 22 484 mult_36 auto 36.9 MiB 5.86 13227 74.6 MiB 2.75 0.03 8.5294 -676.033 -8.5294 8.5294 2.55 0.00610378 0.00524745 0.506122 0.449274 56 23688 50 1.31202e+07 6.04591e+06 1.71605e+06 3545.56 24.59 3.57485 3.19588 51606 428054 -1 18778 23 13848 15746 2946541 671589 0 0 2946541 671589 14735 14067 0 0 129765 119417 0 0 155827 140136 0 0 14736 14185 0 0 1319477 187813 0 0 1312001 195971 0 0 14735 0 0 914 6124 6069 19832 1060 2 9.75701 9.75701 -1476.69 -9.75701 0 0 2.11301e+06 4365.72 1.05 1.33 0.45 -1 -1 1.05 0.39711 0.362429 1100 703 665 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_37.v common 32.08 vpr 75.01 MiB 0.30 14420 -1 -1 1 0.52 -1 -1 37716 -1 -1 152 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76812 22 19 3280 2364 1 1940 204 24 24 576 mult_36 auto 37.2 MiB 4.94 13543 75.0 MiB 2.57 0.02 8.78194 -780.252 -8.78194 8.78194 2.61 0.00310222 0.00268191 0.587354 0.532468 56 23414 30 1.58331e+07 6.49829e+06 2.03561e+06 3534.04 13.49 2.22884 1.9762 61006 507707 -1 18958 22 11809 13794 2559210 593769 0 0 2559210 593769 12671 12056 0 0 113523 103802 0 0 133945 121612 0 0 12674 12145 0 0 1150638 168930 0 0 1135759 175224 0 0 12671 0 0 893 6630 6548 17636 1179 36 9.64032 9.64032 -1315.55 -9.64032 0 0 2.50747e+06 4353.24 1.07 1.35 0.61 -1 -1 1.07 0.438589 0.401318 1135 722 684 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_38.v common 36.43 vpr 75.52 MiB 0.30 14560 -1 -1 1 0.62 -1 -1 38304 -1 -1 157 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77336 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 37.8 MiB 5.41 13078 75.5 MiB 3.61 0.04 8.86016 -714.943 -8.86016 8.86016 2.73 0.00794483 0.00712449 0.682583 0.597831 54 24765 49 1.58331e+07 6.56876e+06 1.98675e+06 3449.22 15.55 2.70479 2.40657 60430 494267 -1 19061 23 14167 15877 3729238 854991 0 0 3729238 854991 14995 14361 0 0 139758 130654 0 0 159003 144549 0 0 14998 14450 0 0 1695018 270572 0 0 1705466 280405 0 0 14995 0 0 856 4607 4648 19535 946 23 9.44326 9.44326 -1107.13 -9.44326 0 0 2.45377e+06 4260.01 1.12 1.87 0.58 -1 -1 1.12 0.436335 0.398383 1164 741 703 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_39.v common 89.79 vpr 75.90 MiB 0.20 14712 -1 -1 1 0.61 -1 -1 38072 -1 -1 161 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77724 22 19 3457 2490 1 2042 213 24 24 576 mult_36 auto 38.1 MiB 4.74 13744 75.9 MiB 2.73 0.02 8.68095 -856.443 -8.68095 8.68095 2.50 0.00419329 0.00371099 0.632711 0.562309 50 25278 35 1.58331e+07 6.62513e+06 1.88759e+06 3277.06 72.49 4.16782 3.69002 58706 454005 -1 19931 28 14109 16368 2595041 596617 0 0 2595041 596617 15089 14356 0 0 131113 119807 0 0 157154 139623 0 0 15090 14446 0 0 1138166 154679 0 0 1138429 153706 0 0 15089 0 0 1011 7968 7399 21003 1322 237 9.61872 9.61872 -1454 -9.61872 0 0 2.26035e+06 3924.22 0.80 0.84 0.43 -1 -1 0.80 0.278586 0.251107 1198 760 722 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_40.v common 35.59 vpr 76.28 MiB 0.38 14892 -1 -1 1 0.60 -1 -1 38312 -1 -1 164 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78112 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 38.4 MiB 6.55 13938 76.3 MiB 2.16 0.02 8.76111 -788.852 -8.76111 8.76111 2.56 0.00361442 0.00315075 0.441991 0.387463 56 24499 31 1.58331e+07 6.66742e+06 2.03561e+06 3534.04 15.43 2.59602 2.32376 61006 507707 -1 20067 23 13500 15680 2685347 618760 0 0 2685347 618760 14301 13719 0 0 124624 113601 0 0 148810 134224 0 0 14304 13770 0 0 1184942 170416 0 0 1198366 173030 0 0 14301 0 0 831 7518 8097 18578 1424 74 9.45977 9.45977 -1750.04 -9.45977 0 0 2.50747e+06 4353.24 1.17 1.48 0.63 -1 -1 1.17 0.41765 0.381349 1226 779 741 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_41.v common 55.32 vpr 76.64 MiB 0.35 15424 -1 -1 1 0.74 -1 -1 37896 -1 -1 170 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78480 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 39.1 MiB 4.74 15854 76.6 MiB 3.07 0.04 8.80625 -920.006 -8.80625 8.80625 2.52 0.0082107 0.00741346 0.564517 0.495714 58 28154 49 1.58331e+07 7.14798e+06 2.08734e+06 3623.85 35.42 4.47705 4.01515 62154 534210 -1 22290 26 12506 14468 2749189 597555 0 0 2749189 597555 13320 12754 0 0 114926 105043 0 0 134289 122246 0 0 13324 12820 0 0 1234346 174817 0 0 1238984 169875 0 0 13320 0 0 841 6016 7613 17884 1213 29 9.31877 9.31877 -1359.36 -9.31877 0 0 2.61600e+06 4541.67 1.31 1.45 0.70 -1 -1 1.31 0.505268 0.461667 1261 798 760 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_42.v common 37.74 vpr 77.41 MiB 0.27 15192 -1 -1 1 0.63 -1 -1 37596 -1 -1 173 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79268 22 19 3708 2673 1 2186 226 24 24 576 mult_36 auto 39.9 MiB 6.09 15681 77.4 MiB 2.39 0.04 8.79525 -907.06 -8.79525 8.79525 2.53 0.00722336 0.00642319 0.495584 0.437199 58 26192 48 1.58331e+07 7.19026e+06 2.08734e+06 3623.85 17.41 2.69597 2.4101 62154 534210 -1 21609 24 14705 16813 2761390 626440 0 0 2761390 626440 15652 14969 0 0 129477 118285 0 0 155438 139446 0 0 15654 15009 0 0 1222322 172129 0 0 1222847 166602 0 0 15652 0 0 975 6432 7433 21435 1192 3 9.54352 9.54352 -1430.8 -9.54352 0 0 2.61600e+06 4541.67 1.22 1.64 0.61 -1 -1 1.22 0.534927 0.490605 1289 817 779 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_43.v common 48.62 vpr 77.59 MiB 0.39 15428 -1 -1 1 0.82 -1 -1 39028 -1 -1 178 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79456 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 40.0 MiB 6.00 16164 77.6 MiB 2.52 0.04 8.9445 -909.833 -8.9445 8.9445 2.58 0.00709863 0.00631 0.494029 0.438952 58 27044 44 1.58331e+07 7.26073e+06 2.08734e+06 3623.85 27.97 4.30753 3.87147 62154 534210 -1 22173 25 14106 16356 3319452 736936 0 0 3319452 736936 15105 14381 0 0 134447 123592 0 0 159636 143521 0 0 15111 14467 0 0 1505004 218234 0 0 1490149 222741 0 0 15105 0 0 1026 7373 7737 20943 1296 165 9.37367 9.37367 -1454.81 -9.37367 0 0 2.61600e+06 4541.67 1.39 1.68 0.65 -1 -1 1.39 0.538504 0.492318 1323 836 798 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_44.v common 48.88 vpr 78.10 MiB 0.39 15712 -1 -1 1 0.78 -1 -1 38256 -1 -1 181 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79976 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 40.6 MiB 7.14 15940 78.1 MiB 2.42 0.03 8.84631 -887.82 -8.84631 8.84631 2.44 0.00629743 0.0055819 0.534903 0.475208 60 25684 30 1.58331e+07 7.30301e+06 2.13333e+06 3703.69 27.92 4.16908 3.74003 62730 548095 -1 21669 24 13152 14942 2974216 668041 0 0 2974216 668041 14048 13368 0 0 125675 116472 0 0 145411 132886 0 0 14052 13458 0 0 1348281 194320 0 0 1326749 197537 0 0 14048 0 0 922 5805 5338 18911 950 43 9.22651 9.22651 -1379.23 -9.22651 0 0 2.67122e+06 4637.53 1.33 1.48 0.66 -1 -1 1.33 0.517479 0.473873 1351 855 817 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_45.v common 54.84 vpr 77.93 MiB 0.39 16144 -1 -1 1 0.73 -1 -1 40012 -1 -1 186 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79800 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 40.4 MiB 7.00 16859 77.9 MiB 3.64 0.05 8.90724 -916.022 -8.90724 8.90724 3.05 0.00556068 0.00488357 0.584971 0.523154 64 26636 33 1.58331e+07 7.76948e+06 2.26035e+06 3924.22 32.05 4.57331 4.11533 64454 586630 -1 22516 24 12932 14957 2821484 637264 0 0 2821484 637264 13856 13120 0 0 120757 110555 0 0 145713 131223 0 0 13862 13234 0 0 1265211 186433 0 0 1262085 182699 0 0 13856 0 0 946 6614 6822 18965 1163 146 9.28757 9.28757 -1288.1 -9.28757 0 0 2.84938e+06 4946.85 1.36 1.57 0.73 -1 -1 1.36 0.548639 0.498426 1387 874 836 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_46.v common 47.95 vpr 78.27 MiB 0.40 15956 -1 -1 1 0.58 -1 -1 40196 -1 -1 189 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80152 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 40.7 MiB 6.71 17948 78.3 MiB 2.77 0.04 9.40056 -947.004 -9.40056 9.40056 2.42 0.00836849 0.00749336 0.55324 0.486601 62 29925 29 1.58331e+07 7.81177e+06 2.19658e+06 3813.51 26.93 3.79039 3.38923 63306 560109 -1 23881 23 13619 15646 2728571 603400 0 0 2728571 603400 14554 13770 0 0 130598 120232 0 0 148246 136047 0 0 14557 13871 0 0 1219720 161533 0 0 1200896 157947 0 0 14554 0 0 958 6388 6768 19817 1138 45 9.64467 9.64467 -1639.71 -9.64467 0 0 2.72095e+06 4723.87 1.33 1.26 0.69 -1 -1 1.33 0.419874 0.381474 1414 893 855 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_47.v common 37.19 vpr 78.94 MiB 0.40 16416 -1 -1 1 0.82 -1 -1 40340 -1 -1 194 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80836 22 19 4167 2996 1 2465 248 24 24 576 mult_36 auto 41.5 MiB 6.96 17017 78.9 MiB 1.77 0.04 8.9976 -923.78 -8.9976 8.9976 2.27 0.00814735 0.00723142 0.348392 0.303609 60 27718 30 1.58331e+07 7.88224e+06 2.13333e+06 3703.69 16.71 3.11495 2.78603 62730 548095 -1 22925 24 12311 14280 2803242 639509 0 0 2803242 639509 13132 12472 0 0 119084 109707 0 0 135725 125110 0 0 13135 12565 0 0 1263827 188874 0 0 1258339 190781 0 0 13132 0 0 845 5835 6574 17614 1206 11 9.59747 9.59747 -1539.76 -9.59747 0 0 2.67122e+06 4637.53 1.20 1.50 0.68 -1 -1 1.20 0.47716 0.435273 1449 912 874 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_48.v common 48.87 vpr 79.05 MiB 0.41 16472 -1 -1 1 0.84 -1 -1 40288 -1 -1 197 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80952 22 19 4241 3053 1 2504 251 24 24 576 mult_36 auto 41.6 MiB 7.46 17669 79.1 MiB 2.57 0.04 8.9445 -1012.84 -8.9445 8.9445 2.46 0.00714833 0.00620741 0.505926 0.447915 62 28570 31 1.58331e+07 7.92452e+06 2.19658e+06 3813.51 26.83 4.41266 3.94636 63306 560109 -1 23358 23 13503 15334 2364866 545916 0 0 2364866 545916 14401 13620 0 0 126770 116758 0 0 144257 132921 0 0 14405 13682 0 0 1015669 138953 0 0 1049364 129982 0 0 14401 0 0 928 6001 5646 19475 1005 295 8.98402 8.98402 -1596.61 -8.98402 0 0 2.72095e+06 4723.87 1.30 1.39 0.69 -1 -1 1.30 0.562391 0.514409 1477 931 893 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_49.v common 111.09 vpr 79.52 MiB 0.44 16804 -1 -1 1 0.71 -1 -1 40352 -1 -1 204 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81428 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 42.0 MiB 7.76 17642 79.5 MiB 3.87 0.06 9.0698 -922.225 -9.0698 9.0698 3.46 0.0118814 0.0105035 0.865575 0.776964 58 30104 49 1.58331e+07 8.41918e+06 2.08734e+06 3623.85 87.67 6.52272 5.84657 62154 534210 -1 24633 23 15997 18549 3230823 742052 0 0 3230823 742052 17127 16309 0 0 149891 137530 0 0 177092 160750 0 0 17130 16422 0 0 1446894 203670 0 0 1422689 207371 0 0 17127 0 0 1158 7610 8416 23146 1503 347 9.45371 9.45371 -1494.6 -9.45371 0 0 2.61600e+06 4541.67 0.89 0.95 0.45 -1 -1 0.89 0.308422 0.279019 1512 950 912 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_50.v common 46.53 vpr 79.74 MiB 0.41 17048 -1 -1 1 0.82 -1 -1 40528 -1 -1 206 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81656 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 42.2 MiB 8.31 18336 79.7 MiB 3.03 0.04 9.11076 -1017 -9.11076 9.11076 2.46 0.00536296 0.00479337 0.58345 0.513406 60 30405 47 1.58331e+07 8.44736e+06 2.13333e+06 3703.69 22.75 3.54587 3.15784 62730 548095 -1 24968 24 13915 16364 3081808 678920 0 0 3081808 678920 14958 14069 0 0 132013 121163 0 0 151817 139627 0 0 14962 14215 0 0 1369591 193714 0 0 1398467 196132 0 0 14958 0 0 1070 7531 7728 20729 1464 99 9.36567 9.36567 -1641.82 -9.36567 0 0 2.67122e+06 4637.53 1.33 1.61 0.68 -1 -1 1.33 0.562355 0.50941 1541 969 931 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_51.v common 55.50 vpr 80.96 MiB 0.40 17188 -1 -1 1 0.89 -1 -1 40644 -1 -1 211 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82900 22 19 4524 3251 1 2680 266 24 24 576 mult_36 auto 43.5 MiB 7.88 20504 80.9 MiB 3.65 0.05 9.1229 -1058 -9.1229 9.1229 2.40 0.00906733 0.00812677 0.678164 0.596909 64 31638 44 1.58331e+07 8.51783e+06 2.26035e+06 3924.22 31.70 5.49587 4.92773 64454 586630 -1 26919 22 13444 15561 3181973 698261 0 0 3181973 698261 14385 13666 0 0 132429 121724 0 0 153159 140924 0 0 14388 13773 0 0 1442820 201630 0 0 1424792 206544 0 0 14385 0 0 967 6371 7613 19848 1233 24 9.25032 9.25032 -1725.68 -9.25032 0 0 2.84938e+06 4946.85 1.02 1.58 0.71 -1 -1 1.02 0.533633 0.488701 1576 988 950 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_52.v common 47.04 vpr 80.57 MiB 0.41 17396 -1 -1 1 0.84 -1 -1 39112 -1 -1 215 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82504 22 19 4598 3308 1 2717 270 24 24 576 mult_36 auto 43.3 MiB 8.80 18601 80.6 MiB 2.76 0.05 8.97446 -1039.07 -8.97446 8.97446 2.48 0.00893596 0.00789895 0.542862 0.477777 58 30901 47 1.58331e+07 8.57421e+06 2.08734e+06 3623.85 23.11 3.50886 3.13792 62154 534210 -1 25023 22 15497 18202 3107801 718145 0 0 3107801 718145 16629 15784 0 0 144659 132774 0 0 172787 156216 0 0 16630 15843 0 0 1375153 200132 0 0 1381943 197396 0 0 16629 0 0 1158 9120 9013 22467 1695 469 9.59137 9.59137 -1943.03 -9.59137 0 0 2.61600e+06 4541.67 1.35 1.61 0.65 -1 -1 1.35 0.548137 0.49794 1605 1007 969 19 0 0 From f6d61f264ed823c3bc560e3c2d5665872d1fbacb Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 4 Apr 2023 16:21:39 -0400 Subject: [PATCH 48/81] golden results updated for multless_consts using odin-ii --- .../multless_consts/config/golden_results.txt | 2050 ++++++++--------- 1 file changed, 1025 insertions(+), 1025 deletions(-) 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 28129673dfe..911b6dfc816 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 6.57 vpr 62.88 MiB 0.03 6988 -1 -1 14 0.26 -1 -1 36012 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64392 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.4 MiB 0.24 1333 62.9 MiB 0.04 0.00 6.73056 -137.413 -6.73056 6.73056 0.66 0.000241054 0.000193515 0.0104283 0.00878495 30 3242 24 6.55708e+06 313430 526063. 1820.29 3.88 0.122861 0.106782 2667 22 1368 4161 187118 45805 7.0025 7.0025 -153.289 -7.0025 0 0 666494. 2306.21 0.21 0.05 0.0173763 0.0157122 186 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 7.09 vpr 62.89 MiB 0.03 6996 -1 -1 14 0.27 -1 -1 35804 -1 -1 30 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64404 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 24.3 MiB 0.42 1265 62.9 MiB 0.06 0.00 6.82684 -136.147 -6.82684 6.82684 0.76 0.000231005 0.000189568 0.0145394 0.0120415 26 4698 49 6.55708e+06 361650 477104. 1650.88 4.01 0.084682 0.0734355 3302 25 1937 5549 473185 137669 7.54803 7.54803 -160.948 -7.54803 0 0 585099. 2024.56 0.19 0.10 0.0193249 0.0173556 189 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 5.15 vpr 62.98 MiB 0.02 7164 -1 -1 11 0.21 -1 -1 35880 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64488 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 24.6 MiB 0.34 1405 63.0 MiB 0.09 0.00 5.32932 -118.365 -5.32932 5.32932 0.67 0.00025269 0.000211163 0.0202223 0.0166459 30 4087 45 6.55708e+06 301375 526063. 1820.29 2.27 0.0874004 0.0759568 3173 18 1479 4907 262146 59492 5.58398 5.58398 -137.079 -5.58398 0 0 666494. 2306.21 0.22 0.07 0.0170796 0.0155517 180 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 4.98 vpr 63.04 MiB 0.04 6976 -1 -1 12 0.35 -1 -1 36052 -1 -1 29 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64552 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.5 MiB 0.31 1349 63.0 MiB 0.08 0.00 6.38724 -120.928 -6.38724 6.38724 0.78 0.000296804 0.000252664 0.0162433 0.014233 30 3720 38 6.55708e+06 349595 526063. 1820.29 1.83 0.0770194 0.0676975 2969 21 1369 4309 241272 56414 6.78964 6.78964 -139.576 -6.78964 0 0 666494. 2306.21 0.23 0.06 0.0179708 0.016329 185 180 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 11.17 vpr 63.43 MiB 0.04 7036 -1 -1 13 0.32 -1 -1 36316 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64948 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.8 MiB 0.40 1738 63.4 MiB 0.07 0.00 6.6791 -141.354 -6.6791 6.6791 0.75 0.000276368 0.00022875 0.0158365 0.0133409 30 4269 43 6.55708e+06 385760 526063. 1820.29 7.83 0.156747 0.137212 3603 18 1845 5497 293987 67454 7.18684 7.18684 -163.259 -7.18684 0 0 666494. 2306.21 0.22 0.08 0.0201895 0.0184745 223 222 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 14.81 vpr 63.04 MiB 0.02 7052 -1 -1 12 0.27 -1 -1 36120 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64548 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.5 MiB 0.49 1574 63.0 MiB 0.10 0.00 6.2421 -128.207 -6.2421 6.2421 0.77 0.000254274 0.000208627 0.0219441 0.0184287 28 4836 50 6.55708e+06 409870 500653. 1732.36 11.67 0.202891 0.17725 3983 26 2160 7006 705418 212336 7.11504 7.11504 -161.678 -7.11504 0 0 612192. 2118.31 0.19 0.13 0.0197428 0.0177657 209 204 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.12 vpr 62.49 MiB 0.03 6752 -1 -1 12 0.18 -1 -1 35728 -1 -1 27 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63992 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 24.0 MiB 0.27 887 62.5 MiB 0.05 0.00 5.69558 -101.029 -5.69558 5.69558 0.97 0.000172939 0.000140459 0.01231 0.0102479 30 2672 29 6.55708e+06 325485 526063. 1820.29 1.07 0.0567032 0.0494098 2020 16 1013 2790 131039 32677 5.89678 5.89678 -116.2 -5.89678 0 0 666494. 2306.21 0.23 0.04 0.0123476 0.011255 136 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.02 vpr 62.61 MiB 0.03 7048 -1 -1 11 0.16 -1 -1 36020 -1 -1 28 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64116 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1237 62.6 MiB 0.07 0.00 5.22138 -108.672 -5.22138 5.22138 0.68 0.000221327 0.00018234 0.0148808 0.0123798 34 3534 41 6.55708e+06 337540 585099. 2024.56 2.12 0.100632 0.087783 2819 17 1135 3558 219509 50450 5.70218 5.70218 -130.323 -5.70218 0 0 742403. 2568.87 0.35 0.06 0.0150997 0.0137734 175 171 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 4.08 vpr 62.52 MiB 0.02 6732 -1 -1 12 0.17 -1 -1 35864 -1 -1 25 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64020 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1146 62.5 MiB 0.06 0.00 5.69818 -123.302 -5.69818 5.69818 0.69 0.000194262 0.000157407 0.0141363 0.0116711 28 3023 44 6.55708e+06 301375 500653. 1732.36 1.36 0.0695467 0.0607697 2629 19 1022 2649 223232 67401 6.17898 6.17898 -143.655 -6.17898 0 0 612192. 2118.31 0.22 0.07 0.0146299 0.0132965 145 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.95 vpr 62.50 MiB 0.02 6876 -1 -1 13 0.18 -1 -1 36084 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64004 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1246 62.5 MiB 0.09 0.00 6.22784 -135.519 -6.22784 6.22784 0.70 0.000210946 0.000171613 0.0185682 0.0153862 28 3591 47 6.55708e+06 301375 500653. 1732.36 2.09 0.0760453 0.0660011 2939 21 1250 3370 283599 86282 6.42904 6.42904 -160.701 -6.42904 0 0 612192. 2118.31 0.20 0.07 0.0160595 0.0145066 162 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 3.85 vpr 62.12 MiB 0.03 6928 -1 -1 12 0.17 -1 -1 36008 -1 -1 22 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63616 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.7 MiB 0.31 987 62.1 MiB 0.04 0.00 5.98944 -120.357 -5.98944 5.98944 0.76 0.00018909 0.000156196 0.00948558 0.00797166 28 2848 24 6.55708e+06 265210 500653. 1732.36 0.91 0.0514507 0.0452172 2287 16 932 2223 131125 31244 6.22984 6.22984 -140.786 -6.22984 0 0 612192. 2118.31 0.22 0.05 0.01424 0.0131889 132 126 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 8.91 vpr 62.33 MiB 0.02 6744 -1 -1 12 0.14 -1 -1 36120 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63824 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1102 62.3 MiB 0.06 0.00 5.45978 -122.073 -5.45978 5.45978 0.80 0.00018164 0.000147461 0.0137612 0.0115971 30 3068 47 6.55708e+06 253155 526063. 1820.29 6.02 0.105031 0.0906584 2291 14 965 2747 142735 34398 6.02158 6.02158 -138.121 -6.02158 0 0 666494. 2306.21 0.31 0.04 0.011574 0.0106051 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 4.68 vpr 62.77 MiB 0.03 7088 -1 -1 13 0.27 -1 -1 36280 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64272 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.6 MiB 0.31 1499 62.8 MiB 0.05 0.00 6.5217 -134.821 -6.5217 6.5217 0.73 0.00027965 0.000223098 0.0116585 0.00982595 28 4028 29 6.55708e+06 361650 500653. 1732.36 1.67 0.0716068 0.0626563 3406 19 1739 5046 304606 69833 6.8405 6.8405 -156.31 -6.8405 0 0 612192. 2118.31 0.22 0.08 0.0206392 0.0187403 212 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 5.62 vpr 62.91 MiB 0.02 7100 -1 -1 14 0.32 -1 -1 36372 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64416 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1548 62.9 MiB 0.07 0.00 7.13542 -149.195 -7.13542 7.13542 0.73 0.000267679 0.000221272 0.0166641 0.0138938 36 3840 22 6.55708e+06 349595 612192. 2118.31 2.37 0.130262 0.114386 3274 18 1496 4132 227130 54190 7.77822 7.77822 -174.53 -7.77822 0 0 782063. 2706.10 0.26 0.07 0.0209347 0.0190572 208 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.37 vpr 62.44 MiB 0.06 6852 -1 -1 11 0.17 -1 -1 35752 -1 -1 29 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63940 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1072 62.4 MiB 0.06 0.00 5.44952 -107.528 -5.44952 5.44952 0.69 0.00020239 0.00016768 0.012258 0.01021 26 3479 44 6.55708e+06 349595 477104. 1650.88 2.16 0.0717343 0.0625746 2779 57 2160 6573 1248367 683723 5.93032 5.93032 -130.969 -5.93032 0 0 585099. 2024.56 0.20 0.35 0.039585 0.0359263 160 149 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 5.60 vpr 62.79 MiB 0.02 6968 -1 -1 12 0.27 -1 -1 36212 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64300 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.6 MiB 0.52 1628 62.8 MiB 0.07 0.00 6.2421 -133.211 -6.2421 6.2421 0.71 0.000257068 0.00021122 0.0147569 0.0123602 34 4377 45 6.55708e+06 409870 585099. 2024.56 2.42 0.136819 0.121061 3589 18 1580 4854 287689 64943 6.6027 6.6027 -151.397 -6.6027 0 0 742403. 2568.87 0.24 0.07 0.0193627 0.0177072 213 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 8.31 vpr 62.78 MiB 0.04 7004 -1 -1 13 0.25 -1 -1 35872 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64284 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1503 62.8 MiB 0.07 0.00 6.9567 -144.997 -6.9567 6.9567 0.86 0.000262322 0.000215171 0.0163753 0.0136486 30 3670 25 6.55708e+06 385760 526063. 1820.29 5.13 0.131441 0.115017 2963 17 1287 3857 181405 43050 7.3173 7.3173 -162.261 -7.3173 0 0 666494. 2306.21 0.23 0.06 0.0185525 0.0170084 217 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.03 vpr 62.17 MiB 0.02 6964 -1 -1 12 0.15 -1 -1 35892 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63664 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.7 MiB 0.63 1055 62.2 MiB 0.06 0.00 5.7613 -128.29 -5.7613 5.7613 0.73 0.000275855 0.000234208 0.0101868 0.00897867 30 2677 50 6.55708e+06 265210 526063. 1820.29 0.95 0.0627146 0.0547655 2258 15 1011 2895 147030 35286 5.95024 5.95024 -144.347 -5.95024 0 0 666494. 2306.21 0.22 0.04 0.0127042 0.011627 139 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.43 vpr 62.11 MiB 0.01 6584 -1 -1 10 0.09 -1 -1 35316 -1 -1 20 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63604 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.5 MiB 0.11 822 62.1 MiB 0.04 0.00 4.56326 -101.135 -4.56326 4.56326 0.68 0.000151114 0.000123502 0.00702309 0.00577665 36 1952 16 6.55708e+06 241100 612192. 2118.31 1.98 0.0633651 0.0564498 1651 16 626 1607 86261 20652 4.68346 4.68346 -115.324 -4.68346 0 0 782063. 2706.10 0.26 0.03 0.00868886 0.00792156 96 85 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 3.79 vpr 62.53 MiB 0.02 6880 -1 -1 13 0.16 -1 -1 36064 -1 -1 24 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64028 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1091 62.5 MiB 0.04 0.00 5.86724 -126.544 -5.86724 5.86724 0.75 0.000190856 0.000157088 0.00842514 0.00713621 32 2859 40 6.55708e+06 289320 554710. 1919.41 0.93 0.0564039 0.0494431 2454 18 1146 3069 188037 44718 6.45598 6.45598 -150.208 -6.45598 0 0 701300. 2426.64 0.25 0.10 0.0225972 0.0212457 139 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.42 vpr 62.93 MiB 0.03 7096 -1 -1 13 0.29 -1 -1 36032 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64444 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.8 MiB 0.35 1470 62.9 MiB 0.05 0.00 6.38924 -129.548 -6.38924 6.38924 0.78 0.000268791 0.000217223 0.0110475 0.00938507 34 4031 45 6.55708e+06 373705 585099. 2024.56 2.18 0.127016 0.104484 3285 21 1702 5340 294277 68811 6.6001 6.6001 -148.136 -6.6001 0 0 742403. 2568.87 0.24 0.08 0.0205091 0.0186343 208 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 8.71 vpr 62.68 MiB 0.07 6992 -1 -1 13 0.30 -1 -1 36120 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64188 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.2 MiB 0.48 1623 62.7 MiB 0.08 0.00 6.4779 -135.682 -6.4779 6.4779 0.76 0.000246573 0.000201285 0.0204981 0.0182435 36 4229 44 6.55708e+06 409870 612192. 2118.31 5.13 0.127578 0.112022 3555 31 2218 7717 690291 258399 6.78704 6.78704 -153.966 -6.78704 0 0 782063. 2706.10 0.28 0.17 0.0267655 0.0240888 207 204 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.99 vpr 61.71 MiB 0.03 6736 -1 -1 9 0.08 -1 -1 35396 -1 -1 21 26 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63188 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 23.3 MiB 0.30 759 61.7 MiB 0.03 0.00 3.89854 -79.7367 -3.89854 3.89854 0.70 0.000117808 9.5409e-05 0.00519955 0.00434123 26 1994 24 6.55708e+06 253155 477104. 1650.88 1.17 0.0316493 0.0273619 1667 54 672 1992 582901 403691 4.08748 4.08748 -92.0083 -4.08748 0 0 585099. 2024.56 0.23 0.18 0.020028 0.0177367 83 66 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 4.78 vpr 63.09 MiB 0.04 7004 -1 -1 13 0.31 -1 -1 35960 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64608 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1505 63.1 MiB 0.04 0.00 6.6811 -131.509 -6.6811 6.6811 0.88 0.00028774 0.000241987 0.00847815 0.00721977 36 3493 31 6.55708e+06 361650 612192. 2118.31 1.61 0.0983565 0.0859073 3005 19 1469 4172 225152 52630 6.9607 6.9607 -150.488 -6.9607 0 0 782063. 2706.10 0.26 0.07 0.0195115 0.0177305 211 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 5.06 vpr 61.96 MiB 0.01 6632 -1 -1 8 0.07 -1 -1 35420 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63444 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 23.3 MiB 0.19 455 62.0 MiB 0.04 0.00 3.72586 -72.9404 -3.72586 3.72586 0.69 0.000119721 9.5965e-05 0.00838391 0.00688698 30 1378 31 6.55708e+06 204935 526063. 1820.29 2.57 0.060468 0.0518825 1070 20 567 1195 62358 22906 3.8756 3.8756 -87.2936 -3.8756 0 0 666494. 2306.21 0.28 0.03 0.0094323 0.00858926 77 60 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.30 vpr 62.47 MiB 0.04 6964 -1 -1 15 0.23 -1 -1 36536 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63972 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1207 62.5 MiB 0.14 0.00 6.92515 -135.916 -6.92515 6.92515 0.69 0.000236022 0.000194738 0.0181753 0.0152571 28 3409 30 6.55708e+06 301375 500653. 1732.36 2.16 0.0716003 0.0624636 2860 17 1273 3565 210359 49178 7.76915 7.76915 -164.719 -7.76915 0 0 612192. 2118.31 0.21 0.12 0.016441 0.0150572 161 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.95 vpr 62.73 MiB 0.02 6944 -1 -1 12 0.25 -1 -1 35728 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64240 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.3 MiB 0.23 1591 62.7 MiB 0.07 0.00 6.14118 -129.825 -6.14118 6.14118 0.71 0.000283395 0.000236011 0.0152591 0.0129081 36 3869 29 6.55708e+06 373705 612192. 2118.31 3.73 0.115982 0.101274 3350 17 1434 4648 262864 58986 6.25938 6.25938 -147.599 -6.25938 0 0 782063. 2706.10 0.25 0.07 0.0187903 0.0172335 218 214 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 4.68 vpr 62.95 MiB 0.03 6952 -1 -1 13 0.28 -1 -1 36480 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64456 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1373 62.9 MiB 0.05 0.00 5.95024 -126.778 -5.95024 5.95024 0.82 0.000279318 0.00023455 0.0113258 0.00953648 30 3412 32 6.55708e+06 337540 526063. 1820.29 1.46 0.0690762 0.0604498 2899 17 1446 4609 225682 53201 6.4825 6.4825 -147.638 -6.4825 0 0 666494. 2306.21 0.22 0.06 0.0166546 0.015185 196 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 4.19 vpr 62.50 MiB 0.03 6764 -1 -1 12 0.15 -1 -1 35524 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63996 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1212 62.5 MiB 0.04 0.00 5.47506 -123.344 -5.47506 5.47506 0.70 0.000226508 0.000189937 0.00990483 0.00838373 28 3060 22 6.55708e+06 265210 500653. 1732.36 1.25 0.0633191 0.0566358 2661 16 1091 2869 189484 46154 5.71546 5.71546 -141.959 -5.71546 0 0 612192. 2118.31 0.22 0.05 0.0141629 0.0129356 146 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 3.74 vpr 62.39 MiB 0.02 6904 -1 -1 11 0.15 -1 -1 35936 -1 -1 23 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63888 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.9 MiB 0.17 1030 62.4 MiB 0.06 0.00 4.96872 -109.91 -4.96872 4.96872 0.72 0.000183908 0.000151352 0.0135459 0.0112091 28 2648 22 6.55708e+06 277265 500653. 1732.36 0.98 0.0528295 0.0458063 2327 23 924 2536 212985 82225 5.61352 5.61352 -128.013 -5.61352 0 0 612192. 2118.31 0.25 0.09 0.0151395 0.0136572 128 122 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.64 vpr 62.43 MiB 0.04 6980 -1 -1 11 0.16 -1 -1 35608 -1 -1 27 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63932 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.8 MiB 0.27 1128 62.4 MiB 0.04 0.00 5.35686 -106.715 -5.35686 5.35686 0.74 0.000189441 0.000155803 0.0094152 0.0079514 28 3251 28 6.55708e+06 325485 500653. 1732.36 1.52 0.0574501 0.050659 2614 44 1166 3481 643490 365516 5.89112 5.89112 -126.158 -5.89112 0 0 612192. 2118.31 0.28 0.19 0.0334722 0.0307539 142 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 3.97 vpr 62.73 MiB 0.02 6588 -1 -1 12 0.17 -1 -1 35588 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64232 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1344 62.7 MiB 0.04 0.00 5.98944 -134.133 -5.98944 5.98944 0.73 0.000216522 0.000177553 0.00948913 0.00795019 32 3747 38 6.55708e+06 337540 554710. 1919.41 1.13 0.0698624 0.0608068 3225 19 1813 4810 345240 78454 6.61998 6.61998 -163.539 -6.61998 0 0 701300. 2426.64 0.23 0.08 0.0174812 0.0159005 180 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 3.94 vpr 62.53 MiB 0.02 6840 -1 -1 11 0.17 -1 -1 35936 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64032 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1028 62.5 MiB 0.04 0.00 5.31506 -113.372 -5.31506 5.31506 0.76 0.00021738 0.000178689 0.00900588 0.0075824 28 2897 43 6.55708e+06 277265 500653. 1732.36 1.22 0.061288 0.0536355 2431 20 1423 3850 197087 48981 5.71946 5.71946 -137.067 -5.71946 0 0 612192. 2118.31 0.21 0.06 0.0181971 0.0167706 147 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 4.01 vpr 62.33 MiB 0.03 6912 -1 -1 10 0.14 -1 -1 36088 -1 -1 24 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63828 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.21 882 62.3 MiB 0.06 0.00 4.89232 -98.6889 -4.89232 4.89232 0.69 0.00018553 0.000151695 0.0141032 0.0117044 28 2710 34 6.55708e+06 289320 500653. 1732.36 1.20 0.0618183 0.0535333 2124 16 925 2560 145797 36126 5.30638 5.30638 -118.136 -5.30638 0 0 612192. 2118.31 0.31 0.05 0.014735 0.0136556 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.10 vpr 63.02 MiB 0.02 7012 -1 -1 13 0.33 -1 -1 36296 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64532 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.8 MiB 0.31 1581 63.0 MiB 0.09 0.00 6.2003 -126.812 -6.2003 6.2003 0.70 0.000348751 0.00028076 0.0212006 0.01763 36 3958 33 6.55708e+06 397815 612192. 2118.31 2.98 0.143307 0.125847 3220 16 1381 4582 251158 57519 6.7621 6.7621 -149.875 -6.7621 0 0 782063. 2706.10 0.26 0.07 0.0200824 0.0184615 239 238 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.59 vpr 62.69 MiB 0.03 6892 -1 -1 13 0.33 -1 -1 36488 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64196 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.2 MiB 0.39 1495 62.7 MiB 0.06 0.00 6.46824 -141.629 -6.46824 6.46824 0.73 0.000313563 0.000259962 0.0133058 0.0112201 36 3956 48 6.55708e+06 349595 612192. 2118.31 3.41 0.144998 0.117101 3195 18 1638 5352 310150 70217 6.90984 6.90984 -160.784 -6.90984 0 0 782063. 2706.10 0.26 0.08 0.0205434 0.0187898 203 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 4.79 vpr 62.54 MiB 0.03 6764 -1 -1 12 0.15 -1 -1 35940 -1 -1 25 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64040 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1185 62.5 MiB 0.07 0.00 5.42258 -117.477 -5.42258 5.42258 0.77 0.000215106 0.000173691 0.014701 0.0123335 28 3237 35 6.55708e+06 301375 500653. 1732.36 1.61 0.0666075 0.0578738 2769 24 1235 3629 510646 192592 6.05312 6.05312 -141.825 -6.05312 0 0 612192. 2118.31 0.21 0.19 0.0203859 0.018008 150 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 4.79 vpr 62.98 MiB 0.04 6916 -1 -1 12 0.25 -1 -1 36064 -1 -1 34 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64488 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.7 MiB 0.21 1397 63.0 MiB 0.06 0.00 6.5955 -134.912 -6.5955 6.5955 0.73 0.000274478 0.000221094 0.0137749 0.011458 34 3744 30 6.55708e+06 409870 585099. 2024.56 1.86 0.113954 0.0992295 3175 19 1366 4136 271017 68139 7.0763 7.0763 -156.285 -7.0763 0 0 742403. 2568.87 0.24 0.08 0.0199678 0.0182029 219 217 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 4.22 vpr 62.78 MiB 0.08 7156 -1 -1 14 0.33 -1 -1 36128 -1 -1 28 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64288 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1371 62.8 MiB 0.08 0.00 6.6745 -130.149 -6.6745 6.6745 0.78 0.000250605 0.000201189 0.0179487 0.0149647 30 3519 23 6.55708e+06 337540 526063. 1820.29 1.10 0.0878474 0.0780922 2879 18 1424 4203 202916 48393 7.2755 7.2755 -153.487 -7.2755 0 0 666494. 2306.21 0.27 0.06 0.019421 0.0178594 194 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.74 vpr 62.48 MiB 0.03 6908 -1 -1 13 0.28 -1 -1 36440 -1 -1 28 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63976 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1322 62.5 MiB 0.06 0.00 6.46824 -135.599 -6.46824 6.46824 0.74 0.000240848 0.000199673 0.0128029 0.0107539 36 3334 19 6.55708e+06 337540 612192. 2118.31 1.77 0.106583 0.0940655 2939 18 1346 3729 199311 47206 6.50744 6.50744 -149.242 -6.50744 0 0 782063. 2706.10 0.25 0.06 0.0175845 0.0159842 181 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.90 vpr 63.12 MiB 0.02 7032 -1 -1 12 0.24 -1 -1 36204 -1 -1 30 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64636 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 24.6 MiB 0.48 1393 63.1 MiB 0.09 0.00 5.83204 -120.543 -5.83204 5.83204 0.72 0.000233373 0.000191309 0.0189925 0.0157886 36 3567 50 6.55708e+06 361650 612192. 2118.31 3.59 0.152299 0.125172 2998 17 1269 3990 220993 50425 6.15344 6.15344 -141.604 -6.15344 0 0 782063. 2706.10 0.27 0.07 0.0192313 0.0177029 189 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.36 vpr 62.64 MiB 0.02 7008 -1 -1 12 0.19 -1 -1 36036 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64148 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1236 62.6 MiB 0.06 0.00 5.8025 -118.502 -5.8025 5.8025 0.73 0.000239094 0.000191353 0.0145987 0.0122661 28 3404 44 6.55708e+06 289320 500653. 1732.36 1.56 0.0800174 0.0654868 2877 20 1298 3698 223423 52123 6.31284 6.31284 -142.555 -6.31284 0 0 612192. 2118.31 0.20 0.06 0.0162263 0.014684 172 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.13 vpr 63.15 MiB 0.02 7216 -1 -1 14 0.45 -1 -1 36408 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64664 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.9 MiB 0.50 1748 63.1 MiB 0.08 0.00 6.8803 -142.771 -6.8803 6.8803 0.70 0.000321339 0.000268446 0.0185152 0.0157433 36 4414 26 6.55708e+06 409870 612192. 2118.31 4.54 0.134129 0.117162 3959 16 1649 5597 342691 75239 7.2409 7.2409 -163.22 -7.2409 0 0 782063. 2706.10 0.39 0.08 0.0221155 0.0202471 245 244 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.80 vpr 62.71 MiB 0.02 6728 -1 -1 11 0.19 -1 -1 35872 -1 -1 26 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64212 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 24.2 MiB 0.21 1296 62.7 MiB 0.05 0.00 5.41032 -114.619 -5.41032 5.41032 0.71 0.000230733 0.000173673 0.0113163 0.00945301 36 3158 19 6.55708e+06 313430 612192. 2118.31 2.14 0.0839803 0.0737754 2600 18 1093 3059 173216 39593 5.77092 5.77092 -131.822 -5.77092 0 0 782063. 2706.10 0.26 0.05 0.0150322 0.0137384 160 153 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 5.39 vpr 63.13 MiB 0.02 7036 -1 -1 13 0.26 -1 -1 36056 -1 -1 27 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64648 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 24.6 MiB 0.36 1335 63.1 MiB 0.05 0.00 6.57116 -129.003 -6.57116 6.57116 0.79 0.000229039 0.000187888 0.0115071 0.00967433 36 3442 21 6.55708e+06 325485 612192. 2118.31 2.17 0.0943879 0.0817619 2874 15 1216 3941 208067 48863 6.69136 6.69136 -144.505 -6.69136 0 0 782063. 2706.10 0.25 0.05 0.0178026 0.016523 177 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 5.02 vpr 63.39 MiB 0.03 7060 -1 -1 12 0.27 -1 -1 36160 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64912 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.8 MiB 0.34 1512 63.4 MiB 0.07 0.00 5.93798 -129.639 -5.93798 5.93798 0.79 0.000333909 0.000275525 0.0250885 0.022894 30 4046 42 6.55708e+06 409870 526063. 1820.29 1.97 0.0975063 0.0868767 3247 17 1378 4941 233859 54770 6.13918 6.13918 -146.324 -6.13918 0 0 666494. 2306.21 0.22 0.07 0.0195429 0.0179027 227 223 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 4.05 vpr 62.88 MiB 0.03 7028 -1 -1 13 0.24 -1 -1 36120 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64392 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.4 MiB 0.24 1379 62.9 MiB 0.06 0.00 6.06584 -128.577 -6.06584 6.06584 0.79 0.000250492 0.000208532 0.0131305 0.0109183 30 3221 43 6.55708e+06 337540 526063. 1820.29 1.11 0.0756267 0.065896 2740 15 1242 3723 179895 43184 6.87064 6.87064 -155.276 -6.87064 0 0 666494. 2306.21 0.23 0.05 0.0162234 0.0148471 184 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 4.70 vpr 62.92 MiB 0.02 6964 -1 -1 13 0.22 -1 -1 36168 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64432 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1278 62.9 MiB 0.06 0.00 5.8815 -129.166 -5.8815 5.8815 0.69 0.000376452 0.000290947 0.0129924 0.0108319 28 3489 26 6.55708e+06 301375 500653. 1732.36 1.83 0.0629591 0.0548193 3062 26 1255 3867 342244 116331 6.6419 6.6419 -152.136 -6.6419 0 0 612192. 2118.31 0.26 0.11 0.0252933 0.0201671 175 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 5.53 vpr 62.96 MiB 0.03 7096 -1 -1 12 0.28 -1 -1 36108 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64468 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1456 63.0 MiB 0.07 0.00 5.89878 -128.372 -5.89878 5.89878 0.70 0.000256912 0.000211382 0.01592 0.0132849 38 3481 20 6.55708e+06 373705 638502. 2209.35 2.04 0.115049 0.0991361 2979 16 1196 4268 218305 48581 6.25938 6.25938 -145.681 -6.25938 0 0 851065. 2944.86 0.28 0.06 0.0178905 0.0164203 205 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 11.50 vpr 62.79 MiB 0.03 7032 -1 -1 13 0.28 -1 -1 36072 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64296 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.3 MiB 0.33 1555 62.8 MiB 0.06 0.00 6.2003 -127.795 -6.2003 6.2003 0.71 0.000293307 0.000242781 0.0142136 0.0119635 30 3969 48 6.55708e+06 349595 526063. 1820.29 8.22 0.146405 0.127347 3149 21 1675 5422 294184 65787 6.67144 6.67144 -147.778 -6.67144 0 0 666494. 2306.21 0.23 0.09 0.0238193 0.0217424 205 204 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 4.26 vpr 62.90 MiB 0.02 6956 -1 -1 14 0.26 -1 -1 36004 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64412 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 24.2 MiB 0.43 1264 62.9 MiB 0.08 0.00 6.6353 -136.38 -6.6353 6.6353 0.78 0.000225585 0.000185542 0.0182265 0.0152162 30 3120 21 6.55708e+06 301375 526063. 1820.29 0.96 0.08119 0.0727394 2616 16 1048 3234 148762 35915 6.8757 6.8757 -152.058 -6.8757 0 0 666494. 2306.21 0.23 0.05 0.0150282 0.0137747 167 164 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 4.89 vpr 62.80 MiB 0.03 6992 -1 -1 13 0.26 -1 -1 35908 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64308 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.4 MiB 0.50 1489 62.8 MiB 0.05 0.00 6.85076 -137.81 -6.85076 6.85076 0.67 0.000257499 0.000213675 0.011295 0.00950613 36 3502 27 6.55708e+06 361650 612192. 2118.31 1.68 0.0989145 0.0863009 3186 16 1404 3970 225623 52394 7.21136 7.21136 -158.262 -7.21136 0 0 782063. 2706.10 0.29 0.06 0.0167398 0.0153684 199 198 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.22 vpr 63.07 MiB 0.02 7196 -1 -1 13 0.28 -1 -1 35744 -1 -1 32 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64580 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.7 MiB 0.29 1536 63.1 MiB 0.05 0.00 7.08656 -143.434 -7.08656 7.08656 0.69 0.00026339 0.000217523 0.0123584 0.01041 28 4504 28 6.55708e+06 385760 500653. 1732.36 2.27 0.0747913 0.0654604 3706 23 1608 5112 364771 96818 7.64835 7.64835 -167.66 -7.64835 0 0 612192. 2118.31 0.21 0.09 0.0214318 0.0193947 221 218 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 5.49 vpr 63.02 MiB 0.04 6996 -1 -1 12 0.31 -1 -1 35404 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64528 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.5 MiB 0.52 1656 63.0 MiB 0.08 0.00 6.39384 -137.204 -6.39384 6.39384 0.70 0.000323253 0.000263373 0.0183174 0.0154007 30 4561 41 6.55708e+06 385760 526063. 1820.29 2.16 0.089603 0.0778712 3533 25 1683 5468 444142 142287 6.63424 6.63424 -154.425 -6.63424 0 0 666494. 2306.21 0.27 0.12 0.0250024 0.0225862 231 229 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 3.64 vpr 62.14 MiB 0.04 6816 -1 -1 11 0.13 -1 -1 35628 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63632 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.8 MiB 0.19 1062 62.1 MiB 0.05 0.00 5.09152 -113.231 -5.09152 5.09152 0.69 0.00021799 0.000182236 0.0100405 0.00834072 30 2523 19 6.55708e+06 229045 526063. 1820.29 0.95 0.0506753 0.0444891 2111 15 903 2587 127422 30305 5.21172 5.21172 -125.495 -5.21172 0 0 666494. 2306.21 0.27 0.04 0.0109115 0.00991825 127 121 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 3.90 vpr 62.47 MiB 0.04 6928 -1 -1 13 0.19 -1 -1 35872 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63968 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1285 62.5 MiB 0.06 0.00 6.22584 -134.896 -6.22584 6.22584 0.71 0.000234404 0.000187794 0.0122808 0.0102295 30 3148 29 6.55708e+06 325485 526063. 1820.29 0.82 0.0584754 0.0508126 2423 16 1024 2872 131469 32098 6.58643 6.58643 -150.061 -6.58643 0 0 666494. 2306.21 0.23 0.04 0.0140836 0.0128889 156 150 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 11.26 vpr 63.03 MiB 0.02 7140 -1 -1 14 0.46 -1 -1 36056 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64544 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 25.2 MiB 0.36 1756 63.0 MiB 0.05 0.00 7.12836 -149.655 -7.12836 7.12836 0.72 0.000343698 0.00027942 0.0131056 0.0112044 30 4458 29 6.55708e+06 433980 526063. 1820.29 8.01 0.175012 0.142014 3753 19 1848 5580 284212 65829 7.36876 7.36876 -167.628 -7.36876 0 0 666494. 2306.21 0.24 0.08 0.025181 0.0230559 267 266 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 5.08 vpr 62.95 MiB 0.02 7036 -1 -1 13 0.33 -1 -1 36148 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64460 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.5 MiB 0.46 1498 62.9 MiB 0.05 0.00 6.5609 -144.302 -6.5609 6.5609 0.74 0.000303635 0.000252103 0.0122151 0.0103414 36 3519 16 6.55708e+06 373705 612192. 2118.31 1.77 0.117002 0.104241 3212 15 1358 3999 212312 49734 7.07124 7.07124 -162.646 -7.07124 0 0 782063. 2706.10 0.27 0.06 0.0193293 0.0178114 224 223 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 3.72 vpr 62.24 MiB 0.02 6988 -1 -1 11 0.16 -1 -1 36172 -1 -1 23 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63732 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.7 MiB 0.19 950 62.2 MiB 0.05 0.00 5.29978 -108.452 -5.29978 5.29978 0.69 0.000187069 0.00015249 0.0115267 0.00959446 30 2557 27 6.55708e+06 277265 526063. 1820.29 1.14 0.0583799 0.0476582 2041 14 894 2624 131768 31775 5.78058 5.78058 -128.169 -5.78058 0 0 666494. 2306.21 0.29 0.04 0.0114633 0.0105565 137 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 5.77 vpr 63.07 MiB 0.02 7228 -1 -1 15 0.43 -1 -1 36072 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64584 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.8 MiB 0.34 1720 63.1 MiB 0.07 0.00 7.60455 -150.338 -7.60455 7.60455 0.68 0.000325164 0.000271138 0.0152416 0.0129438 30 4696 47 6.55708e+06 397815 526063. 1820.29 2.49 0.101013 0.0887594 3709 29 1846 6075 498620 192748 7.80575 7.80575 -170.428 -7.80575 0 0 666494. 2306.21 0.23 0.15 0.032444 0.0292809 241 240 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.31 vpr 62.90 MiB 0.03 6884 -1 -1 13 0.32 -1 -1 36468 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64412 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.7 MiB 0.41 1432 62.9 MiB 0.08 0.00 6.1611 -126.998 -6.1611 6.1611 0.80 0.000265124 0.000217632 0.0193247 0.0161885 36 3729 32 6.55708e+06 349595 612192. 2118.31 2.98 0.129784 0.114662 3002 18 1500 4296 231550 54764 6.6419 6.6419 -149.041 -6.6419 0 0 782063. 2706.10 0.26 0.07 0.0202194 0.0184466 207 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.31 vpr 62.49 MiB 0.04 6688 -1 -1 11 0.12 -1 -1 35672 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63988 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1177 62.5 MiB 0.04 0.00 5.49838 -115.476 -5.49838 5.49838 0.69 0.000184407 0.000150347 0.00822256 0.00689542 34 2753 23 6.55708e+06 289320 585099. 2024.56 1.52 0.0722949 0.0631233 2405 13 932 2607 145558 33917 5.73878 5.73878 -133.303 -5.73878 0 0 742403. 2568.87 0.24 0.04 0.0116249 0.0107152 149 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 5.10 vpr 62.91 MiB 0.02 7260 -1 -1 12 0.30 -1 -1 36364 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64424 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 24.6 MiB 0.33 1499 62.9 MiB 0.06 0.00 6.01898 -128.423 -6.01898 6.01898 0.70 0.000253154 0.000207381 0.0129257 0.0108004 30 3854 47 6.55708e+06 373705 526063. 1820.29 1.84 0.0928746 0.0816883 3135 31 1470 4849 461803 195965 6.25938 6.25938 -146.837 -6.25938 0 0 666494. 2306.21 0.23 0.14 0.0290637 0.0260518 217 213 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.00 vpr 62.73 MiB 0.03 6628 -1 -1 12 0.20 -1 -1 35824 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64240 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1247 62.7 MiB 0.04 0.00 6.2813 -130.644 -6.2813 6.2813 0.68 0.000219429 0.000181781 0.00880888 0.00744854 28 3642 39 6.55708e+06 313430 500653. 1732.36 2.16 0.0642598 0.0562902 2977 18 1304 3649 237921 55715 6.62964 6.62964 -151.789 -6.62964 0 0 612192. 2118.31 0.21 0.06 0.0157185 0.0142073 164 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 3.94 vpr 62.40 MiB 0.02 6760 -1 -1 12 0.19 -1 -1 36032 -1 -1 21 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63896 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1000 62.4 MiB 0.04 0.00 6.02864 -122.752 -6.02864 6.02864 0.79 0.000192755 0.000157922 0.00841212 0.00710764 26 2641 20 6.55708e+06 253155 477104. 1650.88 1.10 0.0485476 0.0423585 2182 17 843 2456 136612 31984 6.26904 6.26904 -137.718 -6.26904 0 0 585099. 2024.56 0.21 0.04 0.0131698 0.0120084 139 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 5.08 vpr 62.88 MiB 0.04 7132 -1 -1 12 0.29 -1 -1 36256 -1 -1 32 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64388 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.4 MiB 0.25 1272 62.9 MiB 0.09 0.00 5.69758 -107.206 -5.69758 5.69758 0.96 0.000291337 0.000240723 0.0208273 0.017367 30 3790 26 6.55708e+06 385760 526063. 1820.29 1.59 0.0798113 0.069484 2791 16 1475 4422 214402 51459 6.23184 6.23184 -129.078 -6.23184 0 0 666494. 2306.21 0.22 0.06 0.017485 0.0160441 208 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 14.06 vpr 63.25 MiB 0.04 6904 -1 -1 14 0.34 -1 -1 35992 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64772 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.9 MiB 0.48 1652 63.3 MiB 0.07 0.00 6.89558 -144.72 -6.89558 6.89558 1.01 0.000336191 0.000273228 0.0157993 0.0132661 30 4532 49 6.55708e+06 385760 526063. 1820.29 10.28 0.172402 0.151181 3643 20 1800 5040 269249 61368 7.1207 7.1207 -164.784 -7.1207 0 0 666494. 2306.21 0.23 0.08 0.0424999 0.0405399 227 221 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.00 vpr 62.79 MiB 0.03 7072 -1 -1 12 0.24 -1 -1 36100 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64300 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.3 MiB 0.39 1385 62.8 MiB 0.09 0.00 6.10964 -130.022 -6.10964 6.10964 0.73 0.000261175 0.000216614 0.0167168 0.013776 28 3927 41 6.55708e+06 325485 500653. 1732.36 1.88 0.139543 0.128409 3279 18 1538 4385 255343 59566 6.23184 6.23184 -153.066 -6.23184 0 0 612192. 2118.31 0.21 0.07 0.0191711 0.0174611 192 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.84 vpr 62.16 MiB 0.04 6968 -1 -1 12 0.14 -1 -1 36208 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63656 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1128 62.2 MiB 0.04 0.00 5.37878 -116.91 -5.37878 5.37878 0.72 0.000185978 0.000152139 0.00864083 0.00722364 36 2422 26 6.55708e+06 277265 612192. 2118.31 1.69 0.0801995 0.0698823 2158 16 808 2448 129754 30525 5.85958 5.85958 -130.574 -5.85958 0 0 782063. 2706.10 0.25 0.04 0.0123286 0.0112897 133 126 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 4.76 vpr 62.84 MiB 0.02 6752 -1 -1 12 0.20 -1 -1 35412 -1 -1 25 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64352 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1071 62.8 MiB 0.07 0.00 5.98944 -115.364 -5.98944 5.98944 0.81 0.00024236 0.000202919 0.0166068 0.0138358 34 3172 38 6.55708e+06 301375 585099. 2024.56 1.53 0.104695 0.090892 2481 16 1131 3047 177388 44061 6.27364 6.27364 -135.352 -6.27364 0 0 742403. 2568.87 0.39 0.05 0.0147732 0.0135361 170 168 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 5.26 vpr 63.11 MiB 0.04 6916 -1 -1 11 0.19 -1 -1 35680 -1 -1 28 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64624 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 24.6 MiB 0.21 1407 63.1 MiB 0.08 0.00 5.45152 -116.207 -5.45152 5.45152 0.89 0.000239349 0.000197783 0.0196096 0.0164087 38 3264 21 6.55708e+06 337540 638502. 2209.35 2.18 0.104172 0.0907448 2803 14 1115 3739 197373 44008 5.69192 5.69192 -128.401 -5.69192 0 0 851065. 2944.86 0.27 0.06 0.0162752 0.0150105 189 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 4.69 vpr 62.56 MiB 0.04 7088 -1 -1 11 0.19 -1 -1 35908 -1 -1 28 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64064 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1259 62.6 MiB 0.06 0.00 5.50098 -101.945 -5.50098 5.50098 0.72 0.000215393 0.000177083 0.0134678 0.0111856 30 3197 31 6.55708e+06 337540 526063. 1820.29 1.73 0.0854938 0.0763592 2684 15 1086 3598 186108 43188 5.74138 5.74138 -115.329 -5.74138 0 0 666494. 2306.21 0.23 0.05 0.0150768 0.0138512 171 164 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 4.00 vpr 62.51 MiB 0.03 6956 -1 -1 13 0.18 -1 -1 35968 -1 -1 25 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64008 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.9 MiB 0.43 1097 62.5 MiB 0.07 0.00 6.3185 -125.232 -6.3185 6.3185 0.70 0.000196247 0.000161566 0.0166839 0.0139173 30 2644 29 6.55708e+06 301375 526063. 1820.29 0.93 0.059659 0.0518179 2340 15 956 2533 130404 30649 6.4387 6.4387 -140.277 -6.4387 0 0 666494. 2306.21 0.25 0.04 0.0120502 0.011086 142 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 7.11 vpr 62.71 MiB 0.03 6800 -1 -1 12 0.19 -1 -1 35932 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64216 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1290 62.7 MiB 0.05 0.00 5.90844 -129.521 -5.90844 5.90844 0.73 0.000226926 0.000186809 0.0108422 0.00917703 30 3170 31 6.55708e+06 325485 526063. 1820.29 3.94 0.128547 0.113711 2628 17 1161 3252 151693 37046 6.22984 6.22984 -149.08 -6.22984 0 0 666494. 2306.21 0.24 0.05 0.0161492 0.0147735 180 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.78 vpr 62.79 MiB 0.03 7040 -1 -1 13 0.29 -1 -1 36028 -1 -1 30 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64296 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.4 MiB 0.36 1283 62.8 MiB 0.09 0.00 6.5609 -128.722 -6.5609 6.5609 0.71 0.000245825 0.000202327 0.0203119 0.0168621 36 3029 25 6.55708e+06 361650 612192. 2118.31 1.64 0.10259 0.0888616 2613 17 1156 3508 178125 43159 6.9215 6.9215 -144.233 -6.9215 0 0 782063. 2706.10 0.28 0.05 0.0167969 0.0153752 195 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.44 vpr 62.93 MiB 0.03 7096 -1 -1 14 0.29 -1 -1 36084 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64444 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1514 62.9 MiB 0.08 0.00 6.5981 -136.847 -6.5981 6.5981 0.69 0.000282074 0.000234881 0.0187238 0.0158067 28 4180 44 6.55708e+06 373705 500653. 1732.36 2.12 0.0906759 0.0791964 3486 20 1683 5251 346749 85058 6.9979 6.9979 -164.596 -6.9979 0 0 612192. 2118.31 0.26 0.14 0.0320214 0.0300603 215 213 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 5.11 vpr 62.19 MiB 0.04 6952 -1 -1 14 0.27 -1 -1 36520 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63680 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1403 62.2 MiB 0.04 0.00 6.61036 -130.849 -6.61036 6.61036 0.75 0.000258128 0.000215077 0.0107948 0.00906713 40 2951 16 6.55708e+06 325485 666494. 2306.21 1.74 0.0889659 0.0778314 2980 17 1233 4134 245172 55550 6.73056 6.73056 -144.113 -6.73056 0 0 872365. 3018.56 0.28 0.07 0.0172232 0.0157978 183 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 9.55 vpr 62.69 MiB 0.02 6888 -1 -1 13 0.34 -1 -1 36380 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64196 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 24.1 MiB 0.36 1324 62.7 MiB 0.05 0.00 6.72796 -136.666 -6.72796 6.72796 0.73 0.000274816 0.000229613 0.011999 0.010215 30 3229 17 6.55708e+06 325485 526063. 1820.29 5.85 0.137928 0.12195 2830 17 1194 3568 167614 39706 7.20876 7.20876 -157.777 -7.20876 0 0 666494. 2306.21 0.22 0.05 0.017577 0.0160734 195 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 3.82 vpr 62.57 MiB 0.03 6848 -1 -1 13 0.16 -1 -1 36020 -1 -1 24 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64072 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1084 62.6 MiB 0.04 0.00 6.4367 -132.476 -6.4367 6.4367 0.70 0.000198606 0.000164005 0.00820867 0.00698255 32 3089 40 6.55708e+06 289320 554710. 1919.41 0.93 0.0593361 0.0514068 2543 17 983 2554 178253 41216 7.26584 7.26584 -159.315 -7.26584 0 0 701300. 2426.64 0.27 0.05 0.0143756 0.0132292 146 139 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.48 vpr 62.92 MiB 0.04 7080 -1 -1 13 0.44 -1 -1 36048 -1 -1 31 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64432 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.4 MiB 0.29 1381 62.9 MiB 0.07 0.00 6.73256 -134.646 -6.73256 6.73256 0.69 0.000267595 0.000215155 0.0163199 0.0136988 30 3834 43 6.55708e+06 373705 526063. 1820.29 1.99 0.0888878 0.0779716 3002 19 1518 4284 202267 49264 7.05396 7.05396 -153.304 -7.05396 0 0 666494. 2306.21 0.27 0.19 0.0506087 0.0488447 208 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.30 vpr 63.08 MiB 0.03 7240 -1 -1 14 0.29 -1 -1 35760 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64596 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.5 MiB 0.31 1400 63.1 MiB 0.06 0.00 6.37818 -136.604 -6.37818 6.37818 0.72 0.000260331 0.000217263 0.0136358 0.0115441 28 4138 47 6.55708e+06 361650 500653. 1732.36 3.11 0.0972799 0.0861841 3435 27 2185 6743 485020 121872 7.05758 7.05758 -159.776 -7.05758 0 0 612192. 2118.31 0.20 0.11 0.0232961 0.0209392 184 181 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 5.24 vpr 63.13 MiB 0.04 7000 -1 -1 12 0.26 -1 -1 36084 -1 -1 32 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64644 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1460 63.1 MiB 0.07 0.00 6.6765 -137.09 -6.6765 6.6765 0.79 0.000294152 0.000246913 0.0157519 0.0133599 34 3919 38 6.55708e+06 385760 585099. 2024.56 1.96 0.119272 0.104485 3313 19 1628 4979 302526 68566 7.1579 7.1579 -154.561 -7.1579 0 0 742403. 2568.87 0.25 0.08 0.0192039 0.017525 203 200 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 3.98 vpr 62.93 MiB 0.06 7036 -1 -1 13 0.22 -1 -1 36184 -1 -1 28 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64440 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 24.5 MiB 0.25 1288 62.9 MiB 0.05 0.00 6.3231 -113.21 -6.3231 6.3231 0.72 0.000252271 0.00020655 0.0124586 0.0104253 30 3182 22 6.55708e+06 337540 526063. 1820.29 1.09 0.0651418 0.0563322 2589 19 1102 3307 154924 38008 6.4433 6.4433 -128.507 -6.4433 0 0 666494. 2306.21 0.23 0.05 0.017574 0.0160147 186 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 4.95 vpr 62.80 MiB 0.03 7088 -1 -1 14 0.35 -1 -1 36104 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64304 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.5 MiB 0.79 1643 62.8 MiB 0.06 0.00 7.37842 -145.596 -7.37842 7.37842 0.72 0.000286717 0.000237725 0.0121647 0.0102757 30 3970 27 6.55708e+06 385760 526063. 1820.29 1.27 0.0979608 0.0853589 3256 20 1559 4729 221538 53326 7.61882 7.61882 -159.852 -7.61882 0 0 666494. 2306.21 0.25 0.18 0.0391333 0.037232 220 215 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 3.95 vpr 62.69 MiB 0.04 7156 -1 -1 11 0.28 -1 -1 35900 -1 -1 29 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64192 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 24.4 MiB 0.34 1188 62.7 MiB 0.06 0.00 5.63084 -108.538 -5.63084 5.63084 0.73 0.000244866 0.000203783 0.0137828 0.0116566 30 2860 18 6.55708e+06 349595 526063. 1820.29 0.86 0.0618391 0.0543495 2445 15 985 3298 159098 38892 5.99144 5.99144 -124.96 -5.99144 0 0 666494. 2306.21 0.23 0.05 0.0154765 0.0142203 174 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.03 vpr 62.49 MiB 0.04 6852 -1 -1 13 0.15 -1 -1 35804 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63988 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1110 62.5 MiB 0.03 0.00 6.2793 -138.058 -6.2793 6.2793 1.04 0.000186166 0.000152383 0.00724274 0.00613862 26 3188 35 6.55708e+06 277265 477104. 1650.88 1.78 0.0596886 0.0528471 2754 23 1206 2973 303358 107569 6.66944 6.66944 -162.209 -6.66944 0 0 585099. 2024.56 0.21 0.09 0.016196 0.0146269 142 130 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 4.95 vpr 62.82 MiB 0.07 7148 -1 -1 14 0.24 -1 -1 36172 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64324 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.3 MiB 0.22 1436 62.8 MiB 0.06 0.00 6.69136 -136.374 -6.69136 6.69136 0.71 0.000233454 0.000191703 0.0138065 0.0115766 28 4024 42 6.55708e+06 325485 500653. 1732.36 1.86 0.0870432 0.0771507 3220 19 1452 4353 258253 58218 7.05196 7.05196 -158.498 -7.05196 0 0 612192. 2118.31 0.20 0.07 0.0177871 0.0161328 183 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 4.88 vpr 62.91 MiB 0.03 6948 -1 -1 15 0.37 -1 -1 36352 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64420 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.7 MiB 0.56 1597 62.9 MiB 0.08 0.00 7.73501 -162.998 -7.73501 7.73501 0.70 0.000328755 0.000280227 0.018648 0.0156465 30 4146 24 6.55708e+06 385760 526063. 1820.29 1.31 0.0924619 0.0820924 3455 17 1571 4354 219901 51556 7.97541 7.97541 -182.136 -7.97541 0 0 666494. 2306.21 0.22 0.07 0.0219851 0.020103 228 227 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.13 vpr 62.37 MiB 0.03 6684 -1 -1 11 0.15 -1 -1 35408 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63868 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.9 MiB 0.72 1079 62.4 MiB 0.03 0.00 5.59164 -116.009 -5.59164 5.59164 0.67 0.000177676 0.000145427 0.00697318 0.00591057 28 2907 26 6.55708e+06 265210 500653. 1732.36 1.62 0.050129 0.0439102 2377 37 947 2760 406997 199613 5.83204 5.83204 -131.925 -5.83204 0 0 612192. 2118.31 0.21 0.18 0.0212208 0.0189929 126 123 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.91 vpr 62.52 MiB 0.03 6840 -1 -1 12 0.17 -1 -1 36504 -1 -1 26 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64020 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1095 62.5 MiB 0.05 0.00 5.98944 -125.368 -5.98944 5.98944 0.71 0.000211869 0.000174109 0.0111257 0.00928968 30 3175 24 6.55708e+06 313430 526063. 1820.29 4.99 0.113823 0.0991744 2457 16 1207 3407 159454 40574 6.43104 6.43104 -149.636 -6.43104 0 0 666494. 2306.21 0.22 0.05 0.0142117 0.0130027 157 151 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.03 vpr 62.79 MiB 0.04 6904 -1 -1 12 0.30 -1 -1 36128 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64300 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.6 MiB 0.33 1465 62.8 MiB 0.07 0.00 6.1219 -136.05 -6.1219 6.1219 0.74 0.000265041 0.000213485 0.0163109 0.0136308 36 3541 21 6.55708e+06 373705 612192. 2118.31 1.67 0.117767 0.103967 3142 16 1349 4130 213404 50721 6.5635 6.5635 -156.009 -6.5635 0 0 782063. 2706.10 0.25 0.06 0.0185248 0.0170076 209 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 6.22 vpr 62.68 MiB 0.04 7104 -1 -1 12 0.24 -1 -1 36348 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64188 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 24.4 MiB 0.49 1389 62.7 MiB 0.06 0.00 6.30824 -131.967 -6.30824 6.30824 0.70 0.000246775 0.000204885 0.0137792 0.0114944 28 4637 42 6.55708e+06 337540 500653. 1732.36 2.77 0.0998139 0.0890978 3514 16 1503 4442 279962 63336 6.66884 6.66884 -157.958 -6.66884 0 0 612192. 2118.31 0.34 0.07 0.0160613 0.0147111 186 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 7.13 vpr 63.21 MiB 0.05 7168 -1 -1 14 0.47 -1 -1 36664 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64732 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.9 MiB 0.40 1587 63.2 MiB 0.08 0.00 7.24596 -150.349 -7.24596 7.24596 0.79 0.00030605 0.000254878 0.0183974 0.0154051 34 4484 35 6.55708e+06 421925 585099. 2024.56 3.08 0.143223 0.125238 3681 16 1739 5323 328792 75897 7.52556 7.52556 -167.991 -7.52556 0 0 742403. 2568.87 0.25 0.08 0.0253077 0.0236457 241 238 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.23 vpr 62.72 MiB 0.03 6948 -1 -1 11 0.22 -1 -1 36472 -1 -1 27 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64228 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 24.1 MiB 0.43 1237 62.7 MiB 0.07 0.00 5.34358 -106.513 -5.34358 5.34358 0.71 0.000237019 0.000185151 0.0159073 0.0130613 34 3273 50 6.55708e+06 325485 585099. 2024.56 2.04 0.107212 0.09284 2714 17 1225 3770 212989 49713 5.82638 5.82638 -124.519 -5.82638 0 0 742403. 2568.87 0.25 0.06 0.0167821 0.0153548 176 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.37 vpr 62.31 MiB 0.02 6844 -1 -1 11 0.17 -1 -1 35832 -1 -1 25 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63804 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.8 MiB 0.37 848 62.3 MiB 0.04 0.00 5.53958 -96.2067 -5.53958 5.53958 0.69 0.000188082 0.000151805 0.00851826 0.00717476 26 2766 36 6.55708e+06 301375 477104. 1650.88 1.52 0.0580386 0.0508643 2336 24 1079 2991 225293 64113 5.65978 5.65978 -118.393 -5.65978 0 0 585099. 2024.56 0.21 0.06 0.0146884 0.0132357 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 6.64 vpr 63.11 MiB 0.04 7124 -1 -1 13 0.43 -1 -1 35812 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64620 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 25.2 MiB 0.25 1957 63.1 MiB 0.06 0.00 6.54924 -135.228 -6.54924 6.54924 0.75 0.000320924 0.000263902 0.0140893 0.0119163 36 5013 25 6.55708e+06 482200 612192. 2118.31 3.18 0.187931 0.157139 4302 18 2112 7375 404166 91199 6.75044 6.75044 -151.784 -6.75044 0 0 782063. 2706.10 0.31 0.10 0.0256257 0.0234522 280 278 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 7.64 vpr 62.72 MiB 0.02 6940 -1 -1 14 0.27 -1 -1 36768 -1 -1 26 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64228 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1294 62.7 MiB 0.07 0.00 7.04476 -139.215 -7.04476 7.04476 0.71 0.000224559 0.000183904 0.0161611 0.01346 30 3107 25 6.55708e+06 313430 526063. 1820.29 4.63 0.11416 0.0999394 2549 14 1082 3037 140478 33689 7.40536 7.40536 -157.157 -7.40536 0 0 666494. 2306.21 0.22 0.05 0.0153677 0.014171 178 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 4.99 vpr 62.25 MiB 0.03 6888 -1 -1 12 0.15 -1 -1 35832 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63748 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1148 62.3 MiB 0.06 0.00 6.01498 -134.229 -6.01498 6.01498 0.70 0.000199584 0.000163842 0.0126269 0.0106064 36 2733 25 6.55708e+06 325485 612192. 2118.31 2.00 0.111072 0.100629 2577 15 1053 2844 168963 38948 6.14884 6.14884 -148.016 -6.14884 0 0 782063. 2706.10 0.26 0.05 0.0137731 0.012625 144 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 5.54 vpr 62.81 MiB 0.03 6864 -1 -1 13 0.28 -1 -1 35896 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64316 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 24.4 MiB 0.48 1257 62.8 MiB 0.07 0.00 6.61236 -128.448 -6.61236 6.61236 0.73 0.000350689 0.000294697 0.0145778 0.0121898 36 3286 21 6.55708e+06 301375 612192. 2118.31 2.02 0.0977751 0.0852939 2807 17 1343 4076 231247 52700 6.8823 6.8823 -148.315 -6.8823 0 0 782063. 2706.10 0.29 0.06 0.0164371 0.014991 172 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 5.38 vpr 63.14 MiB 0.02 7036 -1 -1 13 0.31 -1 -1 36880 -1 -1 35 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64652 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.7 MiB 0.36 1703 63.1 MiB 0.06 0.00 6.3185 -134.013 -6.3185 6.3185 0.71 0.000288436 0.000237192 0.0133143 0.0112741 30 4486 50 6.55708e+06 421925 526063. 1820.29 2.28 0.114942 0.102934 3450 21 1622 4781 232026 54445 6.4387 6.4387 -150.747 -6.4387 0 0 666494. 2306.21 0.22 0.07 0.0229959 0.020965 235 232 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 4.66 vpr 63.11 MiB 0.04 6924 -1 -1 11 0.23 -1 -1 35824 -1 -1 32 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64620 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.5 MiB 0.54 1386 63.1 MiB 0.05 0.00 5.83204 -118.895 -5.83204 5.83204 0.70 0.000271405 0.000218114 0.0118019 0.00985377 30 3630 33 6.55708e+06 385760 526063. 1820.29 1.41 0.0740173 0.0646923 2871 15 1210 4144 203041 47288 6.35204 6.35204 -137.315 -6.35204 0 0 666494. 2306.21 0.23 0.06 0.0183483 0.0164795 199 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 5.22 vpr 63.02 MiB 0.02 6944 -1 -1 15 0.31 -1 -1 36260 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64536 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1525 63.0 MiB 0.13 0.00 7.41822 -155.084 -7.41822 7.41822 0.93 0.000308294 0.000260885 0.032179 0.0193026 38 3768 19 6.55708e+06 349595 638502. 2209.35 1.79 0.121461 0.0979127 3006 17 1258 3941 188438 43550 7.89901 7.89901 -171.164 -7.89901 0 0 851065. 2944.86 0.27 0.06 0.0189536 0.017367 203 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.15 vpr 63.01 MiB 0.02 7116 -1 -1 13 0.32 -1 -1 36124 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64524 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.7 MiB 0.25 1513 63.0 MiB 0.09 0.00 6.3205 -133.361 -6.3205 6.3205 1.04 0.000269056 0.000215634 0.0162026 0.0134623 28 4326 33 6.55708e+06 385760 500653. 1732.36 1.84 0.0844951 0.0736327 3487 19 1655 4916 299282 70363 6.9215 6.9215 -157.07 -6.9215 0 0 612192. 2118.31 0.20 0.08 0.0220054 0.0200351 217 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 4.83 vpr 62.71 MiB 0.03 6892 -1 -1 12 0.18 -1 -1 35664 -1 -1 29 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64220 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1128 62.7 MiB 0.10 0.00 5.89878 -125.704 -5.89878 5.89878 0.69 0.00019964 0.000161281 0.0165422 0.0139739 36 2799 28 6.55708e+06 349595 612192. 2118.31 1.63 0.0855049 0.0743115 2368 17 1062 2698 145812 34391 6.17838 6.17838 -144.1 -6.17838 0 0 782063. 2706.10 0.29 0.05 0.0145739 0.0133099 159 147 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 3.67 vpr 62.34 MiB 0.03 6792 -1 -1 11 0.15 -1 -1 35676 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63836 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1205 62.3 MiB 0.04 0.00 5.77858 -122.741 -5.77858 5.77858 0.70 0.000187815 0.000153444 0.00992516 0.00834382 30 2857 17 6.55708e+06 265210 526063. 1820.29 0.87 0.0506669 0.0444967 2484 16 964 2817 146710 34113 6.13918 6.13918 -141.582 -6.13918 0 0 666494. 2306.21 0.22 0.04 0.0130219 0.0119145 138 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 6.14 vpr 62.93 MiB 0.04 6920 -1 -1 13 0.30 -1 -1 36844 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64444 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.5 MiB 0.35 1415 62.9 MiB 0.09 0.00 6.90264 -141.827 -6.90264 6.90264 0.73 0.000251284 0.000207255 0.0128416 0.0108253 28 4083 47 6.55708e+06 373705 500653. 1732.36 2.95 0.0925946 0.0810965 3533 21 1976 6239 408525 94937 7.30504 7.30504 -163.969 -7.30504 0 0 612192. 2118.31 0.20 0.10 0.0222286 0.0201621 204 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 4.41 vpr 62.36 MiB 0.02 6764 -1 -1 10 0.16 -1 -1 35360 -1 -1 24 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63860 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.8 MiB 0.25 1060 62.4 MiB 0.03 0.00 5.06338 -101.42 -5.06338 5.06338 0.68 0.000192371 0.000158875 0.00697121 0.00585351 28 2997 43 6.55708e+06 289320 500653. 1732.36 1.67 0.0669724 0.059383 2388 17 951 2698 159469 36881 5.49532 5.49532 -123.413 -5.49532 0 0 612192. 2118.31 0.20 0.04 0.0126748 0.0115788 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 10.37 vpr 62.63 MiB 0.03 6716 -1 -1 14 0.17 -1 -1 36068 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64136 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1116 62.6 MiB 0.09 0.00 6.2793 -129.238 -6.2793 6.2793 0.80 0.000238875 0.000199905 0.0142289 0.0120031 30 2923 27 6.55708e+06 289320 526063. 1820.29 7.35 0.149011 0.131428 2315 21 1156 3338 169451 40214 6.7993 6.7993 -148.29 -6.7993 0 0 666494. 2306.21 0.23 0.05 0.0158772 0.0143935 149 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.42 vpr 62.85 MiB 0.03 6940 -1 -1 12 0.31 -1 -1 36488 -1 -1 29 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64356 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.3 MiB 0.34 1297 62.8 MiB 0.11 0.00 6.2787 -130.585 -6.2787 6.2787 0.82 0.000353742 0.000298311 0.0249539 0.0201399 30 3872 43 6.55708e+06 349595 526063. 1820.29 1.94 0.1048 0.0865029 2906 27 1290 4302 381640 158469 6.5191 6.5191 -146.729 -6.5191 0 0 666494. 2306.21 0.22 0.11 0.0274287 0.025159 201 199 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.66 vpr 62.32 MiB 0.03 6932 -1 -1 12 0.13 -1 -1 35508 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63812 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1157 62.3 MiB 0.07 0.00 5.57998 -122.118 -5.57998 5.57998 1.00 0.000230856 0.000192331 0.022788 0.0211954 34 2836 22 6.55708e+06 277265 585099. 2024.56 1.43 0.0873111 0.0780401 2455 14 934 2432 142321 33682 6.34038 6.34038 -146.829 -6.34038 0 0 742403. 2568.87 0.24 0.04 0.0127562 0.0117359 141 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 4.87 vpr 62.83 MiB 0.04 6932 -1 -1 12 0.20 -1 -1 36116 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64336 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1327 62.8 MiB 0.05 0.00 5.64872 -124.385 -5.64872 5.64872 0.75 0.000263066 0.000220493 0.0113197 0.00952292 34 3242 29 6.55708e+06 325485 585099. 2024.56 1.94 0.117914 0.104692 2795 17 1126 3417 193826 45370 5.97978 5.97978 -142.484 -5.97978 0 0 742403. 2568.87 0.25 0.06 0.0173705 0.0159872 188 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 5.90 vpr 62.88 MiB 0.03 7108 -1 -1 13 0.29 -1 -1 36700 -1 -1 29 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64384 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1461 62.9 MiB 0.05 0.00 6.2793 -134.138 -6.2793 6.2793 0.71 0.000242482 0.000200688 0.0112003 0.00951831 28 4115 38 6.55708e+06 349595 500653. 1732.36 2.70 0.0910971 0.0819019 3529 27 1535 4571 466820 159539 6.81152 6.81152 -159.605 -6.81152 0 0 612192. 2118.31 0.30 0.23 0.0340217 0.0314487 179 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 5.77 vpr 62.62 MiB 0.04 6948 -1 -1 11 0.17 -1 -1 35828 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64120 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1276 62.6 MiB 0.05 0.00 5.59164 -122.483 -5.59164 5.59164 0.70 0.000213262 0.000176272 0.010653 0.00900133 36 3042 20 6.55708e+06 325485 612192. 2118.31 2.61 0.0956893 0.085917 2707 16 1065 3337 179276 42048 5.59164 5.59164 -135.084 -5.59164 0 0 782063. 2706.10 0.28 0.05 0.0144679 0.0133117 148 142 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.13 vpr 62.45 MiB 0.03 6820 -1 -1 13 0.18 -1 -1 36248 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63948 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1281 62.4 MiB 0.06 0.00 6.50544 -138.793 -6.50544 6.50544 0.69 0.000223982 0.000184571 0.0127418 0.0106795 36 2998 26 6.55708e+06 325485 612192. 2118.31 1.78 0.0943354 0.082695 2576 16 1024 2799 151819 35332 6.62564 6.62564 -151.146 -6.62564 0 0 782063. 2706.10 0.32 0.05 0.0155803 0.0142722 167 164 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.47 vpr 62.76 MiB 0.03 6868 -1 -1 13 0.25 -1 -1 35980 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64268 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 24.3 MiB 0.21 1318 62.8 MiB 0.10 0.00 6.4407 -129.001 -6.4407 6.4407 0.82 0.000615416 0.000562578 0.0198209 0.0166921 38 3168 23 6.55708e+06 325485 638502. 2209.35 2.22 0.11166 0.0975953 2566 18 1246 3605 168034 40887 6.93376 6.93376 -147.071 -6.93376 0 0 851065. 2944.86 0.28 0.06 0.017443 0.0159777 184 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.62 vpr 62.54 MiB 0.03 7024 -1 -1 11 0.18 -1 -1 36156 -1 -1 28 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64036 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1121 62.5 MiB 0.06 0.00 5.38278 -104.536 -5.38278 5.38278 0.67 0.000215692 0.000170592 0.0145167 0.0119549 28 3262 34 6.55708e+06 337540 500653. 1732.36 1.75 0.0685394 0.0594287 2720 19 1224 3804 239594 54417 5.73372 5.73372 -124.152 -5.73372 0 0 612192. 2118.31 0.21 0.06 0.0162003 0.0147381 162 156 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 6.34 vpr 62.96 MiB 0.04 7204 -1 -1 14 0.31 -1 -1 36668 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64476 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.5 MiB 0.45 1625 63.0 MiB 0.06 0.00 6.98322 -149.681 -6.98322 6.98322 0.68 0.000288937 0.000234728 0.0125213 0.0106788 36 4044 35 6.55708e+06 385760 612192. 2118.31 3.03 0.132316 0.116783 3427 16 1602 4844 258914 60650 7.22362 7.22362 -164.174 -7.22362 0 0 782063. 2706.10 0.27 0.07 0.0208027 0.0190368 225 221 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 8.31 vpr 62.52 MiB 0.03 6784 -1 -1 12 0.15 -1 -1 35700 -1 -1 28 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64016 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1022 62.5 MiB 0.13 0.00 5.55244 -116.958 -5.55244 5.55244 0.79 0.000195432 0.000155602 0.0288735 0.0251924 32 2967 49 6.55708e+06 337540 554710. 1919.41 4.97 0.157962 0.138734 2353 27 1148 3264 432334 186412 5.75364 5.75364 -133.125 -5.75364 0 0 701300. 2426.64 0.24 0.21 0.0212838 0.0194175 145 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 8.24 vpr 62.43 MiB 0.02 7068 -1 -1 13 0.28 -1 -1 36148 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63924 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1407 62.4 MiB 0.06 0.00 6.4015 -128.34 -6.4015 6.4015 0.70 0.00026786 0.000222691 0.0144478 0.0121346 30 3369 20 6.55708e+06 325485 526063. 1820.29 5.24 0.112127 0.0975304 2776 16 1318 4032 192765 44886 6.6419 6.6419 -144.189 -6.6419 0 0 666494. 2306.21 0.22 0.06 0.0169497 0.0155819 189 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.04 vpr 62.55 MiB 0.04 6776 -1 -1 13 0.16 -1 -1 36096 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64048 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1073 62.5 MiB 0.07 0.00 6.42904 -133.415 -6.42904 6.42904 0.70 0.000198789 0.000163023 0.0155028 0.0129534 28 3622 42 6.55708e+06 301375 500653. 1732.36 1.92 0.0676775 0.0588073 2636 17 1174 3038 196892 46865 6.78964 6.78964 -157.384 -6.78964 0 0 612192. 2118.31 0.20 0.05 0.0134927 0.0123251 146 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 4.52 vpr 62.80 MiB 0.04 7100 -1 -1 12 0.22 -1 -1 36196 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64312 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1244 62.8 MiB 0.03 0.00 5.8025 -122.754 -5.8025 5.8025 0.97 0.000216469 0.000176959 0.00720896 0.00611991 28 3412 24 6.55708e+06 313430 500653. 1732.36 1.36 0.0598477 0.0525163 2872 16 1042 3360 202532 46277 6.1631 6.1631 -141.775 -6.1631 0 0 612192. 2118.31 0.20 0.05 0.015329 0.0139954 172 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.10 vpr 62.81 MiB 0.03 7232 -1 -1 15 0.47 -1 -1 36196 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64316 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1752 62.8 MiB 0.10 0.00 7.30002 -148.857 -7.30002 7.30002 0.70 0.000298651 0.000246534 0.0176073 0.014949 36 4484 41 6.55708e+06 409870 612192. 2118.31 3.72 0.154683 0.13667 3752 18 1750 5678 311414 70969 7.66062 7.66062 -166.958 -7.66062 0 0 782063. 2706.10 0.25 0.08 0.0228864 0.0209766 250 249 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 3.92 vpr 62.07 MiB 0.01 6816 -1 -1 10 0.08 -1 -1 35408 -1 -1 16 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63560 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.5 MiB 0.36 653 62.1 MiB 0.04 0.00 4.40126 -95.8591 -4.40126 4.40126 0.80 0.000131382 0.00010625 0.0100535 0.00827684 28 1976 22 6.55708e+06 192880 500653. 1732.36 1.11 0.0405736 0.0353485 1624 14 654 1531 98991 25021 4.60246 4.60246 -118.396 -4.60246 0 0 612192. 2118.31 0.21 0.03 0.00806526 0.00734936 92 82 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.37 vpr 62.50 MiB 0.03 6696 -1 -1 13 0.17 -1 -1 36256 -1 -1 29 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64000 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1046 62.5 MiB 0.13 0.00 6.2375 -124.94 -6.2375 6.2375 0.88 0.00019975 0.000164927 0.0356168 0.0316997 26 3016 50 6.55708e+06 349595 477104. 1650.88 1.26 0.093236 0.0826461 2335 17 1046 2861 162484 39016 6.5589 6.5589 -143.573 -6.5589 0 0 585099. 2024.56 0.21 0.06 0.0136391 0.0124373 150 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.53 vpr 62.91 MiB 0.03 6888 -1 -1 12 0.18 -1 -1 36256 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64424 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1291 62.9 MiB 0.08 0.00 5.46178 -123.398 -5.46178 5.46178 0.67 0.000468964 0.000428017 0.0181209 0.0150467 34 3259 50 6.55708e+06 277265 585099. 2024.56 2.56 0.149456 0.135081 2840 19 1261 3582 210370 48327 6.13152 6.13152 -149.21 -6.13152 0 0 742403. 2568.87 0.26 0.06 0.0157346 0.0142882 167 166 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 3.69 vpr 62.31 MiB 0.03 6848 -1 -1 9 0.12 -1 -1 35972 -1 -1 25 25 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63804 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.8 MiB 0.15 795 62.3 MiB 0.05 0.00 4.79906 -90.4924 -4.79906 4.79906 0.75 0.000150294 0.000122523 0.0109852 0.00907576 28 2115 35 6.55708e+06 301375 500653. 1732.36 0.93 0.0483724 0.0418265 1787 14 745 2062 112128 27370 4.84286 4.84286 -100.107 -4.84286 0 0 612192. 2118.31 0.21 0.05 0.0098222 0.00900888 112 103 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.05 vpr 62.85 MiB 0.04 7112 -1 -1 12 0.27 -1 -1 36052 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64356 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.3 MiB 0.56 1565 62.8 MiB 0.05 0.00 6.15144 -137.891 -6.15144 6.15144 0.75 0.000259018 0.000213119 0.0114552 0.00967974 36 4075 44 6.55708e+06 409870 612192. 2118.31 3.30 0.132861 0.117691 3347 26 1885 6046 535131 191789 6.8013 6.8013 -157.926 -6.8013 0 0 782063. 2706.10 0.25 0.14 0.0248303 0.0224612 209 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.94 vpr 62.69 MiB 0.02 7164 -1 -1 14 0.32 -1 -1 35800 -1 -1 29 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64196 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.2 MiB 0.41 1304 62.7 MiB 0.17 0.00 6.82122 -134.654 -6.82122 6.82122 0.91 0.000321936 0.000274523 0.0317819 0.0266346 30 3998 48 6.55708e+06 349595 526063. 1820.29 2.27 0.125153 0.110668 2948 21 1476 4506 277043 77392 7.30202 7.30202 -159.658 -7.30202 0 0 666494. 2306.21 0.29 0.10 0.0352184 0.0333374 204 202 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.63 vpr 62.94 MiB 0.02 7260 -1 -1 1 0.01 -1 -1 33736 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64448 32 32 439 351 1 194 100 17 17 289 -1 unnamed_device 24.7 MiB 0.21 1073 62.9 MiB 0.13 0.00 3.37316 -118.88 -3.37316 3.37316 0.86 0.000196303 0.00015903 0.0186132 0.015331 30 2519 23 6.64007e+06 452088 526063. 1820.29 0.77 0.060486 0.0518377 2066 20 1483 2386 143807 32241 3.45903 3.45903 -138.111 -3.45903 0 0 666494. 2306.21 0.24 0.05 0.013956 0.012509 153 80 32 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.78 vpr 63.29 MiB 0.02 7372 -1 -1 1 0.02 -1 -1 33456 -1 -1 23 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64808 30 32 412 333 1 186 85 17 17 289 -1 unnamed_device 25.0 MiB 0.18 810 63.3 MiB 0.15 0.00 3.60576 -106.849 -3.60576 3.60576 0.97 0.000177799 0.000142942 0.0232628 0.0166257 32 2104 23 6.64007e+06 288834 554710. 1919.41 0.73 0.0651934 0.0535817 1860 23 1774 2980 201166 47826 3.80983 3.80983 -132.768 -3.80983 0 0 701300. 2426.64 0.27 0.06 0.0181 0.0159153 142 78 30 30 89 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.51 vpr 62.75 MiB 0.03 7180 -1 -1 1 0.01 -1 -1 33688 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64260 32 32 388 310 1 186 99 17 17 289 -1 unnamed_device 24.2 MiB 0.08 958 62.8 MiB 0.07 0.00 3.13925 -107.457 -3.13925 3.13925 0.83 0.00018032 0.000145443 0.0104898 0.00875178 30 2347 22 6.64007e+06 439530 526063. 1820.29 0.82 0.0465689 0.0401185 1936 20 1205 1890 100701 23702 3.43423 3.43423 -128.736 -3.43423 0 0 666494. 2306.21 0.24 0.04 0.01522 0.0138746 142 50 54 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.70 vpr 62.93 MiB 0.03 7256 -1 -1 1 0.02 -1 -1 33452 -1 -1 24 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64440 29 32 347 271 1 184 85 17 17 289 -1 unnamed_device 24.5 MiB 0.05 901 62.9 MiB 0.10 0.00 3.58556 -104.956 -3.58556 3.58556 0.80 0.000173379 0.000141069 0.01323 0.0110819 28 2344 24 6.64007e+06 301392 500653. 1732.36 0.94 0.0694665 0.0623875 1969 20 1385 2450 144123 34154 3.79163 3.79163 -135.849 -3.79163 0 0 612192. 2118.31 0.25 0.11 0.022011 0.0137256 139 25 87 29 29 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.60 vpr 63.09 MiB 0.03 7152 -1 -1 1 0.01 -1 -1 33080 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64608 32 32 377 289 1 195 86 17 17 289 -1 unnamed_device 24.5 MiB 0.13 967 63.1 MiB 0.07 0.00 3.30796 -113.997 -3.30796 3.30796 0.71 0.000200335 0.000164268 0.00914578 0.00767176 32 2730 21 6.64007e+06 276276 554710. 1919.41 0.75 0.0514911 0.0450958 2329 23 2103 3856 257584 58974 3.75063 3.75063 -146.06 -3.75063 0 0 701300. 2426.64 0.24 0.08 0.027559 0.0253272 153 31 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.64 vpr 63.35 MiB 0.04 7252 -1 -1 1 0.01 -1 -1 33428 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64872 32 32 403 317 1 199 102 17 17 289 -1 unnamed_device 24.9 MiB 0.11 968 63.4 MiB 0.12 0.00 3.1025 -100.495 -3.1025 3.1025 0.85 0.000296753 0.000248487 0.0172333 0.0142636 32 2377 23 6.64007e+06 477204 554710. 1919.41 0.77 0.0588483 0.050863 2013 19 1425 2334 155932 36829 3.24157 3.24157 -118.136 -3.24157 0 0 701300. 2426.64 0.23 0.05 0.013414 0.0120063 156 61 63 32 63 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.48 vpr 62.37 MiB 0.03 6972 -1 -1 1 0.01 -1 -1 33144 -1 -1 20 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63864 27 32 275 232 1 135 79 17 17 289 -1 unnamed_device 23.9 MiB 0.07 535 62.4 MiB 0.09 0.00 2.7079 -76.8251 -2.7079 2.7079 0.77 0.000136106 0.000110186 0.011569 0.00941462 26 1637 34 6.64007e+06 251160 477104. 1650.88 0.89 0.0494047 0.042735 1324 18 924 1544 100018 25835 2.89197 2.89197 -98.6011 -2.89197 0 0 585099. 2024.56 0.22 0.03 0.00915266 0.00820184 100 26 54 27 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.89 vpr 63.11 MiB 0.03 7348 -1 -1 1 0.01 -1 -1 33344 -1 -1 34 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64628 31 32 319 244 1 185 97 17 17 289 -1 unnamed_device 24.7 MiB 0.16 1003 63.1 MiB 0.14 0.00 2.9483 -94.9853 -2.9483 2.9483 0.71 0.000265645 0.000225579 0.0131329 0.0113696 32 2312 16 6.64007e+06 426972 554710. 1919.41 1.01 0.0460497 0.0403522 2092 19 1190 2017 132120 29908 2.77377 2.77377 -108.925 -2.77377 0 0 701300. 2426.64 0.26 0.05 0.0176964 0.0164105 140 -1 115 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.69 vpr 62.82 MiB 0.03 7196 -1 -1 1 0.02 -1 -1 33300 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64328 31 32 340 294 1 147 80 17 17 289 -1 unnamed_device 24.3 MiB 0.15 813 62.8 MiB 0.07 0.00 2.69519 -86.2029 -2.69519 2.69519 0.71 0.000163848 0.000132748 0.0114981 0.00948508 32 1968 18 6.64007e+06 213486 554710. 1919.41 0.69 0.0428078 0.0357056 1740 17 904 1507 109604 24457 2.71377 2.71377 -105.468 -2.71377 0 0 701300. 2426.64 0.24 0.03 0.0104285 0.00936866 106 81 0 0 84 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.53 vpr 62.63 MiB 0.03 7160 -1 -1 1 0.01 -1 -1 33344 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64136 32 32 315 257 1 162 81 17 17 289 -1 unnamed_device 24.2 MiB 0.13 794 62.6 MiB 0.07 0.00 2.7959 -100.497 -2.7959 2.7959 0.87 0.000199093 0.000166636 0.012728 0.0110417 32 2003 22 6.64007e+06 213486 554710. 1919.41 0.72 0.0432224 0.0373867 1823 19 1383 2147 166441 36518 2.93777 2.93777 -123.118 -2.93777 0 0 701300. 2426.64 0.24 0.04 0.0108243 0.00969823 121 31 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.24 vpr 62.77 MiB 0.02 6968 -1 -1 1 0.01 -1 -1 33380 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64272 30 32 328 276 1 151 80 17 17 289 -1 unnamed_device 24.2 MiB 0.13 586 62.8 MiB 0.04 0.00 2.80139 -90.0978 -2.80139 2.80139 0.73 0.000157198 0.000127791 0.00814669 0.00682556 32 1648 23 6.64007e+06 226044 554710. 1919.41 0.74 0.0390934 0.0324905 1346 19 1125 1677 109013 26025 2.89697 2.89697 -106.198 -2.89697 0 0 701300. 2426.64 0.28 0.06 0.0114631 0.0101986 110 58 30 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.79 vpr 62.68 MiB 0.02 6880 -1 -1 1 0.01 -1 -1 33520 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64184 32 32 332 281 1 156 93 17 17 289 -1 unnamed_device 24.1 MiB 0.09 767 62.7 MiB 0.07 0.00 2.7749 -92.1081 -2.7749 2.7749 0.77 0.000172484 0.000139097 0.00861178 0.00706403 28 2252 31 6.64007e+06 364182 500653. 1732.36 1.08 0.0465613 0.0402555 1880 17 1095 1810 129267 29604 2.98597 2.98597 -117.558 -2.98597 0 0 612192. 2118.31 0.24 0.04 0.00968615 0.00866236 114 57 25 25 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.00 vpr 62.95 MiB 0.04 7264 -1 -1 1 0.02 -1 -1 33476 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64456 32 32 387 306 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 0.18 897 62.9 MiB 0.13 0.00 2.8739 -100.06 -2.8739 2.8739 0.99 0.000195773 0.00016007 0.0171403 0.0140625 32 2189 25 6.64007e+06 426972 554710. 1919.41 0.83 0.0589395 0.0461091 1922 21 1778 2950 185135 42993 2.90497 2.90497 -116.333 -2.90497 0 0 701300. 2426.64 0.24 0.05 0.013031 0.0116162 145 55 64 32 57 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.80 vpr 63.21 MiB 0.02 7304 -1 -1 1 0.01 -1 -1 33464 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64732 32 32 408 320 1 200 100 17 17 289 -1 unnamed_device 24.8 MiB 0.22 1096 63.2 MiB 0.13 0.00 3.34716 -118.418 -3.34716 3.34716 0.92 0.000202169 0.000166766 0.0189378 0.015915 32 2439 23 6.64007e+06 452088 554710. 1919.41 0.89 0.0623612 0.0541402 2163 19 1741 2805 174589 39623 3.46723 3.46723 -137.864 -3.46723 0 0 701300. 2426.64 0.23 0.05 0.0132959 0.0119227 158 60 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.50 vpr 62.53 MiB 0.04 6952 -1 -1 1 0.01 -1 -1 33156 -1 -1 19 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64032 29 32 276 232 1 145 80 17 17 289 -1 unnamed_device 23.9 MiB 0.08 723 62.5 MiB 0.06 0.00 2.7049 -83.4722 -2.7049 2.7049 0.82 0.000176376 0.000147553 0.00992965 0.00823473 32 1742 21 6.64007e+06 238602 554710. 1919.41 0.88 0.0457125 0.0400971 1586 21 1098 1881 126436 29462 2.69277 2.69277 -97.3645 -2.69277 0 0 701300. 2426.64 0.26 0.04 0.00992807 0.00884263 108 21 58 29 24 24 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.78 vpr 63.07 MiB 0.02 7244 -1 -1 1 0.01 -1 -1 33256 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64580 32 32 402 316 1 192 86 17 17 289 -1 unnamed_device 24.7 MiB 0.20 981 63.1 MiB 0.10 0.00 2.82639 -101.035 -2.82639 2.82639 0.88 0.000205654 0.000166631 0.0163893 0.0135543 32 2346 25 6.64007e+06 276276 554710. 1919.41 0.99 0.0586268 0.0501278 2015 21 1763 2948 186973 44097 3.00117 3.00117 -122.469 -3.00117 0 0 701300. 2426.64 0.24 0.06 0.0142402 0.0126994 148 60 64 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 3.99 vpr 63.01 MiB 0.02 7192 -1 -1 1 0.01 -1 -1 33552 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64524 32 32 384 304 1 185 100 17 17 289 -1 unnamed_device 24.6 MiB 0.20 973 63.0 MiB 0.10 0.00 2.9051 -101.702 -2.9051 2.9051 0.81 0.000189394 0.000155203 0.0131942 0.0108454 32 2361 23 6.64007e+06 452088 554710. 1919.41 0.83 0.0495206 0.0423497 2039 29 1839 2731 360461 149729 3.11737 3.11737 -124.991 -3.11737 0 0 701300. 2426.64 0.41 0.09 0.0162893 0.0143246 144 54 64 32 56 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.59 vpr 62.98 MiB 0.02 7168 -1 -1 1 0.01 -1 -1 33048 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64496 32 32 340 285 1 162 95 17 17 289 -1 unnamed_device 24.4 MiB 0.13 809 63.0 MiB 0.10 0.00 2.27564 -81.6586 -2.27564 2.27564 0.92 0.000179843 0.000141751 0.0146513 0.0120538 28 2124 25 6.64007e+06 389298 500653. 1732.36 0.85 0.0481152 0.0411212 1706 20 1076 1833 117178 28263 2.27071 2.27071 -96.0239 -2.27071 0 0 612192. 2118.31 0.22 0.04 0.0116539 0.010445 119 62 29 29 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.52 vpr 62.49 MiB 0.03 6896 -1 -1 1 0.01 -1 -1 32836 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63988 30 32 229 211 1 119 77 17 17 289 -1 unnamed_device 23.9 MiB 0.04 520 62.5 MiB 0.03 0.00 2.12244 -68.2936 -2.12244 2.12244 0.81 0.000125684 0.000101296 0.00671377 0.00544041 32 1338 18 6.64007e+06 188370 554710. 1919.41 0.70 0.0274195 0.0233923 1219 20 690 1028 79374 19372 1.95531 1.95531 -79.5584 -1.95531 0 0 701300. 2426.64 0.23 0.03 0.00772558 0.00683271 85 29 24 24 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.73 vpr 62.95 MiB 0.04 6960 -1 -1 1 0.01 -1 -1 33348 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64460 31 32 337 282 1 154 80 17 17 289 -1 unnamed_device 24.4 MiB 0.30 640 62.9 MiB 0.05 0.00 3.41785 -98.2832 -3.41785 3.41785 0.89 0.000163302 0.000133178 0.00751233 0.00628243 32 1911 15 6.64007e+06 213486 554710. 1919.41 0.86 0.0344161 0.0296373 1578 16 791 1166 78516 19759 3.36843 3.36843 -117.559 -3.36843 0 0 701300. 2426.64 0.24 0.03 0.00986286 0.00890427 113 55 31 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.67 vpr 63.12 MiB 0.03 7244 -1 -1 1 0.02 -1 -1 33348 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64632 32 32 367 284 1 192 100 17 17 289 -1 unnamed_device 24.5 MiB 0.13 1121 63.1 MiB 0.12 0.00 3.37436 -116.836 -3.37436 3.37436 0.85 0.000188133 0.000154925 0.0166302 0.0138705 30 2228 23 6.64007e+06 452088 526063. 1820.29 0.83 0.0528032 0.0452852 1910 22 1249 1912 100612 23739 3.46723 3.46723 -133.024 -3.46723 0 0 666494. 2306.21 0.25 0.04 0.0136061 0.012177 147 31 91 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.10 vpr 63.34 MiB 0.02 7372 -1 -1 1 0.02 -1 -1 33588 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64860 32 32 461 376 1 196 102 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1103 63.3 MiB 0.10 0.00 3.08425 -105.447 -3.08425 3.08425 0.90 0.000287575 0.000242033 0.0158621 0.0133156 26 2989 23 6.64007e+06 477204 477104. 1650.88 1.25 0.0606211 0.0521505 2352 21 1589 2548 180747 40507 3.60363 3.60363 -133.291 -3.60363 0 0 585099. 2024.56 0.20 0.05 0.014718 0.013096 150 108 0 0 125 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.70 vpr 62.04 MiB 0.03 6800 -1 -1 1 0.01 -1 -1 33528 -1 -1 17 26 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63532 26 32 205 193 1 109 75 17 17 289 -1 unnamed_device 23.6 MiB 0.08 644 62.0 MiB 0.05 0.00 2.13964 -64.0608 -2.13964 2.13964 0.89 0.000115628 9.2914e-05 0.00848247 0.00694843 28 1254 18 6.64007e+06 213486 500653. 1732.36 0.88 0.0304657 0.0262187 1170 18 524 794 54793 12836 1.84891 1.84891 -72.1695 -1.84891 0 0 612192. 2118.31 0.21 0.02 0.00698601 0.00622745 77 21 26 26 22 22 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.72 vpr 62.99 MiB 0.04 7176 -1 -1 1 0.01 -1 -1 33056 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64500 32 32 334 252 1 187 86 17 17 289 -1 unnamed_device 24.5 MiB 0.06 1142 63.0 MiB 0.11 0.00 3.71796 -122.394 -3.71796 3.71796 0.78 0.000171461 0.000138839 0.0173936 0.0144772 32 2329 20 6.64007e+06 276276 554710. 1919.41 1.08 0.0691936 0.0616842 2120 22 1589 2715 185335 42370 3.85383 3.85383 -143.703 -3.85383 0 0 701300. 2426.64 0.24 0.05 0.0134713 0.0120696 138 -1 122 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.50 vpr 62.19 MiB 0.03 6880 -1 -1 1 0.01 -1 -1 33048 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63680 32 32 200 183 1 122 77 17 17 289 -1 unnamed_device 23.7 MiB 0.03 722 62.2 MiB 0.05 0.00 1.98053 -76.1373 -1.98053 1.98053 0.77 0.000109897 8.782e-05 0.00737169 0.00601029 26 1644 26 6.64007e+06 163254 477104. 1650.88 0.76 0.0293432 0.0249978 1420 17 667 889 69399 15767 2.00131 2.00131 -87.4979 -2.00131 0 0 585099. 2024.56 0.31 0.03 0.00836272 0.00760009 81 -1 53 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.63 vpr 62.84 MiB 0.03 7032 -1 -1 1 0.01 -1 -1 33508 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64348 32 32 377 289 1 194 97 17 17 289 -1 unnamed_device 24.4 MiB 0.06 979 62.8 MiB 0.12 0.00 3.37316 -115.831 -3.37316 3.37316 0.77 0.000215499 0.000178271 0.0172212 0.0144409 32 2551 23 6.64007e+06 414414 554710. 1919.41 0.78 0.0545452 0.0471027 2136 24 2013 2987 208985 48025 3.77883 3.77883 -142.163 -3.77883 0 0 701300. 2426.64 0.24 0.06 0.0168551 0.0152435 151 21 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.99 vpr 62.73 MiB 0.07 7272 -1 -1 1 0.01 -1 -1 33392 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64236 32 32 338 254 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.07 953 62.7 MiB 0.11 0.00 3.0343 -97.5035 -3.0343 3.0343 0.90 0.000182327 0.000147826 0.0130297 0.0108079 32 2445 25 6.64007e+06 452088 554710. 1919.41 0.94 0.0576688 0.0507322 1993 25 1740 2851 203996 47387 3.09037 3.09037 -115.085 -3.09037 0 0 701300. 2426.64 0.25 0.06 0.0154756 0.0138299 150 -1 124 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.81 vpr 63.41 MiB 0.03 7356 -1 -1 1 0.01 -1 -1 33504 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64928 32 32 408 320 1 197 101 17 17 289 -1 unnamed_device 24.9 MiB 0.09 986 63.4 MiB 0.11 0.00 3.43916 -116.693 -3.43916 3.43916 0.86 0.00025113 0.000213295 0.0130501 0.011267 32 2556 23 6.64007e+06 464646 554710. 1919.41 0.87 0.052643 0.0456664 2175 23 2026 3430 221799 51350 3.93203 3.93203 -144.878 -3.93203 0 0 701300. 2426.64 0.24 0.06 0.0154129 0.0137553 155 54 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.35 vpr 62.50 MiB 0.03 7044 -1 -1 1 0.01 -1 -1 33368 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64004 32 32 295 247 1 149 80 17 17 289 -1 unnamed_device 24.2 MiB 0.07 756 62.5 MiB 0.05 0.00 2.45379 -86.0813 -2.45379 2.45379 0.74 0.000173779 0.000144309 0.0101833 0.00895157 32 1931 23 6.64007e+06 200928 554710. 1919.41 0.70 0.0392893 0.0341916 1685 20 1056 1715 131285 30736 2.86117 2.86117 -108.927 -2.86117 0 0 701300. 2426.64 0.24 0.04 0.0104058 0.00930477 107 31 54 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.84 vpr 62.73 MiB 0.02 6928 -1 -1 1 0.02 -1 -1 33636 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64236 30 32 299 247 1 154 80 17 17 289 -1 unnamed_device 24.3 MiB 0.18 853 62.7 MiB 0.07 0.00 3.0263 -96.8056 -3.0263 3.0263 1.01 0.000148862 0.000120217 0.0109403 0.00908946 30 1780 20 6.64007e+06 226044 526063. 1820.29 0.91 0.049139 0.0419798 1528 18 922 1452 79342 18064 2.65637 2.65637 -108.687 -2.65637 0 0 666494. 2306.21 0.25 0.03 0.00979506 0.00880414 112 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.60 vpr 62.60 MiB 0.04 7028 -1 -1 1 0.01 -1 -1 33392 -1 -1 20 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64100 28 32 283 237 1 150 80 17 17 289 -1 unnamed_device 24.2 MiB 0.07 693 62.6 MiB 0.09 0.00 2.7207 -84.7651 -2.7207 2.7207 0.77 0.000183381 0.000153013 0.0128697 0.0108519 32 1716 20 6.64007e+06 251160 554710. 1919.41 0.90 0.0463673 0.0404285 1512 23 1182 1971 137861 31523 2.70277 2.70277 -99.1815 -2.70277 0 0 701300. 2426.64 0.24 0.04 0.0110351 0.00981098 107 27 56 28 28 28 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.64 vpr 62.69 MiB 0.03 6920 -1 -1 1 0.01 -1 -1 33136 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64192 32 32 284 226 1 166 82 17 17 289 -1 unnamed_device 24.3 MiB 0.08 919 62.7 MiB 0.08 0.00 2.8039 -103.611 -2.8039 2.8039 0.78 0.000186847 0.00015684 0.0110516 0.00927465 32 2183 21 6.64007e+06 226044 554710. 1919.41 0.86 0.0423688 0.0367405 1909 23 1572 2504 175475 39874 3.03597 3.03597 -124.891 -3.03597 0 0 701300. 2426.64 0.30 0.08 0.0207382 0.0194118 125 -1 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.49 vpr 62.89 MiB 0.02 7136 -1 -1 1 0.01 -1 -1 33332 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64396 31 32 305 251 1 162 94 17 17 289 -1 unnamed_device 24.4 MiB 0.05 899 62.9 MiB 0.09 0.00 2.7427 -96.0849 -2.7427 2.7427 0.80 0.000161967 0.000130947 0.0120564 0.00991001 32 1999 22 6.64007e+06 389298 554710. 1919.41 0.70 0.0423845 0.0357028 1782 21 1202 1879 129407 29474 3.00597 3.00597 -114.16 -3.00597 0 0 701300. 2426.64 0.30 0.04 0.0116808 0.0104075 119 26 61 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.57 vpr 62.88 MiB 0.02 7176 -1 -1 1 0.02 -1 -1 33404 -1 -1 31 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64384 29 32 316 268 1 154 92 17 17 289 -1 unnamed_device 24.4 MiB 0.11 839 62.9 MiB 0.08 0.00 2.26464 -75.9007 -2.26464 2.26464 0.79 0.000160458 0.000124832 0.0124145 0.0101837 28 1751 23 6.64007e+06 389298 500653. 1732.36 0.72 0.0486391 0.0425499 1548 15 789 1266 71828 17598 2.11751 2.11751 -86.1084 -2.11751 0 0 612192. 2118.31 0.28 0.03 0.00954175 0.00861147 110 55 29 29 57 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.81 vpr 62.93 MiB 0.02 7464 -1 -1 1 0.01 -1 -1 33424 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64444 32 32 424 311 1 229 105 17 17 289 -1 unnamed_device 24.9 MiB 0.17 1164 62.9 MiB 0.10 0.00 3.41716 -117.265 -3.41716 3.41716 0.70 0.000219091 0.000180377 0.0132644 0.0110213 28 3620 37 6.64007e+06 514878 500653. 1732.36 2.22 0.0749729 0.0658288 2719 22 2117 3605 249734 59155 3.93183 3.93183 -148.704 -3.93183 0 0 612192. 2118.31 0.21 0.07 0.0165292 0.0147718 181 26 128 32 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.26 vpr 63.03 MiB 0.03 7120 -1 -1 1 0.02 -1 -1 33464 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64544 32 32 404 318 1 198 101 17 17 289 -1 unnamed_device 24.6 MiB 0.12 965 63.0 MiB 0.09 0.00 2.8611 -100.702 -2.8611 2.8611 0.70 0.000204855 0.000165616 0.0126065 0.0103389 32 2299 22 6.64007e+06 464646 554710. 1919.41 0.74 0.0490797 0.041943 2034 21 1812 2697 183742 41256 2.87697 2.87697 -121.872 -2.87697 0 0 701300. 2426.64 0.28 0.05 0.0137895 0.0122788 154 62 62 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.74 vpr 62.61 MiB 0.03 7172 -1 -1 1 0.01 -1 -1 33200 -1 -1 29 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64116 31 32 355 304 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.23 702 62.6 MiB 0.05 0.00 3.0493 -91.2458 -3.0493 3.0493 0.71 0.000182516 0.000150818 0.00802843 0.006664 32 1921 21 6.64007e+06 364182 554710. 1919.41 0.84 0.0380628 0.0325389 1516 21 1124 1764 115890 28325 2.65657 2.65657 -104.258 -2.65657 0 0 701300. 2426.64 0.41 0.04 0.0111927 0.00993127 114 77 0 0 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.39 vpr 62.95 MiB 0.05 7224 -1 -1 1 0.01 -1 -1 33528 -1 -1 24 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64464 31 32 393 311 1 194 87 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1044 63.0 MiB 0.08 0.00 3.0153 -99.2436 -3.0153 3.0153 0.85 0.000223599 0.000185285 0.0106571 0.00894899 32 2361 22 6.64007e+06 301392 554710. 1919.41 0.69 0.0470532 0.0405076 2138 21 1729 2871 204356 47210 2.93117 2.93117 -116.359 -2.93117 0 0 701300. 2426.64 0.23 0.05 0.013339 0.0118688 147 59 60 30 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.81 vpr 63.15 MiB 0.03 7296 -1 -1 1 0.02 -1 -1 33808 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64664 31 32 457 373 1 193 86 17 17 289 -1 unnamed_device 24.6 MiB 0.49 1150 63.1 MiB 0.12 0.00 4.33141 -126.19 -4.33141 4.33141 0.72 0.000198994 0.000161349 0.0188778 0.0156414 32 2538 20 6.64007e+06 288834 554710. 1919.41 0.85 0.0578293 0.049498 2215 17 1181 1982 140301 31334 3.91469 3.91469 -142.09 -3.91469 0 0 701300. 2426.64 0.24 0.04 0.0132071 0.0118379 150 111 0 0 124 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.74 vpr 63.23 MiB 0.02 7388 -1 -1 1 0.02 -1 -1 33360 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64748 31 32 415 335 1 188 86 17 17 289 -1 unnamed_device 24.8 MiB 0.47 916 63.2 MiB 0.09 0.00 4.04401 -108.59 -4.04401 4.04401 0.74 0.000280186 0.000240243 0.0140753 0.0118121 32 2300 20 6.64007e+06 288834 554710. 1919.41 0.81 0.0747479 0.0678207 2008 16 1111 1836 118093 28519 4.00669 4.00669 -136.908 -4.00669 0 0 701300. 2426.64 0.24 0.04 0.0124008 0.0111827 144 86 31 31 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.12 vpr 63.04 MiB 0.04 7416 -1 -1 1 0.02 -1 -1 33428 -1 -1 34 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64552 31 32 393 311 1 193 97 17 17 289 -1 unnamed_device 24.7 MiB 0.17 1044 63.0 MiB 0.07 0.00 3.1153 -100.847 -3.1153 3.1153 0.73 0.000224086 0.0001862 0.00954413 0.00805693 26 3036 37 6.64007e+06 426972 477104. 1650.88 1.39 0.0728157 0.0650841 2476 20 1471 2479 215996 48731 3.19717 3.19717 -130.891 -3.19717 0 0 585099. 2024.56 0.20 0.08 0.0147204 0.0131986 147 58 60 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.54 vpr 62.93 MiB 0.02 7232 -1 -1 1 0.02 -1 -1 33700 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64436 32 32 408 320 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.12 1041 62.9 MiB 0.09 0.00 3.30796 -116.401 -3.30796 3.30796 0.73 0.000219194 0.000181718 0.0114021 0.00954928 30 2388 23 6.64007e+06 464646 526063. 1820.29 0.71 0.0473553 0.0407637 2041 21 1486 2279 136848 30280 3.48403 3.48403 -137.541 -3.48403 0 0 666494. 2306.21 0.24 0.05 0.0138967 0.0123122 156 42 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.70 vpr 63.45 MiB 0.05 7396 -1 -1 1 0.02 -1 -1 33824 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64968 32 32 497 381 1 232 105 17 17 289 -1 unnamed_device 25.4 MiB 0.26 1164 63.4 MiB 0.15 0.00 3.41536 -120.082 -3.41536 3.41536 0.69 0.000254289 0.000209899 0.0217649 0.0179522 30 2613 19 6.64007e+06 514878 526063. 1820.29 0.71 0.0658822 0.0563931 2236 18 1686 2693 141775 33061 3.49643 3.49643 -138.453 -3.49643 0 0 666494. 2306.21 0.33 0.07 0.0219296 0.0201765 185 91 62 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.64 vpr 62.70 MiB 0.04 7136 -1 -1 1 0.01 -1 -1 33376 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64200 31 32 307 252 1 158 81 17 17 289 -1 unnamed_device 24.2 MiB 0.17 605 62.7 MiB 0.08 0.00 3.0343 -94.0752 -3.0343 3.0343 0.68 0.000146672 0.000118695 0.0126497 0.0104413 32 2008 25 6.64007e+06 226044 554710. 1919.41 0.77 0.042853 0.0366319 1545 19 1237 1842 131191 32618 3.08717 3.08717 -118.918 -3.08717 0 0 701300. 2426.64 0.34 0.04 0.00985604 0.00881416 116 24 62 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.74 vpr 63.33 MiB 0.03 7196 -1 -1 1 0.02 -1 -1 33376 -1 -1 37 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64852 31 32 397 313 1 196 100 17 17 289 -1 unnamed_device 24.9 MiB 0.13 970 63.3 MiB 0.09 0.00 3.42816 -114.66 -3.42816 3.42816 0.70 0.000209193 0.000173134 0.0114566 0.009548 28 2862 34 6.64007e+06 464646 500653. 1732.36 0.91 0.0565343 0.0487578 2270 22 1743 2896 217088 50237 3.75863 3.75863 -142.902 -3.75863 0 0 612192. 2118.31 0.22 0.06 0.0144532 0.0128697 151 59 62 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.10 vpr 63.13 MiB 0.02 7292 -1 -1 1 0.02 -1 -1 33404 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64644 32 32 398 314 1 196 98 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1051 63.1 MiB 0.06 0.00 2.9841 -98.1883 -2.9841 2.9841 1.08 0.000248312 0.0002108 0.00795458 0.00679618 28 3076 24 6.64007e+06 426972 500653. 1732.36 1.30 0.0516139 0.0448983 2447 21 1341 2477 206392 46483 2.98517 2.98517 -124.975 -2.98517 0 0 612192. 2118.31 0.21 0.05 0.0143807 0.0128701 149 54 62 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.58 vpr 63.07 MiB 0.02 7252 -1 -1 1 0.01 -1 -1 33252 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64580 32 32 346 258 1 194 86 17 17 289 -1 unnamed_device 24.6 MiB 0.05 869 63.1 MiB 0.06 0.00 3.31896 -113.328 -3.31896 3.31896 0.69 0.000170526 0.000138902 0.0115855 0.00967895 32 2651 22 6.64007e+06 276276 554710. 1919.41 0.97 0.0485331 0.0420968 2215 22 1904 3390 250209 59141 3.76963 3.76963 -144.96 -3.76963 0 0 701300. 2426.64 0.40 0.06 0.0139152 0.0125175 152 -1 128 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.67 vpr 63.05 MiB 0.02 7224 -1 -1 1 0.02 -1 -1 33656 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64568 32 32 425 344 1 190 99 17 17 289 -1 unnamed_device 24.5 MiB 0.20 1023 63.1 MiB 0.12 0.00 2.7537 -100.18 -2.7537 2.7537 0.69 0.000198932 0.000161677 0.0174541 0.0144413 32 2250 20 6.64007e+06 439530 554710. 1919.41 0.84 0.08262 0.0740626 1968 19 1282 1973 126326 28758 2.73077 2.73077 -112.344 -2.73077 0 0 701300. 2426.64 0.25 0.04 0.0127824 0.0113891 146 81 25 25 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.40 vpr 62.96 MiB 0.03 7176 -1 -1 1 0.02 -1 -1 33420 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64472 32 32 396 312 1 194 100 17 17 289 -1 unnamed_device 24.6 MiB 0.32 1056 63.0 MiB 0.06 0.00 2.7647 -100.473 -2.7647 2.7647 0.70 0.000197831 0.000162485 0.0089364 0.00752247 26 2630 26 6.64007e+06 452088 477104. 1650.88 1.44 0.0599019 0.0525228 2205 20 1388 2493 187048 40012 2.88697 2.88697 -119.281 -2.88697 0 0 585099. 2024.56 0.24 0.06 0.0155868 0.0141577 147 58 64 32 60 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.41 vpr 62.71 MiB 0.03 7176 -1 -1 1 0.01 -1 -1 33416 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64220 32 32 406 319 1 200 103 17 17 289 -1 unnamed_device 24.7 MiB 0.11 1126 62.7 MiB 0.15 0.01 2.8739 -104.748 -2.8739 2.8739 0.91 0.000193318 0.000157089 0.0212731 0.0147133 26 3344 42 6.64007e+06 489762 477104. 1650.88 1.47 0.0764236 0.0628328 2626 21 1915 3086 251123 53497 3.12617 3.12617 -129.784 -3.12617 0 0 585099. 2024.56 0.20 0.06 0.0146078 0.0130332 157 61 63 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.01 vpr 62.97 MiB 0.05 7288 -1 -1 1 0.01 -1 -1 33460 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64480 32 32 377 289 1 194 102 17 17 289 -1 unnamed_device 24.4 MiB 0.07 852 63.0 MiB 0.13 0.02 3.40616 -113.828 -3.40616 3.40616 0.70 0.00017886 0.000145259 0.0202546 0.018847 28 2896 29 6.64007e+06 477204 500653. 1732.36 1.38 0.0675001 0.0598168 2261 21 1739 2858 210354 49430 3.72443 3.72443 -146.241 -3.72443 0 0 612192. 2118.31 0.30 0.06 0.0156419 0.0140556 153 21 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.74 vpr 63.14 MiB 0.02 7096 -1 -1 1 0.02 -1 -1 33676 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64652 32 32 408 320 1 197 103 17 17 289 -1 unnamed_device 24.7 MiB 0.30 1096 63.1 MiB 0.14 0.00 3.33916 -118.29 -3.33916 3.33916 0.72 0.000195728 0.000159843 0.0189334 0.0157978 28 2568 29 6.64007e+06 489762 500653. 1732.36 0.97 0.0626857 0.053936 2282 18 1560 2410 166160 38185 3.61043 3.61043 -141.499 -3.61043 0 0 612192. 2118.31 0.33 0.05 0.0129555 0.0116135 155 50 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.05 vpr 63.37 MiB 0.02 7484 -1 -1 1 0.01 -1 -1 33744 -1 -1 36 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64888 31 32 451 369 1 193 99 17 17 289 -1 unnamed_device 24.8 MiB 0.18 1065 63.4 MiB 0.08 0.00 3.76575 -112.765 -3.76575 3.76575 0.71 0.000219734 0.000179695 0.0117286 0.00966934 28 2691 20 6.64007e+06 452088 500653. 1732.36 1.13 0.0640389 0.0562689 2301 18 1285 2232 173007 37197 3.46902 3.46902 -128.579 -3.46902 0 0 612192. 2118.31 0.21 0.05 0.0130625 0.0116377 147 110 0 0 122 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.44 vpr 63.33 MiB 0.02 7404 -1 -1 1 0.02 -1 -1 33908 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64852 32 32 433 347 1 195 86 17 17 289 -1 unnamed_device 25.0 MiB 0.19 930 63.3 MiB 0.07 0.00 3.62255 -109.257 -3.62255 3.62255 0.79 0.000222235 0.000182955 0.0112276 0.00940197 26 3656 34 6.64007e+06 276276 477104. 1650.88 1.74 0.0659444 0.0535205 2439 23 1657 3044 234578 56227 3.90183 3.90183 -145.534 -3.90183 0 0 585099. 2024.56 0.20 0.06 0.0163099 0.0145124 150 86 32 32 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.63 vpr 62.96 MiB 0.02 6968 -1 -1 1 0.01 -1 -1 33544 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64468 32 32 313 256 1 166 95 17 17 289 -1 unnamed_device 24.3 MiB 0.06 808 63.0 MiB 0.09 0.00 2.8079 -98.515 -2.8079 2.8079 0.85 0.00016737 0.000132251 0.0116343 0.00955809 32 1969 22 6.64007e+06 389298 554710. 1919.41 0.72 0.0434729 0.0374196 1756 20 1230 1799 134137 30453 2.73757 2.73757 -112.644 -2.73757 0 0 701300. 2426.64 0.30 0.04 0.0111568 0.00952824 125 20 63 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.54 vpr 62.93 MiB 0.03 7184 -1 -1 1 0.01 -1 -1 33320 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64444 32 32 371 315 1 164 82 17 17 289 -1 unnamed_device 24.2 MiB 0.16 912 62.9 MiB 0.08 0.00 2.7819 -100.619 -2.7819 2.7819 0.79 0.000176152 0.000143181 0.0142574 0.0118555 32 2220 19 6.64007e+06 226044 554710. 1919.41 0.68 0.0442701 0.0377802 1960 21 1280 1992 150829 32546 2.87997 2.87997 -119.726 -2.87997 0 0 701300. 2426.64 0.23 0.06 0.0142052 0.01276 121 91 0 0 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.92 vpr 63.09 MiB 0.04 7296 -1 -1 1 0.02 -1 -1 33760 -1 -1 42 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64600 32 32 470 352 1 233 106 17 17 289 -1 unnamed_device 25.1 MiB 0.11 1477 63.1 MiB 0.21 0.00 4.26502 -147.056 -4.26502 4.26502 0.95 0.000284023 0.000239312 0.0386391 0.0350686 32 3786 27 6.64007e+06 527436 554710. 1919.41 0.85 0.0888541 0.0789195 3182 23 2668 4300 411174 84597 5.07209 5.07209 -185.877 -5.07209 0 0 701300. 2426.64 0.23 0.09 0.0178874 0.0159722 189 53 96 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.70 vpr 62.66 MiB 0.03 7260 -1 -1 1 0.01 -1 -1 33348 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64164 32 32 369 285 1 194 97 17 17 289 -1 unnamed_device 24.3 MiB 0.12 951 62.7 MiB 0.12 0.00 2.7849 -98.6418 -2.7849 2.7849 0.91 0.000193869 0.0001585 0.0162523 0.013467 32 2224 21 6.64007e+06 414414 554710. 1919.41 0.94 0.0648322 0.0565075 1869 20 1476 2144 142250 34006 3.05737 3.05737 -117.132 -3.05737 0 0 701300. 2426.64 0.25 0.04 0.0135666 0.0120894 148 31 92 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.28 vpr 62.75 MiB 0.02 7088 -1 -1 1 0.01 -1 -1 33516 -1 -1 31 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64256 30 32 299 247 1 158 93 17 17 289 -1 unnamed_device 24.2 MiB 0.09 845 62.8 MiB 0.09 0.00 2.7427 -93.6788 -2.7427 2.7427 0.70 0.000162912 0.000132729 0.0131721 0.0108481 32 1827 20 6.64007e+06 389298 554710. 1919.41 0.75 0.042305 0.0361247 1666 18 1100 1748 120215 26173 2.75277 2.75277 -107.833 -2.75277 0 0 701300. 2426.64 0.24 0.04 0.0103978 0.00938076 116 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.20 vpr 63.54 MiB 0.06 7436 -1 -1 1 0.02 -1 -1 33712 -1 -1 45 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65064 32 32 532 414 1 232 109 17 17 289 -1 unnamed_device 25.5 MiB 0.28 1221 63.5 MiB 0.13 0.00 4.02462 -139.525 -4.02462 4.02462 0.72 0.000262408 0.000215472 0.0183487 0.0152727 28 3309 25 6.64007e+06 565110 500653. 1732.36 1.02 0.10026 0.0901654 2804 23 2368 3659 283353 60827 4.58329 4.58329 -172.084 -4.58329 0 0 612192. 2118.31 0.21 0.07 0.0199009 0.0177471 188 109 32 32 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.88 vpr 63.03 MiB 0.04 7284 -1 -1 1 0.01 -1 -1 33404 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64540 32 32 377 289 1 194 102 17 17 289 -1 unnamed_device 24.5 MiB 0.18 1020 63.0 MiB 0.10 0.00 3.44536 -118.453 -3.44536 3.44536 0.92 0.000220003 0.000183978 0.0217971 0.0196254 32 2433 26 6.64007e+06 477204 554710. 1919.41 0.89 0.0610989 0.0540124 2170 21 1828 2754 202279 43354 3.88383 3.88383 -147.7 -3.88383 0 0 701300. 2426.64 0.24 0.05 0.01417 0.0127053 153 31 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.51 vpr 62.36 MiB 0.02 7060 -1 -1 1 0.01 -1 -1 33276 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63852 32 32 284 226 1 164 96 17 17 289 -1 unnamed_device 23.9 MiB 0.06 932 62.4 MiB 0.14 0.00 2.8299 -102.897 -2.8299 2.8299 0.73 0.000203923 0.000171164 0.0121926 0.00839305 32 2065 21 6.64007e+06 401856 554710. 1919.41 0.89 0.0430744 0.0354719 1873 20 1270 1945 126937 28512 2.82857 2.82857 -118.892 -2.82857 0 0 701300. 2426.64 0.35 0.04 0.0101659 0.00910926 124 -1 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.85 vpr 63.09 MiB 0.02 7516 -1 -1 1 0.02 -1 -1 33752 -1 -1 44 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64604 32 32 439 321 1 235 108 17 17 289 -1 unnamed_device 24.9 MiB 0.20 1245 63.1 MiB 0.09 0.00 4.11362 -139.044 -4.11362 4.11362 0.80 0.000267085 0.000225917 0.0113544 0.00968296 32 3236 24 6.64007e+06 552552 554710. 1919.41 0.89 0.0562993 0.0489067 2694 20 2104 3278 221286 49379 4.65629 4.65629 -171.414 -4.65629 0 0 701300. 2426.64 0.26 0.07 0.015593 0.0140183 191 26 128 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.43 vpr 62.71 MiB 0.02 7108 -1 -1 1 0.01 -1 -1 33088 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64212 32 32 284 226 1 162 81 17 17 289 -1 unnamed_device 24.2 MiB 0.08 690 62.7 MiB 0.04 0.00 2.8039 -96.7599 -2.8039 2.8039 0.77 0.000162426 0.000133959 0.00706149 0.00595313 32 1938 23 6.64007e+06 213486 554710. 1919.41 0.79 0.0375209 0.0326395 1632 21 1486 2379 164943 39350 2.90497 2.90497 -115.876 -2.90497 0 0 701300. 2426.64 0.24 0.04 0.011596 0.0104276 121 -1 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.71 vpr 62.57 MiB 0.03 7016 -1 -1 1 0.01 -1 -1 33176 -1 -1 31 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64072 30 32 299 247 1 157 93 17 17 289 -1 unnamed_device 24.1 MiB 0.13 745 62.6 MiB 0.06 0.00 2.8079 -92.0062 -2.8079 2.8079 0.82 0.000186704 0.000156934 0.00758124 0.00636405 32 1881 23 6.64007e+06 389298 554710. 1919.41 0.79 0.0469224 0.0330052 1645 20 1205 1941 134854 31639 2.76557 2.76557 -109.611 -2.76557 0 0 701300. 2426.64 0.24 0.04 0.0102258 0.00914897 113 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.14 vpr 62.91 MiB 0.04 7416 -1 -1 1 0.02 -1 -1 33480 -1 -1 34 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64424 29 32 397 323 1 182 95 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1090 62.9 MiB 0.10 0.00 3.0243 -92.4543 -3.0243 3.0243 0.82 0.000213079 0.000174729 0.012857 0.0108021 26 2781 22 6.64007e+06 426972 477104. 1650.88 1.39 0.0821589 0.0724514 2360 20 1481 2581 180684 40346 3.04797 3.04797 -114.872 -3.04797 0 0 585099. 2024.56 0.20 0.05 0.0129565 0.0115484 134 81 29 29 85 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.01 vpr 63.10 MiB 0.02 7376 -1 -1 1 0.02 -1 -1 33660 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64612 32 32 408 320 1 194 86 17 17 289 -1 unnamed_device 24.5 MiB 0.18 887 63.1 MiB 0.06 0.00 3.49856 -117.689 -3.49856 3.49856 0.70 0.000191582 0.000156629 0.00951308 0.00800392 32 2331 23 6.64007e+06 276276 554710. 1919.41 1.03 0.0531559 0.0421842 2062 23 2135 3199 209097 51134 3.82483 3.82483 -146.637 -3.82483 0 0 701300. 2426.64 0.37 0.06 0.0153161 0.0135456 151 53 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.90 vpr 63.11 MiB 0.02 7336 -1 -1 1 0.02 -1 -1 33304 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64624 32 32 408 320 1 195 100 17 17 289 -1 unnamed_device 24.7 MiB 0.20 1048 63.1 MiB 0.12 0.00 3.39516 -119.364 -3.39516 3.39516 0.82 0.000233272 0.000162632 0.0170428 0.0141219 32 2416 22 6.64007e+06 452088 554710. 1919.41 0.92 0.0579367 0.049951 2121 20 1786 2907 194071 43089 3.47303 3.47303 -136.986 -3.47303 0 0 701300. 2426.64 0.25 0.05 0.0141418 0.0126939 154 55 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.61 vpr 62.70 MiB 0.03 6996 -1 -1 1 0.01 -1 -1 33620 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64200 32 32 346 288 1 161 96 17 17 289 -1 unnamed_device 24.1 MiB 0.11 913 62.7 MiB 0.18 0.00 2.8299 -102.53 -2.8299 2.8299 0.98 0.000184143 0.000151582 0.0556736 0.0293412 32 2016 21 6.64007e+06 401856 554710. 1919.41 0.68 0.0874871 0.0568944 1744 25 1418 2072 136754 30956 2.80957 2.80957 -117.214 -2.80957 0 0 701300. 2426.64 0.23 0.04 0.0130435 0.011508 122 55 32 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.65 vpr 62.86 MiB 0.03 7080 -1 -1 1 0.01 -1 -1 33204 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64364 31 32 355 304 1 152 80 17 17 289 -1 unnamed_device 24.4 MiB 0.15 893 62.9 MiB 0.09 0.00 2.9591 -95.3474 -2.9591 2.9591 0.75 0.000182013 0.000149785 0.0156613 0.0129116 32 2078 16 6.64007e+06 213486 554710. 1919.41 0.80 0.0451247 0.0383772 1820 20 1197 2156 146356 32943 2.98597 2.98597 -113.428 -2.98597 0 0 701300. 2426.64 0.37 0.04 0.0119427 0.0104832 109 82 0 0 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.82 vpr 62.89 MiB 0.02 7248 -1 -1 1 0.02 -1 -1 33568 -1 -1 34 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64396 30 32 377 300 1 186 96 17 17 289 -1 unnamed_device 24.4 MiB 0.15 954 62.9 MiB 0.10 0.00 2.7969 -93.1304 -2.7969 2.7969 0.78 0.000184522 0.000150844 0.0132508 0.0110176 26 2292 21 6.64007e+06 426972 477104. 1650.88 1.01 0.0665288 0.0595567 1821 16 954 1657 96508 23675 2.83277 2.83277 -109.781 -2.83277 0 0 585099. 2024.56 0.32 0.03 0.0113291 0.0101984 138 52 60 30 57 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.81 vpr 62.91 MiB 0.02 7336 -1 -1 1 0.02 -1 -1 33716 -1 -1 32 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64420 28 32 337 265 1 180 92 17 17 289 -1 unnamed_device 24.5 MiB 0.11 851 62.9 MiB 0.13 0.00 3.65556 -102.695 -3.65556 3.65556 0.82 0.000184987 0.000154204 0.0254046 0.0115957 26 2330 24 6.64007e+06 401856 477104. 1650.88 0.94 0.0642804 0.0459477 2089 21 1620 2463 176884 40068 3.82563 3.82563 -129.521 -3.82563 0 0 585099. 2024.56 0.26 0.06 0.0172339 0.015819 134 20 84 28 28 28 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.68 vpr 62.62 MiB 0.03 7052 -1 -1 1 0.01 -1 -1 33384 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64124 30 32 328 276 1 157 81 17 17 289 -1 unnamed_device 24.1 MiB 0.14 911 62.6 MiB 0.10 0.00 2.8131 -97.4412 -2.8131 2.8131 0.85 0.000205716 0.000172428 0.0142488 0.0118356 32 1926 21 6.64007e+06 238602 554710. 1919.41 0.68 0.0442642 0.0378537 1690 19 1268 2086 131682 29824 2.70957 2.70957 -111.136 -2.70957 0 0 701300. 2426.64 0.23 0.04 0.0108531 0.00967412 114 58 30 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.48 vpr 62.81 MiB 0.02 6980 -1 -1 1 0.02 -1 -1 33464 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64316 32 32 362 309 1 158 81 17 17 289 -1 unnamed_device 24.3 MiB 0.15 862 62.8 MiB 0.06 0.00 2.9653 -95.662 -2.9653 2.9653 0.76 0.000169462 0.000137507 0.0089674 0.00747178 30 1938 21 6.64007e+06 213486 526063. 1820.29 0.91 0.0817049 0.0746019 1689 16 859 1399 80603 18468 2.66257 2.66257 -104.554 -2.66257 0 0 666494. 2306.21 0.23 0.03 0.0102165 0.0091693 114 88 0 0 91 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.53 vpr 62.93 MiB 0.05 7172 -1 -1 1 0.01 -1 -1 33380 -1 -1 37 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64436 31 32 337 253 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1074 62.9 MiB 0.12 0.00 3.34716 -114.393 -3.34716 3.34716 0.71 0.000183438 0.000150095 0.0157838 0.0131727 28 2700 22 6.64007e+06 464646 500653. 1732.36 0.99 0.0538781 0.0465854 2337 20 1605 2548 169996 38616 3.75363 3.75363 -144.589 -3.75363 0 0 612192. 2118.31 0.21 0.05 0.0120608 0.010774 152 -1 124 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.72 vpr 63.32 MiB 0.04 7156 -1 -1 1 0.01 -1 -1 33468 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64836 32 32 408 320 1 197 100 17 17 289 -1 unnamed_device 24.9 MiB 0.15 1057 63.3 MiB 0.25 0.00 3.55936 -121.982 -3.55936 3.55936 0.75 0.000207361 0.000171335 0.0254496 0.0219529 34 2571 23 6.64007e+06 452088 585099. 2024.56 1.57 0.0866005 0.0745635 2135 22 1937 3495 235390 52546 3.73543 3.73543 -144.21 -3.73543 0 0 742403. 2568.87 0.42 0.06 0.0143974 0.0127595 155 57 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.30 vpr 63.11 MiB 0.03 7144 -1 -1 1 0.02 -1 -1 33256 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64628 32 32 408 320 1 194 100 17 17 289 -1 unnamed_device 24.7 MiB 0.24 1079 63.1 MiB 0.10 0.02 3.30796 -117.122 -3.30796 3.30796 0.71 0.000235718 0.000196386 0.0120698 0.0100809 34 2449 20 6.64007e+06 452088 585099. 2024.56 1.44 0.0740841 0.0639686 2258 20 1432 2420 152880 35752 3.70243 3.70243 -141.488 -3.70243 0 0 742403. 2568.87 0.25 0.05 0.0138898 0.0124593 153 62 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.68 vpr 63.18 MiB 0.04 7232 -1 -1 1 0.01 -1 -1 33212 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64700 32 32 400 316 1 196 102 17 17 289 -1 unnamed_device 24.8 MiB 0.20 1094 63.2 MiB 0.17 0.00 3.38416 -114.214 -3.38416 3.38416 0.92 0.000192479 0.000156435 0.0209967 0.0173073 32 2677 19 6.64007e+06 477204 554710. 1919.41 0.74 0.0568125 0.0484563 2103 21 1519 2553 151695 36067 3.56223 3.56223 -130.645 -3.56223 0 0 701300. 2426.64 0.24 0.05 0.0134224 0.0119711 149 62 60 30 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.33 vpr 62.74 MiB 0.03 7180 -1 -1 1 0.02 -1 -1 33384 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64244 30 32 299 247 1 156 81 17 17 289 -1 unnamed_device 24.2 MiB 0.15 723 62.7 MiB 0.10 0.00 2.7819 -92.8924 -2.7819 2.7819 0.76 0.00015405 0.000125384 0.0136981 0.0112766 32 1875 18 6.64007e+06 238602 554710. 1919.41 0.69 0.0416218 0.0354813 1694 20 1296 2068 162304 36572 2.84497 2.84497 -110.432 -2.84497 0 0 701300. 2426.64 0.23 0.04 0.0101891 0.0090998 113 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.36 vpr 62.80 MiB 0.02 7412 -1 -1 1 0.01 -1 -1 33276 -1 -1 24 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64304 30 32 386 306 1 191 86 17 17 289 -1 unnamed_device 24.4 MiB 0.28 812 62.8 MiB 0.06 0.00 3.36736 -105.404 -3.36736 3.36736 0.70 0.000180125 0.000146321 0.0102054 0.00859443 32 2113 24 6.64007e+06 301392 554710. 1919.41 0.80 0.0466682 0.0401656 1621 23 1944 2932 169488 44085 3.60363 3.60363 -128.963 -3.60363 0 0 701300. 2426.64 0.23 0.05 0.0145778 0.0129976 147 58 60 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 3.99 vpr 63.39 MiB 0.07 7404 -1 -1 1 0.02 -1 -1 33792 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64916 32 32 470 382 1 198 105 17 17 289 -1 unnamed_device 25.1 MiB 0.22 1025 63.4 MiB 0.14 0.00 3.43916 -119.458 -3.43916 3.43916 0.69 0.000208096 0.000169226 0.0194238 0.0161211 32 2581 23 6.64007e+06 514878 554710. 1919.41 0.92 0.0615844 0.0527455 2163 24 2018 3130 221379 47447 3.63723 3.63723 -138.021 -3.63723 0 0 701300. 2426.64 0.23 0.06 0.0170716 0.0150803 156 106 0 0 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.86 vpr 62.98 MiB 0.03 7204 -1 -1 1 0.02 -1 -1 33524 -1 -1 33 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64496 31 32 427 343 1 189 96 17 17 289 -1 unnamed_device 24.6 MiB 0.18 923 63.0 MiB 0.11 0.00 3.64455 -113.268 -3.64455 3.64455 1.15 0.000240365 0.000199461 0.0160779 0.0135027 32 2590 21 6.64007e+06 414414 554710. 1919.41 0.72 0.0560472 0.0480374 2060 18 1429 2374 145930 35095 3.66742 3.66742 -134.826 -3.66742 0 0 701300. 2426.64 0.24 0.05 0.0135257 0.0121493 147 79 31 31 93 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.59 vpr 63.07 MiB 0.02 7348 -1 -1 1 0.02 -1 -1 33396 -1 -1 32 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64584 30 32 407 331 1 182 94 17 17 289 -1 unnamed_device 24.7 MiB 0.17 903 63.1 MiB 0.07 0.00 3.00058 -91.024 -3.00058 3.00058 0.93 0.0002289 0.000192065 0.00937393 0.00786847 32 2078 21 6.64007e+06 401856 554710. 1919.41 0.67 0.0448128 0.0386184 1837 24 1469 2397 147398 35404 2.93496 2.93496 -109.388 -2.93496 0 0 701300. 2426.64 0.31 0.05 0.0143355 0.0126996 138 83 26 26 90 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.76 vpr 63.09 MiB 0.02 7152 -1 -1 1 0.01 -1 -1 33200 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64604 32 32 408 320 1 198 86 17 17 289 -1 unnamed_device 24.7 MiB 0.28 1100 63.1 MiB 0.12 0.00 3.30796 -117.483 -3.30796 3.30796 0.78 0.000268374 0.000228999 0.0173125 0.014287 32 3074 22 6.64007e+06 276276 554710. 1919.41 0.86 0.0574178 0.0491752 2568 20 1855 3196 254484 54299 3.69143 3.69143 -145.842 -3.69143 0 0 701300. 2426.64 0.28 0.10 0.0141197 0.0126368 155 58 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.59 vpr 62.86 MiB 0.05 7460 -1 -1 1 0.02 -1 -1 33464 -1 -1 36 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64368 29 32 391 320 1 179 97 17 17 289 -1 unnamed_device 24.4 MiB 0.11 894 62.9 MiB 0.14 0.00 2.7859 -88.6584 -2.7859 2.7859 0.71 0.000178062 0.00014389 0.0193195 0.0161432 30 1875 21 6.64007e+06 452088 526063. 1820.29 0.71 0.0534923 0.0457202 1559 17 1100 1872 90201 22260 2.75377 2.75377 -98.7833 -2.75377 0 0 666494. 2306.21 0.24 0.04 0.0114996 0.0102664 136 81 26 26 85 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.59 vpr 62.75 MiB 0.05 6792 -1 -1 1 0.01 -1 -1 33288 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64252 32 32 284 226 1 156 81 17 17 289 -1 unnamed_device 24.3 MiB 0.05 895 62.7 MiB 0.08 0.00 2.7819 -102.449 -2.7819 2.7819 0.77 0.000149279 0.000121345 0.0130263 0.0108261 32 1977 17 6.64007e+06 213486 554710. 1919.41 1.06 0.0541761 0.0484766 1747 20 1293 2022 147370 32594 2.97997 2.97997 -124.185 -2.97997 0 0 701300. 2426.64 0.24 0.04 0.0108433 0.00971509 115 -1 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.66 vpr 62.95 MiB 0.02 7312 -1 -1 1 0.01 -1 -1 33360 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64456 32 32 408 320 1 194 99 17 17 289 -1 unnamed_device 24.5 MiB 0.35 1065 62.9 MiB 0.12 0.00 3.41716 -120.336 -3.41716 3.41716 0.80 0.000193763 0.000157154 0.0177521 0.0144213 32 2590 21 6.64007e+06 439530 554710. 1919.41 0.74 0.0580618 0.0497686 2202 22 1674 2586 173313 39057 3.55323 3.55323 -142.426 -3.55323 0 0 701300. 2426.64 0.31 0.05 0.0138383 0.0123687 152 62 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.82 vpr 63.06 MiB 0.02 7268 -1 -1 1 0.01 -1 -1 33392 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64572 32 32 408 320 1 201 87 17 17 289 -1 unnamed_device 24.6 MiB 0.18 1156 63.1 MiB 0.12 0.01 3.62976 -127.162 -3.62976 3.62976 0.98 0.000271411 0.000228412 0.0174815 0.0146139 32 2601 24 6.64007e+06 288834 554710. 1919.41 0.75 0.0606921 0.0525767 2396 21 2070 3151 258078 55860 3.87763 3.87763 -150.062 -3.87763 0 0 701300. 2426.64 0.26 0.06 0.0147338 0.0131806 158 62 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.47 vpr 63.00 MiB 0.03 6924 -1 -1 1 0.02 -1 -1 33392 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64516 32 32 316 268 1 158 94 17 17 289 -1 unnamed_device 24.4 MiB 0.12 846 63.0 MiB 0.30 0.00 3.0243 -95.0876 -3.0243 3.0243 0.74 0.00015121 0.000121724 0.0282884 0.0255103 28 2011 24 6.64007e+06 376740 500653. 1732.36 0.65 0.0597028 0.0527809 1734 20 1083 1793 119959 27579 2.90397 2.90397 -111.204 -2.90397 0 0 612192. 2118.31 0.22 0.04 0.0107668 0.00957874 112 47 32 32 54 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.49 vpr 62.36 MiB 0.04 6980 -1 -1 1 0.01 -1 -1 33172 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63860 31 32 277 222 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 0.06 923 62.4 MiB 0.08 0.00 2.8321 -100.745 -2.8321 2.8321 0.97 0.000167334 0.000138956 0.0110657 0.00925118 32 1957 18 6.64007e+06 226044 554710. 1919.41 0.66 0.0388219 0.0335362 1763 21 1427 2328 154834 35699 2.77777 2.77777 -113.872 -2.77777 0 0 701300. 2426.64 0.25 0.05 0.0110729 0.00987641 118 -1 93 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.62 vpr 62.99 MiB 0.03 7188 -1 -1 1 0.02 -1 -1 33000 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64504 32 32 382 304 1 188 97 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1014 63.0 MiB 0.10 0.00 3.32336 -113.179 -3.32336 3.32336 0.83 0.000217809 0.000181037 0.0190429 0.0168725 26 2518 22 6.64007e+06 414414 477104. 1650.88 0.86 0.0566392 0.0495387 2140 23 1524 2264 154172 35417 3.61463 3.61463 -134.547 -3.61463 0 0 585099. 2024.56 0.20 0.05 0.0139279 0.0123409 139 56 60 32 58 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 3.79 vpr 63.14 MiB 0.04 7396 -1 -1 1 0.02 -1 -1 33352 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64660 32 32 407 331 1 190 96 17 17 289 -1 unnamed_device 24.8 MiB 0.35 1029 63.1 MiB 0.16 0.00 3.95515 -115.735 -3.95515 3.95515 0.72 0.00021238 0.000174641 0.0201974 0.0167712 32 2534 23 6.64007e+06 401856 554710. 1919.41 0.80 0.0619955 0.0536419 2095 22 1524 2465 181952 40588 3.86402 3.86402 -130.911 -3.86402 0 0 701300. 2426.64 0.24 0.05 0.0142041 0.0126567 140 81 28 28 88 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.39 vpr 63.18 MiB 0.04 7244 -1 -1 1 0.02 -1 -1 33716 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64692 32 32 400 286 1 228 101 17 17 289 -1 unnamed_device 25.1 MiB 0.09 1180 63.2 MiB 0.14 0.00 3.86842 -129.387 -3.86842 3.86842 0.71 0.000224579 0.000186413 0.0178938 0.0150305 30 3574 39 6.64007e+06 464646 526063. 1820.29 1.45 0.0776231 0.0681999 2425 21 1700 2789 172832 39780 4.50829 4.50829 -162.561 -4.50829 0 0 666494. 2306.21 0.29 0.06 0.0159653 0.0143519 179 -1 156 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.47 vpr 63.00 MiB 0.06 7212 -1 -1 1 0.01 -1 -1 33292 -1 -1 34 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64516 30 32 374 298 1 184 96 17 17 289 -1 unnamed_device 24.5 MiB 0.12 883 63.0 MiB 0.08 0.00 3.0493 -92.6203 -3.0493 3.0493 0.91 0.000283004 0.000176446 0.0104896 0.00866504 30 2044 18 6.64007e+06 426972 526063. 1820.29 0.67 0.0439492 0.0378306 1752 16 1035 1670 79550 20072 2.92696 2.92696 -109.818 -2.92696 0 0 666494. 2306.21 0.23 0.03 0.011317 0.010176 138 47 60 30 56 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.45 vpr 62.50 MiB 0.03 6936 -1 -1 1 0.01 -1 -1 33288 -1 -1 20 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64004 27 32 275 232 1 143 79 17 17 289 -1 unnamed_device 23.9 MiB 0.08 665 62.5 MiB 0.07 0.00 3.0295 -82.6933 -3.0295 3.0295 0.71 0.000137957 0.000111739 0.0117639 0.00969694 32 1694 23 6.64007e+06 251160 554710. 1919.41 0.73 0.0432269 0.0376479 1485 21 1107 1632 129798 29705 3.06217 3.06217 -102.886 -3.06217 0 0 701300. 2426.64 0.28 0.07 0.0153942 0.0142122 103 26 54 27 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.98 vpr 63.10 MiB 0.06 7328 -1 -1 1 0.01 -1 -1 33648 -1 -1 42 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64616 32 32 494 379 1 232 106 17 17 289 -1 unnamed_device 25.1 MiB 0.18 1407 63.1 MiB 0.13 0.00 3.94095 -124.66 -3.94095 3.94095 0.70 0.000243757 0.000201628 0.0156445 0.0131126 30 3287 21 6.64007e+06 527436 526063. 1820.29 0.91 0.0709535 0.0625461 2721 21 1532 2891 177986 39263 3.66622 3.66622 -139.905 -3.66622 0 0 666494. 2306.21 0.48 0.09 0.020948 0.0191359 185 85 62 31 95 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.80 vpr 63.41 MiB 0.02 7396 -1 -1 1 0.01 -1 -1 33696 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64928 31 32 457 373 1 188 85 17 17 289 -1 unnamed_device 24.9 MiB 0.30 945 63.4 MiB 0.08 0.00 3.75264 -116.965 -3.75264 3.75264 0.71 0.000219615 0.000180415 0.0145494 0.0120709 30 2370 21 6.64007e+06 276276 526063. 1820.29 0.77 0.0536644 0.0461231 1923 19 1151 1901 110893 25947 3.92802 3.92802 -140.59 -3.92802 0 0 666494. 2306.21 0.24 0.04 0.0144657 0.0130185 145 105 0 0 124 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.70 vpr 62.69 MiB 0.03 7156 -1 -1 1 0.01 -1 -1 33428 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64192 32 32 356 305 1 150 80 17 17 289 -1 unnamed_device 24.2 MiB 0.27 824 62.7 MiB 0.08 0.00 3.0745 -95.0624 -3.0745 3.0745 0.89 0.000173066 0.000134549 0.0155116 0.0125841 30 1894 21 6.64007e+06 200928 526063. 1820.29 0.66 0.0471902 0.0400344 1612 13 723 1109 71266 16114 2.74376 2.74376 -108.998 -2.74376 0 0 666494. 2306.21 0.23 0.03 0.00883067 0.00797742 108 86 0 0 89 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.43 vpr 63.13 MiB 0.02 7260 -1 -1 1 0.01 -1 -1 33352 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64648 32 32 365 283 1 196 96 17 17 289 -1 unnamed_device 24.5 MiB 0.07 1079 63.1 MiB 0.14 0.00 3.67756 -118.862 -3.67756 3.67756 0.70 0.000182691 0.00014763 0.0175031 0.0144366 28 2871 21 6.64007e+06 401856 500653. 1732.36 0.97 0.0548307 0.0471292 2384 23 1671 2508 192590 42380 4.27483 4.27483 -147.197 -4.27483 0 0 612192. 2118.31 0.21 0.07 0.0166527 0.0150486 146 31 90 30 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.17 vpr 62.95 MiB 0.02 7304 -1 -1 1 0.01 -1 -1 33808 -1 -1 38 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64456 31 32 445 338 1 220 101 17 17 289 -1 unnamed_device 24.9 MiB 0.12 1114 62.9 MiB 0.08 0.00 3.68676 -116.986 -3.68676 3.68676 0.72 0.000210295 0.000171889 0.0120424 0.0101045 26 3262 30 6.64007e+06 477204 477104. 1650.88 1.21 0.0619309 0.0537713 2521 20 1880 3001 232049 52240 3.76462 3.76462 -141.907 -3.76462 0 0 585099. 2024.56 0.39 0.09 0.0356024 0.0338649 173 50 87 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.73 vpr 62.99 MiB 0.03 7224 -1 -1 1 0.02 -1 -1 33240 -1 -1 34 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64500 30 32 376 300 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 0.10 925 63.0 MiB 0.05 0.00 3.0573 -89.98 -3.0573 3.0573 0.89 0.000176722 0.000143663 0.00817436 0.00681423 28 2944 41 6.64007e+06 426972 500653. 1732.36 1.77 0.0710525 0.0631535 2203 23 1753 3002 221793 56632 2.95897 2.95897 -116.54 -2.95897 0 0 612192. 2118.31 0.23 0.06 0.0141652 0.012606 135 50 58 30 58 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.87 vpr 62.81 MiB 0.05 7372 -1 -1 1 0.01 -1 -1 33652 -1 -1 43 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64320 32 32 408 320 1 201 107 17 17 289 -1 unnamed_device 24.6 MiB 0.14 990 62.8 MiB 0.09 0.00 3.47836 -117.788 -3.47836 3.47836 0.94 0.000193678 0.000158013 0.0109228 0.00920105 30 2491 22 6.64007e+06 539994 526063. 1820.29 0.80 0.0516715 0.0448428 2094 22 1767 3008 167415 38179 3.56843 3.56843 -136.22 -3.56843 0 0 666494. 2306.21 0.22 0.05 0.0137836 0.0122554 158 61 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.06 vpr 62.76 MiB 0.02 7228 -1 -1 1 0.01 -1 -1 33420 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64268 32 32 406 319 1 200 104 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1064 62.8 MiB 0.11 0.00 2.7929 -100.073 -2.7929 2.7929 0.75 0.000196784 0.00015927 0.0139503 0.0114615 26 2873 26 6.64007e+06 502320 477104. 1650.88 1.49 0.0822718 0.0674725 2286 22 1754 2657 194893 43464 3.11957 3.11957 -122.904 -3.11957 0 0 585099. 2024.56 0.23 0.05 0.0152174 0.0135617 157 61 63 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.80 vpr 62.67 MiB 0.02 6976 -1 -1 1 0.01 -1 -1 33172 -1 -1 18 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64172 29 32 291 242 1 134 79 17 17 289 -1 unnamed_device 24.0 MiB 0.07 698 62.7 MiB 0.06 0.00 2.7361 -91.2964 -2.7361 2.7361 0.79 0.000142261 0.00011372 0.0106632 0.00876146 32 1521 19 6.64007e+06 226044 554710. 1919.41 0.91 0.0498269 0.0441144 1475 22 1110 1595 129970 29127 2.78277 2.78277 -106.601 -2.78277 0 0 701300. 2426.64 0.34 0.04 0.0108306 0.00963324 97 28 58 29 29 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.52 vpr 62.73 MiB 0.02 7144 -1 -1 1 0.01 -1 -1 33480 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64232 32 32 335 291 1 156 83 17 17 289 -1 unnamed_device 24.2 MiB 0.15 858 62.7 MiB 0.03 0.00 3.39936 -97.9543 -3.39936 3.39936 0.90 0.000206942 0.000174724 0.00497634 0.00419173 26 2077 20 6.64007e+06 238602 477104. 1650.88 0.77 0.0399505 0.0350625 1853 18 916 1280 108762 24509 3.01817 3.01817 -113.844 -3.01817 0 0 585099. 2024.56 0.20 0.04 0.0108095 0.00967593 112 79 0 0 82 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.73 vpr 63.14 MiB 0.03 7400 -1 -1 1 0.01 -1 -1 33344 -1 -1 38 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64660 31 32 367 283 1 196 101 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1054 63.1 MiB 0.15 0.00 3.59956 -116.168 -3.59956 3.59956 0.79 0.000187418 0.000152393 0.0193672 0.0164001 32 2409 22 6.64007e+06 477204 554710. 1919.41 0.78 0.0552278 0.0475676 2052 19 1802 2870 185457 42362 3.65663 3.65663 -139.474 -3.65663 0 0 701300. 2426.64 0.28 0.06 0.0134388 0.0121211 152 29 93 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.57 vpr 62.75 MiB 0.03 6976 -1 -1 1 0.01 -1 -1 33600 -1 -1 31 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64256 29 32 301 258 1 150 92 17 17 289 -1 unnamed_device 24.3 MiB 0.15 848 62.8 MiB 0.09 0.00 2.9591 -87.6537 -2.9591 2.9591 0.72 0.000142048 0.000114372 0.0123815 0.010233 30 1739 21 6.64007e+06 389298 526063. 1820.29 0.84 0.049441 0.0435637 1455 20 734 1237 70573 16219 2.66357 2.66357 -95.1849 -2.66357 0 0 666494. 2306.21 0.23 0.03 0.0106921 0.0096007 108 48 29 29 52 26 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.80 vpr 62.70 MiB 0.05 7016 -1 -1 1 0.02 -1 -1 33088 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64204 32 32 315 257 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 0.12 894 62.7 MiB 0.07 0.00 2.7929 -102.799 -2.7929 2.7929 0.72 0.000154038 0.000124676 0.0104135 0.00864401 30 2062 19 6.64007e+06 213486 526063. 1820.29 0.70 0.0418266 0.0349871 1747 20 1207 1960 109507 24617 2.68337 2.68337 -115.727 -2.68337 0 0 666494. 2306.21 0.30 0.06 0.0141331 0.0128712 119 31 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.58 vpr 62.75 MiB 0.03 7356 -1 -1 1 0.02 -1 -1 33276 -1 -1 37 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64252 31 32 389 309 1 189 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 955 62.7 MiB 0.13 0.00 3.1215 -102.27 -3.1215 3.1215 0.86 0.000208471 0.000168885 0.0199019 0.017216 32 2090 23 6.64007e+06 464646 554710. 1919.41 0.68 0.0557215 0.0483425 1864 20 1486 2236 144534 33201 2.98817 2.98817 -115.272 -2.98817 0 0 701300. 2426.64 0.24 0.04 0.0126954 0.0113514 143 60 58 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.63 vpr 62.51 MiB 0.02 6960 -1 -1 1 0.01 -1 -1 33448 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64012 31 32 310 264 1 147 80 17 17 289 -1 unnamed_device 24.1 MiB 0.13 706 62.5 MiB 0.05 0.00 2.70619 -83.0321 -2.70619 2.70619 0.89 0.000188802 0.000157222 0.00910377 0.007933 32 1945 20 6.64007e+06 213486 554710. 1919.41 0.64 0.0359605 0.0311638 1674 19 1067 1720 128985 29944 2.77297 2.77297 -103.468 -2.77297 0 0 701300. 2426.64 0.24 0.04 0.00995438 0.00889557 106 49 31 31 53 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.64 vpr 63.31 MiB 0.08 7156 -1 -1 1 0.01 -1 -1 33548 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64828 32 32 384 308 1 184 97 17 17 289 -1 unnamed_device 24.6 MiB 0.11 1055 63.3 MiB 0.12 0.00 2.7639 -97.2627 -2.7639 2.7639 0.69 0.000191739 0.000157076 0.0168507 0.0147231 32 2236 21 6.64007e+06 414414 554710. 1919.41 0.97 0.0578655 0.0514114 1973 21 1193 1864 121006 26931 2.82977 2.82977 -112.287 -2.82977 0 0 701300. 2426.64 0.25 0.04 0.0130354 0.0116425 137 56 52 26 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.76 vpr 62.60 MiB 0.02 7400 -1 -1 1 0.02 -1 -1 33236 -1 -1 38 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64100 31 32 424 341 1 195 101 17 17 289 -1 unnamed_device 24.6 MiB 0.13 942 62.6 MiB 0.13 0.00 3.1387 -101.393 -3.1387 3.1387 0.73 0.000250322 0.00020732 0.0181887 0.0149792 26 2419 26 6.64007e+06 477204 477104. 1650.88 0.87 0.0603724 0.0514991 2083 19 1558 2333 156609 36796 3.13157 3.13157 -120.238 -3.13157 0 0 585099. 2024.56 0.25 0.05 0.013783 0.0119445 150 88 31 31 92 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.40 vpr 62.70 MiB 0.03 7104 -1 -1 1 0.02 -1 -1 33176 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64204 32 32 334 280 1 160 82 17 17 289 -1 unnamed_device 24.1 MiB 0.24 721 62.7 MiB 0.04 0.00 2.55679 -87.262 -2.55679 2.55679 0.72 0.000179272 0.000145819 0.00624465 0.00528785 32 1986 20 6.64007e+06 226044 554710. 1919.41 0.65 0.0344688 0.0296673 1651 17 1065 1660 106612 25696 2.71877 2.71877 -107.448 -2.71877 0 0 701300. 2426.64 0.24 0.05 0.0100208 0.0089952 115 54 32 32 60 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.73 vpr 62.80 MiB 0.04 7160 -1 -1 1 0.01 -1 -1 33416 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64312 32 32 340 284 1 164 82 17 17 289 -1 unnamed_device 24.2 MiB 0.15 662 62.8 MiB 0.13 0.00 2.7819 -93.5271 -2.7819 2.7819 0.82 0.000216082 0.000178488 0.0166764 0.0136446 32 2351 23 6.64007e+06 226044 554710. 1919.41 0.76 0.0473541 0.0401031 1736 19 1300 2098 145098 34752 3.00437 3.00437 -114.033 -3.00437 0 0 701300. 2426.64 0.23 0.04 0.010839 0.00957176 121 60 32 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.83 vpr 63.18 MiB 0.04 7272 -1 -1 1 0.01 -1 -1 33536 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64692 32 32 408 320 1 198 102 17 17 289 -1 unnamed_device 24.7 MiB 0.16 1007 63.2 MiB 0.15 0.00 3.33916 -116.961 -3.33916 3.33916 0.73 0.00024461 0.000205351 0.0163994 0.0137461 28 2567 21 6.64007e+06 477204 500653. 1732.36 1.01 0.0563197 0.0478861 2259 20 1810 2734 197826 45851 3.77463 3.77463 -145.901 -3.77463 0 0 612192. 2118.31 0.23 0.05 0.0134469 0.0119868 156 49 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.73 vpr 62.91 MiB 0.04 7240 -1 -1 1 0.02 -1 -1 33536 -1 -1 34 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64416 29 32 371 297 1 183 95 17 17 289 -1 unnamed_device 24.3 MiB 0.12 888 62.9 MiB 0.08 0.00 2.8409 -90.5196 -2.8409 2.8409 0.81 0.000192854 0.000158947 0.0123621 0.0102522 28 2368 24 6.64007e+06 426972 500653. 1732.36 0.81 0.0500269 0.0431548 1933 19 1213 1897 121780 28470 3.08037 3.08037 -112.433 -3.08037 0 0 612192. 2118.31 0.22 0.05 0.0208328 0.0195412 135 54 56 29 58 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.95 vpr 63.12 MiB 0.04 7428 -1 -1 1 0.02 -1 -1 33536 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64640 32 32 470 382 1 200 103 17 17 289 -1 unnamed_device 25.0 MiB 0.33 991 63.1 MiB 0.11 0.00 3.34716 -116.895 -3.34716 3.34716 0.83 0.000227042 0.000187618 0.0147989 0.0123087 32 2487 21 6.64007e+06 489762 554710. 1919.41 0.69 0.0530341 0.0452891 2160 23 2039 3310 239013 54339 3.67443 3.67443 -143.289 -3.67443 0 0 701300. 2426.64 0.37 0.06 0.0159009 0.0140684 158 117 0 0 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.55 vpr 62.81 MiB 0.03 7064 -1 -1 1 0.01 -1 -1 33520 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64320 31 32 261 214 1 146 80 17 17 289 -1 unnamed_device 24.2 MiB 0.06 689 62.8 MiB 0.10 0.00 2.50628 -83.7515 -2.50628 2.50628 0.99 0.000185323 0.000155191 0.00921384 0.00767422 32 1840 27 6.64007e+06 213486 554710. 1919.41 0.68 0.0372876 0.0320509 1607 19 1042 1623 118347 27104 2.65777 2.65777 -104.625 -2.65777 0 0 701300. 2426.64 0.24 0.04 0.0101528 0.0091369 106 -1 85 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.84 vpr 62.95 MiB 0.03 7332 -1 -1 1 0.01 -1 -1 33300 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64460 32 32 419 339 1 190 97 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1013 62.9 MiB 0.08 0.00 3.80195 -114.237 -3.80195 3.80195 0.70 0.000255956 0.000214563 0.0123177 0.0103625 26 2649 28 6.64007e+06 414414 477104. 1650.88 1.36 0.0585743 0.0507571 2269 22 1222 1947 169684 36543 3.85183 3.85183 -134.671 -3.85183 0 0 585099. 2024.56 0.20 0.05 0.0147427 0.0131122 143 89 28 28 92 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.49 vpr 62.77 MiB 0.02 7144 -1 -1 1 0.02 -1 -1 33320 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64276 32 32 377 319 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.24 800 62.8 MiB 0.08 0.01 2.9223 -103.79 -2.9223 2.9223 0.76 0.000166916 0.000134215 0.0147636 0.0120952 32 1923 23 6.64007e+06 213486 554710. 1919.41 0.70 0.0470831 0.0400642 1697 21 1427 2110 144481 32606 2.89597 2.89597 -121.719 -2.89597 0 0 701300. 2426.64 0.24 0.04 0.0122928 0.0109727 114 93 0 0 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.77 vpr 62.93 MiB 0.05 7296 -1 -1 1 0.01 -1 -1 33456 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64444 32 32 402 317 1 196 101 17 17 289 -1 unnamed_device 24.6 MiB 0.17 1019 62.9 MiB 0.12 0.00 2.7537 -98.2572 -2.7537 2.7537 0.85 0.000208773 0.000172105 0.0168316 0.0145424 26 2736 27 6.64007e+06 464646 477104. 1650.88 0.88 0.0584174 0.050845 2236 19 1351 2039 164151 35632 3.18117 3.18117 -130.961 -3.18117 0 0 585099. 2024.56 0.20 0.05 0.0133868 0.0120156 151 59 61 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.35 vpr 63.45 MiB 0.06 7580 -1 -1 1 0.02 -1 -1 33484 -1 -1 45 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64976 32 32 501 383 1 232 109 17 17 289 -1 unnamed_device 25.4 MiB 0.19 1234 63.5 MiB 0.16 0.00 4.14482 -138.828 -4.14482 4.14482 0.82 0.000274519 0.000225694 0.0239056 0.0198723 34 3003 31 6.64007e+06 565110 585099. 2024.56 2.13 0.11028 0.0951471 2433 21 2130 3337 253949 57696 4.47229 4.47229 -166.362 -4.47229 0 0 742403. 2568.87 0.31 0.09 0.0288017 0.0269895 188 81 64 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.67 vpr 62.17 MiB 0.01 6768 -1 -1 1 0.01 -1 -1 33096 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63660 30 32 249 232 1 118 77 17 17 289 -1 unnamed_device 23.6 MiB 0.07 565 62.2 MiB 0.04 0.00 2.10964 -66.823 -2.10964 2.10964 0.77 0.000124983 9.9807e-05 0.0079395 0.006443 26 1535 28 6.64007e+06 188370 477104. 1650.88 1.27 0.0335027 0.0283743 1254 17 702 966 84650 20954 2.18351 2.18351 -85.0072 -2.18351 0 0 585099. 2024.56 0.20 0.03 0.00726212 0.00644858 83 51 0 0 53 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.74 vpr 62.27 MiB 0.04 7136 -1 -1 1 0.02 -1 -1 33092 -1 -1 17 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63760 30 32 299 247 1 137 79 17 17 289 -1 unnamed_device 24.0 MiB 0.12 626 62.3 MiB 0.07 0.00 2.9603 -90.817 -2.9603 2.9603 0.84 0.000144223 0.000116155 0.0122474 0.0101395 32 1552 21 6.64007e+06 213486 554710. 1919.41 0.84 0.0533773 0.0457253 1334 18 862 1268 87242 20921 2.73257 2.73257 -105.409 -2.73257 0 0 701300. 2426.64 0.29 0.06 0.0100415 0.00900011 97 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.72 vpr 62.44 MiB 0.02 6952 -1 -1 1 0.01 -1 -1 33156 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63940 32 32 315 257 1 167 82 17 17 289 -1 unnamed_device 24.0 MiB 0.08 872 62.4 MiB 0.16 0.00 2.7647 -99.2709 -2.7647 2.7647 0.90 0.000170907 0.000139449 0.0213356 0.0183296 32 2243 24 6.64007e+06 226044 554710. 1919.41 0.95 0.0533321 0.0462424 1970 23 1638 2976 225136 50343 2.97997 2.97997 -119.833 -2.97997 0 0 701300. 2426.64 0.25 0.06 0.0123576 0.0110008 126 31 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.61 vpr 62.61 MiB 0.04 7104 -1 -1 1 0.01 -1 -1 33596 -1 -1 34 25 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64112 25 32 259 222 1 138 91 17 17 289 -1 unnamed_device 24.1 MiB 0.05 673 62.6 MiB 0.08 0.00 2.6877 -74.6023 -2.6877 2.6877 0.82 0.000131527 0.000106516 0.0110238 0.00903972 30 1456 21 6.64007e+06 426972 526063. 1820.29 0.72 0.0353476 0.0301061 1256 18 814 1270 64518 15257 2.61237 2.61237 -87.2963 -2.61237 0 0 666494. 2306.21 0.22 0.02 0.00800013 0.00715009 103 19 50 25 25 25 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.89 vpr 63.02 MiB 0.02 7400 -1 -1 1 0.01 -1 -1 33440 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64536 32 32 433 347 1 193 86 17 17 289 -1 unnamed_device 24.7 MiB 0.22 938 63.0 MiB 0.09 0.00 3.50535 -110.505 -3.50535 3.50535 0.85 0.000267606 0.000214089 0.0132487 0.0112862 32 2675 24 6.64007e+06 276276 554710. 1919.41 1.01 0.0741094 0.0662554 2112 20 1518 2714 177359 42378 3.62063 3.62063 -134.803 -3.62063 0 0 701300. 2426.64 0.25 0.05 0.0145144 0.0129653 148 84 32 32 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.81 vpr 63.16 MiB 0.03 7216 -1 -1 1 0.02 -1 -1 33412 -1 -1 38 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64672 31 32 423 341 1 193 101 17 17 289 -1 unnamed_device 24.9 MiB 0.28 972 63.2 MiB 0.08 0.00 3.1043 -101.066 -3.1043 3.1043 0.74 0.000194908 0.000158444 0.0107118 0.00884614 32 2193 16 6.64007e+06 477204 554710. 1919.41 0.89 0.0467232 0.0402599 1992 17 1296 2106 139936 32076 3.14817 3.14817 -121.893 -3.14817 0 0 701300. 2426.64 0.23 0.04 0.012558 0.0113062 147 88 29 29 93 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.10 vpr 62.65 MiB 0.02 7408 -1 -1 1 0.01 -1 -1 33592 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64152 32 32 439 351 1 194 98 17 17 289 -1 unnamed_device 24.8 MiB 0.38 1065 62.6 MiB 0.10 0.00 3.15264 -111.606 -3.15264 3.15264 0.73 0.000211704 0.000173244 0.0133607 0.0110802 26 3178 40 6.65987e+06 431052 477104. 1650.88 2.08 0.069834 0.0602216 2556 22 1872 3038 270854 58751 3.74431 3.74431 -148.489 -3.74431 0 0 585099. 2024.56 0.24 0.14 0.0343129 0.0325876 151 80 32 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.73 vpr 62.78 MiB 0.02 7256 -1 -1 1 0.02 -1 -1 33496 -1 -1 21 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64284 30 32 412 333 1 186 83 17 17 289 -1 unnamed_device 24.4 MiB 0.35 816 62.8 MiB 0.09 0.00 3.4765 -100.572 -3.4765 3.4765 0.99 0.000193585 0.000157494 0.0144346 0.0117379 32 2421 23 6.65987e+06 266238 554710. 1919.41 0.72 0.0531258 0.0454313 2059 20 1758 2916 193130 47401 3.83251 3.83251 -131.728 -3.83251 0 0 701300. 2426.64 0.23 0.05 0.0133103 0.0119478 140 78 30 30 89 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 8.42 vpr 62.97 MiB 0.02 7312 -1 -1 1 0.01 -1 -1 33624 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64480 32 32 388 310 1 186 98 17 17 289 -1 unnamed_device 24.6 MiB 0.19 896 63.0 MiB 0.06 0.00 2.72347 -92.6417 -2.72347 2.72347 0.72 0.000186746 0.000152796 0.00930532 0.00782257 28 2636 46 6.65987e+06 431052 500653. 1732.36 5.76 0.117614 0.102642 2048 20 1454 2363 176668 46043 3.22765 3.22765 -125.355 -3.22765 0 0 612192. 2118.31 0.23 0.06 0.0190368 0.0176112 141 50 54 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.59 vpr 62.71 MiB 0.03 7312 -1 -1 1 0.02 -1 -1 33460 -1 -1 22 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64212 29 32 347 271 1 184 83 17 17 289 -1 unnamed_device 24.2 MiB 0.10 927 62.7 MiB 0.09 0.00 3.4563 -104.236 -3.4563 3.4563 0.74 0.000168154 0.000137339 0.0133283 0.0111958 32 2313 37 6.65987e+06 278916 554710. 1919.41 0.98 0.0718473 0.0646325 1945 24 1696 2992 234311 57327 3.76577 3.76577 -127.033 -3.76577 0 0 701300. 2426.64 0.23 0.06 0.0143122 0.0127714 138 25 87 29 29 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.72 vpr 62.80 MiB 0.03 7088 -1 -1 1 0.01 -1 -1 33380 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64304 32 32 377 289 1 195 84 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1099 62.8 MiB 0.11 0.00 3.30796 -118.191 -3.30796 3.30796 0.74 0.000190023 0.000154094 0.0166407 0.013781 32 2796 22 6.65987e+06 253560 554710. 1919.41 0.87 0.0590037 0.0506804 2515 22 2051 3716 307963 67069 3.76963 3.76963 -148.919 -3.76963 0 0 701300. 2426.64 0.23 0.07 0.0149537 0.0134273 152 31 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.90 vpr 62.88 MiB 0.04 7304 -1 -1 1 0.01 -1 -1 33380 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64392 32 32 403 317 1 199 100 17 17 289 -1 unnamed_device 24.6 MiB 0.30 980 62.9 MiB 0.11 0.00 3.01124 -98.0019 -3.01124 3.01124 1.07 0.000213506 0.000175377 0.0156004 0.0131207 30 2317 23 6.65987e+06 456408 526063. 1820.29 0.74 0.0580387 0.0500454 1894 19 1247 2075 125718 29344 2.61531 2.61531 -110.446 -2.61531 0 0 666494. 2306.21 0.22 0.04 0.0134639 0.012081 154 61 63 32 63 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.43 vpr 62.45 MiB 0.02 7088 -1 -1 1 0.01 -1 -1 33524 -1 -1 19 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63944 27 32 275 232 1 135 78 17 17 289 -1 unnamed_device 23.8 MiB 0.18 657 62.4 MiB 0.11 0.00 2.6767 -81.8728 -2.6767 2.6767 0.78 0.000188817 0.000151828 0.00821331 0.0068955 26 1735 22 6.65987e+06 240882 477104. 1650.88 0.76 0.04443 0.0394561 1514 17 930 1547 116832 27544 2.90897 2.90897 -102.603 -2.90897 0 0 585099. 2024.56 0.22 0.05 0.00940028 0.0084532 99 26 54 27 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.47 vpr 62.92 MiB 0.04 7264 -1 -1 1 0.00 -1 -1 33704 -1 -1 33 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64432 31 32 319 244 1 185 96 17 17 289 -1 unnamed_device 24.5 MiB 0.13 977 62.9 MiB 0.09 0.00 2.51444 -84.0709 -2.51444 2.51444 0.71 0.000234046 0.000197092 0.0098783 0.00828641 32 2410 25 6.65987e+06 418374 554710. 1919.41 0.86 0.0483193 0.0425658 2040 22 1430 2289 171403 39536 2.72945 2.72945 -105.743 -2.72945 0 0 701300. 2426.64 0.24 0.07 0.0176579 0.015288 139 -1 115 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.53 vpr 62.66 MiB 0.03 7024 -1 -1 1 0.01 -1 -1 33212 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64164 31 32 340 294 1 148 79 17 17 289 -1 unnamed_device 24.1 MiB 0.42 887 62.7 MiB 0.06 0.00 2.45267 -83.8661 -2.45267 2.45267 0.71 0.000165592 0.000135013 0.0092643 0.00784051 32 1902 20 6.65987e+06 202848 554710. 1919.41 0.72 0.0375664 0.032233 1719 20 905 1479 106398 25230 2.48525 2.48525 -100.013 -2.48525 0 0 701300. 2426.64 0.24 0.04 0.0116008 0.0103463 105 81 0 0 84 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.66 vpr 62.43 MiB 0.05 6960 -1 -1 1 0.01 -1 -1 33496 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63932 32 32 315 257 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 0.23 826 62.4 MiB 0.12 0.00 2.7647 -101.2 -2.7647 2.7647 1.00 0.000271771 0.00023499 0.0194709 0.0180485 32 2060 22 6.65987e+06 215526 554710. 1919.41 0.69 0.0490018 0.0436781 1810 20 1372 2089 155745 35484 3.04697 3.04697 -125.866 -3.04697 0 0 701300. 2426.64 0.24 0.04 0.0115275 0.0103439 121 31 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.47 vpr 62.57 MiB 0.03 7012 -1 -1 1 0.01 -1 -1 33420 -1 -1 17 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64072 30 32 328 276 1 151 79 17 17 289 -1 unnamed_device 24.0 MiB 0.29 785 62.6 MiB 0.09 0.00 2.8281 -96.2143 -2.8281 2.8281 0.92 0.000163069 0.000132814 0.0108798 0.00908452 28 1812 23 6.65987e+06 215526 500653. 1732.36 0.64 0.0430089 0.0372002 1709 19 1062 1540 107321 25633 2.96817 2.96817 -115.005 -2.96817 0 0 612192. 2118.31 0.23 0.05 0.0109073 0.00979025 110 58 30 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.57 vpr 62.70 MiB 0.02 7060 -1 -1 1 0.01 -1 -1 33516 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64204 32 32 332 281 1 156 93 17 17 289 -1 unnamed_device 24.1 MiB 0.32 785 62.7 MiB 0.08 0.00 2.44518 -83.7902 -2.44518 2.44518 0.74 0.000463379 0.00042972 0.00990585 0.00829127 30 2177 22 6.65987e+06 367662 526063. 1820.29 0.81 0.0432207 0.0367331 1675 21 1042 1741 104783 24818 2.47925 2.47925 -101.201 -2.47925 0 0 666494. 2306.21 0.23 0.04 0.0112658 0.0100244 114 57 25 25 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.74 vpr 62.75 MiB 0.02 7096 -1 -1 1 0.01 -1 -1 33336 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64260 32 32 387 306 1 188 96 17 17 289 -1 unnamed_device 24.5 MiB 0.37 817 62.8 MiB 0.09 0.00 2.8299 -95.3056 -2.8299 2.8299 0.82 0.00018765 0.000151008 0.0179151 0.0152505 38 2317 33 6.65987e+06 405696 638502. 2209.35 1.78 0.0841104 0.0724115 1742 23 1383 2245 136888 34922 3.11637 3.11637 -111.009 -3.11637 0 0 851065. 2944.86 0.30 0.05 0.0154654 0.0138245 143 55 64 32 57 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.91 vpr 62.91 MiB 0.02 7272 -1 -1 1 0.01 -1 -1 33548 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64424 32 32 408 320 1 200 98 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1018 62.9 MiB 0.34 0.00 3.3241 -116.615 -3.3241 3.3241 0.82 0.000197429 0.000160404 0.0347083 0.0313006 28 2589 33 6.65987e+06 431052 500653. 1732.36 0.84 0.0827471 0.0735037 2321 24 2042 3221 230601 53896 3.81771 3.81771 -147.78 -3.81771 0 0 612192. 2118.31 0.22 0.07 0.0167517 0.0150229 156 60 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.91 vpr 62.47 MiB 0.02 7148 -1 -1 1 0.01 -1 -1 33280 -1 -1 18 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63968 29 32 276 232 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.18 672 62.5 MiB 0.05 0.00 2.55258 -77.0542 -2.55258 2.55258 0.94 0.000157193 0.000128741 0.00817185 0.00678061 32 1826 22 6.65987e+06 228204 554710. 1919.41 0.86 0.0367646 0.0317974 1575 21 1199 2043 144784 36344 2.62865 2.62865 -95.3168 -2.62865 0 0 701300. 2426.64 0.28 0.10 0.0341415 0.0329856 107 21 58 29 24 24 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.91 vpr 62.50 MiB 0.02 7156 -1 -1 1 0.02 -1 -1 33268 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64004 32 32 402 316 1 192 84 17 17 289 -1 unnamed_device 24.4 MiB 0.31 1096 62.5 MiB 0.14 0.00 2.79519 -102.651 -2.79519 2.79519 0.83 0.000189051 0.00015403 0.0191269 0.016197 32 2626 23 6.65987e+06 253560 554710. 1919.41 0.96 0.102233 0.0806658 2355 21 1720 2966 241242 53912 3.05331 3.05331 -123.751 -3.05331 0 0 701300. 2426.64 0.25 0.06 0.0149569 0.0134054 146 60 64 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.01 vpr 62.84 MiB 0.02 7116 -1 -1 1 0.02 -1 -1 33056 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64352 32 32 384 304 1 185 98 17 17 289 -1 unnamed_device 24.5 MiB 0.32 960 62.8 MiB 0.08 0.00 2.9131 -102.838 -2.9131 2.9131 0.87 0.000229907 0.000190737 0.011052 0.00910698 30 2221 22 6.65987e+06 431052 526063. 1820.29 0.93 0.0497653 0.039963 1825 20 1215 1773 108538 25030 2.83157 2.83157 -115.742 -2.83157 0 0 666494. 2306.21 0.23 0.04 0.0130221 0.0116505 142 54 64 32 56 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.91 vpr 62.61 MiB 0.02 7108 -1 -1 1 0.00 -1 -1 33404 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64108 32 32 340 285 1 162 94 17 17 289 -1 unnamed_device 24.2 MiB 0.25 908 62.6 MiB 0.11 0.00 2.30864 -86.0922 -2.30864 2.30864 0.95 0.000166018 0.000131718 0.0153556 0.0125679 32 1976 19 6.65987e+06 380340 554710. 1919.41 0.92 0.0496439 0.0428372 1772 19 1067 1591 115874 27504 2.27071 2.27071 -96.6577 -2.27071 0 0 701300. 2426.64 0.25 0.04 0.0114556 0.01019 118 62 29 29 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.56 vpr 62.05 MiB 0.02 6772 -1 -1 1 0.01 -1 -1 33176 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63544 30 32 229 211 1 119 77 17 17 289 -1 unnamed_device 23.4 MiB 0.10 540 62.1 MiB 0.04 0.00 1.99938 -64.3097 -1.99938 1.99938 0.79 0.000113354 9.0422e-05 0.00746857 0.00613882 30 1433 21 6.65987e+06 190170 526063. 1820.29 0.63 0.0293054 0.0249217 1098 17 549 795 49396 12270 1.72965 1.72965 -71.6003 -1.72965 0 0 666494. 2306.21 0.31 0.02 0.00705339 0.00631923 85 29 24 24 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.80 vpr 62.66 MiB 0.02 7048 -1 -1 1 0.02 -1 -1 33112 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64160 31 32 337 282 1 155 80 17 17 289 -1 unnamed_device 24.0 MiB 0.27 804 62.7 MiB 0.07 0.00 3.03084 -95.343 -3.03084 3.03084 1.00 0.00017058 0.000137377 0.0108984 0.00913685 32 2008 23 6.65987e+06 215526 554710. 1919.41 0.83 0.0444166 0.0382997 1725 18 891 1357 103357 24931 2.81211 2.81211 -110.955 -2.81211 0 0 701300. 2426.64 0.32 0.04 0.011305 0.0101605 114 55 31 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.70 vpr 62.91 MiB 0.04 7036 -1 -1 1 0.01 -1 -1 33460 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64424 32 32 367 284 1 192 98 17 17 289 -1 unnamed_device 24.4 MiB 0.05 980 62.9 MiB 0.13 0.00 3.1409 -108.661 -3.1409 3.1409 0.81 0.000209331 0.000169951 0.0176725 0.0144881 32 2376 18 6.65987e+06 431052 554710. 1919.41 0.76 0.0652043 0.0569642 2026 21 1618 2379 190885 42782 3.72757 3.72757 -133.563 -3.72757 0 0 701300. 2426.64 0.31 0.06 0.0167569 0.0151208 145 31 91 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.92 vpr 63.29 MiB 0.02 7364 -1 -1 1 0.01 -1 -1 33692 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64812 32 32 461 376 1 196 100 17 17 289 -1 unnamed_device 24.8 MiB 0.29 1101 63.3 MiB 0.13 0.00 2.73064 -98.8152 -2.73064 2.73064 0.90 0.000208112 0.000168682 0.0184954 0.0151312 28 2816 22 6.65987e+06 456408 500653. 1732.36 0.85 0.0592808 0.0506318 2472 21 1534 2451 197932 43362 3.34185 3.34185 -125.964 -3.34185 0 0 612192. 2118.31 0.21 0.06 0.0165792 0.0147765 149 108 0 0 125 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.50 vpr 62.22 MiB 0.01 6784 -1 -1 1 0.01 -1 -1 33304 -1 -1 17 26 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63716 26 32 205 193 1 109 75 17 17 289 -1 unnamed_device 23.7 MiB 0.17 645 62.2 MiB 0.05 0.00 2.01838 -61.0336 -2.01838 2.01838 0.83 0.000102802 8.1912e-05 0.00852946 0.0070086 32 1261 21 6.65987e+06 215526 554710. 1919.41 0.65 0.030478 0.0261263 1197 17 520 822 61786 14041 1.87885 1.87885 -71.4297 -1.87885 0 0 701300. 2426.64 0.24 0.02 0.00650095 0.00579892 77 21 26 26 22 22 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.96 vpr 62.73 MiB 0.02 7048 -1 -1 1 0.01 -1 -1 33448 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64232 32 32 334 252 1 187 84 17 17 289 -1 unnamed_device 24.3 MiB 0.15 922 62.7 MiB 0.10 0.00 3.30433 -105.494 -3.30433 3.30433 0.86 0.000185983 0.000152148 0.0154289 0.0128089 32 2886 30 6.65987e+06 253560 554710. 1919.41 0.97 0.0531766 0.0456718 2204 24 1843 3135 265116 61817 4.21845 4.21845 -136.015 -4.21845 0 0 701300. 2426.64 0.25 0.07 0.0151368 0.0136433 137 -1 122 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.73 vpr 62.17 MiB 0.04 6744 -1 -1 1 0.01 -1 -1 33276 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63660 32 32 200 183 1 122 77 17 17 289 -1 unnamed_device 23.6 MiB 0.07 587 62.2 MiB 0.03 0.00 1.74527 -63.6391 -1.74527 1.74527 0.97 0.000106181 8.5316e-05 0.0064313 0.00525821 28 1346 17 6.65987e+06 164814 500653. 1732.36 0.79 0.0252926 0.0215411 1181 15 592 750 45999 12041 1.79485 1.79485 -75.1345 -1.79485 0 0 612192. 2118.31 0.26 0.02 0.00647544 0.00582722 81 -1 53 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.82 vpr 62.41 MiB 0.02 7260 -1 -1 1 0.01 -1 -1 33560 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63904 32 32 377 289 1 194 96 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1039 62.4 MiB 0.12 0.00 3.2039 -112.275 -3.2039 3.2039 1.02 0.000179657 0.000147318 0.0175995 0.0150902 32 2693 24 6.65987e+06 405696 554710. 1919.41 0.77 0.0571106 0.0498468 2158 23 1928 2858 222179 51079 3.58117 3.58117 -135.925 -3.58117 0 0 701300. 2426.64 0.24 0.06 0.0157294 0.0141711 150 21 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.94 vpr 62.59 MiB 0.02 7108 -1 -1 1 0.01 -1 -1 33256 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64092 32 32 338 254 1 196 98 17 17 289 -1 unnamed_device 24.2 MiB 0.11 998 62.6 MiB 0.30 0.00 2.92104 -95.2672 -2.92104 2.92104 0.80 0.000187479 0.00015442 0.0617771 0.0569598 32 2258 21 6.65987e+06 431052 554710. 1919.41 0.80 0.101844 0.0927597 1953 22 1530 2446 160259 38784 2.78151 2.78151 -112.302 -2.78151 0 0 701300. 2426.64 0.29 0.05 0.0146309 0.0131642 148 -1 124 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.94 vpr 62.86 MiB 0.04 7340 -1 -1 1 0.01 -1 -1 33588 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64364 32 32 408 320 1 197 99 17 17 289 -1 unnamed_device 24.7 MiB 0.11 985 62.9 MiB 0.11 0.00 3.16364 -106.867 -3.16364 3.16364 0.73 0.000192772 0.000157361 0.0141635 0.0118466 28 2818 38 6.65987e+06 443730 500653. 1732.36 1.19 0.0658185 0.0572311 2073 20 1848 3298 214066 53650 3.62531 3.62531 -135.319 -3.62531 0 0 612192. 2118.31 0.22 0.08 0.0250365 0.0232669 153 54 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.57 vpr 62.73 MiB 0.01 6956 -1 -1 1 0.01 -1 -1 33192 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64232 32 32 295 247 1 149 79 17 17 289 -1 unnamed_device 24.2 MiB 0.04 809 62.7 MiB 0.09 0.00 2.30182 -83.4304 -2.30182 2.30182 0.78 0.000159455 0.000130771 0.0145169 0.012068 32 1982 22 6.65987e+06 190170 554710. 1919.41 0.76 0.0427398 0.0365407 1835 18 1002 1640 132365 30375 2.81891 2.81891 -104.016 -2.81891 0 0 701300. 2426.64 0.24 0.04 0.0103825 0.00936003 106 31 54 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.78 vpr 62.68 MiB 0.02 7108 -1 -1 1 0.01 -1 -1 33384 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64180 30 32 299 247 1 154 80 17 17 289 -1 unnamed_device 24.2 MiB 0.31 703 62.7 MiB 0.09 0.00 3.0263 -93.005 -3.0263 3.0263 0.94 0.000145093 0.000116191 0.0137256 0.0113141 30 1643 20 6.65987e+06 228204 526063. 1820.29 0.65 0.0410965 0.0350831 1373 20 875 1307 67084 16951 2.78557 2.78557 -106.979 -2.78557 0 0 666494. 2306.21 0.35 0.03 0.0106167 0.00956589 113 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.52 vpr 62.40 MiB 0.02 7200 -1 -1 1 0.01 -1 -1 33004 -1 -1 20 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63896 28 32 283 237 1 150 80 17 17 289 -1 unnamed_device 24.0 MiB 0.13 656 62.4 MiB 0.13 0.00 2.7207 -83.0823 -2.7207 2.7207 0.75 0.000168784 0.000139742 0.0210857 0.0139824 28 1907 24 6.65987e+06 253560 500653. 1732.36 0.91 0.0523099 0.0413072 1705 18 1072 1836 138388 32572 3.01817 3.01817 -105.774 -3.01817 0 0 612192. 2118.31 0.21 0.04 0.00923268 0.00827577 107 27 56 28 28 28 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.55 vpr 62.43 MiB 0.02 7068 -1 -1 1 0.02 -1 -1 33104 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63924 32 32 284 226 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.10 847 62.4 MiB 0.06 0.00 2.7647 -97.4649 -2.7647 2.7647 0.97 0.000142932 0.000115037 0.0088949 0.00756852 30 2066 21 6.65987e+06 228204 526063. 1820.29 0.79 0.0385283 0.0334088 1794 18 1242 2001 113117 27520 3.04997 3.04997 -121.972 -3.04997 0 0 666494. 2306.21 0.26 0.04 0.00979344 0.00881123 125 -1 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.68 vpr 62.65 MiB 0.03 7144 -1 -1 1 0.01 -1 -1 33316 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64152 31 32 305 251 1 162 94 17 17 289 -1 unnamed_device 24.1 MiB 0.06 895 62.6 MiB 0.09 0.00 2.57058 -90.3666 -2.57058 2.57058 0.83 0.000170682 0.000139222 0.0117479 0.00968835 26 2314 22 6.65987e+06 393018 477104. 1650.88 0.94 0.0453306 0.0382872 1893 20 1270 2027 171905 44111 2.82385 2.82385 -110.417 -2.82385 0 0 585099. 2024.56 0.21 0.05 0.0109384 0.00975707 119 26 61 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.64 vpr 62.38 MiB 0.02 7004 -1 -1 1 0.01 -1 -1 33312 -1 -1 30 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63880 29 32 316 268 1 154 91 17 17 289 -1 unnamed_device 23.9 MiB 0.30 842 62.4 MiB 0.06 0.00 2.17493 -74.6464 -2.17493 2.17493 0.74 0.000176629 0.000145443 0.00766804 0.00633201 32 1833 19 6.65987e+06 380340 554710. 1919.41 0.91 0.0465773 0.0414491 1655 19 1020 1669 112479 26996 2.17351 2.17351 -87.1824 -2.17351 0 0 701300. 2426.64 0.23 0.04 0.0106307 0.00952294 109 55 29 29 57 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.55 vpr 62.73 MiB 0.02 7340 -1 -1 1 0.01 -1 -1 33548 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64232 32 32 424 311 1 229 103 17 17 289 -1 unnamed_device 24.6 MiB 0.34 1206 62.7 MiB 0.10 0.00 3.41716 -119.842 -3.41716 3.41716 0.69 0.000271857 0.000230615 0.012713 0.0106086 28 3253 23 6.65987e+06 494442 500653. 1732.36 1.59 0.0596766 0.0519206 2559 21 1911 3324 253088 54374 3.68163 3.68163 -141.151 -3.68163 0 0 612192. 2118.31 0.21 0.06 0.0365618 0.0349521 179 26 128 32 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.68 vpr 62.50 MiB 0.04 7360 -1 -1 1 0.02 -1 -1 33508 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63996 32 32 404 318 1 198 99 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1055 62.5 MiB 0.09 0.00 2.8801 -103.638 -2.8801 2.8801 0.72 0.000209369 0.000171832 0.0132077 0.0108798 28 2336 23 6.65987e+06 443730 500653. 1732.36 0.73 0.0526723 0.0453741 2014 19 1680 2568 157521 37324 2.85071 2.85071 -114.58 -2.85071 0 0 612192. 2118.31 0.26 0.05 0.0134702 0.0120967 152 62 62 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.61 vpr 62.63 MiB 0.04 7140 -1 -1 1 0.01 -1 -1 33376 -1 -1 28 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64132 31 32 355 304 1 156 91 17 17 289 -1 unnamed_device 24.3 MiB 0.32 749 62.6 MiB 0.06 0.00 2.54338 -85.4303 -2.54338 2.54338 0.88 0.000201889 0.000161236 0.00919186 0.00760573 32 2002 25 6.65987e+06 354984 554710. 1919.41 0.68 0.0407429 0.0345734 1695 19 1105 1704 115228 28037 2.55305 2.55305 -103.115 -2.55305 0 0 701300. 2426.64 0.24 0.04 0.011106 0.00991644 113 77 0 0 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.86 vpr 62.98 MiB 0.04 7232 -1 -1 1 0.01 -1 -1 33320 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64492 31 32 393 311 1 194 84 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1081 63.0 MiB 0.08 0.00 3.0233 -98.4806 -3.0233 3.0233 0.73 0.000229379 0.000190617 0.0102645 0.00863243 30 2336 23 6.65987e+06 266238 526063. 1820.29 1.04 0.0598283 0.0532087 1994 17 1187 2033 108999 25872 2.79657 2.79657 -110.632 -2.79657 0 0 666494. 2306.21 0.28 0.04 0.0134271 0.012105 146 59 60 30 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.21 vpr 62.42 MiB 0.04 7292 -1 -1 1 0.01 -1 -1 33648 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63920 31 32 457 373 1 193 84 17 17 289 -1 unnamed_device 24.6 MiB 0.30 1044 62.4 MiB 0.07 0.00 3.84744 -114.749 -3.84744 3.84744 0.74 0.000232237 0.000192012 0.0119705 0.0100542 28 2730 21 6.65987e+06 266238 500653. 1732.36 1.13 0.0549568 0.0475848 2331 21 1451 2408 220751 46721 3.67091 3.67091 -138.302 -3.67091 0 0 612192. 2118.31 0.22 0.06 0.0157769 0.0141275 149 111 0 0 124 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.03 vpr 62.93 MiB 0.02 7456 -1 -1 1 0.01 -1 -1 33480 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64440 31 32 415 335 1 189 84 17 17 289 -1 unnamed_device 24.5 MiB 0.55 890 62.9 MiB 0.08 0.00 3.8015 -104.591 -3.8015 3.8015 0.80 0.000200753 0.000164633 0.0121666 0.0102009 32 2442 21 6.65987e+06 266238 554710. 1919.41 0.76 0.0506704 0.0439476 2057 17 1273 2103 148531 36475 3.88737 3.88737 -131.612 -3.88737 0 0 701300. 2426.64 0.31 0.12 0.0337188 0.0324016 144 86 31 31 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.96 vpr 62.98 MiB 0.02 7148 -1 -1 1 0.02 -1 -1 33540 -1 -1 32 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64496 31 32 393 311 1 193 95 17 17 289 -1 unnamed_device 24.5 MiB 0.28 1057 63.0 MiB 0.11 0.00 2.99404 -97.3993 -2.99404 2.99404 0.86 0.000224768 0.000187139 0.0198634 0.0176318 28 2717 24 6.65987e+06 405696 500653. 1732.36 1.18 0.0607343 0.053269 2315 19 1349 2305 156281 36431 2.89191 2.89191 -117.16 -2.89191 0 0 612192. 2118.31 0.22 0.04 0.0129067 0.0116031 145 58 60 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.87 vpr 62.88 MiB 0.04 7364 -1 -1 1 0.01 -1 -1 33544 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64392 32 32 408 320 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 0.17 1159 62.9 MiB 0.20 0.00 3.18564 -115.614 -3.18564 3.18564 0.70 0.000259094 0.000216747 0.0142131 0.0119297 32 2614 24 6.65987e+06 443730 554710. 1919.41 0.98 0.0586677 0.0478978 2381 19 1821 2759 202202 46285 3.52711 3.52711 -138.631 -3.52711 0 0 701300. 2426.64 0.27 0.05 0.0133624 0.0119679 154 42 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.37 vpr 62.96 MiB 0.03 7512 -1 -1 1 0.02 -1 -1 33512 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64476 32 32 497 381 1 232 103 17 17 289 -1 unnamed_device 24.9 MiB 0.23 1249 63.0 MiB 0.12 0.00 3.3161 -116.739 -3.3161 3.3161 0.72 0.000259219 0.000216504 0.0165301 0.0138243 28 3235 35 6.65987e+06 494442 500653. 1732.36 1.42 0.100071 0.0765658 2639 20 1742 3024 266646 59242 3.60617 3.60617 -141.877 -3.60617 0 0 612192. 2118.31 0.21 0.07 0.0176816 0.015927 183 91 62 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.32 vpr 62.50 MiB 0.03 7072 -1 -1 1 0.01 -1 -1 33372 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63996 31 32 307 252 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.10 669 62.5 MiB 0.05 0.00 2.79178 -87.5291 -2.79178 2.79178 0.75 0.000180555 0.000150042 0.00803558 0.00677609 32 1963 27 6.65987e+06 215526 554710. 1919.41 0.68 0.0381507 0.03287 1631 23 1440 2270 174506 44120 2.95705 2.95705 -113.065 -2.95705 0 0 701300. 2426.64 0.24 0.05 0.0116219 0.0103553 116 24 62 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.56 vpr 62.80 MiB 0.05 7172 -1 -1 1 0.01 -1 -1 33248 -1 -1 36 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64304 31 32 397 313 1 196 99 17 17 289 -1 unnamed_device 24.6 MiB 0.26 1110 62.8 MiB 0.10 0.00 3.3069 -114.081 -3.3069 3.3069 0.87 0.000191933 0.000157146 0.0138335 0.0114698 28 2866 49 6.65987e+06 456408 500653. 1732.36 1.31 0.0709219 0.0612769 2450 33 2385 3868 501277 188399 3.45617 3.45617 -134.984 -3.45617 0 0 612192. 2118.31 0.22 0.18 0.0429879 0.0402744 150 59 62 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.70 vpr 63.06 MiB 0.04 7164 -1 -1 1 0.01 -1 -1 33484 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64576 32 32 398 314 1 196 97 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1132 63.1 MiB 0.11 0.00 2.89404 -97.6109 -2.89404 2.89404 0.85 0.000243727 0.000205617 0.0141053 0.0117553 28 2956 21 6.65987e+06 418374 500653. 1732.36 0.98 0.0531918 0.0459909 2520 20 1472 2545 194133 44010 2.87371 2.87371 -119.294 -2.87371 0 0 612192. 2118.31 0.21 0.05 0.0141005 0.012623 148 54 62 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.63 vpr 62.96 MiB 0.03 7240 -1 -1 1 0.02 -1 -1 33368 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64472 32 32 346 258 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1040 63.0 MiB 0.10 0.00 3.31896 -117.88 -3.31896 3.31896 0.71 0.000215448 0.000180864 0.013416 0.0112493 32 2717 23 6.65987e+06 253560 554710. 1919.41 0.89 0.0481987 0.0416508 2323 22 2032 3656 298874 68207 3.95383 3.95383 -146.528 -3.95383 0 0 701300. 2426.64 0.25 0.07 0.0143052 0.0129033 150 -1 128 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.02 vpr 62.57 MiB 0.02 7324 -1 -1 1 0.02 -1 -1 33644 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64072 32 32 425 344 1 190 98 17 17 289 -1 unnamed_device 24.6 MiB 0.43 984 62.6 MiB 0.13 0.00 2.54238 -92.008 -2.54238 2.54238 0.82 0.000188937 0.000153639 0.018736 0.0155864 32 2705 24 6.65987e+06 431052 554710. 1919.41 0.79 0.0565658 0.0484676 2116 20 1437 2077 147236 35216 2.84885 2.84885 -113.528 -2.84885 0 0 701300. 2426.64 0.28 0.05 0.0147854 0.0132828 145 81 25 25 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.04 vpr 62.98 MiB 0.04 7288 -1 -1 1 0.01 -1 -1 33012 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64496 32 32 396 312 1 194 99 17 17 289 -1 unnamed_device 24.5 MiB 0.33 1097 63.0 MiB 0.09 0.00 2.8629 -105.492 -2.8629 2.8629 0.91 0.000198323 0.000162444 0.0123834 0.0104119 28 2624 21 6.65987e+06 443730 500653. 1732.36 0.79 0.0513486 0.0445136 2307 21 1317 2257 145669 33783 3.02317 3.02317 -126.344 -3.02317 0 0 612192. 2118.31 0.21 0.05 0.0142902 0.012805 146 58 64 32 60 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.05 vpr 62.46 MiB 0.03 7288 -1 -1 1 0.01 -1 -1 33232 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63964 32 32 406 319 1 200 101 17 17 289 -1 unnamed_device 24.5 MiB 0.21 968 62.5 MiB 0.12 0.00 2.75264 -95.0865 -2.75264 2.75264 0.83 0.000227939 0.00018847 0.0165269 0.0136437 28 2749 26 6.65987e+06 469086 500653. 1732.36 1.07 0.0749244 0.0664849 2207 21 1648 2548 178995 42184 2.98191 2.98191 -117.671 -2.98191 0 0 612192. 2118.31 0.22 0.05 0.0149819 0.0134223 155 61 63 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.74 vpr 62.47 MiB 0.02 7148 -1 -1 1 0.01 -1 -1 33472 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63968 32 32 377 289 1 194 100 17 17 289 -1 unnamed_device 24.5 MiB 0.05 1139 62.5 MiB 0.14 0.00 3.1757 -112.847 -3.1757 3.1757 0.72 0.000188397 0.000153924 0.0186984 0.0155788 30 2489 23 6.65987e+06 456408 526063. 1820.29 1.05 0.072142 0.0637553 2013 22 1613 2608 146359 34242 3.51717 3.51717 -137.807 -3.51717 0 0 666494. 2306.21 0.33 0.05 0.0141134 0.012685 151 21 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.99 vpr 62.50 MiB 0.05 7364 -1 -1 1 0.02 -1 -1 33604 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64000 32 32 408 320 1 197 101 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1074 62.5 MiB 0.08 0.00 3.10464 -108.896 -3.10464 3.10464 0.79 0.000229437 0.000192704 0.0121657 0.010186 32 2553 24 6.65987e+06 469086 554710. 1919.41 0.87 0.0521376 0.0449941 2174 22 1840 2692 186114 45080 3.38791 3.38791 -130.839 -3.38791 0 0 701300. 2426.64 0.25 0.06 0.0154282 0.0137811 153 50 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.83 vpr 62.95 MiB 0.04 7252 -1 -1 1 0.01 -1 -1 33532 -1 -1 34 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64464 31 32 451 369 1 193 97 17 17 289 -1 unnamed_device 24.6 MiB 0.33 1048 63.0 MiB 0.21 0.00 3.40198 -102.604 -3.40198 3.40198 0.79 0.000234889 0.000194218 0.0238584 0.0193177 30 2493 21 6.65987e+06 431052 526063. 1820.29 0.88 0.0639095 0.053998 2031 20 908 1612 100842 22503 3.11945 3.11945 -114.762 -3.11945 0 0 666494. 2306.21 0.23 0.04 0.0140987 0.0126105 145 110 0 0 122 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.24 vpr 62.51 MiB 0.04 7392 -1 -1 1 0.01 -1 -1 33532 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64012 32 32 433 347 1 195 84 17 17 289 -1 unnamed_device 24.3 MiB 0.40 995 62.5 MiB 0.20 0.00 3.20378 -101.086 -3.20378 3.20378 0.79 0.000196941 0.000158518 0.0259694 0.0232952 28 2896 39 6.65987e+06 253560 500653. 1732.36 0.96 0.0795223 0.0699597 2283 22 1685 2975 203184 49875 3.30485 3.30485 -131.505 -3.30485 0 0 612192. 2118.31 0.24 0.06 0.016112 0.0143831 149 86 32 32 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.81 vpr 62.68 MiB 0.03 6848 -1 -1 1 0.02 -1 -1 33456 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64180 32 32 313 256 1 166 94 17 17 289 -1 unnamed_device 24.1 MiB 0.04 803 62.7 MiB 0.07 0.00 2.57638 -91.6233 -2.57638 2.57638 0.70 0.000169597 0.000130529 0.00975548 0.00805415 28 2346 43 6.65987e+06 380340 500653. 1732.36 1.26 0.0660665 0.0481609 1980 21 1363 2017 146285 35996 2.84765 2.84765 -116.528 -2.84765 0 0 612192. 2118.31 0.23 0.04 0.0114424 0.0100126 124 20 63 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.97 vpr 62.86 MiB 0.05 7020 -1 -1 1 0.01 -1 -1 33072 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64368 32 32 371 315 1 164 82 17 17 289 -1 unnamed_device 24.5 MiB 0.24 793 62.9 MiB 0.08 0.00 2.66064 -94.8186 -2.66064 2.66064 0.70 0.000167243 0.000135062 0.0132524 0.0109491 32 2074 22 6.65987e+06 228204 554710. 1919.41 0.80 0.0586561 0.0518034 1807 25 1447 2223 181224 41514 2.84471 2.84471 -114.663 -2.84471 0 0 701300. 2426.64 0.24 0.07 0.018752 0.0161516 121 91 0 0 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.40 vpr 63.14 MiB 0.04 7356 -1 -1 1 0.01 -1 -1 33496 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64660 32 32 470 352 1 233 104 17 17 289 -1 unnamed_device 25.1 MiB 0.19 1179 63.1 MiB 0.18 0.00 3.7821 -127.596 -3.7821 3.7821 0.76 0.000298948 0.000249894 0.0271186 0.0232248 32 4181 48 6.65987e+06 507120 554710. 1919.41 1.55 0.0869859 0.075311 2894 21 2516 4156 331012 79888 4.95677 4.95677 -169.75 -4.95677 0 0 701300. 2426.64 0.23 0.08 0.0179088 0.0161799 187 53 96 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.76 vpr 62.95 MiB 0.02 7024 -1 -1 1 0.01 -1 -1 33096 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64464 32 32 369 285 1 194 95 17 17 289 -1 unnamed_device 24.6 MiB 0.19 930 63.0 MiB 0.13 0.00 2.7929 -98.2704 -2.7929 2.7929 0.79 0.000208233 0.000170822 0.0190699 0.0162407 32 2341 21 6.65987e+06 393018 554710. 1919.41 0.88 0.0541195 0.0467894 1928 20 1449 2114 150160 36709 3.11637 3.11637 -119.72 -3.11637 0 0 701300. 2426.64 0.29 0.06 0.0252974 0.0224823 146 31 92 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.21 vpr 62.75 MiB 0.02 7196 -1 -1 1 0.01 -1 -1 33300 -1 -1 30 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64252 30 32 299 247 1 158 92 17 17 289 -1 unnamed_device 24.2 MiB 0.04 870 62.7 MiB 0.06 0.00 2.7427 -93.0778 -2.7427 2.7427 0.81 0.000163778 0.000133348 0.00785307 0.00650891 28 2057 22 6.65987e+06 380340 500653. 1732.36 0.77 0.0384422 0.0331865 1829 20 1216 1954 136317 31558 2.79557 2.79557 -112.826 -2.79557 0 0 612192. 2118.31 0.21 0.04 0.0110037 0.00979846 115 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.57 vpr 63.35 MiB 0.07 7536 -1 -1 1 0.02 -1 -1 33812 -1 -1 43 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64872 32 32 532 414 1 232 107 17 17 289 -1 unnamed_device 25.2 MiB 0.83 1196 63.4 MiB 0.13 0.00 3.7821 -129.275 -3.7821 3.7821 0.84 0.000281982 0.000235816 0.0198429 0.0169037 32 3262 23 6.65987e+06 545154 554710. 1919.41 0.84 0.0700595 0.0611056 2726 20 2338 3655 285225 64064 4.45297 4.45297 -162.452 -4.45297 0 0 701300. 2426.64 0.27 0.07 0.0178523 0.0160633 186 109 32 32 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.69 vpr 62.67 MiB 0.02 7100 -1 -1 1 0.00 -1 -1 33468 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64172 32 32 377 289 1 194 100 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1030 62.7 MiB 0.10 0.00 3.40616 -118.571 -3.40616 3.40616 0.84 0.000182887 0.00014919 0.0137572 0.0113899 32 2354 23 6.65987e+06 456408 554710. 1919.41 0.81 0.0519782 0.043862 2012 22 1820 2631 183658 42449 3.60423 3.60423 -138.819 -3.60423 0 0 701300. 2426.64 0.24 0.05 0.0140027 0.0125302 151 31 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.92 vpr 62.51 MiB 0.02 6872 -1 -1 1 0.02 -1 -1 33124 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64012 32 32 284 226 1 164 95 17 17 289 -1 unnamed_device 24.0 MiB 0.07 949 62.5 MiB 0.11 0.00 2.7647 -101.434 -2.7647 2.7647 0.87 0.000143552 0.000115889 0.0230683 0.0192495 26 2351 20 6.65987e+06 393018 477104. 1650.88 1.07 0.0609408 0.0532781 2058 21 1363 2172 172055 38590 2.90477 2.90477 -122.292 -2.90477 0 0 585099. 2024.56 0.30 0.05 0.0110283 0.00990623 123 -1 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.79 vpr 62.97 MiB 0.05 7436 -1 -1 1 0.02 -1 -1 33320 -1 -1 42 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64480 32 32 439 321 1 235 106 17 17 289 -1 unnamed_device 25.0 MiB 0.12 1340 63.0 MiB 0.21 0.00 3.87216 -135.158 -3.87216 3.87216 0.70 0.000216523 0.000177366 0.0326823 0.0297913 32 3297 23 6.65987e+06 532476 554710. 1919.41 0.91 0.0774611 0.0691111 2853 23 2483 3940 332311 70665 4.66323 4.66323 -169.703 -4.66323 0 0 701300. 2426.64 0.26 0.08 0.0183165 0.0164944 189 26 128 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.82 vpr 62.75 MiB 0.02 7104 -1 -1 1 0.01 -1 -1 33056 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64260 32 32 284 226 1 162 81 17 17 289 -1 unnamed_device 24.2 MiB 0.12 871 62.8 MiB 0.07 0.00 2.7647 -99.8689 -2.7647 2.7647 0.81 0.000155114 0.000126884 0.0098751 0.00823693 32 2051 21 6.65987e+06 215526 554710. 1919.41 0.85 0.0381508 0.0329056 1875 21 1500 2421 175059 40963 3.08811 3.08811 -126.072 -3.08811 0 0 701300. 2426.64 0.23 0.05 0.011276 0.0100893 121 -1 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.82 vpr 62.86 MiB 0.03 7012 -1 -1 1 0.01 -1 -1 33424 -1 -1 31 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64364 30 32 299 247 1 157 93 17 17 289 -1 unnamed_device 24.2 MiB 0.20 728 62.9 MiB 0.07 0.00 2.7969 -91.2072 -2.7969 2.7969 1.15 0.000142316 0.000114766 0.00755167 0.00635037 32 1952 24 6.65987e+06 393018 554710. 1919.41 0.84 0.0368619 0.0318291 1646 18 1226 1914 132809 31991 2.98517 2.98517 -110.765 -2.98517 0 0 701300. 2426.64 0.24 0.04 0.0103998 0.00938842 113 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.78 vpr 62.76 MiB 0.02 7220 -1 -1 1 0.01 -1 -1 33360 -1 -1 33 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64268 29 32 397 323 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.30 1073 62.8 MiB 0.10 0.00 2.75878 -90.2593 -2.75878 2.75878 0.80 0.00025559 0.000215337 0.0131369 0.0107546 30 2234 18 6.65987e+06 418374 526063. 1820.29 0.78 0.0502489 0.043067 1909 19 1151 2066 114873 26218 2.66557 2.66557 -103.637 -2.66557 0 0 666494. 2306.21 0.38 0.04 0.0145338 0.0130958 133 81 29 29 85 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.75 vpr 63.01 MiB 0.04 7300 -1 -1 1 0.01 -1 -1 33736 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64520 32 32 408 320 1 194 84 17 17 289 -1 unnamed_device 24.5 MiB 0.20 987 63.0 MiB 0.09 0.00 3.2571 -114.73 -3.2571 3.2571 0.71 0.000191137 0.000154868 0.0151282 0.0125563 32 2423 23 6.65987e+06 253560 554710. 1919.41 0.92 0.0522228 0.0447812 2157 21 1909 2646 212052 47685 3.68651 3.68651 -144.55 -3.68651 0 0 701300. 2426.64 0.31 0.08 0.0193008 0.017737 150 53 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.40 vpr 62.53 MiB 0.05 7232 -1 -1 1 0.01 -1 -1 33352 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64028 32 32 408 320 1 195 98 17 17 289 -1 unnamed_device 24.5 MiB 0.39 903 62.5 MiB 0.09 0.00 3.2849 -112.154 -3.2849 3.2849 0.85 0.000247483 0.000207032 0.0130233 0.0108412 28 2414 25 6.65987e+06 431052 500653. 1732.36 1.17 0.0672866 0.0597225 2088 20 1538 2630 167817 43216 3.69037 3.69037 -139.124 -3.69037 0 0 612192. 2118.31 0.21 0.05 0.0149226 0.0134344 152 55 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.51 vpr 62.75 MiB 0.04 7172 -1 -1 1 0.02 -1 -1 33456 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64252 32 32 346 288 1 161 94 17 17 289 -1 unnamed_device 24.3 MiB 0.30 910 62.7 MiB 0.06 0.00 2.63244 -96.1683 -2.63244 2.63244 0.90 0.000194528 0.000160495 0.00860931 0.00721078 30 2079 21 6.65987e+06 380340 526063. 1820.29 0.70 0.0404175 0.0347651 1718 17 980 1479 80006 19605 2.71031 2.71031 -112.185 -2.71031 0 0 666494. 2306.21 0.23 0.03 0.0104445 0.00942741 120 55 32 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.63 vpr 62.55 MiB 0.05 7080 -1 -1 1 0.01 -1 -1 33644 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64052 31 32 355 304 1 152 80 17 17 289 -1 unnamed_device 23.9 MiB 0.36 700 62.6 MiB 0.09 0.00 2.74778 -83.9213 -2.74778 2.74778 0.87 0.000191857 0.000158686 0.0174757 0.0161568 32 1928 22 6.65987e+06 215526 554710. 1919.41 0.72 0.048291 0.0427817 1594 23 1190 2141 140732 35485 2.97285 2.97285 -110.553 -2.97285 0 0 701300. 2426.64 0.27 0.04 0.0124652 0.0110373 109 82 0 0 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.57 vpr 63.12 MiB 0.03 7112 -1 -1 1 0.01 -1 -1 33176 -1 -1 33 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64632 30 32 377 300 1 186 95 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1012 63.1 MiB 0.11 0.00 2.71964 -93.5429 -2.71964 2.71964 0.71 0.000224838 0.000188134 0.0132632 0.0111653 30 2241 18 6.65987e+06 418374 526063. 1820.29 0.93 0.0524733 0.0458844 1915 16 1076 1727 96795 22265 2.61251 2.61251 -107.852 -2.61251 0 0 666494. 2306.21 0.23 0.03 0.0111712 0.0101107 137 52 60 30 57 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.46 vpr 62.51 MiB 0.02 7144 -1 -1 1 0.02 -1 -1 33624 -1 -1 31 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64012 28 32 337 265 1 180 91 17 17 289 -1 unnamed_device 24.1 MiB 0.15 815 62.5 MiB 0.07 0.00 3.41304 -99.0561 -3.41304 3.41304 1.03 0.000176585 0.000145297 0.0113311 0.00974697 30 2089 19 6.65987e+06 393018 526063. 1820.29 0.66 0.0429378 0.0373315 1701 17 1109 1818 103130 24308 3.59217 3.59217 -118.867 -3.59217 0 0 666494. 2306.21 0.22 0.03 0.0106381 0.00963268 133 20 84 28 28 28 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 62.58 MiB 0.03 7184 -1 -1 1 0.00 -1 -1 33284 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64084 30 32 328 276 1 157 80 17 17 289 -1 unnamed_device 24.0 MiB 0.53 819 62.6 MiB 0.05 0.00 2.8131 -95.8786 -2.8131 2.8131 1.08 0.000176817 0.000145539 0.00892007 0.00746679 32 1983 23 6.65987e+06 228204 554710. 1919.41 0.69 0.0461034 0.040451 1796 22 1367 2230 168127 38933 2.87197 2.87197 -114.785 -2.87197 0 0 701300. 2426.64 0.37 0.08 0.0239531 0.0226636 114 58 30 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.72 vpr 62.68 MiB 0.04 6988 -1 -1 1 0.01 -1 -1 33276 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64188 32 32 362 309 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.29 969 62.7 MiB 0.10 0.00 2.72278 -90.9323 -2.72278 2.72278 0.72 0.000177322 0.000142808 0.0119645 0.00982642 30 2022 22 6.65987e+06 202848 526063. 1820.29 0.70 0.0439458 0.0374418 1759 22 963 1633 101463 22964 2.51805 2.51805 -103.178 -2.51805 0 0 666494. 2306.21 0.41 0.04 0.0121924 0.010839 113 88 0 0 91 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.00 vpr 62.86 MiB 0.03 7304 -1 -1 1 0.01 -1 -1 33608 -1 -1 35 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64368 31 32 337 253 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 0.08 1048 62.9 MiB 0.10 0.00 3.33845 -111.982 -3.33845 3.33845 0.73 0.000185305 0.000152615 0.0120782 0.0101438 32 2580 49 6.65987e+06 443730 554710. 1919.41 1.25 0.0597898 0.0520563 2299 24 1924 3042 249403 55129 3.74563 3.74563 -139.188 -3.74563 0 0 701300. 2426.64 0.24 0.06 0.0144362 0.012944 150 -1 124 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.78 vpr 62.46 MiB 0.04 7312 -1 -1 1 0.01 -1 -1 33384 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63964 32 32 408 320 1 197 98 17 17 289 -1 unnamed_device 24.5 MiB 0.26 982 62.5 MiB 0.09 0.00 3.1977 -110.091 -3.1977 3.1977 0.73 0.000239589 0.000198976 0.0125396 0.0105534 30 2455 21 6.65987e+06 431052 526063. 1820.29 0.73 0.050821 0.0439717 2099 20 1492 2545 133274 32819 3.69837 3.69837 -138.212 -3.69837 0 0 666494. 2306.21 0.26 0.05 0.0163245 0.0149384 153 57 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.94 vpr 62.71 MiB 0.02 7252 -1 -1 1 0.01 -1 -1 33416 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64216 32 32 408 320 1 194 98 17 17 289 -1 unnamed_device 24.7 MiB 0.42 1096 62.7 MiB 0.13 0.00 3.42816 -120.595 -3.42816 3.42816 0.79 0.000196339 0.000159422 0.0173246 0.014099 30 2459 20 6.65987e+06 431052 526063. 1820.29 1.03 0.0627805 0.0544865 2147 23 1636 2748 153016 35945 3.62323 3.62323 -143.185 -3.62323 0 0 666494. 2306.21 0.24 0.05 0.0154969 0.0139035 151 62 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.85 vpr 62.74 MiB 0.03 7248 -1 -1 1 0.02 -1 -1 33224 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64248 32 32 400 316 1 196 101 17 17 289 -1 unnamed_device 24.5 MiB 0.23 1160 62.7 MiB 0.20 0.00 3.14164 -109.587 -3.14164 3.14164 0.79 0.000232225 0.000194599 0.0320429 0.0298856 32 2728 23 6.65987e+06 469086 554710. 1919.41 0.77 0.0687234 0.0617519 2323 25 1786 2971 222152 50616 3.72651 3.72651 -134.885 -3.72651 0 0 701300. 2426.64 0.24 0.06 0.0154488 0.013574 148 62 60 30 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.71 vpr 62.58 MiB 0.03 7072 -1 -1 1 0.01 -1 -1 33204 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64084 30 32 299 247 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 0.16 672 62.6 MiB 0.24 0.00 2.7819 -89.2498 -2.7819 2.7819 0.71 0.000204868 0.000173245 0.0127178 0.0108036 30 1929 21 6.65987e+06 228204 526063. 1820.29 0.84 0.0444747 0.0388349 1541 19 924 1466 79913 19336 2.83197 2.83197 -104.803 -2.83197 0 0 666494. 2306.21 0.23 0.03 0.0107734 0.00974796 112 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.58 vpr 62.78 MiB 0.02 7404 -1 -1 1 0.01 -1 -1 33276 -1 -1 22 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64288 30 32 386 306 1 191 84 17 17 289 -1 unnamed_device 24.2 MiB 0.28 992 62.8 MiB 0.06 0.00 3.36736 -110.499 -3.36736 3.36736 0.86 0.000185628 0.000151429 0.00884529 0.00745362 32 2237 21 6.65987e+06 278916 554710. 1919.41 0.67 0.0417141 0.0359572 1930 24 2061 3098 201002 48587 3.64943 3.64943 -133.586 -3.64943 0 0 701300. 2426.64 0.24 0.11 0.0155597 0.0139265 146 58 60 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.16 vpr 63.00 MiB 0.04 7244 -1 -1 1 0.01 -1 -1 33932 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64516 32 32 470 382 1 198 103 17 17 289 -1 unnamed_device 24.9 MiB 0.41 1094 63.0 MiB 0.14 0.00 3.22678 -112.517 -3.22678 3.22678 0.88 0.000216113 0.000175685 0.0171071 0.0143066 28 2844 21 6.65987e+06 494442 500653. 1732.36 0.89 0.0592182 0.050933 2526 22 1924 3065 236903 54954 3.63405 3.63405 -137.809 -3.63405 0 0 612192. 2118.31 0.37 0.06 0.0150801 0.0133975 154 106 0 0 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.45 vpr 62.57 MiB 0.03 7260 -1 -1 1 0.01 -1 -1 33484 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64068 31 32 427 343 1 189 94 17 17 289 -1 unnamed_device 24.4 MiB 0.37 993 62.6 MiB 0.10 0.00 3.37204 -107.692 -3.37204 3.37204 0.71 0.000234102 0.00019591 0.0146717 0.0122538 26 2929 45 6.65987e+06 393018 477104. 1650.88 1.55 0.079188 0.0611888 2380 23 1832 3024 270312 61868 3.64531 3.64531 -136.56 -3.64531 0 0 585099. 2024.56 0.25 0.06 0.015357 0.013683 145 79 31 31 93 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.30 vpr 62.93 MiB 0.05 7288 -1 -1 1 0.01 -1 -1 33576 -1 -1 30 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64440 30 32 407 331 1 182 92 17 17 289 -1 unnamed_device 24.5 MiB 0.44 985 62.9 MiB 0.07 0.00 3.00058 -92.8098 -3.00058 3.00058 0.69 0.000237143 0.000197837 0.00954442 0.00800326 26 2531 27 6.65987e+06 380340 477104. 1650.88 1.45 0.0833671 0.0760969 2150 21 1366 2259 171494 39728 3.31051 3.31051 -119.382 -3.31051 0 0 585099. 2024.56 0.24 0.06 0.014661 0.0131093 136 83 26 26 90 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.51 vpr 63.06 MiB 0.02 7320 -1 -1 1 0.00 -1 -1 33248 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64576 32 32 408 320 1 198 85 17 17 289 -1 unnamed_device 24.6 MiB 0.29 1044 63.1 MiB 0.07 0.00 3.2179 -114.17 -3.2179 3.2179 0.68 0.000209973 0.000173698 0.00992708 0.00836368 32 2703 22 6.65987e+06 266238 554710. 1919.41 0.73 0.0500891 0.0435312 2283 21 1967 3455 271126 60594 3.50617 3.50617 -137.76 -3.50617 0 0 701300. 2426.64 0.24 0.09 0.0144752 0.012985 154 58 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.48 vpr 62.99 MiB 0.02 7380 -1 -1 1 0.01 -1 -1 33540 -1 -1 34 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64500 29 32 391 320 1 179 95 17 17 289 -1 unnamed_device 24.3 MiB 0.21 830 63.0 MiB 0.08 0.00 2.58364 -80.3409 -2.58364 2.58364 0.71 0.000192663 0.000155769 0.011549 0.00972085 30 1883 23 6.65987e+06 431052 526063. 1820.29 0.84 0.0446782 0.0382787 1505 19 1021 1640 82836 20784 2.66151 2.66151 -97.6112 -2.66151 0 0 666494. 2306.21 0.28 0.05 0.0128601 0.0115207 134 81 26 26 85 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.75 vpr 62.43 MiB 0.03 6864 -1 -1 1 0.01 -1 -1 33064 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63928 32 32 284 226 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 0.19 917 62.4 MiB 0.08 0.00 2.7819 -102.38 -2.7819 2.7819 0.71 0.000148691 0.000120325 0.0126112 0.0104054 32 1926 22 6.65987e+06 202848 554710. 1919.41 0.71 0.0410534 0.0351538 1743 22 1400 2152 159402 37435 2.89677 2.89677 -120.107 -2.89677 0 0 701300. 2426.64 0.23 0.05 0.0123446 0.0110522 115 -1 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 6.58 vpr 62.32 MiB 0.02 7312 -1 -1 1 0.01 -1 -1 33664 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63820 32 32 408 320 1 194 97 17 17 289 -1 unnamed_device 24.4 MiB 0.41 960 62.3 MiB 0.12 0.00 3.41716 -114.859 -3.41716 3.41716 0.70 0.000207027 0.000170386 0.0204262 0.0170881 38 2733 35 6.65987e+06 418374 638502. 2209.35 3.52 0.101088 0.0881549 1863 21 1379 2244 184581 41222 3.60723 3.60723 -132.156 -3.60723 0 0 851065. 2944.86 0.27 0.05 0.0146397 0.0131711 150 62 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.93 vpr 62.92 MiB 0.03 7092 -1 -1 1 0.02 -1 -1 33208 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64428 32 32 408 320 1 201 85 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1111 62.9 MiB 0.08 0.00 3.50956 -123.469 -3.50956 3.50956 0.77 0.000222814 0.000185452 0.0118721 0.00997905 32 2771 22 6.65987e+06 266238 554710. 1919.41 0.75 0.050438 0.0436697 2352 20 2021 3147 242944 55417 3.98203 3.98203 -151.641 -3.98203 0 0 701300. 2426.64 0.24 0.06 0.0144655 0.0129778 157 62 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.86 vpr 62.55 MiB 0.02 6988 -1 -1 1 0.01 -1 -1 33492 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64052 32 32 316 268 1 158 93 17 17 289 -1 unnamed_device 24.0 MiB 0.24 831 62.6 MiB 0.11 0.00 2.72758 -88.0017 -2.72758 2.72758 0.68 0.000158048 0.000127505 0.0148302 0.0121831 26 2100 36 6.65987e+06 367662 477104. 1650.88 0.92 0.0593548 0.0516215 1769 25 1190 1889 157306 42952 2.95905 2.95905 -105.726 -2.95905 0 0 585099. 2024.56 0.35 0.05 0.0131262 0.011635 111 47 32 32 54 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.15 vpr 62.47 MiB 0.02 7100 -1 -1 1 0.01 -1 -1 33256 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63968 31 32 277 222 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.10 832 62.5 MiB 0.07 0.00 2.7317 -95.2561 -2.7317 2.7317 0.68 0.00015253 0.000125076 0.0110811 0.0092174 32 2143 28 6.65987e+06 228204 554710. 1919.41 0.70 0.0414024 0.0356411 1806 21 1440 2287 169489 39380 2.96791 2.96791 -118.889 -2.96791 0 0 701300. 2426.64 0.24 0.05 0.0124719 0.0112165 118 -1 93 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.68 vpr 62.85 MiB 0.02 7360 -1 -1 1 0.02 -1 -1 33280 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64356 32 32 382 304 1 188 96 17 17 289 -1 unnamed_device 24.3 MiB 0.33 1003 62.8 MiB 0.09 0.00 3.05399 -104.684 -3.05399 3.05399 0.71 0.000200031 0.000164405 0.0122881 0.0101632 26 2528 23 6.65987e+06 405696 477104. 1650.88 0.76 0.053068 0.0458851 2080 21 1561 2295 154732 36279 3.36131 3.36131 -126.449 -3.36131 0 0 585099. 2024.56 0.19 0.10 0.0274679 0.0256914 138 56 60 32 58 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.84 vpr 62.71 MiB 0.03 7396 -1 -1 1 0.02 -1 -1 33392 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64212 32 32 407 331 1 190 94 17 17 289 -1 unnamed_device 24.6 MiB 0.34 858 62.7 MiB 0.08 0.00 3.61844 -101.187 -3.61844 3.61844 0.84 0.000189252 0.000154094 0.0113974 0.00944831 28 2962 45 6.65987e+06 380340 500653. 1732.36 1.91 0.0850754 0.0760903 2198 22 1466 2334 196863 47542 4.02911 4.02911 -132.916 -4.02911 0 0 612192. 2118.31 0.22 0.05 0.0146885 0.0131149 138 81 28 28 88 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 3.82 vpr 63.00 MiB 0.02 7468 -1 -1 1 0.01 -1 -1 33560 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64508 32 32 400 286 1 228 99 17 17 289 -1 unnamed_device 25.0 MiB 0.16 1186 63.0 MiB 0.12 0.00 3.85936 -125.224 -3.85936 3.85936 0.97 0.000230346 0.000193359 0.0166693 0.0140347 32 3372 26 6.65987e+06 443730 554710. 1919.41 0.87 0.0639877 0.0555143 2788 23 2331 3805 354557 77505 4.91203 4.91203 -159.103 -4.91203 0 0 701300. 2426.64 0.23 0.08 0.016752 0.0150154 177 -1 156 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.98 vpr 62.79 MiB 0.05 7232 -1 -1 1 0.02 -1 -1 33480 -1 -1 32 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64292 30 32 374 298 1 184 94 17 17 289 -1 unnamed_device 24.2 MiB 0.34 978 62.8 MiB 0.09 0.00 2.98304 -93.0982 -2.98304 2.98304 0.91 0.000208699 0.00017163 0.0115585 0.00960701 26 2587 27 6.65987e+06 405696 477104. 1650.88 0.78 0.053077 0.045802 2173 19 1621 2570 198090 45180 2.83871 2.83871 -112.734 -2.83871 0 0 585099. 2024.56 0.22 0.05 0.0136205 0.0122269 136 47 60 30 56 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.64 vpr 62.52 MiB 0.03 7020 -1 -1 1 0.01 -1 -1 33292 -1 -1 20 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64020 27 32 275 232 1 143 79 17 17 289 -1 unnamed_device 23.8 MiB 0.21 583 62.5 MiB 0.10 0.00 2.9371 -78.442 -2.9371 2.9371 0.88 0.000143584 0.000116848 0.0134205 0.0100215 28 1685 23 6.65987e+06 253560 500653. 1732.36 0.69 0.0410539 0.0339509 1383 21 988 1421 88368 23691 2.91497 2.91497 -95.6263 -2.91497 0 0 612192. 2118.31 0.22 0.03 0.0102579 0.00914687 104 26 54 27 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.53 vpr 63.28 MiB 0.06 7468 -1 -1 1 0.01 -1 -1 33976 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64796 32 32 494 379 1 232 104 17 17 289 -1 unnamed_device 25.2 MiB 0.21 1324 63.3 MiB 0.13 0.00 3.69844 -114.619 -3.69844 3.69844 0.68 0.000270035 0.000226181 0.0168173 0.0131806 28 3584 31 6.65987e+06 507120 500653. 1732.36 1.76 0.0711056 0.0606044 2910 21 1739 3165 256609 56182 3.66411 3.66411 -139.569 -3.66411 0 0 612192. 2118.31 0.21 0.07 0.0173732 0.0155844 183 85 62 31 95 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.64 vpr 63.24 MiB 0.03 7272 -1 -1 1 0.01 -1 -1 33824 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64760 31 32 457 373 1 189 84 17 17 289 -1 unnamed_device 24.7 MiB 0.42 998 63.2 MiB 0.07 0.00 3.51179 -108.621 -3.51179 3.51179 0.70 0.000211294 0.000173019 0.0118309 0.00991786 30 2219 22 6.65987e+06 266238 526063. 1820.29 0.69 0.0506033 0.0436199 1801 19 969 1682 90592 21757 3.56637 3.56637 -131.954 -3.56637 0 0 666494. 2306.21 0.28 0.07 0.0180212 0.0154443 144 105 0 0 124 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.34 vpr 62.74 MiB 0.02 7008 -1 -1 1 0.01 -1 -1 33372 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64248 32 32 356 305 1 151 80 17 17 289 -1 unnamed_device 24.2 MiB 0.37 845 62.7 MiB 0.06 0.00 2.83198 -92.1131 -2.83198 2.83198 0.72 0.000170133 0.000137571 0.0103063 0.00849 32 2128 20 6.65987e+06 202848 554710. 1919.41 0.65 0.0396341 0.0338206 1830 24 1101 1752 158426 34967 2.87091 2.87091 -111.52 -2.87091 0 0 701300. 2426.64 0.26 0.04 0.0126403 0.0112075 109 86 0 0 89 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.02 vpr 62.93 MiB 0.04 7204 -1 -1 1 0.01 -1 -1 33264 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64436 32 32 365 283 1 196 96 17 17 289 -1 unnamed_device 24.5 MiB 0.09 1058 62.9 MiB 0.08 0.00 3.4743 -111.659 -3.4743 3.4743 0.72 0.00022766 0.000189713 0.00904171 0.00764434 26 2981 40 6.65987e+06 405696 477104. 1650.88 1.25 0.0550203 0.0475696 2464 21 1537 2350 192572 43503 3.87577 3.87577 -141.741 -3.87577 0 0 585099. 2024.56 0.23 0.05 0.0142271 0.0128426 146 31 90 30 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.49 vpr 62.64 MiB 0.03 7416 -1 -1 1 0.01 -1 -1 33600 -1 -1 36 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64140 31 32 445 338 1 220 99 17 17 289 -1 unnamed_device 24.7 MiB 0.13 1171 62.6 MiB 0.13 0.00 3.54244 -114.197 -3.54244 3.54244 0.73 0.00022868 0.00018768 0.015466 0.0128722 32 2780 24 6.65987e+06 456408 554710. 1919.41 0.71 0.0570123 0.0490373 2448 23 1857 2814 199021 46415 3.57211 3.57211 -132.604 -3.57211 0 0 701300. 2426.64 0.31 0.06 0.017839 0.0159677 171 50 87 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.15 vpr 62.74 MiB 0.03 7348 -1 -1 1 0.01 -1 -1 33680 -1 -1 33 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64244 30 32 376 300 1 186 95 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1138 62.7 MiB 0.08 0.00 2.88004 -89.8499 -2.88004 2.88004 0.74 0.000181429 0.000148244 0.00964857 0.00810325 26 2753 21 6.65987e+06 418374 477104. 1650.88 1.28 0.0460599 0.0398789 2427 24 1515 2576 214276 47651 3.11331 3.11331 -114.928 -3.11331 0 0 585099. 2024.56 0.22 0.12 0.0246834 0.0230484 134 50 58 30 58 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.00 vpr 62.82 MiB 0.04 7252 -1 -1 1 0.01 -1 -1 33200 -1 -1 42 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64332 32 32 408 320 1 201 106 17 17 289 -1 unnamed_device 24.6 MiB 0.32 1122 62.8 MiB 0.15 0.00 3.2369 -114.332 -3.2369 3.2369 0.72 0.000202562 0.000165233 0.0187907 0.01568 28 2737 21 6.65987e+06 532476 500653. 1732.36 0.93 0.0564128 0.0484155 2272 19 1766 2878 190895 44351 3.66437 3.66437 -141.55 -3.66437 0 0 612192. 2118.31 0.21 0.05 0.014055 0.0126613 157 61 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.58 vpr 62.76 MiB 0.03 7324 -1 -1 1 0.01 -1 -1 33524 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64264 32 32 406 319 1 200 102 17 17 289 -1 unnamed_device 24.5 MiB 0.23 928 62.8 MiB 0.12 0.00 2.67164 -93.1892 -2.67164 2.67164 0.71 0.000201717 0.000164607 0.0158152 0.0131245 28 3083 38 6.65987e+06 481764 500653. 1732.36 1.44 0.0748468 0.0657961 2263 20 1553 2381 205541 49809 3.21431 3.21431 -123.021 -3.21431 0 0 612192. 2118.31 0.24 0.05 0.0142546 0.0127738 155 61 63 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.35 vpr 62.47 MiB 0.04 7144 -1 -1 1 0.01 -1 -1 33544 -1 -1 17 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63972 29 32 291 242 1 134 78 17 17 289 -1 unnamed_device 24.1 MiB 0.11 702 62.5 MiB 0.07 0.00 2.6657 -87.43 -2.6657 2.6657 0.69 0.000144784 0.000116315 0.0118139 0.00973785 32 1497 22 6.65987e+06 215526 554710. 1919.41 0.66 0.0375445 0.0319683 1407 19 994 1426 110140 25743 2.51117 2.51117 -98.1843 -2.51117 0 0 701300. 2426.64 0.31 0.04 0.0105149 0.0094278 96 28 58 29 29 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.37 vpr 62.45 MiB 0.02 7120 -1 -1 1 0.01 -1 -1 33192 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63944 32 32 335 291 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.28 893 62.4 MiB 0.07 0.00 3.09238 -91.3515 -3.09238 3.09238 0.79 0.000151947 0.000121799 0.0106062 0.00871623 30 1819 16 6.65987e+06 215526 526063. 1820.29 0.62 0.0373 0.0317594 1583 16 770 1075 68573 15954 2.71151 2.71151 -103.728 -2.71151 0 0 666494. 2306.21 0.22 0.03 0.009781 0.00882475 111 79 0 0 82 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.71 vpr 62.37 MiB 0.02 7100 -1 -1 1 0.01 -1 -1 33388 -1 -1 37 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63868 31 32 367 283 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.27 885 62.4 MiB 0.11 0.00 3.43004 -109.676 -3.43004 3.43004 0.73 0.000185335 0.000151751 0.014809 0.0123578 28 3063 41 6.65987e+06 469086 500653. 1732.36 1.46 0.0785078 0.0698598 2417 21 1823 2943 253282 58615 4.00597 4.00597 -144.149 -4.00597 0 0 612192. 2118.31 0.25 0.07 0.0143105 0.0128991 151 29 93 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.80 vpr 62.55 MiB 0.03 7024 -1 -1 1 0.01 -1 -1 33336 -1 -1 31 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64048 29 32 301 258 1 150 92 17 17 289 -1 unnamed_device 24.1 MiB 0.45 869 62.5 MiB 0.09 0.00 2.86104 -82.6867 -2.86104 2.86104 0.74 0.000155251 0.000126565 0.0134937 0.0111461 26 1997 17 6.65987e+06 393018 477104. 1650.88 0.71 0.0426958 0.0366979 1796 22 1007 1661 130494 29056 2.78165 2.78165 -99.7635 -2.78165 0 0 585099. 2024.56 0.20 0.04 0.0109185 0.00974349 108 48 29 29 52 26 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.70 vpr 62.81 MiB 0.03 6896 -1 -1 1 0.01 -1 -1 33124 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64320 32 32 315 257 1 160 80 17 17 289 -1 unnamed_device 24.2 MiB 0.16 900 62.8 MiB 0.06 0.00 2.7929 -101.382 -2.7929 2.7929 0.69 0.000178723 0.000148275 0.00954332 0.00794494 32 2108 27 6.65987e+06 202848 554710. 1919.41 0.90 0.0423222 0.0365567 1871 19 1393 2259 171308 38975 2.90891 2.90891 -121.26 -2.90891 0 0 701300. 2426.64 0.26 0.10 0.0254196 0.0242723 119 31 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.43 vpr 62.47 MiB 0.03 7168 -1 -1 1 0.02 -1 -1 33240 -1 -1 35 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63972 31 32 389 309 1 189 98 17 17 289 -1 unnamed_device 24.4 MiB 0.26 888 62.5 MiB 0.08 0.00 3.0713 -96.3006 -3.0713 3.0713 0.72 0.000193324 0.000156342 0.010481 0.00865005 30 2025 21 6.65987e+06 443730 526063. 1820.29 0.65 0.0456638 0.0391836 1707 19 1175 1801 84535 21492 2.92497 2.92497 -111.186 -2.92497 0 0 666494. 2306.21 0.26 0.04 0.0129241 0.0116375 141 60 58 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.73 vpr 62.48 MiB 0.04 7144 -1 -1 1 0.01 -1 -1 33220 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63976 31 32 310 264 1 148 79 17 17 289 -1 unnamed_device 24.0 MiB 0.40 718 62.5 MiB 0.05 0.00 2.49487 -79.643 -2.49487 2.49487 0.71 0.000147197 0.000118487 0.00844696 0.00698313 30 1938 22 6.65987e+06 202848 526063. 1820.29 0.67 0.0363556 0.0311119 1532 20 761 1193 74742 18073 2.29025 2.29025 -94.433 -2.29025 0 0 666494. 2306.21 0.32 0.09 0.0131814 0.0113908 105 49 31 31 53 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.15 vpr 62.64 MiB 0.04 7288 -1 -1 1 0.01 -1 -1 33552 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64144 32 32 384 308 1 184 96 17 17 289 -1 unnamed_device 24.2 MiB 0.22 939 62.6 MiB 0.12 0.00 2.6657 -91.6229 -2.6657 2.6657 0.96 0.000202044 0.000166765 0.0165111 0.0137029 28 2382 23 6.65987e+06 405696 500653. 1732.36 0.83 0.053435 0.0458097 1887 20 1023 1930 139273 33455 2.76877 2.76877 -107.256 -2.76877 0 0 612192. 2118.31 0.22 0.04 0.0133294 0.0119668 136 56 52 26 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.74 vpr 62.77 MiB 0.05 7356 -1 -1 1 0.02 -1 -1 33116 -1 -1 36 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64280 31 32 424 341 1 195 99 17 17 289 -1 unnamed_device 24.6 MiB 0.18 803 62.8 MiB 0.06 0.00 3.0933 -96.6448 -3.0933 3.0933 0.75 0.000231056 0.000172481 0.00844552 0.00706001 28 2155 22 6.65987e+06 456408 500653. 1732.36 0.99 0.0504773 0.0436683 1974 18 1599 2309 168013 42293 3.08837 3.08837 -116.281 -3.08837 0 0 612192. 2118.31 0.28 0.05 0.0261245 0.0247312 148 88 31 31 92 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.32 vpr 62.68 MiB 0.02 7180 -1 -1 1 0.00 -1 -1 33272 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64180 32 32 334 280 1 160 82 17 17 289 -1 unnamed_device 24.1 MiB 0.15 764 62.7 MiB 0.04 0.00 2.31427 -83.929 -2.31427 2.31427 0.71 0.000195401 0.000163328 0.00672811 0.00569593 32 2082 22 6.65987e+06 228204 554710. 1919.41 0.71 0.0384001 0.0335151 1856 21 1250 1911 161627 37278 2.60125 2.60125 -107.859 -2.60125 0 0 701300. 2426.64 0.26 0.05 0.0125004 0.0111919 115 54 32 32 60 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.05 vpr 62.74 MiB 0.04 6944 -1 -1 1 0.01 -1 -1 33152 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64244 32 32 340 284 1 164 82 17 17 289 -1 unnamed_device 24.1 MiB 0.25 836 62.7 MiB 0.08 0.00 2.66064 -93.6166 -2.66064 2.66064 0.70 0.000166243 0.000135347 0.013218 0.0109465 26 2550 36 6.65987e+06 228204 477104. 1650.88 1.21 0.0742467 0.0665691 2111 22 1421 2279 187032 43846 3.11411 3.11411 -124.484 -3.11411 0 0 585099. 2024.56 0.20 0.05 0.0122665 0.0109198 121 60 32 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.66 vpr 62.48 MiB 0.02 7312 -1 -1 1 0.01 -1 -1 33732 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63980 32 32 408 320 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.20 1002 62.5 MiB 0.12 0.00 3.13064 -110.862 -3.13064 3.13064 0.98 0.000249573 0.000209736 0.0186922 0.0155859 28 2624 23 6.65987e+06 456408 500653. 1732.36 0.76 0.0579035 0.0496916 2335 23 1807 2690 202575 46444 3.87671 3.87671 -142.55 -3.87671 0 0 612192. 2118.31 0.20 0.05 0.0151382 0.0135615 154 49 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.91 vpr 62.83 MiB 0.03 7244 -1 -1 1 0.01 -1 -1 33568 -1 -1 32 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64336 29 32 371 297 1 183 93 17 17 289 -1 unnamed_device 24.3 MiB 0.20 944 62.8 MiB 0.23 0.00 2.62993 -85.9629 -2.62993 2.62993 0.72 0.000172177 0.000139367 0.0463002 0.0433716 26 2333 20 6.65987e+06 405696 477104. 1650.88 0.80 0.0820493 0.0745102 2039 22 1238 1947 143669 34056 2.92491 2.92491 -105.954 -2.92491 0 0 585099. 2024.56 0.38 0.05 0.0134435 0.0120019 133 54 56 29 58 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.71 vpr 62.99 MiB 0.02 7124 -1 -1 1 0.02 -1 -1 33648 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64504 32 32 470 382 1 200 101 17 17 289 -1 unnamed_device 24.8 MiB 0.34 985 63.0 MiB 0.10 0.00 3.17284 -111.866 -3.17284 3.17284 0.74 0.000209453 0.000170206 0.0137272 0.0113779 32 2700 26 6.65987e+06 469086 554710. 1919.41 0.79 0.0620458 0.0536114 2270 23 1942 2909 223065 51739 3.61131 3.61131 -138.139 -3.61131 0 0 701300. 2426.64 0.25 0.12 0.0366501 0.0303058 156 117 0 0 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.45 vpr 62.23 MiB 0.02 7112 -1 -1 1 0.01 -1 -1 33456 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63724 31 32 261 214 1 146 79 17 17 289 -1 unnamed_device 23.6 MiB 0.17 693 62.2 MiB 0.05 0.00 2.32153 -77.2995 -2.32153 2.32153 0.75 0.000143558 0.00011733 0.00853618 0.00722548 30 1730 17 6.65987e+06 202848 526063. 1820.29 0.64 0.0338995 0.0293527 1522 20 832 1313 82879 19908 2.57651 2.57651 -96.3539 -2.57651 0 0 666494. 2306.21 0.22 0.03 0.0106983 0.00962984 105 -1 85 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.06 vpr 63.05 MiB 0.02 7328 -1 -1 1 0.01 -1 -1 33100 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64564 32 32 419 339 1 190 96 17 17 289 -1 unnamed_device 24.6 MiB 0.26 1033 63.1 MiB 0.12 0.00 3.55944 -111.602 -3.55944 3.55944 0.97 0.000202083 0.000164816 0.0163138 0.0134854 26 2561 22 6.65987e+06 405696 477104. 1650.88 0.80 0.0595158 0.051482 2260 19 1585 2370 173695 41343 3.56537 3.56537 -135.147 -3.56537 0 0 585099. 2024.56 0.20 0.05 0.0152695 0.0137529 142 89 28 28 92 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.48 vpr 62.72 MiB 0.02 7184 -1 -1 1 0.01 -1 -1 33204 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64228 32 32 377 319 1 156 80 17 17 289 -1 unnamed_device 24.3 MiB 0.21 856 62.7 MiB 0.14 0.00 2.8021 -102.948 -2.8021 2.8021 0.70 0.000200218 0.000164405 0.0171047 0.0142348 32 2054 20 6.65987e+06 202848 554710. 1919.41 0.81 0.0499747 0.042767 1790 20 1363 1924 140829 33326 3.06717 3.06717 -126.43 -3.06717 0 0 701300. 2426.64 0.31 0.04 0.0123438 0.0110143 115 93 0 0 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.67 vpr 62.64 MiB 0.02 7116 -1 -1 1 0.02 -1 -1 33440 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64140 32 32 402 317 1 196 99 17 17 289 -1 unnamed_device 24.4 MiB 0.32 1087 62.6 MiB 0.11 0.00 2.75264 -100.736 -2.75264 2.75264 0.79 0.000231831 0.000192929 0.0148072 0.0122911 32 2413 24 6.65987e+06 443730 554710. 1919.41 0.69 0.0550344 0.0475519 2177 21 1563 2252 175422 39348 2.63231 2.63231 -115.207 -2.63231 0 0 701300. 2426.64 0.28 0.10 0.0176918 0.0161818 149 59 61 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.20 vpr 62.83 MiB 0.02 7372 -1 -1 1 0.01 -1 -1 33584 -1 -1 43 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64336 32 32 501 383 1 232 107 17 17 289 -1 unnamed_device 24.8 MiB 0.26 1122 62.8 MiB 0.09 0.00 3.7509 -126.066 -3.7509 3.7509 0.90 0.000250771 0.000207098 0.0125086 0.0105567 28 3143 21 6.65987e+06 545154 500653. 1732.36 1.24 0.0597529 0.0517937 2560 22 2217 3370 246764 55464 4.46197 4.46197 -163.285 -4.46197 0 0 612192. 2118.31 0.23 0.06 0.0179143 0.0160669 186 81 64 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.40 vpr 62.41 MiB 0.03 6876 -1 -1 1 0.02 -1 -1 33096 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63908 30 32 249 232 1 118 77 17 17 289 -1 unnamed_device 24.0 MiB 0.27 584 62.4 MiB 0.04 0.00 2.22258 -71.0011 -2.22258 2.22258 0.87 0.000165867 0.000136481 0.00772056 0.00666812 28 1444 18 6.65987e+06 190170 500653. 1732.36 0.64 0.0293425 0.0252385 1277 15 551 774 64263 14757 2.00905 2.00905 -81.1903 -2.00905 0 0 612192. 2118.31 0.21 0.02 0.00702131 0.00630396 83 51 0 0 53 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.40 vpr 62.70 MiB 0.05 7016 -1 -1 1 0.01 -1 -1 33332 -1 -1 16 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64208 30 32 299 247 1 137 78 17 17 289 -1 unnamed_device 24.2 MiB 0.08 738 62.7 MiB 0.11 0.00 2.80784 -90.265 -2.80784 2.80784 0.73 0.000150375 0.000121813 0.0118243 0.00988606 32 1678 16 6.65987e+06 202848 554710. 1919.41 0.84 0.038368 0.0327334 1435 22 929 1369 105241 24159 2.62457 2.62457 -101.511 -2.62457 0 0 701300. 2426.64 0.27 0.04 0.0155206 0.0143104 96 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.63 vpr 62.84 MiB 0.04 7036 -1 -1 1 0.01 -1 -1 33136 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64348 32 32 315 257 1 167 82 17 17 289 -1 unnamed_device 24.3 MiB 0.16 921 62.8 MiB 0.09 0.00 2.7647 -100.713 -2.7647 2.7647 0.70 0.00031843 0.000185403 0.0120459 0.0099671 32 2271 18 6.65987e+06 228204 554710. 1919.41 1.03 0.0443956 0.0377288 2005 22 1498 2560 187746 43869 2.93777 2.93777 -120.95 -2.93777 0 0 701300. 2426.64 0.25 0.05 0.0130466 0.0117542 126 31 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.30 vpr 62.28 MiB 0.02 7076 -1 -1 1 0.01 -1 -1 33448 -1 -1 34 25 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63776 25 32 259 222 1 138 91 17 17 289 -1 unnamed_device 23.7 MiB 0.05 569 62.3 MiB 0.06 0.00 2.60564 -69.1757 -2.60564 2.60564 0.85 0.000132771 0.00010804 0.00734281 0.00604698 26 1670 34 6.65987e+06 431052 477104. 1650.88 0.77 0.0372454 0.0318887 1459 20 1073 1713 116648 28760 2.70651 2.70651 -90.8533 -2.70651 0 0 585099. 2024.56 0.32 0.03 0.00892341 0.00793885 103 19 50 25 25 25 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.74 vpr 62.51 MiB 0.03 7204 -1 -1 1 0.01 -1 -1 33536 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64012 32 32 433 347 1 193 84 17 17 289 -1 unnamed_device 24.5 MiB 0.33 916 62.5 MiB 0.11 0.00 3.17278 -100.593 -3.17278 3.17278 0.88 0.000231864 0.000191164 0.0175752 0.0148526 32 2413 24 6.65987e+06 253560 554710. 1919.41 0.69 0.0567828 0.0488772 2085 24 1875 3396 224295 57122 3.42505 3.42505 -126.544 -3.42505 0 0 701300. 2426.64 0.25 0.06 0.0164452 0.0146866 147 84 32 32 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.80 vpr 62.66 MiB 0.04 7344 -1 -1 1 0.02 -1 -1 33192 -1 -1 36 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64160 31 32 423 341 1 193 99 17 17 289 -1 unnamed_device 24.7 MiB 0.20 1019 62.7 MiB 0.11 0.00 2.9903 -99.5386 -2.9903 2.9903 0.76 0.00021876 0.000181147 0.0162773 0.013654 32 2263 23 6.65987e+06 456408 554710. 1919.41 0.90 0.0817697 0.0739349 2002 19 1507 2346 160685 37597 2.73977 2.73977 -112.898 -2.73977 0 0 701300. 2426.64 0.27 0.05 0.0145342 0.0130499 145 88 29 29 93 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 6.32 vpr 63.78 MiB 0.03 7236 -1 -1 1 0.02 -1 -1 33676 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65312 32 32 439 351 1 194 89 17 17 289 -1 unnamed_device 25.4 MiB 0.51 843 63.8 MiB 0.08 0.00 3.15069 -114.691 -3.15069 3.15069 0.70 0.000205637 0.000168281 0.0169744 0.0140744 56 2170 41 6.95648e+06 361892 973134. 3367.25 2.91 0.115019 0.0939847 1815 22 1857 2846 247508 56423 3.98496 3.98496 -146.996 -3.98496 0 0 1.19926e+06 4149.71 0.49 0.08 0.0171908 0.0155171 87 80 32 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 7.26 vpr 63.43 MiB 0.02 7280 -1 -1 1 0.02 -1 -1 33456 -1 -1 14 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64956 30 32 412 333 1 179 76 17 17 289 -1 unnamed_device 24.9 MiB 2.05 728 63.4 MiB 0.07 0.00 3.3213 -106.792 -3.3213 3.3213 0.71 0.000178882 0.000143886 0.015714 0.0129156 48 2185 50 6.95648e+06 202660 865456. 2994.66 2.56 0.0934644 0.0793327 1904 30 2148 3215 495271 161598 4.43731 4.43731 -140.475 -4.43731 0 0 1.05005e+06 3633.38 0.42 0.13 0.0241139 0.0219283 76 78 30 30 89 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 6.75 vpr 63.36 MiB 0.03 7304 -1 -1 1 0.01 -1 -1 33384 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64880 32 32 388 310 1 179 83 17 17 289 -1 unnamed_device 24.9 MiB 0.85 709 63.4 MiB 0.07 0.00 3.00349 -104.021 -3.00349 3.00349 0.78 0.000174882 0.000140838 0.016005 0.0132643 44 2696 47 6.95648e+06 275038 787024. 2723.27 3.36 0.0896536 0.0767138 1766 23 1641 2341 182804 41490 4.10356 4.10356 -136.41 -4.10356 0 0 997811. 3452.63 0.32 0.05 0.0152013 0.0136264 77 50 54 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 6.05 vpr 63.40 MiB 0.02 7220 -1 -1 1 0.01 -1 -1 33512 -1 -1 16 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64920 29 32 347 271 1 176 77 17 17 289 -1 unnamed_device 24.8 MiB 0.34 732 63.4 MiB 0.07 0.00 3.3745 -105.971 -3.3745 3.3745 0.97 0.000167968 0.000136892 0.0142574 0.0119022 38 2744 46 6.95648e+06 231611 678818. 2348.85 2.92 0.0810958 0.0694773 1944 22 1812 2666 224883 47596 3.91122 3.91122 -136.951 -3.91122 0 0 902133. 3121.57 0.27 0.06 0.0142017 0.012747 76 25 87 29 29 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.03 vpr 63.82 MiB 0.02 7116 -1 -1 1 0.02 -1 -1 33300 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65348 32 32 377 289 1 187 77 17 17 289 -1 unnamed_device 25.3 MiB 0.84 732 63.8 MiB 0.05 0.00 3.04139 -110.608 -3.04139 3.04139 0.71 0.000178166 0.00014343 0.0132688 0.0109344 58 1986 48 6.95648e+06 188184 997811. 3452.63 2.54 0.0858558 0.0740062 1682 22 1929 3229 241387 56656 4.04606 4.04606 -140.593 -4.04606 0 0 1.25153e+06 4330.55 0.43 0.17 0.0209068 0.0193688 78 31 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 4.99 vpr 63.81 MiB 0.05 7196 -1 -1 1 0.01 -1 -1 33388 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65344 32 32 403 317 1 191 93 17 17 289 -1 unnamed_device 25.2 MiB 0.62 850 63.8 MiB 0.10 0.00 2.6211 -96.7283 -2.6211 2.6211 0.69 0.000189255 0.000149481 0.0169447 0.0136665 40 2417 22 6.95648e+06 419795 706193. 2443.58 1.86 0.0804447 0.0685471 2050 20 1584 2271 221238 47060 3.18892 3.18892 -125.506 -3.18892 0 0 926341. 3205.33 0.28 0.05 0.0141403 0.0126522 88 61 63 32 63 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 9.85 vpr 63.05 MiB 0.03 6972 -1 -1 1 0.01 -1 -1 33684 -1 -1 15 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64568 27 32 275 232 1 129 74 17 17 289 -1 unnamed_device 24.5 MiB 4.26 423 63.1 MiB 0.04 0.00 2.5173 -77.7816 -2.5173 2.5173 0.69 0.000136613 0.000109845 0.00953622 0.00783645 38 1581 36 6.95648e+06 217135 678818. 2348.85 3.16 0.0581174 0.0493302 1136 24 1136 1711 129287 32061 2.97567 2.97567 -99.9158 -2.97567 0 0 902133. 3121.57 0.27 0.04 0.0111673 0.00993295 55 26 54 27 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.90 vpr 63.59 MiB 0.06 7180 -1 -1 1 0.01 -1 -1 33272 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65116 31 32 319 244 1 178 80 17 17 289 -1 unnamed_device 24.9 MiB 0.52 792 63.6 MiB 0.06 0.00 2.5203 -87.596 -2.5203 2.5203 0.69 0.000173668 0.00014371 0.0118399 0.00992773 40 2577 30 6.95648e+06 246087 706193. 2443.58 2.88 0.0790735 0.0676184 2011 19 1404 2022 172207 40343 3.33157 3.33157 -123.689 -3.33157 0 0 926341. 3205.33 0.26 0.04 0.011167 0.00993645 77 -1 115 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 13.19 vpr 63.27 MiB 0.03 7212 -1 -1 1 0.01 -1 -1 33144 -1 -1 11 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64792 31 32 340 294 1 143 74 17 17 289 -1 unnamed_device 24.7 MiB 1.62 506 63.3 MiB 0.04 0.00 2.60155 -82.7482 -2.60155 2.60155 0.70 0.000170284 0.000139053 0.0109366 0.00908556 40 2311 49 6.95648e+06 159232 706193. 2443.58 9.00 0.134191 0.113669 1735 53 1623 2510 516052 245219 3.74767 3.74767 -123.394 -3.74767 0 0 926341. 3205.33 0.28 0.14 0.0227544 0.0196431 57 81 0 0 84 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.70 vpr 63.07 MiB 0.06 6952 -1 -1 1 0.01 -1 -1 33476 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64584 32 32 315 257 1 156 74 17 17 289 -1 unnamed_device 24.7 MiB 1.09 892 63.1 MiB 0.04 0.00 2.43785 -101.957 -2.43785 2.43785 0.78 0.000148963 0.000120277 0.00957946 0.00797156 36 2465 48 6.95648e+06 144757 648988. 2245.63 3.13 0.0810042 0.0705494 2080 23 1673 2375 293632 53966 3.13882 3.13882 -134.86 -3.13882 0 0 828058. 2865.25 0.26 0.06 0.0120583 0.0107427 62 31 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 5.78 vpr 63.39 MiB 0.02 7040 -1 -1 1 0.01 -1 -1 33232 -1 -1 12 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64908 30 32 328 276 1 148 74 17 17 289 -1 unnamed_device 24.9 MiB 1.58 777 63.4 MiB 0.06 0.00 2.6163 -98.2679 -2.6163 2.6163 0.70 0.000151581 0.000122009 0.0132573 0.0110812 36 1850 24 6.95648e+06 173708 648988. 2245.63 1.94 0.067369 0.0579252 1639 20 1291 1703 150382 30717 3.21717 3.21717 -124.926 -3.21717 0 0 828058. 2865.25 0.26 0.04 0.0108803 0.00971672 60 58 30 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 11.69 vpr 63.43 MiB 0.02 7008 -1 -1 1 0.02 -1 -1 33284 -1 -1 12 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64948 32 32 332 281 1 150 76 17 17 289 -1 unnamed_device 25.0 MiB 0.96 566 63.4 MiB 0.06 0.00 2.4781 -86.4861 -2.4781 2.4781 0.69 0.000154007 0.000123941 0.0137161 0.0113213 50 1626 22 6.95648e+06 173708 902133. 3121.57 8.31 0.117476 0.0993768 1368 23 1152 1630 117473 29220 3.07297 3.07297 -113.373 -3.07297 0 0 1.08113e+06 3740.92 0.33 0.04 0.0114344 0.0101402 60 57 25 25 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 6.50 vpr 63.31 MiB 0.02 7320 -1 -1 1 0.01 -1 -1 33320 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64832 32 32 387 306 1 180 85 17 17 289 -1 unnamed_device 24.9 MiB 1.32 683 63.3 MiB 0.07 0.00 2.7086 -96.7324 -2.7086 2.7086 0.79 0.000176184 0.000141683 0.0138576 0.0114831 48 2120 30 6.95648e+06 303989 865456. 2994.66 2.25 0.0786721 0.067552 1704 25 1874 2968 303675 67013 3.34552 3.34552 -121.164 -3.34552 0 0 1.05005e+06 3633.38 0.35 0.06 0.0146674 0.0130407 79 55 64 32 57 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 6.51 vpr 63.71 MiB 0.03 7304 -1 -1 1 0.01 -1 -1 33288 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65244 32 32 408 320 1 194 88 17 17 289 -1 unnamed_device 25.1 MiB 1.30 830 63.7 MiB 0.17 0.00 3.16669 -115.802 -3.16669 3.16669 0.86 0.000215817 0.000178202 0.0243763 0.021316 46 2521 30 6.95648e+06 347416 828058. 2865.25 2.37 0.0915345 0.0793581 1839 22 2095 2904 204549 46302 4.08706 4.08706 -146.665 -4.08706 0 0 1.01997e+06 3529.29 0.32 0.06 0.0151774 0.0136099 87 60 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 6.73 vpr 63.32 MiB 0.02 7028 -1 -1 1 0.01 -1 -1 33348 -1 -1 13 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64836 29 32 276 232 1 141 74 17 17 289 -1 unnamed_device 24.8 MiB 1.21 559 63.3 MiB 0.05 0.00 2.64555 -80.2656 -2.64555 2.64555 0.71 0.000145223 0.000119045 0.0109747 0.00910796 36 2426 34 6.95648e+06 188184 648988. 2245.63 3.06 0.0638678 0.0544395 1664 21 1093 1639 157564 33790 3.39377 3.39377 -112.163 -3.39377 0 0 828058. 2865.25 0.26 0.04 0.0131352 0.0119384 58 21 58 29 24 24 - fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 7.36 vpr 63.65 MiB 0.02 7140 -1 -1 1 0.02 -1 -1 33620 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65176 32 32 402 316 1 185 77 17 17 289 -1 unnamed_device 25.1 MiB 1.88 810 63.6 MiB 0.07 0.00 2.6493 -99.3854 -2.6493 2.6493 0.71 0.000184501 0.000149982 0.0160517 0.0133454 40 2753 32 6.95648e+06 188184 706193. 2443.58 2.86 0.0919258 0.0793211 2276 23 1972 3137 325840 69584 3.57887 3.57887 -139.615 -3.57887 0 0 926341. 3205.33 0.27 0.07 0.0155353 0.0138843 77 60 64 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 6.30 vpr 63.38 MiB 0.02 7132 -1 -1 1 0.02 -1 -1 33356 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64904 32 32 384 304 1 179 85 17 17 289 -1 unnamed_device 24.9 MiB 1.38 732 63.4 MiB 0.06 0.00 2.56315 -94.4902 -2.56315 2.56315 0.72 0.000174559 0.000140249 0.0145707 0.012111 40 1927 38 6.95648e+06 303989 706193. 2443.58 2.35 0.0874785 0.0743522 1522 36 1786 2736 285558 114960 3.40042 3.40042 -129.693 -3.40042 0 0 926341. 3205.33 0.29 0.08 0.0190645 0.0167563 79 54 64 32 56 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 5.64 vpr 63.18 MiB 0.02 7120 -1 -1 1 0.02 -1 -1 33352 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64696 32 32 340 285 1 156 84 17 17 289 -1 unnamed_device 24.7 MiB 1.00 591 63.2 MiB 0.11 0.00 2.16806 -79.2071 -2.16806 2.16806 0.96 0.000156865 0.000126051 0.037987 0.0357793 46 1658 49 6.95648e+06 289514 828058. 2865.25 1.86 0.106399 0.094856 1187 21 1092 1535 106995 26102 2.33483 2.33483 -94.2923 -2.33483 0 0 1.01997e+06 3529.29 0.32 0.04 0.0120203 0.0107297 67 62 29 29 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.03 vpr 62.94 MiB 0.02 6864 -1 -1 1 0.01 -1 -1 33124 -1 -1 10 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64448 30 32 229 211 1 118 72 17 17 289 -1 unnamed_device 24.4 MiB 0.38 451 62.9 MiB 0.03 0.00 1.84156 -65.5789 -1.84156 1.84156 0.69 0.00011389 9.0105e-05 0.00746383 0.00609934 34 1610 34 6.95648e+06 144757 618332. 2139.56 1.32 0.0490237 0.0412481 1172 20 817 1029 112407 24643 2.49263 2.49263 -88.6854 -2.49263 0 0 787024. 2723.27 0.36 0.03 0.00781487 0.00693799 45 29 24 24 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 5.93 vpr 63.13 MiB 0.02 7200 -1 -1 1 0.01 -1 -1 33444 -1 -1 11 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64644 31 32 337 282 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 1.68 634 63.1 MiB 0.05 0.00 3.35745 -111.941 -3.35745 3.35745 0.71 0.000153475 0.00012338 0.0121014 0.00996441 46 1632 22 6.95648e+06 159232 828058. 2865.25 1.79 0.0667705 0.0577278 1375 20 907 1217 82208 18676 3.47912 3.47912 -123.453 -3.47912 0 0 1.01997e+06 3529.29 0.32 0.03 0.0109224 0.00976574 61 55 31 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 4.96 vpr 63.66 MiB 0.03 7316 -1 -1 1 0.01 -1 -1 33192 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65188 32 32 367 284 1 184 85 17 17 289 -1 unnamed_device 25.2 MiB 0.39 963 63.7 MiB 0.08 0.00 3.10369 -115.362 -3.10369 3.10369 0.72 0.000174598 0.00014153 0.0146823 0.0122583 44 2444 44 6.95648e+06 303989 787024. 2723.27 1.80 0.0865862 0.0748815 2120 24 1940 2569 221133 43625 4.06946 4.06946 -151.93 -4.06946 0 0 997811. 3452.63 0.31 0.06 0.0152991 0.0136716 81 31 91 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 6.50 vpr 63.75 MiB 0.02 7384 -1 -1 1 0.01 -1 -1 33504 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65280 32 32 461 376 1 188 91 17 17 289 -1 unnamed_device 25.2 MiB 1.08 764 63.8 MiB 0.07 0.00 3.03469 -102.48 -3.03469 3.03469 0.77 0.000200355 0.000160911 0.0168222 0.0138871 52 2866 49 6.95648e+06 390843 926341. 3205.33 2.25 0.0976406 0.0830942 1818 23 1657 2541 212889 51327 3.80796 3.80796 -131.579 -3.80796 0 0 1.14541e+06 3963.36 0.53 0.06 0.0164964 0.0146815 85 108 0 0 125 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 4.69 vpr 62.79 MiB 0.03 6792 -1 -1 1 0.02 -1 -1 33348 -1 -1 13 26 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64296 26 32 205 193 1 108 71 17 17 289 -1 unnamed_device 24.5 MiB 0.91 372 62.8 MiB 0.03 0.00 1.82136 -57.9006 -1.82136 1.82136 0.74 0.000100524 7.9767e-05 0.00804911 0.00658067 34 1348 31 6.95648e+06 188184 618332. 2139.56 1.44 0.0481258 0.0415123 973 19 644 771 65522 16424 2.45343 2.45343 -76.911 -2.45343 0 0 787024. 2723.27 0.29 0.03 0.0082467 0.00745323 44 21 26 26 22 22 - fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 5.69 vpr 63.18 MiB 0.04 7208 -1 -1 1 0.02 -1 -1 33508 -1 -1 12 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64692 32 32 334 252 1 180 76 17 17 289 -1 unnamed_device 24.6 MiB 0.78 698 63.2 MiB 0.05 0.00 3.3371 -111.264 -3.3371 3.3371 0.71 0.000174206 0.000142508 0.0115563 0.00966862 50 2389 44 6.95648e+06 173708 902133. 3121.57 2.20 0.0835422 0.0725775 1697 21 1669 2484 188154 49043 4.11641 4.11641 -139.324 -4.11641 0 0 1.08113e+06 3740.92 0.35 0.05 0.0134142 0.0120417 74 -1 122 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.28 vpr 62.69 MiB 0.02 6904 -1 -1 1 0.01 -1 -1 32872 -1 -1 8 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64196 32 32 200 183 1 119 72 17 17 289 -1 unnamed_device 24.4 MiB 0.39 425 62.7 MiB 0.08 0.00 1.77736 -64.3716 -1.77736 1.77736 0.79 0.000104794 8.3143e-05 0.0245416 0.0230833 42 1441 38 6.95648e+06 115805 744469. 2576.02 1.44 0.0630205 0.0561102 1050 19 696 877 84293 20601 2.17168 2.17168 -81.5575 -2.17168 0 0 949917. 3286.91 0.29 0.03 0.00722111 0.00645951 44 -1 53 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 5.59 vpr 63.59 MiB 0.05 7164 -1 -1 1 0.02 -1 -1 33620 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65120 32 32 377 289 1 186 88 17 17 289 -1 unnamed_device 25.1 MiB 0.59 770 63.6 MiB 0.06 0.00 3.17289 -113.253 -3.17289 3.17289 0.86 0.000176745 0.000143735 0.0138008 0.0114655 56 2207 41 6.95648e+06 347416 973134. 3367.25 2.06 0.0851702 0.0736747 1768 23 1830 2679 247365 57611 4.05046 4.05046 -143.69 -4.05046 0 0 1.19926e+06 4149.71 0.46 0.06 0.0143715 0.0128929 83 21 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 4.96 vpr 63.55 MiB 0.02 7132 -1 -1 1 0.02 -1 -1 33136 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65076 32 32 338 254 1 188 91 17 17 289 -1 unnamed_device 25.1 MiB 0.35 806 63.6 MiB 0.07 0.00 2.79776 -96.7746 -2.79776 2.79776 0.74 0.000171633 0.00013934 0.013584 0.01127 48 2067 28 6.95648e+06 390843 865456. 2994.66 1.86 0.0747296 0.0643009 1729 20 1468 2118 165844 38106 3.17623 3.17623 -122.967 -3.17623 0 0 1.05005e+06 3633.38 0.45 0.10 0.0273748 0.0260584 86 -1 124 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.85 vpr 63.58 MiB 0.04 7316 -1 -1 1 0.01 -1 -1 33696 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65104 32 32 408 320 1 189 92 17 17 289 -1 unnamed_device 24.9 MiB 0.52 822 63.6 MiB 0.08 0.00 3.16669 -114.238 -3.16669 3.16669 0.66 0.00018189 0.00014732 0.0152421 0.0128063 40 3121 39 6.95648e+06 405319 706193. 2443.58 4.81 0.085983 0.0733175 2445 24 2207 3485 422236 94712 4.38096 4.38096 -160.95 -4.38096 0 0 926341. 3205.33 0.29 0.09 0.0167491 0.0149795 87 54 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.67 vpr 63.07 MiB 0.03 6908 -1 -1 1 0.01 -1 -1 33220 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64588 32 32 295 247 1 145 74 17 17 289 -1 unnamed_device 24.6 MiB 0.85 599 63.1 MiB 0.05 0.00 2.5044 -85.2138 -2.5044 2.5044 0.81 0.000155247 0.000126645 0.0119766 0.00987194 38 2065 45 6.95648e+06 144757 678818. 2348.85 2.11 0.0649668 0.0554083 1540 22 1131 1717 149984 32668 3.10912 3.10912 -114.477 -3.10912 0 0 902133. 3121.57 0.26 0.04 0.0107198 0.00957121 57 31 54 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 12.95 vpr 62.96 MiB 0.02 7032 -1 -1 1 0.01 -1 -1 33348 -1 -1 11 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64476 30 32 299 247 1 148 73 17 17 289 -1 unnamed_device 24.3 MiB 8.38 589 63.0 MiB 0.05 0.00 2.7384 -91.714 -2.7384 2.7384 0.70 0.000159411 0.000131068 0.0114907 0.00959813 48 1590 31 6.95648e+06 159232 865456. 2994.66 2.18 0.094233 0.0850521 1365 18 1292 1860 157240 38244 3.16042 3.16042 -112.941 -3.16042 0 0 1.05005e+06 3633.38 0.32 0.04 0.0103143 0.00929283 60 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 12.87 vpr 63.38 MiB 0.03 7220 -1 -1 1 0.01 -1 -1 33284 -1 -1 13 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64900 28 32 283 237 1 144 73 17 17 289 -1 unnamed_device 24.7 MiB 0.55 528 63.4 MiB 0.04 0.00 2.5423 -82.7379 -2.5423 2.5423 0.69 0.000136361 0.000109797 0.00999355 0.00823254 42 1990 48 6.95648e+06 188184 744469. 2576.02 9.64 0.115029 0.0981186 1527 21 1303 1910 150292 37393 2.97097 2.97097 -110.028 -2.97097 0 0 949917. 3286.91 0.29 0.05 0.0135005 0.0122314 61 27 56 28 28 28 - fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.97 vpr 63.16 MiB 0.03 6888 -1 -1 1 0.00 -1 -1 33216 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64680 32 32 284 226 1 160 74 17 17 289 -1 unnamed_device 24.5 MiB 0.20 668 63.2 MiB 0.05 0.00 2.43165 -94.6515 -2.43165 2.43165 0.80 0.000142028 0.000114349 0.011324 0.00926414 40 2240 45 6.95648e+06 144757 706193. 2443.58 3.11 0.0722524 0.0620366 2000 26 1780 2594 354301 73896 3.36402 3.36402 -132.678 -3.36402 0 0 926341. 3205.33 0.27 0.07 0.0126856 0.0113142 64 -1 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.19 vpr 63.43 MiB 0.03 7024 -1 -1 1 0.01 -1 -1 33208 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64948 31 32 305 251 1 156 84 17 17 289 -1 unnamed_device 25.0 MiB 0.23 711 63.4 MiB 0.06 0.00 2.5943 -93.9751 -2.5943 2.5943 0.74 0.000160805 0.000132446 0.011286 0.00924955 40 2093 32 6.95648e+06 303989 706193. 2443.58 2.33 0.0761389 0.0658293 1745 27 1500 2315 288339 95415 3.09017 3.09017 -120.481 -3.09017 0 0 926341. 3205.33 0.30 0.07 0.013165 0.0117199 68 26 61 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 4.86 vpr 62.82 MiB 0.02 7012 -1 -1 1 0.00 -1 -1 33252 -1 -1 18 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64332 29 32 316 268 1 148 79 17 17 289 -1 unnamed_device 24.4 MiB 0.71 565 62.8 MiB 0.06 0.00 2.00176 -69.5151 -2.00176 2.00176 0.79 0.000159514 0.000130864 0.0124087 0.0104373 40 1405 21 6.95648e+06 260562 706193. 2443.58 1.62 0.0621541 0.0525476 1305 18 1052 1434 106357 26876 2.71693 2.71693 -95.2263 -2.71693 0 0 926341. 3205.33 0.32 0.04 0.0107632 0.00966727 64 55 29 29 57 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 5.97 vpr 63.93 MiB 0.07 7288 -1 -1 1 0.01 -1 -1 33604 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65460 32 32 424 311 1 219 92 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1153 63.9 MiB 0.10 0.00 3.20405 -120.007 -3.20405 3.20405 0.72 0.000198199 0.000161992 0.0177971 0.0147602 44 3260 35 6.95648e+06 405319 787024. 2723.27 2.60 0.101993 0.0890909 2658 23 2345 3660 319897 61163 4.04126 4.04126 -151.729 -4.04126 0 0 997811. 3452.63 0.33 0.07 0.0181401 0.0163415 100 26 128 32 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 5.93 vpr 63.76 MiB 0.08 7380 -1 -1 1 0.01 -1 -1 33432 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65288 32 32 404 318 1 190 92 17 17 289 -1 unnamed_device 25.1 MiB 0.94 757 63.8 MiB 0.09 0.00 2.6866 -98.8635 -2.6866 2.6866 0.71 0.000198876 0.000159934 0.0176432 0.0144679 40 2433 27 6.95648e+06 405319 706193. 2443.58 2.41 0.0928302 0.0806797 1998 22 1992 2791 246431 55921 3.59417 3.59417 -132.638 -3.59417 0 0 926341. 3205.33 0.28 0.09 0.0197028 0.0179705 88 62 62 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 5.86 vpr 63.07 MiB 0.02 6992 -1 -1 1 0.01 -1 -1 33544 -1 -1 15 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64588 31 32 355 304 1 150 78 17 17 289 -1 unnamed_device 24.6 MiB 1.14 607 63.1 MiB 0.06 0.00 2.76796 -92.9767 -2.76796 2.76796 0.67 0.000158712 0.00012755 0.0130737 0.0107424 38 2223 23 6.95648e+06 217135 678818. 2348.85 2.45 0.0654404 0.0554873 1684 19 1168 1688 146973 32064 3.52727 3.52727 -119.006 -3.52727 0 0 902133. 3121.57 0.28 0.05 0.0120814 0.0108934 62 77 0 0 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 7.70 vpr 63.55 MiB 0.05 7428 -1 -1 1 0.01 -1 -1 33496 -1 -1 14 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65080 31 32 393 311 1 186 77 17 17 289 -1 unnamed_device 25.1 MiB 0.77 912 63.6 MiB 0.05 0.00 2.76476 -97.6558 -2.76476 2.76476 0.69 0.000177528 0.000143335 0.0137047 0.0113835 36 3188 37 6.95648e+06 202660 648988. 2245.63 4.52 0.088213 0.0764347 2317 27 2171 3275 364354 93718 3.28142 3.28142 -132.407 -3.28142 0 0 828058. 2865.25 0.25 0.08 0.0160354 0.0140868 79 59 60 30 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 18.06 vpr 63.63 MiB 0.04 7512 -1 -1 1 0.01 -1 -1 33464 -1 -1 14 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65160 31 32 457 373 1 185 77 17 17 289 -1 unnamed_device 25.3 MiB 2.00 807 63.6 MiB 0.05 0.00 3.85289 -123.326 -3.85289 3.85289 0.74 0.000193482 0.000155798 0.0122392 0.0101488 40 3035 44 6.95648e+06 202660 706193. 2443.58 13.27 0.171184 0.146884 2250 25 1536 2231 227864 51264 5.19271 5.19271 -164.501 -5.19271 0 0 926341. 3205.33 0.29 0.06 0.0173556 0.0153525 78 111 0 0 124 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 6.63 vpr 63.59 MiB 0.02 7392 -1 -1 1 0.01 -1 -1 33348 -1 -1 13 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65112 31 32 415 335 1 180 76 17 17 289 -1 unnamed_device 25.1 MiB 1.60 729 63.6 MiB 0.05 0.00 3.62239 -109.493 -3.62239 3.62239 0.72 0.000184812 0.000147933 0.0122248 0.0101117 40 2709 48 6.95648e+06 188184 706193. 2443.58 2.52 0.087872 0.0754694 2127 29 1933 3063 328786 79253 4.28441 4.28441 -149.386 -4.28441 0 0 926341. 3205.33 0.28 0.08 0.0185487 0.0164316 75 86 31 31 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 15.67 vpr 63.64 MiB 0.03 7392 -1 -1 1 0.02 -1 -1 33292 -1 -1 25 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65168 31 32 393 311 1 185 88 17 17 289 -1 unnamed_device 25.1 MiB 0.77 883 63.6 MiB 0.08 0.00 2.91206 -101.503 -2.91206 2.91206 0.71 0.000185905 0.000150861 0.0166559 0.0137871 40 2464 29 6.95648e+06 361892 706193. 2443.58 12.27 0.15716 0.134636 2279 24 1964 3022 313061 60887 3.49277 3.49277 -131.352 -3.49277 0 0 926341. 3205.33 0.28 0.07 0.0155182 0.0138491 85 58 60 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.12 vpr 63.64 MiB 0.02 7200 -1 -1 1 0.01 -1 -1 33800 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65168 32 32 408 320 1 190 91 17 17 289 -1 unnamed_device 25.0 MiB 0.56 802 63.6 MiB 0.12 0.00 3.14469 -113.97 -3.14469 3.14469 0.83 0.000180378 0.000146098 0.0176444 0.0147639 44 2824 41 6.95648e+06 390843 787024. 2723.27 2.92 0.0893296 0.0768091 2025 23 2101 3387 292527 65303 4.39516 4.39516 -156.831 -4.39516 0 0 997811. 3452.63 0.32 0.07 0.0162219 0.0146022 87 42 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 6.04 vpr 64.00 MiB 0.04 7524 -1 -1 1 0.02 -1 -1 33536 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65536 32 32 497 381 1 222 95 17 17 289 -1 unnamed_device 25.8 MiB 1.00 1062 64.0 MiB 0.10 0.00 3.32935 -120.885 -3.32935 3.32935 0.89 0.000218525 0.00017733 0.019356 0.0160553 40 3305 28 6.95648e+06 448746 706193. 2443.58 2.16 0.0984538 0.0842336 2829 26 2495 3820 430112 86146 4.58762 4.58762 -162.705 -4.58762 0 0 926341. 3205.33 0.29 0.09 0.0206521 0.0183016 104 91 62 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.10 vpr 63.23 MiB 0.04 6984 -1 -1 1 0.01 -1 -1 33324 -1 -1 11 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64748 31 32 307 252 1 152 74 17 17 289 -1 unnamed_device 24.8 MiB 0.78 631 63.2 MiB 0.05 0.00 2.84796 -97.2642 -2.84796 2.84796 0.71 0.000148249 0.000119082 0.0120401 0.00990078 40 1771 22 6.95648e+06 159232 706193. 2443.58 1.88 0.0808879 0.0719392 1541 23 1329 1873 153417 34288 3.34547 3.34547 -123.222 -3.34547 0 0 926341. 3205.33 0.36 0.05 0.0145887 0.0132884 62 24 62 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 6.52 vpr 63.71 MiB 0.06 7380 -1 -1 1 0.02 -1 -1 33592 -1 -1 27 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65240 31 32 397 313 1 188 90 17 17 289 -1 unnamed_device 25.1 MiB 0.58 830 63.7 MiB 0.07 0.00 3.4075 -113.366 -3.4075 3.4075 0.82 0.000193648 0.000156549 0.0149412 0.0123747 46 2340 30 6.95648e+06 390843 828058. 2865.25 3.17 0.0875204 0.075703 1834 22 1868 2962 226873 50213 3.66862 3.66862 -139.179 -3.66862 0 0 1.01997e+06 3529.29 0.36 0.06 0.0155549 0.0138295 86 59 62 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 5.78 vpr 63.77 MiB 0.05 7244 -1 -1 1 0.01 -1 -1 33376 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65304 32 32 398 314 1 188 90 17 17 289 -1 unnamed_device 25.2 MiB 0.95 937 63.8 MiB 0.07 0.00 2.79476 -99.7659 -2.79476 2.79476 0.80 0.000185992 0.000150716 0.0134326 0.0111965 44 2831 27 6.95648e+06 376368 787024. 2723.27 2.05 0.0820467 0.0708156 2223 21 1672 2657 239186 47598 3.00067 3.00067 -119.517 -3.00067 0 0 997811. 3452.63 0.32 0.06 0.0147529 0.0132049 85 54 62 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.00 vpr 63.66 MiB 0.03 7208 -1 -1 1 0.01 -1 -1 33072 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65188 32 32 346 258 1 187 77 17 17 289 -1 unnamed_device 25.2 MiB 0.78 811 63.7 MiB 0.07 0.00 3.04139 -111.528 -3.04139 3.04139 0.80 0.000180285 0.000147031 0.0189628 0.0170277 48 2993 44 6.95648e+06 188184 865456. 2994.66 4.53 0.0915737 0.0801774 2184 28 2344 3942 606583 180044 3.95196 3.95196 -149 -3.95196 0 0 1.05005e+06 3633.38 0.34 0.13 0.0168858 0.0150483 78 -1 128 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.03 vpr 63.76 MiB 0.06 7204 -1 -1 1 0.01 -1 -1 33720 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65292 32 32 425 344 1 182 87 17 17 289 -1 unnamed_device 25.1 MiB 1.98 805 63.8 MiB 0.08 0.00 2.5503 -93.7951 -2.5503 2.5503 1.07 0.000194033 0.000157088 0.0154239 0.0127892 50 2219 24 6.95648e+06 332941 902133. 3121.57 1.83 0.0944828 0.0831345 1902 24 1472 2364 205485 44957 3.63517 3.63517 -130.986 -3.63517 0 0 1.08113e+06 3740.92 0.37 0.06 0.0170118 0.0151767 81 81 25 25 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 6.47 vpr 63.57 MiB 0.02 7164 -1 -1 1 0.01 -1 -1 33312 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65096 32 32 396 312 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.88 732 63.6 MiB 0.10 0.00 2.6023 -95.0903 -2.6023 2.6023 0.72 0.000205212 0.000167818 0.0152831 0.0128203 50 2012 27 6.95648e+06 405319 902133. 3121.57 2.78 0.113776 0.0945474 1690 29 1589 2368 230324 72271 3.15897 3.15897 -119.047 -3.15897 0 0 1.08113e+06 3740.92 0.35 0.15 0.018796 0.0167169 85 58 64 32 60 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 7.06 vpr 63.70 MiB 0.02 7136 -1 -1 1 0.01 -1 -1 33440 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65224 32 32 406 319 1 192 93 17 17 289 -1 unnamed_device 25.1 MiB 0.47 856 63.7 MiB 0.07 0.00 2.6646 -97.3051 -2.6646 2.6646 0.87 0.000183625 0.0001461 0.0135962 0.011226 48 2463 40 6.95648e+06 419795 865456. 2994.66 3.86 0.0963126 0.0820408 2076 28 1937 2824 315840 77611 3.28622 3.28622 -126.034 -3.28622 0 0 1.05005e+06 3633.38 0.37 0.08 0.0174483 0.0153051 89 61 63 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.77 vpr 63.85 MiB 0.05 7228 -1 -1 1 0.01 -1 -1 33708 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65380 32 32 377 289 1 186 92 17 17 289 -1 unnamed_device 25.3 MiB 0.52 854 63.8 MiB 0.08 0.00 3.16669 -115.012 -3.16669 3.16669 0.70 0.000181063 0.000148506 0.0146505 0.012201 40 2917 40 6.95648e+06 405319 706193. 2443.58 3.59 0.0851367 0.0736119 2379 25 2202 3424 440990 88339 4.26066 4.26066 -157.217 -4.26066 0 0 926341. 3205.33 0.32 0.09 0.0156408 0.0139608 85 21 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.93 vpr 63.73 MiB 0.06 7260 -1 -1 1 0.01 -1 -1 33784 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65264 32 32 408 320 1 189 94 17 17 289 -1 unnamed_device 25.1 MiB 0.88 770 63.7 MiB 0.09 0.00 3.13369 -112.971 -3.13369 3.13369 0.72 0.000194772 0.000157686 0.0167891 0.0138117 40 2664 41 6.95648e+06 434271 706193. 2443.58 3.24 0.0882244 0.0755092 2205 24 2141 3087 329575 75762 4.90736 4.90736 -159.639 -4.90736 0 0 926341. 3205.33 0.29 0.08 0.0156559 0.013937 88 50 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 10.56 vpr 63.77 MiB 0.02 7404 -1 -1 1 0.01 -1 -1 33676 -1 -1 25 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65296 31 32 451 369 1 185 88 17 17 289 -1 unnamed_device 25.4 MiB 1.28 826 63.8 MiB 0.09 0.00 3.56395 -113.523 -3.56395 3.56395 0.72 0.000216002 0.00017828 0.018834 0.0155665 38 3188 37 6.95648e+06 361892 678818. 2348.85 6.29 0.0951634 0.0802509 2292 23 1772 2794 252074 54310 4.27006 4.27006 -142.577 -4.27006 0 0 902133. 3121.57 0.44 0.07 0.0178915 0.0159514 84 110 0 0 122 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 8.90 vpr 63.75 MiB 0.07 7304 -1 -1 1 0.01 -1 -1 33536 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65284 32 32 433 347 1 192 77 17 17 289 -1 unnamed_device 25.3 MiB 0.90 853 63.8 MiB 0.07 0.00 3.08604 -108.458 -3.08604 3.08604 0.69 0.000191606 0.000154952 0.0181339 0.0149403 40 3439 50 6.95648e+06 188184 706193. 2443.58 5.47 0.100889 0.0863158 2508 25 2048 3429 349222 74488 4.35936 4.35936 -152.138 -4.35936 0 0 926341. 3205.33 0.27 0.08 0.016256 0.0143901 80 86 32 32 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 6.50 vpr 63.08 MiB 0.02 6984 -1 -1 1 0.01 -1 -1 33252 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64592 32 32 313 256 1 160 87 17 17 289 -1 unnamed_device 24.7 MiB 0.17 596 63.1 MiB 0.16 0.00 2.6614 -93.4453 -2.6614 2.6614 1.23 0.000202841 0.000167349 0.056206 0.0342069 58 1588 32 6.95648e+06 332941 997811. 3452.63 3.04 0.115157 0.0853404 1126 21 1310 2050 163462 40211 2.70972 2.70972 -104.56 -2.70972 0 0 1.25153e+06 4330.55 0.44 0.04 0.0111973 0.0100354 71 20 63 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.88 vpr 63.30 MiB 0.04 7084 -1 -1 1 0.02 -1 -1 33192 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64816 32 32 371 315 1 158 74 17 17 289 -1 unnamed_device 24.8 MiB 1.13 652 63.3 MiB 0.12 0.00 2.5393 -93.3561 -2.5393 2.5393 1.40 0.000164756 0.000131783 0.0214416 0.0175636 38 2548 43 6.95648e+06 144757 678818. 2348.85 4.54 0.0906407 0.0767479 1747 22 1411 2098 179282 38485 3.22812 3.22812 -127.453 -3.22812 0 0 902133. 3121.57 0.26 0.06 0.0145707 0.0130612 63 91 0 0 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 7.63 vpr 63.75 MiB 0.04 7328 -1 -1 1 0.02 -1 -1 33612 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65280 32 32 470 352 1 223 94 17 17 289 -1 unnamed_device 25.7 MiB 0.71 1281 63.8 MiB 0.09 0.00 3.77644 -141.14 -3.77644 3.77644 0.92 0.000232294 0.000192069 0.0174832 0.0144722 44 3444 36 6.95648e+06 434271 787024. 2723.27 3.96 0.127726 0.111905 2715 22 2604 4081 333289 65252 4.64011 4.64011 -177.853 -4.64011 0 0 997811. 3452.63 0.31 0.07 0.017649 0.0158375 103 53 96 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 5.80 vpr 63.40 MiB 0.03 7344 -1 -1 1 0.02 -1 -1 33076 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64920 32 32 369 285 1 186 89 17 17 289 -1 unnamed_device 25.0 MiB 1.02 808 63.4 MiB 0.12 0.00 2.6445 -98.4935 -2.6445 2.6445 0.85 0.000176813 0.000142572 0.0150645 0.0126873 40 2151 38 6.95648e+06 361892 706193. 2443.58 1.89 0.0927281 0.0808206 1757 22 1577 1989 166720 37512 3.17817 3.17817 -122.164 -3.17817 0 0 926341. 3205.33 0.42 0.05 0.0166021 0.0136876 84 31 92 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.69 vpr 63.23 MiB 0.03 7128 -1 -1 1 0.01 -1 -1 33128 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64748 30 32 299 247 1 152 81 17 17 289 -1 unnamed_device 24.8 MiB 0.29 621 63.2 MiB 0.06 0.00 2.6426 -90.9728 -2.6426 2.6426 0.69 0.000160525 0.000131958 0.0115309 0.0095672 38 2073 27 6.95648e+06 275038 678818. 2348.85 2.82 0.0641552 0.0550175 1571 21 1339 1913 156367 32893 3.09297 3.09297 -114.515 -3.09297 0 0 902133. 3121.57 0.27 0.04 0.0111148 0.00995185 65 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 7.38 vpr 63.73 MiB 0.04 7380 -1 -1 1 0.02 -1 -1 33972 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65264 32 32 532 414 1 225 95 17 17 289 -1 unnamed_device 25.5 MiB 1.90 1153 63.7 MiB 0.11 0.00 3.77644 -139.471 -3.77644 3.77644 0.71 0.000255887 0.000209646 0.0205114 0.01707 46 3057 25 6.95648e+06 448746 828058. 2865.25 2.81 0.122038 0.107423 2575 26 2845 4359 360939 70001 4.97061 4.97061 -176.952 -4.97061 0 0 1.01997e+06 3529.29 0.32 0.09 0.0214543 0.0190689 103 109 32 32 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 7.06 vpr 63.64 MiB 0.02 7164 -1 -1 1 0.01 -1 -1 33552 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65168 32 32 377 289 1 187 92 17 17 289 -1 unnamed_device 25.1 MiB 0.99 795 63.6 MiB 0.08 0.00 3.10069 -111.216 -3.10069 3.10069 0.75 0.000178324 0.000143834 0.0145741 0.0119697 40 2667 37 6.95648e+06 405319 706193. 2443.58 3.39 0.0959123 0.0838856 2287 22 2087 2939 371021 101763 4.21676 4.21676 -159.741 -4.21676 0 0 926341. 3205.33 0.28 0.09 0.0147778 0.0132093 86 31 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 7.92 vpr 63.28 MiB 0.04 7040 -1 -1 1 0.01 -1 -1 33504 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64800 32 32 284 226 1 158 88 17 17 289 -1 unnamed_device 24.9 MiB 0.26 648 63.3 MiB 0.06 0.00 2.45795 -93.393 -2.45795 2.45795 0.70 0.000150924 0.000117327 0.0113998 0.00941604 38 2605 43 6.95648e+06 347416 678818. 2348.85 5.20 0.0930158 0.0675863 1757 22 1485 2345 199911 43573 3.45672 3.45672 -130.003 -3.45672 0 0 902133. 3121.57 0.27 0.05 0.0113655 0.0101759 70 -1 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 6.20 vpr 63.56 MiB 0.04 7516 -1 -1 1 0.01 -1 -1 33608 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65088 32 32 439 321 1 225 95 17 17 289 -1 unnamed_device 25.3 MiB 0.46 1009 63.6 MiB 0.12 0.00 3.69944 -129.642 -3.69944 3.69944 0.84 0.000226865 0.000188438 0.0194909 0.0162157 56 2611 28 6.95648e+06 448746 973134. 3367.25 2.61 0.0993506 0.0858131 2190 21 2238 3598 346114 74828 5.27611 5.27611 -173.06 -5.27611 0 0 1.19926e+06 4149.71 0.44 0.07 0.015872 0.0142983 105 26 128 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 6.15 vpr 63.09 MiB 0.03 6936 -1 -1 1 0.01 -1 -1 33244 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64600 32 32 284 226 1 156 74 17 17 289 -1 unnamed_device 24.5 MiB 0.33 870 63.1 MiB 0.04 0.00 2.43165 -102.566 -2.43165 2.43165 0.74 0.000170922 0.000143003 0.00962431 0.00804682 36 2442 39 6.95648e+06 144757 648988. 2245.63 3.25 0.0699246 0.0600364 2098 21 1590 2223 261378 53765 3.25632 3.25632 -137.772 -3.25632 0 0 828058. 2865.25 0.30 0.06 0.0110854 0.0099761 62 -1 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 5.91 vpr 63.21 MiB 0.03 7232 -1 -1 1 0.01 -1 -1 33376 -1 -1 21 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64728 30 32 299 247 1 151 83 17 17 289 -1 unnamed_device 24.8 MiB 0.68 538 63.2 MiB 0.05 0.00 2.6756 -90.6284 -2.6756 2.6756 0.74 0.000146224 0.000117973 0.00971074 0.00808576 46 1893 50 6.95648e+06 303989 828058. 2865.25 2.46 0.0736927 0.0635767 1539 20 1167 1676 159234 41660 3.25927 3.25927 -117.611 -3.25927 0 0 1.01997e+06 3529.29 0.31 0.04 0.0107462 0.00964395 65 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 5.90 vpr 63.54 MiB 0.02 7388 -1 -1 1 0.01 -1 -1 33376 -1 -1 20 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65060 29 32 397 323 1 174 81 17 17 289 -1 unnamed_device 25.0 MiB 1.25 788 63.5 MiB 0.06 0.00 2.81496 -92.3106 -2.81496 2.81496 0.80 0.000198304 0.000163318 0.014259 0.0117867 44 2487 28 6.95648e+06 289514 787024. 2723.27 2.12 0.0849243 0.0735899 1926 21 1542 2451 182859 39783 3.33447 3.33447 -118.739 -3.33447 0 0 997811. 3452.63 0.34 0.05 0.0156737 0.0141594 77 81 29 29 85 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 5.47 vpr 63.88 MiB 0.08 7088 -1 -1 1 0.01 -1 -1 33896 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65416 32 32 408 320 1 186 77 17 17 289 -1 unnamed_device 25.2 MiB 0.88 701 63.9 MiB 0.04 0.00 3.03039 -111.495 -3.03039 3.03039 0.83 0.000179478 0.000144952 0.00961843 0.00803024 40 2280 38 6.95648e+06 188184 706193. 2443.58 2.02 0.0789211 0.0676382 1889 24 2159 2861 248147 59299 4.08956 4.08956 -155.52 -4.08956 0 0 926341. 3205.33 0.27 0.06 0.0166725 0.0149439 77 53 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 7.94 vpr 63.60 MiB 0.02 7196 -1 -1 1 0.01 -1 -1 33344 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65128 32 32 408 320 1 190 89 17 17 289 -1 unnamed_device 25.0 MiB 1.59 835 63.6 MiB 0.06 0.00 3.08469 -112.887 -3.08469 3.08469 0.78 0.000205869 0.000169178 0.0122825 0.0100326 40 2889 49 6.95648e+06 361892 706193. 2443.58 3.77 0.121834 0.10917 2458 24 2144 3358 362083 75830 4.22156 4.22156 -161.581 -4.22156 0 0 926341. 3205.33 0.28 0.08 0.0157769 0.0140955 85 55 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 7.18 vpr 63.40 MiB 0.02 7064 -1 -1 1 0.01 -1 -1 33392 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64924 32 32 346 288 1 155 88 17 17 289 -1 unnamed_device 24.8 MiB 1.03 672 63.4 MiB 0.07 0.00 2.51295 -93.9853 -2.51295 2.51295 0.70 0.000161247 0.000129746 0.0138905 0.0116373 38 2469 37 6.95648e+06 347416 678818. 2348.85 3.65 0.074311 0.0635955 1679 20 1455 2198 172827 37278 3.38942 3.38942 -126.948 -3.38942 0 0 902133. 3121.57 0.27 0.05 0.0116738 0.0104522 69 55 32 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 5.30 vpr 63.05 MiB 0.02 7100 -1 -1 1 0.02 -1 -1 33268 -1 -1 10 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64568 31 32 355 304 1 147 73 17 17 289 -1 unnamed_device 24.5 MiB 1.40 868 63.1 MiB 0.06 0.00 2.80096 -100.274 -2.80096 2.80096 0.71 0.000156147 0.000124871 0.0136081 0.0111417 38 2179 22 6.95648e+06 144757 678818. 2348.85 1.57 0.0670869 0.0575925 2016 22 1348 2123 207552 40244 3.35777 3.35777 -127.956 -3.35777 0 0 902133. 3121.57 0.26 0.05 0.0116125 0.0102849 59 82 0 0 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 11.36 vpr 63.51 MiB 0.03 7320 -1 -1 1 0.02 -1 -1 33492 -1 -1 22 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65032 30 32 377 300 1 178 84 17 17 289 -1 unnamed_device 25.1 MiB 0.81 899 63.5 MiB 0.07 0.00 2.6273 -95.6705 -2.6273 2.6273 0.71 0.000182747 0.000150587 0.0153198 0.0126152 40 2278 24 6.95648e+06 318465 706193. 2443.58 7.97 0.129715 0.110795 2050 21 1483 2151 204835 43452 3.56007 3.56007 -124.996 -3.56007 0 0 926341. 3205.33 0.28 0.05 0.0141774 0.0127207 79 52 60 30 57 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 6.45 vpr 63.47 MiB 0.04 7220 -1 -1 1 0.01 -1 -1 33500 -1 -1 16 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64996 28 32 337 265 1 172 76 17 17 289 -1 unnamed_device 24.9 MiB 0.83 658 63.5 MiB 0.04 0.00 3.68925 -106.836 -3.68925 3.68925 0.74 0.000155918 0.000125509 0.00957653 0.00792865 44 2781 46 6.95648e+06 231611 787024. 2723.27 3.08 0.0735888 0.0632983 1763 21 1410 2091 167913 37474 4.05347 4.05347 -134.112 -4.05347 0 0 997811. 3452.63 0.30 0.04 0.0120498 0.0107866 74 20 84 28 28 28 - fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 4.99 vpr 63.37 MiB 0.04 7184 -1 -1 1 0.01 -1 -1 33512 -1 -1 12 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64892 30 32 328 276 1 151 74 17 17 289 -1 unnamed_device 24.8 MiB 0.73 819 63.4 MiB 0.08 0.00 2.5905 -98.1979 -2.5905 2.5905 0.78 0.000150532 0.000120995 0.0203834 0.0183036 38 2083 25 6.95648e+06 173708 678818. 2348.85 1.64 0.0710518 0.0619369 1758 23 1509 2077 184527 35844 3.05687 3.05687 -122.876 -3.05687 0 0 902133. 3121.57 0.27 0.05 0.0123668 0.0109753 61 58 30 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.26 vpr 63.42 MiB 0.04 7180 -1 -1 1 0.01 -1 -1 33256 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64944 32 32 362 309 1 152 74 17 17 289 -1 unnamed_device 24.9 MiB 1.21 539 63.4 MiB 0.05 0.00 2.5753 -87.581 -2.5753 2.5753 0.76 0.000173199 0.000140965 0.0140469 0.0117363 46 1888 39 6.95648e+06 144757 828058. 2865.25 2.46 0.0870398 0.0758021 1327 23 1154 1844 131746 32586 2.90207 2.90207 -108.019 -2.90207 0 0 1.01997e+06 3529.29 0.32 0.04 0.0133839 0.0118662 60 88 0 0 91 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 5.31 vpr 63.46 MiB 0.03 7364 -1 -1 1 0.01 -1 -1 33436 -1 -1 25 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64988 31 32 337 253 1 188 88 17 17 289 -1 unnamed_device 25.1 MiB 0.14 928 63.5 MiB 0.10 0.01 3.37335 -119.041 -3.37335 3.37335 0.70 0.000176774 0.000144335 0.0163642 0.0136391 44 2950 35 6.95648e+06 361892 787024. 2723.27 2.64 0.0838858 0.0728792 2230 19 1793 2748 260832 52130 3.94102 3.94102 -145.102 -3.94102 0 0 997811. 3452.63 0.31 0.06 0.0123517 0.0111633 86 -1 124 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.52 vpr 63.86 MiB 0.02 7196 -1 -1 1 0.02 -1 -1 33524 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65388 32 32 408 320 1 189 91 17 17 289 -1 unnamed_device 25.2 MiB 1.13 853 63.9 MiB 0.09 0.00 3.13369 -113.859 -3.13369 3.13369 0.73 0.000228725 0.000190478 0.0169492 0.0140114 40 3039 30 6.95648e+06 390843 706193. 2443.58 3.87 0.0844301 0.0721222 2524 25 2062 3429 362187 73917 4.54726 4.54726 -161.33 -4.54726 0 0 926341. 3205.33 0.29 0.08 0.0179351 0.0154857 86 57 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 7.10 vpr 63.73 MiB 0.06 7200 -1 -1 1 0.02 -1 -1 33240 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65260 32 32 408 320 1 187 90 17 17 289 -1 unnamed_device 25.1 MiB 1.48 854 63.7 MiB 0.07 0.00 3.16489 -113.685 -3.16489 3.16489 0.72 0.000228468 0.000191698 0.0130831 0.0110446 46 2892 29 6.95648e+06 376368 828058. 2865.25 2.91 0.0861368 0.0748462 2060 26 2276 3592 297502 61446 4.18566 4.18566 -150.093 -4.18566 0 0 1.01997e+06 3529.29 0.30 0.07 0.0160733 0.0142993 85 62 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 6.61 vpr 63.49 MiB 0.02 7136 -1 -1 1 0.01 -1 -1 33456 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65016 32 32 400 316 1 188 91 17 17 289 -1 unnamed_device 24.9 MiB 0.99 763 63.5 MiB 0.10 0.00 3.11104 -105.385 -3.11104 3.11104 0.82 0.000194491 0.000157684 0.0279995 0.0260649 50 2470 35 6.95648e+06 390843 902133. 3121.57 2.58 0.0975813 0.0860887 1803 20 1623 2634 258415 54553 3.91596 3.91596 -135.33 -3.91596 0 0 1.08113e+06 3740.92 0.32 0.11 0.0143404 0.0128547 86 62 60 30 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 4.85 vpr 63.21 MiB 0.02 7088 -1 -1 1 0.01 -1 -1 33504 -1 -1 12 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64728 30 32 299 247 1 150 74 17 17 289 -1 unnamed_device 24.6 MiB 0.78 592 63.2 MiB 0.05 0.00 2.6646 -91.8564 -2.6646 2.6646 0.67 0.000144817 0.000116638 0.0108878 0.0089717 40 2158 33 6.95648e+06 173708 706193. 2443.58 1.68 0.0619724 0.0529304 1610 18 1183 1759 166775 37159 3.37357 3.37357 -115.904 -3.37357 0 0 926341. 3205.33 0.27 0.04 0.00977477 0.00879541 62 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 5.56 vpr 63.50 MiB 0.02 7380 -1 -1 1 0.02 -1 -1 33476 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65024 30 32 386 306 1 183 77 17 17 289 -1 unnamed_device 25.0 MiB 0.71 722 63.5 MiB 0.06 0.00 3.23334 -109.096 -3.23334 3.23334 0.73 0.000176895 0.000142542 0.0150053 0.0124288 40 2386 38 6.95648e+06 217135 706193. 2443.58 2.15 0.0854408 0.0739207 2025 32 2775 3874 467293 141290 3.95326 3.95326 -146.149 -3.95326 0 0 926341. 3205.33 0.29 0.11 0.0189556 0.0168162 78 58 60 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.67 vpr 63.95 MiB 0.02 7424 -1 -1 1 0.01 -1 -1 33816 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65488 32 32 470 382 1 190 95 17 17 289 -1 unnamed_device 25.4 MiB 1.45 815 64.0 MiB 0.08 0.00 3.16669 -114.149 -3.16669 3.16669 0.69 0.000198479 0.000159021 0.0164975 0.0136171 40 3043 35 6.95648e+06 448746 706193. 2443.58 4.72 0.093999 0.0805799 2183 24 2126 3380 320541 71203 4.95616 4.95616 -166.109 -4.95616 0 0 926341. 3205.33 0.27 0.07 0.0157117 0.0138828 88 106 0 0 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 5.71 vpr 63.77 MiB 0.03 7328 -1 -1 1 0.01 -1 -1 33636 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65296 31 32 427 343 1 189 85 17 17 289 -1 unnamed_device 25.4 MiB 0.64 1020 63.8 MiB 0.05 0.00 3.5394 -119.145 -3.5394 3.5394 0.69 0.000185845 0.000150387 0.010309 0.00868726 44 2795 33 6.95648e+06 318465 787024. 2723.27 2.55 0.0797289 0.0686732 2263 20 1760 2651 211394 41752 4.06806 4.06806 -149.99 -4.06806 0 0 997811. 3452.63 0.30 0.05 0.0145049 0.0130036 84 79 31 31 93 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 6.52 vpr 63.61 MiB 0.03 7232 -1 -1 1 0.02 -1 -1 33452 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65132 30 32 407 331 1 173 80 17 17 289 -1 unnamed_device 25.1 MiB 1.58 835 63.6 MiB 0.06 0.00 2.73356 -91.2312 -2.73356 2.73356 0.74 0.000179566 0.000144321 0.0159229 0.0131395 46 2061 25 6.95648e+06 260562 828058. 2865.25 2.09 0.0809875 0.069311 1606 22 1541 2327 148317 34468 2.80027 2.80027 -108.94 -2.80027 0 0 1.01997e+06 3529.29 0.31 0.04 0.0142295 0.0126646 75 83 26 26 90 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 18.38 vpr 63.70 MiB 0.02 7320 -1 -1 1 0.02 -1 -1 33320 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65228 32 32 408 320 1 193 77 17 17 289 -1 unnamed_device 25.2 MiB 1.53 934 63.7 MiB 0.06 0.00 3.03659 -114.639 -3.03659 3.03659 0.74 0.000513536 0.000474821 0.0143406 0.0113647 40 3072 50 6.95648e+06 188184 706193. 2443.58 14.40 0.172371 0.144161 2668 26 2422 3967 490638 94843 4.42346 4.42346 -160.367 -4.42346 0 0 926341. 3205.33 0.28 0.10 0.0176086 0.01573 81 58 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 5.61 vpr 63.72 MiB 0.02 7276 -1 -1 1 0.02 -1 -1 33216 -1 -1 22 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65252 29 32 391 320 1 171 83 17 17 289 -1 unnamed_device 25.2 MiB 0.94 639 63.7 MiB 0.05 0.00 2.6676 -85.3802 -2.6676 2.6676 0.71 0.000171242 0.000138412 0.0125729 0.0103831 46 1840 49 6.95648e+06 318465 828058. 2865.25 2.17 0.0812278 0.0693325 1370 52 2691 3971 281314 62700 3.14027 3.14027 -103.45 -3.14027 0 0 1.01997e+06 3529.29 0.37 0.08 0.0239409 0.0208025 77 81 26 26 85 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 5.50 vpr 63.07 MiB 0.03 6936 -1 -1 1 0.01 -1 -1 33560 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64588 32 32 284 226 1 154 74 17 17 289 -1 unnamed_device 24.5 MiB 0.86 626 63.1 MiB 0.07 0.00 2.43785 -92.7396 -2.43785 2.43785 0.83 0.000146058 0.000117477 0.0117971 0.00981713 42 2245 40 6.95648e+06 144757 744469. 2576.02 1.88 0.0677928 0.0583315 1668 25 1385 2104 216637 46811 3.61802 3.61802 -128.092 -3.61802 0 0 949917. 3286.91 0.48 0.05 0.0117493 0.0104586 61 -1 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.68 vpr 63.65 MiB 0.02 7316 -1 -1 1 0.01 -1 -1 33384 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65180 32 32 408 320 1 187 88 17 17 289 -1 unnamed_device 25.0 MiB 3.04 891 63.7 MiB 0.08 0.00 3.12089 -113.956 -3.12089 3.12089 0.71 0.000186787 0.000151167 0.0157536 0.0130635 46 2766 45 6.95648e+06 347416 828058. 2865.25 2.81 0.117147 0.103642 2195 27 2107 3250 451892 161288 3.97716 3.97716 -149.038 -3.97716 0 0 1.01997e+06 3529.29 0.31 0.11 0.0181433 0.0160957 84 62 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 15.18 vpr 63.57 MiB 0.02 7344 -1 -1 1 0.01 -1 -1 33400 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65100 32 32 408 320 1 193 77 17 17 289 -1 unnamed_device 25.0 MiB 0.63 729 63.6 MiB 0.05 0.00 3.05859 -113.137 -3.05859 3.05859 0.69 0.000193985 0.000157216 0.0128073 0.0106485 50 2377 47 6.95648e+06 188184 902133. 3121.57 12.03 0.179802 0.152865 1885 27 2420 3323 367618 90816 4.04126 4.04126 -151.713 -4.04126 0 0 1.08113e+06 3740.92 0.33 0.08 0.0171485 0.015178 81 62 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 6.29 vpr 63.23 MiB 0.02 7080 -1 -1 1 0.01 -1 -1 33432 -1 -1 11 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64752 32 32 316 268 1 152 75 17 17 289 -1 unnamed_device 24.7 MiB 1.34 677 63.2 MiB 0.04 0.00 2.82405 -93.8223 -2.82405 2.82405 0.69 0.000148646 0.000119235 0.00974347 0.00805453 38 2060 47 6.95648e+06 159232 678818. 2348.85 2.61 0.0688867 0.0589209 1658 19 1146 1629 175474 39537 3.12603 3.12603 -118.65 -3.12603 0 0 902133. 3121.57 0.27 0.05 0.0105642 0.00948531 60 47 32 32 54 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.38 vpr 62.93 MiB 0.03 7192 -1 -1 1 0.01 -1 -1 33240 -1 -1 11 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64440 31 32 277 222 1 154 74 17 17 289 -1 unnamed_device 24.4 MiB 0.26 785 62.9 MiB 0.04 0.00 2.6756 -100.066 -2.6756 2.6756 0.69 0.000138908 0.000112524 0.00791613 0.00664433 38 1967 22 6.95648e+06 159232 678818. 2348.85 1.72 0.0534163 0.0458962 1766 21 1401 1984 166693 33432 3.13397 3.13397 -126.497 -3.13397 0 0 902133. 3121.57 0.27 0.04 0.0109187 0.00976719 63 -1 93 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 6.04 vpr 63.87 MiB 0.06 7128 -1 -1 1 0.02 -1 -1 33312 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65404 32 32 382 304 1 180 83 17 17 289 -1 unnamed_device 25.3 MiB 1.12 691 63.9 MiB 0.06 0.00 3.07684 -103.659 -3.07684 3.07684 0.68 0.000176924 0.000143697 0.0131509 0.0108954 40 2677 34 6.95648e+06 275038 706193. 2443.58 2.12 0.0764346 0.0651424 2035 25 1842 2446 203118 46694 4.09736 4.09736 -144.635 -4.09736 0 0 926341. 3205.33 0.38 0.11 0.0176043 0.015892 78 56 60 32 58 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.52 vpr 63.57 MiB 0.04 7184 -1 -1 1 0.02 -1 -1 33464 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65092 32 32 407 331 1 182 83 17 17 289 -1 unnamed_device 25.0 MiB 1.81 868 63.6 MiB 0.05 0.00 3.4357 -111.884 -3.4357 3.4357 0.77 0.000181912 0.000147408 0.0124246 0.0102856 38 2823 35 6.95648e+06 275038 678818. 2348.85 4.07 0.0817205 0.0701716 2216 22 1876 2887 249082 50693 3.81597 3.81597 -142.28 -3.81597 0 0 902133. 3121.57 0.38 0.06 0.0148455 0.013212 79 81 28 28 88 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 5.62 vpr 63.54 MiB 0.03 7444 -1 -1 1 0.02 -1 -1 33228 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65060 32 32 400 286 1 218 91 17 17 289 -1 unnamed_device 25.3 MiB 0.37 1049 63.5 MiB 0.09 0.00 3.73059 -131.688 -3.73059 3.73059 0.72 0.000197538 0.000162285 0.0150032 0.0126799 48 3003 33 6.95648e+06 390843 865456. 2994.66 2.70 0.0963981 0.0846049 2483 25 2533 3748 323037 70274 4.64296 4.64296 -170.296 -4.64296 0 0 1.05005e+06 3633.38 0.32 0.07 0.0178318 0.01589 100 -1 156 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.69 vpr 63.63 MiB 0.04 7152 -1 -1 1 0.02 -1 -1 33668 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65160 30 32 374 298 1 176 80 17 17 289 -1 unnamed_device 25.2 MiB 0.87 690 63.6 MiB 0.07 0.00 2.84176 -94.0849 -2.84176 2.84176 0.72 0.000175129 0.000142486 0.0168704 0.0143498 44 2207 40 6.95648e+06 260562 787024. 2723.27 2.02 0.081232 0.0700753 1592 22 1593 2363 169135 39146 3.42377 3.42377 -116.914 -3.42377 0 0 997811. 3452.63 0.30 0.05 0.013778 0.0122975 77 47 60 30 56 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 4.69 vpr 63.09 MiB 0.03 7128 -1 -1 1 0.01 -1 -1 33364 -1 -1 14 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64600 27 32 275 232 1 137 73 17 17 289 -1 unnamed_device 24.5 MiB 0.63 486 63.1 MiB 0.04 0.00 2.90721 -82.2514 -2.90721 2.90721 0.71 0.000134958 0.000107891 0.00998183 0.00822321 56 1097 27 6.95648e+06 202660 973134. 3367.25 1.60 0.0521416 0.0442906 940 22 892 1147 77164 19997 3.04467 3.04467 -98.0453 -3.04467 0 0 1.19926e+06 4149.71 0.35 0.03 0.0098659 0.00877444 57 26 54 27 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 19.67 vpr 63.98 MiB 0.04 7544 -1 -1 1 0.02 -1 -1 33996 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65516 32 32 494 379 1 222 93 17 17 289 -1 unnamed_device 25.7 MiB 0.79 1055 64.0 MiB 0.09 0.00 3.62995 -120.701 -3.62995 3.62995 0.71 0.000219311 0.000178102 0.0196284 0.0165257 52 3477 37 6.95648e+06 419795 926341. 3205.33 16.20 0.201492 0.174649 2276 21 2064 3544 256518 61421 4.20582 4.20582 -151.167 -4.20582 0 0 1.14541e+06 3963.36 0.34 0.07 0.0172434 0.0154525 102 85 62 31 95 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 8.87 vpr 63.75 MiB 0.03 7224 -1 -1 1 0.01 -1 -1 33860 -1 -1 14 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65284 31 32 457 373 1 187 77 17 17 289 -1 unnamed_device 25.3 MiB 3.65 696 63.8 MiB 0.07 0.00 3.95134 -125.037 -3.95134 3.95134 0.77 0.000194378 0.000157166 0.0272831 0.0241764 48 2538 45 6.95648e+06 202660 865456. 2994.66 2.56 0.125687 0.107965 1794 23 1554 2312 214354 49606 5.05941 5.05941 -157.14 -5.05941 0 0 1.05005e+06 3633.38 0.34 0.06 0.0163958 0.0146199 79 105 0 0 124 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 9.32 vpr 63.21 MiB 0.04 7152 -1 -1 1 0.02 -1 -1 33076 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64732 32 32 356 305 1 147 74 17 17 289 -1 unnamed_device 24.7 MiB 2.63 881 63.2 MiB 0.06 0.00 2.5155 -93.9902 -2.5155 2.5155 0.86 0.000176148 0.000145209 0.0138224 0.0114382 36 2348 50 6.95648e+06 144757 648988. 2245.63 4.08 0.103564 0.0874414 1884 23 1203 1763 174068 33797 3.32777 3.32777 -124.977 -3.32777 0 0 828058. 2865.25 0.26 0.05 0.0131081 0.0116542 58 86 0 0 89 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 6.50 vpr 63.59 MiB 0.04 7292 -1 -1 1 0.00 -1 -1 33168 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65116 32 32 365 283 1 188 85 17 17 289 -1 unnamed_device 25.1 MiB 0.41 875 63.6 MiB 0.06 0.00 3.4405 -113.897 -3.4405 3.4405 0.85 0.000172357 0.000138887 0.0132137 0.010909 50 2858 46 6.95648e+06 303989 902133. 3121.57 3.17 0.0836176 0.0717724 2015 28 1859 2774 372645 133016 4.09762 4.09762 -143.034 -4.09762 0 0 1.08113e+06 3740.92 0.32 0.09 0.0171604 0.0153109 82 31 90 30 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 7.54 vpr 64.00 MiB 0.04 7376 -1 -1 1 0.02 -1 -1 33604 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65532 31 32 445 338 1 210 86 17 17 289 -1 unnamed_device 25.4 MiB 0.88 938 64.0 MiB 0.08 0.00 3.4515 -117.677 -3.4515 3.4515 0.71 0.00019887 0.00016097 0.0153949 0.0128204 38 3546 47 6.95648e+06 332941 678818. 2348.85 3.90 0.106789 0.0926172 2503 25 2192 3020 276792 57972 4.33721 4.33721 -154.506 -4.33721 0 0 902133. 3121.57 0.31 0.07 0.0189213 0.016886 95 50 87 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.94 vpr 63.71 MiB 0.02 7432 -1 -1 1 0.01 -1 -1 33812 -1 -1 20 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65244 30 32 376 300 1 178 82 17 17 289 -1 unnamed_device 25.2 MiB 1.21 791 63.7 MiB 0.08 0.00 2.80386 -92.7241 -2.80386 2.80386 0.73 0.000172758 0.000139901 0.0159334 0.013274 40 2655 30 6.95648e+06 289514 706193. 2443.58 2.18 0.0779372 0.0667166 2216 22 1719 2807 263363 57942 3.80077 3.80077 -123.25 -3.80077 0 0 926341. 3205.33 0.28 0.06 0.0139979 0.0125173 78 50 58 30 58 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 5.36 vpr 63.95 MiB 0.03 7384 -1 -1 1 0.01 -1 -1 33336 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65480 32 32 408 320 1 193 98 17 17 289 -1 unnamed_device 25.5 MiB 0.42 935 63.9 MiB 0.07 0.00 3.16669 -114.651 -3.16669 3.16669 0.68 0.000187661 0.000150376 0.0131297 0.0108808 50 2353 29 6.95648e+06 492173 902133. 3121.57 2.39 0.0860203 0.0742657 2012 22 1834 2551 210943 50242 3.85966 3.85966 -141.179 -3.85966 0 0 1.08113e+06 3740.92 0.43 0.06 0.0145863 0.0130623 91 61 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 5.58 vpr 63.64 MiB 0.03 7328 -1 -1 1 0.02 -1 -1 33604 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65164 32 32 406 319 1 192 96 17 17 289 -1 unnamed_device 25.0 MiB 0.44 820 63.6 MiB 0.08 0.00 2.54115 -96.6256 -2.54115 2.54115 0.68 0.000187468 0.00015209 0.0150282 0.0123902 38 2468 25 6.95648e+06 463222 678818. 2348.85 2.53 0.0850529 0.0728029 1972 23 1737 2323 208086 43109 3.13582 3.13582 -123.248 -3.13582 0 0 902133. 3121.57 0.28 0.05 0.0153025 0.013631 91 61 63 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 7.49 vpr 63.36 MiB 0.04 7080 -1 -1 1 0.01 -1 -1 33252 -1 -1 13 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64876 29 32 291 242 1 136 74 17 17 289 -1 unnamed_device 24.7 MiB 3.78 597 63.4 MiB 0.04 0.00 2.4983 -85.208 -2.4983 2.4983 0.70 0.000139296 0.000111677 0.00930425 0.0077391 34 1619 28 6.95648e+06 188184 618332. 2139.56 1.10 0.0568613 0.0484394 1401 19 1078 1306 115115 25353 3.00387 3.00387 -110.752 -3.00387 0 0 787024. 2723.27 0.26 0.07 0.0111625 0.0100659 57 28 58 29 29 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.22 vpr 63.22 MiB 0.03 7032 -1 -1 1 0.01 -1 -1 33220 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64740 32 32 335 291 1 148 74 17 17 289 -1 unnamed_device 24.8 MiB 0.84 723 63.2 MiB 0.04 0.00 2.47995 -87.5251 -2.47995 2.47995 0.68 0.000148326 0.000118489 0.00963044 0.00796006 36 1833 44 6.95648e+06 144757 648988. 2245.63 2.02 0.0686507 0.0584107 1439 22 1280 1626 133021 28248 2.99962 2.99962 -111.479 -2.99962 0 0 828058. 2865.25 0.30 0.04 0.0124682 0.0111187 58 79 0 0 82 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 6.49 vpr 63.62 MiB 0.03 7328 -1 -1 1 0.02 -1 -1 33692 -1 -1 29 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65152 31 32 367 283 1 188 92 17 17 289 -1 unnamed_device 25.2 MiB 0.53 756 63.6 MiB 0.07 0.00 3.3995 -113.706 -3.3995 3.3995 0.72 0.000169465 0.000137081 0.0131035 0.0108204 44 2827 46 6.95648e+06 419795 787024. 2723.27 3.05 0.141792 0.129156 1733 22 1944 2748 330105 121673 4.05712 4.05712 -143.957 -4.05712 0 0 997811. 3452.63 0.30 0.08 0.0200037 0.0185352 88 29 93 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.24 vpr 63.27 MiB 0.02 7116 -1 -1 1 0.01 -1 -1 33400 -1 -1 14 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64788 29 32 301 258 1 144 75 17 17 289 -1 unnamed_device 24.7 MiB 1.03 714 63.3 MiB 0.05 0.00 2.76175 -88.1624 -2.76175 2.76175 0.76 0.000326356 0.000116063 0.0107169 0.00867463 36 1998 25 6.95648e+06 202660 648988. 2245.63 2.48 0.0763516 0.067228 1612 21 1154 1565 153615 38578 3.14502 3.14502 -112.213 -3.14502 0 0 828058. 2865.25 0.25 0.04 0.0107272 0.00958151 59 48 29 29 52 26 - fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 16.06 vpr 63.16 MiB 0.03 6904 -1 -1 1 0.00 -1 -1 33112 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64676 32 32 315 257 1 154 74 17 17 289 -1 unnamed_device 24.8 MiB 1.10 547 63.2 MiB 0.05 0.00 2.43165 -92.5769 -2.43165 2.43165 0.84 0.000164633 0.000134908 0.0123943 0.010186 48 2085 47 6.95648e+06 144757 865456. 2994.66 12.16 0.140885 0.118643 1537 22 1470 2068 219925 53473 3.14212 3.14212 -122.566 -3.14212 0 0 1.05005e+06 3633.38 0.38 0.05 0.0122291 0.0109308 61 31 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 5.60 vpr 63.42 MiB 0.02 7248 -1 -1 1 0.02 -1 -1 33480 -1 -1 24 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64940 31 32 389 309 1 181 87 17 17 289 -1 unnamed_device 24.9 MiB 0.89 669 63.4 MiB 0.05 0.00 2.90906 -96.8701 -2.90906 2.90906 0.69 0.00018241 0.000148224 0.0134967 0.011247 50 1570 34 6.95648e+06 347416 902133. 3121.57 2.31 0.100257 0.0823883 1210 27 1556 2057 183160 61070 3.16702 3.16702 -115.914 -3.16702 0 0 1.08113e+06 3740.92 0.33 0.06 0.0167039 0.0148197 82 60 58 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 6.58 vpr 63.07 MiB 0.02 7028 -1 -1 1 0.01 -1 -1 33184 -1 -1 11 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64588 31 32 310 264 1 143 74 17 17 289 -1 unnamed_device 24.7 MiB 2.05 571 63.1 MiB 0.05 0.00 2.63455 -81.8561 -2.63455 2.63455 0.67 0.000146228 0.00011685 0.0104589 0.00859654 46 1822 34 6.95648e+06 159232 828058. 2865.25 1.96 0.0710727 0.054259 1268 20 1122 1675 114609 28141 2.87667 2.87667 -102.801 -2.87667 0 0 1.01997e+06 3529.29 0.37 0.04 0.010921 0.00981142 57 49 31 31 53 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 13.36 vpr 63.76 MiB 0.05 7188 -1 -1 1 0.01 -1 -1 33292 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65292 32 32 384 308 1 176 83 17 17 289 -1 unnamed_device 25.2 MiB 1.44 729 63.8 MiB 0.06 0.00 2.5986 -88.4741 -2.5986 2.5986 0.68 0.000174854 0.000140612 0.0136412 0.0112312 40 2611 30 6.95648e+06 275038 706193. 2443.58 9.40 0.136655 0.117058 2168 23 1510 2286 249618 54330 3.37987 3.37987 -125.374 -3.37987 0 0 926341. 3205.33 0.33 0.06 0.0140072 0.0124736 76 56 52 26 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 11.08 vpr 63.92 MiB 0.06 7412 -1 -1 1 0.01 -1 -1 33432 -1 -1 26 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65452 31 32 424 341 1 187 89 17 17 289 -1 unnamed_device 25.5 MiB 0.68 842 63.9 MiB 0.09 0.00 2.87606 -100.488 -2.87606 2.87606 0.71 0.000193257 0.000155204 0.0168371 0.0139237 38 2509 24 6.95648e+06 376368 678818. 2348.85 7.90 0.144073 0.124 1966 21 1958 2651 251966 50748 3.47077 3.47077 -128.808 -3.47077 0 0 902133. 3121.57 0.27 0.06 0.0144499 0.0128657 86 88 31 31 92 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 5.58 vpr 63.56 MiB 0.02 7136 -1 -1 1 0.02 -1 -1 33332 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65084 32 32 334 280 1 154 74 17 17 289 -1 unnamed_device 25.0 MiB 0.81 691 63.6 MiB 0.04 0.00 2.4011 -86.7513 -2.4011 2.4011 0.72 0.000153214 0.000123522 0.0106769 0.00883801 38 2272 29 6.95648e+06 144757 678818. 2348.85 2.26 0.066027 0.0563889 1792 22 1280 1936 182004 37105 3.35652 3.35652 -120.412 -3.35652 0 0 902133. 3121.57 0.31 0.05 0.0114994 0.0102302 61 54 32 32 60 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 13.39 vpr 63.34 MiB 0.04 7112 -1 -1 1 0.00 -1 -1 33116 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64864 32 32 340 284 1 158 74 17 17 289 -1 unnamed_device 24.9 MiB 1.03 645 63.3 MiB 0.05 0.00 2.5503 -94.5334 -2.5503 2.5503 0.72 0.000159991 0.00012812 0.0107169 0.00885478 40 2323 26 6.95648e+06 144757 706193. 2443.58 9.76 0.116582 0.0995037 1979 25 1553 2426 245824 52328 3.53482 3.53482 -131.281 -3.53482 0 0 926341. 3205.33 0.27 0.06 0.0136226 0.0120818 63 60 32 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 5.64 vpr 63.56 MiB 0.02 7200 -1 -1 1 0.01 -1 -1 33728 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65084 32 32 408 320 1 190 93 17 17 289 -1 unnamed_device 24.9 MiB 1.06 749 63.6 MiB 0.09 0.00 3.08969 -111.784 -3.08969 3.08969 0.77 0.000189619 0.000154119 0.0169103 0.0142175 46 2356 32 6.95648e+06 419795 828058. 2865.25 1.94 0.088728 0.0766959 1902 20 1798 2606 204005 44163 4.11636 4.11636 -146.567 -4.11636 0 0 1.01997e+06 3529.29 0.34 0.05 0.0150333 0.0136355 88 49 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 12.23 vpr 63.65 MiB 0.04 7224 -1 -1 1 0.01 -1 -1 33532 -1 -1 19 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65180 29 32 371 297 1 175 80 17 17 289 -1 unnamed_device 25.1 MiB 1.18 709 63.7 MiB 0.09 0.00 2.7306 -92.2905 -2.7306 2.7306 0.74 0.000184403 0.000151344 0.0217798 0.0188295 36 2885 49 6.95648e+06 275038 648988. 2245.63 8.25 0.146489 0.126174 1978 22 1577 2250 211774 44803 3.72637 3.72637 -133.419 -3.72637 0 0 828058. 2865.25 0.25 0.06 0.0153351 0.0138938 77 54 56 29 58 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 6.03 vpr 63.71 MiB 0.04 7380 -1 -1 1 0.01 -1 -1 33360 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65240 32 32 470 382 1 192 93 17 17 289 -1 unnamed_device 25.2 MiB 1.34 850 63.7 MiB 0.10 0.00 3.18389 -115.896 -3.18389 3.18389 0.70 0.000206311 0.00016535 0.0188824 0.0154454 46 2443 24 6.95648e+06 419795 828058. 2865.25 2.06 0.107111 0.0797051 2033 25 2177 3373 264942 55236 4.12746 4.12746 -147.963 -4.12746 0 0 1.01997e+06 3529.29 0.35 0.07 0.0195645 0.0174023 89 117 0 0 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.09 vpr 62.92 MiB 0.03 6972 -1 -1 1 0.01 -1 -1 33168 -1 -1 11 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64428 31 32 261 214 1 144 74 17 17 289 -1 unnamed_device 24.4 MiB 1.56 645 62.9 MiB 0.05 0.00 2.4703 -83.4301 -2.4703 2.4703 0.72 0.000133999 0.000107738 0.0109601 0.00894282 40 1850 23 6.95648e+06 159232 706193. 2443.58 1.78 0.0580255 0.0496898 1675 24 1250 1844 170453 38353 3.23442 3.23442 -116.208 -3.23442 0 0 926341. 3205.33 0.55 0.04 0.0108864 0.00967276 58 -1 85 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.90 vpr 63.69 MiB 0.03 7400 -1 -1 1 0.01 -1 -1 33304 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65216 32 32 419 339 1 182 87 17 17 289 -1 unnamed_device 25.1 MiB 1.85 738 63.7 MiB 0.08 0.00 3.34034 -108.493 -3.34034 3.34034 0.86 0.00019922 0.000163749 0.0170359 0.0139732 40 2614 31 6.95648e+06 332941 706193. 2443.58 2.30 0.0862881 0.073909 2005 23 1894 2588 275858 63028 3.95516 3.95516 -143.511 -3.95516 0 0 926341. 3205.33 0.28 0.07 0.0156605 0.0138934 82 89 28 28 92 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.88 vpr 63.29 MiB 0.02 7228 -1 -1 1 0.01 -1 -1 33420 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64812 32 32 377 319 1 154 74 17 17 289 -1 unnamed_device 24.7 MiB 2.90 611 63.3 MiB 0.05 0.00 2.45985 -93.2039 -2.45985 2.45985 0.85 0.000165832 0.00013303 0.0119274 0.00984161 38 2087 48 6.95648e+06 144757 678818. 2348.85 3.36 0.0801816 0.0685993 1472 22 1422 1968 144513 32803 3.28612 3.28612 -130.687 -3.28612 0 0 902133. 3121.57 0.31 0.07 0.0254946 0.0239846 61 93 0 0 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 5.64 vpr 63.74 MiB 0.04 7340 -1 -1 1 0.01 -1 -1 33420 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65272 32 32 402 317 1 188 88 17 17 289 -1 unnamed_device 25.2 MiB 1.00 791 63.7 MiB 0.09 0.00 2.5393 -95.1102 -2.5393 2.5393 0.74 0.000197927 0.000161601 0.0167804 0.0138683 38 2891 39 6.95648e+06 347416 678818. 2348.85 2.05 0.0838581 0.072145 2058 22 1684 2485 207299 45897 3.36557 3.36557 -127.996 -3.36557 0 0 902133. 3121.57 0.27 0.06 0.015845 0.0141368 84 59 61 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.05 vpr 63.61 MiB 0.02 7392 -1 -1 1 0.01 -1 -1 33576 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65136 32 32 501 383 1 222 97 17 17 289 -1 unnamed_device 25.4 MiB 1.11 989 63.6 MiB 0.07 0.00 3.90174 -135.285 -3.90174 3.90174 0.70 0.00021694 0.000175192 0.0126135 0.0106692 40 3394 27 6.95648e+06 477698 706193. 2443.58 4.21 0.0919737 0.0793491 2828 31 3326 4922 592186 141400 5.68321 5.68321 -197.559 -5.68321 0 0 926341. 3205.33 0.31 0.13 0.0228704 0.0202739 104 81 64 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 4.57 vpr 62.92 MiB 0.03 6880 -1 -1 1 0.01 -1 -1 33104 -1 -1 10 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64428 30 32 249 232 1 117 72 17 17 289 -1 unnamed_device 24.4 MiB 0.56 389 62.9 MiB 0.04 0.00 1.83056 -63.4753 -1.83056 1.83056 0.81 0.000119031 9.4031e-05 0.00963486 0.00782737 40 1272 45 6.95648e+06 144757 706193. 2443.58 1.42 0.0563935 0.0473923 995 20 711 888 86248 21217 2.07658 2.07658 -81.5359 -2.07658 0 0 926341. 3205.33 0.27 0.03 0.0081729 0.00721923 45 51 0 0 53 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.02 vpr 63.23 MiB 0.02 7088 -1 -1 1 0.01 -1 -1 33496 -1 -1 12 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64744 30 32 299 247 1 141 74 17 17 289 -1 unnamed_device 24.6 MiB 1.95 626 63.2 MiB 0.05 0.00 2.68956 -91.1311 -2.68956 2.68956 0.74 0.000157822 0.00012985 0.0128245 0.0106801 36 1801 26 6.95648e+06 173708 648988. 2245.63 1.66 0.0630503 0.0534813 1442 22 1115 1609 147191 30920 3.22627 3.22627 -117.92 -3.22627 0 0 828058. 2865.25 0.25 0.04 0.0151847 0.0139668 58 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.20 vpr 63.12 MiB 0.02 6972 -1 -1 1 0.01 -1 -1 33284 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64632 32 32 315 257 1 161 74 17 17 289 -1 unnamed_device 24.7 MiB 0.36 623 63.1 MiB 0.05 0.00 2.43165 -92.9836 -2.43165 2.43165 0.70 0.000151238 0.000121711 0.011081 0.00918199 50 1915 46 6.95648e+06 144757 902133. 3121.57 2.22 0.0704879 0.0603789 1475 22 1581 2560 199394 47971 3.09662 3.09662 -117.623 -3.09662 0 0 1.08113e+06 3740.92 0.49 0.05 0.0122208 0.0109278 65 31 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 4.89 vpr 62.94 MiB 0.02 7092 -1 -1 1 0.01 -1 -1 33600 -1 -1 16 25 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64448 25 32 259 222 1 132 73 17 17 289 -1 unnamed_device 24.5 MiB 0.66 464 62.9 MiB 0.04 0.00 2.73975 -75.0038 -2.73975 2.73975 0.69 0.00012443 9.8877e-05 0.00831168 0.00682349 36 1703 31 6.95648e+06 231611 648988. 2245.63 1.84 0.0529278 0.0450524 1339 25 1233 1690 144100 31679 3.03507 3.03507 -98.3247 -3.03507 0 0 828058. 2865.25 0.25 0.04 0.0102847 0.00912308 56 19 50 25 25 25 - fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 6.22 vpr 63.63 MiB 0.04 7216 -1 -1 1 0.02 -1 -1 33472 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65156 32 32 433 347 1 192 77 17 17 289 -1 unnamed_device 25.3 MiB 1.08 826 63.6 MiB 0.07 0.00 3.11905 -107.319 -3.11905 3.11905 0.70 0.000191236 0.000153572 0.0187058 0.0145212 48 2946 30 6.95648e+06 188184 865456. 2994.66 2.22 0.0896129 0.0758398 2467 30 2191 3731 490672 121745 4.38616 4.38616 -155.891 -4.38616 0 0 1.05005e+06 3633.38 0.46 0.13 0.0205982 0.0183516 80 84 32 32 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 5.63 vpr 63.88 MiB 0.02 7400 -1 -1 1 0.01 -1 -1 33516 -1 -1 29 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65408 31 32 423 341 1 185 92 17 17 289 -1 unnamed_device 25.5 MiB 0.88 735 63.9 MiB 0.07 0.00 2.97646 -98.4953 -2.97646 2.97646 0.70 0.000190835 0.000153891 0.0171102 0.0140867 48 2177 36 6.95648e+06 419795 865456. 2994.66 2.04 0.0916744 0.0784623 1843 20 1731 2322 229824 55088 3.52707 3.52707 -126.612 -3.52707 0 0 1.05005e+06 3633.38 0.35 0.08 0.0257794 0.0242681 87 88 29 29 93 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 5.90 vpr 63.41 MiB 0.02 7292 -1 -1 1 0.01 -1 -1 33768 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64928 32 32 439 351 1 287 85 17 17 289 -1 unnamed_device 25.4 MiB 0.74 1267 63.4 MiB 0.09 0.00 3.79064 -133.551 -3.79064 3.79064 0.70 0.000221436 0.000183784 0.0190064 0.0158082 48 3836 29 6.99608e+06 309029 865456. 2994.66 2.57 0.0984291 0.085173 2783 26 2523 2935 375530 100065 4.57181 4.57181 -171.313 -4.57181 0 0 1.05005e+06 3633.38 0.38 0.09 0.0178205 0.0158317 129 80 32 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.17 vpr 63.63 MiB 0.06 7464 -1 -1 1 0.01 -1 -1 33780 -1 -1 20 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65160 30 32 412 333 1 259 82 17 17 289 -1 unnamed_device 25.3 MiB 1.52 1059 63.6 MiB 0.09 0.00 3.60832 -120.561 -3.60832 3.60832 0.71 0.000196206 0.000159929 0.0179555 0.0149698 56 2497 31 6.99608e+06 294314 973134. 3367.25 1.90 0.0860772 0.0741761 2235 23 2264 3099 293778 61520 4.5047 4.5047 -153.944 -4.5047 0 0 1.19926e+06 4149.71 0.39 0.07 0.0158009 0.0141594 117 78 30 30 89 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 16.60 vpr 63.26 MiB 0.02 7176 -1 -1 1 0.01 -1 -1 33760 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64776 32 32 388 310 1 241 82 17 17 289 -1 unnamed_device 24.8 MiB 0.80 1231 63.3 MiB 0.09 0.01 2.96629 -111.934 -2.96629 2.96629 0.73 0.000232047 0.000193441 0.0130572 0.0110519 40 3052 38 6.99608e+06 264882 706193. 2443.58 13.40 0.168728 0.149845 2651 21 1816 2144 213322 42865 3.95236 3.95236 -148.484 -3.95236 0 0 926341. 3205.33 0.29 0.06 0.0145099 0.0130178 106 50 54 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 5.80 vpr 63.44 MiB 0.04 7216 -1 -1 1 0.02 -1 -1 33316 -1 -1 18 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64964 29 32 347 271 1 201 79 17 17 289 -1 unnamed_device 24.8 MiB 0.78 789 63.4 MiB 0.06 0.00 3.3701 -106.375 -3.3701 3.3701 0.86 0.000175297 0.000143792 0.0145569 0.012013 56 1571 23 6.99608e+06 264882 973134. 3367.25 1.85 0.0729348 0.0627181 1455 23 1470 2222 162351 43472 3.77352 3.77352 -128.588 -3.77352 0 0 1.19926e+06 4149.71 0.62 0.05 0.0126674 0.0112827 89 25 87 29 29 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 5.46 vpr 63.37 MiB 0.02 7276 -1 -1 1 0.01 -1 -1 33168 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64892 32 32 377 289 1 218 79 17 17 289 -1 unnamed_device 24.9 MiB 0.52 1035 63.4 MiB 0.08 0.00 3.52464 -128.011 -3.52464 3.52464 0.70 0.000183345 0.000148256 0.0174914 0.0144817 54 2904 24 6.99608e+06 220735 949917. 3286.91 2.28 0.0853339 0.0739363 2261 22 2393 3801 321577 65188 4.41325 4.41325 -162.5 -4.41325 0 0 1.17392e+06 4061.99 0.37 0.07 0.0150246 0.0134219 93 31 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 5.92 vpr 63.61 MiB 0.02 7392 -1 -1 1 0.02 -1 -1 33352 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65132 32 32 403 317 1 251 95 17 17 289 -1 unnamed_device 25.1 MiB 0.54 1103 63.6 MiB 0.10 0.00 3.08859 -109.585 -3.08859 3.08859 0.72 0.000192902 0.000157304 0.0166995 0.0138453 44 3795 43 6.99608e+06 456186 787024. 2723.27 2.85 0.101043 0.0803021 2553 20 2033 2895 244182 51568 3.47001 3.47001 -135.157 -3.47001 0 0 997811. 3452.63 0.36 0.06 0.0157695 0.0137419 117 61 63 32 63 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 10.57 vpr 62.91 MiB 0.02 6972 -1 -1 1 0.01 -1 -1 33252 -1 -1 16 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64420 27 32 275 232 1 158 75 17 17 289 -1 unnamed_device 24.4 MiB 1.54 604 62.9 MiB 0.05 0.00 2.93029 -91.2995 -2.93029 2.93029 0.74 0.000135029 0.000108583 0.0117954 0.0098365 40 1663 34 6.99608e+06 235451 706193. 2443.58 6.45 0.112095 0.0962893 1446 20 1375 1955 205192 43291 3.54516 3.54516 -116.69 -3.54516 0 0 926341. 3205.33 0.30 0.06 0.011347 0.01012 70 26 54 27 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 4.97 vpr 62.99 MiB 0.04 7184 -1 -1 1 0.02 -1 -1 33292 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64500 31 32 319 244 1 178 80 17 17 289 -1 unnamed_device 24.5 MiB 0.43 709 63.0 MiB 0.09 0.00 2.36575 -82.2063 -2.36575 2.36575 0.74 0.000159629 0.000127756 0.0118008 0.00971443 52 2227 42 6.99608e+06 250167 926341. 3205.33 1.80 0.0785215 0.0677841 1668 20 1290 1917 148651 34505 3.03892 3.03892 -106.904 -3.03892 0 0 1.14541e+06 3963.36 0.37 0.04 0.0122329 0.0110243 77 -1 115 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 7.55 vpr 63.26 MiB 0.02 7276 -1 -1 1 0.01 -1 -1 33276 -1 -1 15 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64780 31 32 340 294 1 222 78 17 17 289 -1 unnamed_device 24.8 MiB 3.12 880 63.3 MiB 0.06 0.00 2.58244 -93.7394 -2.58244 2.58244 0.87 0.000159105 0.00012851 0.012125 0.0100597 46 2541 23 6.99608e+06 220735 828058. 2865.25 1.73 0.073098 0.0632621 2002 21 1766 2210 168849 38153 3.27126 3.27126 -117.996 -3.27126 0 0 1.01997e+06 3529.29 0.30 0.05 0.012473 0.0111504 96 81 0 0 84 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 6.00 vpr 63.14 MiB 0.02 7072 -1 -1 1 0.01 -1 -1 33216 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64656 32 32 315 257 1 187 77 17 17 289 -1 unnamed_device 24.7 MiB 0.73 956 63.1 MiB 0.06 0.00 2.95409 -117.413 -2.95409 2.95409 0.71 0.000154646 0.000124327 0.0118654 0.00981767 38 2522 46 6.99608e+06 191304 678818. 2348.85 2.91 0.0756432 0.0647477 2154 20 1597 2017 157625 32829 3.60816 3.60816 -147.705 -3.60816 0 0 902133. 3121.57 0.26 0.04 0.0115333 0.0103819 79 31 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 6.30 vpr 63.43 MiB 0.02 7068 -1 -1 1 0.01 -1 -1 33508 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64956 30 32 328 276 1 199 77 17 17 289 -1 unnamed_device 24.8 MiB 1.70 958 63.4 MiB 0.06 0.00 3.24553 -115.854 -3.24553 3.24553 0.71 0.000177914 0.000139838 0.0118735 0.00978616 40 2579 29 6.99608e+06 220735 706193. 2443.58 2.11 0.0960842 0.0863961 2401 24 2157 2947 475093 172825 3.7902 3.7902 -143.518 -3.7902 0 0 926341. 3205.33 0.27 0.10 0.0135863 0.0121752 88 58 30 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 5.13 vpr 63.37 MiB 0.02 6948 -1 -1 1 0.02 -1 -1 33476 -1 -1 14 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64892 32 32 332 281 1 211 78 17 17 289 -1 unnamed_device 24.8 MiB 0.76 1079 63.4 MiB 0.07 0.00 2.6272 -104.142 -2.6272 2.6272 0.67 0.000149737 0.000120241 0.0143953 0.0118792 40 2515 48 6.99608e+06 206020 706193. 2443.58 1.94 0.0803536 0.0688977 2201 22 1537 1649 171749 37594 3.13597 3.13597 -125.56 -3.13597 0 0 926341. 3205.33 0.28 0.05 0.0123907 0.0111112 90 57 25 25 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.88 vpr 63.56 MiB 0.04 7200 -1 -1 1 0.01 -1 -1 33348 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65084 32 32 387 306 1 231 80 17 17 289 -1 unnamed_device 25.0 MiB 0.87 877 63.6 MiB 0.07 0.00 2.87709 -102.077 -2.87709 2.87709 0.69 0.000185407 0.000151542 0.0141148 0.0116975 48 2625 50 6.99608e+06 235451 865456. 2994.66 3.37 0.0877584 0.0753283 1863 24 1959 2667 208259 49329 3.90706 3.90706 -130.922 -3.90706 0 0 1.05005e+06 3633.38 0.31 0.06 0.0148813 0.0132918 101 55 64 32 57 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 6.37 vpr 63.59 MiB 0.04 7380 -1 -1 1 0.01 -1 -1 33552 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65112 32 32 408 320 1 254 82 17 17 289 -1 unnamed_device 25.2 MiB 0.93 1136 63.6 MiB 0.08 0.00 3.52284 -130.264 -3.52284 3.52284 0.72 0.000238429 0.000172758 0.0142034 0.0118477 40 3360 42 6.99608e+06 264882 706193. 2443.58 2.73 0.0896549 0.077628 3069 24 3006 3897 450978 88840 4.80151 4.80151 -181.184 -4.80151 0 0 926341. 3205.33 0.41 0.09 0.0154048 0.0137432 111 60 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.19 vpr 62.98 MiB 0.02 7152 -1 -1 1 0.01 -1 -1 33216 -1 -1 14 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64492 29 32 276 232 1 161 75 17 17 289 -1 unnamed_device 24.4 MiB 2.53 674 63.0 MiB 0.05 0.00 2.42075 -81.9712 -2.42075 2.42075 0.71 0.00014589 0.000119449 0.00948436 0.00788524 36 2073 43 6.99608e+06 206020 648988. 2245.63 2.37 0.0624568 0.0535654 1634 21 1216 1666 137696 30616 3.16092 3.16092 -112.111 -3.16092 0 0 828058. 2865.25 0.27 0.04 0.0101641 0.00907416 69 21 58 29 24 24 - fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 17.56 vpr 63.63 MiB 0.05 7380 -1 -1 1 0.01 -1 -1 33188 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65160 32 32 402 316 1 243 80 17 17 289 -1 unnamed_device 25.2 MiB 2.04 1134 63.6 MiB 0.06 0.00 2.91309 -108.47 -2.91309 2.91309 0.73 0.000205166 0.000169181 0.0120754 0.0101256 44 3477 39 6.99608e+06 235451 787024. 2723.27 12.84 0.170708 0.149054 2522 22 2586 3798 283047 60117 3.65841 3.65841 -141.303 -3.65841 0 0 997811. 3452.63 0.31 0.07 0.0152668 0.0135437 107 60 64 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 5.91 vpr 63.43 MiB 0.03 7172 -1 -1 1 0.02 -1 -1 33272 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64948 32 32 384 304 1 230 81 17 17 289 -1 unnamed_device 24.8 MiB 1.15 986 63.4 MiB 0.08 0.00 2.7325 -103.832 -2.7325 2.7325 0.84 0.000173435 0.000140162 0.0154915 0.0128036 46 2735 28 6.99608e+06 250167 828058. 2865.25 2.03 0.0797323 0.0688314 2106 22 2105 2621 209936 43786 3.26557 3.26557 -125.541 -3.26557 0 0 1.01997e+06 3529.29 0.41 0.05 0.0137712 0.0123009 99 54 64 32 56 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 7.39 vpr 63.24 MiB 0.03 7020 -1 -1 1 0.01 -1 -1 33284 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64756 32 32 340 285 1 218 79 17 17 289 -1 unnamed_device 24.6 MiB 0.64 1057 63.2 MiB 0.08 0.00 3.09069 -109.325 -3.09069 3.09069 0.92 0.000161322 0.000130814 0.0151801 0.0125303 38 3063 30 6.99608e+06 220735 678818. 2348.85 4.10 0.07378 0.0631608 2467 23 1634 2031 223322 43212 3.24351 3.24351 -135.651 -3.24351 0 0 902133. 3121.57 0.27 0.07 0.0172243 0.015795 91 62 29 29 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.61 vpr 62.67 MiB 0.03 6912 -1 -1 1 0.01 -1 -1 33420 -1 -1 11 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64172 30 32 229 211 1 139 73 17 17 289 -1 unnamed_device 24.2 MiB 2.22 559 62.7 MiB 0.10 0.00 1.94236 -73.0043 -1.94236 1.94236 0.87 0.000124607 9.9947e-05 0.0394066 0.0214167 36 1477 31 6.99608e+06 161872 648988. 2245.63 1.79 0.0859682 0.0623054 1148 18 788 859 66405 15920 2.09523 2.09523 -85.6297 -2.09523 0 0 828058. 2865.25 0.25 0.02 0.00749106 0.00670479 56 29 24 24 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.14 vpr 63.26 MiB 0.03 6960 -1 -1 1 0.01 -1 -1 33500 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64780 31 32 337 282 1 210 79 17 17 289 -1 unnamed_device 24.6 MiB 1.45 974 63.3 MiB 0.07 0.00 3.08859 -111.737 -3.08859 3.08859 0.70 0.000159334 0.000128796 0.0155905 0.0128007 38 2623 29 6.99608e+06 235451 678818. 2348.85 2.16 0.0868764 0.0763178 2184 20 1774 2138 188195 37781 3.52016 3.52016 -137.918 -3.52016 0 0 902133. 3121.57 0.27 0.05 0.0124413 0.0111682 92 55 31 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 12.58 vpr 63.23 MiB 0.04 7284 -1 -1 1 0.00 -1 -1 33208 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64752 32 32 367 284 1 215 87 17 17 289 -1 unnamed_device 24.7 MiB 0.47 955 63.2 MiB 0.11 0.01 3.29568 -117.791 -3.29568 3.29568 0.75 0.000256822 0.000217619 0.0146596 0.0122405 38 3044 30 6.99608e+06 338461 678818. 2348.85 9.50 0.136089 0.117663 2352 24 2404 3243 263589 55478 4.4935 4.4935 -163.003 -4.4935 0 0 902133. 3121.57 0.26 0.06 0.0142001 0.0126457 97 31 91 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 6.57 vpr 63.39 MiB 0.03 7152 -1 -1 1 0.01 -1 -1 33764 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64912 32 32 461 376 1 303 86 17 17 289 -1 unnamed_device 25.2 MiB 1.26 1293 63.4 MiB 0.09 0.00 3.14198 -113.986 -3.14198 3.14198 0.85 0.000196353 0.000158986 0.0182622 0.0151259 46 3567 28 6.99608e+06 323745 828058. 2865.25 2.44 0.0966882 0.0836171 2546 24 2501 2892 222598 49228 3.79605 3.79605 -144.397 -3.79605 0 0 1.01997e+06 3529.29 0.30 0.06 0.0174859 0.0156193 138 108 0 0 125 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.23 vpr 62.45 MiB 0.02 6940 -1 -1 1 0.01 -1 -1 33128 -1 -1 15 26 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63948 26 32 205 193 1 125 73 17 17 289 -1 unnamed_device 24.0 MiB 0.85 453 62.4 MiB 0.04 0.00 2.1814 -66.0964 -2.1814 2.1814 0.74 0.000102975 8.1328e-05 0.00802522 0.0065413 36 1544 28 6.99608e+06 220735 648988. 2245.63 1.89 0.0558419 0.0491647 1096 22 819 944 97110 22511 2.43522 2.43522 -81.3071 -2.43522 0 0 828058. 2865.25 0.26 0.03 0.00773969 0.00684956 52 21 26 26 22 22 - fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.59 vpr 63.34 MiB 0.02 7136 -1 -1 1 0.01 -1 -1 33272 -1 -1 12 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64856 32 32 334 252 1 181 76 17 17 289 -1 unnamed_device 24.7 MiB 0.83 773 63.3 MiB 0.06 0.00 3.28415 -110.435 -3.28415 3.28415 0.74 0.000177993 0.000145603 0.0127748 0.0105976 48 2293 23 6.99608e+06 176588 865456. 2994.66 2.12 0.082373 0.0664429 1870 23 1675 2560 209783 51693 3.90696 3.90696 -140.573 -3.90696 0 0 1.05005e+06 3633.38 0.34 0.06 0.0140781 0.0125609 75 -1 122 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.08 vpr 62.56 MiB 0.03 6884 -1 -1 1 0.02 -1 -1 33088 -1 -1 8 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64064 32 32 200 183 1 119 72 17 17 289 -1 unnamed_device 23.9 MiB 0.25 571 62.6 MiB 0.04 0.00 1.68521 -64.8821 -1.68521 1.68521 0.72 0.000108381 8.6675e-05 0.00800321 0.00652797 34 1707 39 6.99608e+06 117725 618332. 2139.56 1.36 0.0741413 0.0666364 1373 19 769 980 101471 21923 1.99232 1.99232 -88.4664 -1.99232 0 0 787024. 2723.27 0.26 0.03 0.00822619 0.00653249 44 -1 53 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.13 vpr 63.63 MiB 0.02 7292 -1 -1 1 0.01 -1 -1 33340 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65156 32 32 377 289 1 218 80 17 17 289 -1 unnamed_device 25.1 MiB 1.22 935 63.6 MiB 0.11 0.00 3.16045 -114.629 -3.16045 3.16045 0.80 0.000175167 0.000141443 0.0250184 0.0223447 48 2615 29 6.99608e+06 235451 865456. 2994.66 2.29 0.0931605 0.0817237 2220 24 2240 3222 336873 78642 4.06511 4.06511 -149.282 -4.06511 0 0 1.05005e+06 3633.38 0.33 0.08 0.017431 0.0157073 94 21 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 5.16 vpr 63.11 MiB 0.06 7124 -1 -1 1 0.01 -1 -1 33192 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64624 32 32 338 254 1 188 91 17 17 289 -1 unnamed_device 24.5 MiB 0.32 785 63.1 MiB 0.07 0.00 2.6432 -91.7303 -2.6432 2.6432 0.80 0.000165997 0.000134215 0.0145057 0.0120121 48 2240 25 6.99608e+06 397324 865456. 2994.66 2.01 0.0720358 0.0617315 1700 22 1534 2171 189954 45968 2.96852 2.96852 -115.279 -2.96852 0 0 1.05005e+06 3633.38 0.37 0.07 0.01793 0.0164547 86 -1 124 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.44 vpr 63.72 MiB 0.03 7284 -1 -1 1 0.01 -1 -1 33688 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65252 32 32 408 320 1 256 83 17 17 289 -1 unnamed_device 25.3 MiB 0.69 1306 63.7 MiB 0.09 0.00 3.16045 -124.005 -3.16045 3.16045 0.80 0.000187354 0.000151776 0.0172619 0.014258 40 3505 31 6.99608e+06 279598 706193. 2443.58 3.13 0.0845125 0.0723605 3145 24 2735 3934 451648 86982 4.06941 4.06941 -164.219 -4.06941 0 0 926341. 3205.33 0.29 0.09 0.0169609 0.0151747 114 54 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 5.30 vpr 63.15 MiB 0.02 7120 -1 -1 1 0.01 -1 -1 33308 -1 -1 11 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64668 32 32 295 247 1 175 75 17 17 289 -1 unnamed_device 24.5 MiB 1.19 859 63.2 MiB 0.05 0.00 2.4829 -93.4271 -2.4829 2.4829 0.69 0.000145354 0.000117857 0.0104366 0.00858994 38 2411 20 6.99608e+06 161872 678818. 2348.85 1.69 0.0655376 0.0570592 2075 22 1341 1886 187638 36826 2.98062 2.98062 -122.278 -2.98062 0 0 902133. 3121.57 0.27 0.05 0.0108852 0.00968486 72 31 54 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 13.20 vpr 63.10 MiB 0.04 7000 -1 -1 1 0.01 -1 -1 33228 -1 -1 13 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64616 30 32 299 247 1 173 75 17 17 289 -1 unnamed_device 24.8 MiB 8.40 650 63.1 MiB 0.05 0.00 2.93029 -99.8821 -2.93029 2.93029 0.82 0.000162581 0.000130544 0.011284 0.00928309 62 1868 21 6.99608e+06 191304 1.05005e+06 3633.38 1.77 0.0594526 0.0507215 1513 22 1617 2439 176088 40600 3.23656 3.23656 -116.535 -3.23656 0 0 1.30136e+06 4502.97 0.52 0.05 0.0114348 0.0102458 73 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 5.84 vpr 63.10 MiB 0.04 7216 -1 -1 1 0.01 -1 -1 33184 -1 -1 15 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64616 28 32 283 237 1 163 75 17 17 289 -1 unnamed_device 24.5 MiB 1.07 614 63.1 MiB 0.05 0.00 3.06474 -93.1923 -3.06474 3.06474 0.68 0.000137121 0.000110215 0.00899846 0.0074183 40 2188 24 6.99608e+06 220735 706193. 2443.58 2.22 0.0566229 0.0484583 1813 18 1250 1883 187608 40532 3.55611 3.55611 -126.076 -3.55611 0 0 926341. 3205.33 0.35 0.04 0.00929128 0.00834469 72 27 56 28 28 28 - fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 5.17 vpr 63.05 MiB 0.04 7048 -1 -1 1 0.01 -1 -1 33252 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64564 32 32 284 226 1 160 74 17 17 289 -1 unnamed_device 24.4 MiB 0.17 848 63.1 MiB 0.05 0.00 2.36125 -96.7603 -2.36125 2.36125 0.74 0.000139416 0.000112334 0.0105026 0.00866768 38 2536 25 6.99608e+06 147157 678818. 2348.85 2.47 0.0590224 0.0505202 2175 22 1794 2745 279257 52574 3.29522 3.29522 -134.562 -3.29522 0 0 902133. 3121.57 0.27 0.06 0.0112298 0.0100551 64 -1 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 4.79 vpr 62.91 MiB 0.03 7212 -1 -1 1 0.01 -1 -1 33460 -1 -1 13 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64416 31 32 305 251 1 185 76 17 17 289 -1 unnamed_device 24.4 MiB 0.72 1021 62.9 MiB 0.06 0.00 2.48195 -98.2011 -2.48195 2.48195 0.69 0.000160025 0.00013125 0.0116587 0.00963842 40 2590 23 6.99608e+06 191304 706193. 2443.58 1.66 0.0601058 0.0510977 2356 24 1711 2247 220217 44125 3.06862 3.06862 -125.594 -3.06862 0 0 926341. 3205.33 0.27 0.05 0.0119357 0.0106256 76 26 61 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 14.56 vpr 63.30 MiB 0.02 7052 -1 -1 1 0.01 -1 -1 33224 -1 -1 16 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64820 29 32 316 268 1 197 77 17 17 289 -1 unnamed_device 24.8 MiB 3.04 742 63.3 MiB 0.04 0.00 2.46925 -84.7809 -2.46925 2.46925 0.70 0.000151642 0.000122917 0.00894477 0.00738586 38 2577 33 6.99608e+06 235451 678818. 2348.85 9.25 0.113658 0.0964372 1884 22 1484 1827 169547 38776 2.85732 2.85732 -110.779 -2.85732 0 0 902133. 3121.57 0.27 0.04 0.011258 0.0100134 86 55 29 29 57 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 7.18 vpr 63.55 MiB 0.03 7420 -1 -1 1 0.01 -1 -1 33552 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65072 32 32 424 311 1 243 84 17 17 289 -1 unnamed_device 25.1 MiB 0.99 1079 63.5 MiB 0.08 0.00 3.26375 -118.204 -3.26375 3.26375 0.73 0.000210096 0.000173493 0.0152105 0.0126933 46 3293 37 6.99608e+06 294314 828058. 2865.25 3.43 0.0970517 0.0841216 2439 20 2143 3252 230462 47840 3.91782 3.91782 -147.732 -3.91782 0 0 1.01997e+06 3529.29 0.38 0.06 0.0146084 0.0131483 106 26 128 32 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 18.95 vpr 63.70 MiB 0.03 7316 -1 -1 1 0.01 -1 -1 33308 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65228 32 32 404 318 1 252 82 17 17 289 -1 unnamed_device 25.2 MiB 1.06 1101 63.7 MiB 0.09 0.00 3.32748 -123.875 -3.32748 3.32748 0.98 0.000185456 0.000150584 0.0183092 0.0151035 42 4014 45 6.99608e+06 264882 744469. 2576.02 15.02 0.160274 0.137711 2700 32 3361 4449 530189 138136 4.10685 4.10685 -156.76 -4.10685 0 0 949917. 3286.91 0.29 0.11 0.0192026 0.0170043 110 62 62 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.07 vpr 63.57 MiB 0.04 7144 -1 -1 1 0.01 -1 -1 33444 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65092 31 32 355 304 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 0.87 1069 63.6 MiB 0.06 0.00 2.82209 -103.185 -2.82209 2.82209 0.74 0.000153941 0.00012358 0.0136672 0.0112311 44 2365 24 6.99608e+06 235451 787024. 2723.27 1.68 0.0667754 0.057155 1900 21 1403 1447 110683 23411 3.30251 3.30251 -126.872 -3.30251 0 0 997811. 3452.63 0.32 0.04 0.0126814 0.0114081 99 77 0 0 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 6.92 vpr 63.60 MiB 0.02 7436 -1 -1 1 0.02 -1 -1 33452 -1 -1 19 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65128 31 32 393 311 1 242 82 17 17 289 -1 unnamed_device 24.9 MiB 0.81 1194 63.6 MiB 0.10 0.00 2.97859 -109.921 -2.97859 2.97859 0.71 0.000180888 0.000146854 0.019578 0.0164462 40 3246 34 6.99608e+06 279598 706193. 2443.58 3.37 0.093013 0.0770126 2801 22 2210 3011 310315 62306 3.96826 3.96826 -151.489 -3.96826 0 0 926341. 3205.33 0.27 0.07 0.015339 0.0137273 106 59 60 30 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 6.96 vpr 63.61 MiB 0.04 7284 -1 -1 1 0.01 -1 -1 33380 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65132 31 32 457 373 1 302 86 17 17 289 -1 unnamed_device 25.4 MiB 1.06 1439 63.6 MiB 0.10 0.00 3.74577 -132.746 -3.74577 3.74577 0.73 0.000206893 0.000168574 0.0209 0.0172694 46 3881 34 6.99608e+06 338461 828058. 2865.25 3.05 0.100117 0.0862932 2924 25 2541 2992 290980 57319 4.87774 4.87774 -174.039 -4.87774 0 0 1.01997e+06 3529.29 0.32 0.08 0.0183263 0.0163971 138 111 0 0 124 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 9.14 vpr 63.61 MiB 0.06 7464 -1 -1 1 0.02 -1 -1 33188 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65132 31 32 415 335 1 257 81 17 17 289 -1 unnamed_device 25.2 MiB 2.51 1140 63.6 MiB 0.09 0.00 4.27513 -138.945 -4.27513 4.27513 0.71 0.000188006 0.000152111 0.0182222 0.0150579 40 3843 44 6.99608e+06 264882 706193. 2443.58 3.99 0.0967433 0.0818656 2962 44 3282 4400 792409 282816 5.3442 5.3442 -182.766 -5.3442 0 0 926341. 3205.33 0.28 0.19 0.0267165 0.0235471 116 86 31 31 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.20 vpr 63.54 MiB 0.03 7216 -1 -1 1 0.01 -1 -1 33328 -1 -1 20 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65068 31 32 393 311 1 241 83 17 17 289 -1 unnamed_device 25.2 MiB 2.29 1284 63.5 MiB 0.10 0.00 2.94309 -111.352 -2.94309 2.94309 0.71 0.000184762 0.000150311 0.0194345 0.0164421 46 3305 21 6.99608e+06 294314 828058. 2865.25 2.22 0.0858301 0.074347 2657 21 1933 2568 203435 41404 3.54516 3.54516 -137.369 -3.54516 0 0 1.01997e+06 3529.29 0.32 0.06 0.0142068 0.0126846 107 58 60 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 5.47 vpr 63.63 MiB 0.02 7276 -1 -1 1 0.01 -1 -1 33748 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65160 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 25.3 MiB 0.94 938 63.6 MiB 0.08 0.00 3.28575 -117.225 -3.28575 3.28575 0.67 0.00017846 0.000143681 0.014667 0.0121011 50 3006 45 6.99608e+06 264882 902133. 3121.57 2.00 0.0899907 0.0775697 2352 20 2048 2483 233274 51952 4.42502 4.42502 -155.607 -4.42502 0 0 1.08113e+06 3740.92 0.34 0.06 0.0135162 0.0121214 111 42 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.52 vpr 63.82 MiB 0.02 7560 -1 -1 1 0.01 -1 -1 33744 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65356 32 32 497 381 1 313 86 17 17 289 -1 unnamed_device 25.7 MiB 2.37 1329 63.8 MiB 0.08 0.00 4.02333 -141.669 -4.02333 4.02333 0.66 0.000227594 0.000185949 0.0157519 0.0132178 46 4281 46 6.99608e+06 323745 828058. 2865.25 3.50 0.122955 0.106958 3172 24 3317 4577 368215 77685 5.2567 5.2567 -188.138 -5.2567 0 0 1.01997e+06 3529.29 0.32 0.09 0.0203299 0.0182231 140 91 62 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 5.37 vpr 63.15 MiB 0.03 7164 -1 -1 1 0.01 -1 -1 33316 -1 -1 13 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64664 31 32 307 252 1 181 76 17 17 289 -1 unnamed_device 24.7 MiB 0.91 677 63.1 MiB 0.05 0.00 2.6383 -95.4998 -2.6383 2.6383 0.72 0.00014762 0.000118925 0.0123557 0.0100154 40 2302 50 6.99608e+06 191304 706193. 2443.58 1.92 0.0747745 0.0632445 1853 24 1774 2205 191852 41501 3.35027 3.35027 -128.916 -3.35027 0 0 926341. 3205.33 0.38 0.05 0.0130741 0.0116507 75 24 62 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 7.53 vpr 63.54 MiB 0.05 7324 -1 -1 1 0.01 -1 -1 33672 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65064 31 32 397 313 1 243 81 17 17 289 -1 unnamed_device 25.0 MiB 0.64 1118 63.5 MiB 0.08 0.00 3.56194 -125.668 -3.56194 3.56194 0.71 0.0001946 0.000159617 0.0158826 0.0132738 40 3700 33 6.99608e+06 264882 706193. 2443.58 4.18 0.0933404 0.0805287 2923 25 2629 3191 355279 87031 4.78441 4.78441 -172.429 -4.78441 0 0 926341. 3205.33 0.28 0.08 0.0148811 0.0132391 106 59 62 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 7.16 vpr 63.64 MiB 0.04 7336 -1 -1 1 0.01 -1 -1 33336 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65172 32 32 398 314 1 246 83 17 17 289 -1 unnamed_device 25.2 MiB 1.44 1098 63.6 MiB 0.08 0.00 2.93829 -107.607 -2.93829 2.93829 0.71 0.000186442 0.000151826 0.0163581 0.0135972 46 3619 47 6.99608e+06 279598 828058. 2865.25 3.05 0.102192 0.0873275 2618 20 2113 3033 231115 50083 3.58436 3.58436 -136.767 -3.58436 0 0 1.01997e+06 3529.29 0.31 0.11 0.0145046 0.0130454 107 54 62 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 5.34 vpr 63.21 MiB 0.02 7188 -1 -1 1 0.01 -1 -1 32984 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64724 32 32 346 258 1 186 77 17 17 289 -1 unnamed_device 24.6 MiB 0.76 778 63.2 MiB 0.08 0.00 2.93179 -107.252 -2.93179 2.93179 0.68 0.00017172 0.000139361 0.0161262 0.0133369 52 2824 23 6.99608e+06 191304 926341. 3205.33 2.08 0.0720822 0.0618947 2039 21 1993 3444 250950 58469 3.99106 3.99106 -150.895 -3.99106 0 0 1.14541e+06 3963.36 0.41 0.06 0.0126583 0.0113541 78 -1 128 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.05 vpr 63.89 MiB 0.03 7324 -1 -1 1 0.02 -1 -1 33480 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65424 32 32 425 344 1 266 83 17 17 289 -1 unnamed_device 25.4 MiB 1.41 1119 63.9 MiB 0.08 0.00 2.70344 -104.025 -2.70344 2.70344 0.68 0.000190701 0.000154154 0.0147062 0.0121148 46 3111 28 6.99608e+06 279598 828058. 2865.25 2.02 0.080957 0.0693842 2381 24 2268 2801 226384 48403 3.47481 3.47481 -135.443 -3.47481 0 0 1.01997e+06 3529.29 0.31 0.06 0.0158903 0.0141379 120 81 25 25 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 5.44 vpr 63.53 MiB 0.02 7260 -1 -1 1 0.01 -1 -1 33252 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65052 32 32 396 312 1 242 84 17 17 289 -1 unnamed_device 25.0 MiB 0.89 966 63.5 MiB 0.09 0.00 3.02259 -109.466 -3.02259 3.02259 0.70 0.000186993 0.000152089 0.0176789 0.0147131 52 3224 45 6.99608e+06 294314 926341. 3205.33 2.02 0.0902171 0.0776695 2245 21 2163 2914 230701 50852 3.81776 3.81776 -142.745 -3.81776 0 0 1.14541e+06 3963.36 0.33 0.06 0.0137511 0.0123106 106 58 64 32 60 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 5.26 vpr 63.46 MiB 0.08 7320 -1 -1 1 0.02 -1 -1 33524 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64984 32 32 406 319 1 253 81 17 17 289 -1 unnamed_device 25.1 MiB 0.72 1001 63.5 MiB 0.07 0.00 2.70344 -100.478 -2.70344 2.70344 0.72 0.00018292 0.000148 0.0149623 0.012358 48 2800 27 6.99608e+06 250167 865456. 2994.66 1.92 0.0811322 0.0697644 2282 25 2509 3308 309277 70610 4.22361 4.22361 -143.615 -4.22361 0 0 1.05005e+06 3633.38 0.32 0.08 0.0181682 0.0163669 108 61 63 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 17.71 vpr 63.55 MiB 0.04 7112 -1 -1 1 0.01 -1 -1 33476 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65076 32 32 377 289 1 218 80 17 17 289 -1 unnamed_device 25.1 MiB 0.98 842 63.6 MiB 0.07 0.00 3.17765 -114.526 -3.17765 3.17765 0.79 0.00017727 0.000144102 0.0154041 0.0127505 48 2987 43 6.99608e+06 235451 865456. 2994.66 14.01 0.157572 0.135217 2118 24 2196 3181 317314 78499 4.31692 4.31692 -154.693 -4.31692 0 0 1.05005e+06 3633.38 0.33 0.08 0.016168 0.0144361 94 21 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 5.23 vpr 63.67 MiB 0.02 7200 -1 -1 1 0.01 -1 -1 33532 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65200 32 32 408 320 1 251 82 17 17 289 -1 unnamed_device 25.3 MiB 0.84 1051 63.7 MiB 0.07 0.00 3.18865 -115.502 -3.18865 3.18865 0.73 0.00018917 0.000153735 0.016631 0.0139541 48 2807 25 6.99608e+06 264882 865456. 2994.66 1.72 0.0821312 0.070911 2318 23 2293 2710 235143 49757 4.76491 4.76491 -159.865 -4.76491 0 0 1.05005e+06 3633.38 0.37 0.06 0.0147675 0.0131826 110 50 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 18.67 vpr 63.83 MiB 0.05 7312 -1 -1 1 0.01 -1 -1 33764 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65364 31 32 451 369 1 290 85 17 17 289 -1 unnamed_device 25.7 MiB 1.47 1424 63.8 MiB 0.09 0.00 3.20798 -117.553 -3.20798 3.20798 0.76 0.000208089 0.000169154 0.0182042 0.0150431 40 3702 27 6.99608e+06 323745 706193. 2443.58 14.66 0.18761 0.162429 3266 21 2451 2929 308841 61804 4.37632 4.37632 -155.337 -4.37632 0 0 926341. 3205.33 0.27 0.08 0.0169491 0.0151233 132 110 0 0 122 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 7.08 vpr 63.10 MiB 0.02 7384 -1 -1 1 0.01 -1 -1 33600 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64616 32 32 433 347 1 281 84 17 17 289 -1 unnamed_device 25.3 MiB 1.27 1191 63.1 MiB 0.09 0.00 3.10975 -112.046 -3.10975 3.10975 0.74 0.000213956 0.000176997 0.0168167 0.0140112 48 3626 37 6.99608e+06 294314 865456. 2994.66 3.02 0.0978548 0.0838799 2829 20 2631 3603 297817 65534 4.12742 4.12742 -156.989 -4.12742 0 0 1.05005e+06 3633.38 0.39 0.07 0.0149237 0.0134123 126 86 32 32 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.24 vpr 63.15 MiB 0.03 7124 -1 -1 1 0.01 -1 -1 33372 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64664 32 32 313 256 1 191 77 17 17 289 -1 unnamed_device 24.6 MiB 0.50 905 63.1 MiB 0.06 0.00 2.48675 -99.1453 -2.48675 2.48675 0.71 0.000148705 0.000119695 0.011673 0.00964942 38 2643 42 6.99608e+06 191304 678818. 2348.85 2.83 0.0742229 0.0637346 2051 21 1560 2108 181777 36288 2.91352 2.91352 -122.63 -2.91352 0 0 902133. 3121.57 0.27 0.05 0.0113879 0.0102215 80 20 63 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 5.88 vpr 63.57 MiB 0.02 7156 -1 -1 1 0.01 -1 -1 33524 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65100 32 32 371 315 1 244 80 17 17 289 -1 unnamed_device 25.0 MiB 0.88 1039 63.6 MiB 0.07 0.00 3.05483 -112.616 -3.05483 3.05483 0.70 0.00017309 0.000140117 0.0134855 0.0111592 44 3031 25 6.99608e+06 235451 787024. 2723.27 2.16 0.0747526 0.0640383 2268 24 2239 2648 260180 53017 3.803 3.803 -143.584 -3.803 0 0 997811. 3452.63 0.46 0.07 0.0149695 0.0131857 108 91 0 0 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.90 vpr 63.84 MiB 0.02 7516 -1 -1 1 0.02 -1 -1 33856 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65368 32 32 470 352 1 285 84 17 17 289 -1 unnamed_device 25.6 MiB 0.87 1512 63.8 MiB 0.11 0.00 3.74819 -139.121 -3.74819 3.74819 0.71 0.000213658 0.000174296 0.0199433 0.0170357 46 4166 45 6.99608e+06 294314 828058. 2865.25 4.18 0.117005 0.101445 3312 23 2990 4085 401282 76425 4.76396 4.76396 -183.597 -4.76396 0 0 1.01997e+06 3529.29 0.40 0.15 0.0210321 0.0191479 127 53 96 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 8.60 vpr 63.50 MiB 0.04 7292 -1 -1 1 0.01 -1 -1 33096 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65024 32 32 369 285 1 217 80 17 17 289 -1 unnamed_device 25.0 MiB 0.69 1171 63.5 MiB 0.06 0.00 2.95409 -116.626 -2.95409 2.95409 0.73 0.000174496 0.000141177 0.0116526 0.00974549 36 3304 47 6.99608e+06 235451 648988. 2245.63 4.98 0.0954439 0.0783118 2728 25 2097 2708 272751 54002 3.60016 3.60016 -148.131 -3.60016 0 0 828058. 2865.25 0.25 0.08 0.0222182 0.0200065 93 31 92 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 8.99 vpr 62.96 MiB 0.04 6972 -1 -1 1 0.01 -1 -1 33248 -1 -1 24 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64472 30 32 299 247 1 177 86 17 17 289 -1 unnamed_device 24.5 MiB 0.72 813 63.0 MiB 0.08 0.00 3.08675 -105.407 -3.08675 3.08675 0.89 0.000155656 0.000126574 0.0159447 0.013592 36 2685 43 6.99608e+06 353176 648988. 2245.63 5.40 0.080614 0.0692502 2125 21 1629 2345 262803 52165 3.59411 3.59411 -138.178 -3.59411 0 0 828058. 2865.25 0.25 0.06 0.0114124 0.0102157 80 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 7.29 vpr 63.96 MiB 0.04 7448 -1 -1 1 0.02 -1 -1 33864 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65492 32 32 532 414 1 346 89 17 17 289 -1 unnamed_device 26.0 MiB 0.85 1631 64.0 MiB 0.19 0.00 4.33222 -156.957 -4.33222 4.33222 0.75 0.000254368 0.000211122 0.029718 0.0262057 48 4304 45 6.99608e+06 367892 865456. 2994.66 3.57 0.138582 0.122222 3498 25 3779 4623 507754 112792 5.56559 5.56559 -203.587 -5.56559 0 0 1.05005e+06 3633.38 0.33 0.11 0.022724 0.020369 159 109 32 32 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 5.25 vpr 63.54 MiB 0.02 7272 -1 -1 1 0.01 -1 -1 33128 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65068 32 32 377 289 1 217 80 17 17 289 -1 unnamed_device 25.0 MiB 0.79 822 63.5 MiB 0.07 0.00 3.52464 -127.331 -3.52464 3.52464 0.71 0.000174924 0.000141229 0.0144245 0.0118977 46 2515 30 6.99608e+06 235451 828058. 2865.25 2.01 0.0815617 0.0701239 1879 23 2274 2954 206204 46728 4.304 4.304 -160.849 -4.304 0 0 1.01997e+06 3529.29 0.35 0.05 0.0143809 0.0128361 92 31 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.14 vpr 62.78 MiB 0.04 6880 -1 -1 1 0.01 -1 -1 33164 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64284 32 32 284 226 1 158 88 17 17 289 -1 unnamed_device 24.2 MiB 0.23 597 62.8 MiB 0.14 0.00 2.40955 -90.8946 -2.40955 2.40955 0.74 0.00016266 0.000131144 0.0133355 0.0109891 44 2071 28 6.99608e+06 353176 787024. 2723.27 2.18 0.068092 0.058591 1528 20 1351 2060 150093 33488 2.83502 2.83502 -112.924 -2.83502 0 0 997811. 3452.63 0.33 0.04 0.0109347 0.00984631 70 -1 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 6.91 vpr 63.64 MiB 0.02 7476 -1 -1 1 0.01 -1 -1 33516 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65164 32 32 439 321 1 256 83 17 17 289 -1 unnamed_device 25.0 MiB 0.88 1203 63.6 MiB 0.13 0.01 3.77449 -135.12 -3.77449 3.77449 0.77 0.000286304 0.000241273 0.0312117 0.0292523 46 3755 39 6.99608e+06 279598 828058. 2865.25 3.28 0.132595 0.118948 2814 25 3030 4258 342396 67851 4.61666 4.61666 -177.083 -4.61666 0 0 1.01997e+06 3529.29 0.33 0.08 0.0194382 0.016952 113 26 128 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 4.82 vpr 62.91 MiB 0.03 7092 -1 -1 1 0.01 -1 -1 33232 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64424 32 32 284 226 1 156 74 17 17 289 -1 unnamed_device 24.4 MiB 0.28 617 62.9 MiB 0.04 0.00 2.36125 -91.2117 -2.36125 2.36125 0.72 0.000140506 0.000113177 0.00890387 0.00737355 46 1861 26 6.99608e+06 147157 828058. 2865.25 1.92 0.0599287 0.0516522 1481 31 1771 2638 291053 115310 3.19192 3.19192 -119.703 -3.19192 0 0 1.01997e+06 3529.29 0.33 0.08 0.0148317 0.0127866 62 -1 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.45 vpr 63.16 MiB 0.03 7092 -1 -1 1 0.01 -1 -1 33356 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64672 30 32 299 247 1 179 77 17 17 289 -1 unnamed_device 24.7 MiB 0.78 679 63.2 MiB 0.06 0.00 2.68144 -95.2385 -2.68144 2.68144 0.71 0.000145039 0.000117295 0.0128148 0.0105733 40 2490 27 6.99608e+06 220735 706193. 2443.58 2.79 0.0765261 0.0542337 1873 22 1653 2174 195999 43475 3.46787 3.46787 -126.146 -3.46787 0 0 926341. 3205.33 0.42 0.05 0.0115034 0.0102592 74 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 6.46 vpr 63.52 MiB 0.02 7416 -1 -1 1 0.02 -1 -1 33292 -1 -1 20 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65044 29 32 397 323 1 244 81 17 17 289 -1 unnamed_device 25.2 MiB 1.75 1005 63.5 MiB 0.08 0.00 3.16913 -104.067 -3.16913 3.16913 0.83 0.000175093 0.000141365 0.0163918 0.0134668 48 2657 18 6.99608e+06 294314 865456. 2994.66 2.02 0.0840163 0.0729728 2148 22 1905 2561 223661 48813 3.80571 3.80571 -134.698 -3.80571 0 0 1.05005e+06 3633.38 0.34 0.06 0.0154516 0.0138532 112 81 29 29 85 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 5.89 vpr 63.66 MiB 0.04 7380 -1 -1 1 0.01 -1 -1 33432 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65184 32 32 408 320 1 249 81 17 17 289 -1 unnamed_device 25.3 MiB 0.91 1141 63.7 MiB 0.08 0.00 3.54484 -131.12 -3.54484 3.54484 0.70 0.000191718 0.000156952 0.0161812 0.0134472 40 3277 38 6.99608e+06 250167 706193. 2443.58 2.49 0.0881163 0.0754658 2898 22 2767 3721 356741 72037 5.1101 5.1101 -182.936 -5.1101 0 0 926341. 3205.33 0.28 0.08 0.0155919 0.0140003 108 53 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 8.22 vpr 63.55 MiB 0.05 7304 -1 -1 1 0.01 -1 -1 33612 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65080 32 32 408 320 1 249 81 17 17 289 -1 unnamed_device 25.2 MiB 1.01 1236 63.6 MiB 0.07 0.00 3.54484 -130.625 -3.54484 3.54484 0.72 0.000185302 0.000150271 0.0152684 0.0127534 38 3916 31 6.99608e+06 250167 678818. 2348.85 4.59 0.102281 0.0898877 3029 26 3156 4321 452787 114378 5.26841 5.26841 -188.327 -5.26841 0 0 902133. 3121.57 0.27 0.10 0.0167522 0.0148726 110 55 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 14.77 vpr 63.30 MiB 0.02 6996 -1 -1 1 0.02 -1 -1 33452 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64824 32 32 346 288 1 212 79 17 17 289 -1 unnamed_device 24.9 MiB 0.77 917 63.3 MiB 0.07 0.00 2.88809 -109.292 -2.88809 2.88809 0.73 0.0001589 0.000128416 0.0148318 0.0122326 38 2994 42 6.99608e+06 220735 678818. 2348.85 11.27 0.150839 0.129922 2182 23 1783 2014 192660 40860 3.79276 3.79276 -144.841 -3.79276 0 0 902133. 3121.57 0.47 0.05 0.0126031 0.011201 92 55 32 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.42 vpr 63.35 MiB 0.04 7212 -1 -1 1 0.01 -1 -1 33316 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64872 31 32 355 304 1 230 80 17 17 289 -1 unnamed_device 25.0 MiB 2.45 986 63.4 MiB 0.06 0.00 2.64844 -98.6147 -2.64844 2.64844 0.71 0.000173884 0.000141884 0.0126044 0.0103837 40 3097 47 6.99608e+06 250167 706193. 2443.58 3.32 0.0815486 0.0699324 2475 32 2569 3231 459225 146712 3.43581 3.43581 -137.098 -3.43581 0 0 926341. 3205.33 0.30 0.11 0.0171738 0.0152212 102 82 0 0 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.25 vpr 63.66 MiB 0.04 7372 -1 -1 1 0.01 -1 -1 33564 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65184 30 32 377 300 1 226 81 17 17 289 -1 unnamed_device 25.0 MiB 1.11 927 63.7 MiB 0.06 0.00 2.85354 -95.6744 -2.85354 2.85354 0.71 0.000176961 0.000144343 0.0125915 0.0105586 44 3154 41 6.99608e+06 279598 787024. 2723.27 2.50 0.0850871 0.0737351 2252 25 2090 2968 272980 58318 3.37577 3.37577 -123.603 -3.37577 0 0 997811. 3452.63 0.34 0.07 0.0159549 0.0139854 101 52 60 30 57 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 6.62 vpr 63.44 MiB 0.02 7352 -1 -1 1 0.01 -1 -1 33552 -1 -1 18 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64964 28 32 337 265 1 197 78 17 17 289 -1 unnamed_device 24.8 MiB 1.07 783 63.4 MiB 0.14 0.00 3.14465 -100.182 -3.14465 3.14465 0.94 0.0001616 0.000130916 0.0161943 0.0134231 44 2651 43 6.99608e+06 264882 787024. 2723.27 2.79 0.0882573 0.0760029 1663 22 1743 2570 186176 42643 4.16662 4.16662 -128.829 -4.16662 0 0 997811. 3452.63 0.31 0.05 0.0127239 0.011374 87 20 84 28 28 28 - fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 6.38 vpr 63.30 MiB 0.04 7180 -1 -1 1 0.01 -1 -1 33196 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64816 30 32 328 276 1 204 77 17 17 289 -1 unnamed_device 24.7 MiB 1.70 856 63.3 MiB 0.06 0.00 3.76754 -124.301 -3.76754 3.76754 0.72 0.000151466 0.000122017 0.0118148 0.00974313 44 2805 24 6.99608e+06 220735 787024. 2723.27 2.03 0.0648527 0.055529 2074 23 1727 2328 204286 42182 3.92835 3.92835 -146.051 -3.92835 0 0 997811. 3452.63 0.33 0.06 0.0128606 0.0114249 88 58 30 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.93 vpr 63.62 MiB 0.02 7168 -1 -1 1 0.02 -1 -1 33272 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65148 32 32 362 309 1 241 79 17 17 289 -1 unnamed_device 25.1 MiB 2.96 1108 63.6 MiB 0.06 0.00 3.09069 -106.21 -3.09069 3.09069 0.70 0.000165309 0.00013333 0.0120492 0.00986143 44 3189 31 6.99608e+06 220735 787024. 2723.27 2.32 0.0740638 0.0633562 2383 30 1977 2504 347380 106390 3.50116 3.50116 -131.937 -3.50116 0 0 997811. 3452.63 0.31 0.09 0.0165023 0.014575 104 88 0 0 91 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.29 vpr 63.04 MiB 0.04 7112 -1 -1 1 0.02 -1 -1 33188 -1 -1 25 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64552 31 32 337 253 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.19 841 63.0 MiB 0.08 0.00 3.13845 -110.338 -3.13845 3.13845 0.69 0.000171255 0.00013815 0.0138327 0.0115029 46 2674 44 6.99608e+06 367892 828058. 2865.25 3.41 0.0809847 0.0697485 1789 31 2204 3459 380188 153514 4.29802 4.29802 -140.759 -4.29802 0 0 1.01997e+06 3529.29 0.37 0.10 0.016573 0.0147117 86 -1 124 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 7.84 vpr 63.61 MiB 0.02 7320 -1 -1 1 0.02 -1 -1 33356 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65136 32 32 408 320 1 249 81 17 17 289 -1 unnamed_device 25.2 MiB 0.84 1144 63.6 MiB 0.07 0.00 3.42564 -126.2 -3.42564 3.42564 0.69 0.000185907 0.000150753 0.0142682 0.0118165 40 3530 42 6.99608e+06 250167 706193. 2443.58 4.46 0.0894147 0.076902 3094 22 2551 3310 386592 75591 4.31431 4.31431 -165.982 -4.31431 0 0 926341. 3205.33 0.28 0.08 0.0156005 0.014021 110 57 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 5.81 vpr 63.81 MiB 0.03 7112 -1 -1 1 0.01 -1 -1 33140 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65344 32 32 408 320 1 248 82 17 17 289 -1 unnamed_device 25.4 MiB 0.65 1127 63.8 MiB 0.08 0.00 4.23178 -141.09 -4.23178 4.23178 0.72 0.000234532 0.000194373 0.0178696 0.0148474 48 3131 26 6.99608e+06 264882 865456. 2994.66 2.53 0.084805 0.0724726 2567 19 2384 3237 313545 66931 5.1284 5.1284 -187.983 -5.1284 0 0 1.05005e+06 3633.38 0.33 0.07 0.0137734 0.0123855 108 62 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 5.60 vpr 63.60 MiB 0.03 7196 -1 -1 1 0.01 -1 -1 33268 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65128 32 32 400 316 1 250 82 17 17 289 -1 unnamed_device 25.3 MiB 0.61 1055 63.6 MiB 0.09 0.00 3.51078 -122.579 -3.51078 3.51078 0.80 0.000184925 0.000149954 0.0164283 0.0135858 50 3509 25 6.99608e+06 264882 902133. 3121.57 2.07 0.0829198 0.0714781 2890 21 2268 3258 288062 64386 4.72415 4.72415 -167.744 -4.72415 0 0 1.08113e+06 3740.92 0.57 0.07 0.0150052 0.0134705 107 62 60 30 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.32 vpr 62.92 MiB 0.02 7168 -1 -1 1 0.01 -1 -1 33240 -1 -1 13 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64428 30 32 299 247 1 179 75 17 17 289 -1 unnamed_device 24.5 MiB 0.97 895 62.9 MiB 0.06 0.00 2.93209 -107.913 -2.93209 2.93209 0.78 0.000147295 0.000118686 0.0122524 0.0102326 40 2496 21 6.99608e+06 191304 706193. 2443.58 1.86 0.0608377 0.0521412 2307 22 1712 2381 276455 54405 3.70046 3.70046 -140.153 -3.70046 0 0 926341. 3205.33 0.28 0.06 0.0118557 0.0105901 76 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.65 vpr 63.70 MiB 0.02 7164 -1 -1 1 0.01 -1 -1 33508 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65228 30 32 386 306 1 237 80 17 17 289 -1 unnamed_device 25.2 MiB 2.01 1018 63.7 MiB 0.08 0.00 3.75497 -126.502 -3.75497 3.75497 0.74 0.000191484 0.000156076 0.0172344 0.0143518 40 3208 47 6.99608e+06 264882 706193. 2443.58 2.83 0.12332 0.104982 2633 22 2733 3837 363024 77210 4.89575 4.89575 -169.902 -4.89575 0 0 926341. 3205.33 0.28 0.10 0.030331 0.028805 105 58 60 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 6.44 vpr 63.71 MiB 0.04 7196 -1 -1 1 0.02 -1 -1 33768 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65244 32 32 470 382 1 309 86 17 17 289 -1 unnamed_device 25.5 MiB 0.80 1390 63.7 MiB 0.09 0.00 3.42564 -126.476 -3.42564 3.42564 0.82 0.000201268 0.000162516 0.0173501 0.014294 44 4329 48 6.99608e+06 323745 787024. 2723.27 2.83 0.0994434 0.0850377 2916 23 2629 2703 254517 50408 4.41325 4.41325 -162.808 -4.41325 0 0 997811. 3452.63 0.31 0.06 0.0170074 0.0151773 139 106 0 0 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 6.31 vpr 63.50 MiB 0.02 7272 -1 -1 1 0.01 -1 -1 33684 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65020 31 32 427 343 1 275 84 17 17 289 -1 unnamed_device 25.4 MiB 1.56 1150 63.5 MiB 0.09 0.00 3.52904 -122.172 -3.52904 3.52904 0.72 0.000187572 0.000151169 0.0195442 0.0160532 46 3208 32 6.99608e+06 309029 828058. 2865.25 2.02 0.0888597 0.0761642 2359 22 2324 2825 235911 49516 4.30331 4.30331 -153.018 -4.30331 0 0 1.01997e+06 3529.29 0.30 0.06 0.0154461 0.0138576 124 79 31 31 93 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.41 vpr 63.47 MiB 0.02 7224 -1 -1 1 0.01 -1 -1 33444 -1 -1 22 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64992 30 32 407 331 1 249 84 17 17 289 -1 unnamed_device 25.1 MiB 2.73 1026 63.5 MiB 0.07 0.00 3.39158 -106.883 -3.39158 3.39158 0.82 0.000182799 0.000147647 0.0140335 0.0119245 50 3070 28 6.99608e+06 323745 902133. 3121.57 2.79 0.093151 0.0821368 2277 23 2392 3441 261561 61099 3.9246 3.9246 -142.091 -3.9246 0 0 1.08113e+06 3740.92 0.33 0.19 0.0372744 0.0354953 114 83 26 26 90 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 6.45 vpr 63.71 MiB 0.04 7384 -1 -1 1 0.01 -1 -1 33600 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65236 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 25.3 MiB 1.03 1082 63.7 MiB 0.08 0.00 3.54484 -125.739 -3.54484 3.54484 0.77 0.000185143 0.000149859 0.0171742 0.0141801 58 2812 31 6.99608e+06 264882 997811. 3452.63 2.71 0.0873576 0.0750928 2326 21 2349 3157 281774 60249 4.65791 4.65791 -173.874 -4.65791 0 0 1.25153e+06 4330.55 0.40 0.07 0.0159962 0.0144157 110 58 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 6.73 vpr 63.71 MiB 0.02 7224 -1 -1 1 0.02 -1 -1 33352 -1 -1 20 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65240 29 32 391 320 1 240 81 17 17 289 -1 unnamed_device 25.1 MiB 1.72 1122 63.7 MiB 0.08 0.00 2.90529 -100.523 -2.90529 2.90529 0.76 0.000179882 0.000146239 0.0155333 0.0128523 40 3091 27 6.99608e+06 294314 706193. 2443.58 2.16 0.0793703 0.0677471 2717 22 2104 2669 255164 53433 3.80196 3.80196 -132.965 -3.80196 0 0 926341. 3205.33 0.29 0.07 0.0149127 0.0133666 110 81 26 26 85 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 6.11 vpr 62.71 MiB 0.03 6940 -1 -1 1 0.00 -1 -1 33124 -1 -1 10 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64216 32 32 284 226 1 155 74 17 17 289 -1 unnamed_device 24.2 MiB 0.73 662 62.7 MiB 0.05 0.00 2.35025 -92.8465 -2.35025 2.35025 0.74 0.000141284 0.000114007 0.0114947 0.0095003 38 2407 48 6.99608e+06 147157 678818. 2348.85 2.84 0.0711926 0.0612606 1823 23 1580 2523 229835 45951 3.49452 3.49452 -132.625 -3.49452 0 0 902133. 3121.57 0.27 0.05 0.0114004 0.0101898 62 -1 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 6.65 vpr 63.34 MiB 0.02 7356 -1 -1 1 0.01 -1 -1 33336 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64860 32 32 408 320 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.65 1074 63.3 MiB 0.07 0.00 4.01233 -142.141 -4.01233 4.01233 0.69 0.000193893 0.000157668 0.0147821 0.0123475 46 3489 29 6.99608e+06 264882 828058. 2865.25 3.38 0.0948508 0.0828944 2746 22 2758 3733 376545 75770 4.9951 4.9951 -180.591 -4.9951 0 0 1.01997e+06 3529.29 0.36 0.08 0.0157832 0.0141763 110 62 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 6.53 vpr 63.70 MiB 0.05 7128 -1 -1 1 0.01 -1 -1 33488 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65228 32 32 408 320 1 255 81 17 17 289 -1 unnamed_device 25.4 MiB 0.81 1051 63.7 MiB 0.09 0.00 4.02333 -142.439 -4.02333 4.02333 0.82 0.000199273 0.000162998 0.0171619 0.0141489 46 3528 26 6.99608e+06 250167 828058. 2865.25 3.02 0.0901044 0.0776174 2716 22 2875 3913 301461 63847 5.01124 5.01124 -183.587 -5.01124 0 0 1.01997e+06 3529.29 0.31 0.07 0.0160257 0.0144086 111 62 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 6.64 vpr 63.42 MiB 0.03 7132 -1 -1 1 0.01 -1 -1 33428 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64944 32 32 316 268 1 202 77 17 17 289 -1 unnamed_device 24.9 MiB 2.16 844 63.4 MiB 0.06 0.00 2.56059 -91.587 -2.56059 2.56059 0.88 0.000147363 0.000118655 0.0135991 0.0111689 42 2525 41 6.99608e+06 191304 744469. 2576.02 1.96 0.0763944 0.0657371 1743 21 1489 1717 135257 29833 3.12416 3.12416 -116.028 -3.12416 0 0 949917. 3286.91 0.29 0.04 0.011279 0.0101159 85 47 32 32 54 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.16 vpr 63.10 MiB 0.03 7140 -1 -1 1 0.01 -1 -1 33368 -1 -1 11 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64616 31 32 277 222 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 0.22 842 63.1 MiB 0.08 0.00 2.6052 -101.986 -2.6052 2.6052 0.86 0.000142213 0.000115088 0.00908269 0.00756619 38 2133 22 6.99608e+06 161872 678818. 2348.85 2.14 0.0576821 0.0496891 1865 22 1496 2191 197038 37849 3.13397 3.13397 -126.043 -3.13397 0 0 902133. 3121.57 0.29 0.10 0.0116248 0.0103855 63 -1 93 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 15.56 vpr 63.34 MiB 0.04 7320 -1 -1 1 0.02 -1 -1 33348 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64856 32 32 382 304 1 235 81 17 17 289 -1 unnamed_device 24.8 MiB 0.91 976 63.3 MiB 0.06 0.00 3.30848 -111.62 -3.30848 3.30848 0.71 0.000177834 0.000144502 0.0134361 0.0111549 40 3219 47 6.99608e+06 250167 706193. 2443.58 12.15 0.178444 0.146061 2469 23 2195 2612 257596 56476 4.43626 4.43626 -151.494 -4.43626 0 0 926341. 3205.33 0.36 0.06 0.0145652 0.0130374 102 56 60 32 58 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.90 vpr 63.51 MiB 0.03 7372 -1 -1 1 0.00 -1 -1 33308 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65036 32 32 407 331 1 251 83 17 17 289 -1 unnamed_device 25.2 MiB 3.11 1317 63.5 MiB 0.09 0.00 3.63234 -127.549 -3.63234 3.63234 0.70 0.000181915 0.000147409 0.0175933 0.0145548 40 3330 25 6.99608e+06 279598 706193. 2443.58 2.33 0.0899229 0.07665 2907 20 2049 2544 246680 50653 4.66231 4.66231 -166.496 -4.66231 0 0 926341. 3205.33 0.27 0.07 0.0245091 0.0230209 113 81 28 28 88 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 6.64 vpr 63.56 MiB 0.02 7260 -1 -1 1 0.02 -1 -1 33524 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65084 32 32 400 286 1 218 91 17 17 289 -1 unnamed_device 25.0 MiB 0.41 1191 63.6 MiB 0.12 0.00 3.52884 -129.87 -3.52884 3.52884 0.78 0.000192826 0.000156676 0.0195604 0.016237 44 3268 39 6.99608e+06 397324 787024. 2723.27 3.29 0.0964004 0.0832221 2616 22 2376 3719 308829 60550 4.43025 4.43025 -167.703 -4.43025 0 0 997811. 3452.63 0.35 0.07 0.0160217 0.014314 100 -1 156 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 5.93 vpr 63.45 MiB 0.02 7240 -1 -1 1 0.01 -1 -1 33404 -1 -1 20 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64976 30 32 374 298 1 227 82 17 17 289 -1 unnamed_device 24.9 MiB 1.22 877 63.5 MiB 0.08 0.00 2.98539 -98.6653 -2.98539 2.98539 0.72 0.0001705 0.00013839 0.0159141 0.0131491 46 2782 28 6.99608e+06 294314 828058. 2865.25 2.11 0.0779026 0.066762 2122 23 2026 2833 220202 49238 3.60341 3.60341 -125.378 -3.60341 0 0 1.01997e+06 3529.29 0.32 0.06 0.0144223 0.0129436 102 47 60 30 56 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.09 vpr 63.22 MiB 0.02 7088 -1 -1 1 0.01 -1 -1 33228 -1 -1 16 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64740 27 32 275 232 1 153 75 17 17 289 -1 unnamed_device 24.6 MiB 1.19 622 63.2 MiB 0.05 0.00 3.02074 -89.3983 -3.02074 3.02074 0.69 0.000134102 0.000107822 0.0109092 0.00901247 38 1713 21 6.99608e+06 235451 678818. 2348.85 1.48 0.0555232 0.0474427 1376 22 1174 1508 119536 26518 3.55311 3.55311 -119.347 -3.55311 0 0 902133. 3121.57 0.33 0.04 0.0112686 0.00928295 68 26 54 27 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 6.94 vpr 63.67 MiB 0.02 7352 -1 -1 1 0.01 -1 -1 33656 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65196 32 32 494 379 1 313 85 17 17 289 -1 unnamed_device 25.7 MiB 0.73 1549 63.7 MiB 0.10 0.00 3.51804 -128.775 -3.51804 3.51804 0.66 0.000248698 0.000205436 0.0222842 0.0188438 44 4745 37 6.99608e+06 309029 787024. 2723.27 3.79 0.123808 0.107929 3522 24 3007 4116 420143 90545 4.73421 4.73421 -171.512 -4.73421 0 0 997811. 3452.63 0.32 0.09 0.019697 0.0176811 140 85 62 31 95 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 8.41 vpr 63.69 MiB 0.07 7448 -1 -1 1 0.01 -1 -1 33584 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65220 31 32 457 373 1 302 85 17 17 289 -1 unnamed_device 25.5 MiB 2.69 1277 63.7 MiB 0.09 0.00 4.12662 -134.525 -4.12662 4.12662 0.84 0.000203068 0.000165791 0.018584 0.0155679 44 4229 42 6.99608e+06 323745 787024. 2723.27 2.71 0.104496 0.089998 2630 23 2674 3003 264694 55697 5.03424 5.03424 -177.977 -5.03424 0 0 997811. 3452.63 0.31 0.07 0.0175794 0.0157056 138 105 0 0 124 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.91 vpr 63.27 MiB 0.02 7232 -1 -1 1 0.01 -1 -1 33316 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64792 32 32 356 305 1 233 79 17 17 289 -1 unnamed_device 24.9 MiB 2.81 1080 63.3 MiB 0.07 0.00 2.99983 -111.51 -2.99983 2.99983 0.76 0.000162035 0.000130217 0.0148443 0.012492 38 2945 31 6.99608e+06 220735 678818. 2348.85 2.56 0.0736981 0.06257 2270 21 1830 2228 186667 39072 3.607 3.607 -135.871 -3.607 0 0 902133. 3121.57 0.27 0.05 0.0133537 0.0119903 102 86 0 0 89 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 15.47 vpr 63.57 MiB 0.04 7312 -1 -1 1 0.02 -1 -1 33108 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65092 32 32 365 283 1 217 79 17 17 289 -1 unnamed_device 25.1 MiB 0.72 1090 63.6 MiB 0.08 0.00 3.25275 -116.929 -3.25275 3.25275 0.66 0.000172748 0.000140022 0.0154014 0.0127337 38 3560 41 6.99608e+06 220735 678818. 2348.85 12.34 0.174189 0.125076 2546 21 1969 2659 266095 53962 4.65062 4.65062 -162.097 -4.65062 0 0 902133. 3121.57 0.27 0.06 0.0135801 0.0121825 91 31 90 30 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.27 vpr 63.38 MiB 0.08 7484 -1 -1 1 0.02 -1 -1 34012 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64904 31 32 445 338 1 261 84 17 17 289 -1 unnamed_device 25.3 MiB 1.49 1234 63.4 MiB 0.09 0.00 3.18065 -115.625 -3.18065 3.18065 0.74 0.000201207 0.000163996 0.0183365 0.0151923 36 3815 41 6.99608e+06 309029 648988. 2245.63 5.23 0.107735 0.093253 3052 24 2766 3678 368276 74767 4.42202 4.42202 -164.484 -4.42202 0 0 828058. 2865.25 0.26 0.08 0.0182458 0.0157927 118 50 87 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 5.77 vpr 63.54 MiB 0.02 7392 -1 -1 1 0.01 -1 -1 33544 -1 -1 20 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65064 30 32 376 300 1 228 82 17 17 289 -1 unnamed_device 25.0 MiB 1.20 1017 63.5 MiB 0.08 0.00 2.93349 -99.1517 -2.93349 2.93349 0.70 0.000172668 0.000139577 0.0153237 0.0126016 44 3118 26 6.99608e+06 294314 787024. 2723.27 2.01 0.0833 0.0719789 2354 21 1889 2768 225050 48095 3.41642 3.41642 -128.949 -3.41642 0 0 997811. 3452.63 0.31 0.06 0.0136832 0.0122467 102 50 58 30 58 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 5.99 vpr 63.57 MiB 0.02 7208 -1 -1 1 0.02 -1 -1 33308 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65096 32 32 408 320 1 252 81 17 17 289 -1 unnamed_device 25.3 MiB 0.71 1192 63.6 MiB 0.09 0.00 3.42564 -125.225 -3.42564 3.42564 0.69 0.000184024 0.000148011 0.0172774 0.0142162 48 3480 46 6.99608e+06 250167 865456. 2994.66 2.42 0.0928839 0.0793273 2789 23 2486 3097 331298 72136 4.18665 4.18665 -162.647 -4.18665 0 0 1.05005e+06 3633.38 0.32 0.08 0.0164567 0.0147953 107 61 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 14.37 vpr 63.54 MiB 0.02 7180 -1 -1 1 0.01 -1 -1 33308 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65060 32 32 406 319 1 253 82 17 17 289 -1 unnamed_device 25.3 MiB 0.76 1180 63.5 MiB 0.15 0.00 2.73464 -107.502 -2.73464 2.73464 0.73 0.000190822 0.00015495 0.025464 0.021648 38 3470 49 6.99608e+06 264882 678818. 2348.85 11.11 0.206004 0.181934 2725 23 2417 3091 267347 54455 4.10131 4.10131 -162.263 -4.10131 0 0 902133. 3121.57 0.26 0.07 0.0164284 0.0147132 108 61 63 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 5.52 vpr 62.95 MiB 0.02 7032 -1 -1 1 0.01 -1 -1 33200 -1 -1 14 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64460 29 32 291 242 1 171 75 17 17 289 -1 unnamed_device 24.4 MiB 0.71 793 62.9 MiB 0.04 0.00 2.89729 -101.937 -2.89729 2.89729 0.85 0.000139098 0.000111852 0.00800063 0.00660115 36 2269 49 6.99608e+06 206020 648988. 2245.63 2.36 0.0906455 0.0809805 1831 23 1655 2121 204605 42757 3.60517 3.60517 -130.281 -3.60517 0 0 828058. 2865.25 0.27 0.05 0.0115097 0.0102758 73 28 58 29 29 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.11 vpr 63.17 MiB 0.02 7172 -1 -1 1 0.01 -1 -1 33376 -1 -1 14 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64684 32 32 335 291 1 207 78 17 17 289 -1 unnamed_device 24.6 MiB 2.53 847 63.2 MiB 0.06 0.00 3.09393 -101.255 -3.09393 3.09393 0.72 0.000152016 0.000121488 0.0123678 0.0102022 44 2364 47 6.99608e+06 206020 787024. 2723.27 1.88 0.091638 0.0806899 1926 20 1521 1822 146764 32869 4.1551 4.1551 -132.428 -4.1551 0 0 997811. 3452.63 0.31 0.04 0.012473 0.0112458 91 79 0 0 82 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 6.26 vpr 63.55 MiB 0.02 7112 -1 -1 1 0.01 -1 -1 33300 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65076 31 32 367 283 1 217 79 17 17 289 -1 unnamed_device 25.1 MiB 0.64 891 63.6 MiB 0.06 0.00 3.18065 -111.647 -3.18065 3.18065 0.89 0.000180845 0.00014792 0.0129718 0.0109816 44 3110 47 6.99608e+06 235451 787024. 2723.27 2.75 0.139279 0.127417 2001 21 1903 2455 184166 41317 4.24172 4.24172 -149.648 -4.24172 0 0 997811. 3452.63 0.32 0.06 0.0145623 0.0131025 91 29 93 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 5.42 vpr 63.15 MiB 0.03 7188 -1 -1 1 0.01 -1 -1 33320 -1 -1 16 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64668 29 32 301 258 1 191 77 17 17 289 -1 unnamed_device 24.7 MiB 1.54 765 63.2 MiB 0.06 0.00 2.55329 -83.9465 -2.55329 2.55329 0.66 0.000141571 0.000113428 0.0133834 0.0109784 40 2304 41 6.99608e+06 235451 706193. 2443.58 1.58 0.0645988 0.0548637 1801 24 1613 1827 157391 35125 3.44996 3.44996 -116.294 -3.44996 0 0 926341. 3205.33 0.27 0.04 0.0116798 0.0104032 81 48 29 29 52 26 - fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 11.01 vpr 63.07 MiB 0.03 7100 -1 -1 1 0.01 -1 -1 33160 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64584 32 32 315 257 1 188 77 17 17 289 -1 unnamed_device 24.6 MiB 0.63 861 63.1 MiB 0.06 0.00 2.94309 -112.921 -2.94309 2.94309 0.69 0.000153387 0.000124378 0.0112254 0.00931481 38 2515 29 6.99608e+06 191304 678818. 2348.85 7.82 0.10889 0.0938813 2062 34 2284 2955 435802 148989 3.58916 3.58916 -140.622 -3.58916 0 0 902133. 3121.57 0.27 0.11 0.0162931 0.0143618 79 31 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 14.56 vpr 63.47 MiB 0.02 7260 -1 -1 1 0.02 -1 -1 33324 -1 -1 19 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64992 31 32 389 309 1 239 82 17 17 289 -1 unnamed_device 24.9 MiB 1.16 954 63.5 MiB 0.08 0.00 3.47288 -119.506 -3.47288 3.47288 0.73 0.0001804 0.000145829 0.0154589 0.0127675 40 3443 44 6.99608e+06 279598 706193. 2443.58 10.87 0.155301 0.132911 2593 23 2536 3420 340513 74983 4.29145 4.29145 -156.475 -4.29145 0 0 926341. 3205.33 0.27 0.07 0.0158709 0.0142171 105 60 58 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 8.28 vpr 63.12 MiB 0.02 7064 -1 -1 1 0.01 -1 -1 33364 -1 -1 13 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64632 31 32 310 264 1 192 76 17 17 289 -1 unnamed_device 24.6 MiB 2.22 854 63.1 MiB 0.05 0.00 2.61074 -92.4635 -2.61074 2.61074 0.73 0.000148211 0.000119297 0.0103076 0.00857118 36 2806 29 6.99608e+06 191304 648988. 2245.63 3.61 0.0677535 0.0587144 2112 21 1485 1852 197869 40111 2.99502 2.99502 -118.203 -2.99502 0 0 828058. 2865.25 0.25 0.05 0.0108546 0.00968835 81 49 31 31 53 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 16.86 vpr 63.31 MiB 0.02 7392 -1 -1 1 0.02 -1 -1 33396 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64828 32 32 384 308 1 232 82 17 17 289 -1 unnamed_device 24.8 MiB 1.11 1011 63.3 MiB 0.07 0.00 2.86129 -101.475 -2.86129 2.86129 0.70 0.000175366 0.000141073 0.0144966 0.0119309 46 2751 45 6.99608e+06 264882 828058. 2865.25 13.17 0.154108 0.133908 2065 20 1513 1977 163868 34744 3.34286 3.34286 -126.035 -3.34286 0 0 1.01997e+06 3529.29 0.32 0.05 0.0131771 0.0118368 103 56 52 26 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 6.42 vpr 63.48 MiB 0.02 7464 -1 -1 1 0.02 -1 -1 33556 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65000 31 32 424 341 1 272 84 17 17 289 -1 unnamed_device 25.4 MiB 0.82 1303 63.5 MiB 0.10 0.00 3.98442 -132.098 -3.98442 3.98442 0.69 0.000219549 0.000181386 0.0188695 0.0157394 46 3624 32 6.99608e+06 309029 828058. 2865.25 2.83 0.0914456 0.0783974 2876 20 2301 3151 254676 51644 4.71684 4.71684 -170.162 -4.71684 0 0 1.01997e+06 3529.29 0.30 0.06 0.0147717 0.0132883 122 88 31 31 92 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 6.90 vpr 63.23 MiB 0.02 7072 -1 -1 1 0.01 -1 -1 33276 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64748 32 32 334 280 1 208 77 17 17 289 -1 unnamed_device 24.6 MiB 2.55 932 63.2 MiB 0.06 0.00 2.71294 -98.4414 -2.71294 2.71294 0.87 0.000152689 0.000122836 0.0124944 0.0103224 44 2881 28 6.99608e+06 191304 787024. 2723.27 1.74 0.0773297 0.0677679 2174 20 1564 2125 185726 39760 3.23942 3.23942 -120.255 -3.23942 0 0 997811. 3452.63 0.32 0.05 0.0121161 0.0108804 88 54 32 32 60 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 5.58 vpr 63.28 MiB 0.02 6940 -1 -1 1 0.01 -1 -1 33192 -1 -1 14 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64796 32 32 340 284 1 212 78 17 17 289 -1 unnamed_device 24.9 MiB 0.89 809 63.3 MiB 0.06 0.00 2.68144 -98.2252 -2.68144 2.68144 0.70 0.000171766 0.000140826 0.012397 0.0102376 58 2066 28 6.99608e+06 206020 997811. 3452.63 2.13 0.077608 0.0663609 1573 20 1606 1942 139454 33450 3.28312 3.28312 -123.881 -3.28312 0 0 1.25153e+06 4330.55 0.37 0.04 0.0114591 0.010279 91 60 32 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 5.52 vpr 63.92 MiB 0.03 7200 -1 -1 1 0.01 -1 -1 33680 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65456 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 25.5 MiB 0.88 1004 63.9 MiB 0.08 0.00 3.22785 -118.103 -3.22785 3.22785 0.92 0.000183402 0.000148806 0.0162556 0.0135478 44 3061 33 6.99608e+06 264882 787024. 2723.27 1.85 0.0848806 0.0728538 2147 22 2302 2765 211234 46439 3.99922 3.99922 -149.953 -3.99922 0 0 997811. 3452.63 0.31 0.05 0.0150206 0.0134545 110 49 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 13.75 vpr 63.50 MiB 0.03 7248 -1 -1 1 0.01 -1 -1 33608 -1 -1 21 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65020 29 32 371 297 1 222 82 17 17 289 -1 unnamed_device 24.9 MiB 1.72 1026 63.5 MiB 0.06 0.00 2.79574 -96.5018 -2.79574 2.79574 0.70 0.000187201 0.000155203 0.0120347 0.0100277 38 2893 26 6.99608e+06 309029 678818. 2348.85 9.39 0.141524 0.12282 2326 23 2170 3043 240050 50552 3.44181 3.44181 -124.242 -3.44181 0 0 902133. 3121.57 0.27 0.06 0.0140961 0.0125765 101 54 56 29 58 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 6.87 vpr 63.52 MiB 0.04 7312 -1 -1 1 0.01 -1 -1 33528 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65048 32 32 470 382 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.82 1433 63.5 MiB 0.11 0.00 3.68467 -137.143 -3.68467 3.68467 0.72 0.000223241 0.000182412 0.0222022 0.0184758 44 4262 47 6.99608e+06 323745 787024. 2723.27 3.34 0.105691 0.0903906 3285 25 3432 4036 361955 72341 4.54214 4.54214 -175.233 -4.54214 0 0 997811. 3452.63 0.30 0.08 0.0175438 0.0155935 140 117 0 0 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.02 vpr 62.74 MiB 0.05 6944 -1 -1 1 0.01 -1 -1 33084 -1 -1 11 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64244 31 32 261 214 1 143 74 17 17 289 -1 unnamed_device 24.4 MiB 0.99 663 62.7 MiB 0.04 0.00 2.29975 -78.881 -2.29975 2.29975 0.69 0.000133373 0.000106891 0.00948038 0.00781071 38 2199 34 6.99608e+06 161872 678818. 2348.85 2.56 0.0744356 0.054728 1703 19 1160 1780 166228 35421 3.13887 3.13887 -118.528 -3.13887 0 0 902133. 3121.57 0.27 0.04 0.00944176 0.00840268 57 -1 85 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 8.81 vpr 63.55 MiB 0.02 7224 -1 -1 1 0.02 -1 -1 33348 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65076 32 32 419 339 1 263 85 17 17 289 -1 unnamed_device 25.1 MiB 3.27 1355 63.6 MiB 0.08 0.00 3.87743 -138.017 -3.87743 3.87743 0.69 0.000208276 0.00017263 0.0165273 0.0137716 46 3548 38 6.99608e+06 309029 828058. 2865.25 2.99 0.0911966 0.0785351 2853 21 2483 3167 280567 68394 5.1268 5.1268 -180.253 -5.1268 0 0 1.01997e+06 3529.29 0.30 0.08 0.0160574 0.0144098 118 89 28 28 92 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 7.51 vpr 63.37 MiB 0.02 7176 -1 -1 1 0.01 -1 -1 33288 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64888 32 32 377 319 1 253 80 17 17 289 -1 unnamed_device 24.9 MiB 0.93 1165 63.4 MiB 0.07 0.00 3.78697 -139.484 -3.78697 3.78697 0.75 0.000167099 0.000135233 0.0128577 0.0106393 40 3428 36 6.99608e+06 235451 706193. 2443.58 3.80 0.078266 0.0673311 3049 21 2887 3631 467470 87924 4.79374 4.79374 -182.209 -4.79374 0 0 926341. 3205.33 0.29 0.09 0.0141551 0.0126878 110 93 0 0 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 5.76 vpr 63.59 MiB 0.02 7116 -1 -1 1 0.02 -1 -1 33280 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65116 32 32 402 317 1 247 83 17 17 289 -1 unnamed_device 25.2 MiB 0.80 1251 63.6 MiB 0.07 0.00 2.82874 -113.599 -2.82874 2.82874 0.72 0.000184839 0.000150728 0.0143294 0.0119697 40 3232 25 6.99608e+06 279598 706193. 2443.58 2.26 0.0873636 0.0762389 2831 23 2342 2976 314141 61986 3.54211 3.54211 -145.48 -3.54211 0 0 926341. 3205.33 0.29 0.08 0.0163949 0.0147027 106 59 61 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.46 vpr 63.83 MiB 0.02 7572 -1 -1 1 0.02 -1 -1 33736 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65364 32 32 501 383 1 312 86 17 17 289 -1 unnamed_device 25.7 MiB 0.82 1320 63.8 MiB 0.09 0.00 3.84453 -135.889 -3.84453 3.84453 0.73 0.000262542 0.000218607 0.0181226 0.015016 60 3338 47 6.99608e+06 323745 1.01997e+06 3529.29 2.65 0.122502 0.0978652 2629 23 2819 3278 325457 67680 5.2314 5.2314 -185.304 -5.2314 0 0 1.27783e+06 4421.56 0.59 0.11 0.019062 0.0170784 141 81 64 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.67 vpr 62.82 MiB 0.02 6828 -1 -1 1 0.01 -1 -1 33068 -1 -1 13 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64324 30 32 249 232 1 154 75 17 17 289 -1 unnamed_device 24.4 MiB 2.25 508 62.8 MiB 0.04 0.00 2.25155 -75.725 -2.25155 2.25155 0.72 0.000117064 9.255e-05 0.00940739 0.00761051 42 1798 38 6.99608e+06 191304 744469. 2576.02 1.70 0.0550211 0.0467542 1189 19 895 912 86137 21342 2.63502 2.63502 -92.2398 -2.63502 0 0 949917. 3286.91 0.31 0.03 0.00900811 0.00803763 65 51 0 0 53 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.12 vpr 63.14 MiB 0.03 7188 -1 -1 1 0.01 -1 -1 33396 -1 -1 14 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64656 30 32 299 247 1 167 76 17 17 289 -1 unnamed_device 24.5 MiB 3.36 893 63.1 MiB 0.04 0.00 2.78909 -103.174 -2.78909 2.78909 0.73 0.00015046 0.00012177 0.00797636 0.00667908 34 2302 27 6.99608e+06 206020 618332. 2139.56 1.31 0.058884 0.0504903 2001 19 1367 1976 185465 38636 3.65641 3.65641 -142.624 -3.65641 0 0 787024. 2723.27 0.25 0.05 0.0117872 0.0106602 72 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 5.10 vpr 63.12 MiB 0.02 6912 -1 -1 1 0.02 -1 -1 33452 -1 -1 12 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64640 32 32 315 257 1 192 76 17 17 289 -1 unnamed_device 24.6 MiB 0.30 963 63.1 MiB 0.07 0.00 2.73464 -110.266 -2.73464 2.73464 0.72 0.000154944 0.000125885 0.0140422 0.0116471 44 3002 32 6.99608e+06 176588 787024. 2723.27 2.24 0.0788994 0.0689937 2278 19 1878 2932 241896 48535 3.58311 3.58311 -143.436 -3.58311 0 0 997811. 3452.63 0.30 0.05 0.0114384 0.0103039 80 31 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.22 vpr 62.86 MiB 0.02 7012 -1 -1 1 0.01 -1 -1 33688 -1 -1 18 25 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64364 25 32 259 222 1 151 75 17 17 289 -1 unnamed_device 24.3 MiB 0.75 529 62.9 MiB 0.04 0.00 2.75555 -75.6545 -2.75555 2.75555 0.73 0.000124364 9.9287e-05 0.00937055 0.00775015 40 1976 31 6.99608e+06 264882 706193. 2443.58 2.07 0.0555174 0.047557 1515 31 1532 1985 197994 48414 3.22957 3.22957 -99.8311 -3.22957 0 0 926341. 3205.33 0.26 0.05 0.0119625 0.0105482 68 19 50 25 25 25 - fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 6.09 vpr 63.33 MiB 0.04 7416 -1 -1 1 0.01 -1 -1 33416 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64848 32 32 433 347 1 281 84 17 17 289 -1 unnamed_device 25.2 MiB 0.93 1213 63.3 MiB 0.09 0.00 3.14275 -112.519 -3.14275 3.14275 0.77 0.000189847 0.000153576 0.0182918 0.0150928 54 3633 45 6.99608e+06 294314 949917. 3286.91 2.39 0.100908 0.0859101 2674 24 2749 3881 323290 68168 4.25572 4.25572 -152.013 -4.25572 0 0 1.17392e+06 4061.99 0.35 0.07 0.0162259 0.0144749 125 84 32 32 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 6.50 vpr 63.38 MiB 0.02 7284 -1 -1 1 0.01 -1 -1 33212 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64900 31 32 423 341 1 270 85 17 17 289 -1 unnamed_device 25.1 MiB 0.89 1215 63.4 MiB 0.08 0.00 3.44908 -118.753 -3.44908 3.44908 0.72 0.000193383 0.000156687 0.0166732 0.0138769 44 3552 39 6.99608e+06 323745 787024. 2723.27 2.86 0.103738 0.0885215 2556 23 2299 3082 243828 51740 4.1979 4.1979 -158.737 -4.1979 0 0 997811. 3452.63 0.31 0.11 0.0375887 0.0341906 121 88 29 29 93 31 - fixed_k6_frac_N8_22nm.xml mult_001.v common 9.47 vpr 63.15 MiB 0.03 7000 -1 -1 14 0.24 -1 -1 35888 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64664 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.5 MiB 2.03 1288 63.1 MiB 0.05 0.00 6.7166 -138.59 -6.7166 6.7166 0.71 0.000281255 0.000228641 0.0117887 0.00990161 38 3370 45 6.79088e+06 255968 678818. 2348.85 4.59 0.137582 0.117757 2822 17 1372 3630 230729 57752 7.5545 7.5545 -165.782 -7.5545 0 0 902133. 3121.57 0.28 0.06 0.0176686 0.016206 134 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_002.v common 7.38 vpr 63.09 MiB 0.03 7000 -1 -1 14 0.28 -1 -1 36004 -1 -1 20 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64608 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.4 MiB 1.96 1194 63.1 MiB 0.07 0.00 6.67048 -131.668 -6.67048 6.67048 0.73 0.000252433 0.000210983 0.0177909 0.0149782 38 3186 30 6.79088e+06 269440 678818. 2348.85 2.53 0.10656 0.0932595 2574 21 1409 3853 207856 47039 7.09328 7.09328 -153.447 -7.09328 0 0 902133. 3121.57 0.27 0.06 0.0192781 0.0175575 132 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_003.v common 9.06 vpr 63.26 MiB 0.04 7024 -1 -1 11 0.21 -1 -1 36244 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64780 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.7 MiB 1.69 1330 63.3 MiB 0.08 0.00 5.66443 -121.874 -5.66443 5.66443 0.73 0.000265551 0.000221172 0.0203022 0.0171134 34 3917 46 6.79088e+06 269440 618332. 2139.56 4.58 0.137899 0.123117 3172 19 1374 4110 290643 61643 5.94725 5.94725 -145.786 -5.94725 0 0 787024. 2723.27 0.25 0.07 0.0183029 0.0167294 138 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_004.v common 6.32 vpr 63.23 MiB 0.02 7128 -1 -1 12 0.32 -1 -1 36016 -1 -1 22 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64748 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.6 MiB 1.37 1077 63.2 MiB 0.06 0.00 5.95777 -117.514 -5.95777 5.95777 0.78 0.000246703 0.000204502 0.0156113 0.013112 38 3080 32 6.79088e+06 296384 678818. 2348.85 2.05 0.115883 0.102336 2486 17 1226 3626 189325 42883 6.24757 6.24757 -135.491 -6.24757 0 0 902133. 3121.57 0.29 0.06 0.0184714 0.0170745 136 180 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_005.v common 8.39 vpr 63.23 MiB 0.03 7060 -1 -1 13 0.33 -1 -1 35936 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64752 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.6 MiB 2.21 1442 63.2 MiB 0.08 0.00 6.79921 -141.065 -6.79921 6.79921 0.85 0.000277214 0.000229345 0.0199667 0.0174485 36 4210 31 6.79088e+06 323328 648988. 2245.63 3.03 0.133197 0.116668 3565 18 1870 4966 295535 66752 6.92451 6.92451 -161.47 -6.92451 0 0 828058. 2865.25 0.32 0.08 0.0216103 0.019819 160 222 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_006.v common 9.29 vpr 63.26 MiB 0.02 6976 -1 -1 12 0.28 -1 -1 35960 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64776 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.8 MiB 2.38 1345 63.3 MiB 0.05 0.00 6.25532 -135.893 -6.25532 6.25532 0.88 0.000258314 0.000214505 0.0126476 0.0107226 38 3628 48 6.79088e+06 323328 678818. 2348.85 3.87 0.124294 0.108426 3005 18 1432 4291 251940 54909 6.63122 6.63122 -153.357 -6.63122 0 0 902133. 3121.57 0.32 0.06 0.0183334 0.0168054 150 204 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_007.v common 6.49 vpr 62.75 MiB 0.04 6924 -1 -1 12 0.18 -1 -1 35640 -1 -1 20 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64260 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 24.1 MiB 1.49 1013 62.8 MiB 0.04 0.00 5.95433 -114.486 -5.95433 5.95433 0.67 0.000184069 0.000151472 0.0100497 0.0084577 46 2443 18 6.79088e+06 269440 828058. 2865.25 2.00 0.0855642 0.0765499 2038 15 940 2491 135026 29469 6.11873 6.11873 -126.104 -6.11873 0 0 1.01997e+06 3529.29 0.32 0.05 0.0130147 0.0119713 101 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_008.v common 7.82 vpr 62.62 MiB 0.02 7000 -1 -1 11 0.17 -1 -1 35956 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64128 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.3 MiB 1.25 1246 62.6 MiB 0.08 0.00 5.37457 -117.365 -5.37457 5.37457 0.72 0.000227923 0.000188151 0.0193414 0.0161383 38 3279 33 6.79088e+06 242496 678818. 2348.85 3.99 0.104819 0.0914754 2469 17 1104 3269 177439 39117 5.75047 5.75047 -134.449 -5.75047 0 0 902133. 3121.57 0.26 0.05 0.016053 0.0147556 118 171 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_009.v common 6.80 vpr 62.74 MiB 0.04 6896 -1 -1 12 0.16 -1 -1 35652 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64248 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 2.43 995 62.7 MiB 0.06 0.00 5.36693 -111.933 -5.36693 5.36693 0.72 0.000191824 0.000156977 0.014589 0.012193 38 2609 28 6.79088e+06 242496 678818. 2348.85 1.54 0.0851805 0.0741674 2227 15 1091 2386 132848 30319 5.86813 5.86813 -132.846 -5.86813 0 0 902133. 3121.57 0.27 0.04 0.0133056 0.012263 111 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_010.v common 11.70 vpr 62.77 MiB 0.02 6740 -1 -1 13 0.19 -1 -1 35928 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64276 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.3 MiB 1.46 1117 62.8 MiB 0.03 0.00 5.99697 -138.702 -5.99697 5.99697 0.82 0.000212687 0.000174964 0.00836572 0.0071565 30 3210 39 6.79088e+06 215552 556674. 1926.21 7.59 0.130551 0.111152 2425 18 1128 2726 142881 32762 6.12227 6.12227 -157.976 -6.12227 0 0 706193. 2443.58 0.23 0.05 0.0157582 0.014422 107 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_011.v common 6.32 vpr 62.62 MiB 0.02 6832 -1 -1 12 0.16 -1 -1 35988 -1 -1 16 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64120 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 24.0 MiB 1.61 833 62.6 MiB 0.05 0.00 6.12227 -122.175 -6.12227 6.12227 0.81 0.000177057 0.000143942 0.0123104 0.0102222 36 2496 26 6.79088e+06 215552 648988. 2245.63 2.14 0.0738237 0.0640958 1980 17 859 2323 139797 34936 6.24757 6.24757 -140.933 -6.24757 0 0 828058. 2865.25 0.25 0.05 0.01293 0.0118277 93 126 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_012.v common 15.18 vpr 62.42 MiB 0.02 6736 -1 -1 12 0.14 -1 -1 35884 -1 -1 14 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63920 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 23.8 MiB 1.95 1030 62.4 MiB 0.04 0.00 5.32429 -130.082 -5.32429 5.32429 0.73 0.00017745 0.000144464 0.00930034 0.00780024 40 2442 14 6.79088e+06 188608 706193. 2443.58 10.51 0.128474 0.11171 2468 15 953 2403 167615 36493 5.50987 5.50987 -146.182 -5.50987 0 0 926341. 3205.33 0.35 0.08 0.0128136 0.0118001 94 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_013.v common 8.82 vpr 63.27 MiB 0.02 6944 -1 -1 13 0.26 -1 -1 36332 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64792 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.9 MiB 1.52 1328 63.3 MiB 0.08 0.00 6.46246 -138.327 -6.46246 6.46246 0.75 0.000258394 0.000208948 0.0203697 0.0170407 36 3528 23 6.79088e+06 282912 648988. 2245.63 4.53 0.113457 0.0982475 2797 16 1345 3805 211489 48145 6.84611 6.84611 -158.367 -6.84611 0 0 828058. 2865.25 0.26 0.06 0.0197307 0.018152 148 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_014.v common 7.47 vpr 63.26 MiB 0.04 6976 -1 -1 14 0.33 -1 -1 36272 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64776 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.8 MiB 1.75 1381 63.3 MiB 0.07 0.00 7.47615 -154.396 -7.47615 7.47615 0.71 0.000256011 0.000210565 0.0174209 0.0145833 38 3803 29 6.79088e+06 282912 678818. 2348.85 2.83 0.117383 0.102287 2921 17 1565 4119 209123 48089 7.60145 7.60145 -168.591 -7.60145 0 0 902133. 3121.57 0.27 0.06 0.0199674 0.0182529 149 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_015.v common 7.73 vpr 62.98 MiB 0.03 6812 -1 -1 11 0.16 -1 -1 35660 -1 -1 20 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64488 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1108 63.0 MiB 0.07 0.00 5.57838 -114.252 -5.57838 5.57838 0.88 0.000189587 0.000154856 0.0166548 0.0139707 36 2746 20 6.79088e+06 269440 648988. 2245.63 3.38 0.0861981 0.074929 2386 34 1134 2804 595475 323442 6.16568 6.16568 -131.797 -6.16568 0 0 828058. 2865.25 0.25 0.16 0.0232782 0.0210184 111 149 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_016.v common 12.45 vpr 63.50 MiB 0.03 7028 -1 -1 12 0.26 -1 -1 36104 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65024 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.9 MiB 2.60 1348 63.5 MiB 0.09 0.00 6.33711 -133.22 -6.33711 6.33711 0.74 0.000259286 0.000213813 0.0305697 0.0168627 40 4472 42 6.79088e+06 269440 706193. 2443.58 6.72 0.144093 0.115471 3566 36 2599 9187 1102788 390253 7.41442 7.41442 -159.587 -7.41442 0 0 926341. 3205.33 0.40 0.33 0.0605473 0.0573329 146 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_017.v common 6.96 vpr 63.39 MiB 0.02 6976 -1 -1 13 0.27 -1 -1 36372 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64908 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 25.0 MiB 1.77 1272 63.4 MiB 0.09 0.00 7.21775 -147.064 -7.21775 7.21775 0.70 0.000248755 0.000202907 0.0248131 0.0183599 40 3240 25 6.79088e+06 282912 706193. 2443.58 2.35 0.132551 0.109043 2924 16 1388 3907 236903 53524 7.34305 7.34305 -162.563 -7.34305 0 0 926341. 3205.33 0.29 0.06 0.0189216 0.0174084 144 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_018.v common 6.69 vpr 62.89 MiB 0.03 6764 -1 -1 12 0.15 -1 -1 36244 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64396 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 24.4 MiB 2.21 935 62.9 MiB 0.05 0.00 5.61753 -128.977 -5.61753 5.61753 0.78 0.000206687 0.000171351 0.0122008 0.0102194 34 2573 19 6.79088e+06 215552 618332. 2139.56 1.67 0.0743746 0.0645459 2190 17 942 2552 156172 35696 5.86813 5.86813 -149.072 -5.86813 0 0 787024. 2723.27 0.26 0.05 0.0151932 0.0132482 104 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_019.v common 8.43 vpr 62.29 MiB 0.01 6716 -1 -1 10 0.09 -1 -1 35656 -1 -1 12 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63788 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.8 MiB 2.76 712 62.3 MiB 0.04 0.00 4.53881 -103.046 -4.53881 4.53881 0.85 0.00015021 0.000124445 0.00891783 0.00689293 36 2163 23 6.79088e+06 161664 648988. 2245.63 2.74 0.0596972 0.0505631 1654 42 830 1979 316944 169905 4.83631 4.83631 -117.298 -4.83631 0 0 828058. 2865.25 0.26 0.10 0.0165874 0.0146504 67 85 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_020.v common 6.87 vpr 62.86 MiB 0.02 6772 -1 -1 13 0.15 -1 -1 35840 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64372 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 24.4 MiB 2.19 983 62.9 MiB 0.03 0.00 6.28682 -136.552 -6.28682 6.28682 0.72 0.000216479 0.000179922 0.00817429 0.00696166 36 2669 23 6.79088e+06 215552 648988. 2245.63 2.20 0.0738224 0.0646537 2180 15 903 2119 130048 29550 6.99599 6.99599 -160.902 -6.99599 0 0 828058. 2865.25 0.25 0.04 0.0123214 0.0113442 99 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_021.v common 14.60 vpr 63.29 MiB 0.02 6960 -1 -1 13 0.28 -1 -1 35912 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64812 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.9 MiB 1.45 1322 63.3 MiB 0.06 0.00 6.29103 -132.399 -6.29103 6.29103 0.97 0.00028544 0.000210012 0.0154606 0.0134387 38 3444 30 6.79088e+06 296384 678818. 2348.85 9.80 0.203447 0.174891 2853 20 1578 4424 221173 50473 7.04283 7.04283 -159.795 -7.04283 0 0 902133. 3121.57 0.28 0.07 0.0224098 0.0202783 143 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_022.v common 7.69 vpr 63.01 MiB 0.04 7120 -1 -1 13 0.28 -1 -1 36396 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64524 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.6 MiB 1.96 1391 63.0 MiB 0.05 0.00 6.80381 -144.668 -6.80381 6.80381 0.76 0.00026333 0.000217937 0.0145849 0.0123922 46 3289 17 6.79088e+06 255968 828058. 2865.25 2.66 0.144075 0.130282 2783 15 1245 3554 196299 43401 7.05441 7.05441 -157.585 -7.05441 0 0 1.01997e+06 3529.29 0.41 0.07 0.0218301 0.0199707 141 204 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_023.v common 5.33 vpr 62.08 MiB 0.01 6716 -1 -1 9 0.08 -1 -1 35340 -1 -1 16 26 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63572 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.5 MiB 1.96 607 62.1 MiB 0.03 0.00 3.9703 -77.6058 -3.9703 3.9703 0.72 0.000124698 0.000102229 0.00803954 0.00666411 30 1693 19 6.79088e+06 215552 556674. 1926.21 0.88 0.0331352 0.0285369 1423 16 581 1335 73381 17360 4.0956 4.0956 -93.2278 -4.0956 0 0 706193. 2443.58 0.29 0.03 0.00785104 0.00716633 64 66 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_024.v common 9.09 vpr 63.10 MiB 0.04 6820 -1 -1 13 0.30 -1 -1 36100 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64612 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.7 MiB 2.72 1376 63.1 MiB 0.05 0.00 7.1002 -146.761 -7.1002 7.1002 0.72 0.000284752 0.000239143 0.0131222 0.0111273 38 3508 23 6.79088e+06 296384 678818. 2348.85 3.14 0.141448 0.104308 3024 20 1458 4073 228037 49914 7.7267 7.7267 -167.703 -7.7267 0 0 902133. 3121.57 0.28 0.08 0.0217912 0.0200375 137 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_025.v common 9.97 vpr 62.04 MiB 0.04 6772 -1 -1 8 0.07 -1 -1 35176 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63524 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.7 MiB 3.07 724 62.0 MiB 0.02 0.00 3.9703 -84.288 -3.9703 3.9703 0.90 0.000119811 9.6545e-05 0.00456985 0.00382129 30 1937 30 6.79088e+06 229024 556674. 1926.21 4.03 0.0709653 0.0631613 1561 14 625 1430 82662 19246 4.0956 4.0956 -103.796 -4.0956 0 0 706193. 2443.58 0.25 0.03 0.0082049 0.00754673 64 60 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_026.v common 7.23 vpr 62.87 MiB 0.08 7148 -1 -1 15 0.24 -1 -1 36228 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64380 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 24.4 MiB 1.86 1170 62.9 MiB 0.08 0.00 7.42244 -151.883 -7.42244 7.42244 0.71 0.000210904 0.000172238 0.0182425 0.0151119 38 2968 30 6.79088e+06 229024 678818. 2348.85 2.59 0.133719 0.111972 2610 17 1199 3246 207198 45205 7.67303 7.67303 -168.791 -7.67303 0 0 902133. 3121.57 0.32 0.08 0.0229797 0.0216425 118 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_027.v common 7.97 vpr 63.22 MiB 0.02 7072 -1 -1 12 0.25 -1 -1 36120 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64736 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.7 MiB 2.01 1368 63.2 MiB 0.05 0.00 5.58182 -125.196 -5.58182 5.58182 0.70 0.000256209 0.000208354 0.0132163 0.0110869 38 3493 44 6.79088e+06 296384 678818. 2348.85 3.22 0.137117 0.111519 2839 40 1474 4420 498651 243804 5.95772 5.95772 -143.896 -5.95772 0 0 902133. 3121.57 0.26 0.15 0.0331668 0.0297039 145 214 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_028.v common 8.91 vpr 63.18 MiB 0.02 7044 -1 -1 13 0.29 -1 -1 36172 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64696 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.5 MiB 1.39 1109 63.2 MiB 0.08 0.00 6.51285 -135.293 -6.51285 6.51285 0.88 0.000320076 0.000265775 0.0127593 0.0108836 36 3583 32 6.79088e+06 269440 648988. 2245.63 4.53 0.1215 0.10718 2750 21 1642 4978 277867 65011 6.88875 6.88875 -154.494 -6.88875 0 0 828058. 2865.25 0.26 0.08 0.0210965 0.0192358 136 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_029.v common 14.60 vpr 62.66 MiB 0.03 6732 -1 -1 12 0.16 -1 -1 35856 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64164 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 24.2 MiB 2.08 1123 62.7 MiB 0.07 0.00 5.52799 -124.15 -5.52799 5.52799 0.68 0.000195168 0.000158382 0.0162102 0.0134288 30 3005 36 6.79088e+06 255968 556674. 1926.21 9.77 0.168268 0.149194 2443 20 1061 2801 144764 33692 5.77859 5.77859 -142.291 -5.77859 0 0 706193. 2443.58 0.31 0.06 0.0148518 0.0135101 106 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_030.v common 7.61 vpr 62.81 MiB 0.04 6772 -1 -1 11 0.14 -1 -1 35744 -1 -1 20 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64320 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 24.1 MiB 2.12 982 62.8 MiB 0.06 0.00 5.19894 -112.873 -5.19894 5.19894 0.70 0.000173654 0.000141064 0.0133916 0.0112411 34 2819 34 6.79088e+06 269440 618332. 2139.56 2.88 0.109456 0.090259 2351 20 1250 3132 215613 47536 5.56016 5.56016 -133.54 -5.56016 0 0 787024. 2723.27 0.23 0.05 0.0132737 0.0120542 97 122 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_031.v common 5.79 vpr 62.71 MiB 0.03 6828 -1 -1 11 0.16 -1 -1 35552 -1 -1 19 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64220 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 24.2 MiB 1.33 981 62.7 MiB 0.05 0.00 5.44184 -111.386 -5.44184 5.44184 0.76 0.000234193 0.000194184 0.0109755 0.00935816 38 2730 24 6.79088e+06 255968 678818. 2348.85 1.73 0.0798405 0.0696095 2189 16 1032 2647 142826 32350 5.77854 5.77854 -127.706 -5.77854 0 0 902133. 3121.57 0.26 0.04 0.0131368 0.01206 107 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_032.v common 11.41 vpr 62.63 MiB 0.03 6764 -1 -1 12 0.18 -1 -1 35864 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64136 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.3 MiB 2.18 1200 62.6 MiB 0.08 0.00 5.95079 -137.515 -5.95079 5.95079 0.78 0.000215758 0.000175951 0.0190214 0.015879 36 3601 50 6.79088e+06 255968 648988. 2245.63 6.32 0.121161 0.105343 2966 26 1596 3929 331860 112760 6.29098 6.29098 -163.916 -6.29098 0 0 828058. 2865.25 0.30 0.10 0.0222554 0.0201697 119 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_033.v common 7.67 vpr 62.78 MiB 0.04 6964 -1 -1 11 0.17 -1 -1 35972 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64284 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 24.3 MiB 1.59 903 62.8 MiB 0.07 0.00 5.52794 -118.857 -5.52794 5.52794 0.69 0.000213823 0.000168108 0.0176005 0.0145962 38 2816 46 6.79088e+06 229024 678818. 2348.85 3.24 0.110007 0.0962975 2107 18 1129 3077 145752 35852 5.65324 5.65324 -133.546 -5.65324 0 0 902133. 3121.57 0.27 0.04 0.0146009 0.0133699 107 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_034.v common 7.33 vpr 62.39 MiB 0.06 6852 -1 -1 10 0.13 -1 -1 35904 -1 -1 18 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63892 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 24.1 MiB 1.51 966 62.4 MiB 0.03 0.00 4.86562 -104.94 -4.86562 4.86562 0.70 0.000183405 0.000149972 0.00754875 0.0064758 30 2413 28 6.79088e+06 242496 556674. 1926.21 3.32 0.0826319 0.071893 2025 16 864 2342 120607 28538 5.28842 5.28842 -122.284 -5.28842 0 0 706193. 2443.58 0.22 0.05 0.0131485 0.0120368 103 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_035.v common 22.05 vpr 63.06 MiB 0.02 7156 -1 -1 13 0.33 -1 -1 36160 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64572 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.7 MiB 1.54 1465 63.1 MiB 0.05 0.00 6.50941 -142.371 -6.50941 6.50941 0.66 0.000292827 0.000243184 0.013807 0.0116865 40 3456 23 6.79088e+06 296384 706193. 2443.58 16.97 0.226149 0.196344 3369 61 2945 11446 1815474 896311 6.67042 6.67042 -155.495 -6.67042 0 0 926341. 3205.33 0.28 0.50 0.0523432 0.0462641 162 238 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_036.v common 6.96 vpr 63.16 MiB 0.02 6924 -1 -1 13 0.31 -1 -1 36104 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64676 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.7 MiB 1.75 1303 63.2 MiB 0.09 0.00 6.33372 -138.961 -6.33372 6.33372 0.73 0.000273602 0.00022653 0.0223925 0.018756 46 3237 18 6.79088e+06 282912 828058. 2865.25 2.36 0.117786 0.10352 2725 16 1384 3988 205978 46669 6.33372 6.33372 -152.312 -6.33372 0 0 1.01997e+06 3529.29 0.33 0.06 0.0196821 0.0181111 152 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_037.v common 16.13 vpr 62.72 MiB 0.04 6824 -1 -1 12 0.14 -1 -1 35844 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64228 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 24.3 MiB 1.26 1047 62.7 MiB 0.05 0.00 5.66448 -124.393 -5.66448 5.66448 0.68 0.000187253 0.000152424 0.0120058 0.010027 30 3279 47 6.79088e+06 242496 556674. 1926.21 12.09 0.143551 0.124496 2435 21 1270 3501 257235 70259 6.25178 6.25178 -150.856 -6.25178 0 0 706193. 2443.58 0.26 0.09 0.0207237 0.0193011 102 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_038.v common 14.21 vpr 63.09 MiB 0.04 6892 -1 -1 12 0.25 -1 -1 36144 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64608 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.6 MiB 1.24 1365 63.1 MiB 0.08 0.00 6.50592 -136.757 -6.50592 6.50592 0.68 0.000254114 0.000208685 0.0187747 0.0157364 36 4048 38 6.79088e+06 309856 648988. 2245.63 10.33 0.175771 0.14834 3287 16 1417 4325 262503 59287 6.67037 6.67037 -153.774 -6.67037 0 0 828058. 2865.25 0.25 0.07 0.0200702 0.0185334 148 217 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_039.v common 10.49 vpr 63.30 MiB 0.02 7064 -1 -1 14 0.34 -1 -1 36140 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64820 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.8 MiB 1.23 1407 63.3 MiB 0.06 0.00 7.09677 -148.24 -7.09677 7.09677 0.70 0.000243743 0.000200453 0.0133814 0.0113036 36 4198 43 6.79088e+06 282912 648988. 2245.63 6.59 0.116335 0.101811 3205 17 1455 3988 248237 54479 7.42577 7.42577 -169.164 -7.42577 0 0 828058. 2865.25 0.25 0.06 0.0185737 0.0170458 146 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_040.v common 18.55 vpr 63.11 MiB 0.03 7132 -1 -1 13 0.27 -1 -1 36584 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64620 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.5 MiB 2.39 1315 63.1 MiB 0.07 0.00 6.62352 -139.836 -6.62352 6.62352 0.70 0.000262685 0.000215278 0.0172184 0.0144941 40 3356 47 6.79088e+06 282912 706193. 2443.58 13.48 0.192472 0.167526 3122 19 1740 4487 314806 66481 7.00712 7.00712 -162.036 -7.00712 0 0 926341. 3205.33 0.27 0.07 0.0187954 0.017148 126 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_041.v common 15.46 vpr 63.05 MiB 0.02 6936 -1 -1 12 0.24 -1 -1 36296 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64568 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.5 MiB 1.05 1340 63.1 MiB 0.05 0.00 6.09426 -130.866 -6.09426 6.09426 0.84 0.000229942 0.00018843 0.0117424 0.00987153 36 3651 42 6.79088e+06 309856 648988. 2245.63 11.69 0.177151 0.144345 3033 20 1392 4088 273201 58062 6.41977 6.41977 -153.591 -6.41977 0 0 828058. 2865.25 0.25 0.07 0.019389 0.017616 135 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_042.v common 8.25 vpr 62.76 MiB 0.02 7016 -1 -1 12 0.19 -1 -1 36408 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64268 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.2 MiB 1.21 1075 62.8 MiB 0.07 0.00 6.20062 -124.026 -6.20062 6.20062 0.69 0.000220549 0.000173192 0.0174218 0.0143612 34 3794 40 6.79088e+06 229024 618332. 2139.56 4.52 0.115903 0.102283 2559 19 1203 3088 206135 47261 6.41202 6.41202 -146.938 -6.41202 0 0 787024. 2723.27 0.23 0.05 0.0153999 0.0140107 113 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_043.v common 9.44 vpr 63.46 MiB 0.04 7224 -1 -1 14 0.45 -1 -1 36056 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64988 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 25.0 MiB 1.31 1497 63.5 MiB 0.09 0.00 6.83193 -145.624 -6.83193 6.83193 0.71 0.00029196 0.000239807 0.0228437 0.019191 38 4401 33 6.79088e+06 336800 678818. 2348.85 5.02 0.144541 0.127353 3204 23 1651 5194 359051 102561 7.34731 7.34731 -167.121 -7.34731 0 0 902133. 3121.57 0.26 0.10 0.0270553 0.0245697 169 244 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_044.v common 6.69 vpr 62.72 MiB 0.03 6848 -1 -1 11 0.20 -1 -1 35972 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64228 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 24.1 MiB 1.70 1092 62.7 MiB 0.06 0.00 5.44527 -115.892 -5.44527 5.44527 0.71 0.000204833 0.000166718 0.0145166 0.0122116 34 3234 30 6.79088e+06 242496 618332. 2139.56 2.20 0.0895187 0.0777317 2690 21 1541 4188 259161 58266 5.81774 5.81774 -137.131 -5.81774 0 0 787024. 2723.27 0.24 0.06 0.0180786 0.0164916 113 153 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_045.v common 6.52 vpr 63.02 MiB 0.02 7032 -1 -1 13 0.27 -1 -1 36156 -1 -1 19 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64536 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.5 MiB 1.64 1226 63.0 MiB 0.04 0.00 6.38406 -127.284 -6.38406 6.38406 0.73 0.000283197 0.000233166 0.0102224 0.00858946 38 3072 34 6.79088e+06 255968 678818. 2348.85 2.19 0.101347 0.0887491 2473 18 1153 3612 193808 42887 6.63466 6.63466 -143.31 -6.63466 0 0 902133. 3121.57 0.27 0.06 0.018032 0.0165636 132 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_046.v common 10.67 vpr 63.27 MiB 0.02 6972 -1 -1 12 0.25 -1 -1 36136 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64784 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.7 MiB 1.36 1346 63.3 MiB 0.08 0.00 5.91857 -130.754 -5.91857 5.91857 0.75 0.000267095 0.000219532 0.0212122 0.0175544 36 4004 50 6.79088e+06 282912 648988. 2245.63 6.34 0.155403 0.137396 3337 19 1488 4427 282708 61647 6.24408 6.24408 -152.62 -6.24408 0 0 828058. 2865.25 0.25 0.07 0.0204675 0.0186571 153 223 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_047.v common 9.07 vpr 63.15 MiB 0.04 6940 -1 -1 13 0.24 -1 -1 36084 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64668 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.6 MiB 1.26 1224 63.2 MiB 0.07 0.00 5.99697 -130.975 -5.99697 5.99697 0.68 0.000230879 0.00019006 0.0180018 0.0150088 36 3845 41 6.79088e+06 255968 648988. 2245.63 4.96 0.110387 0.0958534 2929 18 1399 3812 253286 55846 6.58427 6.58427 -154.196 -6.58427 0 0 828058. 2865.25 0.36 0.07 0.0203749 0.018774 131 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_048.v common 7.59 vpr 62.98 MiB 0.04 7036 -1 -1 13 0.23 -1 -1 35828 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64492 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.5 MiB 2.07 1165 63.0 MiB 0.06 0.00 6.29452 -133.347 -6.29452 6.29452 0.70 0.000230915 0.000181146 0.01529 0.0127099 36 3162 28 6.79088e+06 229024 648988. 2245.63 2.88 0.0968956 0.0842199 2531 17 1224 3343 186956 42653 6.58083 6.58083 -153.323 -6.58083 0 0 828058. 2865.25 0.25 0.05 0.0173311 0.0159238 118 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_049.v common 11.14 vpr 63.21 MiB 0.04 6956 -1 -1 12 0.27 -1 -1 36268 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64724 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.8 MiB 1.96 1317 63.2 MiB 0.06 0.00 6.61577 -142.838 -6.61577 6.61577 0.65 0.000248817 0.000203557 0.0149346 0.0125808 36 3803 41 6.79088e+06 309856 648988. 2245.63 6.44 0.119714 0.103652 3103 18 1350 4211 270904 58649 6.99167 6.99167 -161.884 -6.99167 0 0 828058. 2865.25 0.26 0.08 0.023178 0.0213298 150 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_050.v common 17.86 vpr 63.32 MiB 0.02 6952 -1 -1 13 0.27 -1 -1 36220 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64840 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.9 MiB 1.98 1386 63.3 MiB 0.05 0.00 6.45897 -139.536 -6.45897 6.45897 0.66 0.000246945 0.000201842 0.0118308 0.0100299 38 3469 42 6.79088e+06 269440 678818. 2348.85 13.09 0.170837 0.148506 2970 18 1487 4083 220391 48505 6.83487 6.83487 -157.699 -6.83487 0 0 902133. 3121.57 0.30 0.07 0.021409 0.0196143 143 204 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_051.v common 10.13 vpr 63.14 MiB 0.04 7116 -1 -1 14 0.28 -1 -1 36376 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64652 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.7 MiB 2.06 1129 63.1 MiB 0.04 0.00 6.83847 -141.821 -6.83847 6.83847 0.66 0.00021739 0.00017834 0.00964176 0.00813121 36 3797 46 6.79088e+06 242496 648988. 2245.63 5.28 0.09841 0.0858801 2858 16 1393 4001 256501 56193 7.08907 7.08907 -161.357 -7.08907 0 0 828058. 2865.25 0.24 0.06 0.0156368 0.0143549 123 164 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_052.v common 10.77 vpr 63.24 MiB 0.03 6948 -1 -1 13 0.26 -1 -1 36212 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64756 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.6 MiB 3.17 1309 63.2 MiB 0.07 0.00 6.66621 -139.817 -6.66621 6.66621 0.85 0.000234618 0.000190915 0.0205046 0.01773 36 3872 30 6.79088e+06 269440 648988. 2245.63 4.70 0.106549 0.0928475 3196 17 1545 4051 263040 57768 7.13242 7.13242 -167.148 -7.13242 0 0 828058. 2865.25 0.25 0.07 0.0172816 0.0158242 134 198 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_053.v common 6.63 vpr 63.17 MiB 0.03 7104 -1 -1 13 0.30 -1 -1 35640 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64688 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.6 MiB 1.25 1404 63.2 MiB 0.05 0.00 6.99947 -148.2 -6.99947 6.99947 0.68 0.000261843 0.000215544 0.0123354 0.0103829 40 3754 29 6.79088e+06 309856 706193. 2443.58 2.52 0.107904 0.0883859 3500 25 2262 6536 451742 98993 7.99833 7.99833 -180.004 -7.99833 0 0 926341. 3205.33 0.27 0.11 0.0255187 0.023053 154 218 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_054.v common 16.74 vpr 63.37 MiB 0.03 7104 -1 -1 12 0.32 -1 -1 35668 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64892 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.9 MiB 1.41 1394 63.4 MiB 0.07 0.00 6.32592 -142.063 -6.32592 6.32592 0.75 0.000259313 0.000207272 0.0184673 0.0155393 38 3794 25 6.79088e+06 323328 678818. 2348.85 12.51 0.178359 0.1536 3105 21 1733 4889 264170 60858 6.87058 6.87058 -164.47 -6.87058 0 0 902133. 3121.57 0.26 0.07 0.0208276 0.018909 157 229 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_055.v common 6.70 vpr 62.63 MiB 0.02 6740 -1 -1 11 0.12 -1 -1 35744 -1 -1 13 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64136 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 24.1 MiB 1.40 968 62.6 MiB 0.04 0.00 5.2739 -118.795 -5.2739 5.2739 0.72 0.000181687 0.000148809 0.00853386 0.00722305 36 2660 20 6.79088e+06 175136 648988. 2245.63 2.74 0.073866 0.0649594 2370 29 1012 2507 297100 123172 5.5245 5.5245 -137.307 -5.5245 0 0 828058. 2865.25 0.28 0.09 0.0178474 0.0160595 90 121 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_056.v common 8.96 vpr 62.72 MiB 0.03 6832 -1 -1 13 0.16 -1 -1 35704 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64228 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.45 934 62.7 MiB 0.05 0.00 6.25881 -131.979 -6.25881 6.25881 0.74 0.000203979 0.000166665 0.0133132 0.0112357 38 2733 44 6.79088e+06 229024 678818. 2348.85 3.83 0.111673 0.098783 1955 15 1097 2687 134557 33950 7.26121 7.26121 -158.291 -7.26121 0 0 902133. 3121.57 0.26 0.04 0.0136283 0.0125538 113 150 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_057.v common 10.52 vpr 63.45 MiB 0.06 7048 -1 -1 14 0.46 -1 -1 36108 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64968 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.9 MiB 1.25 1457 63.4 MiB 0.11 0.00 7.12478 -150.243 -7.12478 7.12478 0.68 0.000321653 0.000257845 0.0274911 0.0227567 40 4793 46 6.79088e+06 323328 706193. 2443.58 5.65 0.161145 0.139375 4066 55 4550 15605 2247089 917649 8.4316 8.4316 -192.637 -8.4316 0 0 926341. 3205.33 0.28 0.53 0.0588482 0.0521229 180 266 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_058.v common 10.45 vpr 63.60 MiB 0.05 6940 -1 -1 13 0.32 -1 -1 36128 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65124 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 25.0 MiB 2.48 1446 63.6 MiB 0.10 0.00 7.0141 -150.687 -7.0141 7.0141 0.72 0.000273659 0.000223291 0.0358375 0.0320156 38 3912 47 6.79088e+06 282912 678818. 2348.85 4.70 0.157178 0.13806 2961 16 1343 3723 206187 45695 7.2647 7.2647 -169.228 -7.2647 0 0 902133. 3121.57 0.34 0.06 0.0201527 0.0185755 154 223 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_059.v common 5.69 vpr 62.71 MiB 0.03 6736 -1 -1 11 0.16 -1 -1 35832 -1 -1 17 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64212 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 24.2 MiB 0.73 973 62.7 MiB 0.07 0.00 5.74283 -122.888 -5.74283 5.74283 0.86 0.000181062 0.000147367 0.0148684 0.012387 34 2742 21 6.79088e+06 229024 618332. 2139.56 2.07 0.0753245 0.0651222 2205 16 995 2820 173996 39122 5.90733 5.90733 -139.781 -5.90733 0 0 787024. 2723.27 0.26 0.04 0.0123682 0.0113101 99 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_060.v common 19.99 vpr 63.46 MiB 0.03 7284 -1 -1 15 0.44 -1 -1 36332 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64988 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 25.0 MiB 1.25 1594 63.5 MiB 0.05 0.00 7.8948 -160.284 -7.8948 7.8948 0.68 0.000495329 0.0004318 0.0122188 0.0105536 40 3906 29 6.79088e+06 323328 706193. 2443.58 15.79 0.268317 0.237982 3770 21 2133 6277 427097 90187 8.34561 8.34561 -184.467 -8.34561 0 0 926341. 3205.33 0.27 0.10 0.0256247 0.0231971 172 240 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_061.v common 18.15 vpr 63.44 MiB 0.04 7136 -1 -1 13 0.31 -1 -1 35948 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64960 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.9 MiB 1.12 1427 63.4 MiB 0.09 0.00 6.7051 -147.082 -6.7051 6.7051 0.73 0.000265902 0.000220326 0.0224606 0.0190697 38 3707 26 6.79088e+06 296384 678818. 2348.85 14.24 0.187631 0.162366 2917 17 1383 3726 192516 43654 6.9557 6.9557 -165.535 -6.9557 0 0 902133. 3121.57 0.27 0.06 0.0198143 0.0182507 149 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_062.v common 6.11 vpr 62.69 MiB 0.01 6760 -1 -1 11 0.12 -1 -1 35908 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64192 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 24.3 MiB 1.61 1046 62.7 MiB 0.05 0.00 5.75058 -128.663 -5.75058 5.75058 0.74 0.000195645 0.000161521 0.0131722 0.0109983 34 2658 43 6.79088e+06 215552 618332. 2139.56 2.07 0.0867484 0.075211 2244 17 990 2506 137475 32869 5.75058 5.75058 -141.697 -5.75058 0 0 787024. 2723.27 0.24 0.04 0.0127558 0.0115925 97 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_063.v common 9.42 vpr 63.23 MiB 0.03 7180 -1 -1 12 0.29 -1 -1 35972 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64752 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.8 MiB 1.74 1458 63.2 MiB 0.06 0.00 6.57313 -138.61 -6.57313 6.57313 0.75 0.000272054 0.000224954 0.0151249 0.0128719 36 4076 48 6.79088e+06 282912 648988. 2245.63 4.75 0.153357 0.128912 3273 19 1500 4400 279368 60475 6.82373 6.82373 -162.099 -6.82373 0 0 828058. 2865.25 0.25 0.08 0.0225058 0.0206868 152 213 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_064.v common 6.85 vpr 63.05 MiB 0.02 6700 -1 -1 12 0.19 -1 -1 35572 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64560 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 24.4 MiB 1.68 1174 63.0 MiB 0.06 0.00 6.04387 -131.272 -6.04387 6.04387 0.91 0.000215486 0.00017804 0.0154743 0.0130017 46 2769 20 6.79088e+06 215552 828058. 2865.25 1.93 0.0901373 0.0782969 2397 17 1111 3029 152747 34454 6.24408 6.24408 -146.04 -6.24408 0 0 1.01997e+06 3529.29 0.35 0.05 0.0161545 0.0148053 115 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_065.v common 5.13 vpr 62.64 MiB 0.04 6836 -1 -1 12 0.17 -1 -1 36124 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64140 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 24.2 MiB 1.27 976 62.6 MiB 0.03 0.00 6.34486 -127.109 -6.34486 6.34486 0.70 0.000207578 0.000171932 0.00803752 0.0068644 28 2636 20 6.79088e+06 255968 531479. 1839.03 1.30 0.0653243 0.0592424 2132 14 822 2288 131294 31130 6.59546 6.59546 -145.237 -6.59546 0 0 648988. 2245.63 0.21 0.04 0.0119663 0.0110115 105 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_066.v common 7.67 vpr 63.17 MiB 0.04 7056 -1 -1 12 0.27 -1 -1 36172 -1 -1 24 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64684 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.36 1182 63.2 MiB 0.09 0.00 6.18152 -121.5 -6.18152 6.18152 0.85 0.000250405 0.000205717 0.0231507 0.0193261 38 3234 47 6.79088e+06 323328 678818. 2348.85 3.25 0.143093 0.125932 2530 16 1193 3831 185007 42399 6.80802 6.80802 -139.581 -6.80802 0 0 902133. 3121.57 0.33 0.06 0.0183423 0.0168088 144 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_067.v common 9.18 vpr 63.21 MiB 0.03 6960 -1 -1 14 0.31 -1 -1 36288 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64732 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.7 MiB 2.52 1438 63.2 MiB 0.04 0.00 7.13591 -145.75 -7.13591 7.13591 0.78 0.000278683 0.000231892 0.0108634 0.00928329 38 3966 23 6.79088e+06 296384 678818. 2348.85 3.75 0.12065 0.107048 3109 29 1926 5115 455367 178433 7.50062 7.50062 -167.371 -7.50062 0 0 902133. 3121.57 0.26 0.13 0.0270542 0.02443 155 221 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_068.v common 5.84 vpr 63.04 MiB 0.02 6944 -1 -1 12 0.23 -1 -1 36368 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64556 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.4 MiB 1.37 1252 63.0 MiB 0.07 0.00 6.38062 -140.809 -6.38062 6.38062 0.71 0.000251817 0.000209024 0.0189429 0.0158614 46 3020 17 6.79088e+06 255968 828058. 2865.25 1.74 0.0920044 0.0795464 2623 16 1258 3727 189074 42340 6.45553 6.45553 -154.132 -6.45553 0 0 1.01997e+06 3529.29 0.30 0.06 0.019072 0.0175613 137 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_069.v common 9.93 vpr 62.74 MiB 0.02 6960 -1 -1 12 0.14 -1 -1 35936 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64248 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 24.1 MiB 1.40 931 62.7 MiB 0.04 0.00 5.79327 -122.751 -5.79327 5.79327 0.68 0.000179985 0.000146551 0.00968546 0.00817024 30 2557 19 6.79088e+06 202080 556674. 1926.21 6.20 0.0933348 0.0820309 2123 16 934 2448 130228 30267 5.91857 5.91857 -137.352 -5.91857 0 0 706193. 2443.58 0.23 0.04 0.0124106 0.0113938 95 126 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_070.v common 14.46 vpr 62.96 MiB 0.03 6964 -1 -1 12 0.21 -1 -1 35724 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64468 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.5 MiB 1.91 979 63.0 MiB 0.06 0.00 6.11878 -128.038 -6.11878 6.11878 0.68 0.000221054 0.000181252 0.0159202 0.0133128 40 2467 23 6.79088e+06 242496 706193. 2443.58 9.78 0.162977 0.14132 2287 39 1364 4141 501302 219125 6.50587 6.50587 -142.89 -6.50587 0 0 926341. 3205.33 0.27 0.14 0.0258344 0.022896 114 168 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_071.v common 9.20 vpr 62.97 MiB 0.03 6976 -1 -1 11 0.19 -1 -1 35944 -1 -1 22 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64484 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.4 MiB 2.83 1272 63.0 MiB 0.04 0.00 5.66443 -118.727 -5.66443 5.66443 0.87 0.000225477 0.000184127 0.00942255 0.00798875 38 3318 47 6.79088e+06 296384 678818. 2348.85 3.57 0.112837 0.0992578 2733 18 1213 3799 198820 43860 5.91503 5.91503 -134.743 -5.91503 0 0 902133. 3121.57 0.27 0.05 0.0170368 0.0154948 129 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_072.v common 7.00 vpr 62.71 MiB 0.03 7040 -1 -1 11 0.21 -1 -1 35688 -1 -1 21 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64216 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.4 MiB 1.37 1033 62.7 MiB 0.06 0.00 5.53564 -106.19 -5.53564 5.53564 0.88 0.000209442 0.000169198 0.0145636 0.011974 42 3503 45 6.79088e+06 282912 744469. 2576.02 2.74 0.115018 0.101767 2400 16 1201 3456 212634 49677 5.82893 5.82893 -124.158 -5.82893 0 0 949917. 3286.91 0.29 0.05 0.0149175 0.0136857 125 164 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_073.v common 7.56 vpr 62.59 MiB 0.02 7008 -1 -1 13 0.19 -1 -1 35776 -1 -1 16 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64088 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 24.1 MiB 3.39 1046 62.6 MiB 0.03 0.00 6.34142 -126.158 -6.34142 6.34142 0.76 0.00018225 0.000148948 0.00726597 0.00618603 34 2848 29 6.79088e+06 215552 618332. 2139.56 1.59 0.0684861 0.059592 2384 21 1032 2585 195446 59931 6.34142 6.34142 -141.914 -6.34142 0 0 787024. 2723.27 0.25 0.06 0.0156961 0.0143062 104 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_074.v common 6.87 vpr 62.81 MiB 0.04 6924 -1 -1 12 0.18 -1 -1 35932 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64320 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 24.4 MiB 2.15 1139 62.8 MiB 0.06 0.00 5.95428 -131.923 -5.95428 5.95428 0.94 0.000217592 0.000177519 0.0157449 0.0130907 38 2911 17 6.79088e+06 269440 678818. 2348.85 1.81 0.096167 0.0841194 2466 18 1089 2921 162308 36396 6.07958 6.07958 -149.086 -6.07958 0 0 902133. 3121.57 0.27 0.05 0.0161815 0.0148111 125 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_075.v common 6.98 vpr 63.13 MiB 0.03 6904 -1 -1 13 0.27 -1 -1 36196 -1 -1 20 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64644 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.7 MiB 2.03 1224 63.1 MiB 0.06 0.00 6.63471 -135.004 -6.63471 6.63471 0.85 0.000257913 0.000214839 0.0163709 0.0141443 38 3021 24 6.79088e+06 269440 678818. 2348.85 1.87 0.116694 0.104076 2476 17 1123 3288 159321 37492 6.92446 6.92446 -151.496 -6.92446 0 0 902133. 3121.57 0.28 0.05 0.0170047 0.0156236 137 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_076.v common 7.07 vpr 63.41 MiB 0.06 6964 -1 -1 14 0.27 -1 -1 36320 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64936 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.9 MiB 1.95 1313 63.4 MiB 0.06 0.00 7.22905 -147.389 -7.22905 7.22905 0.66 0.000257663 0.000210313 0.0164449 0.0137131 38 3220 19 6.79088e+06 282912 678818. 2348.85 2.09 0.106295 0.0928189 2703 16 1301 3632 189731 43190 7.73025 7.73025 -167.134 -7.73025 0 0 902133. 3121.57 0.29 0.06 0.0203605 0.0187981 149 213 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_077.v common 9.89 vpr 63.09 MiB 0.04 7000 -1 -1 14 0.26 -1 -1 36096 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64604 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.5 MiB 2.22 1229 63.1 MiB 0.07 0.00 6.67053 -134.711 -6.67053 6.67053 0.70 0.000236276 0.000194407 0.0193068 0.0163106 36 3551 43 6.79088e+06 269440 648988. 2245.63 4.98 0.119165 0.104243 2884 16 1282 3691 233886 51430 7.17173 7.17173 -155.221 -7.17173 0 0 828058. 2865.25 0.25 0.06 0.017736 0.0162475 136 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_078.v common 7.95 vpr 63.15 MiB 0.03 6972 -1 -1 13 0.35 -1 -1 36748 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64664 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.7 MiB 2.06 1321 63.1 MiB 0.08 0.00 6.42331 -139.462 -6.42331 6.42331 0.65 0.000241773 0.000197791 0.0201413 0.0168142 38 3381 21 6.79088e+06 255968 678818. 2348.85 2.94 0.110283 0.0957547 2833 18 1370 4042 218319 48517 6.88531 6.88531 -156.816 -6.88531 0 0 902133. 3121.57 0.36 0.14 0.0375843 0.0355963 139 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_079.v common 11.46 vpr 62.61 MiB 0.02 6816 -1 -1 13 0.16 -1 -1 36180 -1 -1 16 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64116 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 24.1 MiB 1.60 963 62.6 MiB 0.04 0.00 6.08307 -126.098 -6.08307 6.08307 0.68 0.000190315 0.000156126 0.00889969 0.00758595 38 2363 17 6.79088e+06 215552 678818. 2348.85 7.39 0.157271 0.138385 2025 13 902 2202 113999 26379 6.26413 6.26413 -140.228 -6.26413 0 0 902133. 3121.57 0.26 0.04 0.0119978 0.0110571 106 139 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_080.v common 6.65 vpr 63.50 MiB 0.04 6988 -1 -1 13 0.45 -1 -1 36336 -1 -1 23 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65020 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 25.0 MiB 1.43 1305 63.5 MiB 0.09 0.00 6.88105 -141.19 -6.88105 6.88105 0.81 0.000258616 0.000214552 0.0232689 0.0193221 38 3281 29 6.79088e+06 309856 678818. 2348.85 2.24 0.113443 0.0982506 2624 18 1550 3884 200145 45271 7.17855 7.17855 -157.12 -7.17855 0 0 902133. 3121.57 0.26 0.06 0.019059 0.0173795 144 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_081.v common 7.88 vpr 63.28 MiB 0.02 7096 -1 -1 14 0.28 -1 -1 35996 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64796 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.7 MiB 1.59 1259 63.3 MiB 0.08 0.00 6.68167 -144.969 -6.68167 6.68167 0.76 0.000234448 0.000192635 0.020038 0.0167412 38 3316 30 6.79088e+06 269440 678818. 2348.85 3.54 0.110303 0.095679 2731 18 1251 3828 202984 45052 6.86611 6.86611 -164.082 -6.86611 0 0 902133. 3121.57 0.26 0.06 0.0173769 0.0159263 133 181 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_082.v common 14.79 vpr 63.19 MiB 0.02 7068 -1 -1 12 0.26 -1 -1 36064 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64704 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.6 MiB 1.68 1329 63.2 MiB 0.06 0.00 6.38406 -132.397 -6.38406 6.38406 0.82 0.000240252 0.000197158 0.0171424 0.0143041 30 3847 36 6.79088e+06 282912 556674. 1926.21 10.15 0.197891 0.175366 3068 18 1501 4146 262600 57692 7.01056 7.01056 -162.366 -7.01056 0 0 706193. 2443.58 0.23 0.07 0.0189109 0.0173474 143 200 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_083.v common 9.23 vpr 63.08 MiB 0.05 6956 -1 -1 13 0.23 -1 -1 35964 -1 -1 21 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64592 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.6 MiB 1.99 1298 63.1 MiB 0.07 0.00 6.55748 -127.028 -6.55748 6.55748 0.65 0.000222864 0.000182228 0.0161529 0.0135128 38 3555 46 6.79088e+06 282912 678818. 2348.85 4.32 0.121432 0.107319 2814 19 1334 3750 213216 46096 6.87418 6.87418 -143.843 -6.87418 0 0 902133. 3121.57 0.27 0.06 0.0178782 0.0163268 126 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_084.v common 7.23 vpr 63.36 MiB 0.02 7040 -1 -1 14 0.36 -1 -1 36396 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64884 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.8 MiB 1.57 1321 63.4 MiB 0.12 0.00 6.88537 -144.14 -6.88537 6.88537 0.73 0.000294417 0.000245917 0.0405842 0.0382622 38 3772 37 6.79088e+06 282912 678818. 2348.85 2.82 0.142015 0.127275 3146 18 1664 4554 239260 54555 7.51181 7.51181 -171.083 -7.51181 0 0 902133. 3121.57 0.28 0.07 0.0213032 0.0194851 154 215 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_085.v common 5.97 vpr 63.18 MiB 0.02 7096 -1 -1 11 0.28 -1 -1 36084 -1 -1 22 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64696 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.6 MiB 1.33 1170 63.2 MiB 0.12 0.00 5.53143 -114.312 -5.53143 5.53143 0.73 0.000224487 0.000179442 0.0410104 0.038199 40 2753 22 6.79088e+06 296384 706193. 2443.58 1.73 0.118028 0.105809 2734 17 1243 3764 252935 53315 5.91503 5.91503 -132.743 -5.91503 0 0 926341. 3205.33 0.27 0.06 0.0171369 0.0157541 130 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_086.v common 8.23 vpr 62.81 MiB 0.02 6704 -1 -1 13 0.15 -1 -1 35716 -1 -1 14 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64320 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 24.3 MiB 3.47 1031 62.8 MiB 0.05 0.00 5.90394 -139.446 -5.90394 5.90394 0.83 0.000189484 0.000154647 0.00998321 0.00841839 30 3318 43 6.79088e+06 188608 556674. 1926.21 2.17 0.0655191 0.0574895 2584 22 1228 2951 182479 40685 6.36594 6.36594 -163.727 -6.36594 0 0 706193. 2443.58 0.22 0.05 0.0153833 0.0139399 99 130 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_087.v common 9.79 vpr 62.90 MiB 0.03 6952 -1 -1 14 0.25 -1 -1 36116 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64412 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.4 MiB 1.86 1299 62.9 MiB 0.05 0.00 6.96726 -147.774 -6.96726 6.96726 0.91 0.000237343 0.000197085 0.0114513 0.00973158 36 3675 44 6.79088e+06 255968 648988. 2245.63 4.56 0.104722 0.0918157 2982 20 1444 3761 243821 52903 7.54337 7.54337 -171.168 -7.54337 0 0 828058. 2865.25 0.25 0.06 0.0185941 0.0169599 129 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_088.v common 14.95 vpr 63.23 MiB 0.04 6912 -1 -1 15 0.37 -1 -1 36256 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64752 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.6 MiB 1.99 1420 63.2 MiB 0.10 0.00 7.6911 -157.119 -7.6911 7.6911 1.33 0.000491155 0.000441553 0.0275832 0.0242581 40 3191 19 6.79088e+06 296384 706193. 2443.58 9.02 0.206741 0.180469 3113 18 1616 4386 264066 59733 8.01661 8.01661 -179.943 -8.01661 0 0 926341. 3205.33 0.36 0.16 0.035123 0.0333967 153 227 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_089.v common 6.24 vpr 62.59 MiB 0.02 6996 -1 -1 11 0.15 -1 -1 35388 -1 -1 14 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64092 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 24.0 MiB 2.00 951 62.6 MiB 0.06 0.00 5.57484 -117.557 -5.57484 5.57484 0.74 0.000177987 0.000145626 0.020915 0.0191689 34 2606 32 6.79088e+06 188608 618332. 2139.56 1.50 0.080694 0.0710356 2148 15 872 2265 148094 33586 5.73934 5.73934 -137.282 -5.73934 0 0 787024. 2723.27 0.24 0.04 0.0133847 0.0123419 91 123 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_090.v common 6.51 vpr 62.61 MiB 0.03 6976 -1 -1 12 0.19 -1 -1 36252 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64116 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 24.1 MiB 1.50 1143 62.6 MiB 0.05 0.00 5.57838 -125.537 -5.57838 5.57838 0.78 0.000212783 0.000175545 0.0121135 0.010126 36 3067 26 6.79088e+06 215552 648988. 2245.63 2.31 0.0981223 0.0869653 2514 18 1269 3412 202372 45618 6.02919 6.02919 -145.749 -6.02919 0 0 828058. 2865.25 0.25 0.05 0.0156438 0.0142447 111 151 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_091.v common 7.06 vpr 63.25 MiB 0.02 7060 -1 -1 12 0.30 -1 -1 36040 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64772 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.8 MiB 1.41 1314 63.3 MiB 0.06 0.00 6.04731 -131.921 -6.04731 6.04731 0.68 0.000273859 0.000226896 0.0176705 0.0148951 36 3765 50 6.79088e+06 269440 648988. 2245.63 2.86 0.134788 0.117192 2978 27 1567 4602 440472 159059 6.50931 6.50931 -153.584 -6.50931 0 0 828058. 2865.25 0.25 0.12 0.0269017 0.0243455 145 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_092.v common 7.68 vpr 62.85 MiB 0.04 6996 -1 -1 12 0.23 -1 -1 35932 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64360 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.3 MiB 1.61 1362 62.9 MiB 0.05 0.00 6.38411 -135.628 -6.38411 6.38411 0.68 0.00023291 0.00018852 0.0125972 0.01054 36 3794 32 6.79088e+06 255968 648988. 2245.63 3.40 0.0991479 0.0863543 3106 26 1454 4527 460026 175722 6.59551 6.59551 -159.031 -6.59551 0 0 828058. 2865.25 0.28 0.12 0.0221145 0.0199941 133 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_093.v common 8.01 vpr 63.57 MiB 0.03 7024 -1 -1 14 0.46 -1 -1 36712 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65092 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 25.1 MiB 1.31 1310 63.6 MiB 0.04 0.00 7.33967 -152.027 -7.33967 7.33967 0.66 0.000308751 0.000246858 0.011212 0.00951721 34 4666 45 6.79088e+06 309856 618332. 2139.56 3.69 0.133573 0.116297 3582 33 2497 8027 698954 232826 8.09495 8.09495 -182.046 -8.09495 0 0 787024. 2723.27 0.24 0.17 0.0314623 0.0282541 170 238 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_094.v common 14.42 vpr 62.93 MiB 0.02 7056 -1 -1 11 0.24 -1 -1 36160 -1 -1 21 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64436 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.5 MiB 2.09 1194 62.9 MiB 0.06 0.00 5.70712 -116.931 -5.70712 5.70712 0.71 0.00022341 0.000178177 0.0181668 0.0155452 38 2978 25 6.79088e+06 282912 678818. 2348.85 9.72 0.150795 0.130652 2442 16 1191 3460 183370 41227 6.16912 6.16912 -134.155 -6.16912 0 0 902133. 3121.57 0.27 0.05 0.0169848 0.0156842 128 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_095.v common 4.92 vpr 62.56 MiB 0.03 6788 -1 -1 11 0.17 -1 -1 36024 -1 -1 19 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64064 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.9 MiB 1.23 897 62.6 MiB 0.03 0.00 5.56719 -105.591 -5.56719 5.56719 0.85 0.000178546 0.000146072 0.00857396 0.00741173 28 2591 26 6.79088e+06 255968 531479. 1839.03 1.13 0.0515703 0.0449904 2221 19 989 2632 221543 63169 6.06839 6.06839 -128.772 -6.06839 0 0 648988. 2245.63 0.21 0.06 0.0149242 0.0135123 101 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_096.v common 28.28 vpr 63.40 MiB 0.03 7272 -1 -1 13 0.43 -1 -1 36108 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64924 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 25.4 MiB 1.85 1748 63.4 MiB 0.09 0.00 6.71306 -142.317 -6.71306 6.71306 0.73 0.000382798 0.000312622 0.0209601 0.0175613 40 4688 43 6.79088e+06 390688 706193. 2443.58 23.23 0.276952 0.241221 4297 21 2702 7892 648993 159040 7.04632 7.04632 -162.648 -7.04632 0 0 926341. 3205.33 0.28 0.14 0.028353 0.0258772 191 278 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_097.v common 7.92 vpr 63.22 MiB 0.07 7104 -1 -1 14 0.26 -1 -1 36532 -1 -1 20 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64736 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.7 MiB 1.30 1235 63.2 MiB 0.08 0.01 7.06449 -142.146 -7.06449 7.06449 0.71 0.000623846 0.000577724 0.0144391 0.0123361 36 3181 22 6.79088e+06 269440 648988. 2245.63 3.87 0.0993224 0.0871191 2615 16 1198 3139 180525 41177 7.31509 7.31509 -161.204 -7.31509 0 0 828058. 2865.25 0.25 0.05 0.0157932 0.0145152 128 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_098.v common 7.22 vpr 62.64 MiB 0.03 6924 -1 -1 12 0.17 -1 -1 35680 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64144 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 24.2 MiB 2.31 1254 62.6 MiB 0.04 0.00 5.91857 -139.51 -5.91857 5.91857 0.67 0.000206496 0.000171156 0.00988637 0.00840686 38 3131 47 6.79088e+06 255968 678818. 2348.85 2.46 0.0946372 0.0831638 2570 15 1066 2585 146518 32797 6.50587 6.50587 -160.79 -6.50587 0 0 902133. 3121.57 0.26 0.04 0.0133864 0.0123523 109 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_099.v common 8.31 vpr 62.82 MiB 0.02 6940 -1 -1 13 0.30 -1 -1 35788 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64332 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.3 MiB 2.78 1192 62.8 MiB 0.05 0.00 6.67397 -137.896 -6.67397 6.67397 0.69 0.000234122 0.000194032 0.0116111 0.0098361 38 3184 26 6.79088e+06 242496 678818. 2348.85 2.91 0.113101 0.101167 2684 17 1129 3202 170654 38739 6.79927 6.79927 -154.769 -6.79927 0 0 902133. 3121.57 0.28 0.06 0.0194299 0.0180326 125 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_100.v common 6.95 vpr 63.46 MiB 0.02 7124 -1 -1 13 0.31 -1 -1 36744 -1 -1 25 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64988 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.8 MiB 2.04 1468 63.5 MiB 0.08 0.00 6.12997 -134.015 -6.12997 6.12997 0.73 0.000273888 0.000226427 0.0190384 0.016052 48 3373 27 6.79088e+06 336800 865456. 2994.66 2.04 0.110549 0.0961535 3012 15 1430 4120 230944 52522 6.63117 6.63117 -156.228 -6.63117 0 0 1.05005e+06 3633.38 0.33 0.06 0.0187652 0.0172989 159 232 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_101.v common 7.46 vpr 63.18 MiB 0.04 6940 -1 -1 11 0.24 -1 -1 35820 -1 -1 23 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64692 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.6 MiB 1.54 1206 63.2 MiB 0.06 0.00 5.70712 -118.327 -5.70712 5.70712 0.69 0.000246113 0.00019633 0.0158254 0.013106 38 3243 43 6.79088e+06 309856 678818. 2348.85 2.95 0.116831 0.101279 2597 34 1219 4158 510465 238899 5.91852 5.91852 -133.431 -5.91852 0 0 902133. 3121.57 0.26 0.14 0.026361 0.023662 140 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_102.v common 17.00 vpr 63.37 MiB 0.03 6892 -1 -1 15 0.32 -1 -1 36392 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64888 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.8 MiB 1.64 1356 63.4 MiB 0.08 0.00 7.66877 -157.811 -7.66877 7.66877 0.71 0.000258733 0.000213088 0.0218076 0.0182768 40 3327 31 6.79088e+06 255968 706193. 2443.58 12.63 0.240644 0.20873 3022 16 1333 3750 249688 54598 7.71916 7.71916 -175.135 -7.71916 0 0 926341. 3205.33 0.26 0.06 0.017532 0.0161397 142 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_103.v common 7.33 vpr 63.31 MiB 0.03 6948 -1 -1 13 0.33 -1 -1 36044 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64828 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.8 MiB 2.11 1345 63.3 MiB 0.06 0.00 6.928 -145.908 -6.928 6.928 0.74 0.000275063 0.0002173 0.0147104 0.0125047 40 3409 22 6.79088e+06 309856 706193. 2443.58 2.20 0.115022 0.100562 3255 31 1465 4597 532877 214642 7.30041 7.30041 -163.045 -7.30041 0 0 926341. 3205.33 0.27 0.14 0.0288727 0.0258949 154 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_104.v common 6.28 vpr 62.94 MiB 0.06 6924 -1 -1 12 0.19 -1 -1 35440 -1 -1 18 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64452 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.5 MiB 1.91 965 62.9 MiB 0.06 0.00 6.04736 -124.902 -6.04736 6.04736 0.74 0.000200485 0.000165336 0.0167378 0.0140668 34 2801 22 6.79088e+06 242496 618332. 2139.56 1.72 0.0795266 0.0686642 2210 18 1178 2793 166131 39503 6.67386 6.67386 -150.242 -6.67386 0 0 787024. 2723.27 0.23 0.05 0.0136014 0.0124245 109 147 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_105.v common 9.51 vpr 62.56 MiB 0.01 6792 -1 -1 11 0.15 -1 -1 35832 -1 -1 14 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64064 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 24.2 MiB 1.41 1162 62.6 MiB 0.06 0.00 5.62872 -127.082 -5.62872 5.62872 0.71 0.000186192 0.000151437 0.0151818 0.0126548 38 3302 48 6.79088e+06 188608 678818. 2348.85 5.57 0.136315 0.123355 2616 16 1168 2996 190214 40584 5.70363 5.70363 -144.188 -5.70363 0 0 902133. 3121.57 0.27 0.05 0.0147045 0.0134215 98 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_106.v common 6.59 vpr 63.38 MiB 0.04 6924 -1 -1 13 0.30 -1 -1 36520 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64904 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.9 MiB 1.27 1170 63.4 MiB 0.08 0.00 6.79916 -133.487 -6.79916 6.79916 0.68 0.000247795 0.000203781 0.0212861 0.0178183 40 2798 41 6.79088e+06 296384 706193. 2443.58 2.52 0.181714 0.148322 2809 28 1535 4427 512757 201873 6.96017 6.96017 -152.486 -6.96017 0 0 926341. 3205.33 0.28 0.13 0.0255284 0.0230538 144 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_107.v common 6.86 vpr 62.43 MiB 0.02 6844 -1 -1 10 0.16 -1 -1 35636 -1 -1 17 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63932 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.9 MiB 1.74 834 62.4 MiB 0.05 0.00 5.27728 -106.602 -5.27728 5.27728 0.81 0.000178392 0.000145643 0.0111119 0.00930837 34 2643 48 6.79088e+06 229024 618332. 2139.56 2.45 0.0869052 0.0753354 2215 20 1175 3083 196911 45502 5.40253 5.40253 -129.617 -5.40253 0 0 787024. 2723.27 0.24 0.05 0.0145685 0.0132094 98 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_108.v common 7.23 vpr 62.76 MiB 0.02 6884 -1 -1 14 0.17 -1 -1 35908 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64264 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 24.2 MiB 2.65 1192 62.8 MiB 0.06 0.00 6.62358 -136.292 -6.62358 6.62358 0.88 0.000234269 0.000197343 0.0162695 0.0102507 38 2909 20 6.79088e+06 242496 678818. 2348.85 1.64 0.0839657 0.0679222 2429 18 1115 2915 156338 35439 6.62358 6.62358 -152.734 -6.62358 0 0 902133. 3121.57 0.41 0.05 0.0142702 0.0130386 110 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_109.v common 7.19 vpr 63.22 MiB 0.02 6980 -1 -1 12 0.33 -1 -1 36792 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64740 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.7 MiB 1.21 1303 63.2 MiB 0.08 0.00 6.08651 -133.317 -6.08651 6.08651 0.67 0.000278471 0.00023193 0.0208593 0.0174442 36 3370 22 6.79088e+06 296384 648988. 2245.63 3.19 0.107714 0.0937629 2845 31 1269 3923 461660 206344 6.46241 6.46241 -151.381 -6.46241 0 0 828058. 2865.25 0.26 0.14 0.028592 0.0258398 143 199 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_110.v common 7.98 vpr 62.57 MiB 0.03 6852 -1 -1 12 0.14 -1 -1 35640 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64068 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 24.0 MiB 2.29 960 62.6 MiB 0.05 0.00 5.36349 -118.134 -5.36349 5.36349 0.70 0.000191107 0.00015167 0.0115213 0.00951327 36 2978 30 6.79088e+06 215552 648988. 2245.63 3.19 0.0885835 0.0778741 2312 18 1048 2490 144941 33421 5.65324 5.65324 -134.618 -5.65324 0 0 828058. 2865.25 0.25 0.04 0.0131209 0.0119905 101 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_111.v common 6.72 vpr 62.98 MiB 0.03 7124 -1 -1 12 0.18 -1 -1 36124 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64488 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.5 MiB 1.33 1251 63.0 MiB 0.05 0.00 6.16147 -132.852 -6.16147 6.16147 0.66 0.000227348 0.000184674 0.0130453 0.0109599 34 3512 26 6.79088e+06 242496 618332. 2139.56 2.46 0.0992991 0.0865901 2889 22 1450 4461 286655 60504 6.58422 6.58422 -154.233 -6.58422 0 0 787024. 2723.27 0.24 0.07 0.0201779 0.0183076 123 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_112.v common 6.58 vpr 63.13 MiB 0.03 6904 -1 -1 13 0.26 -1 -1 36764 -1 -1 19 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64648 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.5 MiB 1.49 1320 63.1 MiB 0.08 0.00 6.04387 -132.354 -6.04387 6.04387 0.72 0.000245255 0.000201495 0.0203413 0.0171526 40 3003 21 6.79088e+06 255968 706193. 2443.58 2.19 0.0978973 0.0854267 2895 17 1316 3692 237987 51999 6.50238 6.50238 -152.498 -6.50238 0 0 926341. 3205.33 0.34 0.06 0.017538 0.0160332 134 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_113.v common 6.12 vpr 62.59 MiB 0.03 6740 -1 -1 11 0.17 -1 -1 35376 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64088 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.1 MiB 1.25 1083 62.6 MiB 0.03 0.00 5.79322 -124.571 -5.79322 5.79322 0.75 0.000204888 0.000169705 0.00792283 0.00667825 44 2922 24 6.79088e+06 202080 787024. 2723.27 2.05 0.0800429 0.0700347 2428 15 1127 2976 175515 38935 6.16912 6.16912 -139.17 -6.16912 0 0 997811. 3452.63 0.35 0.10 0.0175909 0.0165284 105 142 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_114.v common 8.57 vpr 62.75 MiB 0.03 6916 -1 -1 13 0.19 -1 -1 35732 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64260 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.4 MiB 1.91 1043 62.8 MiB 0.06 0.00 6.08307 -132.047 -6.08307 6.08307 0.72 0.000215309 0.000175688 0.014472 0.0120722 36 3275 33 6.79088e+06 229024 648988. 2245.63 3.82 0.104818 0.0920056 2423 26 1337 3699 297314 94011 6.33367 6.33367 -147.569 -6.33367 0 0 828058. 2865.25 0.24 0.08 0.0201852 0.0182971 116 164 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_115.v common 6.55 vpr 63.10 MiB 0.02 7048 -1 -1 13 0.27 -1 -1 36228 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64612 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.5 MiB 1.62 1386 63.1 MiB 0.04 0.00 6.28328 -136.376 -6.28328 6.28328 0.71 0.00024257 0.000200862 0.00940862 0.00808928 46 3208 19 6.79088e+06 242496 828058. 2865.25 2.07 0.0904241 0.0791856 2674 17 1331 3621 190235 42510 6.36938 6.36938 -148.16 -6.36938 0 0 1.01997e+06 3529.29 0.31 0.06 0.0183454 0.0168763 130 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_116.v common 7.35 vpr 62.71 MiB 0.02 7028 -1 -1 11 0.18 -1 -1 36244 -1 -1 22 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64212 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.1 MiB 1.50 929 62.7 MiB 0.05 0.00 5.57063 -104.853 -5.57063 5.57063 0.76 0.000217796 0.000173796 0.0125667 0.0105591 36 2750 35 6.79088e+06 296384 648988. 2245.63 3.17 0.0905899 0.0785583 2281 18 1050 2974 188645 41728 5.78197 5.78197 -119.24 -5.78197 0 0 828058. 2865.25 0.25 0.06 0.0169074 0.0154308 115 156 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_117.v common 9.83 vpr 63.25 MiB 0.04 6972 -1 -1 14 0.33 -1 -1 36544 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64768 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.7 MiB 1.42 1435 63.2 MiB 0.06 0.00 7.39006 -160.66 -7.39006 7.39006 0.69 0.000278154 0.000223408 0.0137955 0.0116413 36 4277 37 6.79088e+06 296384 648988. 2245.63 5.49 0.130299 0.113798 3407 21 1940 5523 314090 69620 7.72676 7.72676 -180.849 -7.72676 0 0 828058. 2865.25 0.27 0.08 0.021652 0.0196674 160 221 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_118.v common 11.75 vpr 62.63 MiB 0.02 6860 -1 -1 12 0.16 -1 -1 35780 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64136 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.2 MiB 2.80 1127 62.6 MiB 0.04 0.00 5.57833 -121.295 -5.57833 5.57833 0.68 0.000192282 0.000157684 0.00958607 0.00810821 40 2422 14 6.79088e+06 242496 706193. 2443.58 6.31 0.149881 0.130979 2407 17 1032 2499 164504 36805 5.95423 5.95423 -136.721 -5.95423 0 0 926341. 3205.33 0.28 0.05 0.0198968 0.0186419 108 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_119.v common 11.75 vpr 63.17 MiB 0.04 7120 -1 -1 13 0.28 -1 -1 36108 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64688 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.5 MiB 1.88 1333 63.2 MiB 0.07 0.00 6.33367 -132.25 -6.33367 6.33367 0.70 0.000245738 0.000203233 0.0164759 0.01388 36 4143 41 6.79088e+06 255968 648988. 2245.63 6.92 0.123608 0.107314 3230 18 1479 4112 280973 61113 6.62347 6.62347 -155.474 -6.62347 0 0 828058. 2865.25 0.26 0.07 0.0195568 0.017954 132 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_120.v common 8.17 vpr 62.74 MiB 0.04 6916 -1 -1 13 0.17 -1 -1 35692 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64248 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 24.3 MiB 2.28 1060 62.7 MiB 0.06 0.00 6.45902 -143.462 -6.45902 6.45902 0.82 0.000193072 0.00015824 0.0138174 0.0115653 36 3030 40 6.79088e+06 215552 648988. 2245.63 3.14 0.0948596 0.0823035 2532 19 1140 2800 170876 38587 6.83492 6.83492 -167.968 -6.83492 0 0 828058. 2865.25 0.25 0.05 0.0153178 0.0139894 104 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_121.v common 6.33 vpr 63.12 MiB 0.02 7172 -1 -1 12 0.22 -1 -1 36200 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64632 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.6 MiB 1.93 1095 63.1 MiB 0.07 0.00 6.08302 -132.295 -6.08302 6.08302 0.69 0.000234704 0.0001939 0.0180758 0.0150571 44 2786 18 6.79088e+06 255968 787024. 2723.27 1.80 0.0956685 0.0835083 2254 15 976 3105 168124 37739 6.54502 6.54502 -145.019 -6.54502 0 0 997811. 3452.63 0.30 0.05 0.015852 0.0146806 121 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_122.v common 8.89 vpr 63.36 MiB 0.04 7212 -1 -1 15 0.48 -1 -1 35932 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64880 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 24.9 MiB 2.00 1594 63.4 MiB 0.10 0.00 7.8087 -158.533 -7.8087 7.8087 0.71 0.000335226 0.000282479 0.0236824 0.0198048 40 4185 46 6.79088e+06 323328 706193. 2443.58 3.82 0.155601 0.135099 3796 22 2276 7021 590967 151388 8.3568 8.3568 -183.905 -8.3568 0 0 926341. 3205.33 0.27 0.13 0.0272497 0.0247267 176 249 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_123.v common 9.44 vpr 62.36 MiB 0.01 6740 -1 -1 10 0.07 -1 -1 35484 -1 -1 11 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63860 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.9 MiB 1.58 713 62.4 MiB 0.04 0.00 4.44354 -98.5832 -4.44354 4.44354 0.69 0.000136329 0.000108946 0.0102623 0.00847558 28 2229 37 6.79088e+06 148192 531479. 1839.03 5.51 0.082628 0.0704709 1809 32 852 2085 253570 97860 4.7298 4.7298 -118.955 -4.7298 0 0 648988. 2245.63 0.20 0.07 0.0142563 0.0127549 63 82 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_124.v common 6.35 vpr 62.54 MiB 0.05 6804 -1 -1 13 0.15 -1 -1 36208 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64044 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.1 MiB 1.85 923 62.5 MiB 0.05 0.00 6.07969 -124.056 -6.07969 6.07969 0.87 0.000198167 0.000162807 0.0124261 0.010409 38 2491 33 6.79088e+06 255968 678818. 2348.85 1.72 0.0787894 0.0681825 1889 17 982 2360 119129 29394 6.20499 6.20499 -139.311 -6.20499 0 0 902133. 3121.57 0.26 0.04 0.0130441 0.0119445 105 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_125.v common 17.08 vpr 62.75 MiB 0.03 6876 -1 -1 12 0.19 -1 -1 36264 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64256 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.1 MiB 1.94 1105 62.8 MiB 0.06 0.00 6.04387 -136.85 -6.04387 6.04387 0.86 0.0002096 0.00017126 0.0143638 0.0120275 40 3010 28 6.79088e+06 229024 706193. 2443.58 12.32 0.174768 0.152879 2677 21 1593 4178 280716 65935 6.29447 6.29447 -152.992 -6.29447 0 0 926341. 3205.33 0.27 0.08 0.0180314 0.0163964 115 166 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_126.v common 4.38 vpr 62.37 MiB 0.02 6820 -1 -1 9 0.11 -1 -1 36032 -1 -1 20 25 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63868 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.7 MiB 1.23 762 62.4 MiB 0.04 0.00 4.41664 -86.6128 -4.41664 4.41664 0.75 0.000146351 0.000118967 0.00988109 0.0081597 30 1870 19 6.79088e+06 269440 556674. 1926.21 0.70 0.0392848 0.0338906 1682 16 758 1963 107747 25156 4.54194 4.54194 -99.487 -4.54194 0 0 706193. 2443.58 0.22 0.03 0.0101892 0.00931997 86 103 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_127.v common 9.82 vpr 63.18 MiB 0.02 6936 -1 -1 12 0.26 -1 -1 36260 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64696 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.8 MiB 2.38 1478 63.2 MiB 0.10 0.00 6.50592 -147.11 -6.50592 6.50592 1.01 0.000260397 0.000215477 0.0216099 0.0182767 40 3851 39 6.79088e+06 309856 706193. 2443.58 4.16 0.119306 0.104093 3502 43 2490 7338 1267381 583006 6.92102 6.92102 -169.539 -6.92102 0 0 926341. 3205.33 0.28 0.31 0.0360993 0.0322852 146 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_128.v common 6.41 vpr 63.50 MiB 0.04 7132 -1 -1 14 0.31 -1 -1 36260 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65024 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.9 MiB 1.22 1271 63.5 MiB 0.06 0.00 7.35435 -149.594 -7.35435 7.35435 0.71 0.000298456 0.000246416 0.0146085 0.0124939 44 3409 22 6.79088e+06 296384 787024. 2723.27 2.20 0.112618 0.0991868 2595 16 1234 3671 191916 43889 7.98085 7.98085 -170.942 -7.98085 0 0 997811. 3452.63 0.31 0.06 0.0183028 0.0168721 151 202 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 6.10 vpr 63.38 MiB 0.04 7280 -1 -1 1 0.01 -1 -1 33836 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64904 32 32 439 351 1 202 101 17 17 289 -1 unnamed_device 25.0 MiB 2.27 977 63.4 MiB 0.09 0.00 3.42579 -118.691 -3.42579 3.42579 0.69 0.000212787 0.000166369 0.0114839 0.00949231 32 3398 48 6.87369e+06 517032 586450. 2029.24 1.21 0.0667842 0.0572731 2455 23 2165 3545 318878 74945 4.068 4.068 -156.113 -4.068 0 0 744469. 2576.02 0.35 0.08 0.015912 0.0140782 155 80 32 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 7.25 vpr 63.30 MiB 0.02 7472 -1 -1 1 0.01 -1 -1 33508 -1 -1 23 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64816 30 32 412 333 1 192 85 17 17 289 -1 unnamed_device 24.8 MiB 3.91 935 63.3 MiB 0.10 0.00 3.54009 -112.98 -3.54009 3.54009 0.68 0.000188539 0.000153285 0.0141601 0.0117052 30 2905 30 6.87369e+06 321398 556674. 1926.21 0.97 0.0586785 0.0504272 2000 22 1630 2834 165695 40231 3.8767 3.8767 -137.629 -3.8767 0 0 706193. 2443.58 0.25 0.06 0.014032 0.0124249 141 78 30 30 89 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 6.79 vpr 63.10 MiB 0.04 7304 -1 -1 1 0.01 -1 -1 33604 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64616 32 32 388 310 1 191 100 17 17 289 -1 unnamed_device 24.7 MiB 2.01 841 63.1 MiB 0.11 0.00 3.09176 -105.508 -3.09176 3.09176 0.77 0.000176739 0.000143031 0.0157584 0.0129141 34 2987 46 6.87369e+06 503058 618332. 2139.56 2.22 0.101774 0.089317 1945 23 1582 2303 191034 46415 3.4165 3.4165 -129.643 -3.4165 0 0 787024. 2723.27 0.24 0.05 0.0125229 0.0109865 145 50 54 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.84 vpr 63.00 MiB 0.04 7108 -1 -1 1 0.01 -1 -1 33632 -1 -1 23 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64512 29 32 347 271 1 184 84 17 17 289 -1 unnamed_device 24.5 MiB 1.01 735 63.0 MiB 0.05 0.00 3.28949 -102.139 -3.28949 3.28949 0.67 0.000165103 0.000133764 0.0097431 0.00805402 36 2153 24 6.87369e+06 321398 648988. 2245.63 2.52 0.0838411 0.0739226 1719 23 1730 3028 193680 50314 3.8154 3.8154 -131.603 -3.8154 0 0 828058. 2865.25 0.25 0.05 0.0122999 0.0108698 136 25 87 29 29 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.78 vpr 63.25 MiB 0.06 7312 -1 -1 1 0.01 -1 -1 33228 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64764 32 32 377 289 1 202 85 17 17 289 -1 unnamed_device 24.8 MiB 2.64 878 63.2 MiB 0.10 0.00 3.32249 -115.894 -3.32249 3.32249 0.81 0.000177425 0.000143954 0.0150094 0.0123816 36 2954 25 6.87369e+06 293451 648988. 2245.63 2.47 0.0791814 0.068034 2181 24 2225 4072 280233 69195 4.113 4.113 -151.241 -4.113 0 0 828058. 2865.25 0.29 0.06 0.0131347 0.0115866 147 31 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.21 vpr 63.43 MiB 0.03 7132 -1 -1 1 0.01 -1 -1 33380 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64956 32 32 403 317 1 200 105 17 17 289 -1 unnamed_device 24.8 MiB 1.69 1052 63.4 MiB 0.10 0.00 3.1151 -101.712 -3.1151 3.1151 0.68 0.000188827 0.000153321 0.0136092 0.0111421 28 2874 33 6.87369e+06 572927 531479. 1839.03 1.15 0.0589771 0.0503166 2447 21 1509 2571 192631 48719 3.29686 3.29686 -130.986 -3.29686 0 0 648988. 2245.63 0.22 0.06 0.0145307 0.0128927 156 61 63 32 63 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 4.91 vpr 62.92 MiB 0.03 7164 -1 -1 1 0.01 -1 -1 33480 -1 -1 20 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64428 27 32 275 232 1 146 79 17 17 289 -1 unnamed_device 24.4 MiB 1.68 592 62.9 MiB 0.08 0.00 2.71895 -82.2933 -2.71895 2.71895 0.71 0.000140283 0.000112886 0.0130487 0.01071 28 1720 28 6.87369e+06 279477 531479. 1839.03 0.82 0.0405716 0.0343739 1526 21 1245 2039 152093 37643 3.05556 3.05556 -107.167 -3.05556 0 0 648988. 2245.63 0.21 0.04 0.0209661 0.0198817 101 26 54 27 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.08 vpr 62.98 MiB 0.03 7308 -1 -1 1 0.01 -1 -1 33056 -1 -1 35 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64488 31 32 319 244 1 187 98 17 17 289 -1 unnamed_device 24.5 MiB 0.96 1040 63.0 MiB 0.11 0.00 2.77025 -94.7397 -2.77025 2.77025 0.70 0.000176251 0.000144107 0.0149341 0.0122099 30 2540 26 6.87369e+06 489084 556674. 1926.21 2.61 0.0794604 0.0678412 1937 18 1001 1719 102666 24288 2.73166 2.73166 -109.69 -2.73166 0 0 706193. 2443.58 0.22 0.03 0.00934324 0.00831149 141 -1 115 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.91 vpr 63.25 MiB 0.04 7040 -1 -1 1 0.01 -1 -1 33164 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64764 31 32 340 294 1 153 79 17 17 289 -1 unnamed_device 24.7 MiB 2.85 783 63.2 MiB 0.07 0.00 2.60257 -88.687 -2.60257 2.60257 0.72 0.000154892 0.000123785 0.0139918 0.0114758 32 2211 33 6.87369e+06 223581 586450. 2029.24 0.74 0.0487313 0.0413857 1754 16 959 1531 124845 29300 3.02161 3.02161 -111.328 -3.02161 0 0 744469. 2576.02 0.23 0.03 0.00931783 0.00833703 103 81 0 0 84 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.77 vpr 62.88 MiB 0.02 7104 -1 -1 1 0.01 -1 -1 33168 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64388 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 4.18 888 62.9 MiB 0.08 0.00 3.0558 -113.464 -3.0558 3.0558 0.72 0.000171756 0.000141233 0.011328 0.00936882 34 2286 21 6.87369e+06 223581 618332. 2139.56 1.20 0.0577531 0.0492399 1903 19 1425 2273 156919 36620 3.40511 3.40511 -136.253 -3.40511 0 0 787024. 2723.27 0.23 0.04 0.0102378 0.00910891 114 31 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 5.86 vpr 63.20 MiB 0.02 7036 -1 -1 1 0.01 -1 -1 33372 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64716 30 32 328 276 1 160 80 17 17 289 -1 unnamed_device 24.8 MiB 2.68 765 63.2 MiB 0.11 0.00 3.0931 -101.533 -3.0931 3.0931 0.72 0.000156919 0.000127853 0.0120651 0.00995498 32 1956 24 6.87369e+06 251529 586450. 2029.24 0.79 0.0388976 0.03284 1636 22 1331 2008 138942 35883 3.19981 3.19981 -123.757 -3.19981 0 0 744469. 2576.02 0.22 0.04 0.0105132 0.00929409 109 58 30 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 4.78 vpr 62.96 MiB 0.02 6920 -1 -1 1 0.02 -1 -1 33452 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64476 32 32 332 281 1 161 96 17 17 289 -1 unnamed_device 24.5 MiB 1.47 966 63.0 MiB 0.09 0.00 2.80025 -99.9832 -2.80025 2.80025 0.68 0.000154289 0.000123464 0.0128872 0.0104676 34 2299 19 6.87369e+06 447163 618332. 2139.56 1.11 0.0578099 0.0488841 2022 17 1194 1967 152122 34813 2.87896 2.87896 -119.942 -2.87896 0 0 787024. 2723.27 0.25 0.04 0.0104249 0.00934694 116 57 25 25 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.31 vpr 63.19 MiB 0.04 7284 -1 -1 1 0.02 -1 -1 33472 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64708 32 32 387 306 1 195 99 17 17 289 -1 unnamed_device 24.7 MiB 4.86 1078 63.2 MiB 0.14 0.00 2.87725 -106.841 -2.87725 2.87725 0.74 0.000203968 0.000159329 0.0182335 0.0147832 30 2455 20 6.87369e+06 489084 556674. 1926.21 0.75 0.0505 0.0425262 2089 20 1555 2723 157190 36976 2.86166 2.86166 -124.522 -2.86166 0 0 706193. 2443.58 0.22 0.04 0.0112147 0.00989646 147 55 64 32 57 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.55 vpr 63.60 MiB 0.02 7340 -1 -1 1 0.02 -1 -1 33448 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65124 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 25.0 MiB 4.21 1097 63.6 MiB 0.11 0.00 3.39279 -121.908 -3.39279 3.39279 0.73 0.000185328 0.000150286 0.0142859 0.0116639 32 3094 30 6.87369e+06 517032 586450. 2029.24 0.88 0.068397 0.0601347 2334 23 2042 3229 257371 58232 3.6418 3.6418 -147.087 -3.6418 0 0 744469. 2576.02 0.23 0.06 0.0140073 0.0123785 155 60 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.15 vpr 62.70 MiB 0.03 7216 -1 -1 1 0.01 -1 -1 33380 -1 -1 19 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64204 29 32 276 232 1 148 80 17 17 289 -1 unnamed_device 24.2 MiB 1.79 905 62.7 MiB 0.07 0.00 2.8846 -93.2791 -2.8846 2.8846 0.71 0.000167148 0.00013978 0.0111967 0.00917646 32 2217 43 6.87369e+06 265503 586450. 2029.24 0.93 0.0451073 0.0385622 1858 21 1267 2127 174729 39208 3.10861 3.10861 -110.927 -3.10861 0 0 744469. 2576.02 0.24 0.04 0.00960578 0.0084867 102 21 58 29 24 24 - fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.00 vpr 63.33 MiB 0.02 7252 -1 -1 1 0.01 -1 -1 33288 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64848 32 32 402 316 1 200 85 17 17 289 -1 unnamed_device 24.8 MiB 2.24 1047 63.3 MiB 0.11 0.00 2.77395 -103.275 -2.77395 2.77395 0.71 0.00018342 0.00014887 0.0169947 0.0139745 34 2669 24 6.87369e+06 293451 618332. 2139.56 1.27 0.0777346 0.0662144 2230 23 2097 3580 249593 60528 3.10126 3.10126 -129.465 -3.10126 0 0 787024. 2723.27 0.26 0.06 0.0132889 0.0117363 145 60 64 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.98 vpr 63.24 MiB 0.02 7300 -1 -1 1 0.01 -1 -1 33636 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64756 32 32 384 304 1 193 102 17 17 289 -1 unnamed_device 24.8 MiB 4.64 979 63.2 MiB 0.08 0.00 2.91945 -103.257 -2.91945 2.91945 0.78 0.000181763 0.000148328 0.0103904 0.00853803 28 2435 22 6.87369e+06 531006 531479. 1839.03 0.80 0.0412096 0.0349992 2088 21 1458 2201 146186 35433 3.05126 3.05126 -128.288 -3.05126 0 0 648988. 2245.63 0.20 0.04 0.0115958 0.0102172 148 54 64 32 56 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.07 vpr 63.32 MiB 0.03 7004 -1 -1 1 0.01 -1 -1 33164 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64840 32 32 340 285 1 165 93 17 17 289 -1 unnamed_device 24.8 MiB 2.57 738 63.3 MiB 0.08 0.00 2.46506 -88.1584 -2.46506 2.46506 0.65 0.000174218 0.00014235 0.0105017 0.00860267 34 2058 26 6.87369e+06 405241 618332. 2139.56 1.22 0.0594965 0.0503353 1612 18 1163 1654 122686 30545 2.44647 2.44647 -103.497 -2.44647 0 0 787024. 2723.27 0.24 0.04 0.010912 0.00982874 117 62 29 29 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.98 vpr 62.77 MiB 0.02 6792 -1 -1 1 0.01 -1 -1 33080 -1 -1 14 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64276 30 32 229 211 1 119 76 17 17 289 -1 unnamed_device 24.2 MiB 0.54 644 62.8 MiB 0.04 0.00 2.31406 -77.6586 -2.31406 2.31406 0.89 0.000114135 9.102e-05 0.00753311 0.006187 32 1472 16 6.87369e+06 195634 586450. 2029.24 0.75 0.0267959 0.0226545 1269 21 658 994 81229 18231 1.96072 1.96072 -86.3207 -1.96072 0 0 744469. 2576.02 0.32 0.04 0.0102364 0.0092918 73 29 24 24 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 5.50 vpr 63.00 MiB 0.06 7188 -1 -1 1 0.02 -1 -1 33524 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64508 31 32 337 282 1 165 80 17 17 289 -1 unnamed_device 24.6 MiB 1.98 794 63.0 MiB 0.07 0.00 3.53045 -110.515 -3.53045 3.53045 0.81 0.000156238 0.000126347 0.0117816 0.00972517 32 2484 39 6.87369e+06 237555 586450. 2029.24 0.81 0.0549191 0.0477744 1881 17 1096 1611 138205 32700 3.2002 3.2002 -129.455 -3.2002 0 0 744469. 2576.02 0.23 0.04 0.00903383 0.00799855 113 55 31 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 6.36 vpr 63.48 MiB 0.05 7284 -1 -1 1 0.01 -1 -1 33064 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65008 32 32 367 284 1 197 100 17 17 289 -1 unnamed_device 25.0 MiB 1.30 1089 63.5 MiB 0.10 0.00 3.29869 -118.853 -3.29869 3.29869 0.78 0.000182857 0.000149016 0.012664 0.0105522 30 2550 29 6.87369e+06 503058 556674. 1926.21 2.28 0.0894477 0.0772485 2006 22 1324 1911 125869 27980 3.5278 3.5278 -137.438 -3.5278 0 0 706193. 2443.58 0.24 0.10 0.0150126 0.0134511 150 31 91 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.11 vpr 63.32 MiB 0.02 7216 -1 -1 1 0.01 -1 -1 33584 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64836 32 32 461 376 1 199 104 17 17 289 -1 unnamed_device 24.9 MiB 3.59 931 63.3 MiB 0.14 0.00 3.11996 -105.529 -3.11996 3.11996 0.85 0.0001996 0.00016135 0.0403211 0.0238661 34 3085 41 6.87369e+06 558954 618332. 2139.56 1.97 0.145974 0.116628 2129 26 1768 2702 216215 50770 4.1073 4.1073 -132.801 -4.1073 0 0 787024. 2723.27 0.24 0.06 0.0159601 0.0140122 154 108 0 0 125 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.28 vpr 62.43 MiB 0.01 6916 -1 -1 1 0.01 -1 -1 33360 -1 -1 16 26 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63924 26 32 205 193 1 109 74 17 17 289 -1 unnamed_device 24.1 MiB 2.27 637 62.4 MiB 0.04 0.00 2.29206 -68.6017 -2.29206 2.29206 0.88 0.000100797 8.023e-05 0.00632844 0.00513667 32 1442 33 6.87369e+06 223581 586450. 2029.24 0.64 0.027506 0.0232171 1239 23 757 1176 100390 22892 2.04682 2.04682 -79.5074 -2.04682 0 0 744469. 2576.02 0.23 0.03 0.00735908 0.00642385 69 21 26 26 22 22 - fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.13 vpr 63.06 MiB 0.03 7276 -1 -1 1 0.02 -1 -1 33328 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64576 32 32 334 252 1 196 85 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1115 63.1 MiB 0.16 0.00 3.28949 -118.35 -3.28949 3.28949 0.83 0.000166779 0.000135838 0.0261184 0.0191473 30 2515 21 6.87369e+06 293451 556674. 1926.21 0.75 0.0608265 0.0492693 2037 19 1466 2488 137788 33503 3.5778 3.5778 -141.011 -3.5778 0 0 706193. 2443.58 0.23 0.04 0.0116151 0.0103578 141 -1 122 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.89 vpr 62.43 MiB 0.03 6876 -1 -1 1 0.01 -1 -1 33252 -1 -1 12 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63924 32 32 200 183 1 122 76 17 17 289 -1 unnamed_device 23.8 MiB 0.42 537 62.4 MiB 0.05 0.00 2.05403 -72.6171 -2.05403 2.05403 0.74 0.000116933 9.5182e-05 0.00902433 0.00735602 34 1384 22 6.87369e+06 167686 618332. 2139.56 1.05 0.0414089 0.0341496 1075 17 564 700 44077 11890 1.99187 1.99187 -82.9226 -1.99187 0 0 787024. 2723.27 0.28 0.02 0.0064664 0.00578595 71 -1 53 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.96 vpr 63.23 MiB 0.05 7224 -1 -1 1 0.01 -1 -1 33460 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64748 32 32 377 289 1 202 100 17 17 289 -1 unnamed_device 24.7 MiB 1.15 1097 63.2 MiB 0.13 0.01 3.39279 -121.553 -3.39279 3.39279 0.74 0.000200679 0.000165303 0.0131346 0.0109171 32 3146 48 6.87369e+06 503058 586450. 2029.24 1.07 0.062643 0.0542466 2505 22 2025 3125 308741 67833 3.9427 3.9427 -154.369 -3.9427 0 0 744469. 2576.02 0.31 0.07 0.0128616 0.0114294 155 21 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.70 vpr 63.30 MiB 0.05 7316 -1 -1 1 0.01 -1 -1 33256 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64820 32 32 338 254 1 198 100 17 17 289 -1 unnamed_device 24.7 MiB 1.16 1004 63.3 MiB 0.15 0.01 2.98975 -102.764 -2.98975 2.98975 0.75 0.000205441 0.000169946 0.0172693 0.0145083 32 3072 31 6.87369e+06 503058 586450. 2029.24 0.89 0.0566564 0.0487447 2186 22 1615 2499 190003 45122 3.04926 3.04926 -122.072 -3.04926 0 0 744469. 2576.02 0.24 0.09 0.0138808 0.0124296 151 -1 124 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.49 vpr 63.59 MiB 0.03 7132 -1 -1 1 0.01 -1 -1 33748 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65112 32 32 408 320 1 202 103 17 17 289 -1 unnamed_device 25.0 MiB 1.15 1054 63.6 MiB 0.12 0.00 3.38179 -119.017 -3.38179 3.38179 0.78 0.000214476 0.000173998 0.0122708 0.0101275 34 3034 24 6.87369e+06 544980 618332. 2139.56 1.64 0.0796749 0.0686293 2380 20 2016 3385 248036 59693 3.8734 3.8734 -147.296 -3.8734 0 0 787024. 2723.27 0.27 0.06 0.0139678 0.0122163 156 54 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.81 vpr 62.78 MiB 0.04 6924 -1 -1 1 0.01 -1 -1 33028 -1 -1 15 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64288 32 32 295 247 1 157 79 17 17 289 -1 unnamed_device 24.2 MiB 1.08 873 62.8 MiB 0.07 0.00 2.42892 -91.7016 -2.42892 2.42892 0.73 0.000154753 0.00012546 0.0103318 0.00848616 34 2212 24 6.87369e+06 209608 618332. 2139.56 1.10 0.0741419 0.065636 1891 21 1346 2135 166166 37715 2.88526 2.88526 -118.739 -2.88526 0 0 787024. 2723.27 0.28 0.17 0.0288265 0.0275789 104 31 54 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.44 vpr 62.99 MiB 0.04 6972 -1 -1 1 0.01 -1 -1 33112 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64504 30 32 299 247 1 160 80 17 17 289 -1 unnamed_device 24.5 MiB 1.75 774 63.0 MiB 0.07 0.00 3.25325 -103.343 -3.25325 3.25325 0.71 0.000151905 0.000123275 0.013461 0.0111606 32 2174 34 6.87369e+06 251529 586450. 2029.24 0.86 0.0492717 0.0422088 1577 18 1249 1896 132455 34304 3.09336 3.09336 -119.294 -3.09336 0 0 744469. 2576.02 0.38 0.04 0.00919822 0.00821064 110 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.25 vpr 63.06 MiB 0.03 6988 -1 -1 1 0.01 -1 -1 33452 -1 -1 19 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64576 28 32 283 237 1 150 79 17 17 289 -1 unnamed_device 24.5 MiB 1.06 688 63.1 MiB 0.06 0.00 2.72995 -85.9959 -2.72995 2.72995 0.88 0.000145781 0.000118898 0.0108174 0.00928072 34 2074 23 6.87369e+06 265503 618332. 2139.56 1.20 0.0565767 0.0488643 1734 23 1411 2433 176923 42946 3.05556 3.05556 -110.83 -3.05556 0 0 787024. 2723.27 0.26 0.05 0.0123573 0.0111069 104 27 56 28 28 28 - fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 4.94 vpr 62.64 MiB 0.03 7060 -1 -1 1 0.02 -1 -1 33496 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64144 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.22 928 62.6 MiB 0.08 0.00 2.77395 -106.098 -2.77395 2.77395 0.69 0.000145988 0.000118783 0.0114446 0.00939978 34 2343 23 6.87369e+06 223581 618332. 2139.56 1.21 0.0597379 0.0508732 1978 23 1634 2736 197279 45805 3.01356 3.01356 -129.189 -3.01356 0 0 787024. 2723.27 0.34 0.05 0.0109773 0.0097335 114 -1 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.55 vpr 62.77 MiB 0.03 6984 -1 -1 1 0.01 -1 -1 33412 -1 -1 32 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64280 31 32 305 251 1 163 95 17 17 289 -1 unnamed_device 24.4 MiB 0.77 756 62.8 MiB 0.08 0.00 2.86625 -97.3723 -2.86625 2.86625 0.70 0.000158822 0.000128559 0.0108935 0.00902628 28 2375 37 6.87369e+06 447163 531479. 1839.03 1.46 0.0497477 0.042504 1959 27 1621 2680 268714 64974 3.33286 3.33286 -124.014 -3.33286 0 0 648988. 2245.63 0.21 0.06 0.0121111 0.0106248 119 26 61 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.14 vpr 63.21 MiB 0.03 7024 -1 -1 1 0.01 -1 -1 33296 -1 -1 32 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64724 29 32 316 268 1 155 93 17 17 289 -1 unnamed_device 24.7 MiB 2.84 797 63.2 MiB 0.11 0.00 2.30671 -80.3169 -2.30671 2.30671 0.71 0.00015202 0.000122297 0.0139191 0.0113629 28 1929 22 6.87369e+06 447163 531479. 1839.03 0.71 0.0438478 0.03725 1723 20 1212 2104 145827 34845 2.23612 2.23612 -94.465 -2.23612 0 0 648988. 2245.63 0.23 0.05 0.0105099 0.00929365 113 55 29 29 57 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.59 vpr 63.68 MiB 0.06 7352 -1 -1 1 0.01 -1 -1 33596 -1 -1 44 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65208 32 32 424 311 1 231 108 17 17 289 -1 unnamed_device 25.2 MiB 4.13 1258 63.7 MiB 0.17 0.00 3.40379 -121.739 -3.40379 3.40379 0.78 0.000272687 0.00023043 0.0230235 0.0193923 34 3256 23 6.87369e+06 614849 618332. 2139.56 1.75 0.089729 0.0774209 2595 21 2158 3623 250362 58143 3.7671 3.7671 -146.66 -3.7671 0 0 787024. 2723.27 0.25 0.06 0.0148046 0.0131964 184 26 128 32 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.50 vpr 63.44 MiB 0.05 7264 -1 -1 1 0.01 -1 -1 33460 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64960 32 32 404 318 1 200 103 17 17 289 -1 unnamed_device 24.9 MiB 2.87 1002 63.4 MiB 0.10 0.00 2.89445 -103.564 -2.89445 2.89445 0.72 0.000203818 0.000159684 0.0134818 0.0109519 32 2837 24 6.87369e+06 544980 586450. 2029.24 1.07 0.106292 0.0799485 2132 18 1800 2716 205355 48416 3.06026 3.06026 -124.208 -3.06026 0 0 744469. 2576.02 0.23 0.05 0.0129682 0.0116366 154 62 62 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.26 vpr 63.28 MiB 0.03 7224 -1 -1 1 0.01 -1 -1 33400 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64800 31 32 355 304 1 160 94 17 17 289 -1 unnamed_device 24.8 MiB 3.46 780 63.3 MiB 0.09 0.00 2.77825 -93.984 -2.77825 2.77825 0.72 0.00018147 0.000146567 0.0125233 0.0102065 34 2055 23 6.87369e+06 433189 618332. 2139.56 1.26 0.0617309 0.052375 1736 21 1280 2057 145783 35210 2.97126 2.97126 -111.729 -2.97126 0 0 787024. 2723.27 0.23 0.04 0.010241 0.00899101 116 77 0 0 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.62 vpr 63.24 MiB 0.04 7372 -1 -1 1 0.01 -1 -1 33404 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64756 31 32 393 311 1 195 86 17 17 289 -1 unnamed_device 24.8 MiB 2.84 969 63.2 MiB 0.10 0.00 2.78315 -96.4212 -2.78315 2.78315 0.69 0.000207027 0.000170602 0.0154906 0.0128086 34 2683 26 6.87369e+06 321398 618332. 2139.56 1.29 0.0776796 0.0664145 2058 20 1735 2861 199899 46943 3.16356 3.16356 -121.486 -3.16356 0 0 787024. 2723.27 0.25 0.07 0.0167539 0.0153329 142 59 60 30 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.17 vpr 63.50 MiB 0.02 7456 -1 -1 1 0.01 -1 -1 33608 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65020 31 32 457 373 1 198 85 17 17 289 -1 unnamed_device 25.1 MiB 5.36 1104 63.5 MiB 0.10 0.00 3.93354 -125.118 -3.93354 3.93354 0.68 0.000222148 0.000183869 0.0174086 0.014378 34 2692 24 6.87369e+06 307425 618332. 2139.56 1.44 0.0841295 0.0716823 2410 20 1611 2636 255720 53137 4.18565 4.18565 -152.458 -4.18565 0 0 787024. 2723.27 0.30 0.06 0.0142554 0.0126486 145 111 0 0 124 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.85 vpr 63.39 MiB 0.02 7276 -1 -1 1 0.02 -1 -1 33524 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64916 31 32 415 335 1 195 85 17 17 289 -1 unnamed_device 24.9 MiB 2.02 1129 63.4 MiB 0.09 0.00 3.85654 -119.164 -3.85654 3.85654 0.85 0.000216472 0.000179605 0.0165759 0.0136982 28 3362 42 6.87369e+06 307425 531479. 1839.03 1.31 0.0675473 0.0580988 2596 23 1837 2954 264485 58479 4.2776 4.2776 -155.777 -4.2776 0 0 648988. 2245.63 0.21 0.06 0.0139928 0.0122841 141 86 31 31 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.83 vpr 63.41 MiB 0.03 7212 -1 -1 1 0.01 -1 -1 33308 -1 -1 35 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64932 31 32 393 311 1 195 98 17 17 289 -1 unnamed_device 24.8 MiB 2.71 1017 63.4 MiB 0.11 0.00 2.87725 -101.142 -2.87725 2.87725 0.70 0.000181021 0.00014596 0.0140661 0.0114722 28 2897 32 6.87369e+06 489084 531479. 1839.03 1.52 0.0638708 0.0553565 2398 21 1888 3198 251694 57588 3.01626 3.01626 -124.639 -3.01626 0 0 648988. 2245.63 0.20 0.06 0.0119363 0.0105294 148 58 60 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 5.79 vpr 63.32 MiB 0.04 7208 -1 -1 1 0.02 -1 -1 33612 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64836 32 32 408 320 1 202 102 17 17 289 -1 unnamed_device 24.7 MiB 2.05 1034 63.3 MiB 0.09 0.00 3.40379 -119.855 -3.40379 3.40379 0.66 0.000182542 0.000148688 0.0106811 0.00870469 30 2817 24 6.87369e+06 531006 556674. 1926.21 1.07 0.0480831 0.0412559 2302 20 1652 2658 184146 41942 3.6638 3.6638 -146.635 -3.6638 0 0 706193. 2443.58 0.23 0.05 0.0127547 0.0113732 156 42 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 10.58 vpr 63.29 MiB 0.02 7612 -1 -1 1 0.01 -1 -1 33472 -1 -1 42 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64804 32 32 497 381 1 234 106 17 17 289 -1 unnamed_device 25.2 MiB 3.59 1056 63.3 MiB 0.14 0.00 3.36169 -115.587 -3.36169 3.36169 0.74 0.000252611 0.000210717 0.0170071 0.0141588 30 2816 23 6.87369e+06 586901 556674. 1926.21 4.51 0.110863 0.0956705 2024 19 1751 2980 149606 37312 3.5165 3.5165 -136.611 -3.5165 0 0 706193. 2443.58 0.22 0.05 0.0147555 0.0131548 186 91 62 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.73 vpr 62.97 MiB 0.04 7092 -1 -1 1 0.01 -1 -1 33672 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64480 31 32 307 252 1 164 80 17 17 289 -1 unnamed_device 24.3 MiB 2.33 660 63.0 MiB 0.05 0.00 3.0136 -102.667 -3.0136 3.0136 0.66 0.000159536 0.000131641 0.0109873 0.00921251 30 2138 34 6.87369e+06 237555 556674. 1926.21 0.79 0.0433964 0.0370916 1539 21 1294 2079 129199 31747 3.24391 3.24391 -123.955 -3.24391 0 0 706193. 2443.58 0.23 0.04 0.0105047 0.00935067 112 24 62 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 8.35 vpr 63.34 MiB 0.04 7248 -1 -1 1 0.01 -1 -1 33444 -1 -1 37 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64856 31 32 397 313 1 198 100 17 17 289 -1 unnamed_device 24.7 MiB 2.73 1059 63.3 MiB 0.09 0.00 3.31149 -115.848 -3.31149 3.31149 0.67 0.000182919 0.000148892 0.0110591 0.00914497 26 3430 40 6.87369e+06 517032 503264. 1741.40 3.09 0.062259 0.053855 2755 26 2244 3833 487664 101176 4.3386 4.3386 -158.378 -4.3386 0 0 618332. 2139.56 0.20 0.12 0.0174642 0.015575 152 59 62 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.87 vpr 63.54 MiB 0.03 7316 -1 -1 1 0.02 -1 -1 33540 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65060 32 32 398 314 1 198 99 17 17 289 -1 unnamed_device 25.0 MiB 2.36 1135 63.5 MiB 0.12 0.00 2.86625 -103.232 -2.86625 2.86625 0.70 0.000185213 0.000150428 0.0151664 0.0124521 28 3016 25 6.87369e+06 489084 531479. 1839.03 0.86 0.0519675 0.0442064 2596 19 1713 2911 217171 52114 3.34086 3.34086 -129.192 -3.34086 0 0 648988. 2245.63 0.20 0.05 0.0121528 0.0107627 150 54 62 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 4.54 vpr 63.07 MiB 0.04 7048 -1 -1 1 0.01 -1 -1 33324 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64588 32 32 346 258 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 0.75 1134 63.1 MiB 0.13 0.00 3.32249 -121.724 -3.32249 3.32249 0.69 0.000177195 0.000144483 0.0181091 0.015077 34 3113 23 6.87369e+06 293451 618332. 2139.56 1.30 0.0783687 0.067417 2532 21 2075 3717 276897 64561 4.0067 4.0067 -158.837 -4.0067 0 0 787024. 2723.27 0.31 0.06 0.0130748 0.0116928 147 -1 128 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.82 vpr 63.41 MiB 0.07 7436 -1 -1 1 0.02 -1 -1 33464 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64928 32 32 425 344 1 195 100 17 17 289 -1 unnamed_device 24.8 MiB 3.87 1025 63.4 MiB 0.13 0.00 2.89925 -104.947 -2.89925 2.89925 0.68 0.000186279 0.000150115 0.0170622 0.0139334 34 2543 21 6.87369e+06 503058 618332. 2139.56 1.19 0.0734912 0.0623769 2101 23 1748 2720 179016 42890 2.99796 2.99796 -124.106 -2.99796 0 0 787024. 2723.27 0.30 0.05 0.0143807 0.0126335 148 81 25 25 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.89 vpr 63.38 MiB 0.03 7140 -1 -1 1 0.01 -1 -1 33364 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64900 32 32 396 312 1 198 103 17 17 289 -1 unnamed_device 24.8 MiB 3.65 1114 63.4 MiB 0.18 0.00 2.77395 -104.428 -2.77395 2.77395 0.96 0.000285518 0.000243299 0.0329043 0.0123738 26 3037 29 6.87369e+06 544980 503264. 1741.40 1.58 0.0743006 0.04817 2655 22 1700 3063 291628 63219 3.24056 3.24056 -136.818 -3.24056 0 0 618332. 2139.56 0.19 0.07 0.0143377 0.012669 152 58 64 32 60 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 6.41 vpr 63.36 MiB 0.02 7144 -1 -1 1 0.01 -1 -1 33272 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64884 32 32 406 319 1 201 104 17 17 289 -1 unnamed_device 24.8 MiB 3.20 1102 63.4 MiB 0.14 0.00 2.94755 -106.345 -2.94755 2.94755 0.69 0.000190125 0.000150811 0.0175752 0.0141757 32 2919 42 6.87369e+06 558954 586450. 2029.24 0.87 0.0656804 0.0557252 2366 18 1753 2863 236128 54760 3.21856 3.21856 -128.532 -3.21856 0 0 744469. 2576.02 0.24 0.06 0.0132274 0.0118256 156 61 63 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.82 vpr 63.41 MiB 0.04 7168 -1 -1 1 0.01 -1 -1 33348 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64928 32 32 377 289 1 202 103 17 17 289 -1 unnamed_device 24.9 MiB 0.76 996 63.4 MiB 0.10 0.00 3.32249 -115.898 -3.32249 3.32249 0.72 0.00026516 0.000229617 0.0128724 0.010686 28 3225 25 6.87369e+06 544980 531479. 1839.03 1.64 0.053897 0.0464244 2489 20 1865 2909 259785 59459 4.027 4.027 -155.421 -4.027 0 0 648988. 2245.63 0.21 0.06 0.0132689 0.0118485 156 21 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.75 vpr 63.65 MiB 0.03 7088 -1 -1 1 0.01 -1 -1 33400 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65180 32 32 408 320 1 202 105 17 17 289 -1 unnamed_device 25.1 MiB 3.39 1008 63.7 MiB 0.12 0.00 3.42579 -121.243 -3.42579 3.42579 0.74 0.000198771 0.000162905 0.0161095 0.0132438 34 2612 24 6.87369e+06 572927 618332. 2139.56 1.56 0.0748063 0.0632571 2146 23 2053 3229 231705 53440 3.8924 3.8924 -147.741 -3.8924 0 0 787024. 2723.27 0.40 0.07 0.0135177 0.0118971 157 50 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.90 vpr 63.43 MiB 0.02 7440 -1 -1 1 0.02 -1 -1 33504 -1 -1 37 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64948 31 32 451 369 1 195 100 17 17 289 -1 unnamed_device 25.0 MiB 4.20 1125 63.4 MiB 0.14 0.00 3.38179 -115.121 -3.38179 3.38179 0.72 0.000200574 0.000162471 0.0191194 0.0157104 26 3189 50 6.87369e+06 517032 503264. 1741.40 2.23 0.0795306 0.0678043 2711 25 2166 3980 412032 94996 4.6458 4.6458 -146.039 -4.6458 0 0 618332. 2139.56 0.20 0.09 0.0152845 0.0133178 150 110 0 0 122 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.69 vpr 63.39 MiB 0.02 7324 -1 -1 1 0.02 -1 -1 33516 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64908 32 32 433 347 1 200 85 17 17 289 -1 unnamed_device 24.7 MiB 3.88 976 63.4 MiB 0.12 0.00 3.38179 -117.204 -3.38179 3.38179 0.70 0.000194524 0.000157654 0.0177159 0.0145282 34 2964 25 6.87369e+06 293451 618332. 2139.56 1.32 0.0848857 0.0727519 2382 24 1927 3559 268308 67586 3.969 3.969 -142.237 -3.969 0 0 787024. 2723.27 0.24 0.06 0.0149196 0.0131565 145 86 32 32 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.41 vpr 63.30 MiB 0.03 6960 -1 -1 1 0.01 -1 -1 33336 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64820 32 32 313 256 1 167 96 17 17 289 -1 unnamed_device 24.8 MiB 1.03 947 63.3 MiB 0.08 0.00 2.86625 -104.57 -2.86625 2.86625 0.85 0.000149331 0.000119828 0.0102936 0.0083442 28 2220 20 6.87369e+06 447163 531479. 1839.03 0.74 0.0362675 0.0307118 1969 22 1476 2296 187435 42796 2.95696 2.95696 -124.307 -2.95696 0 0 648988. 2245.63 0.23 0.05 0.0105863 0.00930955 121 20 63 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.44 vpr 63.14 MiB 0.02 7164 -1 -1 1 0.01 -1 -1 33432 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64656 32 32 371 315 1 166 80 17 17 289 -1 unnamed_device 24.6 MiB 3.02 799 63.1 MiB 0.13 0.02 2.9366 -103.265 -2.9366 2.9366 0.92 0.000182114 0.000149883 0.0403649 0.0384884 32 2459 23 6.87369e+06 223581 586450. 2029.24 0.75 0.0702173 0.0640254 2025 21 1412 2204 171781 42113 3.20456 3.20456 -129.938 -3.20456 0 0 744469. 2576.02 0.22 0.04 0.01111 0.00979503 112 91 0 0 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 6.34 vpr 63.61 MiB 0.04 7376 -1 -1 1 0.02 -1 -1 33860 -1 -1 44 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65136 32 32 470 352 1 236 108 17 17 289 -1 unnamed_device 25.5 MiB 2.45 1296 63.6 MiB 0.23 0.00 3.90224 -135.699 -3.90224 3.90224 0.69 0.000231481 0.000189583 0.0227925 0.0187813 30 3366 25 6.87369e+06 614849 556674. 1926.21 1.13 0.07538 0.0647006 2421 22 2227 3835 207497 50666 4.76685 4.76685 -171.218 -4.76685 0 0 706193. 2443.58 0.22 0.06 0.0173598 0.0155986 189 53 96 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.29 vpr 63.29 MiB 0.04 7164 -1 -1 1 0.01 -1 -1 33256 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64812 32 32 369 285 1 198 99 17 17 289 -1 unnamed_device 24.8 MiB 2.60 920 63.3 MiB 0.12 0.00 2.90845 -101.477 -2.90845 2.90845 0.70 0.000176317 0.000143496 0.0159971 0.0131945 34 2278 22 6.87369e+06 489084 618332. 2139.56 1.21 0.0741384 0.0632923 1728 24 1418 2178 136231 35681 2.92116 2.92116 -115.312 -2.92116 0 0 787024. 2723.27 0.25 0.05 0.0142217 0.0126342 150 31 92 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 3.93 vpr 62.83 MiB 0.03 7028 -1 -1 1 0.02 -1 -1 33292 -1 -1 31 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64336 30 32 299 247 1 160 93 17 17 289 -1 unnamed_device 24.4 MiB 0.67 639 62.8 MiB 0.09 0.00 2.81125 -92.3675 -2.81125 2.81125 0.80 0.000142733 0.000115081 0.0124061 0.0101574 30 1951 31 6.87369e+06 433189 556674. 1926.21 0.84 0.0426562 0.0362524 1353 20 1008 1539 85682 22065 2.95696 2.95696 -109.876 -2.95696 0 0 706193. 2443.58 0.22 0.03 0.00910056 0.00807294 116 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 10.67 vpr 63.66 MiB 0.07 7528 -1 -1 1 0.01 -1 -1 34048 -1 -1 47 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65188 32 32 532 414 1 236 111 17 17 289 -1 unnamed_device 25.4 MiB 6.48 1268 63.7 MiB 0.17 0.00 3.99154 -138.644 -3.99154 3.99154 0.72 0.000281815 0.000236296 0.0240079 0.0199929 28 3401 24 6.87369e+06 656770 531479. 1839.03 1.59 0.0776646 0.0668385 2882 23 2592 4136 368292 78338 4.91215 4.91215 -180.237 -4.91215 0 0 648988. 2245.63 0.22 0.10 0.0261798 0.0187581 190 109 32 32 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.82 vpr 63.51 MiB 0.03 7100 -1 -1 1 0.01 -1 -1 33120 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65036 32 32 377 289 1 202 104 17 17 289 -1 unnamed_device 25.0 MiB 3.32 1007 63.5 MiB 0.08 0.00 3.42399 -119.84 -3.42399 3.42399 0.68 0.000204556 0.000168196 0.0111016 0.00917302 32 2725 36 6.87369e+06 558954 586450. 2029.24 0.80 0.0531793 0.0455458 2288 23 2060 3109 300974 64690 3.7671 3.7671 -149.795 -3.7671 0 0 744469. 2576.02 0.24 0.06 0.0126779 0.0111806 156 31 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.42 vpr 62.67 MiB 0.02 7076 -1 -1 1 0.01 -1 -1 33200 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64172 32 32 284 226 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 0.75 850 62.7 MiB 0.10 0.00 2.86625 -101.776 -2.86625 2.86625 0.75 0.000140571 0.000113288 0.012177 0.00991607 36 1961 24 6.87369e+06 461137 648988. 2245.63 1.25 0.0559268 0.0474579 1552 22 1427 2204 129389 32772 2.73636 2.73636 -112.96 -2.73636 0 0 828058. 2865.25 0.25 0.04 0.00984943 0.00872122 123 -1 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.96 vpr 63.79 MiB 0.04 7524 -1 -1 1 0.02 -1 -1 33436 -1 -1 45 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65324 32 32 439 321 1 236 109 17 17 289 -1 unnamed_device 25.2 MiB 3.39 1485 63.8 MiB 0.15 0.00 3.99634 -139.128 -3.99634 3.99634 0.68 0.000222056 0.000182524 0.0189472 0.0156344 32 4032 41 6.87369e+06 628823 586450. 2029.24 1.18 0.0699719 0.0599929 3034 23 2688 4287 401468 88274 4.90615 4.90615 -178.126 -4.90615 0 0 744469. 2576.02 0.23 0.09 0.017707 0.0157479 189 26 128 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.85 vpr 62.70 MiB 0.02 6920 -1 -1 1 0.01 -1 -1 33232 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64200 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.07 785 62.7 MiB 0.12 0.00 2.77395 -99.7073 -2.77395 2.77395 0.84 0.000148504 0.000120791 0.011757 0.00969011 34 2271 22 6.87369e+06 223581 618332. 2139.56 1.25 0.0539626 0.0455422 1839 23 1556 2567 186594 46092 3.24856 3.24856 -132.657 -3.24856 0 0 787024. 2723.27 0.24 0.05 0.0103176 0.00913058 114 -1 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.91 vpr 62.74 MiB 0.04 7152 -1 -1 1 0.01 -1 -1 33188 -1 -1 33 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64248 30 32 299 247 1 162 95 17 17 289 -1 unnamed_device 24.4 MiB 2.39 893 62.7 MiB 0.09 0.00 2.86625 -98.5542 -2.86625 2.86625 0.68 0.000152507 0.000118287 0.0118862 0.00965261 28 2064 21 6.87369e+06 461137 531479. 1839.03 0.91 0.0414719 0.0354968 1913 22 1422 2304 174157 40052 2.99656 2.99656 -119.962 -2.99656 0 0 648988. 2245.63 0.21 0.05 0.0122741 0.0109817 119 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.34 vpr 63.30 MiB 0.04 7252 -1 -1 1 0.01 -1 -1 33396 -1 -1 35 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64816 29 32 397 323 1 185 96 17 17 289 -1 unnamed_device 24.9 MiB 3.28 858 63.3 MiB 0.10 0.00 2.84425 -89.3867 -2.84425 2.84425 0.74 0.000188961 0.000154744 0.0137155 0.0113419 28 2723 23 6.87369e+06 489084 531479. 1839.03 1.39 0.0515874 0.0441206 2233 24 1794 3174 268444 64094 3.22021 3.22021 -118.863 -3.22021 0 0 648988. 2245.63 0.23 0.08 0.0206046 0.0128416 141 81 29 29 85 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.31 vpr 63.17 MiB 0.03 7388 -1 -1 1 0.01 -1 -1 33608 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64688 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 3.17 831 63.2 MiB 0.09 0.00 3.48699 -121.348 -3.48699 3.48699 0.75 0.000200834 0.000165341 0.0171337 0.0141054 36 2478 25 6.87369e+06 293451 648988. 2245.63 1.59 0.0796691 0.0679331 1895 21 1986 3077 208841 51673 4.024 4.024 -149.916 -4.024 0 0 828058. 2865.25 0.25 0.05 0.0134815 0.011938 147 53 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.93 vpr 63.09 MiB 0.04 7208 -1 -1 1 0.01 -1 -1 33496 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64600 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 4.38 1086 63.1 MiB 0.15 0.00 3.38179 -121.438 -3.38179 3.38179 0.66 0.000185705 0.000149815 0.0192556 0.0157133 28 2930 22 6.87369e+06 517032 531479. 1839.03 1.03 0.0601332 0.0515211 2586 21 2019 3439 291905 64628 3.9737 3.9737 -156.038 -3.9737 0 0 648988. 2245.63 0.22 0.07 0.0147904 0.0130054 155 55 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 6.37 vpr 62.95 MiB 0.02 7032 -1 -1 1 0.02 -1 -1 33448 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64460 32 32 346 288 1 168 97 17 17 289 -1 unnamed_device 24.4 MiB 3.03 824 62.9 MiB 0.10 0.00 2.87725 -104.066 -2.87725 2.87725 0.82 0.000158066 0.000127658 0.014137 0.0115865 32 2485 24 6.87369e+06 461137 586450. 2029.24 0.91 0.0451024 0.0383635 1845 21 1493 2420 200326 46044 3.12326 3.12326 -125.86 -3.12326 0 0 744469. 2576.02 0.22 0.05 0.010829 0.00952744 123 55 32 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.13 vpr 63.02 MiB 0.02 7156 -1 -1 1 0.01 -1 -1 33636 -1 -1 18 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64528 31 32 355 304 1 160 81 17 17 289 -1 unnamed_device 24.5 MiB 4.01 964 63.0 MiB 0.09 0.00 2.9476 -104.382 -2.9476 2.9476 0.76 0.000165621 0.000132777 0.0149085 0.0122106 30 2227 21 6.87369e+06 251529 556674. 1926.21 0.80 0.0465942 0.0384623 1875 19 1045 1869 118964 27617 2.92396 2.92396 -120.386 -2.92396 0 0 706193. 2443.58 0.22 0.04 0.00981033 0.00864422 108 82 0 0 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.67 vpr 63.52 MiB 0.03 7380 -1 -1 1 0.01 -1 -1 33468 -1 -1 34 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65044 30 32 377 300 1 189 96 17 17 289 -1 unnamed_device 25.1 MiB 3.16 854 63.5 MiB 0.05 0.00 2.87725 -95.2778 -2.87725 2.87725 0.69 0.000175833 0.000143625 0.00899609 0.00749195 28 2790 31 6.87369e+06 475111 531479. 1839.03 1.16 0.0499767 0.042851 2102 21 1471 2345 155659 41617 3.10126 3.10126 -124.372 -3.10126 0 0 648988. 2245.63 0.21 0.05 0.0124582 0.0110139 143 52 60 30 57 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.20 vpr 63.18 MiB 0.04 7200 -1 -1 1 0.02 -1 -1 33596 -1 -1 35 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64700 28 32 337 265 1 180 95 17 17 289 -1 unnamed_device 24.6 MiB 1.93 840 63.2 MiB 0.17 0.00 3.39279 -101.61 -3.39279 3.39279 0.67 0.000201792 0.000166823 0.0222718 0.0131352 32 2577 26 6.87369e+06 489084 586450. 2029.24 0.83 0.0511875 0.0379244 1939 20 1513 2479 219995 49378 3.7341 3.7341 -127.998 -3.7341 0 0 744469. 2576.02 0.22 0.05 0.0105402 0.00931349 139 20 84 28 28 28 - fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.96 vpr 63.11 MiB 0.04 7244 -1 -1 1 0.01 -1 -1 33320 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64624 30 32 328 276 1 161 80 17 17 289 -1 unnamed_device 24.7 MiB 2.48 888 63.1 MiB 0.08 0.00 3.1059 -105.848 -3.1059 3.1059 0.88 0.000172008 0.000142318 0.0128708 0.0105229 32 2262 21 6.87369e+06 251529 586450. 2029.24 0.69 0.0399768 0.0337534 1952 23 1674 2732 236014 54391 3.21261 3.21261 -129.52 -3.21261 0 0 744469. 2576.02 0.23 0.05 0.0110357 0.00967537 110 58 30 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 6.81 vpr 63.29 MiB 0.04 7036 -1 -1 1 0.01 -1 -1 33200 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64812 32 32 362 309 1 163 81 17 17 289 -1 unnamed_device 24.8 MiB 3.22 862 63.3 MiB 0.06 0.00 2.8626 -99.2856 -2.8626 2.8626 0.69 0.00016548 0.000132854 0.00956344 0.00789447 34 2313 21 6.87369e+06 237555 618332. 2139.56 1.24 0.0593643 0.0503684 1915 23 1262 2149 163561 37200 3.13891 3.13891 -120.069 -3.13891 0 0 787024. 2723.27 0.26 0.05 0.0130605 0.0115368 110 88 0 0 91 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.43 vpr 63.39 MiB 0.03 7280 -1 -1 1 0.01 -1 -1 33412 -1 -1 37 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64912 31 32 337 253 1 197 100 17 17 289 -1 unnamed_device 25.0 MiB 0.78 949 63.4 MiB 0.11 0.00 3.41479 -113.628 -3.41479 3.41479 0.64 0.000165999 0.000135267 0.0120077 0.00987656 32 3499 47 6.87369e+06 517032 586450. 2029.24 1.24 0.0551447 0.0473754 2333 21 1946 3204 259653 62484 3.9987 3.9987 -147.463 -3.9987 0 0 744469. 2576.02 0.23 0.06 0.0116362 0.0103486 151 -1 124 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.52 vpr 63.44 MiB 0.02 7156 -1 -1 1 0.02 -1 -1 33616 -1 -1 38 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64960 32 32 408 320 1 202 102 17 17 289 -1 unnamed_device 24.8 MiB 4.46 1110 63.4 MiB 0.11 0.00 3.32249 -120.807 -3.32249 3.32249 0.69 0.000182475 0.000147214 0.0138527 0.0114005 34 2766 25 6.87369e+06 531006 618332. 2139.56 1.42 0.0822184 0.0692274 2399 23 2095 3630 281093 63572 3.7844 3.7844 -150.247 -3.7844 0 0 787024. 2723.27 0.40 0.06 0.0132253 0.0116708 156 57 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.93 vpr 63.38 MiB 0.02 7172 -1 -1 1 0.01 -1 -1 33420 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64900 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 24.9 MiB 4.01 1119 63.4 MiB 0.28 0.00 3.43679 -123.885 -3.43679 3.43679 0.73 0.000253171 0.000211047 0.0272874 0.0239444 28 3178 26 6.87369e+06 517032 531479. 1839.03 1.33 0.071509 0.062393 2635 23 2210 3586 326558 71174 3.916 3.916 -154.551 -3.916 0 0 648988. 2245.63 0.21 0.07 0.014397 0.0126978 155 62 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 6.82 vpr 63.23 MiB 0.04 7256 -1 -1 1 0.01 -1 -1 33588 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64748 32 32 400 316 1 198 103 17 17 289 -1 unnamed_device 24.7 MiB 2.92 1103 63.2 MiB 0.18 0.00 3.33779 -114.492 -3.33779 3.33779 0.89 0.000189385 0.000153639 0.0216683 0.0188657 28 2774 25 6.87369e+06 544980 531479. 1839.03 1.28 0.0737491 0.065731 2362 22 1762 3278 229586 56349 3.8704 3.8704 -145.027 -3.8704 0 0 648988. 2245.63 0.20 0.06 0.0126692 0.0111858 152 62 60 30 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 5.92 vpr 62.95 MiB 0.02 7100 -1 -1 1 0.00 -1 -1 33496 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64464 30 32 299 247 1 159 81 17 17 289 -1 unnamed_device 24.4 MiB 2.54 763 63.0 MiB 0.11 0.00 2.9806 -98.8726 -2.9806 2.9806 0.73 0.000149372 0.000120978 0.0135485 0.0112163 32 2476 30 6.87369e+06 265503 586450. 2029.24 0.95 0.0527077 0.0460824 1920 20 1528 2478 218047 51170 3.21856 3.21856 -127.005 -3.21856 0 0 744469. 2576.02 0.23 0.05 0.0153733 0.0142719 110 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.71 vpr 63.10 MiB 0.04 7312 -1 -1 1 0.01 -1 -1 33336 -1 -1 23 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64612 30 32 386 306 1 193 85 17 17 289 -1 unnamed_device 24.7 MiB 3.56 820 63.1 MiB 0.07 0.00 3.36289 -108.232 -3.36289 3.36289 0.69 0.000175373 0.000141784 0.0140515 0.011621 34 2768 40 6.87369e+06 321398 618332. 2139.56 1.83 0.0861162 0.0735393 1784 25 2225 3371 220093 55775 4.3278 4.3278 -143.437 -4.3278 0 0 787024. 2723.27 0.24 0.06 0.0144807 0.0127991 140 58 60 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 9.21 vpr 63.56 MiB 0.04 7332 -1 -1 1 0.02 -1 -1 33660 -1 -1 43 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65084 32 32 470 382 1 202 107 17 17 289 -1 unnamed_device 25.1 MiB 5.52 1074 63.6 MiB 0.14 0.00 3.39279 -118.428 -3.39279 3.39279 0.68 0.000210864 0.000170562 0.0176205 0.0142215 32 3340 47 6.87369e+06 600875 586450. 2029.24 1.25 0.0704053 0.0597498 2450 22 1948 3350 308105 67242 3.9767 3.9767 -148.51 -3.9767 0 0 744469. 2576.02 0.28 0.08 0.0146973 0.0129123 158 106 0 0 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 5.68 vpr 63.33 MiB 0.04 7280 -1 -1 1 0.01 -1 -1 33716 -1 -1 33 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64848 31 32 427 343 1 196 96 17 17 289 -1 unnamed_device 24.8 MiB 2.16 1067 63.3 MiB 0.11 0.00 3.56214 -116.841 -3.56214 3.56214 0.89 0.000474714 0.000435324 0.014119 0.0117317 32 3096 24 6.87369e+06 461137 586450. 2029.24 0.82 0.053023 0.0450495 2340 22 1986 3298 301827 67588 3.7671 3.7671 -146.177 -3.7671 0 0 744469. 2576.02 0.25 0.12 0.0152263 0.0135639 150 79 31 31 93 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.44 vpr 63.34 MiB 0.03 7340 -1 -1 1 0.01 -1 -1 33496 -1 -1 32 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64856 30 32 407 331 1 188 94 17 17 289 -1 unnamed_device 24.9 MiB 2.28 961 63.3 MiB 0.07 0.00 2.87725 -96.3199 -2.87725 2.87725 0.81 0.000177298 0.000142477 0.00992472 0.00810796 34 2769 31 6.87369e+06 447163 618332. 2139.56 1.46 0.0688683 0.0584753 2060 22 1660 2645 211611 49233 3.15456 3.15456 -120.509 -3.15456 0 0 787024. 2723.27 0.24 0.05 0.0135799 0.0120249 141 83 26 26 90 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 9.08 vpr 63.43 MiB 0.08 7132 -1 -1 1 0.02 -1 -1 33552 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64948 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 24.8 MiB 5.00 1081 63.4 MiB 0.12 0.00 3.32249 -122.661 -3.32249 3.32249 0.70 0.000181363 0.000145803 0.0172677 0.0141572 34 3195 27 6.87369e+06 293451 618332. 2139.56 1.60 0.0814606 0.0695987 2738 23 2307 4009 363267 80398 4.27131 4.27131 -161.79 -4.27131 0 0 787024. 2723.27 0.25 0.08 0.0140932 0.0124991 147 58 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.54 vpr 63.28 MiB 0.03 7284 -1 -1 1 0.01 -1 -1 33716 -1 -1 36 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64800 29 32 391 320 1 181 97 17 17 289 -1 unnamed_device 24.8 MiB 2.30 808 63.3 MiB 0.11 0.00 2.84425 -89.4393 -2.84425 2.84425 0.68 0.000180679 0.000142707 0.0145102 0.0117712 32 2458 28 6.87369e+06 503058 586450. 2029.24 0.90 0.051273 0.0434539 1795 23 1764 3011 243955 56403 3.06026 3.06026 -110.349 -3.06026 0 0 744469. 2576.02 0.23 0.06 0.0127478 0.0112067 138 81 26 26 85 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.43 vpr 62.87 MiB 0.02 6948 -1 -1 1 0.01 -1 -1 33276 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64376 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 24.3 MiB 0.82 885 62.9 MiB 0.05 0.00 2.9586 -109.474 -2.9586 2.9586 0.71 0.000153162 0.000125123 0.00759738 0.00633843 34 2305 38 6.87369e+06 223581 618332. 2139.56 1.34 0.0667488 0.0582632 2052 22 1481 2290 192964 43308 3.27686 3.27686 -133.213 -3.27686 0 0 787024. 2723.27 0.24 0.05 0.00994528 0.00880722 114 -1 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.16 vpr 63.20 MiB 0.02 7252 -1 -1 1 0.02 -1 -1 33312 -1 -1 37 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64716 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 4.76 1093 63.2 MiB 0.10 0.00 3.38179 -121.438 -3.38179 3.38179 0.68 0.000191244 0.000153918 0.0128465 0.0104257 32 3187 39 6.87369e+06 517032 586450. 2029.24 0.92 0.0556863 0.0473119 2438 22 2042 3162 287293 64697 3.8564 3.8564 -152.266 -3.8564 0 0 744469. 2576.02 0.23 0.06 0.0137815 0.0121682 155 62 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.03 vpr 63.33 MiB 0.06 7256 -1 -1 1 0.01 -1 -1 33332 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64852 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 24.8 MiB 4.02 1158 63.3 MiB 0.10 0.00 3.36169 -124.252 -3.36169 3.36169 0.72 0.000191743 0.000155753 0.0162308 0.0133616 34 2768 23 6.87369e+06 293451 618332. 2139.56 1.44 0.0769578 0.065672 2356 23 2199 3545 265736 59948 3.9159 3.9159 -154.739 -3.9159 0 0 787024. 2723.27 0.24 0.06 0.0134872 0.0118744 147 62 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 6.76 vpr 62.98 MiB 0.02 6948 -1 -1 1 0.01 -1 -1 33380 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64492 32 32 316 268 1 158 94 17 17 289 -1 unnamed_device 24.6 MiB 3.82 881 63.0 MiB 0.10 0.00 2.84425 -100.983 -2.84425 2.84425 0.70 0.000151326 0.000122093 0.0139409 0.0113614 30 2015 23 6.87369e+06 419215 556674. 1926.21 0.72 0.0416166 0.0351349 1744 20 1010 1584 87321 21457 2.68166 2.68166 -113.175 -2.68166 0 0 706193. 2443.58 0.22 0.03 0.0096332 0.00856175 112 47 32 32 54 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 3.95 vpr 62.59 MiB 0.04 6948 -1 -1 1 0.01 -1 -1 33356 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64096 31 32 277 222 1 164 80 17 17 289 -1 unnamed_device 24.2 MiB 0.88 666 62.6 MiB 0.07 0.00 2.9916 -100.872 -2.9916 2.9916 0.69 0.000147915 0.000120253 0.0115537 0.00939824 32 2384 24 6.87369e+06 237555 586450. 2029.24 0.69 0.0380637 0.0322529 1711 18 1298 2073 151258 36696 3.19086 3.19086 -123.994 -3.19086 0 0 744469. 2576.02 0.22 0.04 0.00886003 0.00789344 112 -1 93 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.57 vpr 63.18 MiB 0.05 7208 -1 -1 1 0.01 -1 -1 33228 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64700 32 32 382 304 1 194 99 17 17 289 -1 unnamed_device 24.8 MiB 3.32 1018 63.2 MiB 0.09 0.00 3.41299 -116.624 -3.41299 3.41299 0.69 0.00019084 0.000157175 0.0119301 0.00985666 32 2562 24 6.87369e+06 489084 586450. 2029.24 0.73 0.0455947 0.0389309 2049 20 1596 2392 179940 41123 3.617 3.617 -135.518 -3.617 0 0 744469. 2576.02 0.22 0.05 0.0123132 0.0109335 144 56 60 32 58 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.65 vpr 63.11 MiB 0.03 7212 -1 -1 1 0.02 -1 -1 33312 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64624 32 32 407 331 1 190 97 17 17 289 -1 unnamed_device 24.6 MiB 2.15 1119 63.1 MiB 0.14 0.00 3.65444 -117.326 -3.65444 3.65444 0.70 0.000180851 0.00014656 0.0188488 0.0155312 28 2763 25 6.87369e+06 461137 531479. 1839.03 0.93 0.0590209 0.0499966 2377 24 1878 2944 251394 55745 3.8624 3.8624 -145.228 -3.8624 0 0 648988. 2245.63 0.20 0.06 0.0139693 0.0123013 144 81 28 28 88 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 4.76 vpr 63.67 MiB 0.05 7272 -1 -1 1 0.01 -1 -1 33456 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65196 32 32 400 286 1 232 105 17 17 289 -1 unnamed_device 25.3 MiB 1.00 1317 63.7 MiB 0.11 0.00 3.97254 -136.418 -3.97254 3.97254 0.86 0.000241471 0.000201844 0.0131978 0.010998 28 3567 28 6.87369e+06 572927 531479. 1839.03 1.10 0.0603072 0.0521491 3018 24 2424 3866 360666 76498 4.97445 4.97445 -178.47 -4.97445 0 0 648988. 2245.63 0.20 0.08 0.0164926 0.0146527 183 -1 156 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.50 vpr 62.98 MiB 0.04 7200 -1 -1 1 0.02 -1 -1 33288 -1 -1 32 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64496 30 32 374 298 1 188 94 17 17 289 -1 unnamed_device 24.7 MiB 2.80 981 63.0 MiB 0.11 0.00 2.86625 -99.3811 -2.86625 2.86625 0.69 0.000212769 0.00017081 0.0137292 0.0111332 34 2364 23 6.87369e+06 447163 618332. 2139.56 1.10 0.0668391 0.0567072 2064 20 1733 2801 203174 47556 2.95696 2.95696 -116.66 -2.95696 0 0 787024. 2723.27 0.24 0.05 0.0113196 0.0100148 141 47 60 30 56 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.06 vpr 62.77 MiB 0.07 6992 -1 -1 1 0.01 -1 -1 33460 -1 -1 20 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64272 27 32 275 232 1 145 79 17 17 289 -1 unnamed_device 24.4 MiB 0.96 675 62.8 MiB 0.07 0.00 2.9348 -87.9909 -2.9348 2.9348 0.71 0.000133779 0.000107763 0.0116693 0.00956994 30 1714 21 6.87369e+06 279477 556674. 1926.21 0.70 0.0360487 0.0305523 1382 19 872 1303 82143 19086 2.75171 2.75171 -102.101 -2.75171 0 0 706193. 2443.58 0.23 0.03 0.00874765 0.00774145 102 26 54 27 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 8.42 vpr 63.82 MiB 0.04 7384 -1 -1 1 0.01 -1 -1 33676 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65348 32 32 494 379 1 233 105 17 17 289 -1 unnamed_device 25.4 MiB 3.12 1277 63.8 MiB 0.17 0.00 3.31149 -116.899 -3.31149 3.31149 0.72 0.000252099 0.000210213 0.021876 0.0181218 34 3636 28 6.87369e+06 572927 618332. 2139.56 2.71 0.103848 0.0891921 2742 22 2405 4179 321447 72470 3.8954 3.8954 -146.489 -3.8954 0 0 787024. 2723.27 0.24 0.07 0.0171617 0.0151679 184 85 62 31 95 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 7.38 vpr 63.39 MiB 0.05 7312 -1 -1 1 0.02 -1 -1 33692 -1 -1 23 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64916 31 32 457 373 1 199 86 17 17 289 -1 unnamed_device 25.0 MiB 3.47 1013 63.4 MiB 0.11 0.00 3.97274 -127.066 -3.97274 3.97274 0.71 0.000228386 0.000187321 0.0200097 0.0164763 36 2548 22 6.87369e+06 321398 648988. 2245.63 1.37 0.0858516 0.0732171 2056 21 1624 2573 189191 43629 4.12455 4.12455 -149.574 -4.12455 0 0 828058. 2865.25 0.29 0.10 0.0177057 0.0160866 144 105 0 0 124 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.05 vpr 63.02 MiB 0.04 7236 -1 -1 1 0.01 -1 -1 33280 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64532 32 32 356 305 1 162 80 17 17 289 -1 unnamed_device 24.5 MiB 3.55 818 63.0 MiB 0.08 0.00 3.8283 -106.019 -3.8283 3.8283 0.68 0.000213128 0.00017756 0.0130484 0.0106877 34 2350 18 6.87369e+06 223581 618332. 2139.56 1.16 0.0650392 0.0554466 1908 16 787 1158 95575 21976 3.20325 3.20325 -122.99 -3.20325 0 0 787024. 2723.27 0.24 0.03 0.00960605 0.00863397 107 86 0 0 89 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.77 vpr 63.43 MiB 0.02 7164 -1 -1 1 0.02 -1 -1 33388 -1 -1 34 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64948 32 32 365 283 1 196 98 17 17 289 -1 unnamed_device 24.9 MiB 1.13 916 63.4 MiB 0.20 0.00 3.38179 -112.183 -3.38179 3.38179 0.73 0.000178087 0.000144675 0.0131689 0.0109906 34 3082 28 6.87369e+06 475111 618332. 2139.56 1.96 0.0687795 0.0587918 2286 20 1757 2572 204596 49738 4.071 4.071 -146.104 -4.071 0 0 787024. 2723.27 0.24 0.05 0.0111372 0.00986435 147 31 90 30 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.79 vpr 63.48 MiB 0.02 7432 -1 -1 1 0.02 -1 -1 33572 -1 -1 40 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65004 31 32 445 338 1 224 103 17 17 289 -1 unnamed_device 25.1 MiB 2.24 1122 63.5 MiB 0.25 0.00 3.40199 -117.286 -3.40199 3.40199 0.79 0.000245743 0.000206649 0.0418513 0.0243915 28 2801 22 6.87369e+06 558954 531479. 1839.03 0.80 0.0886669 0.0658794 2440 20 1968 3049 208909 49812 4.3186 4.3186 -155.011 -4.3186 0 0 648988. 2245.63 0.20 0.05 0.0134967 0.0119738 176 50 87 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 5.82 vpr 63.02 MiB 0.06 7256 -1 -1 1 0.02 -1 -1 33548 -1 -1 36 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64532 30 32 376 300 1 188 98 17 17 289 -1 unnamed_device 24.6 MiB 2.01 977 63.0 MiB 0.13 0.00 2.72995 -92.8859 -2.72995 2.72995 0.72 0.000178838 0.000144005 0.0156333 0.012936 32 3118 50 6.87369e+06 503058 586450. 2029.24 1.17 0.063115 0.0539789 2200 24 1823 3173 266295 60891 3.04626 3.04626 -116.364 -3.04626 0 0 744469. 2576.02 0.23 0.06 0.0136347 0.0119974 144 50 58 30 58 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 6.83 vpr 63.35 MiB 0.06 7132 -1 -1 1 0.01 -1 -1 33400 -1 -1 46 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64868 32 32 408 320 1 202 110 17 17 289 -1 unnamed_device 24.8 MiB 2.92 1164 63.3 MiB 0.11 0.00 3.38179 -119.927 -3.38179 3.38179 0.67 0.000209699 0.000172394 0.0135749 0.0111084 26 3287 35 6.87369e+06 642796 503264. 1741.40 1.52 0.071544 0.0629919 2846 24 2185 3665 389120 84458 4.2746 4.2746 -163.481 -4.2746 0 0 618332. 2139.56 0.20 0.09 0.0153957 0.0136162 160 61 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.40 vpr 63.53 MiB 0.02 7280 -1 -1 1 0.01 -1 -1 33516 -1 -1 42 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65056 32 32 406 319 1 201 106 17 17 289 -1 unnamed_device 24.9 MiB 2.89 997 63.5 MiB 0.14 0.00 2.88825 -102.921 -2.88825 2.88825 0.82 0.000185076 0.000149243 0.0171676 0.0139504 32 2866 35 6.87369e+06 586901 586450. 2029.24 0.83 0.0588689 0.0499993 2179 19 1602 2524 193642 45083 2.99796 2.99796 -119.197 -2.99796 0 0 744469. 2576.02 0.23 0.05 0.0124123 0.0109799 157 61 63 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 4.78 vpr 63.05 MiB 0.03 7152 -1 -1 1 0.02 -1 -1 33260 -1 -1 20 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64564 29 32 291 242 1 155 81 17 17 289 -1 unnamed_device 24.6 MiB 1.51 599 63.1 MiB 0.04 0.00 2.9256 -92.5048 -2.9256 2.9256 0.72 0.000140244 0.00011299 0.00798233 0.00653819 32 1594 24 6.87369e+06 279477 586450. 2029.24 0.74 0.0462704 0.0402133 1290 18 1149 1639 102926 26249 2.97431 2.97431 -107.953 -2.97431 0 0 744469. 2576.02 0.23 0.03 0.00880936 0.00783513 107 28 58 29 29 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.02 vpr 62.96 MiB 0.02 7032 -1 -1 1 0.01 -1 -1 33276 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64476 32 32 335 291 1 156 81 17 17 289 -1 unnamed_device 24.5 MiB 2.36 766 63.0 MiB 0.06 0.00 3.47244 -97.3762 -3.47244 3.47244 0.81 0.000157694 0.0001272 0.00979195 0.00803652 36 1668 13 6.87369e+06 237555 648988. 2245.63 1.16 0.0519183 0.0440527 1513 12 629 852 61333 14404 2.95265 2.95265 -110.731 -2.95265 0 0 828058. 2865.25 0.25 0.02 0.00733623 0.00660585 102 79 0 0 82 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 4.99 vpr 63.22 MiB 0.02 7336 -1 -1 1 0.02 -1 -1 33392 -1 -1 39 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64736 31 32 367 283 1 197 102 17 17 289 -1 unnamed_device 24.7 MiB 1.70 1095 63.2 MiB 0.12 0.00 3.42579 -119.606 -3.42579 3.42579 0.74 0.000197741 0.000156792 0.014666 0.011856 28 2539 30 6.87369e+06 544980 531479. 1839.03 0.80 0.0545466 0.0466762 2322 20 1902 3131 218879 51480 3.8704 3.8704 -146.769 -3.8704 0 0 648988. 2245.63 0.21 0.06 0.0125511 0.0111699 152 29 93 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 6.96 vpr 63.01 MiB 0.03 7000 -1 -1 1 0.02 -1 -1 33416 -1 -1 32 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64524 29 32 301 258 1 148 93 17 17 289 -1 unnamed_device 24.4 MiB 3.49 628 63.0 MiB 0.08 0.00 2.70795 -82.7912 -2.70795 2.70795 0.71 0.000146106 0.000118202 0.0171375 0.0155163 28 1838 22 6.87369e+06 447163 531479. 1839.03 1.11 0.053098 0.0393984 1629 23 1235 1978 151028 39086 2.92396 2.92396 -107.784 -2.92396 0 0 648988. 2245.63 0.20 0.04 0.00967125 0.00845088 108 48 29 29 52 26 - fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 6.53 vpr 63.21 MiB 0.03 6980 -1 -1 1 0.01 -1 -1 33044 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64728 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 24.7 MiB 2.93 811 63.2 MiB 0.05 0.00 2.9586 -105.246 -2.9586 2.9586 0.80 0.000161792 0.000132585 0.0080213 0.00665758 34 2240 26 6.87369e+06 223581 618332. 2139.56 1.11 0.0563415 0.0476212 1743 24 1531 2524 149910 43050 3.10126 3.10126 -129.829 -3.10126 0 0 787024. 2723.27 0.29 0.04 0.011012 0.00968132 114 31 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.09 vpr 63.45 MiB 0.02 7440 -1 -1 1 0.02 -1 -1 33276 -1 -1 34 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64968 31 32 389 309 1 193 97 17 17 289 -1 unnamed_device 24.9 MiB 2.88 842 63.4 MiB 0.06 0.00 2.90545 -99.8913 -2.90545 2.90545 0.65 0.000185208 0.000143657 0.00998946 0.00817324 30 2329 33 6.87369e+06 475111 556674. 1926.21 0.74 0.0481281 0.0409154 1717 22 1560 2348 122870 31288 2.82386 2.82386 -114.628 -2.82386 0 0 706193. 2443.58 0.28 0.04 0.0131247 0.0116304 146 60 58 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.16 vpr 62.92 MiB 0.02 7148 -1 -1 1 0.01 -1 -1 33484 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64432 31 32 310 264 1 154 79 17 17 289 -1 unnamed_device 24.4 MiB 3.00 813 62.9 MiB 0.05 0.00 2.63557 -93.5298 -2.63557 2.63557 0.71 0.000146909 0.000118312 0.0083826 0.00688919 32 2218 23 6.87369e+06 223581 586450. 2029.24 0.79 0.0353365 0.0300862 1884 21 1162 1883 164458 37081 3.19191 3.19191 -118.787 -3.19191 0 0 744469. 2576.02 0.23 0.09 0.0142448 0.0112935 103 49 31 31 53 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.65 vpr 63.50 MiB 0.06 7136 -1 -1 1 0.01 -1 -1 33328 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65024 32 32 384 308 1 190 100 17 17 289 -1 unnamed_device 25.0 MiB 2.88 1058 63.5 MiB 0.08 0.00 2.76725 -100.985 -2.76725 2.76725 0.71 0.000210273 0.000168466 0.0111022 0.00908516 34 2431 20 6.87369e+06 503058 618332. 2139.56 1.25 0.0687046 0.056383 2068 20 1335 2210 165438 36962 3.00726 3.00726 -118.05 -3.00726 0 0 787024. 2723.27 0.24 0.04 0.0113391 0.0100165 143 56 52 26 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 5.87 vpr 63.67 MiB 0.02 7284 -1 -1 1 0.01 -1 -1 33448 -1 -1 39 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65200 31 32 424 341 1 196 102 17 17 289 -1 unnamed_device 25.0 MiB 2.31 856 63.7 MiB 0.06 0.00 2.92745 -99.2923 -2.92745 2.92745 0.89 0.000215794 0.000177634 0.0109003 0.00892441 28 2531 26 6.87369e+06 544980 531479. 1839.03 1.04 0.0510967 0.0435999 2006 23 1992 2903 183272 48194 3.25776 3.25776 -127.904 -3.25776 0 0 648988. 2245.63 0.21 0.05 0.0138158 0.0121946 151 88 31 31 92 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.28 vpr 62.92 MiB 0.04 7168 -1 -1 1 0.02 -1 -1 33368 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64428 32 32 334 280 1 164 81 17 17 289 -1 unnamed_device 24.5 MiB 2.81 852 62.9 MiB 0.08 0.00 2.62457 -96.2714 -2.62457 2.62457 0.65 0.000167417 0.000137738 0.0111254 0.00920269 34 2326 22 6.87369e+06 237555 618332. 2139.56 1.06 0.0561875 0.0474852 1924 20 1255 1983 168660 38424 2.82396 2.82396 -119.426 -2.82396 0 0 787024. 2723.27 0.24 0.04 0.0107161 0.00950088 110 54 32 32 60 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.49 vpr 63.12 MiB 0.04 7124 -1 -1 1 0.01 -1 -1 33184 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64640 32 32 340 284 1 166 80 17 17 289 -1 unnamed_device 24.7 MiB 3.18 701 63.1 MiB 0.07 0.00 2.9366 -100.774 -2.9366 2.9366 0.70 0.000183287 0.000150811 0.00964753 0.00791811 32 2562 33 6.87369e+06 223581 586450. 2029.24 0.79 0.0469407 0.040382 1966 23 1553 2548 213884 52571 3.27791 3.27791 -129.479 -3.27791 0 0 744469. 2576.02 0.24 0.06 0.0145145 0.0130898 112 60 32 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 7.25 vpr 63.45 MiB 0.05 7260 -1 -1 1 0.02 -1 -1 33636 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64968 32 32 408 320 1 202 104 17 17 289 -1 unnamed_device 25.0 MiB 3.31 913 63.4 MiB 0.10 0.00 3.45699 -117.261 -3.45699 3.45699 0.73 0.000212434 0.000176633 0.0138965 0.0115136 34 2491 23 6.87369e+06 558954 618332. 2139.56 1.39 0.0732067 0.0625252 2004 22 1952 3025 207468 50592 3.9064 3.9064 -144.858 -3.9064 0 0 787024. 2723.27 0.26 0.06 0.0162915 0.0146878 157 49 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 5.51 vpr 63.22 MiB 0.05 7256 -1 -1 1 0.02 -1 -1 33768 -1 -1 34 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64736 29 32 371 297 1 183 95 17 17 289 -1 unnamed_device 24.8 MiB 2.49 952 63.2 MiB 0.09 0.00 2.84425 -93.271 -2.84425 2.84425 0.66 0.00016943 0.000136373 0.0107886 0.00882624 30 2135 23 6.87369e+06 475111 556674. 1926.21 0.68 0.0420579 0.0356739 1749 17 1002 1579 84887 20762 2.93496 2.93496 -112.183 -2.93496 0 0 706193. 2443.58 0.23 0.03 0.010588 0.00947659 141 54 56 29 58 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.27 vpr 63.77 MiB 0.03 7316 -1 -1 1 0.02 -1 -1 33664 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65296 32 32 470 382 1 202 104 17 17 289 -1 unnamed_device 25.3 MiB 5.42 913 63.8 MiB 0.07 0.00 3.43499 -118.897 -3.43499 3.43499 0.69 0.000199072 0.000160302 0.0113211 0.0092609 30 2938 29 6.87369e+06 558954 556674. 1926.21 1.18 0.0607749 0.0518108 2053 22 1727 2943 173110 42135 3.9064 3.9064 -146.811 -3.9064 0 0 706193. 2443.58 0.33 0.05 0.0136647 0.0120377 157 117 0 0 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 3.99 vpr 62.93 MiB 0.02 7108 -1 -1 1 0.01 -1 -1 33432 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64440 31 32 261 214 1 155 79 17 17 289 -1 unnamed_device 24.5 MiB 0.70 829 62.9 MiB 0.08 0.00 2.44612 -90.7605 -2.44612 2.44612 0.90 0.000158289 0.000130606 0.00740495 0.00618427 32 2241 21 6.87369e+06 223581 586450. 2029.24 0.67 0.0309406 0.0264309 1980 24 1425 2230 210664 45939 2.89626 2.89626 -117.909 -2.89626 0 0 744469. 2576.02 0.23 0.05 0.00951021 0.00835492 104 -1 85 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.72 vpr 63.31 MiB 0.02 7360 -1 -1 1 0.01 -1 -1 33464 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64828 32 32 419 339 1 194 100 17 17 289 -1 unnamed_device 24.8 MiB 2.12 995 63.3 MiB 0.12 0.00 3.65444 -117.293 -3.65444 3.65444 0.84 0.0001909 0.000154525 0.0156487 0.0128665 30 2702 26 6.87369e+06 503058 556674. 1926.21 0.92 0.0574269 0.0492711 2052 22 1435 2081 157646 34374 3.7251 3.7251 -138.485 -3.7251 0 0 706193. 2443.58 0.31 0.05 0.013398 0.0117992 149 89 28 28 92 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 7.90 vpr 63.20 MiB 0.03 6980 -1 -1 1 0.01 -1 -1 33188 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64716 32 32 377 319 1 168 80 17 17 289 -1 unnamed_device 24.6 MiB 4.36 762 63.2 MiB 0.07 0.00 2.9898 -106.053 -2.9898 2.9898 0.81 0.000173246 0.00014043 0.0116542 0.00983453 34 2278 21 6.87369e+06 223581 618332. 2139.56 1.10 0.0634164 0.0542217 1756 21 1490 2099 143855 36343 3.23576 3.23576 -131.321 -3.23576 0 0 787024. 2723.27 0.26 0.05 0.0119584 0.010569 114 93 0 0 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.20 vpr 63.07 MiB 0.03 7144 -1 -1 1 0.02 -1 -1 33312 -1 -1 39 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64584 32 32 402 317 1 199 103 17 17 289 -1 unnamed_device 24.6 MiB 3.01 1050 63.1 MiB 0.11 0.00 2.77395 -101.274 -2.77395 2.77395 0.65 0.000184374 0.000149746 0.014413 0.0118681 28 2562 21 6.87369e+06 544980 531479. 1839.03 0.90 0.0526593 0.0450716 2216 21 1587 2287 174862 40505 3.24056 3.24056 -131.816 -3.24056 0 0 648988. 2245.63 0.23 0.05 0.0139875 0.0123844 153 59 61 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 9.70 vpr 63.31 MiB 0.02 7312 -1 -1 1 0.01 -1 -1 33560 -1 -1 47 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64832 32 32 501 383 1 236 111 17 17 289 -1 unnamed_device 25.2 MiB 4.74 1324 63.3 MiB 0.17 0.00 3.98354 -137.969 -3.98354 3.98354 0.93 0.000265255 0.000219369 0.0226373 0.01878 28 3457 31 6.87369e+06 656770 531479. 1839.03 2.25 0.0858861 0.0748419 2845 21 2458 3785 309108 69474 4.86715 4.86715 -181.327 -4.86715 0 0 648988. 2245.63 0.20 0.07 0.015645 0.0138562 190 81 64 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.23 vpr 62.56 MiB 0.03 6896 -1 -1 1 0.01 -1 -1 33252 -1 -1 14 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64060 30 32 249 232 1 118 76 17 17 289 -1 unnamed_device 24.1 MiB 2.09 755 62.6 MiB 0.04 0.00 2.30306 -78.2227 -2.30306 2.30306 0.66 0.000117589 9.3743e-05 0.00765944 0.00623828 32 1524 21 6.87369e+06 195634 586450. 2029.24 0.65 0.0272997 0.0229544 1428 21 748 1075 100210 22541 2.01387 2.01387 -89.3884 -2.01387 0 0 744469. 2576.02 0.22 0.03 0.00751861 0.006564 72 51 0 0 53 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 3.95 vpr 62.69 MiB 0.02 7008 -1 -1 1 0.01 -1 -1 33404 -1 -1 18 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64192 30 32 299 247 1 158 80 17 17 289 -1 unnamed_device 24.2 MiB 0.92 609 62.7 MiB 0.04 0.00 2.9678 -96.6534 -2.9678 2.9678 0.73 0.00014513 0.000117894 0.00816564 0.0067618 32 1950 29 6.87369e+06 251529 586450. 2029.24 0.69 0.0367499 0.031325 1526 23 1356 1851 154775 37813 3.02731 3.02731 -117.663 -3.02731 0 0 744469. 2576.02 0.23 0.04 0.0109446 0.00964318 109 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.54 vpr 63.21 MiB 0.04 7036 -1 -1 1 0.01 -1 -1 33212 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64732 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 24.8 MiB 1.47 803 63.2 MiB 0.08 0.00 2.77395 -100.71 -2.77395 2.77395 0.80 0.000160139 0.000129839 0.0107584 0.00885742 34 2615 29 6.87369e+06 223581 618332. 2139.56 1.31 0.0623454 0.0530112 2026 23 1712 3096 231282 56758 3.23586 3.23586 -130.845 -3.23586 0 0 787024. 2723.27 0.40 0.08 0.0183853 0.0169914 114 31 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 3.84 vpr 62.68 MiB 0.02 7220 -1 -1 1 0.01 -1 -1 33456 -1 -1 37 25 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64188 25 32 259 222 1 139 94 17 17 289 -1 unnamed_device 24.2 MiB 0.73 642 62.7 MiB 0.08 0.00 2.80025 -76.8184 -2.80025 2.80025 0.77 0.000124575 9.9738e-05 0.00989783 0.00795158 32 1731 19 6.87369e+06 517032 586450. 2029.24 0.69 0.0325281 0.0274067 1355 22 1060 1742 132608 29974 2.81296 2.81296 -90.715 -2.81296 0 0 744469. 2576.02 0.24 0.04 0.0090369 0.00794007 106 19 50 25 25 25 - fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.50 vpr 63.48 MiB 0.02 7232 -1 -1 1 0.01 -1 -1 33560 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65008 32 32 433 347 1 200 85 17 17 289 -1 unnamed_device 24.9 MiB 3.52 1013 63.5 MiB 0.12 0.00 3.26749 -115.341 -3.26749 3.26749 0.83 0.000204781 0.000165851 0.0182688 0.0150692 30 2758 23 6.87369e+06 293451 556674. 1926.21 2.49 0.0936781 0.080098 1993 23 1752 3158 168082 41660 3.6058 3.6058 -140.86 -3.6058 0 0 706193. 2443.58 0.23 0.05 0.0148003 0.0130645 145 84 32 32 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.64 vpr 63.26 MiB 0.06 7428 -1 -1 1 0.01 -1 -1 33080 -1 -1 38 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64776 31 32 423 341 1 195 101 17 17 289 -1 unnamed_device 24.6 MiB 3.03 982 63.3 MiB 0.09 0.00 2.87725 -100.289 -2.87725 2.87725 0.89 0.000195261 0.000156811 0.00988948 0.00812978 28 2692 36 6.87369e+06 531006 531479. 1839.03 0.98 0.0631025 0.0496933 2314 22 2103 3372 255415 59651 3.31086 3.31086 -129.305 -3.31086 0 0 648988. 2245.63 0.21 0.06 0.0144192 0.0127008 150 88 29 29 93 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 6.51 vpr 63.62 MiB 0.02 7172 -1 -1 1 0.02 -1 -1 33904 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65152 32 32 439 351 1 295 93 17 17 289 -1 unnamed_device 25.2 MiB 1.89 1306 63.6 MiB 0.14 0.00 4.05304 -138.419 -4.05304 4.05304 0.90 0.000201807 0.000165545 0.0218855 0.0182867 36 3372 41 6.89349e+06 408721 648988. 2245.63 1.90 0.128131 0.112921 2549 21 2362 2829 199391 45298 4.37895 4.37895 -163.5 -4.37895 0 0 828058. 2865.25 0.24 0.05 0.0142734 0.0127172 192 80 32 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.09 vpr 63.40 MiB 0.02 7212 -1 -1 1 0.01 -1 -1 33484 -1 -1 29 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64920 30 32 412 333 1 262 91 17 17 289 -1 unnamed_device 24.8 MiB 1.52 1080 63.4 MiB 0.07 0.00 4.21067 -127.313 -4.21067 4.21067 0.79 0.000208536 0.000171565 0.00910008 0.00759805 36 3121 26 6.89349e+06 408721 648988. 2245.63 1.92 0.0909267 0.079513 2359 21 2024 2842 181228 43875 4.52079 4.52079 -154.844 -4.52079 0 0 828058. 2865.25 0.25 0.05 0.0139005 0.012243 177 78 30 30 89 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 7.52 vpr 63.29 MiB 0.03 7284 -1 -1 1 0.01 -1 -1 33344 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64812 32 32 388 310 1 253 89 17 17 289 -1 unnamed_device 24.8 MiB 1.87 1255 63.3 MiB 0.12 0.00 3.18936 -113.478 -3.18936 3.18936 0.78 0.000178872 0.000144973 0.0309233 0.0285677 34 3247 43 6.89349e+06 352346 618332. 2139.56 3.01 0.163361 0.14619 2653 21 1652 2103 152859 35530 3.59125 3.59125 -138.683 -3.59125 0 0 787024. 2723.27 0.24 0.05 0.0127056 0.0112824 167 50 54 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 5.47 vpr 63.02 MiB 0.04 7216 -1 -1 1 0.01 -1 -1 33540 -1 -1 25 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64528 29 32 347 271 1 209 86 17 17 289 -1 unnamed_device 24.4 MiB 1.44 987 63.0 MiB 0.11 0.00 3.65595 -115.125 -3.65595 3.65595 0.75 0.000165925 0.000134273 0.0155062 0.0128241 36 2134 21 6.89349e+06 352346 648988. 2245.63 1.53 0.0652065 0.0555301 1877 21 1565 2371 147718 35892 3.75616 3.75616 -133.023 -3.75616 0 0 828058. 2865.25 0.24 0.04 0.0113089 0.0100288 148 25 87 29 29 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.43 vpr 63.17 MiB 0.02 7272 -1 -1 1 0.01 -1 -1 33316 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64684 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 24.8 MiB 2.27 1227 63.2 MiB 0.13 0.00 4.07984 -142.263 -4.07984 4.07984 0.67 0.000177328 0.000144054 0.017049 0.0139831 34 3494 28 6.89349e+06 338252 618332. 2139.56 1.72 0.0858464 0.0734526 2783 22 2450 4150 348765 73969 4.56359 4.56359 -174.432 -4.56359 0 0 787024. 2723.27 0.25 0.07 0.013955 0.01245 163 31 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 5.86 vpr 63.56 MiB 0.02 7172 -1 -1 1 0.01 -1 -1 33236 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65088 32 32 403 317 1 257 105 17 17 289 -1 unnamed_device 24.9 MiB 1.71 1407 63.6 MiB 0.16 0.00 3.70789 -121.759 -3.70789 3.70789 0.68 0.000202634 0.000165135 0.0162224 0.0133688 34 3334 28 6.89349e+06 577847 618332. 2139.56 1.40 0.0905617 0.0772976 2772 20 1664 2687 190467 43167 3.4809 3.4809 -137.155 -3.4809 0 0 787024. 2723.27 0.25 0.06 0.0137741 0.0121874 179 61 63 32 63 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 4.04 vpr 62.59 MiB 0.02 7216 -1 -1 1 0.01 -1 -1 33696 -1 -1 21 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64088 27 32 275 232 1 165 80 17 17 289 -1 unnamed_device 24.1 MiB 0.97 712 62.6 MiB 0.07 0.00 3.0242 -89.5156 -3.0242 3.0242 0.85 0.00013395 0.0001076 0.00986501 0.00808448 30 1800 20 6.89349e+06 295971 556674. 1926.21 0.64 0.0325205 0.0274677 1443 20 1112 1652 88504 22294 3.09046 3.09046 -108.96 -3.09046 0 0 706193. 2443.58 0.23 0.03 0.00927898 0.00824647 111 26 54 27 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.58 vpr 62.80 MiB 0.02 7276 -1 -1 1 0.02 -1 -1 33284 -1 -1 35 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64304 31 32 319 244 1 187 98 17 17 289 -1 unnamed_device 24.3 MiB 0.92 981 62.8 MiB 0.13 0.00 2.7894 -92.7572 -2.7894 2.7894 0.93 0.000158771 0.000129183 0.0215732 0.0191337 28 2685 37 6.89349e+06 493284 531479. 1839.03 0.96 0.0554739 0.0483519 2215 18 1331 2237 172400 38328 2.77861 2.77861 -109.14 -2.77861 0 0 648988. 2245.63 0.20 0.04 0.00974718 0.00863035 141 -1 115 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.01 vpr 63.01 MiB 0.03 7100 -1 -1 1 0.02 -1 -1 33440 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64520 31 32 340 294 1 225 84 17 17 289 -1 unnamed_device 24.5 MiB 1.50 1184 63.0 MiB 0.09 0.00 3.05605 -101.613 -3.05605 3.05605 0.76 0.000156085 0.000126246 0.010827 0.00893132 34 2760 31 6.89349e+06 295971 618332. 2139.56 1.11 0.0614826 0.0520314 2238 21 1525 1855 134645 30047 2.96351 2.96351 -119.86 -2.96351 0 0 787024. 2723.27 0.26 0.04 0.0117479 0.0104267 140 81 0 0 84 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.48 vpr 62.84 MiB 0.02 7108 -1 -1 1 0.01 -1 -1 33024 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64352 32 32 315 257 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.68 940 62.8 MiB 0.21 0.01 2.96065 -107.862 -2.96065 2.96065 0.88 0.000150489 0.00012186 0.0190979 0.0164384 34 2373 20 6.89349e+06 267783 618332. 2139.56 1.13 0.0647591 0.0555709 1967 21 1681 2159 159323 35998 3.05646 3.05646 -128.509 -3.05646 0 0 787024. 2723.27 0.25 0.05 0.0111948 0.00995541 127 31 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 5.57 vpr 62.86 MiB 0.03 7016 -1 -1 1 0.02 -1 -1 33504 -1 -1 21 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64368 30 32 328 276 1 203 83 17 17 289 -1 unnamed_device 24.5 MiB 2.00 959 62.9 MiB 0.07 0.00 3.53134 -114.754 -3.53134 3.53134 0.68 0.000149468 0.000120237 0.0115536 0.00957201 34 2474 23 6.89349e+06 295971 618332. 2139.56 1.10 0.0612572 0.0517924 2001 16 1420 1854 132042 30388 3.65205 3.65205 -135.808 -3.65205 0 0 787024. 2723.27 0.25 0.04 0.00923252 0.00829513 135 58 30 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.38 vpr 63.01 MiB 0.04 6960 -1 -1 1 0.01 -1 -1 33588 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64520 32 32 332 281 1 215 84 17 17 289 -1 unnamed_device 24.5 MiB 1.40 914 63.0 MiB 0.10 0.00 3.1685 -100.834 -3.1685 3.1685 0.94 0.000155397 0.000125212 0.0145956 0.0119353 34 2732 35 6.89349e+06 281877 618332. 2139.56 1.32 0.0698184 0.0588391 2068 19 1340 1553 109317 26582 3.17191 3.17191 -118.445 -3.17191 0 0 787024. 2723.27 0.25 0.04 0.0107735 0.00957997 135 57 25 25 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 5.27 vpr 63.28 MiB 0.03 7216 -1 -1 1 0.02 -1 -1 33572 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64796 32 32 387 306 1 239 89 17 17 289 -1 unnamed_device 24.9 MiB 1.23 1157 63.3 MiB 0.18 0.00 3.35709 -118.859 -3.35709 3.35709 0.84 0.0012828 0.00092565 0.0254024 0.0207969 34 2989 24 6.89349e+06 352346 618332. 2139.56 1.24 0.0822252 0.0697311 2444 19 1741 2359 171592 39424 3.3694 3.3694 -132.033 -3.3694 0 0 787024. 2723.27 0.25 0.05 0.0123478 0.0110384 161 55 64 32 57 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.28 vpr 63.57 MiB 0.02 7144 -1 -1 1 0.02 -1 -1 33488 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65096 32 32 408 320 1 264 92 17 17 289 -1 unnamed_device 25.0 MiB 1.85 1336 63.6 MiB 0.21 0.00 4.25354 -144.092 -4.25354 4.25354 0.76 0.000214871 0.000177968 0.0242156 0.0219366 34 3670 27 6.89349e+06 394628 618332. 2139.56 1.76 0.0894702 0.0782031 2891 22 2517 3335 247580 56364 4.65775 4.65775 -177.031 -4.65775 0 0 787024. 2723.27 0.38 0.06 0.0149798 0.013373 177 60 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.02 vpr 62.91 MiB 0.03 7172 -1 -1 1 0.01 -1 -1 33404 -1 -1 21 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64416 29 32 276 232 1 171 82 17 17 289 -1 unnamed_device 24.5 MiB 1.34 837 62.9 MiB 0.06 0.00 2.84265 -92.4523 -2.84265 2.84265 0.71 0.000135532 0.000109489 0.00810021 0.00659814 34 2136 20 6.89349e+06 295971 618332. 2139.56 1.03 0.0483507 0.0410699 1777 19 1077 1537 110445 25818 2.89016 2.89016 -105.992 -2.89016 0 0 787024. 2723.27 0.25 0.03 0.00929741 0.00827703 112 21 58 29 24 24 - fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.45 vpr 63.19 MiB 0.03 7252 -1 -1 1 0.01 -1 -1 33300 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64708 32 32 402 316 1 256 89 17 17 289 -1 unnamed_device 24.7 MiB 2.04 1389 63.2 MiB 0.14 0.00 3.54049 -124.876 -3.54049 3.54049 0.72 0.000187579 0.000152365 0.0167023 0.0137309 38 3128 26 6.89349e+06 352346 678818. 2348.85 1.47 0.0860265 0.0734624 2733 24 2321 3757 258426 57058 3.71435 3.71435 -146.54 -3.71435 0 0 902133. 3121.57 0.42 0.07 0.0156579 0.0139465 174 60 64 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 4.80 vpr 62.98 MiB 0.04 7400 -1 -1 1 0.01 -1 -1 33348 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64496 32 32 384 304 1 236 89 17 17 289 -1 unnamed_device 24.6 MiB 1.00 1240 63.0 MiB 0.08 0.00 2.93865 -106.804 -2.93865 2.93865 0.76 0.000177688 0.000143599 0.010683 0.00875865 34 2897 24 6.89349e+06 352346 618332. 2139.56 1.32 0.0636918 0.0536628 2360 21 1952 2433 170677 40340 3.05916 3.05916 -129.128 -3.05916 0 0 787024. 2723.27 0.25 0.05 0.0133781 0.0119726 160 54 64 32 56 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 5.63 vpr 62.86 MiB 0.02 7120 -1 -1 1 0.01 -1 -1 33180 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64372 32 32 340 285 1 224 85 17 17 289 -1 unnamed_device 24.4 MiB 1.78 1165 62.9 MiB 0.08 0.00 2.80245 -102.525 -2.80245 2.80245 0.73 0.000158118 0.000127864 0.00955546 0.00772133 34 2663 28 6.89349e+06 295971 618332. 2139.56 1.10 0.0599742 0.0505637 2184 20 1316 1792 117275 28226 2.70091 2.70091 -115.796 -2.70091 0 0 787024. 2723.27 0.30 0.04 0.011367 0.0100843 139 62 29 29 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.54 vpr 62.38 MiB 0.02 6752 -1 -1 1 0.01 -1 -1 33304 -1 -1 15 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63880 30 32 229 211 1 142 77 17 17 289 -1 unnamed_device 23.9 MiB 0.93 752 62.4 MiB 0.04 0.00 2.41926 -83.0314 -2.41926 2.41926 0.88 0.000112832 9.0111e-05 0.00730705 0.00594941 34 1647 15 6.89349e+06 211408 618332. 2139.56 0.94 0.0373455 0.0315034 1380 16 665 786 53008 12837 2.07787 2.07787 -90.0941 -2.07787 0 0 787024. 2723.27 0.25 0.02 0.00658213 0.00587518 85 29 24 24 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.07 vpr 62.83 MiB 0.03 7072 -1 -1 1 0.01 -1 -1 33272 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64336 31 32 337 282 1 217 85 17 17 289 -1 unnamed_device 24.3 MiB 1.44 894 62.8 MiB 0.10 0.00 3.51229 -113.759 -3.51229 3.51229 0.84 0.00015717 0.000126637 0.0117812 0.00967522 34 3198 36 6.89349e+06 310065 618332. 2139.56 1.95 0.069537 0.0592009 2147 22 1546 2075 153044 37413 3.8304 3.8304 -146.753 -3.8304 0 0 787024. 2723.27 0.24 0.05 0.0114547 0.010129 142 55 31 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 4.90 vpr 63.18 MiB 0.03 7084 -1 -1 1 0.01 -1 -1 33392 -1 -1 40 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64700 32 32 367 284 1 228 104 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1336 63.2 MiB 0.13 0.00 3.64283 -127.921 -3.64283 3.64283 0.97 0.000174713 0.000141706 0.0163452 0.0133087 34 2857 22 6.89349e+06 563754 618332. 2139.56 1.16 0.0736422 0.0628032 2435 20 1977 2858 203319 45707 3.98924 3.98924 -152.612 -3.98924 0 0 787024. 2723.27 0.27 0.06 0.0136835 0.0121561 166 31 91 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 5.37 vpr 63.73 MiB 0.02 7212 -1 -1 1 0.01 -1 -1 33584 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65260 32 32 461 376 1 309 95 17 17 289 -1 unnamed_device 25.2 MiB 1.29 1587 63.7 MiB 0.16 0.00 3.45522 -120.181 -3.45522 3.45522 0.78 0.000209313 0.000171425 0.0221507 0.0184068 34 3782 41 6.89349e+06 436909 618332. 2139.56 1.55 0.0998086 0.0856156 2928 22 2397 2726 206114 46226 3.79586 3.79586 -143.213 -3.79586 0 0 787024. 2723.27 0.26 0.06 0.0158831 0.0140575 201 108 0 0 125 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 4.44 vpr 62.63 MiB 0.05 6980 -1 -1 1 0.01 -1 -1 33316 -1 -1 18 26 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64132 26 32 205 193 1 129 76 17 17 289 -1 unnamed_device 24.2 MiB 1.34 550 62.6 MiB 0.05 0.00 2.34617 -63.5909 -2.34617 2.34617 0.72 0.000137026 8.1942e-05 0.00791792 0.00647592 30 1291 27 6.89349e+06 253689 556674. 1926.21 0.63 0.028285 0.0237652 1123 13 504 648 37408 9184 2.16671 2.16671 -73.8053 -2.16671 0 0 706193. 2443.58 0.28 0.02 0.00529134 0.00473523 77 21 26 26 22 22 - fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 4.62 vpr 63.03 MiB 0.04 7324 -1 -1 1 0.02 -1 -1 33244 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64540 32 32 334 252 1 196 85 17 17 289 -1 unnamed_device 24.5 MiB 1.24 1096 63.0 MiB 0.09 0.00 3.25074 -115.952 -3.25074 3.25074 0.88 0.000201646 0.000167502 0.0109533 0.00906887 30 2778 22 6.89349e+06 295971 556674. 1926.21 0.75 0.0463878 0.0400824 2155 19 1577 2677 153675 36022 3.66395 3.66395 -141.584 -3.66395 0 0 706193. 2443.58 0.24 0.05 0.0112949 0.0100885 141 -1 122 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.01 vpr 62.25 MiB 0.03 6884 -1 -1 1 0.01 -1 -1 33232 -1 -1 12 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63740 32 32 200 183 1 122 76 17 17 289 -1 unnamed_device 23.8 MiB 0.32 550 62.2 MiB 0.08 0.00 1.93068 -71.1949 -1.93068 1.93068 0.72 0.000505028 0.000267236 0.00965388 0.00775638 34 1368 22 6.89349e+06 169126 618332. 2139.56 1.31 0.0747747 0.0521989 1126 20 616 894 56348 14372 1.76516 1.76516 -80.0687 -1.76516 0 0 787024. 2723.27 0.24 0.02 0.00685161 0.00605229 71 -1 53 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.79 vpr 63.06 MiB 0.02 7284 -1 -1 1 0.01 -1 -1 33436 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64576 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 24.5 MiB 1.78 1278 63.1 MiB 0.07 0.00 3.76105 -133.563 -3.76105 3.76105 0.78 0.000188619 0.000155481 0.00952063 0.00795706 34 3098 27 6.89349e+06 338252 618332. 2139.56 1.33 0.0760935 0.0661954 2573 22 2039 2917 207810 47441 4.04596 4.04596 -160.457 -4.04596 0 0 787024. 2723.27 0.24 0.05 0.0130758 0.0116001 161 21 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.44 vpr 63.03 MiB 0.04 7316 -1 -1 1 0.01 -1 -1 33436 -1 -1 36 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64544 32 32 338 254 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.87 1096 63.0 MiB 0.11 0.00 2.7191 -100.994 -2.7191 2.7191 0.73 0.000204356 0.00016888 0.0131562 0.0109018 26 2927 44 6.89349e+06 507378 503264. 1741.40 1.00 0.060606 0.0523452 2476 19 1511 2371 198851 44717 3.12681 3.12681 -130.467 -3.12681 0 0 618332. 2139.56 0.19 0.05 0.0106379 0.0094236 151 -1 124 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.05 vpr 63.12 MiB 0.03 7312 -1 -1 1 0.02 -1 -1 33656 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64640 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 1.54 1389 63.1 MiB 0.14 0.00 3.83325 -135.778 -3.83325 3.83325 0.80 0.000191764 0.00015401 0.0175461 0.0144107 34 3672 35 6.89349e+06 380534 618332. 2139.56 1.68 0.0924168 0.0792105 2907 21 2290 3421 256455 55992 4.14126 4.14126 -158.737 -4.14126 0 0 787024. 2723.27 0.25 0.06 0.0146977 0.0130803 174 54 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 5.49 vpr 62.62 MiB 0.03 7028 -1 -1 1 0.01 -1 -1 33332 -1 -1 17 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64120 32 32 295 247 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 1.88 968 62.6 MiB 0.08 0.00 2.82445 -102.265 -2.82445 2.82445 0.71 0.000143471 0.000115546 0.0125517 0.0103512 34 2318 21 6.89349e+06 239595 618332. 2139.56 1.29 0.0576393 0.0490877 1775 19 1382 2026 127790 31203 2.72566 2.72566 -117.568 -2.72566 0 0 787024. 2723.27 0.24 0.04 0.00951246 0.00843994 118 31 54 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.97 vpr 62.88 MiB 0.02 7156 -1 -1 1 0.01 -1 -1 33248 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64392 30 32 299 247 1 183 81 17 17 289 -1 unnamed_device 24.3 MiB 1.88 960 62.9 MiB 0.08 0.00 3.51049 -114.71 -3.51049 3.51049 0.86 0.000151382 0.000122624 0.0114869 0.00942675 36 2299 21 6.89349e+06 267783 648988. 2245.63 1.41 0.0605578 0.0517302 2019 19 1369 2142 170195 36319 3.586 3.586 -133.9 -3.586 0 0 828058. 2865.25 0.41 0.04 0.00970714 0.00865542 121 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.44 vpr 62.62 MiB 0.03 7236 -1 -1 1 0.01 -1 -1 33160 -1 -1 21 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64128 28 32 283 237 1 173 81 17 17 289 -1 unnamed_device 24.1 MiB 1.68 789 62.6 MiB 0.07 0.00 3.46529 -106.05 -3.46529 3.46529 0.83 0.000143033 0.000115664 0.0091144 0.00755657 34 2203 25 6.89349e+06 295971 618332. 2139.56 1.18 0.0564413 0.0482799 1852 20 1281 2083 155240 36270 3.80676 3.80676 -128.359 -3.80676 0 0 787024. 2723.27 0.24 0.04 0.00976842 0.00866797 117 27 56 28 28 28 - fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.24 vpr 62.70 MiB 0.02 7024 -1 -1 1 0.01 -1 -1 33404 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64200 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.03 1000 62.7 MiB 0.08 0.00 2.85355 -108.089 -2.85355 2.85355 0.75 0.000150066 0.000121347 0.0136515 0.0113003 36 2170 20 6.89349e+06 225501 648988. 2245.63 2.81 0.0944918 0.0806851 2032 18 1358 2274 165347 35783 2.88986 2.88986 -127.056 -2.88986 0 0 828058. 2865.25 0.28 0.04 0.00940081 0.00842266 114 -1 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 5.26 vpr 63.08 MiB 0.02 7164 -1 -1 1 0.01 -1 -1 33500 -1 -1 19 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64592 31 32 305 251 1 191 82 17 17 289 -1 unnamed_device 24.4 MiB 1.54 860 63.1 MiB 0.07 0.00 2.92465 -101.551 -2.92465 2.92465 0.75 0.000152041 0.000123324 0.00937489 0.00784226 34 2497 21 6.89349e+06 267783 618332. 2139.56 1.28 0.053954 0.0459376 1965 20 1288 1817 132995 30604 2.97616 2.97616 -119.993 -2.97616 0 0 787024. 2723.27 0.23 0.04 0.00974057 0.0086409 122 26 61 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 4.99 vpr 62.83 MiB 0.03 7068 -1 -1 1 0.01 -1 -1 33276 -1 -1 23 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64336 29 32 316 268 1 201 84 17 17 289 -1 unnamed_device 24.4 MiB 1.41 1009 62.8 MiB 0.10 0.00 2.80245 -93.1145 -2.80245 2.80245 0.70 0.000152932 0.000123804 0.0154714 0.0126948 34 2422 23 6.89349e+06 324158 618332. 2139.56 1.09 0.064941 0.0550988 1957 17 1154 1476 94576 21946 2.93566 2.93566 -110.435 -2.93566 0 0 787024. 2723.27 0.25 0.04 0.0100628 0.00897493 130 55 29 29 57 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.20 vpr 63.16 MiB 0.03 7464 -1 -1 1 0.01 -1 -1 33620 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64672 32 32 424 311 1 254 91 17 17 289 -1 unnamed_device 24.6 MiB 2.06 1439 63.2 MiB 0.12 0.00 3.73615 -134.284 -3.73615 3.73615 0.67 0.000233973 0.000175566 0.0174803 0.0132414 34 3876 23 6.89349e+06 380534 618332. 2139.56 1.47 0.0950403 0.0811573 3152 22 2090 3373 272496 59714 4.02696 4.02696 -156.447 -4.02696 0 0 787024. 2723.27 0.24 0.07 0.015885 0.0140885 184 26 128 32 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 5.93 vpr 63.24 MiB 0.04 7280 -1 -1 1 0.01 -1 -1 33348 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64756 32 32 404 318 1 260 89 17 17 289 -1 unnamed_device 24.6 MiB 1.62 1255 63.2 MiB 0.11 0.00 3.39694 -117.058 -3.39694 3.39694 0.75 0.0002126 0.000174381 0.0160431 0.0135116 34 3400 33 6.89349e+06 352346 618332. 2139.56 1.44 0.0928267 0.081173 2668 21 2497 3340 251263 55686 3.857 3.857 -145.271 -3.857 0 0 787024. 2723.27 0.24 0.06 0.0133013 0.0118325 173 62 62 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.67 vpr 63.11 MiB 0.02 6932 -1 -1 1 0.02 -1 -1 33428 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64628 31 32 355 304 1 229 85 17 17 289 -1 unnamed_device 24.5 MiB 0.95 998 63.1 MiB 0.07 0.00 2.90265 -95.428 -2.90265 2.90265 0.72 0.000190805 0.000156455 0.0111506 0.00919644 36 2444 25 6.89349e+06 310065 648988. 2245.63 1.34 0.0634461 0.0536726 1959 20 1302 1342 103704 23771 2.90571 2.90571 -110.628 -2.90571 0 0 828058. 2865.25 0.25 0.03 0.0110077 0.00978376 143 77 0 0 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.75 vpr 63.00 MiB 0.03 7324 -1 -1 1 0.02 -1 -1 33224 -1 -1 26 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64512 31 32 393 311 1 246 89 17 17 289 -1 unnamed_device 24.5 MiB 2.80 1267 63.0 MiB 0.20 0.00 3.38219 -117.367 -3.38219 3.38219 0.81 0.000184671 0.000149641 0.0209812 0.017647 34 3170 31 6.89349e+06 366440 618332. 2139.56 1.36 0.0848456 0.0726698 2546 25 2137 3108 240460 50640 3.5533 3.5533 -137.629 -3.5533 0 0 787024. 2723.27 0.24 0.06 0.0147152 0.0129723 170 59 60 30 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 6.94 vpr 63.57 MiB 0.03 7436 -1 -1 1 0.01 -1 -1 33616 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65096 31 32 457 373 1 307 94 17 17 289 -1 unnamed_device 25.0 MiB 1.83 1523 63.6 MiB 0.14 0.00 4.10624 -133.547 -4.10624 4.10624 0.82 0.000270684 0.000229145 0.0185515 0.0162594 34 3990 44 6.89349e+06 436909 618332. 2139.56 2.16 0.0984035 0.0853678 3134 22 2685 2986 251058 54549 4.70354 4.70354 -162.194 -4.70354 0 0 787024. 2723.27 0.25 0.07 0.01595 0.0141286 201 111 0 0 124 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 6.16 vpr 63.12 MiB 0.04 7280 -1 -1 1 0.01 -1 -1 33424 -1 -1 27 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64640 31 32 415 335 1 269 90 17 17 289 -1 unnamed_device 24.6 MiB 2.22 1384 63.1 MiB 0.14 0.00 4.27287 -141.568 -4.27287 4.27287 0.70 0.000205171 0.000168275 0.0186789 0.0154433 34 3541 28 6.89349e+06 380534 618332. 2139.56 1.35 0.0875074 0.0747315 2856 20 2143 2915 214080 49403 5.15454 5.15454 -177.566 -5.15454 0 0 787024. 2723.27 0.32 0.05 0.0125547 0.0111477 181 86 31 31 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.00 vpr 63.14 MiB 0.02 7388 -1 -1 1 0.02 -1 -1 33164 -1 -1 27 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64652 31 32 393 311 1 249 90 17 17 289 -1 unnamed_device 24.7 MiB 1.69 1380 63.1 MiB 0.15 0.00 2.99685 -106.411 -2.99685 2.99685 0.70 0.000204001 0.000168254 0.0198633 0.0166032 34 3481 47 6.89349e+06 380534 618332. 2139.56 1.81 0.0981423 0.0846789 2843 20 2072 2862 230125 50107 3.13581 3.13581 -129.89 -3.13581 0 0 787024. 2723.27 0.24 0.06 0.0128637 0.0114374 168 58 60 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.27 vpr 63.26 MiB 0.04 7196 -1 -1 1 0.01 -1 -1 33500 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64776 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 24.8 MiB 2.21 1293 63.3 MiB 0.10 0.00 3.70795 -130.748 -3.70795 3.70795 0.85 0.000186522 0.000152077 0.0136453 0.0112174 36 2939 33 6.89349e+06 380534 648988. 2245.63 1.53 0.0797792 0.0682984 2598 22 1850 2404 177749 40128 4.17926 4.17926 -162.09 -4.17926 0 0 828058. 2865.25 0.27 0.05 0.0144452 0.01285 178 42 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 7.23 vpr 63.20 MiB 0.05 7560 -1 -1 1 0.01 -1 -1 33748 -1 -1 31 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64712 32 32 497 381 1 321 95 17 17 289 -1 unnamed_device 25.2 MiB 2.09 1652 63.2 MiB 0.16 0.00 3.97668 -140.241 -3.97668 3.97668 0.95 0.000255412 0.000211215 0.0226924 0.0189925 34 4648 28 6.89349e+06 436909 618332. 2139.56 2.26 0.127467 0.108516 3560 21 3324 4801 361732 79870 4.78899 4.78899 -176.234 -4.78899 0 0 787024. 2723.27 0.24 0.08 0.0170874 0.0152015 220 91 62 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.58 vpr 62.84 MiB 0.02 7188 -1 -1 1 0.02 -1 -1 33336 -1 -1 20 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64344 31 32 307 252 1 192 83 17 17 289 -1 unnamed_device 24.2 MiB 2.03 743 62.8 MiB 0.08 0.00 3.1012 -104.284 -3.1012 3.1012 0.72 0.000159913 0.000130183 0.0114226 0.00944421 34 2205 31 6.89349e+06 281877 618332. 2139.56 1.25 0.0702159 0.0609346 1725 20 1361 1886 122314 30942 3.14061 3.14061 -125.272 -3.14061 0 0 787024. 2723.27 0.25 0.04 0.0102353 0.00912788 126 24 62 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.03 vpr 63.34 MiB 0.04 7396 -1 -1 1 0.01 -1 -1 33432 -1 -1 27 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64860 31 32 397 313 1 251 90 17 17 289 -1 unnamed_device 24.8 MiB 1.69 1293 63.3 MiB 0.10 0.00 3.99994 -134.91 -3.99994 3.99994 0.70 0.000206694 0.000170027 0.0126082 0.0104912 34 3209 27 6.89349e+06 380534 618332. 2139.56 1.67 0.0828832 0.0716462 2628 22 1864 2316 197277 44006 4.17385 4.17385 -152.371 -4.17385 0 0 787024. 2723.27 0.32 0.06 0.0142696 0.01264 168 59 62 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 6.29 vpr 63.16 MiB 0.03 7308 -1 -1 1 0.02 -1 -1 33348 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64680 32 32 398 314 1 254 92 17 17 289 -1 unnamed_device 24.7 MiB 1.78 1251 63.2 MiB 0.08 0.00 3.54969 -121.247 -3.54969 3.54969 0.64 0.000183236 0.000148938 0.0102652 0.00854542 36 3307 39 6.89349e+06 394628 648988. 2245.63 1.94 0.0846129 0.0727434 2641 17 1531 2320 160597 36838 3.6674 3.6674 -142.991 -3.6674 0 0 828058. 2865.25 0.27 0.05 0.0139695 0.012599 173 54 62 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 4.67 vpr 63.00 MiB 0.02 7028 -1 -1 1 0.01 -1 -1 33144 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64508 32 32 346 258 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 0.63 986 63.0 MiB 0.08 0.00 3.45729 -121.701 -3.45729 3.45729 0.74 0.000177276 0.000144418 0.0113839 0.00943556 34 3066 25 6.89349e+06 295971 618332. 2139.56 1.67 0.083594 0.0727452 2323 21 1956 3432 251711 57011 4.1602 4.1602 -159.603 -4.1602 0 0 787024. 2723.27 0.25 0.06 0.011977 0.0106627 147 -1 128 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 5.55 vpr 63.59 MiB 0.02 7416 -1 -1 1 0.01 -1 -1 33656 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65120 32 32 425 344 1 281 92 17 17 289 -1 unnamed_device 25.0 MiB 1.67 1356 63.6 MiB 0.14 0.00 3.41219 -119.326 -3.41219 3.41219 0.73 0.000196692 0.000159148 0.0203211 0.0167161 34 3320 28 6.89349e+06 394628 618332. 2139.56 1.42 0.0893167 0.0760933 2619 19 1872 2144 153163 34952 3.3072 3.3072 -133.796 -3.3072 0 0 787024. 2723.27 0.24 0.04 0.0126697 0.0112813 184 81 25 25 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.20 vpr 62.98 MiB 0.06 7268 -1 -1 1 0.01 -1 -1 33488 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64492 32 32 396 312 1 255 91 17 17 289 -1 unnamed_device 24.5 MiB 2.30 1360 63.0 MiB 0.13 0.00 3.54849 -126.382 -3.54849 3.54849 0.74 0.000189956 0.000153764 0.0173866 0.0143089 36 3232 44 6.89349e+06 380534 648988. 2245.63 2.05 0.0985005 0.082991 2530 24 1991 3054 237676 52177 4.018 4.018 -148.335 -4.018 0 0 828058. 2865.25 0.40 0.06 0.014091 0.0124328 169 58 64 32 60 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.91 vpr 63.16 MiB 0.02 7396 -1 -1 1 0.01 -1 -1 33412 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64680 32 32 406 319 1 260 91 17 17 289 -1 unnamed_device 24.6 MiB 1.78 1290 63.2 MiB 0.13 0.00 3.00785 -106.468 -3.00785 3.00785 0.81 0.000183347 0.000148213 0.0157721 0.0129696 36 3029 27 6.89349e+06 380534 648988. 2245.63 1.46 0.0874458 0.0749209 2570 24 2154 3046 230563 52748 3.35021 3.35021 -127.708 -3.35021 0 0 828058. 2865.25 0.25 0.06 0.0155951 0.0138359 175 61 63 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.52 vpr 63.32 MiB 0.02 7164 -1 -1 1 0.02 -1 -1 33432 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64836 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 24.9 MiB 1.40 1039 63.3 MiB 0.12 0.00 3.76105 -129.849 -3.76105 3.76105 0.71 0.000181743 0.000148811 0.0170067 0.014141 34 2716 27 6.89349e+06 338252 618332. 2139.56 1.55 0.107316 0.074575 2140 22 1824 2673 168082 42552 3.84566 3.84566 -147.024 -3.84566 0 0 787024. 2723.27 0.23 0.05 0.0123477 0.0109625 161 21 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.66 vpr 63.46 MiB 0.03 7136 -1 -1 1 0.01 -1 -1 33528 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64984 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 24.9 MiB 1.52 1223 63.5 MiB 0.17 0.00 3.73915 -128.903 -3.73915 3.73915 0.73 0.000242254 0.00020522 0.0187167 0.0163101 34 3038 32 6.89349e+06 380534 618332. 2139.56 1.45 0.0863501 0.0749921 2468 21 2190 2731 176164 42068 3.84556 3.84556 -150.99 -3.84556 0 0 787024. 2723.27 0.26 0.05 0.0127916 0.0113237 179 50 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.65 vpr 63.60 MiB 0.04 7328 -1 -1 1 0.02 -1 -1 33732 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65124 31 32 451 369 1 300 94 17 17 289 -1 unnamed_device 25.0 MiB 1.30 1483 63.6 MiB 0.12 0.00 3.94494 -125.657 -3.94494 3.94494 0.72 0.000196105 0.000158876 0.0163403 0.0134822 34 3694 24 6.89349e+06 436909 618332. 2139.56 1.61 0.0868924 0.0740798 2937 21 2068 2460 199993 45079 4.51655 4.51655 -148.726 -4.51655 0 0 787024. 2723.27 0.24 0.06 0.0148764 0.0131252 195 110 0 0 122 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 6.91 vpr 63.50 MiB 0.04 7228 -1 -1 1 0.01 -1 -1 33496 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65020 32 32 433 347 1 287 92 17 17 289 -1 unnamed_device 25.0 MiB 2.53 1623 63.5 MiB 0.30 0.00 3.80935 -133.36 -3.80935 3.80935 0.70 0.000227632 0.00018941 0.103414 0.0951829 34 4048 38 6.89349e+06 394628 618332. 2139.56 1.42 0.177639 0.159304 3180 24 2624 3844 270879 62560 4.34396 4.34396 -159.845 -4.34396 0 0 787024. 2723.27 0.25 0.07 0.0168026 0.0149142 191 86 32 32 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.39 vpr 62.88 MiB 0.03 6988 -1 -1 1 0.01 -1 -1 33616 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64392 32 32 313 256 1 198 84 17 17 289 -1 unnamed_device 24.3 MiB 1.58 992 62.9 MiB 0.09 0.00 2.93565 -108.92 -2.93565 2.93565 0.71 0.000153026 0.00012392 0.012502 0.0102978 34 2428 21 6.89349e+06 281877 618332. 2139.56 1.42 0.0608462 0.0516728 1989 21 1296 1769 136838 29891 2.85086 2.85086 -122.808 -2.85086 0 0 787024. 2723.27 0.24 0.04 0.0099531 0.00881072 127 20 63 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 5.20 vpr 63.29 MiB 0.02 7144 -1 -1 1 0.01 -1 -1 33360 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64812 32 32 371 315 1 250 85 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1295 63.3 MiB 0.07 0.00 3.52469 -121.577 -3.52469 3.52469 0.67 0.000173131 0.000140932 0.0103712 0.00863634 34 3196 40 6.89349e+06 295971 618332. 2139.56 1.29 0.0703135 0.0594989 2588 26 1945 2295 165327 36950 3.90659 3.90659 -145.38 -3.90659 0 0 787024. 2723.27 0.24 0.05 0.0145062 0.012797 154 91 0 0 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.83 vpr 63.59 MiB 0.03 7480 -1 -1 1 0.02 -1 -1 33480 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65112 32 32 470 352 1 298 94 17 17 289 -1 unnamed_device 25.0 MiB 1.61 1579 63.6 MiB 0.13 0.00 4.44419 -148.999 -4.44419 4.44419 0.76 0.00023381 0.000192205 0.0150669 0.0125311 36 3844 26 6.89349e+06 422815 648988. 2245.63 2.41 0.102991 0.0901858 3207 21 2566 3618 263160 57676 5.254 5.254 -187.227 -5.254 0 0 828058. 2865.25 0.26 0.07 0.0157541 0.014026 209 53 96 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 5.32 vpr 62.95 MiB 0.02 7300 -1 -1 1 0.01 -1 -1 33336 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64456 32 32 369 285 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1087 62.9 MiB 0.10 0.00 3.029 -107.078 -3.029 3.029 0.71 0.000207183 0.000170113 0.0142481 0.01179 34 2733 21 6.89349e+06 324158 618332. 2139.56 1.35 0.0810036 0.0709061 2271 18 1691 2426 163879 39580 3.18276 3.18276 -128.49 -3.18276 0 0 787024. 2723.27 0.23 0.04 0.011509 0.0102326 156 31 92 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.24 vpr 62.69 MiB 0.04 7132 -1 -1 1 0.01 -1 -1 33352 -1 -1 32 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64196 30 32 299 247 1 183 94 17 17 289 -1 unnamed_device 24.1 MiB 1.13 988 62.7 MiB 0.10 0.00 3.49029 -111.831 -3.49029 3.49029 0.90 0.000160118 0.000132211 0.0126742 0.01039 36 2241 23 6.89349e+06 451003 648988. 2245.63 1.25 0.0610102 0.0518901 1868 20 1212 1961 134292 29601 3.5058 3.5058 -128.543 -3.5058 0 0 828058. 2865.25 0.26 0.04 0.0105292 0.00935675 129 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.26 vpr 63.58 MiB 0.04 7444 -1 -1 1 0.01 -1 -1 33832 -1 -1 35 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65104 32 32 532 414 1 356 99 17 17 289 -1 unnamed_device 25.6 MiB 1.77 1840 63.6 MiB 0.25 0.01 4.71793 -160 -4.71793 4.71793 0.72 0.000271022 0.000226087 0.042601 0.0314311 34 5168 50 6.89349e+06 493284 618332. 2139.56 2.59 0.148952 0.123421 3808 29 3536 4394 332106 73058 5.48204 5.48204 -197.865 -5.48204 0 0 787024. 2723.27 0.25 0.09 0.0227086 0.0201398 239 109 32 32 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.63 vpr 63.21 MiB 0.04 7284 -1 -1 1 0.02 -1 -1 33300 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64732 32 32 377 289 1 225 87 17 17 289 -1 unnamed_device 24.6 MiB 1.26 1048 63.2 MiB 0.11 0.00 3.54039 -124.125 -3.54039 3.54039 0.83 0.000176006 0.000142588 0.016232 0.013471 34 3085 29 6.89349e+06 324158 618332. 2139.56 1.70 0.109854 0.0981941 2343 23 2208 3061 228567 52298 4.1321 4.1321 -154.182 -4.1321 0 0 787024. 2723.27 0.25 0.06 0.013699 0.0121214 159 31 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.15 vpr 62.77 MiB 0.02 7000 -1 -1 1 0.01 -1 -1 33232 -1 -1 33 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64280 32 32 284 226 1 168 97 17 17 289 -1 unnamed_device 24.2 MiB 0.54 949 62.8 MiB 0.10 0.00 2.99485 -109.306 -2.99485 2.99485 0.69 0.000145022 0.000117094 0.0124676 0.0102149 28 2367 25 6.89349e+06 465097 531479. 1839.03 1.16 0.0469385 0.0391184 2109 24 1397 2253 198086 41663 3.01516 3.01516 -124.485 -3.01516 0 0 648988. 2245.63 0.21 0.05 0.0110706 0.00976344 123 -1 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.19 vpr 63.33 MiB 0.02 7468 -1 -1 1 0.01 -1 -1 33872 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64848 32 32 439 321 1 267 92 17 17 289 -1 unnamed_device 24.9 MiB 1.99 1330 63.3 MiB 0.17 0.00 4.54629 -154.546 -4.54629 4.54629 0.69 0.000222367 0.000182464 0.0212731 0.0175847 34 4010 37 6.89349e+06 394628 618332. 2139.56 2.56 0.107304 0.0928052 2917 21 2440 3593 283546 60975 4.9734 4.9734 -180.868 -4.9734 0 0 787024. 2723.27 0.24 0.07 0.0150698 0.0134 194 26 128 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.91 vpr 62.62 MiB 0.03 7100 -1 -1 1 0.01 -1 -1 33456 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64128 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.03 787 62.6 MiB 0.07 0.00 2.98685 -107.441 -2.98685 2.98685 0.71 0.000150045 0.000121404 0.00955413 0.00787141 34 2358 30 6.89349e+06 225501 618332. 2139.56 1.35 0.0644727 0.0560563 1894 20 1516 2548 185680 42174 3.03536 3.03536 -125.386 -3.03536 0 0 787024. 2723.27 0.25 0.05 0.0107012 0.00931684 114 -1 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.47 vpr 62.80 MiB 0.04 6972 -1 -1 1 0.01 -1 -1 33292 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64312 30 32 299 247 1 185 81 17 17 289 -1 unnamed_device 24.2 MiB 1.12 931 62.8 MiB 0.09 0.00 2.94665 -102.483 -2.94665 2.94665 0.99 0.000145324 0.000117373 0.0136195 0.0111708 34 2304 33 6.89349e+06 267783 618332. 2139.56 1.47 0.076675 0.067191 1873 20 1422 1925 155694 33795 3.11061 3.11061 -118.386 -3.11061 0 0 787024. 2723.27 0.26 0.05 0.0104494 0.00922323 121 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.12 vpr 63.20 MiB 0.02 7284 -1 -1 1 0.01 -1 -1 33520 -1 -1 31 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64716 29 32 397 323 1 253 92 17 17 289 -1 unnamed_device 24.7 MiB 1.46 1178 63.2 MiB 0.07 0.00 3.33394 -102.951 -3.33394 3.33394 0.75 0.000271544 0.00023448 0.00963705 0.00808321 34 3053 27 6.89349e+06 436909 618332. 2139.56 1.19 0.0710782 0.0605551 2347 21 1840 2445 163438 39255 3.59995 3.59995 -128.857 -3.59995 0 0 787024. 2723.27 0.33 0.05 0.012694 0.0111743 171 81 29 29 85 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.57 vpr 63.30 MiB 0.02 7168 -1 -1 1 0.01 -1 -1 33604 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64820 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 24.7 MiB 2.09 1344 63.3 MiB 0.15 0.00 4.12024 -144.196 -4.12024 4.12024 0.69 0.000205112 0.000168382 0.0196198 0.0160934 36 3082 25 6.89349e+06 366440 648988. 2245.63 1.76 0.124393 0.112122 2553 24 2334 3361 222264 51097 4.55855 4.55855 -168.984 -4.55855 0 0 828058. 2865.25 0.26 0.06 0.0160435 0.0142382 178 53 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.29 vpr 63.38 MiB 0.03 7388 -1 -1 1 0.02 -1 -1 33452 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64904 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 24.8 MiB 1.87 1336 63.4 MiB 0.12 0.00 4.16744 -141.163 -4.16744 4.16744 0.72 0.000200755 0.000163504 0.0139423 0.0115223 34 3728 34 6.89349e+06 366440 618332. 2139.56 1.93 0.10175 0.0892132 2663 20 2230 3150 253573 56015 4.36825 4.36825 -167.655 -4.36825 0 0 787024. 2723.27 0.26 0.06 0.0145301 0.0129735 175 55 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 4.67 vpr 63.01 MiB 0.02 7196 -1 -1 1 0.02 -1 -1 33724 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64520 32 32 346 288 1 218 84 17 17 289 -1 unnamed_device 24.5 MiB 1.23 1074 63.0 MiB 0.06 0.00 3.42319 -120.599 -3.42319 3.42319 0.73 0.000161503 0.000130916 0.00828623 0.00693495 34 2679 25 6.89349e+06 281877 618332. 2139.56 1.11 0.0578885 0.0494103 2063 19 1382 1558 119547 26836 3.2241 3.2241 -131.892 -3.2241 0 0 787024. 2723.27 0.24 0.04 0.0107296 0.00958109 141 55 32 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.39 vpr 62.91 MiB 0.04 7292 -1 -1 1 0.02 -1 -1 33324 -1 -1 22 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64420 31 32 355 304 1 231 85 17 17 289 -1 unnamed_device 24.4 MiB 1.55 1154 62.9 MiB 0.07 0.00 3.36019 -114.673 -3.36019 3.36019 0.89 0.000168157 0.000135749 0.00977057 0.00800584 34 2760 28 6.89349e+06 310065 618332. 2139.56 1.24 0.0599392 0.0507909 2201 18 1337 1683 111031 25980 3.3978 3.3978 -130.806 -3.3978 0 0 787024. 2723.27 0.25 0.04 0.0105334 0.00935905 146 82 0 0 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.11 vpr 63.00 MiB 0.03 7260 -1 -1 1 0.01 -1 -1 33332 -1 -1 27 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64508 30 32 377 300 1 236 89 17 17 289 -1 unnamed_device 24.6 MiB 1.81 1209 63.0 MiB 0.08 0.00 3.1983 -107.995 -3.1983 3.1983 0.74 0.000207904 0.000174061 0.0108909 0.00908895 34 2948 34 6.89349e+06 380534 618332. 2139.56 1.71 0.0772906 0.0656446 2421 21 1945 2784 195996 45316 3.17171 3.17171 -125.797 -3.17171 0 0 787024. 2723.27 0.24 0.05 0.0124983 0.0110837 162 52 60 30 57 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.86 vpr 62.86 MiB 0.04 7368 -1 -1 1 0.01 -1 -1 33276 -1 -1 27 28 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64368 28 32 337 265 1 203 87 17 17 289 -1 unnamed_device 24.4 MiB 1.26 1018 62.9 MiB 0.10 0.00 3.64495 -112.827 -3.64495 3.64495 0.66 0.000169052 0.000139265 0.0128027 0.0105603 34 2494 22 6.89349e+06 380534 618332. 2139.56 1.17 0.064486 0.0550394 2044 18 1506 2167 152750 34154 3.74336 3.74336 -130.645 -3.74336 0 0 787024. 2723.27 0.25 0.04 0.0100955 0.00898523 145 20 84 28 28 28 - fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.12 vpr 62.99 MiB 0.03 7032 -1 -1 1 0.01 -1 -1 33276 -1 -1 21 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64504 30 32 328 276 1 208 83 17 17 289 -1 unnamed_device 24.6 MiB 2.14 1088 63.0 MiB 0.10 0.00 3.30999 -111.778 -3.30999 3.30999 0.67 0.000154593 0.000124918 0.0144541 0.0118665 36 2602 25 6.89349e+06 295971 648988. 2245.63 1.45 0.0680039 0.0579109 2200 21 1679 2372 173551 37767 3.62995 3.62995 -139.005 -3.62995 0 0 828058. 2865.25 0.25 0.04 0.0103756 0.00917482 136 58 30 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.36 vpr 63.31 MiB 0.02 7220 -1 -1 1 0.01 -1 -1 33420 -1 -1 21 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64828 32 32 362 309 1 245 85 17 17 289 -1 unnamed_device 24.7 MiB 1.61 1292 63.3 MiB 0.08 0.00 3.0132 -108.989 -3.0132 3.0132 0.76 0.000181053 0.000147754 0.0122011 0.010115 34 2821 23 6.89349e+06 295971 618332. 2139.56 1.34 0.066138 0.0567448 2394 20 1766 2036 140496 32470 2.99151 2.99151 -124.654 -2.99151 0 0 787024. 2723.27 0.23 0.04 0.0115011 0.0101695 150 88 0 0 91 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.13 vpr 62.87 MiB 0.03 7288 -1 -1 1 0.02 -1 -1 33300 -1 -1 37 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64376 31 32 337 253 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.65 1094 62.9 MiB 0.13 0.00 3.42729 -118.902 -3.42729 3.42729 0.70 0.000166936 0.000135753 0.0149141 0.0122299 32 3012 22 6.89349e+06 521472 586450. 2029.24 0.78 0.0486133 0.0416379 2340 20 1747 2821 250684 53252 3.8627 3.8627 -147.196 -3.8627 0 0 744469. 2576.02 0.25 0.06 0.0137686 0.0123736 151 -1 124 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 5.34 vpr 63.52 MiB 0.02 7384 -1 -1 1 0.01 -1 -1 33524 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65040 32 32 408 320 1 257 90 17 17 289 -1 unnamed_device 25.0 MiB 1.32 1281 63.5 MiB 0.11 0.00 3.88558 -134.538 -3.88558 3.88558 0.70 0.000211636 0.0001745 0.0152015 0.0124834 34 3334 26 6.89349e+06 366440 618332. 2139.56 1.52 0.0910547 0.0791932 2764 20 2063 2752 210166 46336 4.01065 4.01065 -154.141 -4.01065 0 0 787024. 2723.27 0.34 0.05 0.0131538 0.0116981 173 57 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.66 vpr 63.28 MiB 0.02 7388 -1 -1 1 0.02 -1 -1 33452 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64800 32 32 408 320 1 256 90 17 17 289 -1 unnamed_device 24.8 MiB 1.86 1386 63.3 MiB 0.14 0.00 3.98468 -140.899 -3.98468 3.98468 0.69 0.000235571 0.000198921 0.0182287 0.0148732 36 3410 23 6.89349e+06 366440 648988. 2245.63 2.30 0.0955506 0.0826977 2828 24 2627 3700 283340 61481 4.3178 4.3178 -168.598 -4.3178 0 0 828058. 2865.25 0.25 0.07 0.0145091 0.0128763 171 62 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.31 vpr 63.50 MiB 0.03 7148 -1 -1 1 0.02 -1 -1 33192 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65024 32 32 400 316 1 257 91 17 17 289 -1 unnamed_device 25.0 MiB 1.65 1206 63.5 MiB 0.09 0.00 3.34984 -112.719 -3.34984 3.34984 0.70 0.000207775 0.000171901 0.0121015 0.0101743 36 3085 25 6.89349e+06 380534 648988. 2245.63 2.13 0.0803617 0.0697285 2370 21 1884 2810 175910 41330 3.8787 3.8787 -140.341 -3.8787 0 0 828058. 2865.25 0.24 0.05 0.0137535 0.0122485 172 62 60 30 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.46 vpr 62.97 MiB 0.07 7044 -1 -1 1 0.01 -1 -1 33252 -1 -1 19 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64480 30 32 299 247 1 183 81 17 17 289 -1 unnamed_device 24.4 MiB 1.62 977 63.0 MiB 0.06 0.00 3.08116 -105.169 -3.08116 3.08116 0.71 0.000159952 0.000131397 0.00874327 0.00734165 34 2457 35 6.89349e+06 267783 618332. 2139.56 1.22 0.0597063 0.0511113 2109 17 1231 1753 140120 30987 3.3245 3.3245 -128.504 -3.3245 0 0 787024. 2723.27 0.29 0.04 0.00851805 0.00757421 120 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.76 vpr 63.18 MiB 0.03 7244 -1 -1 1 0.02 -1 -1 33204 -1 -1 26 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64696 30 32 386 306 1 241 88 17 17 289 -1 unnamed_device 24.7 MiB 2.58 1195 63.2 MiB 0.11 0.00 4.18144 -130.77 -4.18144 4.18144 0.70 0.000220846 0.000186216 0.0160278 0.0132996 36 2990 26 6.89349e+06 366440 648988. 2245.63 1.52 0.0777544 0.0665166 2492 20 1909 2619 193691 42365 4.42478 4.42478 -159.364 -4.42478 0 0 828058. 2865.25 0.37 0.12 0.0279546 0.0213633 166 58 60 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.48 vpr 63.80 MiB 0.02 7376 -1 -1 1 0.01 -1 -1 33776 -1 -1 30 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65332 32 32 470 382 1 316 94 17 17 289 -1 unnamed_device 25.2 MiB 1.13 1561 63.8 MiB 0.15 0.00 3.82421 -130.193 -3.82421 3.82421 0.71 0.000245185 0.000200342 0.0236077 0.0193357 38 3086 28 6.89349e+06 422815 678818. 2348.85 3.81 0.155155 0.132268 2692 19 1742 1799 121381 27114 4.17685 4.17685 -146.635 -4.17685 0 0 902133. 3121.57 0.29 0.04 0.0137952 0.0122843 204 106 0 0 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 5.93 vpr 63.46 MiB 0.04 7280 -1 -1 1 0.01 -1 -1 33696 -1 -1 29 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64984 31 32 427 343 1 278 92 17 17 289 -1 unnamed_device 25.1 MiB 1.71 1298 63.5 MiB 0.14 0.00 4.15934 -136.404 -4.15934 4.15934 0.81 0.000190188 0.000154962 0.0193769 0.0160577 34 3383 49 6.89349e+06 408721 618332. 2139.56 1.67 0.104083 0.0904245 2594 23 2256 2926 205216 48579 4.93775 4.93775 -169.047 -4.93775 0 0 787024. 2723.27 0.25 0.06 0.0142249 0.01257 185 79 31 31 93 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.84 vpr 63.25 MiB 0.06 7280 -1 -1 1 0.02 -1 -1 33788 -1 -1 28 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64768 30 32 407 331 1 261 90 17 17 289 -1 unnamed_device 24.7 MiB 1.94 1439 63.2 MiB 0.27 0.00 3.50859 -115.525 -3.50859 3.50859 0.73 0.000187977 0.000153234 0.0300758 0.0247657 36 3210 25 6.89349e+06 394628 648988. 2245.63 2.21 0.0965599 0.0825809 2666 21 2173 3063 239571 51041 3.6894 3.6894 -139.814 -3.6894 0 0 828058. 2865.25 0.26 0.07 0.019684 0.0181151 175 83 26 26 90 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 6.54 vpr 63.36 MiB 0.03 7192 -1 -1 1 0.01 -1 -1 33416 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64876 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 24.8 MiB 2.17 1398 63.4 MiB 0.14 0.00 4.26774 -148.269 -4.26774 4.26774 0.68 0.000193724 0.000158847 0.0175189 0.0144632 36 3408 26 6.89349e+06 366440 648988. 2245.63 1.69 0.108451 0.0962493 2879 21 2195 3024 224740 48397 4.77325 4.77325 -176.538 -4.77325 0 0 828058. 2865.25 0.25 0.06 0.0145437 0.0130437 177 58 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.01 vpr 63.02 MiB 0.06 7396 -1 -1 1 0.01 -1 -1 33756 -1 -1 30 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64536 29 32 391 320 1 251 91 17 17 289 -1 unnamed_device 24.6 MiB 1.92 1289 63.0 MiB 0.13 0.00 3.58265 -111.125 -3.58265 3.58265 0.88 0.000189112 0.000155514 0.016963 0.0139415 34 3374 28 6.89349e+06 422815 618332. 2139.56 1.31 0.0796645 0.0679741 2582 20 1484 2074 159605 36227 3.50486 3.50486 -127.526 -3.50486 0 0 787024. 2723.27 0.25 0.05 0.0125487 0.0111572 170 81 26 26 85 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.27 vpr 62.60 MiB 0.03 6864 -1 -1 1 0.01 -1 -1 33156 -1 -1 16 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64104 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 0.70 928 62.6 MiB 0.08 0.00 3.037 -112.47 -3.037 3.037 0.70 0.000154484 0.00012555 0.0134569 0.0111684 34 2435 20 6.89349e+06 225501 618332. 2139.56 1.15 0.0589317 0.050292 2007 20 1414 2330 177617 39499 3.33911 3.33911 -138.045 -3.33911 0 0 787024. 2723.27 0.37 0.04 0.00924558 0.00818746 114 -1 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.16 vpr 63.10 MiB 0.02 7288 -1 -1 1 0.02 -1 -1 33328 -1 -1 27 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64616 32 32 408 320 1 259 91 17 17 289 -1 unnamed_device 24.6 MiB 1.56 1372 63.1 MiB 0.13 0.00 4.17757 -144.895 -4.17757 4.17757 0.73 0.000204108 0.000166776 0.0187722 0.0157493 36 3271 25 6.89349e+06 380534 648988. 2245.63 2.09 0.0833964 0.0718981 2719 20 2327 3254 250168 53873 4.24095 4.24095 -161.592 -4.24095 0 0 828058. 2865.25 0.24 0.06 0.0131146 0.011699 174 62 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.45 vpr 63.46 MiB 0.02 7192 -1 -1 1 0.02 -1 -1 33596 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64988 32 32 408 320 1 263 89 17 17 289 -1 unnamed_device 25.0 MiB 2.63 1459 63.5 MiB 0.15 0.00 4.08314 -140.974 -4.08314 4.08314 0.81 0.000192453 0.000156753 0.0182444 0.0151442 34 3920 41 6.89349e+06 352346 618332. 2139.56 2.06 0.098033 0.0847396 3136 23 2721 3838 319305 69662 4.71758 4.71758 -176.54 -4.71758 0 0 787024. 2723.27 0.24 0.07 0.0141983 0.0125891 176 62 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.27 vpr 63.07 MiB 0.02 6992 -1 -1 1 0.01 -1 -1 33404 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64580 32 32 316 268 1 204 83 17 17 289 -1 unnamed_device 24.6 MiB 1.88 1128 63.1 MiB 0.09 0.00 2.7431 -98.5966 -2.7431 2.7431 0.68 0.000161308 0.000131967 0.0136274 0.011149 34 2392 22 6.89349e+06 267783 618332. 2139.56 1.14 0.0610989 0.0519755 2055 21 1331 1593 120583 28079 2.79796 2.79796 -113.39 -2.79796 0 0 787024. 2723.27 0.25 0.04 0.010403 0.00919769 128 47 32 32 54 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 3.91 vpr 62.49 MiB 0.05 7140 -1 -1 1 0.02 -1 -1 33240 -1 -1 17 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63988 31 32 277 222 1 164 80 17 17 289 -1 unnamed_device 24.1 MiB 0.70 668 62.5 MiB 0.08 0.00 3.07 -103.709 -3.07 3.07 0.70 0.000162395 0.000132031 0.0142177 0.0106521 32 2217 29 6.89349e+06 239595 586450. 2029.24 0.86 0.0660439 0.0542687 1799 21 1460 2308 180797 42664 3.24681 3.24681 -128.583 -3.24681 0 0 744469. 2576.02 0.24 0.04 0.00940672 0.00832347 112 -1 93 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 5.34 vpr 63.05 MiB 0.02 7196 -1 -1 1 0.01 -1 -1 33216 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64560 32 32 382 304 1 240 89 17 17 289 -1 unnamed_device 24.7 MiB 1.57 1200 63.0 MiB 0.09 0.00 3.66728 -119.991 -3.66728 3.66728 0.70 0.00017844 0.000144447 0.0121983 0.010077 34 2749 28 6.89349e+06 352346 618332. 2139.56 1.35 0.0985908 0.079763 2437 19 1623 2044 141377 33303 3.68759 3.68759 -137.071 -3.68759 0 0 787024. 2723.27 0.27 0.04 0.0110322 0.00978636 158 56 60 32 58 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.91 vpr 63.08 MiB 0.03 7120 -1 -1 1 0.02 -1 -1 33496 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64596 32 32 407 331 1 263 90 17 17 289 -1 unnamed_device 24.6 MiB 2.26 1355 63.1 MiB 0.12 0.00 4.22974 -135.28 -4.22974 4.22974 0.73 0.000181651 0.000147017 0.0179229 0.0148643 36 3553 50 6.89349e+06 366440 648988. 2245.63 2.09 0.104496 0.0909068 2568 26 2273 2748 206675 46205 4.36915 4.36915 -153.769 -4.36915 0 0 828058. 2865.25 0.30 0.06 0.0151055 0.0133433 172 81 28 28 88 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.61 vpr 63.16 MiB 0.03 7364 -1 -1 1 0.01 -1 -1 33612 -1 -1 41 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64676 32 32 400 286 1 232 105 17 17 289 -1 unnamed_device 24.6 MiB 0.74 1238 63.2 MiB 0.10 0.00 3.93858 -134.9 -3.93858 3.93858 0.82 0.000198396 0.000162364 0.0109356 0.00902793 28 3748 43 6.89349e+06 577847 531479. 1839.03 2.01 0.0633779 0.0536578 2826 23 2461 4026 302960 73435 4.61259 4.61259 -172.929 -4.61259 0 0 648988. 2245.63 0.22 0.07 0.0149864 0.01328 183 -1 156 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.66 vpr 63.19 MiB 0.04 7124 -1 -1 1 0.02 -1 -1 33396 -1 -1 28 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64708 30 32 374 298 1 235 90 17 17 289 -1 unnamed_device 24.8 MiB 1.55 1122 63.2 MiB 0.09 0.00 3.1264 -103.95 -3.1264 3.1264 0.73 0.000266235 0.000229332 0.0117062 0.00976713 34 2646 37 6.89349e+06 394628 618332. 2139.56 1.58 0.0977777 0.0869143 2211 19 1549 2216 148704 35215 3.24045 3.24045 -122.771 -3.24045 0 0 787024. 2723.27 0.24 0.04 0.011742 0.0104516 162 47 60 30 56 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 4.98 vpr 62.63 MiB 0.03 7148 -1 -1 1 0.02 -1 -1 33428 -1 -1 22 27 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64132 27 32 275 232 1 168 81 17 17 289 -1 unnamed_device 24.2 MiB 1.38 795 62.6 MiB 0.08 0.00 3.34919 -99.8719 -3.34919 3.34919 0.69 0.000139534 0.000112909 0.0120047 0.00983727 34 1954 23 6.89349e+06 310065 618332. 2139.56 1.17 0.0578409 0.0491832 1669 22 1366 1973 150717 34688 3.556 3.556 -120.862 -3.556 0 0 787024. 2723.27 0.25 0.04 0.00993954 0.00880836 114 26 54 27 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.93 vpr 63.13 MiB 0.04 7508 -1 -1 1 0.01 -1 -1 33596 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64644 32 32 494 379 1 323 96 17 17 289 -1 unnamed_device 25.2 MiB 1.87 1738 63.1 MiB 0.12 0.00 4.08424 -137.606 -4.08424 4.08424 0.69 0.000249342 0.000193608 0.0157574 0.013118 36 4560 36 6.89349e+06 451003 648988. 2245.63 2.42 0.104722 0.0897897 3558 22 2768 3861 304633 66053 4.34715 4.34715 -162.818 -4.34715 0 0 828058. 2865.25 0.30 0.08 0.018384 0.0164393 218 85 62 31 95 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 9.70 vpr 63.52 MiB 0.04 7456 -1 -1 1 0.02 -1 -1 33928 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65048 31 32 457 373 1 306 94 17 17 289 -1 unnamed_device 25.0 MiB 2.25 1423 63.5 MiB 0.10 0.00 4.14544 -136.152 -4.14544 4.14544 0.74 0.000251332 0.000211117 0.0139359 0.0115961 38 3011 21 6.89349e+06 436909 678818. 2348.85 4.82 0.140479 0.121975 2516 18 1734 2011 137100 31694 4.41635 4.41635 -155.853 -4.41635 0 0 902133. 3121.57 0.27 0.04 0.0125606 0.0112254 201 105 0 0 124 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 5.91 vpr 62.99 MiB 0.04 7092 -1 -1 1 0.01 -1 -1 33316 -1 -1 22 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64500 32 32 356 305 1 245 86 17 17 289 -1 unnamed_device 24.4 MiB 1.91 1236 63.0 MiB 0.09 0.00 3.57479 -115.953 -3.57479 3.57479 0.84 0.000161411 0.000130493 0.0120638 0.00995938 34 2966 26 6.89349e+06 310065 618332. 2139.56 1.35 0.0644153 0.0549623 2424 19 1648 1915 140946 33239 3.5861 3.5861 -138.068 -3.5861 0 0 787024. 2723.27 0.24 0.04 0.0110996 0.0098807 150 86 0 0 89 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 6.18 vpr 63.15 MiB 0.02 7100 -1 -1 1 0.01 -1 -1 33128 -1 -1 23 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64668 32 32 365 283 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 2.33 1193 63.2 MiB 0.19 0.00 3.66075 -125.529 -3.66075 3.66075 0.74 0.000186193 0.000152363 0.0288471 0.0258747 34 3028 24 6.89349e+06 324158 618332. 2139.56 1.34 0.0834543 0.0730198 2410 19 1612 2307 178329 39688 3.81256 3.81256 -146.38 -3.81256 0 0 787024. 2723.27 0.24 0.04 0.0110175 0.00978419 152 31 90 30 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.47 vpr 63.38 MiB 0.02 7436 -1 -1 1 0.02 -1 -1 33728 -1 -1 30 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64900 31 32 445 338 1 280 93 17 17 289 -1 unnamed_device 25.0 MiB 1.62 1350 63.4 MiB 0.09 0.00 3.66995 -126.129 -3.66995 3.66995 0.72 0.000205447 0.00016797 0.0113164 0.00939407 34 3314 31 6.89349e+06 422815 618332. 2139.56 1.39 0.0814882 0.0699776 2659 21 2352 3313 223610 51540 4.35316 4.35316 -149.935 -4.35316 0 0 787024. 2723.27 0.25 0.06 0.0161611 0.0144047 193 50 87 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.63 vpr 62.95 MiB 0.02 7384 -1 -1 1 0.01 -1 -1 33620 -1 -1 28 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64456 30 32 376 300 1 235 90 17 17 289 -1 unnamed_device 24.6 MiB 2.46 1283 62.9 MiB 0.11 0.00 3.37876 -112.68 -3.37876 3.37876 0.67 0.000183111 0.000150689 0.0150503 0.0123381 34 2987 20 6.89349e+06 394628 618332. 2139.56 1.29 0.0696351 0.059081 2498 18 1604 2455 160772 37220 3.8989 3.8989 -141.012 -3.8989 0 0 787024. 2723.27 0.28 0.04 0.0109059 0.00971173 162 50 58 30 58 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.40 vpr 63.38 MiB 0.02 7140 -1 -1 1 0.01 -1 -1 33288 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64900 32 32 408 320 1 260 92 17 17 289 -1 unnamed_device 24.9 MiB 1.37 1230 63.4 MiB 0.23 0.00 4.01094 -135.027 -4.01094 4.01094 0.81 0.000190156 0.000154874 0.0305641 0.0272254 36 3438 26 6.89349e+06 394628 648988. 2245.63 3.05 0.112984 0.0946251 2730 18 1965 2651 223403 47923 4.27385 4.27385 -159.428 -4.27385 0 0 828058. 2865.25 0.42 0.14 0.0349973 0.0316591 173 61 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.20 vpr 63.14 MiB 0.05 7288 -1 -1 1 0.01 -1 -1 33432 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64660 32 32 406 319 1 260 92 17 17 289 -1 unnamed_device 24.7 MiB 1.59 1442 63.1 MiB 0.13 0.00 3.12515 -114.166 -3.12515 3.12515 0.89 0.000195459 0.000159177 0.0186439 0.0153563 36 3070 21 6.89349e+06 394628 648988. 2245.63 1.92 0.106674 0.0949853 2603 18 1829 2523 181784 39365 3.01971 3.01971 -128.517 -3.01971 0 0 828058. 2865.25 0.24 0.05 0.011738 0.0104663 175 61 63 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.09 vpr 62.62 MiB 0.03 7228 -1 -1 1 0.01 -1 -1 33096 -1 -1 21 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64120 29 32 291 242 1 178 82 17 17 289 -1 unnamed_device 24.1 MiB 1.03 872 62.6 MiB 0.08 0.00 3.2217 -105.668 -3.2217 3.2217 0.72 0.000147379 0.000119187 0.0121777 0.0100403 34 2110 22 6.89349e+06 295971 618332. 2139.56 1.35 0.0690768 0.0605024 1857 20 1471 1939 156317 35723 3.43695 3.43695 -124.633 -3.43695 0 0 787024. 2723.27 0.57 0.04 0.00950698 0.00843216 117 28 58 29 29 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.19 vpr 63.17 MiB 0.03 6948 -1 -1 1 0.01 -1 -1 33096 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64684 32 32 335 291 1 223 84 17 17 289 -1 unnamed_device 24.7 MiB 1.32 1114 63.2 MiB 0.07 0.00 3.48069 -105.985 -3.48069 3.48069 0.70 0.000159629 0.000128956 0.00977899 0.00804721 34 2879 25 6.89349e+06 281877 618332. 2139.56 1.53 0.0639428 0.0531453 2213 23 1745 2097 148136 34954 3.6784 3.6784 -129.705 -3.6784 0 0 787024. 2723.27 0.26 0.04 0.0112044 0.00989427 136 79 0 0 82 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 5.22 vpr 63.04 MiB 0.03 7312 -1 -1 1 0.02 -1 -1 33344 -1 -1 24 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64556 31 32 367 283 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.16 1204 63.0 MiB 0.12 0.00 3.67795 -126.52 -3.67795 3.67795 0.72 0.000188071 0.000154702 0.0165417 0.0137942 34 2882 37 6.89349e+06 338252 618332. 2139.56 1.38 0.0865079 0.0750051 2345 23 1981 2851 188375 43659 3.9227 3.9227 -149.23 -3.9227 0 0 787024. 2723.27 0.42 0.08 0.0158013 0.0143399 153 29 93 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.07 vpr 62.79 MiB 0.04 7128 -1 -1 1 0.01 -1 -1 33620 -1 -1 21 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64300 29 32 301 258 1 193 82 17 17 289 -1 unnamed_device 24.2 MiB 1.24 893 62.8 MiB 0.07 0.00 2.7321 -85.7242 -2.7321 2.7321 0.71 0.00017383 0.000143697 0.0086137 0.00717696 34 1977 22 6.89349e+06 295971 618332. 2139.56 1.19 0.0674146 0.0592836 1648 18 930 1098 74802 19421 2.7675 2.7675 -100.864 -2.7675 0 0 787024. 2723.27 0.33 0.11 0.02486 0.023867 123 48 29 29 52 26 - fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.57 vpr 62.82 MiB 0.03 6972 -1 -1 1 0.01 -1 -1 33148 -1 -1 18 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64324 32 32 315 257 1 194 82 17 17 289 -1 unnamed_device 24.2 MiB 1.77 1074 62.8 MiB 0.08 0.00 3.0872 -111.209 -3.0872 3.0872 0.71 0.000161977 0.000132397 0.013057 0.0107273 34 2636 21 6.89349e+06 253689 618332. 2139.56 1.27 0.0622465 0.0529762 2203 21 1620 2279 181133 39275 3.1071 3.1071 -131.795 -3.1071 0 0 787024. 2723.27 0.26 0.05 0.0106235 0.00942718 127 31 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 5.39 vpr 63.38 MiB 0.02 7428 -1 -1 1 0.02 -1 -1 33264 -1 -1 26 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64896 31 32 389 309 1 242 89 17 17 289 -1 unnamed_device 24.9 MiB 1.80 1203 63.4 MiB 0.10 0.00 3.37794 -118.573 -3.37794 3.37794 0.73 0.000206547 0.000170794 0.0149162 0.0123974 34 3167 25 6.89349e+06 366440 618332. 2139.56 1.28 0.0769671 0.066094 2574 21 2199 2991 248162 55074 3.8037 3.8037 -145.47 -3.8037 0 0 787024. 2723.27 0.25 0.06 0.0137786 0.0122096 164 60 58 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.48 vpr 63.16 MiB 0.02 7076 -1 -1 1 0.01 -1 -1 33340 -1 -1 21 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64676 31 32 310 264 1 196 84 17 17 289 -1 unnamed_device 24.8 MiB 1.46 937 63.2 MiB 0.09 0.00 2.66772 -91.5309 -2.66772 2.66772 0.80 0.000150226 0.000121628 0.0138739 0.0113105 34 2371 22 6.89349e+06 295971 618332. 2139.56 1.41 0.0825274 0.0732105 1986 20 1251 1624 131520 29579 2.85926 2.85926 -106.487 -2.85926 0 0 787024. 2723.27 0.24 0.04 0.009781 0.00865271 125 49 31 31 53 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 5.24 vpr 63.11 MiB 0.02 7140 -1 -1 1 0.01 -1 -1 33336 -1 -1 25 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64620 32 32 384 308 1 242 89 17 17 289 -1 unnamed_device 24.8 MiB 1.81 1172 63.1 MiB 0.14 0.00 3.43529 -114.922 -3.43529 3.43529 0.78 0.000294696 0.000258192 0.0191878 0.0149499 30 2912 23 6.89349e+06 352346 556674. 1926.21 0.88 0.0579449 0.0488054 2332 22 1545 2283 156491 35957 3.7034 3.7034 -135.29 -3.7034 0 0 706193. 2443.58 0.26 0.05 0.0127368 0.0112919 161 56 52 26 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.48 vpr 63.61 MiB 0.04 7408 -1 -1 1 0.01 -1 -1 33688 -1 -1 31 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65140 31 32 424 341 1 277 94 17 17 289 -1 unnamed_device 25.2 MiB 2.10 1380 63.6 MiB 0.10 0.00 4.06108 -131.943 -4.06108 4.06108 0.73 0.00025161 0.000210448 0.0128889 0.0108049 36 3300 25 6.89349e+06 436909 648988. 2245.63 1.76 0.0803799 0.0691514 2885 22 2243 3255 242151 54684 4.47644 4.47644 -157.421 -4.47644 0 0 828058. 2865.25 0.26 0.07 0.0161701 0.0144439 188 88 31 31 92 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 9.44 vpr 63.07 MiB 0.06 7124 -1 -1 1 0.01 -1 -1 33456 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64588 32 32 334 280 1 216 84 17 17 289 -1 unnamed_device 24.5 MiB 2.45 1126 63.1 MiB 0.04 0.00 3.2145 -106.535 -3.2145 3.2145 0.87 0.000156922 0.000126711 0.00601709 0.0050052 34 3073 32 6.89349e+06 281877 618332. 2139.56 4.34 0.0976181 0.0837899 2404 20 1495 2053 179907 39841 3.10551 3.10551 -126.482 -3.10551 0 0 787024. 2723.27 0.23 0.05 0.0105702 0.00937324 136 54 32 32 60 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.30 vpr 62.84 MiB 0.05 7004 -1 -1 1 0.02 -1 -1 33072 -1 -1 20 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64348 32 32 340 284 1 218 84 17 17 289 -1 unnamed_device 24.3 MiB 1.32 1000 62.8 MiB 0.10 0.00 3.0652 -104.205 -3.0652 3.0652 0.72 0.000156315 0.00012615 0.0142851 0.0117386 34 2635 39 6.89349e+06 281877 618332. 2139.56 1.44 0.0710053 0.0605261 2066 19 1507 1868 130367 30415 3.12161 3.12161 -123.351 -3.12161 0 0 787024. 2723.27 0.25 0.04 0.0132104 0.0114421 139 60 32 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.87 vpr 63.41 MiB 0.04 7376 -1 -1 1 0.01 -1 -1 33796 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64932 32 32 408 320 1 264 92 17 17 289 -1 unnamed_device 24.8 MiB 1.52 1026 63.4 MiB 0.12 0.00 3.73115 -127.358 -3.73115 3.73115 0.69 0.000251854 0.000213001 0.0174738 0.0143677 36 3060 27 6.89349e+06 394628 648988. 2245.63 1.77 0.0795838 0.0676331 2279 22 2042 2501 174477 42460 4.12736 4.12736 -150.315 -4.12736 0 0 828058. 2865.25 0.26 0.05 0.0138541 0.0123035 178 49 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 4.72 vpr 63.09 MiB 0.05 7252 -1 -1 1 0.01 -1 -1 33380 -1 -1 27 29 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64600 29 32 371 297 1 231 88 17 17 289 -1 unnamed_device 24.3 MiB 1.54 1139 63.1 MiB 0.11 0.00 2.96685 -96.2453 -2.96685 2.96685 0.77 0.000180565 0.000147239 0.0170259 0.014098 28 2639 31 6.89349e+06 380534 531479. 1839.03 0.73 0.0548505 0.0467681 2357 20 1914 2518 193710 44724 3.05926 3.05926 -117.288 -3.05926 0 0 648988. 2245.63 0.21 0.05 0.0118596 0.0104534 158 54 56 29 58 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 6.27 vpr 63.50 MiB 0.02 7260 -1 -1 1 0.02 -1 -1 33612 -1 -1 29 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65028 32 32 470 382 1 315 93 17 17 289 -1 unnamed_device 24.9 MiB 1.30 1544 63.5 MiB 0.19 0.00 4.07998 -142.746 -4.07998 4.07998 1.06 0.0002204 0.00016922 0.0271226 0.0230173 34 3859 40 6.89349e+06 408721 618332. 2139.56 1.93 0.117147 0.0969585 3040 22 2851 3248 229536 51926 4.60885 4.60885 -169.839 -4.60885 0 0 787024. 2723.27 0.24 0.06 0.0156128 0.0137773 203 117 0 0 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.74 vpr 62.68 MiB 0.02 7116 -1 -1 1 0.01 -1 -1 33428 -1 -1 16 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64180 31 32 261 214 1 155 79 17 17 289 -1 unnamed_device 24.1 MiB 0.57 686 62.7 MiB 0.05 0.00 2.34777 -82.4749 -2.34777 2.34777 0.76 0.000179544 0.000149085 0.008558 0.00717868 32 2191 31 6.89349e+06 225501 586450. 2029.24 0.77 0.038849 0.0333121 1728 23 1237 1912 144880 35539 2.86191 2.86191 -111.807 -2.86191 0 0 744469. 2576.02 0.32 0.04 0.0106043 0.0093719 104 -1 85 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.40 vpr 63.12 MiB 0.02 7360 -1 -1 1 0.02 -1 -1 33164 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64632 32 32 419 339 1 274 92 17 17 289 -1 unnamed_device 24.6 MiB 1.92 1333 63.1 MiB 0.11 0.00 4.50338 -147.184 -4.50338 4.50338 0.71 0.000210588 0.000172391 0.0146154 0.012283 34 3691 37 6.89349e+06 394628 618332. 2139.56 1.73 0.0960886 0.0789979 2777 20 2163 2829 208808 47798 4.95094 4.95094 -174.925 -4.95094 0 0 787024. 2723.27 0.27 0.06 0.0141562 0.0126108 180 89 28 28 92 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.86 vpr 63.14 MiB 0.03 7040 -1 -1 1 0.01 -1 -1 33244 -1 -1 24 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64660 32 32 377 319 1 259 88 17 17 289 -1 unnamed_device 24.7 MiB 2.04 1263 63.1 MiB 0.08 0.00 4.06408 -136.356 -4.06408 4.06408 1.10 0.000202166 0.000168627 0.0110956 0.0091495 40 2704 22 6.89349e+06 338252 706193. 2443.58 3.94 0.139188 0.122293 2578 22 2358 3030 242273 53762 4.19914 4.19914 -152.096 -4.19914 0 0 926341. 3205.33 0.27 0.06 0.0130514 0.0115978 161 93 0 0 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 5.85 vpr 63.20 MiB 0.07 7164 -1 -1 1 0.01 -1 -1 33456 -1 -1 26 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64716 32 32 402 317 1 253 90 17 17 289 -1 unnamed_device 24.7 MiB 1.64 1402 63.2 MiB 0.12 0.00 3.00785 -110.738 -3.00785 3.00785 0.70 0.000189586 0.000153591 0.0159784 0.0131557 34 3341 50 6.89349e+06 366440 618332. 2139.56 1.73 0.094221 0.0811169 2721 21 1969 2720 221312 48210 3.22821 3.22821 -130.3 -3.22821 0 0 787024. 2723.27 0.25 0.06 0.0146706 0.0131242 172 59 61 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 6.90 vpr 63.23 MiB 0.07 7596 -1 -1 1 0.01 -1 -1 33464 -1 -1 32 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64744 32 32 501 383 1 322 96 17 17 289 -1 unnamed_device 25.4 MiB 1.53 1551 63.2 MiB 0.16 0.00 4.28964 -145.443 -4.28964 4.28964 0.77 0.000224745 0.000183069 0.0217795 0.0180991 34 4275 36 6.89349e+06 451003 618332. 2139.56 2.50 0.105011 0.0900941 3039 20 2784 3347 245628 57540 4.80484 4.80484 -174.233 -4.80484 0 0 787024. 2723.27 0.36 0.06 0.0160919 0.014335 223 81 64 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.45 vpr 62.43 MiB 0.02 6952 -1 -1 1 0.01 -1 -1 33072 -1 -1 16 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63928 30 32 249 232 1 160 78 17 17 289 -1 unnamed_device 23.9 MiB 1.13 797 62.4 MiB 0.05 0.00 2.44266 -77.2005 -2.44266 2.44266 0.77 0.000127955 0.000101918 0.00865465 0.00703881 34 1822 17 6.89349e+06 225501 618332. 2139.56 1.00 0.040879 0.0342039 1536 13 649 666 51425 11985 2.31406 2.31406 -89.0607 -2.31406 0 0 787024. 2723.27 0.25 0.02 0.00579167 0.0051905 93 51 0 0 53 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 4.68 vpr 62.70 MiB 0.02 7096 -1 -1 1 0.00 -1 -1 33088 -1 -1 21 30 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64200 30 32 299 247 1 181 83 17 17 289 -1 unnamed_device 24.1 MiB 1.09 984 62.7 MiB 0.07 0.00 3.34479 -113.866 -3.34479 3.34479 0.72 0.000149444 0.000120774 0.0111314 0.00914775 34 2120 21 6.89349e+06 295971 618332. 2139.56 1.27 0.0763366 0.0676046 1827 21 1404 2089 143014 34529 3.54675 3.54675 -135.765 -3.54675 0 0 787024. 2723.27 0.25 0.04 0.010393 0.00919345 124 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 5.88 vpr 62.98 MiB 0.02 7124 -1 -1 1 0.01 -1 -1 32984 -1 -1 19 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64496 32 32 315 257 1 199 83 17 17 289 -1 unnamed_device 24.6 MiB 1.94 1032 63.0 MiB 0.08 0.00 3.42319 -122.158 -3.42319 3.42319 0.71 0.00016211 0.000131427 0.00879399 0.00727868 34 2994 26 6.89349e+06 267783 618332. 2139.56 1.64 0.0609684 0.0523208 2480 22 2139 3671 280047 61934 3.83955 3.83955 -150.915 -3.83955 0 0 787024. 2723.27 0.25 0.06 0.0114528 0.010166 129 31 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 4.41 vpr 62.89 MiB 0.02 7164 -1 -1 1 0.01 -1 -1 33528 -1 -1 24 25 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64396 25 32 259 222 1 162 81 17 17 289 -1 unnamed_device 24.4 MiB 1.19 797 62.9 MiB 0.07 0.00 3.0352 -85.9002 -3.0352 3.0352 0.71 0.000126543 0.000100979 0.0105736 0.00860118 34 1801 22 6.89349e+06 338252 618332. 2139.56 1.05 0.0508777 0.0429545 1513 18 961 1289 80980 19481 2.93021 2.93021 -98.4308 -2.93021 0 0 787024. 2723.27 0.25 0.03 0.00774791 0.00688633 107 19 50 25 25 25 - fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 6.59 vpr 63.14 MiB 0.02 7140 -1 -1 1 0.01 -1 -1 33456 -1 -1 28 32 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64656 32 32 433 347 1 288 92 17 17 289 -1 unnamed_device 24.7 MiB 2.43 1469 63.1 MiB 0.16 0.00 3.87835 -135.014 -3.87835 3.87835 0.78 0.000218676 0.000179522 0.0186884 0.0153642 36 3581 36 6.89349e+06 394628 648988. 2245.63 1.52 0.0856624 0.0733517 2952 23 2666 3884 245726 56945 4.21356 4.21356 -157.254 -4.21356 0 0 828058. 2865.25 0.28 0.06 0.0147915 0.0131139 190 84 32 32 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.12 vpr 63.10 MiB 0.02 7472 -1 -1 1 0.01 -1 -1 33680 -1 -1 28 31 0 0 success v8.0.0-6991-g9a34a83d8-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T19:57:36 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 64612 31 32 423 341 1 274 91 17 17 289 -1 unnamed_device 24.8 MiB 1.81 1359 63.1 MiB 0.15 0.00 3.79328 -127.161 -3.79328 3.79328 0.75 0.000202625 0.000165538 0.0200195 0.0168293 34 3740 26 6.89349e+06 394628 618332. 2139.56 1.71 0.121466 0.109049 2913 22 2423 3416 261415 60252 4.10659 4.10659 -155.645 -4.10659 0 0 787024. 2723.27 0.33 0.12 0.0377483 0.0249133 182 88 29 29 93 31 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 5.64 vpr 61.27 MiB 0.03 6756 -1 -1 14 0.37 -1 -1 32380 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62740 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 22.8 MiB 0.35 1364 61.3 MiB 0.12 0.00 6.5171 -132.639 -6.5171 6.5171 1.04 0.000507381 0.000404091 0.0242717 0.0200463 30 3212 19 6.55708e+06 313430 526063. 1820.29 1.73 0.126841 0.112026 21886 126133 -1 2729 19 1306 4119 195939 46732 0 0 195939 46732 4119 1959 0 0 13148 10614 0 0 19362 14521 0 0 4119 2420 0 0 76899 8596 0 0 78292 8622 0 0 4119 0 0 2813 4378 4647 32169 0 0 7.05196 7.05196 -157.735 -7.05196 0 0 666494. 2306.21 0.18 0.06 0.09 -1 -1 0.18 0.0161692 0.0145941 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 8.52 vpr 61.25 MiB 0.03 6648 -1 -1 14 0.37 -1 -1 32312 -1 -1 30 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62720 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 22.7 MiB 0.57 1296 61.2 MiB 0.16 0.00 6.98624 -139.787 -6.98624 6.98624 1.04 0.000458516 0.000374362 0.0324247 0.0268049 30 3298 17 6.55708e+06 361650 526063. 1820.29 4.43 0.16506 0.143056 21886 126133 -1 2771 18 1358 3832 199056 46387 0 0 199056 46387 3832 1860 0 0 12561 10170 0 0 17992 13688 0 0 3832 2272 0 0 80979 9215 0 0 79860 9182 0 0 3832 0 0 2474 4346 4124 29050 0 0 7.10644 7.10644 -155.92 -7.10644 0 0 666494. 2306.21 0.18 0.06 0.08 -1 -1 0.18 0.0158641 0.01434 189 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 8.82 vpr 61.35 MiB 0.03 6684 -1 -1 11 0.28 -1 -1 32312 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62824 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 22.8 MiB 0.48 1279 61.4 MiB 0.09 0.00 5.48872 -115.921 -5.48872 5.48872 1.01 0.000253247 0.000203064 0.0168817 0.0137096 36 3802 38 6.55708e+06 301375 612192. 2118.31 4.92 0.168895 0.148677 22750 144809 -1 2980 16 1386 4414 250377 57911 0 0 250377 57911 4414 2166 0 0 14701 12223 0 0 22669 16921 0 0 4414 2582 0 0 99850 12480 0 0 104329 11539 0 0 4414 0 0 3028 6105 6321 42058 0 0 5.82178 5.82178 -137.924 -5.82178 0 0 782063. 2706.10 0.20 0.06 0.10 -1 -1 0.20 0.0149321 0.0136194 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 5.86 vpr 61.31 MiB 0.03 6688 -1 -1 12 0.40 -1 -1 32396 -1 -1 29 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62784 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 22.8 MiB 0.39 1285 61.3 MiB 0.10 0.00 6.34804 -118.848 -6.34804 6.34804 0.91 0.00038597 0.000316601 0.0197672 0.0163939 30 3590 34 6.55708e+06 349595 526063. 1820.29 2.22 0.13719 0.121558 21886 126133 -1 2869 23 1322 4070 264835 84769 0 0 264835 84769 4070 1893 0 0 13336 11144 0 0 19605 14631 0 0 4070 2391 0 0 113191 27242 0 0 110563 27468 0 0 4070 0 0 2748 4544 4301 31235 0 0 6.82884 6.82884 -139.425 -6.82884 0 0 666494. 2306.21 0.18 0.08 0.08 -1 -1 0.18 0.0180229 0.016216 185 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.53 vpr 61.66 MiB 0.02 6604 -1 -1 13 0.43 -1 -1 32436 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63144 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 23.1 MiB 0.59 1585 61.7 MiB 0.13 0.00 6.46824 -138.353 -6.46824 6.46824 1.03 0.000567176 0.000467679 0.0240002 0.0198107 30 4095 23 6.55708e+06 385760 526063. 1820.29 2.22 0.168066 0.150119 21886 126133 -1 3371 17 1612 4598 228505 53933 0 0 228505 53933 4598 2158 0 0 14755 12033 0 0 20841 15784 0 0 4598 2629 0 0 94100 10310 0 0 89613 11019 0 0 4598 0 0 2986 4486 4458 32268 0 0 6.7183 6.7183 -153.674 -6.7183 0 0 666494. 2306.21 0.18 0.06 0.13 -1 -1 0.18 0.0179246 0.016254 223 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 7.60 vpr 61.22 MiB 0.02 6584 -1 -1 12 0.32 -1 -1 32340 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62688 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 22.6 MiB 0.56 1486 61.2 MiB 0.09 0.00 6.19064 -124.909 -6.19064 6.19064 0.71 0.000275573 0.000217849 0.0156319 0.0128082 28 4706 32 6.55708e+06 409870 500653. 1732.36 3.94 0.0893673 0.078004 21310 115450 -1 3576 17 1613 4756 308631 70116 0 0 308631 70116 4756 2592 0 0 16444 13431 0 0 25565 19166 0 0 4756 3031 0 0 127993 16108 0 0 129117 15788 0 0 4756 0 0 3143 6366 6901 41598 0 0 6.50638 6.50638 -150.568 -6.50638 0 0 612192. 2118.31 0.21 0.08 0.08 -1 -1 0.21 0.0215691 0.0196658 209 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 12.13 vpr 60.85 MiB 0.01 6512 -1 -1 12 0.23 -1 -1 31804 -1 -1 27 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62308 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 22.3 MiB 0.32 1093 60.8 MiB 0.09 0.00 5.77658 -104.791 -5.77658 5.77658 0.89 0.000291668 0.000240441 0.0179136 0.0150108 26 3278 33 6.55708e+06 325485 477104. 1650.88 8.81 0.12433 0.107806 21022 109990 -1 2709 19 1363 3855 363810 101878 0 0 363810 101878 3855 2254 0 0 12760 10348 0 0 21175 14682 0 0 3855 2648 0 0 164979 36723 0 0 157186 35223 0 0 3855 0 0 2492 4438 5028 27763 0 0 6.34038 6.34038 -127.38 -6.34038 0 0 585099. 2024.56 0.16 0.08 0.07 -1 -1 0.16 0.0123404 0.0110499 136 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 7.89 vpr 61.24 MiB 0.02 6488 -1 -1 11 0.17 -1 -1 32368 -1 -1 28 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62712 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 22.7 MiB 0.37 1254 61.2 MiB 0.14 0.00 5.18418 -108.446 -5.18418 5.18418 1.07 0.000429816 0.000347845 0.0281579 0.0233461 36 3092 18 6.55708e+06 337540 612192. 2118.31 4.01 0.196277 0.171611 22750 144809 -1 2656 16 1224 3859 218845 51040 0 0 218845 51040 3859 1712 0 0 13241 10838 0 0 20614 15459 0 0 3859 2151 0 0 89989 10400 0 0 87283 10480 0 0 3859 0 0 2635 5222 5831 37197 0 0 5.21372 5.21372 -124.09 -5.21372 0 0 782063. 2706.10 0.22 0.06 0.12 -1 -1 0.22 0.0136664 0.0124163 175 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 10.27 vpr 60.77 MiB 0.02 6392 -1 -1 12 0.22 -1 -1 32104 -1 -1 25 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62224 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 22.3 MiB 0.46 1197 60.8 MiB 0.11 0.00 5.61718 -124.3 -5.61718 5.61718 1.01 0.000386873 0.000311598 0.0204504 0.0168275 26 3675 46 6.55708e+06 301375 477104. 1650.88 6.35 0.170175 0.148743 21022 109990 -1 2730 59 1713 5294 981550 512133 0 0 981550 512133 5294 3474 0 0 18194 15512 0 0 35516 24123 0 0 5294 3782 0 0 447704 232315 0 0 469548 232927 0 0 5294 0 0 3581 7696 7350 42977 0 0 6.33838 6.33838 -148.781 -6.33838 0 0 585099. 2024.56 0.16 0.27 0.07 -1 -1 0.16 0.0285643 0.0250017 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 7.76 vpr 60.79 MiB 0.02 6400 -1 -1 13 0.25 -1 -1 32284 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62248 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 22.4 MiB 0.56 1231 60.8 MiB 0.16 0.00 6.22784 -137.083 -6.22784 6.22784 0.93 0.000416163 0.000336897 0.0306526 0.0252059 32 3322 29 6.55708e+06 301375 554710. 1919.41 3.67 0.197598 0.171402 22174 131602 -1 2874 18 1255 3401 224069 52442 0 0 224069 52442 3401 2024 0 0 12371 10339 0 0 20827 15613 0 0 3401 2362 0 0 91411 11118 0 0 92658 10986 0 0 3401 0 0 2146 3447 3503 23089 0 0 6.29658 6.29658 -153.823 -6.29658 0 0 701300. 2426.64 0.29 0.10 0.15 -1 -1 0.29 0.0270477 0.0245862 162 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.13 vpr 60.59 MiB 0.02 6456 -1 -1 12 0.22 -1 -1 32312 -1 -1 22 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62048 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 22.1 MiB 0.44 1079 60.6 MiB 0.12 0.00 5.98944 -123.803 -5.98944 5.98944 0.95 0.00036097 0.000296045 0.0238531 0.0196087 28 2782 26 6.55708e+06 265210 500653. 1732.36 2.21 0.106514 0.0933362 21310 115450 -1 2385 20 1016 2587 226097 76701 0 0 226097 76701 2587 1515 0 0 9061 7340 0 0 14521 10935 0 0 2587 1752 0 0 98288 28179 0 0 99053 26980 0 0 2587 0 0 1571 2273 2628 16619 0 0 6.22984 6.22984 -142.14 -6.22984 0 0 612192. 2118.31 0.23 0.10 0.11 -1 -1 0.23 0.0214187 0.0193702 132 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 13.47 vpr 60.68 MiB 0.02 6604 -1 -1 12 0.18 -1 -1 32244 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62132 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 22.2 MiB 0.26 1093 60.7 MiB 0.14 0.00 5.51886 -121.204 -5.51886 5.51886 1.06 0.000380187 0.000308635 0.0282152 0.0232198 28 3284 29 6.55708e+06 253155 500653. 1732.36 10.05 0.154369 0.134996 21310 115450 -1 2688 19 1135 3215 206532 47477 0 0 206532 47477 3215 1839 0 0 11184 9116 0 0 17393 12877 0 0 3215 2129 0 0 84898 10894 0 0 86627 10622 0 0 3215 0 0 2080 3654 3816 23731 0 0 5.66038 5.66038 -139.859 -5.66038 0 0 612192. 2118.31 0.17 0.05 0.08 -1 -1 0.17 0.0123219 0.011093 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 6.23 vpr 61.44 MiB 0.02 6576 -1 -1 13 0.30 -1 -1 32428 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62912 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 22.9 MiB 0.43 1415 61.4 MiB 0.09 0.00 6.5609 -131.521 -6.5609 6.5609 1.11 0.000536724 0.000436218 0.0183811 0.0153856 28 3842 24 6.55708e+06 361650 500653. 1732.36 1.92 0.121876 0.107876 21310 115450 -1 3358 18 1557 4388 258208 60397 0 0 258208 60397 4388 2342 0 0 15292 12384 0 0 23240 17745 0 0 4388 2736 0 0 100293 13164 0 0 110607 12026 0 0 4388 0 0 2831 6411 6037 39281 0 0 6.9215 6.9215 -156.182 -6.9215 0 0 612192. 2118.31 0.27 0.12 0.14 -1 -1 0.27 0.034342 0.0312756 212 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 7.83 vpr 61.27 MiB 0.02 6616 -1 -1 14 0.44 -1 -1 32540 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62736 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 22.7 MiB 0.56 1512 61.3 MiB 0.14 0.00 7.41762 -151.614 -7.41762 7.41762 0.92 0.000424291 0.000344582 0.0300209 0.0248267 38 3395 24 6.55708e+06 349595 638502. 2209.35 3.77 0.189321 0.164321 23326 155178 -1 2937 18 1473 4285 203469 48000 0 0 203469 48000 4285 1930 0 0 13703 11217 0 0 19877 14862 0 0 4285 2426 0 0 81368 8777 0 0 79951 8788 0 0 4285 0 0 2812 4737 4637 32335 0 0 8.01862 8.01862 -174.296 -8.01862 0 0 851065. 2944.86 0.26 0.10 0.11 -1 -1 0.26 0.0317223 0.0287548 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 7.68 vpr 60.75 MiB 0.02 6504 -1 -1 11 0.22 -1 -1 32048 -1 -1 29 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62212 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 22.1 MiB 0.20 1092 60.8 MiB 0.11 0.00 5.15566 -106.737 -5.15566 5.15566 0.94 0.000205004 0.000163757 0.0211263 0.0169159 28 3025 49 6.55708e+06 349595 500653. 1732.36 4.34 0.17074 0.148358 21310 115450 -1 2639 19 1273 3535 214250 49596 0 0 214250 49596 3535 1937 0 0 12026 9919 0 0 19134 14228 0 0 3535 2359 0 0 89281 10474 0 0 86739 10679 0 0 3535 0 0 2262 4197 4055 26041 0 0 5.59926 5.59926 -127.617 -5.59926 0 0 612192. 2118.31 0.17 0.06 0.08 -1 -1 0.17 0.0136747 0.0123194 160 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 16.71 vpr 61.58 MiB 0.02 6696 -1 -1 12 0.38 -1 -1 32840 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63060 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 23.1 MiB 0.77 1620 61.6 MiB 0.12 0.00 6.6001 -134.71 -6.6001 6.6001 1.07 0.000582887 0.000478718 0.0233958 0.0196485 30 4300 42 6.55708e+06 409870 526063. 1820.29 12.21 0.178584 0.1561 21886 126133 -1 3566 16 1535 4770 243424 56365 0 0 243424 56365 4770 2252 0 0 15481 12713 0 0 21714 16597 0 0 4770 2775 0 0 96799 11223 0 0 99890 10805 0 0 4770 0 0 3235 5897 6067 38927 0 0 6.6419 6.6419 -155.902 -6.6419 0 0 666494. 2306.21 0.25 0.07 0.13 -1 -1 0.25 0.0171483 0.015647 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 14.85 vpr 61.62 MiB 0.02 6620 -1 -1 13 0.34 -1 -1 32428 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63100 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 23.1 MiB 0.41 1448 61.6 MiB 0.19 0.00 6.5961 -137.919 -6.5961 6.5961 1.05 0.000546391 0.000438754 0.03816 0.0314931 28 4697 46 6.55708e+06 385760 500653. 1732.36 10.83 0.246613 0.215803 21310 115450 -1 3467 19 1566 4580 282118 65229 0 0 282118 65229 4580 2483 0 0 15845 12679 0 0 23973 18176 0 0 4580 2862 0 0 114921 14831 0 0 118219 14198 0 0 4580 0 0 3014 6337 6321 41148 0 0 7.0769 7.0769 -164.82 -7.0769 0 0 612192. 2118.31 0.17 0.07 0.08 -1 -1 0.17 0.0181297 0.0163543 217 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.51 vpr 60.70 MiB 0.03 6408 -1 -1 12 0.21 -1 -1 32376 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62156 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 22.1 MiB 0.67 1085 60.7 MiB 0.04 0.00 6.1219 -131.656 -6.1219 6.1219 1.00 0.000206096 0.000165678 0.0075695 0.00634773 30 2521 17 6.55708e+06 265210 526063. 1820.29 1.36 0.0792045 0.0699138 21886 126133 -1 2116 14 852 2450 113281 28362 0 0 113281 28362 2450 1110 0 0 8057 6394 0 0 11188 8653 0 0 2450 1273 0 0 44232 5565 0 0 44904 5367 0 0 2450 0 0 1598 2679 2748 19287 0 0 6.6027 6.6027 -152.775 -6.6027 0 0 666494. 2306.21 0.29 0.06 0.15 -1 -1 0.29 0.0200737 0.0183126 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 8.41 vpr 60.46 MiB 0.02 6276 -1 -1 10 0.13 -1 -1 31864 -1 -1 20 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61916 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 21.9 MiB 0.16 813 60.5 MiB 0.07 0.00 4.44306 -99.6509 -4.44306 4.44306 0.88 0.000272567 0.000218371 0.0116595 0.00954662 30 1929 16 6.55708e+06 241100 526063. 1820.29 5.12 0.140585 0.123357 21886 126133 -1 1718 14 632 1514 83328 19882 0 0 83328 19882 1514 858 0 0 5079 4039 0 0 7268 5640 0 0 1514 967 0 0 34463 4160 0 0 33490 4218 0 0 1514 0 0 882 1102 1113 8387 0 0 4.76446 4.76446 -115.733 -4.76446 0 0 666494. 2306.21 0.29 0.05 0.14 -1 -1 0.29 0.0135292 0.0122861 96 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 9.67 vpr 60.71 MiB 0.04 6472 -1 -1 13 0.20 -1 -1 32292 -1 -1 24 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62168 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 22.1 MiB 0.42 1120 60.7 MiB 0.07 0.00 6.22784 -130.123 -6.22784 6.22784 1.01 0.00031244 0.000256953 0.0138746 0.0115807 28 2930 43 6.55708e+06 289320 500653. 1732.36 5.67 0.25934 0.232812 21310 115450 -1 2475 20 1169 3266 182954 43114 0 0 182954 43114 3266 1725 0 0 10961 8772 0 0 17790 13028 0 0 3266 2066 0 0 74910 8571 0 0 72761 8952 0 0 3266 0 0 2097 3370 3445 22220 0 0 6.41678 6.41678 -149.612 -6.41678 0 0 612192. 2118.31 0.26 0.09 0.13 -1 -1 0.26 0.0229574 0.0206545 139 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 11.73 vpr 61.51 MiB 0.02 6600 -1 -1 13 0.32 -1 -1 32364 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62988 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 22.9 MiB 0.46 1465 61.5 MiB 0.10 0.00 6.22984 -126.721 -6.22984 6.22984 1.09 0.000273489 0.000220357 0.0198939 0.0164338 30 3604 39 6.55708e+06 373705 526063. 1820.29 7.71 0.225628 0.199991 21886 126133 -1 3246 25 2158 7330 459635 145440 0 0 459635 145440 7330 3200 0 0 22534 18766 0 0 35641 25043 0 0 7330 4132 0 0 187631 47592 0 0 199169 46707 0 0 7330 0 0 5172 11389 10220 66849 0 0 6.71064 6.71064 -150.392 -6.71064 0 0 666494. 2306.21 0.18 0.12 0.09 -1 -1 0.18 0.0210293 0.0188093 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 10.63 vpr 61.34 MiB 0.03 6756 -1 -1 13 0.40 -1 -1 32452 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62812 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 22.6 MiB 0.56 1616 61.3 MiB 0.15 0.00 6.5191 -137.159 -6.5191 6.5191 1.14 0.000501815 0.000411303 0.0280326 0.0233054 44 3769 23 6.55708e+06 409870 742403. 2568.87 5.86 0.260601 0.228577 24478 177802 -1 3154 17 1378 4629 235346 53747 0 0 235346 53747 4629 1902 0 0 15004 12462 0 0 24098 17311 0 0 4629 2360 0 0 91916 9996 0 0 95070 9716 0 0 4629 0 0 3251 6069 6451 43052 0 0 6.8797 6.8797 -151.774 -6.8797 0 0 937218. 3242.97 0.38 0.11 0.21 -1 -1 0.38 0.0292431 0.0266069 207 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.69 vpr 60.30 MiB 0.02 6280 -1 -1 9 0.11 -1 -1 31644 -1 -1 21 26 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61752 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 21.9 MiB 0.40 696 60.3 MiB 0.06 0.00 3.89854 -77.4529 -3.89854 3.89854 0.95 0.00019112 0.000155286 0.0104272 0.0086742 26 1824 21 6.55708e+06 253155 477104. 1650.88 1.21 0.0555897 0.0482607 21022 109990 -1 1676 18 679 1707 112169 26616 0 0 112169 26616 1707 1028 0 0 6158 5201 0 0 9882 7435 0 0 1707 1180 0 0 46584 5910 0 0 46131 5862 0 0 1707 0 0 1028 1465 1453 10381 0 0 4.16848 4.16848 -93.4634 -4.16848 0 0 585099. 2024.56 0.23 0.05 0.11 -1 -1 0.23 0.0121754 0.0109472 83 66 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 10.23 vpr 61.74 MiB 0.02 6548 -1 -1 13 0.48 -1 -1 32368 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63224 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 22.9 MiB 0.30 1515 61.7 MiB 0.08 0.00 6.8405 -130.754 -6.8405 6.8405 1.05 0.000533438 0.000433124 0.0155805 0.0129548 30 3416 19 6.55708e+06 361650 526063. 1820.29 6.26 0.235282 0.207535 21886 126133 -1 2994 18 1343 3765 179861 42745 0 0 179861 42745 3765 1778 0 0 12302 9864 0 0 17066 13160 0 0 3765 2159 0 0 70624 7959 0 0 72339 7825 0 0 3765 0 0 2422 4382 3924 26771 0 0 7.0809 7.0809 -149.407 -7.0809 0 0 666494. 2306.21 0.18 0.06 0.08 -1 -1 0.18 0.0173347 0.0156728 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 6.73 vpr 60.28 MiB 0.02 6212 -1 -1 8 0.10 -1 -1 31852 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61724 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 21.6 MiB 0.23 432 60.3 MiB 0.04 0.00 3.72586 -71.6208 -3.72586 3.72586 0.95 0.00020662 0.000169224 0.00701424 0.00583076 34 1304 14 6.55708e+06 204935 585099. 2024.56 3.33 0.085786 0.0744503 22462 138074 -1 1027 25 539 1087 121733 65541 0 0 121733 65541 1087 718 0 0 3974 3191 0 0 7148 5332 0 0 1087 788 0 0 54048 27622 0 0 54389 27890 0 0 1087 0 0 548 816 509 5044 0 0 3.9958 3.9958 -86.573 -3.9958 0 0 742403. 2568.87 0.31 0.08 0.16 -1 -1 0.31 0.0160705 0.0142612 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 10.35 vpr 60.84 MiB 0.02 6580 -1 -1 15 0.32 -1 -1 32384 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62296 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 22.3 MiB 0.27 1122 60.8 MiB 0.15 0.00 7.12896 -136.985 -7.12896 7.12896 1.06 0.000425861 0.000346314 0.0296367 0.0244 36 2951 42 6.55708e+06 301375 612192. 2118.31 6.52 0.287765 0.252802 22750 144809 -1 2377 18 1044 3075 175221 41714 0 0 175221 41714 3075 1361 0 0 10478 8575 0 0 16340 12203 0 0 3075 1666 0 0 70399 9022 0 0 71854 8887 0 0 3075 0 0 2031 3227 4050 24681 0 0 7.36935 7.36935 -154.505 -7.36935 0 0 782063. 2706.10 0.23 0.05 0.17 -1 -1 0.23 0.0142964 0.0129629 161 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 8.73 vpr 61.41 MiB 0.05 6604 -1 -1 12 0.32 -1 -1 32284 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62884 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 22.6 MiB 0.27 1431 61.4 MiB 0.21 0.00 5.73938 -123.875 -5.73938 5.73938 1.06 0.000552506 0.000454445 0.0438534 0.036274 36 3842 23 6.55708e+06 373705 612192. 2118.31 4.38 0.216114 0.189087 22750 144809 -1 3060 18 1472 4790 249239 58366 0 0 249239 58366 4790 2122 0 0 15996 13102 0 0 24568 18212 0 0 4790 2726 0 0 98364 11200 0 0 100731 11004 0 0 4790 0 0 3318 6266 7461 45575 0 0 6.09998 6.09998 -140.818 -6.09998 0 0 782063. 2706.10 0.32 0.12 0.17 -1 -1 0.32 0.0339567 0.0308704 218 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 17.68 vpr 61.45 MiB 0.02 6708 -1 -1 13 0.36 -1 -1 32228 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62924 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 22.8 MiB 0.46 1446 61.4 MiB 0.08 0.00 5.98944 -130.404 -5.98944 5.98944 1.03 0.000279319 0.000217759 0.0161388 0.0131836 28 4509 37 6.55708e+06 337540 500653. 1732.36 13.70 0.194076 0.170101 21310 115450 -1 3463 20 1789 5615 381497 91851 0 0 381497 91851 5615 2839 0 0 18900 15415 0 0 30498 21946 0 0 5615 3522 0 0 158350 24311 0 0 162519 23818 0 0 5615 0 0 3826 8807 8550 51504 0 0 6.47024 6.47024 -155.687 -6.47024 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0176316 0.0158345 196 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 7.07 vpr 60.85 MiB 0.02 6412 -1 -1 12 0.18 -1 -1 32184 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62312 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 22.2 MiB 0.32 1170 60.9 MiB 0.11 0.00 5.35486 -120.577 -5.35486 5.35486 0.98 0.000393827 0.000319642 0.0206344 0.0169729 30 2693 26 6.55708e+06 265210 526063. 1820.29 3.32 0.14592 0.126875 21886 126133 -1 2367 14 933 2580 129392 30839 0 0 129392 30839 2580 1334 0 0 8510 6756 0 0 12081 9295 0 0 2580 1538 0 0 52341 5916 0 0 51300 6000 0 0 2580 0 0 1647 2416 2702 18225 0 0 5.80812 5.80812 -136.791 -5.80812 0 0 666494. 2306.21 0.30 0.07 0.15 -1 -1 0.30 0.0224605 0.0205757 146 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.16 vpr 60.59 MiB 0.10 6536 -1 -1 11 0.12 -1 -1 32264 -1 -1 23 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62040 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 22.2 MiB 0.25 1033 60.6 MiB 0.13 0.00 5.08892 -110.458 -5.08892 5.08892 1.05 0.000339972 0.000278654 0.0250497 0.0204271 28 2725 32 6.55708e+06 277265 500653. 1732.36 1.44 0.074968 0.0643711 21310 115450 -1 2388 22 1068 2956 249075 79655 0 0 249075 79655 2956 1687 0 0 10091 8216 0 0 15933 11972 0 0 2956 1911 0 0 109105 29187 0 0 108034 26682 0 0 2956 0 0 1888 3187 3202 21253 0 0 5.20912 5.20912 -124.621 -5.20912 0 0 612192. 2118.31 0.24 0.11 0.11 -1 -1 0.24 0.0234874 0.0211697 128 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 9.66 vpr 60.68 MiB 0.02 6448 -1 -1 11 0.14 -1 -1 32004 -1 -1 27 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62136 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 22.1 MiB 0.34 1194 60.7 MiB 0.09 0.00 5.38078 -108.16 -5.38078 5.38078 1.10 0.000370843 0.00030247 0.016078 0.0134183 34 2994 22 6.55708e+06 325485 585099. 2024.56 5.78 0.218599 0.193454 22462 138074 -1 2483 30 1056 3082 410157 191587 0 0 410157 191587 3082 1718 0 0 10814 9037 0 0 20687 14504 0 0 3082 1994 0 0 186386 85111 0 0 186106 79223 0 0 3082 0 0 2026 3615 3635 23298 0 0 5.71746 5.71746 -126.566 -5.71746 0 0 742403. 2568.87 0.28 0.12 0.13 -1 -1 0.28 0.0190861 0.0169911 142 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 7.43 vpr 61.14 MiB 0.02 6292 -1 -1 12 0.22 -1 -1 32084 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62612 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 22.3 MiB 0.17 1310 61.1 MiB 0.10 0.00 5.77598 -133.314 -5.77598 5.77598 1.05 0.000440613 0.000360195 0.0191518 0.0159426 34 3359 40 6.55708e+06 337540 585099. 2024.56 3.84 0.19109 0.168361 22462 138074 -1 2878 16 1245 3191 181481 42947 0 0 181481 42947 3191 1645 0 0 11343 9057 0 0 16797 13003 0 0 3191 2037 0 0 74081 8552 0 0 72878 8653 0 0 3191 0 0 1946 2751 3265 20539 0 0 6.01638 6.01638 -154.634 -6.01638 0 0 742403. 2568.87 0.22 0.06 0.13 -1 -1 0.22 0.0148239 0.0134668 180 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 6.32 vpr 60.92 MiB 0.02 6504 -1 -1 11 0.23 -1 -1 32116 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62384 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 22.3 MiB 0.35 1025 60.9 MiB 0.17 0.00 5.53052 -114.027 -5.53052 5.53052 1.08 0.000521968 0.000366322 0.0214727 0.0180304 28 3148 48 6.55708e+06 277265 500653. 1732.36 2.36 0.145058 0.12893 21310 115450 -1 2612 28 1658 4662 404739 139832 0 0 404739 139832 4662 2570 0 0 15597 13056 0 0 26515 18895 0 0 4662 3110 0 0 172681 50033 0 0 180622 52168 0 0 4662 0 0 3004 5275 5185 33552 0 0 5.94198 5.94198 -138.967 -5.94198 0 0 612192. 2118.31 0.24 0.17 0.11 -1 -1 0.24 0.0335329 0.0302077 147 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 7.89 vpr 60.61 MiB 0.03 6504 -1 -1 10 0.19 -1 -1 32300 -1 -1 24 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62064 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 22.1 MiB 0.30 909 60.6 MiB 0.13 0.00 5.05172 -101.001 -5.05172 5.05172 1.09 0.000368059 0.000298727 0.0274032 0.0225805 30 2450 43 6.55708e+06 289320 526063. 1820.29 3.82 0.201782 0.176629 21886 126133 -1 1750 15 828 2365 105867 26480 0 0 105867 26480 2365 1150 0 0 7690 6227 0 0 10601 8131 0 0 2365 1366 0 0 41023 4869 0 0 41823 4737 0 0 2365 0 0 1537 2730 2599 19109 0 0 5.41232 5.41232 -113.336 -5.41232 0 0 666494. 2306.21 0.30 0.07 0.15 -1 -1 0.30 0.0213619 0.0194763 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 7.98 vpr 61.55 MiB 0.03 6760 -1 -1 13 0.44 -1 -1 32480 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63024 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 22.9 MiB 0.42 1576 61.5 MiB 0.17 0.00 6.0409 -126.834 -6.0409 6.0409 1.04 0.000706132 0.000584635 0.0216037 0.0180826 36 3827 20 6.55708e+06 397815 612192. 2118.31 3.48 0.206429 0.183842 22750 144809 -1 3308 17 1444 4775 284009 62990 0 0 284009 62990 4775 2013 0 0 16169 13093 0 0 25389 19068 0 0 4775 2504 0 0 114547 13778 0 0 118354 12534 0 0 4775 0 0 3331 8111 7923 53562 0 0 6.5217 6.5217 -146.708 -6.5217 0 0 782063. 2706.10 0.33 0.14 0.17 -1 -1 0.33 0.0430605 0.039769 239 238 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 9.94 vpr 61.45 MiB 0.03 6572 -1 -1 13 0.40 -1 -1 32596 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62928 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 22.7 MiB 0.52 1472 61.5 MiB 0.14 0.00 6.46824 -141.83 -6.46824 6.46824 1.05 0.000703014 0.000592946 0.0256607 0.0217234 38 3616 28 6.55708e+06 349595 638502. 2209.35 5.34 0.296591 0.262924 23326 155178 -1 2987 19 1352 4529 234692 52854 0 0 234692 52854 4529 1923 0 0 14490 12151 0 0 21988 15965 0 0 4529 2455 0 0 91860 10654 0 0 97296 9706 0 0 4529 0 0 3177 6870 6784 45214 0 0 6.7601 6.7601 -155.469 -6.7601 0 0 851065. 2944.86 0.36 0.12 0.19 -1 -1 0.36 0.0348437 0.0317388 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 6.89 vpr 60.85 MiB 0.02 6344 -1 -1 12 0.19 -1 -1 32268 -1 -1 25 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62308 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 22.3 MiB 0.39 1186 60.8 MiB 0.10 0.00 5.38078 -116.722 -5.38078 5.38078 1.05 0.000411489 0.00033247 0.019131 0.0158384 28 3233 50 6.55708e+06 301375 500653. 1732.36 2.77 0.143768 0.12834 21310 115450 -1 2778 17 1170 3256 214775 47553 0 0 214775 47553 3256 1856 0 0 11139 9010 0 0 17300 12849 0 0 3256 2143 0 0 87970 11347 0 0 91854 10348 0 0 3256 0 0 2086 4331 4227 25878 0 0 6.26398 6.26398 -147.274 -6.26398 0 0 612192. 2118.31 0.28 0.11 0.14 -1 -1 0.28 0.0266116 0.024332 150 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 14.09 vpr 61.71 MiB 0.02 6704 -1 -1 12 0.24 -1 -1 32684 -1 -1 34 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63188 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 23.2 MiB 0.29 1486 61.7 MiB 0.17 0.00 6.3969 -132.406 -6.3969 6.3969 0.79 0.000460133 0.000378297 0.0348272 0.0289753 30 4027 35 6.55708e+06 409870 526063. 1820.29 10.36 0.289491 0.256362 21886 126133 -1 2997 17 1516 4545 218088 52717 0 0 218088 52717 4545 2130 0 0 14743 12059 0 0 20835 15805 0 0 4545 2587 0 0 86604 9943 0 0 86816 10193 0 0 4545 0 0 3029 4450 5357 35659 0 0 6.5955 6.5955 -149.916 -6.5955 0 0 666494. 2306.21 0.29 0.11 0.15 -1 -1 0.29 0.0335545 0.0307226 219 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 17.08 vpr 61.17 MiB 0.03 6760 -1 -1 14 0.46 -1 -1 33268 -1 -1 28 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62636 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 22.6 MiB 0.28 1494 61.2 MiB 0.14 0.00 6.5543 -132.531 -6.5543 6.5543 1.17 0.000257105 0.000205887 0.0255075 0.0210074 28 4146 47 6.55708e+06 337540 500653. 1732.36 13.22 0.254624 0.224521 21310 115450 -1 3460 18 1506 4257 264877 60315 0 0 264877 60315 4257 2434 0 0 14519 11932 0 0 22917 17112 0 0 4257 2838 0 0 109856 12756 0 0 109071 13243 0 0 4257 0 0 2751 4128 5340 30640 0 0 7.20876 7.20876 -157.979 -7.20876 0 0 612192. 2118.31 0.17 0.07 0.08 -1 -1 0.17 0.0165821 0.015009 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 7.08 vpr 61.09 MiB 0.02 6644 -1 -1 13 0.24 -1 -1 32808 -1 -1 28 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62552 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 22.6 MiB 0.28 1357 61.1 MiB 0.12 0.00 6.74784 -138.35 -6.74784 6.74784 1.08 0.000481027 0.000392521 0.0230066 0.0189991 36 3521 21 6.55708e+06 337540 612192. 2118.31 2.99 0.16748 0.147749 22750 144809 -1 2948 18 1252 3568 196484 45987 0 0 196484 45987 3568 1792 0 0 12225 9848 0 0 18346 14045 0 0 3568 2242 0 0 79383 9107 0 0 79394 8953 0 0 3568 0 0 2316 3148 3822 24258 0 0 6.98824 6.98824 -155.141 -6.98824 0 0 782063. 2706.10 0.33 0.10 0.12 -1 -1 0.33 0.0292118 0.0265801 181 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 8.66 vpr 61.44 MiB 0.02 6716 -1 -1 12 0.31 -1 -1 32736 -1 -1 30 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62916 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 22.9 MiB 0.67 1398 61.4 MiB 0.14 0.00 5.59164 -120.742 -5.59164 5.59164 0.96 0.000401926 0.000329808 0.0292975 0.0242599 34 3826 30 6.55708e+06 361650 585099. 2024.56 4.21 0.181455 0.159509 22462 138074 -1 3160 16 1240 4069 248824 55473 0 0 248824 55473 4069 1895 0 0 13984 11315 0 0 22695 16432 0 0 4069 2286 0 0 102783 11763 0 0 101224 11782 0 0 4069 0 0 2829 5815 6261 38754 0 0 6.27364 6.27364 -142.075 -6.27364 0 0 742403. 2568.87 0.30 0.13 0.13 -1 -1 0.30 0.036102 0.033398 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 6.24 vpr 60.91 MiB 0.02 6752 -1 -1 12 0.26 -1 -1 32216 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62368 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 22.4 MiB 0.34 1307 60.9 MiB 0.12 0.00 5.8025 -120.324 -5.8025 5.8025 1.07 0.000425953 0.000344151 0.0244873 0.0200749 28 3479 25 6.55708e+06 289320 500653. 1732.36 2.20 0.130075 0.115067 21310 115450 -1 2919 21 1407 4273 267080 59935 0 0 267080 59935 4273 2215 0 0 14928 12092 0 0 22487 16965 0 0 4273 2629 0 0 112241 12919 0 0 108878 13115 0 0 4273 0 0 2866 5788 6178 37473 0 0 6.4035 6.4035 -146.429 -6.4035 0 0 612192. 2118.31 0.27 0.13 0.13 -1 -1 0.27 0.03707 0.0337245 172 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 11.66 vpr 61.67 MiB 0.03 6888 -1 -1 14 0.52 -1 -1 32120 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63152 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 23.2 MiB 0.42 1718 61.7 MiB 0.11 0.00 6.5197 -139.307 -6.5197 6.5197 0.89 0.00052592 0.000424641 0.0234459 0.0195191 36 4621 48 6.55708e+06 409870 612192. 2118.31 7.18 0.27896 0.248579 22750 144809 -1 3784 18 1642 5599 336028 74024 0 0 336028 74024 5599 2498 0 0 18807 15497 0 0 29996 21815 0 0 5599 3085 0 0 140910 14995 0 0 135117 16134 0 0 5599 0 0 3957 8954 9606 59434 0 0 6.9613 6.9613 -159.243 -6.9613 0 0 782063. 2706.10 0.33 0.16 0.18 -1 -1 0.33 0.0395934 0.036014 245 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 6.59 vpr 61.11 MiB 0.02 6468 -1 -1 11 0.21 -1 -1 32320 -1 -1 26 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62576 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 22.6 MiB 0.21 1203 61.1 MiB 0.15 0.00 5.30238 -114.4 -5.30238 5.30238 0.95 0.000356906 0.000293455 0.0307176 0.0255526 34 3411 45 6.55708e+06 313430 585099. 2024.56 2.78 0.223405 0.20136 22462 138074 -1 2684 16 1104 3117 188238 42941 0 0 188238 42941 3117 1576 0 0 10829 8816 0 0 16686 12410 0 0 3117 1922 0 0 76286 9392 0 0 78203 8825 0 0 3117 0 0 2013 3297 3372 22191 0 0 5.69252 5.69252 -132.296 -5.69252 0 0 742403. 2568.87 0.32 0.10 0.16 -1 -1 0.32 0.0271601 0.0249486 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 9.02 vpr 61.42 MiB 0.02 6716 -1 -1 13 0.31 -1 -1 32256 -1 -1 27 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62892 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 23.0 MiB 0.52 1363 61.4 MiB 0.09 0.00 6.33076 -127.785 -6.33076 6.33076 0.99 0.000463226 0.000374226 0.017129 0.0142728 38 3051 17 6.55708e+06 325485 638502. 2209.35 4.90 0.236315 0.209664 23326 155178 -1 2775 16 1193 3928 199350 45267 0 0 199350 45267 3928 1668 0 0 12598 10384 0 0 18521 13637 0 0 3928 2106 0 0 80103 8776 0 0 80272 8696 0 0 3928 0 0 2735 5601 5913 38479 0 0 6.6007 6.6007 -141.803 -6.6007 0 0 851065. 2944.86 0.33 0.10 0.16 -1 -1 0.33 0.0277955 0.0254391 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.66 vpr 61.62 MiB 0.03 6644 -1 -1 12 0.35 -1 -1 32344 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63096 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 22.9 MiB 0.51 1554 61.6 MiB 0.08 0.00 6.01898 -130.646 -6.01898 6.01898 1.04 0.000593886 0.000489538 0.0152013 0.0124682 30 4118 24 6.55708e+06 409870 526063. 1820.29 2.37 0.108541 0.0957218 21886 126133 -1 3243 16 1375 4919 240871 55666 0 0 240871 55666 4919 2009 0 0 15813 13146 0 0 23013 17144 0 0 4919 2506 0 0 96922 10171 0 0 95285 10690 0 0 4919 0 0 3544 7200 8029 51294 0 0 6.14118 6.14118 -145.751 -6.14118 0 0 666494. 2306.21 0.21 0.10 0.10 -1 -1 0.21 0.0219099 0.0198696 227 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 8.78 vpr 61.09 MiB 0.02 6608 -1 -1 13 0.33 -1 -1 32380 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62556 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 22.6 MiB 0.24 1234 61.1 MiB 0.12 0.00 6.30884 -130.584 -6.30884 6.30884 0.99 0.000254165 0.000195883 0.0233634 0.018856 34 3512 44 6.55708e+06 337540 585099. 2024.56 4.69 0.277488 0.245355 22462 138074 -1 2902 19 1346 3788 226808 53637 0 0 226808 53637 3788 2011 0 0 13464 11198 0 0 21154 16003 0 0 3788 2471 0 0 90387 11332 0 0 94227 10622 0 0 3788 0 0 2442 3612 4001 26659 0 0 6.63024 6.63024 -151.193 -6.63024 0 0 742403. 2568.87 0.27 0.10 0.13 -1 -1 0.27 0.0280495 0.0255585 184 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 7.70 vpr 61.18 MiB 0.03 6704 -1 -1 13 0.29 -1 -1 32372 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62652 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 22.6 MiB 0.41 1223 61.2 MiB 0.16 0.00 6.1219 -132.483 -6.1219 6.1219 1.05 0.000251006 0.000202138 0.0353431 0.0291496 28 3861 37 6.55708e+06 301375 500653. 1732.36 3.72 0.152815 0.133659 21310 115450 -1 2959 18 1265 3737 254345 60402 0 0 254345 60402 3737 2006 0 0 13153 10753 0 0 20133 15477 0 0 3737 2355 0 0 107158 15143 0 0 106427 14668 0 0 3737 0 0 2472 5354 5319 34050 0 0 6.55124 6.55124 -153.126 -6.55124 0 0 612192. 2118.31 0.27 0.12 0.08 -1 -1 0.27 0.0287624 0.0260703 175 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 12.66 vpr 61.36 MiB 0.26 6664 -1 -1 12 0.29 -1 -1 32300 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62828 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 22.6 MiB 0.72 1434 61.4 MiB 0.12 0.00 5.63344 -124.299 -5.63344 5.63344 0.96 0.000513879 0.0004224 0.0238724 0.0198975 30 3566 34 6.55708e+06 373705 526063. 1820.29 7.88 0.292886 0.25895 21886 126133 -1 3068 17 1320 4653 220849 51300 0 0 220849 51300 4653 1861 0 0 14809 12266 0 0 21318 15855 0 0 4653 2318 0 0 88129 9461 0 0 87287 9539 0 0 4653 0 0 3333 6736 7628 50718 0 0 5.87384 5.87384 -142.341 -5.87384 0 0 666494. 2306.21 0.30 0.11 0.15 -1 -1 0.30 0.0309415 0.0283341 205 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.74 vpr 61.36 MiB 0.23 6668 -1 -1 13 0.27 -1 -1 32408 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62832 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 22.6 MiB 0.54 1543 61.4 MiB 0.12 0.00 6.2813 -128.6 -6.2813 6.2813 0.99 0.00051531 0.00041827 0.0228859 0.0191235 30 4025 33 6.55708e+06 349595 526063. 1820.29 3.55 0.157542 0.139497 21886 126133 -1 3192 16 1409 4328 215059 50307 0 0 215059 50307 4328 2018 0 0 14025 11479 0 0 19732 14983 0 0 4328 2476 0 0 85682 9678 0 0 86964 9673 0 0 4328 0 0 2919 5449 5656 38126 0 0 6.6393 6.6393 -149.704 -6.6393 0 0 666494. 2306.21 0.29 0.12 0.15 -1 -1 0.29 0.0355934 0.0327502 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 16.08 vpr 61.14 MiB 0.02 6624 -1 -1 14 0.35 -1 -1 32500 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62612 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 22.5 MiB 1.03 1261 61.1 MiB 0.13 0.00 6.5151 -134.739 -6.5151 6.5151 0.91 0.000415096 0.000340781 0.0262739 0.0217594 26 3794 44 6.55708e+06 301375 477104. 1650.88 10.84 0.258556 0.228503 21022 109990 -1 3065 22 1508 4850 359648 93627 0 0 359648 93627 4850 2520 0 0 16749 13879 0 0 27679 19474 0 0 4850 3045 0 0 152551 27903 0 0 152969 26806 0 0 4850 0 0 3342 6902 6454 41180 0 0 7.0769 7.0769 -159.431 -7.0769 0 0 585099. 2024.56 0.23 0.14 0.11 -1 -1 0.23 0.0321649 0.0291313 167 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 9.19 vpr 61.49 MiB 0.02 6696 -1 -1 13 0.39 -1 -1 32476 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62964 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 22.9 MiB 1.35 1449 61.5 MiB 0.11 0.00 6.52936 -137.992 -6.52936 6.52936 0.89 0.000481814 0.000392764 0.0218575 0.0181814 34 3771 40 6.55708e+06 361650 585099. 2024.56 3.65 0.182907 0.161527 22462 138074 -1 3145 16 1417 4048 232728 53724 0 0 232728 53724 4048 2028 0 0 14165 11549 0 0 22343 16857 0 0 4048 2597 0 0 90901 10774 0 0 97223 9919 0 0 4048 0 0 2631 4445 4550 29542 0 0 7.09116 7.09116 -157.396 -7.09116 0 0 742403. 2568.87 0.28 0.10 0.14 -1 -1 0.28 0.0300075 0.0274992 199 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 11.23 vpr 61.64 MiB 0.02 6760 -1 -1 13 0.39 -1 -1 32312 -1 -1 32 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63120 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 23.1 MiB 1.02 1538 61.6 MiB 0.10 0.00 6.88536 -140.416 -6.88536 6.88536 1.07 0.000282911 0.000228649 0.0212153 0.017443 34 4178 23 6.55708e+06 385760 585099. 2024.56 5.28 0.251069 0.222668 22462 138074 -1 3310 16 1341 4248 242591 55325 0 0 242591 55325 4248 2001 0 0 14657 11883 0 0 22807 16990 0 0 4248 2495 0 0 99764 10840 0 0 96867 11116 0 0 4248 0 0 2907 5835 6494 39232 0 0 7.56736 7.56736 -161.583 -7.56736 0 0 742403. 2568.87 0.32 0.13 0.17 -1 -1 0.32 0.037715 0.0347962 221 218 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 11.65 vpr 61.65 MiB 0.02 6672 -1 -1 12 0.40 -1 -1 32376 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63132 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 23.0 MiB 0.87 1611 61.7 MiB 0.16 0.00 6.31084 -138.51 -6.31084 6.31084 1.01 0.000682503 0.000573996 0.0328879 0.0274533 36 4066 32 6.55708e+06 385760 612192. 2118.31 6.41 0.399653 0.356159 22750 144809 -1 3388 16 1457 4583 247995 56805 0 0 247995 56805 4583 2080 0 0 15504 12382 0 0 23559 17726 0 0 4583 2596 0 0 98362 11373 0 0 101404 10648 0 0 4583 0 0 3126 5582 5982 37617 0 0 6.79164 6.79164 -157.384 -6.79164 0 0 782063. 2706.10 0.33 0.11 0.15 -1 -1 0.33 0.0335307 0.03085 231 229 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 11.04 vpr 60.73 MiB 0.02 6508 -1 -1 11 0.16 -1 -1 32272 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62184 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 22.3 MiB 0.63 1077 60.7 MiB 0.35 0.02 4.97132 -113.985 -4.97132 4.97132 0.85 0.000371184 0.000302474 0.0346757 0.0295867 28 2882 40 6.55708e+06 229045 500653. 1732.36 6.96 0.196975 0.1742 21310 115450 -1 2427 19 974 2723 175659 41053 0 0 175659 41053 2723 1543 0 0 9432 7597 0 0 14699 10890 0 0 2723 1757 0 0 73509 9675 0 0 72573 9591 0 0 2723 0 0 1749 2735 2771 18948 0 0 5.21172 5.21172 -134.068 -5.21172 0 0 612192. 2118.31 0.27 0.09 0.14 -1 -1 0.27 0.0224956 0.0203827 127 121 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 15.08 vpr 60.97 MiB 0.02 6440 -1 -1 13 0.21 -1 -1 32308 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62432 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 22.5 MiB 0.78 1303 61.0 MiB 0.30 0.01 6.82684 -145.66 -6.82684 6.82684 1.01 0.000575591 0.000491118 0.0163663 0.0142235 28 3437 31 6.55708e+06 325485 500653. 1732.36 9.86 0.192966 0.171691 21310 115450 -1 3037 32 1236 3598 383642 141872 0 0 383642 141872 3598 2063 0 0 12302 9858 0 0 20495 14797 0 0 3598 2400 0 0 170741 57451 0 0 172908 55303 0 0 3598 0 0 2362 4879 4907 28676 0 0 7.06724 7.06724 -164.178 -7.06724 0 0 612192. 2118.31 0.26 0.16 0.08 -1 -1 0.26 0.0309215 0.0275851 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 13.17 vpr 61.46 MiB 0.03 6752 -1 -1 14 0.61 -1 -1 32528 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62936 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 23.3 MiB 0.52 1725 61.5 MiB 0.55 0.01 7.24596 -154.761 -7.24596 7.24596 1.00 0.000970614 0.000816514 0.0334755 0.0287751 34 4913 41 6.55708e+06 433980 585099. 2024.56 7.27 0.393554 0.350994 22462 138074 -1 3927 17 1862 5681 336064 76881 0 0 336064 76881 5681 2687 0 0 20263 16516 0 0 30736 23414 0 0 5681 3355 0 0 133770 16221 0 0 139933 14688 0 0 5681 0 0 3819 7637 7863 47800 0 0 7.75889 7.75889 -176.946 -7.75889 0 0 742403. 2568.87 0.29 0.20 0.16 -1 -1 0.29 0.0458653 0.0421915 267 266 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.83 vpr 61.78 MiB 0.02 6588 -1 -1 13 0.46 -1 -1 32436 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63264 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 23.1 MiB 0.80 1465 61.8 MiB 0.77 0.00 6.59044 -139.011 -6.59044 6.59044 0.95 0.000817716 0.000674601 0.0625377 0.0552779 34 3572 16 6.55708e+06 373705 585099. 2024.56 2.09 0.2318 0.207331 22462 138074 -1 3141 18 1425 4139 216118 50958 0 0 216118 50958 4139 2027 0 0 14070 11254 0 0 22358 16425 0 0 4139 2401 0 0 85170 9366 0 0 86242 9485 0 0 4139 0 0 2714 4486 5685 34946 0 0 6.9215 6.9215 -156.864 -6.9215 0 0 742403. 2568.87 0.33 0.12 0.16 -1 -1 0.33 0.0385393 0.0352623 224 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 6.73 vpr 60.94 MiB 0.02 6536 -1 -1 11 0.19 -1 -1 32172 -1 -1 23 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62400 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 22.4 MiB 0.64 975 60.9 MiB 0.72 0.00 5.42198 -108.929 -5.42198 5.42198 0.99 0.000411079 0.000340433 0.0306977 0.0262972 30 2379 21 6.55708e+06 277265 526063. 1820.29 1.89 0.103206 0.0909458 21886 126133 -1 2022 16 884 2765 129618 31015 0 0 129618 31015 2765 1144 0 0 8807 7227 0 0 12997 9527 0 0 2765 1453 0 0 52165 5745 0 0 50119 5919 0 0 2765 0 0 1881 2988 3506 22870 0 0 5.70158 5.70158 -126.334 -5.70158 0 0 666494. 2306.21 0.30 0.06 0.15 -1 -1 0.30 0.0152011 0.0136825 137 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 10.95 vpr 61.73 MiB 0.02 6848 -1 -1 15 0.57 -1 -1 32432 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63216 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 23.2 MiB 0.74 1747 61.7 MiB 0.61 0.03 7.16555 -148.955 -7.16555 7.16555 1.04 0.00110885 0.000983134 0.0413489 0.0361806 30 4786 43 6.55708e+06 397815 526063. 1820.29 5.24 0.239502 0.214963 21886 126133 -1 3774 25 2200 7451 429765 102848 0 0 429765 102848 7451 3328 0 0 23719 19757 0 0 36314 26314 0 0 7451 4112 0 0 175955 24988 0 0 178875 24349 0 0 7451 0 0 5251 11345 11502 72903 0 0 8.03389 8.03389 -182.171 -8.03389 0 0 666494. 2306.21 0.28 0.21 0.13 -1 -1 0.28 0.0570828 0.0516733 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 10.38 vpr 61.54 MiB 0.16 6624 -1 -1 13 0.40 -1 -1 32316 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63020 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 23.0 MiB 0.76 1460 61.5 MiB 1.07 0.00 6.4015 -131.383 -6.4015 6.4015 1.00 0.000476751 0.000391835 0.0677823 0.0591572 36 3907 25 6.55708e+06 349595 612192. 2118.31 4.65 0.257443 0.228881 22750 144809 -1 3139 17 1413 4002 220522 51820 0 0 220522 51820 4002 2072 0 0 13664 10994 0 0 20337 15491 0 0 4002 2571 0 0 87958 10677 0 0 90559 10015 0 0 4002 0 0 2589 4277 4257 29065 0 0 6.6419 6.6419 -151.584 -6.6419 0 0 782063. 2706.10 0.27 0.11 0.11 -1 -1 0.27 0.0316311 0.028799 207 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 12.98 vpr 60.82 MiB 0.12 6392 -1 -1 11 0.14 -1 -1 31912 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62280 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 22.2 MiB 0.35 1185 60.8 MiB 0.46 0.00 5.37818 -115.152 -5.37818 5.37818 1.05 0.000570882 0.000500075 0.0206625 0.0178529 28 2962 31 6.55708e+06 289320 500653. 1732.36 8.44 0.201902 0.178387 21310 115450 -1 2540 17 1034 2789 158079 37021 0 0 158079 37021 2789 1434 0 0 9672 7712 0 0 14597 11099 0 0 2789 1667 0 0 63422 7848 0 0 64810 7261 0 0 2789 0 0 1755 3020 3161 21105 0 0 5.73878 5.73878 -136.047 -5.73878 0 0 612192. 2118.31 0.25 0.07 0.13 -1 -1 0.25 0.0209522 0.0190579 149 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.14 vpr 61.41 MiB 0.19 6912 -1 -1 12 0.35 -1 -1 32408 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62884 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 22.9 MiB 0.49 1475 61.4 MiB 0.54 0.01 6.01898 -125.784 -6.01898 6.01898 1.04 0.000766758 0.000650845 0.0295814 0.0257514 30 3747 44 6.55708e+06 373705 526063. 1820.29 3.80 0.180221 0.160843 21886 126133 -1 3147 31 1941 6753 470646 130953 0 0 470646 130953 6753 2946 0 0 21373 17687 0 0 34283 24212 0 0 6753 3735 0 0 204618 41272 0 0 196866 41101 0 0 6753 0 0 4812 12228 12084 74197 0 0 6.19264 6.19264 -143.954 -6.19264 0 0 666494. 2306.21 0.27 0.20 0.14 -1 -1 0.27 0.0454836 0.0408005 217 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 11.68 vpr 61.13 MiB 0.02 6408 -1 -1 12 0.26 -1 -1 32052 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62600 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 22.6 MiB 0.83 1249 61.1 MiB 0.71 0.01 6.2421 -127.001 -6.2421 6.2421 0.92 0.00045225 0.000379561 0.0306421 0.0262114 44 2651 19 6.55708e+06 313430 742403. 2568.87 5.99 0.223356 0.197116 24478 177802 -1 2329 15 993 2787 131900 32046 0 0 131900 32046 2787 1256 0 0 9398 7864 0 0 14019 10651 0 0 2787 1557 0 0 52562 5118 0 0 50347 5600 0 0 2787 0 0 1794 2366 2652 18335 0 0 6.4825 6.4825 -142.826 -6.4825 0 0 937218. 3242.97 0.41 0.08 0.22 -1 -1 0.41 0.0260381 0.023878 164 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 9.37 vpr 60.74 MiB 0.02 6540 -1 -1 12 0.22 -1 -1 32216 -1 -1 21 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62200 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 22.1 MiB 0.26 996 60.7 MiB 0.52 0.01 6.02864 -123.283 -6.02864 6.02864 0.93 0.000506125 0.000411857 0.0243217 0.020756 24 3201 42 6.55708e+06 253155 448715. 1552.65 5.38 0.163947 0.146173 20734 103517 -1 2292 19 1050 3010 182935 42699 0 0 182935 42699 3010 1557 0 0 10994 9032 0 0 16983 12351 0 0 3010 1764 0 0 75004 8981 0 0 73934 9014 0 0 3010 0 0 1960 3561 3834 24367 0 0 6.57818 6.57818 -143.467 -6.57818 0 0 554710. 1919.41 0.18 0.05 0.13 -1 -1 0.18 0.0141825 0.0127947 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 19.53 vpr 61.18 MiB 0.03 6664 -1 -1 12 0.39 -1 -1 32652 -1 -1 32 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62648 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 22.6 MiB 0.70 1365 61.2 MiB 0.20 0.00 5.93798 -112.647 -5.93798 5.93798 1.00 0.000568739 0.000461857 0.0266442 0.0218091 28 3952 24 6.55708e+06 385760 500653. 1732.36 14.93 0.273461 0.243455 21310 115450 -1 3291 19 1644 5233 339839 81182 0 0 339839 81182 5233 2689 0 0 17800 14633 0 0 28050 20590 0 0 5233 3103 0 0 142091 20367 0 0 141432 19800 0 0 5233 0 0 3589 7617 7895 49412 0 0 6.27364 6.27364 -133.803 -6.27364 0 0 612192. 2118.31 0.28 0.15 0.14 -1 -1 0.28 0.0358852 0.0325771 208 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 9.04 vpr 61.52 MiB 0.02 6708 -1 -1 14 0.41 -1 -1 32508 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62996 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 22.8 MiB 0.95 1500 61.5 MiB 0.34 0.00 6.85076 -144.99 -6.85076 6.85076 0.87 0.000543876 0.00045053 0.0353633 0.030343 30 3924 22 6.55708e+06 385760 526063. 1820.29 2.59 0.186777 0.169503 21886 126133 -1 3135 17 1554 4431 200118 48503 0 0 200118 48503 4431 2090 0 0 14197 11523 0 0 19573 14976 0 0 4431 2541 0 0 77533 8963 0 0 79953 8410 0 0 4431 0 0 2877 5009 4455 32696 0 0 7.1579 7.1579 -164.639 -7.1579 0 0 666494. 2306.21 0.25 0.37 0.13 -1 -1 0.25 0.0352901 0.0324912 227 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 10.18 vpr 61.62 MiB 0.02 6680 -1 -1 12 0.31 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63096 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 23.0 MiB 0.54 1468 61.6 MiB 0.62 0.01 6.07044 -130.174 -6.07044 6.07044 1.06 0.000573796 0.000479739 0.0339486 0.0292382 28 4288 34 6.55708e+06 325485 500653. 1732.36 4.78 0.130501 0.115315 21310 115450 -1 3427 27 1769 5498 472612 143213 0 0 472612 143213 5498 2927 0 0 18366 14646 0 0 29606 21267 0 0 5498 3525 0 0 208128 51924 0 0 205516 48924 0 0 5498 0 0 3729 7764 8122 47943 0 0 6.74984 6.74984 -158.113 -6.74984 0 0 612192. 2118.31 0.28 0.19 0.14 -1 -1 0.28 0.0395173 0.0357716 192 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 13.17 vpr 60.56 MiB 0.02 6568 -1 -1 12 0.18 -1 -1 30844 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62012 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 22.1 MiB 0.51 1147 60.6 MiB 0.44 0.00 5.37878 -117.138 -5.37878 5.37878 0.90 0.000474439 0.000407218 0.0225731 0.019878 30 2590 28 6.55708e+06 277265 526063. 1820.29 8.87 0.205485 0.18306 21886 126133 -1 2270 17 847 2646 139902 32565 0 0 139902 32565 2646 1266 0 0 8797 7249 0 0 12733 9702 0 0 2646 1522 0 0 57590 6200 0 0 55490 6626 0 0 2646 0 0 1799 2994 3776 23681 0 0 5.73938 5.73938 -134.415 -5.73938 0 0 666494. 2306.21 0.29 0.09 0.15 -1 -1 0.29 0.026602 0.0243873 133 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 12.77 vpr 60.90 MiB 0.01 6480 -1 -1 12 0.22 -1 -1 31860 -1 -1 25 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62364 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 22.4 MiB 0.27 1122 60.9 MiB 0.61 0.00 6.1611 -118.405 -6.1611 6.1611 0.98 0.000676369 0.000573476 0.0495063 0.0425479 30 3094 21 6.55708e+06 301375 526063. 1820.29 8.77 0.210517 0.185775 21886 126133 -1 2281 17 1036 2784 127848 32273 0 0 127848 32273 2784 1406 0 0 9238 7478 0 0 12687 9910 0 0 2784 1645 0 0 48432 6112 0 0 51923 5722 0 0 2784 0 0 1748 2954 2959 20907 0 0 6.4825 6.4825 -134.739 -6.4825 0 0 666494. 2306.21 0.20 0.07 0.11 -1 -1 0.20 0.0204832 0.0186242 170 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 13.37 vpr 61.10 MiB 0.04 6628 -1 -1 11 0.23 -1 -1 32216 -1 -1 28 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62564 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 22.6 MiB 0.35 1278 61.1 MiB 0.64 0.01 5.13472 -109.701 -5.13472 5.13472 0.97 0.000645616 0.000547151 0.035422 0.0303724 30 3282 23 6.55708e+06 337540 526063. 1820.29 8.30 0.243019 0.214692 21886 126133 -1 2669 18 1269 4499 212163 49153 0 0 212163 49153 4499 1690 0 0 14177 11531 0 0 20989 15421 0 0 4499 2160 0 0 86063 8824 0 0 81936 9527 0 0 4499 0 0 3230 6376 6591 45866 0 0 5.25492 5.25492 -125.365 -5.25492 0 0 666494. 2306.21 0.19 0.06 0.10 -1 -1 0.19 0.0163635 0.0147947 189 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 11.37 vpr 60.94 MiB 0.02 6628 -1 -1 11 0.26 -1 -1 32272 -1 -1 28 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62400 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 22.3 MiB 0.67 1218 60.9 MiB 0.62 0.02 5.38078 -98.2735 -5.38078 5.38078 1.00 0.000558899 0.000477796 0.0307086 0.0262453 30 3351 36 6.55708e+06 337540 526063. 1820.29 3.81 0.141394 0.125568 21886 126133 -1 2635 38 1155 3945 452104 216342 0 0 452104 216342 3945 1691 0 0 12540 10459 0 0 19809 14405 0 0 3945 2114 0 0 206010 95344 0 0 205855 92329 0 0 3945 0 0 2790 5520 5533 38506 0 0 5.38078 5.38078 -112.755 -5.38078 0 0 666494. 2306.21 0.30 1.61 0.17 -1 -1 0.30 0.0722349 0.0634036 171 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 8.51 vpr 60.73 MiB 0.02 6496 -1 -1 13 0.22 -1 -1 32280 -1 -1 25 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62188 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 22.1 MiB 0.90 1085 60.7 MiB 0.46 0.02 6.3185 -124.03 -6.3185 6.3185 1.00 0.000371177 0.000314338 0.020174 0.0177956 30 2690 18 6.55708e+06 301375 526063. 1820.29 2.45 0.0972949 0.0876283 21886 126133 -1 2179 16 901 2437 124275 29398 0 0 124275 29398 2437 1229 0 0 8123 6429 0 0 11304 8788 0 0 2437 1444 0 0 49082 6009 0 0 50892 5499 0 0 2437 0 0 1536 2321 2253 16183 0 0 6.3995 6.3995 -139.295 -6.3995 0 0 666494. 2306.21 0.25 0.50 0.15 -1 -1 0.25 0.0245117 0.0226083 142 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 13.84 vpr 61.18 MiB 0.02 6412 -1 -1 12 0.25 -1 -1 32284 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62652 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 22.3 MiB 0.70 1341 61.2 MiB 0.10 0.00 6.06784 -131.714 -6.06784 6.06784 1.04 0.000454602 0.000373749 0.0202772 0.0169087 28 3612 34 6.55708e+06 325485 500653. 1732.36 9.31 0.212977 0.187902 21310 115450 -1 3028 16 1310 3526 209398 48603 0 0 209398 48603 3526 1998 0 0 12125 9800 0 0 18994 14277 0 0 3526 2326 0 0 86843 9846 0 0 84384 10356 0 0 3526 0 0 2216 3700 4366 25502 0 0 6.30824 6.30824 -151.602 -6.30824 0 0 612192. 2118.31 0.29 0.12 0.13 -1 -1 0.29 0.0301229 0.0275467 180 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 9.63 vpr 61.17 MiB 0.03 6692 -1 -1 13 0.38 -1 -1 32260 -1 -1 30 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62640 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 22.6 MiB 0.53 1207 61.2 MiB 0.21 0.00 6.5609 -125.433 -6.5609 6.5609 1.05 0.00047823 0.00038906 0.041618 0.0341835 36 3341 32 6.55708e+06 361650 612192. 2118.31 4.59 0.219977 0.1933 22750 144809 -1 2503 18 1218 3643 188149 45260 0 0 188149 45260 3643 1678 0 0 12268 9852 0 0 18722 14058 0 0 3643 2060 0 0 73452 8995 0 0 76421 8617 0 0 3643 0 0 2425 4383 4676 30973 0 0 6.9607 6.9607 -144.237 -6.9607 0 0 782063. 2706.10 0.28 0.09 0.14 -1 -1 0.28 0.0283606 0.0257404 195 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 9.45 vpr 61.62 MiB 0.02 6688 -1 -1 14 0.38 -1 -1 32344 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63104 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 23.1 MiB 0.39 1402 61.6 MiB 0.19 0.00 6.9587 -139.321 -6.9587 6.9587 0.90 0.000639208 0.000517621 0.0396309 0.0331964 28 4043 50 6.55708e+06 373705 500653. 1732.36 4.68 0.173234 0.15235 21310 115450 -1 3600 19 1752 5301 432064 117999 0 0 432064 117999 5301 2905 0 0 18363 14829 0 0 29047 21728 0 0 5301 3340 0 0 189264 38944 0 0 184788 36253 0 0 5301 0 0 3549 7788 7984 47816 0 0 7.1991 7.1991 -160.633 -7.1991 0 0 612192. 2118.31 0.25 0.84 0.14 -1 -1 0.25 0.0431976 0.0394377 215 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 15.39 vpr 61.38 MiB 0.02 6612 -1 -1 14 0.27 -1 -1 32404 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62852 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 22.9 MiB 0.57 1362 61.4 MiB 0.12 0.00 6.49016 -128.354 -6.49016 6.49016 0.92 0.000521117 0.000434195 0.0240722 0.0200754 36 3473 45 6.55708e+06 325485 612192. 2118.31 11.18 0.27432 0.241623 22750 144809 -1 2924 18 1231 3895 231142 53346 0 0 231142 53346 3895 1725 0 0 13151 10644 0 0 20721 15336 0 0 3895 2142 0 0 94961 11851 0 0 94519 11648 0 0 3895 0 0 2664 5596 5890 38067 0 0 6.6817 6.6817 -142.967 -6.6817 0 0 782063. 2706.10 0.32 0.12 0.17 -1 -1 0.32 0.0331706 0.0302949 183 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.97 vpr 61.09 MiB 0.02 6496 -1 -1 13 0.46 -1 -1 32600 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62560 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 22.5 MiB 0.34 1392 61.1 MiB 0.21 0.00 6.60776 -134.289 -6.60776 6.60776 1.00 0.000520293 0.000422265 0.0425366 0.0351436 30 3415 38 6.55708e+06 325485 526063. 1820.29 2.05 0.168145 0.147018 21886 126133 -1 2893 17 1277 3846 195080 45357 0 0 195080 45357 3846 1777 0 0 12409 10119 0 0 17601 13330 0 0 3846 2180 0 0 78279 9102 0 0 79099 8849 0 0 3846 0 0 2569 4429 4501 30363 0 0 7.08856 7.08856 -153.85 -7.08856 0 0 666494. 2306.21 0.28 0.40 0.15 -1 -1 0.28 0.0326958 0.0289784 195 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 11.29 vpr 60.92 MiB 0.02 6528 -1 -1 13 0.24 -1 -1 32248 -1 -1 24 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62384 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 22.1 MiB 0.36 1165 60.9 MiB 0.29 0.00 6.5569 -135.001 -6.5569 6.5569 0.91 0.000437646 0.000309754 0.0208373 0.0178458 36 2652 17 6.55708e+06 289320 612192. 2118.31 6.52 0.204513 0.181978 22750 144809 -1 2393 14 889 2320 131716 30187 0 0 131716 30187 2320 1270 0 0 7850 6258 0 0 12074 9015 0 0 2320 1514 0 0 54303 6050 0 0 52849 6080 0 0 2320 0 0 1431 2095 2298 14662 0 0 7.1187 7.1187 -150.958 -7.1187 0 0 782063. 2706.10 0.34 0.31 0.18 -1 -1 0.34 0.0448356 0.0430515 146 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 10.67 vpr 61.63 MiB 0.02 6600 -1 -1 13 0.54 -1 -1 32344 -1 -1 31 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63108 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 22.9 MiB 0.40 1381 61.6 MiB 0.67 0.01 6.69136 -133.069 -6.69136 6.69136 1.02 0.000735642 0.000613349 0.039931 0.0346678 30 4004 42 6.55708e+06 373705 526063. 1820.29 3.87 0.181136 0.161059 21886 126133 -1 3096 18 1516 4357 219759 51594 0 0 219759 51594 4357 2140 0 0 13960 11311 0 0 19441 14660 0 0 4357 2624 0 0 87437 10772 0 0 90207 10087 0 0 4357 0 0 2841 4530 4844 32570 0 0 6.88996 6.88996 -151.512 -6.88996 0 0 666494. 2306.21 0.36 0.88 0.15 -1 -1 0.36 0.0407445 0.0374052 208 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 13.18 vpr 61.47 MiB 0.02 6716 -1 -1 14 0.33 -1 -1 32512 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 22.9 MiB 0.49 1380 61.5 MiB 0.50 0.01 6.25538 -134.831 -6.25538 6.25538 0.96 0.00128885 0.00106535 0.0339009 0.0292988 44 2959 19 6.55708e+06 361650 742403. 2568.87 6.06 0.275464 0.245997 24478 177802 -1 2585 16 996 3534 178190 40469 0 0 178190 40469 3534 1364 0 0 11607 9563 0 0 18124 13330 0 0 3534 1780 0 0 69799 7310 0 0 71592 7122 0 0 3534 0 0 2538 5941 5309 36812 0 0 6.49578 6.49578 -147.612 -6.49578 0 0 937218. 3242.97 0.39 0.81 0.22 -1 -1 0.39 0.0550842 0.0525472 184 181 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 14.06 vpr 61.59 MiB 0.02 6704 -1 -1 12 0.29 -1 -1 32440 -1 -1 32 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63068 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 23.0 MiB 0.42 1495 61.6 MiB 0.46 0.01 6.6373 -134.482 -6.6373 6.6373 0.99 0.000820697 0.000711548 0.0285755 0.0249657 36 3723 19 6.55708e+06 385760 612192. 2118.31 8.07 0.281905 0.254453 22750 144809 -1 3252 16 1333 4004 235966 53039 0 0 235966 53039 4004 1987 0 0 13722 11040 0 0 21398 15973 0 0 4004 2384 0 0 96938 10674 0 0 95900 10981 0 0 4004 0 0 2671 5303 5376 34780 0 0 7.2775 7.2775 -155.628 -7.2775 0 0 782063. 2706.10 0.31 0.31 0.18 -1 -1 0.31 0.0330763 0.0304639 203 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 7.96 vpr 61.22 MiB 0.02 6704 -1 -1 13 0.32 -1 -1 32300 -1 -1 28 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62692 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 22.8 MiB 0.48 1278 61.2 MiB 0.52 0.01 6.23244 -112.435 -6.23244 6.23244 1.06 0.000589043 0.000492655 0.0247428 0.0218622 30 3774 35 6.55708e+06 337540 526063. 1820.29 1.92 0.122257 0.109517 21886 126133 -1 2820 16 1264 3670 195221 44651 0 0 195221 44651 3670 1714 0 0 12040 9737 0 0 16932 12953 0 0 3670 2083 0 0 80740 8921 0 0 78169 9243 0 0 3670 0 0 2406 5424 5230 33698 0 0 6.4433 6.4433 -130.018 -6.4433 0 0 666494. 2306.21 0.30 0.75 0.14 -1 -1 0.30 0.0410298 0.0382372 186 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 9.48 vpr 61.42 MiB 0.03 6676 -1 -1 14 0.47 -1 -1 32088 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62892 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 22.8 MiB 0.66 1591 61.4 MiB 0.83 0.02 7.25822 -142.86 -7.25822 7.25822 1.09 0.000899874 0.000788593 0.0472737 0.0410759 30 4021 29 6.55708e+06 385760 526063. 1820.29 2.36 0.192249 0.172385 21886 126133 -1 3428 19 1513 4570 237127 54864 0 0 237127 54864 4570 2148 0 0 14844 12032 0 0 20957 15968 0 0 4570 2565 0 0 97409 10895 0 0 94777 11256 0 0 4570 0 0 3057 4428 5192 34727 0 0 7.64835 7.64835 -163.474 -7.64835 0 0 666494. 2306.21 0.26 0.45 0.14 -1 -1 0.26 0.0437303 0.039712 220 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 15.65 vpr 61.21 MiB 0.02 6684 -1 -1 11 0.38 -1 -1 32540 -1 -1 29 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62684 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 22.8 MiB 0.44 1169 61.2 MiB 0.08 0.00 5.54984 -107.818 -5.54984 5.54984 1.06 0.000458628 0.000361552 0.0152567 0.0127265 28 3403 43 6.55708e+06 349595 500653. 1732.36 11.47 0.228567 0.203569 21310 115450 -1 2788 15 1174 3727 233012 52365 0 0 233012 52365 3727 1939 0 0 12758 10379 0 0 19903 14792 0 0 3727 2291 0 0 96949 11634 0 0 95948 11330 0 0 3727 0 0 2553 5363 5354 34525 0 0 6.03064 6.03064 -127.695 -6.03064 0 0 612192. 2118.31 0.20 0.10 0.12 -1 -1 0.20 0.0251426 0.0229257 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.81 vpr 61.00 MiB 0.02 6376 -1 -1 13 0.21 -1 -1 32208 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62464 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 22.5 MiB 0.38 1128 61.0 MiB 0.10 0.00 6.2793 -138.533 -6.2793 6.2793 1.04 0.00040211 0.000327297 0.0183499 0.0151305 26 3204 39 6.55708e+06 277265 477104. 1650.88 2.91 0.113173 0.0999373 21022 109990 -1 2662 19 1207 2938 174325 41481 0 0 174325 41481 2938 1761 0 0 10337 8554 0 0 16326 12120 0 0 2938 2013 0 0 72041 8326 0 0 69745 8707 0 0 2938 0 0 1731 2616 2813 17622 0 0 6.70864 6.70864 -158.453 -6.70864 0 0 585099. 2024.56 0.26 0.09 0.13 -1 -1 0.26 0.0243113 0.0220754 142 130 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.18 vpr 61.32 MiB 0.02 6712 -1 -1 14 0.30 -1 -1 32372 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62788 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 22.9 MiB 0.32 1329 61.3 MiB 0.07 0.00 6.57116 -133.256 -6.57116 6.57116 0.87 0.000258417 0.000211758 0.0142618 0.0119941 28 3826 48 6.55708e+06 325485 500653. 1732.36 3.54 0.153982 0.137764 21310 115450 -1 2936 16 1237 3487 201558 46903 0 0 201558 46903 3487 1766 0 0 12220 9929 0 0 18745 14111 0 0 3487 2114 0 0 82884 9344 0 0 80735 9639 0 0 3487 0 0 2250 3967 4224 28286 0 0 7.09116 7.09116 -154.073 -7.09116 0 0 612192. 2118.31 0.24 0.09 0.11 -1 -1 0.24 0.024496 0.0223552 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 22.26 vpr 61.42 MiB 0.02 6576 -1 -1 15 0.48 -1 -1 32764 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62896 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 22.8 MiB 0.75 1605 61.4 MiB 0.13 0.00 7.73501 -162.833 -7.73501 7.73501 1.08 0.000603053 0.000499537 0.0258311 0.0216298 28 4909 48 6.55708e+06 385760 500653. 1732.36 17.42 0.288611 0.256362 21310 115450 -1 3971 16 1826 5023 317297 76047 0 0 317297 76047 5023 2876 0 0 17289 14316 0 0 26489 20074 0 0 5023 3273 0 0 131030 18026 0 0 132443 17482 0 0 5023 0 0 3197 5389 5788 36433 0 0 8.09561 8.09561 -188.653 -8.09561 0 0 612192. 2118.31 0.28 0.15 0.13 -1 -1 0.28 0.0383678 0.0351012 228 227 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 10.44 vpr 60.80 MiB 0.02 6424 -1 -1 11 0.20 -1 -1 32812 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62256 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 22.3 MiB 0.72 1049 60.8 MiB 0.09 0.00 5.47144 -114.161 -5.47144 5.47144 0.97 0.000298011 0.000241238 0.0159891 0.0132613 34 2670 36 6.55708e+06 265210 585099. 2024.56 5.13 0.234453 0.209366 22462 138074 -1 2262 17 892 2628 150384 35253 0 0 150384 35253 2628 1301 0 0 9209 7467 0 0 14395 10786 0 0 2628 1590 0 0 60705 7133 0 0 60819 6976 0 0 2628 0 0 1736 3276 3446 22016 0 0 5.47144 5.47144 -129.113 -5.47144 0 0 742403. 2568.87 0.27 0.48 0.15 -1 -1 0.27 0.0248468 0.0226248 126 123 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 10.76 vpr 61.08 MiB 0.02 6440 -1 -1 12 0.26 -1 -1 31948 -1 -1 26 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62544 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 22.6 MiB 0.52 1224 61.1 MiB 0.30 0.00 5.98944 -127.755 -5.98944 5.98944 1.07 0.000213781 0.000172368 0.0308129 0.025858 32 3316 50 6.55708e+06 313430 554710. 1919.41 4.61 0.207917 0.183112 22174 131602 -1 2904 26 1587 4904 429915 143133 0 0 429915 143133 4904 2688 0 0 16735 13878 0 0 29998 21054 0 0 4904 3237 0 0 186402 52170 0 0 186972 50106 0 0 4904 0 0 3317 5437 6059 37005 0 0 6.70098 6.70098 -153.457 -6.70098 0 0 701300. 2426.64 0.28 1.20 0.16 -1 -1 0.28 0.0357207 0.0324256 157 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 17.31 vpr 61.61 MiB 0.03 6556 -1 -1 12 0.33 -1 -1 32388 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63088 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 22.9 MiB 0.39 1502 61.6 MiB 0.09 0.00 6.2029 -136.791 -6.2029 6.2029 0.82 0.000285421 0.000230384 0.0168469 0.0139115 28 4245 24 6.55708e+06 373705 500653. 1732.36 13.09 0.3072 0.274832 21310 115450 -1 3653 19 1568 4621 310080 72774 0 0 310080 72774 4621 2645 0 0 16310 13533 0 0 25254 19294 0 0 4621 3058 0 0 131137 16934 0 0 128137 17310 0 0 4621 0 0 3053 5953 6071 38066 0 0 6.6837 6.6837 -163.867 -6.6837 0 0 612192. 2118.31 0.24 0.13 0.13 -1 -1 0.24 0.0328902 0.0298308 209 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 12.42 vpr 61.38 MiB 0.02 6616 -1 -1 12 0.28 -1 -1 32316 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62856 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 22.9 MiB 0.44 1436 61.4 MiB 0.13 0.00 6.42844 -135.086 -6.42844 6.42844 1.03 0.000248344 0.000200075 0.0268487 0.0221041 36 3569 20 6.55708e+06 337540 612192. 2118.31 7.06 0.348094 0.31017 22750 144809 -1 3146 20 1438 4454 259470 59423 0 0 259470 59423 4454 2179 0 0 15145 12582 0 0 23606 17556 0 0 4454 2642 0 0 104099 12661 0 0 107712 11803 0 0 4454 0 0 3016 6467 6532 40041 0 0 6.78904 6.78904 -154.648 -6.78904 0 0 782063. 2706.10 0.26 0.12 0.17 -1 -1 0.26 0.0295321 0.0265532 186 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 13.76 vpr 61.68 MiB 0.03 6800 -1 -1 14 0.46 -1 -1 32436 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63156 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 23.2 MiB 0.39 1587 61.7 MiB 0.14 0.00 7.16496 -146.142 -7.16496 7.16496 1.03 0.000626548 0.000526803 0.0271218 0.0227617 36 4114 39 6.55708e+06 421925 612192. 2118.31 7.67 0.366965 0.326153 22750 144809 -1 3497 18 1611 4813 261699 61947 0 0 261699 61947 4813 2235 0 0 16775 13710 0 0 25584 19384 0 0 4813 2766 0 0 103527 12147 0 0 106187 11705 0 0 4813 0 0 3202 5072 6089 37604 0 0 7.52815 7.52815 -165.723 -7.52815 0 0 782063. 2706.10 0.32 0.89 0.15 -1 -1 0.32 0.048435 0.0447034 241 238 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 21.13 vpr 61.20 MiB 0.02 6712 -1 -1 11 0.25 -1 -1 32312 -1 -1 27 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62672 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 22.8 MiB 0.61 1224 61.2 MiB 0.17 0.00 5.26258 -106.392 -5.26258 5.26258 1.03 0.000424644 0.000344498 0.0356027 0.0291254 28 3864 47 6.55708e+06 325485 500653. 1732.36 16.96 0.318987 0.282997 21310 115450 -1 2977 21 1521 4849 307659 68484 0 0 307659 68484 4849 2421 0 0 16315 13515 0 0 25181 18572 0 0 4849 2966 0 0 130190 15569 0 0 126275 15441 0 0 4849 0 0 3328 7610 7788 48137 0 0 5.86358 5.86358 -129.178 -5.86358 0 0 612192. 2118.31 0.24 0.09 0.10 -1 -1 0.24 0.0199849 0.017995 176 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.14 vpr 60.62 MiB 0.02 6428 -1 -1 11 0.23 -1 -1 32196 -1 -1 25 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62076 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 22.1 MiB 0.30 932 60.6 MiB 0.07 0.00 5.50038 -100.346 -5.50038 5.50038 1.05 0.000338205 0.000276661 0.0145315 0.012224 26 2460 19 6.55708e+06 301375 477104. 1650.88 2.39 0.0934143 0.0826421 21022 109990 -1 2211 17 974 2742 157319 38014 0 0 157319 38014 2742 1508 0 0 9656 7863 0 0 15084 11265 0 0 2742 1777 0 0 62952 7781 0 0 64143 7820 0 0 2742 0 0 1768 2876 3131 20237 0 0 5.98118 5.98118 -119.568 -5.98118 0 0 585099. 2024.56 0.25 0.08 0.13 -1 -1 0.25 0.0223925 0.020365 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 13.66 vpr 61.61 MiB 0.02 6852 -1 -1 13 0.52 -1 -1 32076 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63088 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 23.3 MiB 0.36 1902 61.6 MiB 0.19 0.00 6.42904 -133.695 -6.42904 6.42904 1.03 0.000663912 0.000542908 0.0399111 0.033182 34 5892 44 6.55708e+06 482200 585099. 2024.56 7.06 0.286668 0.251926 22462 138074 -1 4483 37 1998 7100 832035 355296 0 0 832035 355296 7100 3327 0 0 24748 20069 0 0 41670 30480 0 0 7100 4046 0 0 370778 149971 0 0 380639 147403 0 0 7100 0 0 5102 12746 12906 76282 0 0 7.09878 7.09878 -160.096 -7.09878 0 0 742403. 2568.87 0.30 1.48 0.16 -1 -1 0.30 0.0886217 0.0806605 280 278 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.72 vpr 61.06 MiB 0.02 6764 -1 -1 14 0.34 -1 -1 32576 -1 -1 26 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62524 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 22.6 MiB 0.42 1320 61.1 MiB 0.10 0.00 6.88536 -138.325 -6.88536 6.88536 1.01 0.000256519 0.00020852 0.0198881 0.0164043 30 3402 23 6.55708e+06 313430 526063. 1820.29 1.57 0.0967088 0.0853091 21886 126133 -1 2932 18 1364 3940 208419 47587 0 0 208419 47587 3940 2019 0 0 12839 10412 0 0 18308 13822 0 0 3940 2440 0 0 83799 9698 0 0 85593 9196 0 0 3940 0 0 2576 4545 4367 29118 0 0 7.40996 7.40996 -158.368 -7.40996 0 0 666494. 2306.21 0.29 0.31 0.15 -1 -1 0.29 0.0291553 0.0263404 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 6.46 vpr 60.75 MiB 0.02 6476 -1 -1 12 0.17 -1 -1 32008 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62204 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 22.2 MiB 0.31 1161 60.7 MiB 0.12 0.00 6.25538 -137.354 -6.25538 6.25538 0.78 0.000393937 0.000311229 0.020721 0.0166319 34 3170 20 6.55708e+06 325485 585099. 2024.56 3.22 0.121044 0.10586 22462 138074 -1 2645 16 1058 2999 188570 42216 0 0 188570 42216 2999 1667 0 0 10392 8407 0 0 16484 12191 0 0 2999 2041 0 0 76868 9117 0 0 78828 8793 0 0 2999 0 0 1941 3186 3316 21764 0 0 6.49778 6.49778 -155.635 -6.49778 0 0 742403. 2568.87 0.31 0.09 0.13 -1 -1 0.31 0.0236955 0.0216573 144 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 19.89 vpr 61.25 MiB 0.02 6588 -1 -1 13 0.28 -1 -1 32236 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62720 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 22.6 MiB 0.50 1207 61.2 MiB 0.09 0.00 6.7203 -130.556 -6.7203 6.7203 1.04 0.000441503 0.000359748 0.0173467 0.0145332 30 3264 45 6.55708e+06 301375 526063. 1820.29 14.06 0.271468 0.238903 21886 126133 -1 2761 18 1304 3945 219133 51176 0 0 219133 51176 3945 1936 0 0 12952 10777 0 0 18818 14271 0 0 3945 2278 0 0 90649 11073 0 0 88824 10841 0 0 3945 0 0 2641 4533 4602 31447 0 0 6.9607 6.9607 -152.081 -6.9607 0 0 666494. 2306.21 0.34 0.12 0.15 -1 -1 0.34 0.0320469 0.0291675 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.64 vpr 61.50 MiB 0.03 6892 -1 -1 13 0.42 -1 -1 32368 -1 -1 35 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62980 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 22.8 MiB 0.45 1673 61.5 MiB 0.11 0.00 6.5197 -134.644 -6.5197 6.5197 1.04 0.000547552 0.000447672 0.0215805 0.0179947 30 4091 31 6.55708e+06 421925 526063. 1820.29 2.38 0.179484 0.160692 21886 126133 -1 3383 16 1525 4374 209303 49658 0 0 209303 49658 4374 2047 0 0 14253 11205 0 0 19984 15358 0 0 4374 2541 0 0 83539 9105 0 0 82779 9402 0 0 4374 0 0 2849 5330 5070 36265 0 0 6.7601 6.7601 -152.651 -6.7601 0 0 666494. 2306.21 0.19 0.07 0.14 -1 -1 0.19 0.0197173 0.0180229 235 232 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.59 vpr 61.29 MiB 0.02 6648 -1 -1 11 0.28 -1 -1 32272 -1 -1 32 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62756 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 22.7 MiB 0.55 1426 61.3 MiB 0.16 0.00 5.91044 -118.756 -5.91044 5.91044 0.78 0.000499379 0.000402008 0.0310366 0.025426 30 3436 43 6.55708e+06 385760 526063. 1820.29 1.83 0.141151 0.123269 21886 126133 -1 2939 15 1249 4275 209241 48289 0 0 209241 48289 4275 1880 0 0 13793 11229 0 0 19534 14819 0 0 4275 2285 0 0 84735 8896 0 0 82629 9180 0 0 4275 0 0 3026 6571 6059 42849 0 0 6.15084 6.15084 -134.96 -6.15084 0 0 666494. 2306.21 0.28 0.07 0.13 -1 -1 0.28 0.0214893 0.0196078 199 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 7.23 vpr 61.38 MiB 0.03 6680 -1 -1 15 0.44 -1 -1 32772 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62856 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 22.9 MiB 0.42 1410 61.4 MiB 0.20 0.00 7.33722 -149.469 -7.33722 7.33722 1.11 0.000552283 0.000456097 0.0412341 0.034154 36 3941 21 6.55708e+06 349595 612192. 2118.31 2.62 0.172423 0.150567 22750 144809 -1 3220 18 1390 4473 253666 58992 0 0 253666 58992 4473 2118 0 0 15083 12398 0 0 23678 17518 0 0 4473 2667 0 0 99413 12611 0 0 106546 11680 0 0 4473 0 0 3083 5817 6050 39481 0 0 7.81801 7.81801 -168.496 -7.81801 0 0 782063. 2706.10 0.22 0.10 0.11 -1 -1 0.22 0.0290486 0.026475 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 9.29 vpr 61.32 MiB 0.02 6576 -1 -1 13 0.45 -1 -1 32860 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62788 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 22.9 MiB 0.28 1562 61.3 MiB 0.13 0.00 6.49216 -137.708 -6.49216 6.49216 1.09 0.000534022 0.000426008 0.0257998 0.0214345 34 3854 25 6.55708e+06 385760 585099. 2024.56 4.93 0.292197 0.258424 22462 138074 -1 3277 16 1443 4325 252695 57988 0 0 252695 57988 4325 2129 0 0 15046 12478 0 0 23419 17396 0 0 4325 2586 0 0 102936 11655 0 0 102644 11744 0 0 4325 0 0 2882 5579 5670 36792 0 0 6.85276 6.85276 -158.572 -6.85276 0 0 742403. 2568.87 0.31 0.13 0.17 -1 -1 0.31 0.0355543 0.0324972 217 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.57 vpr 60.79 MiB 0.02 6420 -1 -1 12 0.22 -1 -1 31924 -1 -1 29 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62244 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 22.2 MiB 0.48 1153 60.8 MiB 0.10 0.00 5.81778 -125.088 -5.81778 5.81778 1.10 0.000409738 0.000334044 0.0192559 0.0159597 34 2731 25 6.55708e+06 349595 585099. 2024.56 2.27 0.122086 0.107231 22462 138074 -1 2453 17 1113 2856 159910 37895 0 0 159910 37895 2856 1532 0 0 9909 8025 0 0 15268 11529 0 0 2856 1883 0 0 63111 7799 0 0 65910 7127 0 0 2856 0 0 1743 2428 2414 16373 0 0 6.05818 6.05818 -140.45 -6.05818 0 0 742403. 2568.87 0.33 0.09 0.17 -1 -1 0.33 0.0250805 0.0227841 159 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 15.79 vpr 60.91 MiB 0.02 6592 -1 -1 11 0.17 -1 -1 32296 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62376 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 22.3 MiB 0.51 1194 60.9 MiB 0.08 0.00 5.65838 -120.723 -5.65838 5.65838 1.03 0.000399059 0.000325308 0.014448 0.0120719 28 3301 25 6.55708e+06 265210 500653. 1732.36 9.24 0.148233 0.130529 21310 115450 -1 2843 56 2510 8126 927125 417629 0 0 927125 417629 8126 4348 0 0 26571 22387 0 0 48988 32383 0 0 8126 5233 0 0 406859 177587 0 0 428455 175691 0 0 8126 0 0 5616 10554 11492 63114 0 0 5.8692 5.8692 -145.221 -5.8692 0 0 612192. 2118.31 0.30 2.30 0.12 -1 -1 0.30 0.0649109 0.058301 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 8.15 vpr 61.54 MiB 0.02 6712 -1 -1 13 0.36 -1 -1 32388 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63016 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 22.8 MiB 0.34 1539 61.5 MiB 0.07 0.00 6.74584 -137.864 -6.74584 6.74584 0.68 0.000257204 0.000207218 0.0130573 0.0107297 34 3832 23 6.55708e+06 373705 585099. 2024.56 4.65 0.27562 0.244888 22462 138074 -1 3393 21 1797 5644 349754 77574 0 0 349754 77574 5644 2711 0 0 19258 16052 0 0 31458 22591 0 0 5644 3418 0 0 143912 16407 0 0 143838 16395 0 0 5644 0 0 3847 8940 8725 53758 0 0 7.34424 7.34424 -156.794 -7.34424 0 0 742403. 2568.87 0.27 0.13 0.14 -1 -1 0.27 0.0284622 0.0257311 204 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 11.32 vpr 60.87 MiB 0.02 6536 -1 -1 10 0.22 -1 -1 31976 -1 -1 24 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62332 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 22.3 MiB 0.21 1049 60.9 MiB 0.12 0.00 5.00992 -101.498 -5.00992 5.00992 0.93 0.000205506 0.000162335 0.0248921 0.0204583 26 3182 44 6.55708e+06 289320 477104. 1650.88 6.80 0.215243 0.191224 21022 109990 -1 2448 23 1211 3655 336652 112438 0 0 336652 112438 3655 1964 0 0 13072 10947 0 0 21402 15824 0 0 3655 2264 0 0 150136 42002 0 0 144732 39437 0 0 3655 0 0 2444 4838 4879 30800 0 0 5.90478 5.90478 -125.835 -5.90478 0 0 585099. 2024.56 0.29 1.20 0.13 -1 -1 0.29 0.0317733 0.0289421 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.57 vpr 61.05 MiB 0.02 6392 -1 -1 14 0.22 -1 -1 32188 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62512 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 22.4 MiB 0.60 1103 61.0 MiB 0.16 0.00 6.3185 -130.338 -6.3185 6.3185 1.08 0.000414102 0.000336982 0.0300611 0.0249261 30 2810 22 6.55708e+06 289320 526063. 1820.29 1.36 0.102662 0.0896112 21886 126133 -1 2303 16 1036 3018 150656 35963 0 0 150656 35963 3018 1421 0 0 9900 8128 0 0 14177 10737 0 0 3018 1697 0 0 60063 6986 0 0 60480 6994 0 0 3018 0 0 1982 3437 3188 23245 0 0 6.7601 6.7601 -149.594 -6.7601 0 0 666494. 2306.21 0.28 0.08 0.17 -1 -1 0.28 0.0226988 0.0205785 149 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 9.32 vpr 61.16 MiB 0.02 6656 -1 -1 12 0.39 -1 -1 32480 -1 -1 29 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62628 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 22.6 MiB 0.41 1349 61.2 MiB 0.20 0.00 6.2787 -129.822 -6.2787 6.2787 0.85 0.000538067 0.000440394 0.0429275 0.0357083 36 3467 26 6.55708e+06 349595 612192. 2118.31 4.89 0.289764 0.255508 22750 144809 -1 2881 15 1188 3813 214462 49237 0 0 214462 49237 3813 1819 0 0 12944 10642 0 0 20124 14882 0 0 3813 2185 0 0 85592 10108 0 0 88176 9601 0 0 3813 0 0 2625 4931 5381 34502 0 0 6.8797 6.8797 -153.892 -6.8797 0 0 782063. 2706.10 0.32 0.10 0.17 -1 -1 0.32 0.0307247 0.0281917 201 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 12.65 vpr 60.95 MiB 0.02 6548 -1 -1 12 0.20 -1 -1 31928 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62416 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 22.4 MiB 0.42 1060 61.0 MiB 0.08 0.00 5.49898 -119.703 -5.49898 5.49898 0.91 0.000373753 0.000304438 0.014358 0.0119729 28 2897 29 6.55708e+06 277265 500653. 1732.36 8.99 0.204091 0.180369 21310 115450 -1 2479 16 1004 2651 154578 37239 0 0 154578 37239 2651 1526 0 0 9160 7467 0 0 14108 10646 0 0 2651 1739 0 0 64042 7709 0 0 61966 8152 0 0 2651 0 0 1647 2492 2970 18152 0 0 5.85958 5.85958 -140.993 -5.85958 0 0 612192. 2118.31 0.23 0.08 0.12 -1 -1 0.23 0.0209579 0.0190373 141 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 10.00 vpr 61.16 MiB 0.02 6652 -1 -1 12 0.25 -1 -1 32336 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62628 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 22.7 MiB 0.39 1369 61.2 MiB 0.12 0.00 5.75364 -126.276 -5.75364 5.75364 0.86 0.000503128 0.000398119 0.0252648 0.0209516 26 3821 50 6.55708e+06 325485 477104. 1650.88 6.57 0.182646 0.160067 21022 109990 -1 3184 17 1338 4262 278470 61777 0 0 278470 61777 4262 2187 0 0 14714 12130 0 0 23516 17233 0 0 4262 2602 0 0 114723 13683 0 0 116993 13942 0 0 4262 0 0 2924 7485 7658 45657 0 0 6.00932 6.00932 -148.823 -6.00932 0 0 585099. 2024.56 0.22 0.13 0.08 -1 -1 0.22 0.0310619 0.0282596 188 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 12.01 vpr 61.29 MiB 0.03 6724 -1 -1 13 0.38 -1 -1 32704 -1 -1 29 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62756 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 22.8 MiB 0.37 1404 61.3 MiB 0.09 0.00 6.3995 -136.53 -6.3995 6.3995 0.91 0.000383908 0.0003164 0.0178982 0.0150372 36 3500 17 6.55708e+06 349595 612192. 2118.31 6.94 0.289856 0.259321 22750 144809 -1 3046 17 1185 3631 206950 46458 0 0 206950 46458 3631 1792 0 0 12195 9818 0 0 18665 13918 0 0 3631 2130 0 0 81699 9901 0 0 87129 8899 0 0 3631 0 0 2446 4994 4830 32829 0 0 6.8803 6.8803 -158.249 -6.8803 0 0 782063. 2706.10 0.32 0.70 0.17 -1 -1 0.32 0.0345196 0.0318082 179 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.34 vpr 60.93 MiB 0.02 6512 -1 -1 11 0.21 -1 -1 31976 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62392 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 22.5 MiB 0.34 1228 60.9 MiB 0.11 0.00 5.47144 -121.882 -5.47144 5.47144 1.07 0.000387541 0.000311246 0.0206806 0.0169618 34 3113 30 6.55708e+06 325485 585099. 2024.56 2.28 0.120391 0.105236 22462 138074 -1 2728 14 1064 3254 201375 45633 0 0 201375 45633 3254 1617 0 0 11362 9383 0 0 18377 13469 0 0 3254 1965 0 0 82479 9588 0 0 82649 9611 0 0 3254 0 0 2190 3372 3619 23783 0 0 5.83204 5.83204 -139.632 -5.83204 0 0 742403. 2568.87 0.33 0.10 0.17 -1 -1 0.33 0.0238384 0.0218712 148 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 13.01 vpr 61.06 MiB 0.02 6416 -1 -1 13 0.23 -1 -1 32296 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62528 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 22.5 MiB 0.35 1340 61.1 MiB 0.09 0.00 6.26504 -134.276 -6.26504 6.26504 0.67 0.000235945 0.000190998 0.0179931 0.0147271 30 2944 20 6.55708e+06 325485 526063. 1820.29 8.69 0.305075 0.272435 21886 126133 -1 2555 15 1029 2851 136321 32589 0 0 136321 32589 2851 1334 0 0 9178 7350 0 0 13010 9898 0 0 2851 1642 0 0 54691 6183 0 0 53740 6182 0 0 2851 0 0 1822 2708 2697 19548 0 0 6.50544 6.50544 -151.08 -6.50544 0 0 666494. 2306.21 0.29 0.09 0.17 -1 -1 0.29 0.0289138 0.0265368 167 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 13.85 vpr 61.19 MiB 0.03 6656 -1 -1 13 0.35 -1 -1 32328 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62656 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 22.6 MiB 0.26 1237 61.2 MiB 0.17 0.00 6.65156 -130.528 -6.65156 6.65156 1.10 0.000469072 0.000382554 0.0337715 0.0279468 34 3761 34 6.55708e+06 325485 585099. 2024.56 9.64 0.327132 0.290833 22462 138074 -1 3133 17 1375 4132 248757 57234 0 0 248757 57234 4132 2178 0 0 14045 11651 0 0 22444 16283 0 0 4132 2549 0 0 101386 12474 0 0 102618 12099 0 0 4132 0 0 2757 5017 5466 33664 0 0 6.97296 6.97296 -152.277 -6.97296 0 0 742403. 2568.87 0.31 0.12 0.16 -1 -1 0.31 0.0302923 0.0276934 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.31 vpr 60.82 MiB 0.02 6776 -1 -1 11 0.22 -1 -1 32420 -1 -1 28 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62280 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 22.4 MiB 0.44 1126 60.8 MiB 0.10 0.00 5.53052 -104.852 -5.53052 5.53052 1.06 0.000419819 0.000341462 0.0204573 0.0169698 28 3296 32 6.55708e+06 337540 500653. 1732.36 3.26 0.121711 0.107332 21310 115450 -1 2735 22 1200 3436 264334 78886 0 0 264334 78886 3436 1878 0 0 12160 10058 0 0 19024 14396 0 0 3436 2175 0 0 112863 25633 0 0 113415 24746 0 0 3436 0 0 2236 5516 6215 35517 0 0 5.77092 5.77092 -123.565 -5.77092 0 0 612192. 2118.31 0.26 0.12 0.13 -1 -1 0.26 0.0272297 0.0244397 162 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 8.59 vpr 61.37 MiB 0.02 6736 -1 -1 14 0.43 -1 -1 32364 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62840 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 22.8 MiB 0.53 1614 61.4 MiB 0.17 0.00 6.86302 -148.285 -6.86302 6.86302 1.09 0.000614297 0.000493746 0.0334245 0.0275922 36 4093 30 6.55708e+06 385760 612192. 2118.31 4.39 0.250483 0.221229 22750 144809 -1 3505 17 1559 4601 250280 57991 0 0 250280 57991 4601 2188 0 0 15556 12804 0 0 24080 17967 0 0 4601 2730 0 0 100793 11110 0 0 100649 11192 0 0 4601 0 0 3042 4625 6078 35914 0 0 7.34382 7.34382 -167.197 -7.34382 0 0 782063. 2706.10 0.21 0.07 0.11 -1 -1 0.21 0.0217011 0.0198786 225 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 8.58 vpr 60.70 MiB 0.02 6456 -1 -1 12 0.15 -1 -1 32032 -1 -1 28 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62152 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 22.1 MiB 0.41 1161 60.7 MiB 0.16 0.00 5.43224 -115.756 -5.43224 5.43224 1.08 0.000410776 0.000334983 0.032272 0.0270457 34 2679 23 6.55708e+06 337540 585099. 2024.56 4.47 0.205509 0.181027 22462 138074 -1 2360 18 1003 2686 157512 36904 0 0 157512 36904 2686 1419 0 0 9432 7594 0 0 15301 11412 0 0 2686 1710 0 0 62899 7536 0 0 64508 7233 0 0 2686 0 0 1683 2729 2791 18509 0 0 5.79284 5.79284 -132.064 -5.79284 0 0 742403. 2568.87 0.32 0.08 0.16 -1 -1 0.32 0.0244176 0.022174 145 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 6.19 vpr 61.12 MiB 0.02 6644 -1 -1 13 0.31 -1 -1 32376 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62588 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 22.6 MiB 0.48 1403 61.1 MiB 0.09 0.00 6.4407 -128.884 -6.4407 6.4407 1.06 0.000515787 0.000427083 0.0183985 0.0155393 30 3357 22 6.55708e+06 325485 526063. 1820.29 1.83 0.130684 0.11664 21886 126133 -1 2858 16 1241 3771 187271 42972 0 0 187271 42972 3771 1704 0 0 12212 9852 0 0 17369 13099 0 0 3771 2030 0 0 74516 8366 0 0 75632 7921 0 0 3771 0 0 2530 5404 5451 35176 0 0 6.5609 6.5609 -145.15 -6.5609 0 0 666494. 2306.21 0.28 0.10 0.14 -1 -1 0.28 0.0293411 0.0268479 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 6.93 vpr 60.88 MiB 0.02 6556 -1 -1 13 0.20 -1 -1 32368 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62340 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 22.0 MiB 0.53 1093 60.9 MiB 0.13 0.00 6.18864 -134.458 -6.18864 6.18864 1.09 0.000401719 0.000323588 0.026198 0.0216991 28 3468 37 6.55708e+06 301375 500653. 1732.36 2.74 0.12589 0.110983 21310 115450 -1 2772 17 1390 3646 228387 53846 0 0 228387 53846 3646 2164 0 0 12587 10496 0 0 19437 14644 0 0 3646 2508 0 0 93089 12369 0 0 95982 11665 0 0 3646 0 0 2256 3469 3835 22986 0 0 6.90984 6.90984 -163.875 -6.90984 0 0 612192. 2118.31 0.27 0.10 0.14 -1 -1 0.27 0.0236567 0.0215057 146 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 6.24 vpr 61.16 MiB 0.02 6680 -1 -1 12 0.28 -1 -1 32688 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62628 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 22.6 MiB 0.41 1197 61.2 MiB 0.08 0.00 5.9619 -125.936 -5.9619 5.9619 1.09 0.00048307 0.000397118 0.0158723 0.0134436 28 3223 41 6.55708e+06 313430 500653. 1732.36 2.06 0.127648 0.112986 21310 115450 -1 2742 18 1098 3602 192305 45821 0 0 192305 45821 3602 1695 0 0 12334 9880 0 0 19224 14426 0 0 3602 1995 0 0 75911 9092 0 0 77632 8733 0 0 3602 0 0 2504 4973 4993 33808 0 0 6.46258 6.46258 -146.369 -6.46258 0 0 612192. 2118.31 0.28 0.10 0.14 -1 -1 0.28 0.0305355 0.0277862 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 10.05 vpr 61.47 MiB 0.03 6940 -1 -1 15 0.63 -1 -1 32384 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62944 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 23.1 MiB 0.36 1757 61.5 MiB 0.15 0.00 7.33922 -148.898 -7.33922 7.33922 0.75 0.000667936 0.000551955 0.0299065 0.0249996 36 4646 27 6.55708e+06 409870 612192. 2118.31 5.70 0.275578 0.244578 22750 144809 -1 3936 19 1973 6387 373758 83235 0 0 373758 83235 6387 2899 0 0 21375 17748 0 0 34262 24894 0 0 6387 3777 0 0 150913 17240 0 0 154434 16677 0 0 6387 0 0 4414 9770 10411 63434 0 0 7.84955 7.84955 -169.874 -7.84955 0 0 782063. 2706.10 0.33 0.17 0.17 -1 -1 0.33 0.0468613 0.0427849 250 249 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.59 vpr 60.21 MiB 0.02 6336 -1 -1 10 0.11 -1 -1 31560 -1 -1 16 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61652 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 21.6 MiB 0.38 713 60.2 MiB 0.04 0.00 4.40126 -99.1045 -4.40126 4.40126 0.88 0.000142527 0.000114196 0.00778578 0.00642974 28 1883 27 6.55708e+06 192880 500653. 1732.36 1.22 0.057277 0.0499475 21310 115450 -1 1586 19 688 1675 87660 22660 0 0 87660 22660 1675 982 0 0 5931 4905 0 0 8922 6858 0 0 1675 1177 0 0 34507 4269 0 0 34950 4469 0 0 1675 0 0 987 784 1280 8744 0 0 4.48226 4.48226 -112.987 -4.48226 0 0 612192. 2118.31 0.25 0.05 0.12 -1 -1 0.25 0.0140186 0.0125582 92 82 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 7.50 vpr 60.83 MiB 0.02 6348 -1 -1 13 0.22 -1 -1 32116 -1 -1 29 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62288 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 22.2 MiB 0.29 1066 60.8 MiB 0.08 0.00 6.3577 -127.046 -6.3577 6.3577 1.08 0.000444292 0.000370027 0.0163821 0.0137317 28 3122 40 6.55708e+06 349595 500653. 1732.36 3.75 0.165732 0.14528 21310 115450 -1 2435 15 1003 2768 153942 37506 0 0 153942 37506 2768 1656 0 0 9802 7985 0 0 14766 11359 0 0 2768 1963 0 0 61086 7413 0 0 62752 7130 0 0 2768 0 0 1765 2583 2491 17525 0 0 6.7183 6.7183 -147.791 -6.7183 0 0 612192. 2118.31 0.18 0.05 0.09 -1 -1 0.18 0.0136407 0.0124908 150 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 8.12 vpr 60.98 MiB 0.02 6400 -1 -1 12 0.24 -1 -1 32468 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62444 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 22.5 MiB 0.33 1311 61.0 MiB 0.08 0.00 5.74138 -125.798 -5.74138 5.74138 1.04 0.000420796 0.000335939 0.0144698 0.0120028 36 3122 25 6.55708e+06 277265 612192. 2118.31 4.05 0.150887 0.131817 22750 144809 -1 2684 15 1014 3004 160388 37341 0 0 160388 37341 3004 1411 0 0 10322 8255 0 0 15411 11724 0 0 3004 1745 0 0 63951 7409 0 0 64696 6797 0 0 3004 0 0 1990 3651 3181 23038 0 0 6.22218 6.22218 -147.553 -6.22218 0 0 782063. 2706.10 0.33 0.08 0.17 -1 -1 0.33 0.0247438 0.0226382 167 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.39 vpr 60.67 MiB 0.02 6516 -1 -1 9 0.16 -1 -1 32036 -1 -1 25 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62124 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 22.2 MiB 0.22 809 60.7 MiB 0.05 0.00 4.79906 -87.247 -4.79906 4.79906 0.67 0.00016123 0.000130752 0.00919121 0.00757963 26 2172 40 6.55708e+06 301375 477104. 1650.88 3.41 0.168196 0.150525 21022 109990 -1 1860 25 929 2940 235183 78267 0 0 235183 78267 2940 1568 0 0 10152 8395 0 0 17356 12320 0 0 2940 1837 0 0 98242 27523 0 0 103553 26624 0 0 2940 0 0 2011 4133 3992 24840 0 0 5.09292 5.09292 -101.903 -5.09292 0 0 585099. 2024.56 0.27 0.12 0.12 -1 -1 0.27 0.023931 0.0214585 112 103 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 9.18 vpr 61.50 MiB 0.02 6632 -1 -1 12 0.29 -1 -1 32368 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62980 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 22.8 MiB 0.66 1661 61.5 MiB 0.09 0.00 6.47024 -139.776 -6.47024 6.47024 1.10 0.000565811 0.000470976 0.016645 0.0141742 36 4182 23 6.55708e+06 409870 612192. 2118.31 4.76 0.195429 0.173093 22750 144809 -1 3542 17 1602 4603 261510 58956 0 0 261510 58956 4603 2176 0 0 15638 12691 0 0 23828 17982 0 0 4603 2753 0 0 106729 11613 0 0 106109 11741 0 0 4603 0 0 3001 4993 5295 33510 0 0 6.67144 6.67144 -160.301 -6.67144 0 0 782063. 2706.10 0.28 0.10 0.14 -1 -1 0.28 0.0275411 0.0250572 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 10.64 vpr 61.38 MiB 0.03 6712 -1 -1 14 0.41 -1 -1 32608 -1 -1 29 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62852 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 22.7 MiB 0.49 1275 61.4 MiB 0.08 0.00 6.62002 -132.776 -6.62002 6.62002 0.93 0.000295396 0.000236626 0.0172199 0.0140871 34 3916 44 6.55708e+06 349595 585099. 2024.56 6.30 0.301542 0.265555 22462 138074 -1 2902 16 1425 4356 231835 56558 0 0 231835 56558 4356 2139 0 0 14951 12134 0 0 23546 17420 0 0 4356 2614 0 0 88529 11511 0 0 96097 10740 0 0 4356 0 0 2931 5535 5966 38096 0 0 7.28976 7.28976 -158.101 -7.28976 0 0 742403. 2568.87 0.30 0.12 0.16 -1 -1 0.30 0.0358181 0.0330326 204 202 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 6.88 vpr 61.53 MiB 0.03 7172 -1 -1 1 0.02 -1 -1 30228 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 32 32 439 351 1 194 100 17 17 289 -1 unnamed_device 23.1 MiB 0.19 1100 61.5 MiB 0.33 0.01 3.41716 -119.816 -3.41716 3.41716 0.71 0.00038702 0.000315078 0.0363593 0.0294851 32 2404 21 6.64007e+06 452088 554710. 1919.41 3.27 0.19489 0.167687 22834 132086 -1 2152 23 2006 3294 226820 50357 0 0 226820 50357 3294 2427 0 0 11663 9392 0 0 18430 13370 0 0 3294 2612 0 0 98100 10712 0 0 92039 11844 0 0 3294 0 0 1288 1674 1651 11827 0 0 3.81983 3.81983 -145.136 -3.81983 0 0 701300. 2426.64 0.31 0.11 0.16 -1 -1 0.31 0.0268335 0.0238343 153 80 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.54 vpr 61.59 MiB 0.03 6992 -1 -1 1 0.02 -1 -1 30112 -1 -1 23 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63064 30 32 412 333 1 186 85 17 17 289 -1 unnamed_device 23.0 MiB 0.25 915 61.6 MiB 0.18 0.00 3.62376 -109.679 -3.62376 3.62376 1.01 0.000308984 0.00025078 0.0274391 0.0226387 32 2320 23 6.64007e+06 288834 554710. 1919.41 0.99 0.0900292 0.0772967 22834 132086 -1 1929 22 1742 2904 180008 43161 0 0 180008 43161 2904 2149 0 0 10254 8439 0 0 16230 11844 0 0 2904 2282 0 0 73147 9528 0 0 74569 8919 0 0 2904 0 0 1162 1087 1052 8885 0 0 4.00623 4.00623 -136.276 -4.00623 0 0 701300. 2426.64 0.21 0.06 0.16 -1 -1 0.21 0.0137094 0.0120802 142 78 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 9.05 vpr 61.70 MiB 0.02 6932 -1 -1 1 0.02 -1 -1 30020 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63180 32 32 388 310 1 186 99 17 17 289 -1 unnamed_device 22.9 MiB 0.13 1030 61.7 MiB 0.19 0.01 3.13925 -109.14 -3.13925 3.13925 1.06 0.000382998 0.000308991 0.0202963 0.0165565 26 2974 34 6.64007e+06 439530 477104. 1650.88 5.47 0.199602 0.174761 21682 110474 -1 2347 21 1505 2484 210736 44701 0 0 210736 44701 2484 1823 0 0 8855 7202 0 0 13184 10118 0 0 2484 1986 0 0 96425 10737 0 0 87304 12835 0 0 2484 0 0 979 1446 1842 10861 0 0 3.65863 3.65863 -139.334 -3.65863 0 0 585099. 2024.56 0.24 0.08 0.11 -1 -1 0.24 0.0194768 0.017204 142 50 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 6.29 vpr 61.54 MiB 0.03 6944 -1 -1 1 0.02 -1 -1 30080 -1 -1 24 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63016 29 32 347 271 1 184 85 17 17 289 -1 unnamed_device 22.9 MiB 0.08 759 61.5 MiB 0.10 0.00 3.70576 -104.595 -3.70576 3.70576 0.95 0.000179464 0.000144159 0.012118 0.0100883 30 2132 22 6.64007e+06 301392 526063. 1820.29 3.23 0.11927 0.103003 22546 126617 -1 1674 21 1432 2560 148150 35490 0 0 148150 35490 2560 1861 0 0 8342 6497 0 0 10974 8671 0 0 2560 2054 0 0 59521 9011 0 0 64193 7396 0 0 2560 0 0 1128 1382 1147 9347 0 0 3.60423 3.60423 -124.371 -3.60423 0 0 666494. 2306.21 0.28 0.08 0.13 -1 -1 0.28 0.0215629 0.0192574 139 25 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 5.10 vpr 61.63 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 29848 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63108 32 32 377 289 1 195 86 17 17 289 -1 unnamed_device 22.7 MiB 0.19 1122 61.6 MiB 0.25 0.01 3.30796 -119.286 -3.30796 3.30796 1.11 0.00037603 0.000302527 0.0294577 0.0241732 32 2647 21 6.64007e+06 276276 554710. 1919.41 1.23 0.101902 0.0882208 22834 132086 -1 2251 21 1908 3492 228048 50389 0 0 228048 50389 3492 2407 0 0 11956 9760 0 0 18770 13620 0 0 3492 2561 0 0 101447 10126 0 0 88891 11915 0 0 3492 0 0 1584 1663 1357 11986 0 0 3.73543 3.73543 -145.65 -3.73543 0 0 701300. 2426.64 0.32 0.14 0.16 -1 -1 0.32 0.0318117 0.0290432 153 31 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.63 vpr 61.66 MiB 0.02 7000 -1 -1 1 0.02 -1 -1 29940 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63144 32 32 403 317 1 199 102 17 17 289 -1 unnamed_device 23.0 MiB 0.12 1068 61.7 MiB 0.31 0.01 3.2747 -105.872 -3.2747 3.2747 1.06 0.00038456 0.000307278 0.0324065 0.0265261 32 2316 23 6.64007e+06 477204 554710. 1919.41 0.95 0.0787803 0.0666737 22834 132086 -1 2075 19 1296 1960 134409 31185 0 0 134409 31185 1960 1458 0 0 7299 5745 0 0 10924 8378 0 0 1960 1578 0 0 54864 7373 0 0 57402 6653 0 0 1960 0 0 664 728 938 6372 0 0 2.96077 2.96077 -115.374 -2.96077 0 0 701300. 2426.64 0.26 0.06 0.13 -1 -1 0.26 0.0182507 0.0161693 156 61 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 6.37 vpr 60.80 MiB 0.02 6752 -1 -1 1 0.01 -1 -1 30032 -1 -1 20 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62260 27 32 275 232 1 135 79 17 17 289 -1 unnamed_device 22.2 MiB 0.12 538 60.8 MiB 0.14 0.00 2.7079 -78.7483 -2.7079 2.7079 1.05 0.000270954 0.000219184 0.0184242 0.0150761 28 1615 19 6.64007e+06 251160 500653. 1732.36 2.90 0.105598 0.0898894 21970 115934 -1 1327 22 941 1617 107897 26333 0 0 107897 26333 1617 1203 0 0 5566 4513 0 0 8483 6621 0 0 1617 1271 0 0 46062 6383 0 0 44552 6342 0 0 1617 0 0 676 874 795 5666 0 0 2.81697 2.81697 -96.5251 -2.81697 0 0 612192. 2118.31 0.28 0.06 0.13 -1 -1 0.28 0.01706 0.0150882 100 26 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 6.91 vpr 61.50 MiB 0.03 7208 -1 -1 1 0.01 -1 -1 29944 -1 -1 34 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62980 31 32 319 244 1 185 97 17 17 289 -1 unnamed_device 23.1 MiB 0.10 955 61.5 MiB 0.20 0.00 2.9483 -93.7833 -2.9483 2.9483 1.09 0.000309145 0.000262631 0.0246561 0.0208649 26 2654 26 6.64007e+06 426972 477104. 1650.88 3.32 0.139456 0.121304 21682 110474 -1 2190 22 1246 2093 146026 33004 0 0 146026 33004 2093 1516 0 0 7279 5742 0 0 11767 8588 0 0 2093 1651 0 0 63823 7475 0 0 58971 8032 0 0 2093 0 0 847 1410 1383 9221 0 0 2.89397 2.89397 -109.865 -2.89397 0 0 585099. 2024.56 0.24 0.06 0.14 -1 -1 0.24 0.0169441 0.0150093 140 -1 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 5.89 vpr 61.32 MiB 0.02 6884 -1 -1 1 0.02 -1 -1 29852 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62788 31 32 340 294 1 147 80 17 17 289 -1 unnamed_device 22.5 MiB 0.11 771 61.3 MiB 0.11 0.00 2.69519 -86.0827 -2.69519 2.69519 1.08 0.000163251 0.000127936 0.0155058 0.012516 30 1767 25 6.64007e+06 213486 526063. 1820.29 2.41 0.10974 0.0935457 22546 126617 -1 1585 16 797 1283 78616 18060 0 0 78616 18060 1283 983 0 0 4320 3390 0 0 5472 4482 0 0 1283 1080 0 0 33258 4141 0 0 33000 3984 0 0 1283 0 0 486 462 470 3781 0 0 2.63877 2.63877 -100.848 -2.63877 0 0 666494. 2306.21 0.27 0.05 0.14 -1 -1 0.27 0.0160607 0.0143456 106 81 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.10 vpr 61.46 MiB 0.02 6816 -1 -1 1 0.01 -1 -1 29780 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62940 32 32 315 257 1 162 81 17 17 289 -1 unnamed_device 22.7 MiB 0.22 698 61.5 MiB 0.18 0.00 2.7959 -98.3333 -2.7959 2.7959 1.08 0.000315901 0.000255182 0.0272143 0.0222446 32 2108 27 6.64007e+06 213486 554710. 1919.41 1.27 0.0830394 0.0707465 22834 132086 -1 1660 25 1577 2472 181361 43622 0 0 181361 43622 2472 1915 0 0 9076 7514 0 0 15385 11320 0 0 2472 2081 0 0 75748 10288 0 0 76208 10504 0 0 2472 0 0 895 821 1238 7960 0 0 3.11837 3.11837 -120.808 -3.11837 0 0 701300. 2426.64 0.29 0.09 0.15 -1 -1 0.29 0.0225477 0.0200156 121 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.82 vpr 61.18 MiB 0.02 6828 -1 -1 1 0.01 -1 -1 29920 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62648 30 32 328 276 1 151 80 17 17 289 -1 unnamed_device 22.4 MiB 0.16 651 61.2 MiB 0.15 0.00 2.80139 -90.5786 -2.80139 2.80139 1.09 0.000466118 0.000395613 0.022329 0.0190719 30 1578 20 6.64007e+06 226044 526063. 1820.29 2.30 0.114036 0.0982231 22546 126617 -1 1344 17 902 1337 66616 17148 0 0 66616 17148 1337 1006 0 0 4493 3354 0 0 5696 4575 0 0 1337 1103 0 0 27028 3689 0 0 26725 3421 0 0 1337 0 0 435 340 450 3738 0 0 2.92897 2.92897 -109.002 -2.92897 0 0 666494. 2306.21 0.30 0.05 0.15 -1 -1 0.30 0.0184476 0.0165871 110 58 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.35 vpr 61.24 MiB 0.02 6888 -1 -1 1 0.02 -1 -1 30112 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62712 32 32 332 281 1 156 93 17 17 289 -1 unnamed_device 22.5 MiB 0.13 753 61.2 MiB 0.14 0.00 2.9171 -93.6519 -2.9171 2.9171 0.83 0.000348471 0.00028623 0.0151174 0.0125735 28 2044 22 6.64007e+06 364182 500653. 1732.36 1.13 0.0700656 0.0603943 21970 115934 -1 1863 21 1143 1746 127598 29416 0 0 127598 29416 1746 1294 0 0 6135 5083 0 0 9270 7009 0 0 1746 1396 0 0 54702 7498 0 0 53999 7136 0 0 1746 0 0 603 737 788 6034 0 0 2.87377 2.87377 -116.187 -2.87377 0 0 612192. 2118.31 0.25 0.09 0.13 -1 -1 0.25 0.0226643 0.0202205 114 57 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.07 vpr 61.53 MiB 0.03 6984 -1 -1 1 0.02 -1 -1 29956 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 32 32 387 306 1 188 98 17 17 289 -1 unnamed_device 22.8 MiB 0.32 954 61.5 MiB 0.35 0.01 2.7749 -98.746 -2.7749 2.7749 0.92 0.0005757 0.000490463 0.0508283 0.0442094 32 2286 23 6.64007e+06 426972 554710. 1919.41 1.12 0.127581 0.111771 22834 132086 -1 1932 21 1689 2854 190419 42468 0 0 190419 42468 2854 1996 0 0 9986 8112 0 0 15676 11423 0 0 2854 2146 0 0 85432 8511 0 0 73617 10280 0 0 2854 0 0 1165 1412 1402 10301 0 0 2.83157 2.83157 -116.812 -2.83157 0 0 701300. 2426.64 0.31 0.10 0.16 -1 -1 0.31 0.0268608 0.0240205 145 55 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 7.08 vpr 61.61 MiB 0.03 6856 -1 -1 1 0.02 -1 -1 29972 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63084 32 32 408 320 1 200 100 17 17 289 -1 unnamed_device 22.9 MiB 0.31 1013 61.6 MiB 0.21 0.00 3.39516 -119.001 -3.39516 3.39516 0.99 0.000268031 0.000213277 0.0222028 0.018016 28 2699 22 6.64007e+06 452088 500653. 1732.36 3.39 0.153109 0.131632 21970 115934 -1 2331 23 1781 2828 196906 43861 0 0 196906 43861 2828 2095 0 0 9782 7863 0 0 14215 10959 0 0 2828 2233 0 0 89368 9235 0 0 77885 11476 0 0 2828 0 0 1047 1310 1348 9447 0 0 3.89483 3.89483 -151.893 -3.89483 0 0 612192. 2118.31 0.21 0.11 0.08 -1 -1 0.21 0.0303031 0.0269862 158 60 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.24 vpr 61.02 MiB 0.02 6836 -1 -1 1 0.01 -1 -1 29892 -1 -1 19 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62488 29 32 276 232 1 145 80 17 17 289 -1 unnamed_device 22.4 MiB 0.14 821 61.0 MiB 0.14 0.00 2.7049 -87.559 -2.7049 2.7049 0.92 0.000352382 0.000292275 0.0177222 0.0145495 32 1851 20 6.64007e+06 238602 554710. 1919.41 0.96 0.0629561 0.0540188 22834 132086 -1 1700 17 963 1651 101590 24303 0 0 101590 24303 1651 1194 0 0 5997 4976 0 0 9388 7043 0 0 1651 1447 0 0 39865 5173 0 0 43038 4470 0 0 1651 0 0 688 607 489 5039 0 0 2.82977 2.82977 -102.89 -2.82977 0 0 701300. 2426.64 0.26 0.06 0.14 -1 -1 0.26 0.0137708 0.0121143 108 21 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.69 vpr 61.71 MiB 0.03 7040 -1 -1 1 0.02 -1 -1 29896 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63192 32 32 402 316 1 192 86 17 17 289 -1 unnamed_device 22.8 MiB 0.18 1072 61.7 MiB 0.27 0.01 2.82639 -103.319 -2.82639 2.82639 1.01 0.000376386 0.000303046 0.0343333 0.0282961 32 2497 23 6.64007e+06 276276 554710. 1919.41 1.16 0.105757 0.0909412 22834 132086 -1 2186 19 1688 2880 202615 45984 0 0 202615 45984 2880 2132 0 0 10192 8477 0 0 16116 11986 0 0 2880 2258 0 0 87718 10456 0 0 82829 10675 0 0 2880 0 0 1192 1288 1330 9956 0 0 3.08217 3.08217 -126.881 -3.08217 0 0 701300. 2426.64 0.27 0.08 0.13 -1 -1 0.27 0.0218194 0.0195431 148 60 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 6.13 vpr 61.73 MiB 0.02 6972 -1 -1 1 0.01 -1 -1 29948 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63216 32 32 384 304 1 185 100 17 17 289 -1 unnamed_device 23.0 MiB 0.20 976 61.7 MiB 0.13 0.00 2.7849 -100.981 -2.7849 2.7849 1.00 0.000209843 0.000169857 0.0147 0.011981 28 2255 23 6.64007e+06 452088 500653. 1732.36 2.86 0.142118 0.12309 21970 115934 -1 1986 23 1474 2257 150863 35103 0 0 150863 35103 2257 1677 0 0 8033 6364 0 0 12180 9489 0 0 2257 1793 0 0 66088 7552 0 0 60048 8228 0 0 2257 0 0 783 994 1020 7462 0 0 2.87197 2.87197 -117.45 -2.87197 0 0 612192. 2118.31 0.26 0.08 0.13 -1 -1 0.26 0.0242052 0.0213753 144 54 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.92 vpr 61.30 MiB 0.02 6956 -1 -1 1 0.02 -1 -1 29780 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62772 32 32 340 285 1 162 95 17 17 289 -1 unnamed_device 22.4 MiB 0.11 891 61.3 MiB 0.14 0.00 2.29764 -86.3152 -2.29764 2.29764 1.06 0.000187286 0.000144245 0.017077 0.0136416 28 1968 21 6.64007e+06 389298 500653. 1732.36 0.78 0.0633862 0.0535485 21970 115934 -1 1798 16 969 1509 99146 23150 0 0 99146 23150 1509 1003 0 0 5400 4356 0 0 7911 6259 0 0 1509 1148 0 0 42067 5253 0 0 40750 5131 0 0 1509 0 0 540 691 744 5406 0 0 2.15051 2.15051 -98.5041 -2.15051 0 0 612192. 2118.31 0.22 0.06 0.11 -1 -1 0.22 0.016809 0.015002 119 62 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 5.53 vpr 60.39 MiB 0.02 6664 -1 -1 1 0.02 -1 -1 29724 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61840 30 32 229 211 1 119 77 17 17 289 -1 unnamed_device 21.8 MiB 0.06 487 60.4 MiB 0.11 0.00 2.12244 -66.9714 -2.12244 2.12244 1.08 0.000233506 0.000185339 0.0166549 0.0134377 30 1250 20 6.64007e+06 188370 526063. 1820.29 2.07 0.0934051 0.0799796 22546 126617 -1 1035 17 570 818 46819 12291 0 0 46819 12291 818 664 0 0 2893 2158 0 0 3647 3016 0 0 818 718 0 0 19284 2820 0 0 19359 2915 0 0 818 0 0 248 122 248 2030 0 0 1.94311 1.94311 -77.2256 -1.94311 0 0 666494. 2306.21 0.21 0.03 0.15 -1 -1 0.21 0.00847642 0.00754278 85 29 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 6.15 vpr 61.51 MiB 0.02 6904 -1 -1 1 0.01 -1 -1 29996 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62984 31 32 337 282 1 154 80 17 17 289 -1 unnamed_device 22.7 MiB 0.28 755 61.5 MiB 0.14 0.00 3.41785 -100.807 -3.41785 3.41785 1.06 0.000409841 0.000346043 0.0203072 0.0169787 28 1945 18 6.64007e+06 213486 500653. 1732.36 2.66 0.140978 0.121044 21970 115934 -1 1701 14 699 1013 69094 16628 0 0 69094 16628 1013 858 0 0 3681 2932 0 0 5195 4235 0 0 1013 901 0 0 29347 3982 0 0 28845 3720 0 0 1013 0 0 314 274 231 2546 0 0 3.35222 3.35222 -119.28 -3.35222 0 0 612192. 2118.31 0.24 0.05 0.11 -1 -1 0.24 0.0151488 0.013738 113 55 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 6.83 vpr 61.43 MiB 0.02 7112 -1 -1 1 0.02 -1 -1 29840 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62908 32 32 367 284 1 192 100 17 17 289 -1 unnamed_device 22.6 MiB 0.11 955 61.4 MiB 0.14 0.00 3.37436 -111.936 -3.37436 3.37436 1.06 0.000195925 0.000148588 0.0162091 0.0133168 32 2559 24 6.64007e+06 452088 554710. 1919.41 3.30 0.137439 0.118347 22834 132086 -1 2084 20 1725 2505 198618 45221 0 0 198618 45221 2505 1904 0 0 9248 7610 0 0 14283 11082 0 0 2505 2088 0 0 83108 11842 0 0 86969 10695 0 0 2505 0 0 780 967 921 7631 0 0 3.67183 3.67183 -138.614 -3.67183 0 0 701300. 2426.64 0.30 0.09 0.15 -1 -1 0.30 0.022551 0.0202143 147 31 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.62 vpr 62.06 MiB 0.03 7064 -1 -1 1 0.01 -1 -1 30308 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 461 376 1 196 102 17 17 289 -1 unnamed_device 23.2 MiB 0.19 1110 62.1 MiB 0.24 0.01 3.01205 -104.824 -3.01205 3.01205 0.95 0.000506355 0.000428095 0.0277414 0.0228888 26 2579 22 6.64007e+06 477204 477104. 1650.88 1.39 0.111045 0.0964817 21682 110474 -1 2274 23 1635 2629 170076 39523 0 0 170076 39523 2629 1851 0 0 9510 7709 0 0 14330 10907 0 0 2629 2080 0 0 71376 8435 0 0 69602 8541 0 0 2629 0 0 994 1244 1174 8991 0 0 3.69763 3.69763 -136.326 -3.69763 0 0 585099. 2024.56 0.19 0.06 0.09 -1 -1 0.19 0.0193355 0.0170147 150 108 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 6.51 vpr 60.41 MiB 0.02 6816 -1 -1 1 0.01 -1 -1 29880 -1 -1 17 26 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61860 26 32 205 193 1 109 75 17 17 289 -1 unnamed_device 21.9 MiB 0.12 456 60.4 MiB 0.10 0.00 2.13964 -56.955 -2.13964 2.13964 1.11 0.000199338 0.000158218 0.0146022 0.0117899 32 1141 21 6.64007e+06 213486 554710. 1919.41 2.95 0.0934406 0.0790544 22834 132086 -1 1004 20 633 1003 65387 16298 0 0 65387 16298 1003 786 0 0 3866 3244 0 0 5734 4440 0 0 1003 833 0 0 26542 3546 0 0 27239 3449 0 0 1003 0 0 370 385 421 3185 0 0 2.01111 2.01111 -69.2763 -2.01111 0 0 701300. 2426.64 0.32 0.05 0.16 -1 -1 0.32 0.0125058 0.0110778 77 21 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 6.58 vpr 61.36 MiB 0.02 6900 -1 -1 1 0.02 -1 -1 29744 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62832 32 32 334 252 1 187 86 17 17 289 -1 unnamed_device 22.9 MiB 0.09 1087 61.4 MiB 0.22 0.01 3.59776 -116.864 -3.59776 3.59776 1.11 0.000401941 0.000337112 0.026438 0.0221237 30 2408 20 6.64007e+06 276276 526063. 1820.29 2.90 0.149339 0.130266 22546 126617 -1 2068 19 1222 2156 132366 29362 0 0 132366 29362 2156 1719 0 0 7177 5477 0 0 9193 7432 0 0 2156 1865 0 0 59002 6048 0 0 52682 6821 0 0 2156 0 0 934 982 1143 7815 0 0 3.65462 3.65462 -135.53 -3.65462 0 0 666494. 2306.21 0.29 0.13 0.14 -1 -1 0.29 0.0274762 0.0250972 138 -1 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.22 vpr 60.72 MiB 0.02 6552 -1 -1 1 0.01 -1 -1 29652 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62176 32 32 200 183 1 122 77 17 17 289 -1 unnamed_device 22.2 MiB 0.03 736 60.7 MiB 0.12 0.00 1.86653 -70.8417 -1.86653 1.86653 1.04 0.000189457 0.000153091 0.0137249 0.0111893 26 1572 17 6.64007e+06 163254 477104. 1650.88 1.06 0.0536552 0.0463189 21682 110474 -1 1441 16 648 867 73939 16808 0 0 73939 16808 867 743 0 0 3397 2720 0 0 4670 3753 0 0 867 793 0 0 32036 4433 0 0 32102 4366 0 0 867 0 0 219 131 203 1914 0 0 2.03031 2.03031 -88.3894 -2.03031 0 0 585099. 2024.56 0.25 0.04 0.12 -1 -1 0.25 0.0100058 0.00893825 81 -1 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.88 vpr 61.77 MiB 0.02 6976 -1 -1 1 0.02 -1 -1 30088 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63252 32 32 377 289 1 194 97 17 17 289 -1 unnamed_device 22.9 MiB 0.10 1096 61.8 MiB 0.27 0.01 3.34716 -118.178 -3.34716 3.34716 0.87 0.000395812 0.000322633 0.0293071 0.023898 32 2571 23 6.64007e+06 414414 554710. 1919.41 1.28 0.111949 0.0975516 22834 132086 -1 2155 22 1989 3038 204327 45550 0 0 204327 45550 3038 2408 0 0 10373 8426 0 0 16932 12101 0 0 3038 2557 0 0 87778 9598 0 0 83168 10460 0 0 3038 0 0 1049 1308 1291 9478 0 0 3.92603 3.92603 -145.492 -3.92603 0 0 701300. 2426.64 0.32 0.10 0.16 -1 -1 0.32 0.0264883 0.0238546 151 21 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.94 vpr 61.25 MiB 0.03 6792 -1 -1 1 0.02 -1 -1 29832 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62720 32 32 338 254 1 196 100 17 17 289 -1 unnamed_device 22.7 MiB 0.11 1091 61.2 MiB 0.30 0.01 3.1105 -102.688 -3.1105 3.1105 1.10 0.000706712 0.000637805 0.0275814 0.0232804 32 2331 21 6.64007e+06 452088 554710. 1919.41 1.18 0.0879024 0.0760869 22834 132086 -1 2124 18 1264 2142 142242 33739 0 0 142242 33739 2142 1556 0 0 7895 6457 0 0 12767 9847 0 0 2142 1717 0 0 59795 6889 0 0 57501 7273 0 0 2142 0 0 878 1085 1121 8088 0 0 3.00797 3.00797 -118.01 -3.00797 0 0 701300. 2426.64 0.27 0.07 0.09 -1 -1 0.27 0.0178637 0.0158441 150 -1 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.11 vpr 62.01 MiB 0.03 7220 -1 -1 1 0.02 -1 -1 30060 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63500 32 32 408 320 1 197 101 17 17 289 -1 unnamed_device 23.3 MiB 0.12 1092 62.0 MiB 0.26 0.01 3.43916 -121.742 -3.43916 3.43916 1.08 0.000407101 0.000332403 0.0282009 0.0232829 32 2717 23 6.64007e+06 464646 554710. 1919.41 1.20 0.101835 0.0879829 22834 132086 -1 2334 21 1835 3072 218015 49206 0 0 218015 49206 3072 2272 0 0 11056 9247 0 0 17277 12764 0 0 3072 2435 0 0 91785 11407 0 0 91753 11081 0 0 3072 0 0 1237 1464 1342 11019 0 0 3.87763 3.87763 -146.699 -3.87763 0 0 701300. 2426.64 0.29 0.10 0.15 -1 -1 0.29 0.0272527 0.0246208 155 54 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 5.63 vpr 61.18 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 29872 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62648 32 32 295 247 1 149 80 17 17 289 -1 unnamed_device 22.8 MiB 0.09 909 61.2 MiB 0.13 0.00 2.45379 -88.4854 -2.45379 2.45379 0.88 0.000261413 0.000212211 0.0173351 0.0142159 26 2256 23 6.64007e+06 200928 477104. 1650.88 2.37 0.102683 0.088174 21682 110474 -1 1906 18 1096 1769 127604 28445 0 0 127604 28445 1769 1409 0 0 6364 5017 0 0 9428 7235 0 0 1769 1611 0 0 53519 6893 0 0 54755 6280 0 0 1769 0 0 673 836 778 5620 0 0 2.88697 2.88697 -115.364 -2.88697 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0174686 0.0155666 107 31 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 6.52 vpr 60.84 MiB 0.02 6924 -1 -1 1 0.02 -1 -1 29884 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62304 30 32 299 247 1 154 80 17 17 289 -1 unnamed_device 22.4 MiB 0.22 761 60.8 MiB 0.15 0.00 3.0263 -93.6804 -3.0263 3.0263 0.80 0.000377066 0.000316771 0.0187044 0.0154207 32 1781 23 6.64007e+06 226044 554710. 1919.41 3.36 0.122038 0.104603 22834 132086 -1 1608 21 1290 1860 128125 29816 0 0 128125 29816 1860 1585 0 0 6606 5069 0 0 10199 7631 0 0 1860 1677 0 0 53077 7221 0 0 54523 6633 0 0 1860 0 0 570 703 667 5312 0 0 2.92777 2.92777 -111.072 -2.92777 0 0 701300. 2426.64 0.27 0.06 0.15 -1 -1 0.27 0.0166082 0.0147727 112 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.41 vpr 60.85 MiB 0.02 6748 -1 -1 1 0.02 -1 -1 29864 -1 -1 20 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62312 28 32 283 237 1 150 80 17 17 289 -1 unnamed_device 22.2 MiB 0.11 804 60.9 MiB 0.13 0.00 2.7207 -86.5681 -2.7207 2.7207 0.96 0.000286505 0.000241276 0.0170135 0.0141198 32 1883 21 6.64007e+06 251160 554710. 1919.41 1.05 0.0672858 0.0579929 22834 132086 -1 1643 22 1212 2108 139168 31701 0 0 139168 31701 2108 1613 0 0 7272 5910 0 0 11502 8274 0 0 2108 1737 0 0 57912 7324 0 0 58266 6843 0 0 2108 0 0 896 903 930 7067 0 0 3.07237 3.07237 -106.011 -3.07237 0 0 701300. 2426.64 0.26 0.06 0.16 -1 -1 0.26 0.0140857 0.0124153 107 27 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 6.33 vpr 61.47 MiB 0.02 6784 -1 -1 1 0.02 -1 -1 29800 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 32 32 284 226 1 166 82 17 17 289 -1 unnamed_device 22.8 MiB 0.10 837 61.5 MiB 0.16 0.00 2.8039 -100.005 -2.8039 2.8039 1.10 0.000326487 0.000269832 0.018887 0.0156171 30 2027 23 6.64007e+06 226044 526063. 1820.29 2.79 0.141089 0.123383 22546 126617 -1 1693 20 1123 1857 108376 25099 0 0 108376 25099 1857 1238 0 0 6096 4833 0 0 8138 6373 0 0 1857 1364 0 0 48325 4933 0 0 42103 6358 0 0 1857 0 0 734 489 886 5946 0 0 2.94077 2.94077 -119.728 -2.94077 0 0 666494. 2306.21 0.31 0.07 0.15 -1 -1 0.31 0.0208795 0.0188271 125 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 6.26 vpr 61.29 MiB 0.02 6836 -1 -1 1 0.01 -1 -1 30044 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62760 31 32 305 251 1 162 94 17 17 289 -1 unnamed_device 22.5 MiB 0.07 897 61.3 MiB 0.19 0.01 2.7427 -95.4839 -2.7427 2.7427 1.12 0.00044311 0.000365184 0.020571 0.017214 26 2272 18 6.64007e+06 389298 477104. 1650.88 2.77 0.127803 0.111485 21682 110474 -1 1903 20 1327 2206 162521 36360 0 0 162521 36360 2206 1642 0 0 7989 6712 0 0 12106 9129 0 0 2206 1792 0 0 71263 8181 0 0 66751 8904 0 0 2206 0 0 879 1216 1084 8557 0 0 2.68277 2.68277 -111.639 -2.68277 0 0 585099. 2024.56 0.24 0.08 0.11 -1 -1 0.24 0.0191968 0.0172523 119 26 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 6.22 vpr 61.52 MiB 0.02 7088 -1 -1 1 0.02 -1 -1 29832 -1 -1 31 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62996 29 32 316 268 1 154 92 17 17 289 -1 unnamed_device 22.8 MiB 0.16 790 61.5 MiB 0.13 0.00 2.26464 -76.7421 -2.26464 2.26464 0.78 0.000174546 0.000136567 0.0147682 0.011715 32 1680 20 6.64007e+06 389298 554710. 1919.41 2.97 0.107994 0.0912229 22834 132086 -1 1540 18 1084 1745 112443 26017 0 0 112443 26017 1745 1116 0 0 6449 5172 0 0 9584 7496 0 0 1745 1318 0 0 49783 4992 0 0 43137 5923 0 0 1745 0 0 661 800 924 6464 0 0 1.99731 1.99731 -85.4612 -1.99731 0 0 701300. 2426.64 0.27 0.06 0.14 -1 -1 0.27 0.0167475 0.0149689 110 55 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 9.48 vpr 61.51 MiB 0.03 7232 -1 -1 1 0.02 -1 -1 30072 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62988 32 32 424 311 1 229 105 17 17 289 -1 unnamed_device 23.2 MiB 0.20 1309 61.5 MiB 0.21 0.00 3.53736 -124.477 -3.53736 3.53736 0.72 0.000425847 0.000351362 0.0250381 0.0210043 26 3441 23 6.64007e+06 514878 477104. 1650.88 6.21 0.199835 0.175874 21682 110474 -1 2807 21 2051 3573 290994 59376 0 0 290994 59376 3573 2479 0 0 12507 9944 0 0 19042 13958 0 0 3573 2746 0 0 132384 14405 0 0 119915 15844 0 0 3573 0 0 1522 2892 3333 19258 0 0 3.68483 3.68483 -144.025 -3.68483 0 0 585099. 2024.56 0.25 0.13 0.12 -1 -1 0.25 0.0291947 0.0262881 181 26 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.83 vpr 61.74 MiB 0.03 7156 -1 -1 1 0.03 -1 -1 29840 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63220 32 32 404 318 1 198 101 17 17 289 -1 unnamed_device 23.0 MiB 0.17 1029 61.7 MiB 0.24 0.01 2.8391 -103.504 -2.8391 2.8391 0.98 0.000526073 0.000448199 0.029607 0.0246141 32 2257 20 6.64007e+06 464646 554710. 1919.41 1.12 0.0959484 0.0825629 22834 132086 -1 2036 21 1798 2673 178369 39537 0 0 178369 39537 2673 1911 0 0 9507 7539 0 0 14677 10957 0 0 2673 2118 0 0 77914 7984 0 0 70925 9028 0 0 2673 0 0 875 1068 1174 8620 0 0 3.02997 3.02997 -123.885 -3.02997 0 0 701300. 2426.64 0.30 0.09 0.12 -1 -1 0.30 0.0260008 0.0231172 154 62 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.81 vpr 61.29 MiB 0.02 6800 -1 -1 1 0.02 -1 -1 30060 -1 -1 29 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62764 31 32 355 304 1 156 92 17 17 289 -1 unnamed_device 22.4 MiB 0.25 758 61.3 MiB 0.12 0.00 2.9621 -91.7104 -2.9621 2.9621 1.00 0.000359128 0.00030323 0.015452 0.0129219 28 1904 22 6.64007e+06 364182 500653. 1732.36 2.64 0.131526 0.113878 21970 115934 -1 1677 22 1132 1823 113542 27106 0 0 113542 27106 1823 1296 0 0 6396 5071 0 0 9354 7229 0 0 1823 1418 0 0 45424 6537 0 0 48722 5555 0 0 1823 0 0 691 853 852 6761 0 0 2.67457 2.67457 -107.132 -2.67457 0 0 612192. 2118.31 0.19 0.05 0.14 -1 -1 0.19 0.0160881 0.0141295 114 77 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 7.14 vpr 61.69 MiB 0.02 7024 -1 -1 1 0.01 -1 -1 29840 -1 -1 24 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63172 31 32 393 311 1 194 87 17 17 289 -1 unnamed_device 22.9 MiB 0.20 1073 61.7 MiB 0.26 0.01 3.0153 -97.3204 -3.0153 3.0153 1.11 0.00041287 0.000336545 0.0318649 0.0261538 30 2424 20 6.64007e+06 301392 526063. 1820.29 3.31 0.194154 0.169857 22546 126617 -1 2091 19 1416 2377 134427 33208 0 0 134427 33208 2377 1649 0 0 8096 6651 0 0 10659 8606 0 0 2377 1917 0 0 55189 7640 0 0 55729 6745 0 0 2377 0 0 961 932 1063 7839 0 0 2.87597 2.87597 -114.814 -2.87597 0 0 666494. 2306.21 0.28 0.08 0.15 -1 -1 0.28 0.0230501 0.0206708 147 59 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 7.65 vpr 61.89 MiB 0.02 7124 -1 -1 1 0.02 -1 -1 30208 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63372 31 32 457 373 1 193 86 17 17 289 -1 unnamed_device 23.1 MiB 0.49 1090 61.9 MiB 0.19 0.00 4.21121 -124.147 -4.21121 4.21121 1.12 0.000460286 0.000376565 0.0230546 0.0189879 28 2659 25 6.64007e+06 288834 500653. 1732.36 3.70 0.184316 0.15949 21970 115934 -1 2212 14 986 1656 111005 25209 0 0 111005 25209 1656 1262 0 0 5831 4648 0 0 8242 6553 0 0 1656 1352 0 0 46891 5606 0 0 46729 5788 0 0 1656 0 0 670 774 551 5523 0 0 3.81628 3.81628 -140.814 -3.81628 0 0 612192. 2118.31 0.23 0.06 0.11 -1 -1 0.23 0.0195145 0.0175446 150 111 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.80 vpr 61.63 MiB 0.03 7040 -1 -1 1 0.02 -1 -1 29960 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63108 31 32 415 335 1 188 86 17 17 289 -1 unnamed_device 22.7 MiB 0.37 826 61.6 MiB 0.19 0.00 4.04401 -107.989 -4.04401 4.04401 1.02 0.00034084 0.000279892 0.0294862 0.024458 32 2203 20 6.64007e+06 288834 554710. 1919.41 1.09 0.0978303 0.0844218 22834 132086 -1 1798 17 1126 1805 127299 29115 0 0 127299 29115 1805 1450 0 0 6344 4988 0 0 9519 7182 0 0 1805 1534 0 0 57631 6534 0 0 50195 7427 0 0 1805 0 0 679 716 399 5021 0 0 3.87848 3.87848 -128.323 -3.87848 0 0 701300. 2426.64 0.21 0.07 0.10 -1 -1 0.21 0.0220656 0.019793 144 86 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 7.14 vpr 61.62 MiB 0.03 7208 -1 -1 1 0.02 -1 -1 29940 -1 -1 34 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63096 31 32 393 311 1 193 97 17 17 289 -1 unnamed_device 23.0 MiB 0.18 891 61.6 MiB 0.16 0.01 3.1043 -96.7011 -3.1043 3.1043 0.67 0.000515436 0.000439615 0.0189024 0.0161052 30 2385 22 6.64007e+06 426972 526063. 1820.29 4.33 0.17189 0.150327 22546 126617 -1 1852 18 1223 2121 120624 28603 0 0 120624 28603 2121 1438 0 0 7086 5766 0 0 9435 7483 0 0 2121 1573 0 0 51289 5803 0 0 48572 6540 0 0 2121 0 0 898 1126 967 7988 0 0 3.04997 3.04997 -117.763 -3.04997 0 0 666494. 2306.21 0.21 0.04 0.09 -1 -1 0.21 0.0129928 0.0116397 147 58 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 7.31 vpr 61.85 MiB 0.02 7156 -1 -1 1 0.02 -1 -1 30292 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63336 32 32 408 320 1 198 101 17 17 289 -1 unnamed_device 23.2 MiB 0.17 1094 61.9 MiB 0.27 0.01 3.39516 -121.528 -3.39516 3.39516 1.08 0.000441088 0.000359409 0.0315952 0.0259543 32 2476 19 6.64007e+06 464646 554710. 1919.41 3.42 0.182263 0.158107 22834 132086 -1 2193 21 1831 2880 201987 43476 0 0 201987 43476 2880 2032 0 0 10194 8355 0 0 15519 11367 0 0 2880 2238 0 0 92870 8483 0 0 77644 11001 0 0 2880 0 0 1049 1444 1887 11984 0 0 3.61523 3.61523 -141.527 -3.61523 0 0 701300. 2426.64 0.31 0.11 0.16 -1 -1 0.31 0.0289245 0.025918 156 42 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 7.10 vpr 61.94 MiB 0.06 7148 -1 -1 1 0.01 -1 -1 30052 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63428 32 32 497 381 1 232 105 17 17 289 -1 unnamed_device 23.7 MiB 0.22 1204 61.9 MiB 0.28 0.00 3.44536 -119.88 -3.44536 3.44536 0.90 0.000234629 0.000186578 0.0362895 0.0301712 32 3065 27 6.64007e+06 514878 554710. 1919.41 3.30 0.195245 0.16804 22834 132086 -1 2513 18 1874 2990 200438 43854 0 0 200438 43854 2990 2076 0 0 10647 8643 0 0 15868 11877 0 0 2990 2263 0 0 85042 9373 0 0 82901 9622 0 0 2990 0 0 1116 1703 1809 12370 0 0 3.78063 3.78063 -143.313 -3.78063 0 0 701300. 2426.64 0.31 0.10 0.16 -1 -1 0.31 0.0285197 0.0257148 185 91 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.64 vpr 61.21 MiB 0.03 6808 -1 -1 1 0.01 -1 -1 30000 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62684 31 32 307 252 1 158 81 17 17 289 -1 unnamed_device 22.5 MiB 0.10 815 61.2 MiB 0.19 0.00 3.0343 -99.1236 -3.0343 3.0343 1.04 0.000300487 0.000243121 0.0254645 0.0208495 32 1841 20 6.64007e+06 226044 554710. 1919.41 1.04 0.0725649 0.0617101 22834 132086 -1 1725 22 1298 2016 145870 33289 0 0 145870 33289 2016 1483 0 0 7449 6251 0 0 11971 9035 0 0 2016 1626 0 0 63187 7203 0 0 59231 7691 0 0 2016 0 0 718 683 804 6101 0 0 2.86877 2.86877 -116.554 -2.86877 0 0 701300. 2426.64 0.31 0.08 0.19 -1 -1 0.31 0.0206609 0.0184725 116 24 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 7.00 vpr 61.74 MiB 0.02 7096 -1 -1 1 0.02 -1 -1 29912 -1 -1 37 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63220 31 32 397 313 1 196 100 17 17 289 -1 unnamed_device 23.0 MiB 0.19 1031 61.7 MiB 0.19 0.01 3.42816 -114.299 -3.42816 3.42816 0.97 0.000503171 0.000428161 0.0214902 0.0181895 32 2575 22 6.64007e+06 464646 554710. 1919.41 3.42 0.186989 0.162816 22834 132086 -1 2252 20 1615 2577 184377 40779 0 0 184377 40779 2577 1838 0 0 9342 7336 0 0 14108 10704 0 0 2577 2003 0 0 76824 9717 0 0 78949 9181 0 0 2577 0 0 962 1643 1607 11187 0 0 3.98683 3.98683 -145.75 -3.98683 0 0 701300. 2426.64 0.28 0.10 0.18 -1 -1 0.28 0.0282335 0.0255945 151 59 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 6.71 vpr 61.78 MiB 0.02 6968 -1 -1 1 0.02 -1 -1 30080 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63264 32 32 398 314 1 196 98 17 17 289 -1 unnamed_device 23.1 MiB 0.15 1081 61.8 MiB 0.28 0.01 3.0493 -101.397 -3.0493 3.0493 1.04 0.000512102 0.000430236 0.0362209 0.0311313 30 2516 22 6.64007e+06 426972 526063. 1820.29 3.24 0.171199 0.148484 22546 126617 -1 2050 17 1255 2215 126181 28872 0 0 126181 28872 2215 1439 0 0 7426 6046 0 0 9823 7835 0 0 2215 1565 0 0 52877 5919 0 0 51625 6068 0 0 2215 0 0 960 1073 918 8180 0 0 2.94997 2.94997 -114.242 -2.94997 0 0 666494. 2306.21 0.27 0.06 0.14 -1 -1 0.27 0.0176227 0.0158013 149 54 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.75 vpr 61.64 MiB 0.03 6972 -1 -1 1 0.02 -1 -1 29884 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63116 32 32 346 258 1 194 86 17 17 289 -1 unnamed_device 22.9 MiB 0.08 1070 61.6 MiB 0.25 0.01 3.41716 -122.073 -3.41716 3.41716 1.04 0.0003865 0.000320053 0.0281161 0.0230502 32 2552 24 6.64007e+06 276276 554710. 1919.41 1.23 0.0994835 0.0858326 22834 132086 -1 2255 20 1867 3311 220143 49021 0 0 220143 49021 3311 2396 0 0 11676 9627 0 0 18261 13181 0 0 3311 2557 0 0 98593 9503 0 0 84991 11757 0 0 3311 0 0 1444 1535 1335 11843 0 0 3.59023 3.59023 -143.213 -3.59023 0 0 701300. 2426.64 0.31 0.13 0.16 -1 -1 0.31 0.0239163 0.0215271 152 -1 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 7.05 vpr 61.78 MiB 0.03 6960 -1 -1 1 0.00 -1 -1 30120 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63264 32 32 425 344 1 190 99 17 17 289 -1 unnamed_device 23.0 MiB 0.16 1036 61.8 MiB 0.18 0.00 2.8629 -103.836 -2.8629 2.8629 0.90 0.000187267 0.000146976 0.0216274 0.0175336 28 2521 26 6.64007e+06 439530 500653. 1732.36 3.91 0.179064 0.155726 21970 115934 -1 2267 21 1447 2321 186723 40259 0 0 186723 40259 2321 1709 0 0 8171 6478 0 0 12118 9360 0 0 2321 1792 0 0 80184 10822 0 0 81608 10098 0 0 2321 0 0 874 1461 1537 9831 0 0 2.82857 2.82857 -121.347 -2.82857 0 0 612192. 2118.31 0.27 0.10 0.12 -1 -1 0.27 0.0256404 0.0227921 146 81 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 7.49 vpr 61.64 MiB 0.02 7044 -1 -1 1 0.02 -1 -1 29788 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63120 32 32 396 312 1 194 100 17 17 289 -1 unnamed_device 23.1 MiB 0.23 1051 61.6 MiB 0.27 0.01 2.7647 -100.112 -2.7647 2.7647 1.07 0.000556315 0.000477502 0.0329853 0.027633 28 2454 21 6.64007e+06 452088 500653. 1732.36 3.53 0.182978 0.159305 21970 115934 -1 2157 21 1499 2622 161792 38118 0 0 161792 38118 2622 1687 0 0 9180 7420 0 0 13799 10498 0 0 2622 1871 0 0 69468 8022 0 0 64101 8620 0 0 2622 0 0 1123 1790 1682 12201 0 0 2.96397 2.96397 -122.839 -2.96397 0 0 612192. 2118.31 0.33 0.09 0.14 -1 -1 0.33 0.0253161 0.0226486 147 58 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 6.84 vpr 61.71 MiB 0.02 6860 -1 -1 1 0.02 -1 -1 29904 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63196 32 32 406 319 1 200 103 17 17 289 -1 unnamed_device 23.0 MiB 0.19 1110 61.7 MiB 0.24 0.01 2.9281 -105.317 -2.9281 2.9281 0.81 0.000523126 0.000437336 0.0271965 0.0225635 28 2687 18 6.64007e+06 489762 500653. 1732.36 3.19 0.164571 0.141796 21970 115934 -1 2257 21 1724 2658 178364 40629 0 0 178364 40629 2658 2005 0 0 9147 7368 0 0 13587 10448 0 0 2658 2219 0 0 76478 9113 0 0 73836 9476 0 0 2658 0 0 934 1016 1052 8158 0 0 2.99397 2.99397 -121.757 -2.99397 0 0 612192. 2118.31 0.28 0.09 0.14 -1 -1 0.28 0.0260347 0.023245 157 61 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 6.97 vpr 61.75 MiB 0.03 7008 -1 -1 1 0.02 -1 -1 29972 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63228 32 32 377 289 1 194 102 17 17 289 -1 unnamed_device 22.9 MiB 0.09 1014 61.7 MiB 0.21 0.01 3.38416 -118.066 -3.38416 3.38416 1.06 0.000514544 0.000443066 0.0246321 0.0207437 32 2605 25 6.64007e+06 477204 554710. 1919.41 3.26 0.170649 0.147758 22834 132086 -1 2130 23 1965 3133 216904 47929 0 0 216904 47929 3133 2248 0 0 11114 8859 0 0 17276 12791 0 0 3133 2398 0 0 95500 10034 0 0 86748 11599 0 0 3133 0 0 1168 1537 1171 10499 0 0 3.62743 3.62743 -142.333 -3.62743 0 0 701300. 2426.64 0.25 0.13 0.11 -1 -1 0.25 0.0274352 0.024474 153 21 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 6.90 vpr 61.55 MiB 0.02 6956 -1 -1 1 0.01 -1 -1 30004 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63028 32 32 408 320 1 197 103 17 17 289 -1 unnamed_device 23.2 MiB 0.21 1053 61.6 MiB 0.27 0.00 3.33916 -117.088 -3.33916 3.33916 1.01 0.000198993 0.00016031 0.0308824 0.0251364 32 2559 21 6.64007e+06 489762 554710. 1919.41 3.19 0.173469 0.148501 22834 132086 -1 2183 22 1761 2703 198756 44655 0 0 198756 44655 2703 1964 0 0 10217 8552 0 0 15857 12293 0 0 2703 2134 0 0 86947 9436 0 0 80329 10276 0 0 2703 0 0 942 1256 1230 9413 0 0 3.69963 3.69963 -141.277 -3.69963 0 0 701300. 2426.64 0.30 0.09 0.15 -1 -1 0.30 0.0240283 0.0212715 155 50 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.41 vpr 61.72 MiB 0.03 7124 -1 -1 1 0.02 -1 -1 30244 -1 -1 36 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63200 31 32 451 369 1 193 99 17 17 289 -1 unnamed_device 23.2 MiB 0.30 971 61.7 MiB 0.20 0.01 3.76575 -109.4 -3.76575 3.76575 1.02 0.000496638 0.00040433 0.0227712 0.0188785 28 3025 23 6.64007e+06 452088 500653. 1732.36 1.75 0.104868 0.0912093 21970 115934 -1 2375 19 1410 2422 166432 38929 0 0 166432 38929 2422 1841 0 0 8512 7031 0 0 12529 9742 0 0 2422 1994 0 0 68320 9558 0 0 72227 8763 0 0 2422 0 0 1012 1204 1284 9080 0 0 3.88903 3.88903 -133.58 -3.88903 0 0 612192. 2118.31 0.27 0.09 0.13 -1 -1 0.27 0.0244129 0.0217972 147 110 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 6.38 vpr 61.68 MiB 0.03 6956 -1 -1 1 0.01 -1 -1 30112 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63156 32 32 433 347 1 195 86 17 17 289 -1 unnamed_device 23.0 MiB 0.32 930 61.7 MiB 0.24 0.01 3.50235 -108.368 -3.50235 3.50235 0.98 0.000536713 0.000446188 0.0306224 0.0257467 32 2369 25 6.64007e+06 276276 554710. 1919.41 2.83 0.154726 0.132246 22834 132086 -1 1964 18 1480 2652 159749 39232 0 0 159749 39232 2652 1747 0 0 9292 7860 0 0 14390 10730 0 0 2652 1900 0 0 70843 8207 0 0 59920 8788 0 0 2652 0 0 1172 985 1020 8693 0 0 3.54123 3.54123 -130.879 -3.54123 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0237483 0.0213032 150 86 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.75 vpr 61.23 MiB 0.02 6644 -1 -1 1 0.02 -1 -1 29944 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62700 32 32 313 256 1 166 95 17 17 289 -1 unnamed_device 22.4 MiB 0.07 907 61.2 MiB 0.11 0.00 2.7427 -100.878 -2.7427 2.7427 0.94 0.000154349 0.000121767 0.01134 0.00912951 28 2165 21 6.64007e+06 389298 500653. 1732.36 2.57 0.1189 0.102172 21970 115934 -1 1955 19 1186 1869 124682 28743 0 0 124682 28743 1869 1338 0 0 6639 5414 0 0 9647 7536 0 0 1869 1431 0 0 52686 6642 0 0 51972 6382 0 0 1869 0 0 683 753 971 6722 0 0 2.72957 2.72957 -116.612 -2.72957 0 0 612192. 2118.31 0.27 0.07 0.14 -1 -1 0.27 0.0171378 0.015268 125 20 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 6.89 vpr 61.66 MiB 0.02 6768 -1 -1 1 0.02 -1 -1 29816 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63144 32 32 371 315 1 164 82 17 17 289 -1 unnamed_device 22.8 MiB 0.23 869 61.7 MiB 0.20 0.01 2.7819 -98.2149 -2.7819 2.7819 0.93 0.00060182 0.000517404 0.0281713 0.0233638 26 2552 25 6.64007e+06 226044 477104. 1650.88 3.36 0.175911 0.153632 21682 110474 -1 2149 22 1379 2265 191044 41628 0 0 191044 41628 2265 1963 0 0 7982 6500 0 0 12109 9110 0 0 2265 2025 0 0 85465 10818 0 0 80958 11212 0 0 2265 0 0 886 921 1013 7191 0 0 3.10617 3.10617 -122.884 -3.10617 0 0 585099. 2024.56 0.23 0.09 0.13 -1 -1 0.23 0.0208648 0.0184412 121 91 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 8.51 vpr 61.82 MiB 0.03 7184 -1 -1 1 0.02 -1 -1 30260 -1 -1 42 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63300 32 32 470 352 1 233 106 17 17 289 -1 unnamed_device 23.4 MiB 0.17 1375 61.8 MiB 0.29 0.01 4.01062 -140.873 -4.01062 4.01062 0.96 0.000412175 0.000343061 0.0356672 0.0305127 26 3735 44 6.64007e+06 527436 477104. 1650.88 4.64 0.232563 0.204975 21682 110474 -1 2872 23 2633 4248 292957 67035 0 0 292957 67035 4248 3304 0 0 15100 12269 0 0 23643 17634 0 0 4248 3458 0 0 124878 15075 0 0 120840 15295 0 0 4248 0 0 1615 2114 2287 15066 0 0 5.11509 5.11509 -184.265 -5.11509 0 0 585099. 2024.56 0.26 0.16 0.13 -1 -1 0.26 0.0412016 0.0374038 189 53 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.21 vpr 61.30 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 29804 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62768 32 32 369 285 1 194 97 17 17 289 -1 unnamed_device 22.7 MiB 0.16 1044 61.3 MiB 0.27 0.01 2.7849 -101.406 -2.7849 2.7849 0.82 0.00033987 0.000272845 0.0314169 0.025641 32 2216 20 6.64007e+06 414414 554710. 1919.41 0.96 0.0792199 0.0672882 22834 132086 -1 1909 18 1374 1979 130520 30722 0 0 130520 30722 1979 1477 0 0 7478 6179 0 0 11220 8769 0 0 1979 1612 0 0 56500 5984 0 0 51364 6701 0 0 1979 0 0 605 666 665 5863 0 0 2.90417 2.90417 -117.612 -2.90417 0 0 701300. 2426.64 0.30 0.07 0.16 -1 -1 0.30 0.0207533 0.0185202 148 31 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.82 vpr 61.35 MiB 0.02 6924 -1 -1 1 0.01 -1 -1 29864 -1 -1 31 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62820 30 32 299 247 1 158 93 17 17 289 -1 unnamed_device 22.6 MiB 0.08 794 61.3 MiB 0.17 0.00 2.7427 -91.2748 -2.7427 2.7427 0.90 0.000361866 0.000308781 0.0194677 0.0160996 30 1806 21 6.64007e+06 389298 526063. 1820.29 2.48 0.112724 0.0972359 22546 126617 -1 1523 21 985 1507 80716 19253 0 0 80716 19253 1507 1072 0 0 4962 3884 0 0 6535 5135 0 0 1507 1158 0 0 31514 4224 0 0 34691 3780 0 0 1507 0 0 522 699 569 5181 0 0 2.79857 2.79857 -110.745 -2.79857 0 0 666494. 2306.21 0.32 0.08 0.15 -1 -1 0.32 0.0246708 0.0219806 116 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 13.15 vpr 61.77 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 30412 -1 -1 45 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63256 32 32 532 414 1 232 109 17 17 289 -1 unnamed_device 23.4 MiB 0.43 1296 61.8 MiB 0.45 0.01 4.14482 -142.53 -4.14482 4.14482 1.04 0.000502002 0.000410722 0.0550655 0.046596 26 3459 32 6.64007e+06 565110 477104. 1650.88 8.88 0.287036 0.25214 21682 110474 -1 2902 23 2586 3998 316732 66802 0 0 316732 66802 3998 2853 0 0 14020 11109 0 0 21230 15609 0 0 3998 3179 0 0 138306 17053 0 0 135180 16999 0 0 3998 0 0 1412 2472 2971 17141 0 0 4.58329 4.58329 -175.192 -4.58329 0 0 585099. 2024.56 0.26 0.14 0.13 -1 -1 0.26 0.0370772 0.033243 188 109 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.76 vpr 61.59 MiB 0.02 7104 -1 -1 1 0.02 -1 -1 29928 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63068 32 32 377 289 1 194 102 17 17 289 -1 unnamed_device 22.7 MiB 0.17 850 61.6 MiB 0.27 0.01 3.40436 -115.868 -3.40436 3.40436 0.95 0.000401784 0.00033167 0.0289139 0.0237335 32 2195 23 6.64007e+06 477204 554710. 1919.41 1.22 0.104247 0.089929 22834 132086 -1 1821 22 1856 2788 185258 43206 0 0 185258 43206 2788 2050 0 0 10085 8041 0 0 15580 11823 0 0 2788 2228 0 0 83916 8528 0 0 70101 10536 0 0 2788 0 0 932 1218 1275 9695 0 0 3.77883 3.77883 -139.639 -3.77883 0 0 701300. 2426.64 0.28 0.10 0.14 -1 -1 0.28 0.0281866 0.0253697 153 31 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.25 vpr 61.48 MiB 0.02 6748 -1 -1 1 0.02 -1 -1 29840 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62956 32 32 284 226 1 164 96 17 17 289 -1 unnamed_device 22.7 MiB 0.10 936 61.5 MiB 0.11 0.00 2.7647 -100.833 -2.7647 2.7647 1.02 0.000163841 0.000131255 0.0108095 0.00888851 32 2120 22 6.64007e+06 401856 554710. 1919.41 0.77 0.0419986 0.0357426 22834 132086 -1 1899 20 1331 2057 130105 30306 0 0 130105 30306 2057 1498 0 0 7371 6156 0 0 11371 8279 0 0 2057 1600 0 0 53223 6568 0 0 54026 6205 0 0 2057 0 0 726 819 1069 7335 0 0 2.82857 2.82857 -118.718 -2.82857 0 0 701300. 2426.64 0.29 0.07 0.15 -1 -1 0.29 0.0171868 0.0153061 124 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.08 vpr 61.82 MiB 0.03 7128 -1 -1 1 0.02 -1 -1 30248 -1 -1 44 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63308 32 32 439 321 1 235 108 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1138 61.8 MiB 0.25 0.01 3.99342 -134.476 -3.99342 3.99342 1.04 0.000490432 0.000406287 0.0258786 0.0214839 32 3256 23 6.64007e+06 552552 554710. 1919.41 1.38 0.114088 0.0996831 22834 132086 -1 2680 22 2453 3709 288596 59659 0 0 288596 59659 3709 2872 0 0 12794 10249 0 0 19865 14427 0 0 3709 3071 0 0 136614 12467 0 0 111905 16573 0 0 3709 0 0 1256 2509 2469 16773 0 0 4.30369 4.30369 -158.352 -4.30369 0 0 701300. 2426.64 0.23 0.12 0.09 -1 -1 0.23 0.0292314 0.0262087 191 26 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.53 vpr 61.02 MiB 0.02 6604 -1 -1 1 0.01 -1 -1 29900 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62484 32 32 284 226 1 162 81 17 17 289 -1 unnamed_device 22.6 MiB 0.10 728 61.0 MiB 0.19 0.00 2.8039 -98.4427 -2.8039 2.8039 0.95 0.000295134 0.000239172 0.0250602 0.0203951 32 2153 25 6.64007e+06 213486 554710. 1919.41 1.10 0.0779618 0.0665732 22834 132086 -1 1684 22 1537 2474 171076 40222 0 0 171076 40222 2474 1807 0 0 8661 7111 0 0 14754 10317 0 0 2474 1949 0 0 71542 9490 0 0 71171 9548 0 0 2474 0 0 937 851 1103 7957 0 0 3.12337 3.12337 -120.37 -3.12337 0 0 701300. 2426.64 0.29 0.08 0.16 -1 -1 0.29 0.0177733 0.0157616 121 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.53 vpr 61.47 MiB 0.02 6748 -1 -1 1 0.01 -1 -1 29856 -1 -1 31 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 30 32 299 247 1 157 93 17 17 289 -1 unnamed_device 22.7 MiB 0.16 825 61.5 MiB 0.12 0.00 2.7969 -94.5728 -2.7969 2.7969 0.94 0.000164072 0.000130857 0.0126666 0.010312 32 1896 21 6.64007e+06 389298 554710. 1919.41 1.07 0.0633045 0.0544913 22834 132086 -1 1670 21 1264 2001 134144 30716 0 0 134144 30716 2001 1464 0 0 7310 5848 0 0 10912 8184 0 0 2001 1559 0 0 55397 7052 0 0 56523 6609 0 0 2001 0 0 737 878 894 7228 0 0 2.82177 2.82177 -110.197 -2.82177 0 0 701300. 2426.64 0.30 0.07 0.15 -1 -1 0.30 0.018133 0.0161471 113 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 7.06 vpr 61.70 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 29832 -1 -1 34 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63184 29 32 397 323 1 182 95 17 17 289 -1 unnamed_device 22.9 MiB 0.22 1038 61.7 MiB 0.13 0.00 2.9701 -90.5326 -2.9701 2.9701 0.95 0.000390141 0.000328142 0.0156691 0.0131657 30 2487 23 6.64007e+06 426972 526063. 1820.29 3.44 0.186348 0.1627 22546 126617 -1 2114 19 1342 2356 150435 32727 0 0 150435 32727 2356 1711 0 0 7660 6094 0 0 9957 7883 0 0 2356 1855 0 0 60959 8219 0 0 67147 6965 0 0 2356 0 0 1014 1178 1258 8734 0 0 2.90777 2.90777 -111.195 -2.90777 0 0 666494. 2306.21 0.30 0.07 0.15 -1 -1 0.30 0.0207315 0.0184646 134 81 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.88 vpr 61.57 MiB 0.02 6928 -1 -1 1 0.02 -1 -1 30084 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63044 32 32 408 320 1 194 86 17 17 289 -1 unnamed_device 22.8 MiB 0.23 1047 61.6 MiB 0.25 0.00 3.37836 -119.973 -3.37836 3.37836 1.06 0.000394073 0.000323952 0.0333716 0.0272913 32 2354 21 6.64007e+06 276276 554710. 1919.41 1.13 0.0979542 0.0836515 22834 132086 -1 2124 20 1985 2952 206478 48588 0 0 206478 48588 2952 2338 0 0 11093 9428 0 0 18146 13717 0 0 2952 2535 0 0 88037 10166 0 0 83298 10404 0 0 2952 0 0 967 1204 1020 8769 0 0 3.99603 3.99603 -152.228 -3.99603 0 0 701300. 2426.64 0.33 0.12 0.16 -1 -1 0.33 0.0323897 0.0295515 151 53 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 5.14 vpr 61.88 MiB 0.02 7040 -1 -1 1 0.02 -1 -1 30236 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63360 32 32 408 320 1 195 100 17 17 289 -1 unnamed_device 23.1 MiB 0.32 1085 61.9 MiB 0.31 0.01 3.30796 -118.204 -3.30796 3.30796 1.04 0.000423049 0.000347752 0.0371034 0.0306301 32 2422 22 6.64007e+06 452088 554710. 1919.41 1.14 0.108919 0.0937669 22834 132086 -1 2157 21 1822 2957 201842 43478 0 0 201842 43478 2957 2107 0 0 10165 8272 0 0 15712 11286 0 0 2957 2331 0 0 93474 8459 0 0 76577 11023 0 0 2957 0 0 1135 1093 1200 9935 0 0 3.45103 3.45103 -138.799 -3.45103 0 0 701300. 2426.64 0.29 0.10 0.14 -1 -1 0.29 0.0281012 0.025349 154 55 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.49 vpr 61.59 MiB 0.02 6968 -1 -1 1 0.02 -1 -1 30056 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63068 32 32 346 288 1 161 96 17 17 289 -1 unnamed_device 22.7 MiB 0.22 740 61.6 MiB 0.12 0.00 2.8739 -98.8582 -2.8739 2.8739 1.08 0.000325658 0.000259419 0.0165578 0.0136179 32 2114 24 6.64007e+06 401856 554710. 1919.41 1.10 0.069699 0.059947 22834 132086 -1 1677 20 1291 1861 119184 28894 0 0 119184 28894 1861 1473 0 0 6607 5390 0 0 10207 7567 0 0 1861 1540 0 0 46092 6654 0 0 52556 6270 0 0 1861 0 0 570 1007 664 6230 0 0 3.07197 3.07197 -122.598 -3.07197 0 0 701300. 2426.64 0.20 0.04 0.14 -1 -1 0.20 0.0109277 0.00967417 122 55 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 7.26 vpr 61.55 MiB 0.02 6812 -1 -1 1 0.01 -1 -1 30056 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63032 31 32 355 304 1 152 80 17 17 289 -1 unnamed_device 22.7 MiB 0.28 660 61.6 MiB 0.20 0.00 2.9591 -89.698 -2.9591 2.9591 0.83 0.000347847 0.000282442 0.0286349 0.0232493 30 1892 27 6.64007e+06 213486 526063. 1820.29 3.79 0.158072 0.136147 22546 126617 -1 1285 18 845 1509 67900 17683 0 0 67900 17683 1509 903 0 0 4974 4173 0 0 6619 5273 0 0 1509 956 0 0 27295 3130 0 0 25994 3248 0 0 1509 0 0 664 720 434 4991 0 0 2.67337 2.67337 -102.148 -2.67337 0 0 666494. 2306.21 0.29 0.05 0.15 -1 -1 0.29 0.0189841 0.0169925 109 82 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 5.81 vpr 61.80 MiB 0.03 6996 -1 -1 1 0.01 -1 -1 30004 -1 -1 34 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63280 30 32 377 300 1 186 96 17 17 289 -1 unnamed_device 23.0 MiB 0.21 916 61.8 MiB 0.21 0.00 2.8189 -93.6686 -2.8189 2.8189 0.71 0.000232707 0.000186371 0.0232222 0.0191062 32 2111 24 6.64007e+06 426972 554710. 1919.41 2.58 0.129909 0.110604 22834 132086 -1 1807 18 1298 2074 129989 29937 0 0 129989 29937 2074 1435 0 0 7332 5753 0 0 11183 8393 0 0 2074 1568 0 0 56390 6032 0 0 50936 6756 0 0 2074 0 0 776 1119 1306 8697 0 0 2.94077 2.94077 -111.982 -2.94077 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0210932 0.018879 138 52 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 6.79 vpr 61.35 MiB 0.03 6884 -1 -1 1 0.01 -1 -1 30064 -1 -1 32 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62820 28 32 337 265 1 180 92 17 17 289 -1 unnamed_device 22.7 MiB 0.12 890 61.3 MiB 0.26 0.01 3.63356 -101.552 -3.63356 3.63356 0.99 0.000327702 0.000267947 0.0314479 0.0258052 28 2448 32 6.64007e+06 401856 500653. 1732.36 3.35 0.150286 0.128868 21970 115934 -1 1936 22 1338 2173 170820 37509 0 0 170820 37509 2173 1632 0 0 7613 6087 0 0 11427 8772 0 0 2173 1779 0 0 75187 9509 0 0 72247 9730 0 0 2173 0 0 835 1255 1510 9353 0 0 3.82683 3.82683 -127.016 -3.82683 0 0 612192. 2118.31 0.26 0.09 0.14 -1 -1 0.26 0.0222583 0.0198074 134 20 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.12 vpr 61.39 MiB 0.02 6852 -1 -1 1 0.02 -1 -1 29868 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62868 30 32 328 276 1 157 81 17 17 289 -1 unnamed_device 22.6 MiB 0.23 824 61.4 MiB 0.10 0.00 2.8131 -95.7584 -2.8131 2.8131 0.79 0.000168341 0.000134071 0.0135547 0.011088 32 1994 22 6.64007e+06 238602 554710. 1919.41 0.90 0.0592903 0.0505803 22834 132086 -1 1759 19 1360 2253 158687 35552 0 0 158687 35552 2253 1733 0 0 7853 6550 0 0 12391 8957 0 0 2253 1971 0 0 68181 8166 0 0 65756 8175 0 0 2253 0 0 893 1112 1061 7561 0 0 2.67657 2.67657 -108.991 -2.67657 0 0 701300. 2426.64 0.29 0.07 0.09 -1 -1 0.29 0.0180345 0.0160564 114 58 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 7.11 vpr 61.34 MiB 0.12 6876 -1 -1 1 0.02 -1 -1 29804 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62812 32 32 362 309 1 158 81 17 17 289 -1 unnamed_device 22.4 MiB 0.22 930 61.3 MiB 0.10 0.00 2.9653 -95.3014 -2.9653 2.9653 1.02 0.000170123 0.000134524 0.013952 0.0112905 32 2015 21 6.64007e+06 213486 554710. 1919.41 3.52 0.162691 0.142966 22834 132086 -1 1840 18 1052 1766 131601 29568 0 0 131601 29568 1766 1339 0 0 6540 5430 0 0 10109 7694 0 0 1766 1456 0 0 55785 7022 0 0 55635 6627 0 0 1766 0 0 714 633 663 5454 0 0 2.67177 2.67177 -108.524 -2.67177 0 0 701300. 2426.64 0.31 0.07 0.15 -1 -1 0.31 0.0185615 0.0165665 114 88 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 6.98 vpr 61.78 MiB 0.21 6964 -1 -1 1 0.02 -1 -1 29832 -1 -1 37 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63260 31 32 337 253 1 196 100 17 17 289 -1 unnamed_device 23.1 MiB 0.10 967 61.8 MiB 0.13 0.01 3.37316 -113.008 -3.37316 3.37316 0.77 0.000358394 0.000292191 0.0119716 0.00984867 30 2610 21 6.64007e+06 464646 526063. 1820.29 3.46 0.150907 0.131595 22546 126617 -1 1953 21 1379 2093 112669 27733 0 0 112669 27733 2093 1602 0 0 6931 5430 0 0 9162 7244 0 0 2093 1641 0 0 44474 6104 0 0 47916 5712 0 0 2093 0 0 714 755 614 6144 0 0 3.62543 3.62543 -134.941 -3.62543 0 0 666494. 2306.21 0.26 0.06 0.12 -1 -1 0.26 0.0203969 0.0183442 152 -1 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 7.51 vpr 61.74 MiB 0.03 7148 -1 -1 1 0.02 -1 -1 30072 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63220 32 32 408 320 1 197 100 17 17 289 -1 unnamed_device 23.0 MiB 0.25 1098 61.7 MiB 0.21 0.01 3.39516 -120.922 -3.39516 3.39516 0.69 0.000431522 0.000353651 0.022942 0.0188323 28 2797 24 6.64007e+06 452088 500653. 1732.36 3.87 0.196888 0.171841 21970 115934 -1 2457 22 1816 3165 229773 50600 0 0 229773 50600 3165 2261 0 0 10898 8737 0 0 16680 12444 0 0 3165 2424 0 0 99437 12439 0 0 96428 12295 0 0 3165 0 0 1349 1538 1803 12071 0 0 3.75743 3.75743 -148.15 -3.75743 0 0 612192. 2118.31 0.22 0.11 0.12 -1 -1 0.22 0.0265299 0.0237199 155 57 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.37 vpr 61.85 MiB 0.02 7152 -1 -1 1 0.02 -1 -1 29840 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63336 32 32 408 320 1 194 100 17 17 289 -1 unnamed_device 23.1 MiB 0.19 1125 61.9 MiB 0.21 0.01 3.40616 -120.481 -3.40616 3.40616 1.09 0.000421048 0.000344809 0.0231015 0.0191555 32 2628 35 6.64007e+06 452088 554710. 1919.41 1.73 0.117333 0.100059 22834 132086 -1 2195 23 1894 3078 207070 46478 0 0 207070 46478 3078 2261 0 0 10742 8532 0 0 16989 12234 0 0 3078 2564 0 0 91128 9834 0 0 82055 11053 0 0 3078 0 0 1184 1374 1330 10604 0 0 3.64943 3.64943 -141.602 -3.64943 0 0 701300. 2426.64 0.23 0.06 0.16 -1 -1 0.23 0.014721 0.0130272 153 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 7.05 vpr 61.64 MiB 0.02 6916 -1 -1 1 0.01 -1 -1 29904 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63116 32 32 400 316 1 196 102 17 17 289 -1 unnamed_device 22.9 MiB 0.17 1152 61.6 MiB 0.34 0.01 3.26396 -112.17 -3.26396 3.26396 0.78 0.000504412 0.000426291 0.0279318 0.0236586 28 2887 23 6.64007e+06 477204 500653. 1732.36 3.72 0.237732 0.208928 21970 115934 -1 2467 22 1735 3052 210788 46703 0 0 210788 46703 3052 2164 0 0 10595 8550 0 0 15878 12071 0 0 3052 2508 0 0 94856 9886 0 0 83355 11524 0 0 3052 0 0 1317 1746 1867 12172 0 0 3.65063 3.65063 -138.153 -3.65063 0 0 612192. 2118.31 0.19 0.10 0.12 -1 -1 0.19 0.0243759 0.0216523 149 62 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 6.03 vpr 61.18 MiB 0.02 6752 -1 -1 1 0.02 -1 -1 29820 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62652 30 32 299 247 1 156 81 17 17 289 -1 unnamed_device 22.5 MiB 0.12 752 61.2 MiB 0.14 0.00 2.7819 -92.7722 -2.7819 2.7819 0.89 0.00037378 0.000315494 0.0161531 0.0135628 26 2186 24 6.64007e+06 238602 477104. 1650.88 2.71 0.121491 0.106704 21682 110474 -1 1812 20 1318 2082 151491 34582 0 0 151491 34582 2082 1713 0 0 7488 6040 0 0 11256 8548 0 0 2082 1802 0 0 69954 7713 0 0 58629 8766 0 0 2082 0 0 764 669 728 6089 0 0 2.98917 2.98917 -117.477 -2.98917 0 0 585099. 2024.56 0.20 0.12 0.13 -1 -1 0.20 0.0194233 0.0170564 113 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 6.92 vpr 61.47 MiB 0.03 7128 -1 -1 1 0.01 -1 -1 29876 -1 -1 24 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 30 32 386 306 1 191 86 17 17 289 -1 unnamed_device 22.6 MiB 0.22 950 61.5 MiB 0.25 0.01 3.48756 -113.217 -3.48756 3.48756 0.88 0.000365135 0.000298008 0.0310373 0.0257595 28 2388 22 6.64007e+06 301392 500653. 1732.36 3.38 0.183611 0.158865 21970 115934 -1 2072 24 1798 2787 195770 45941 0 0 195770 45941 2787 2208 0 0 9590 7604 0 0 14725 11114 0 0 2787 2339 0 0 84565 11636 0 0 81316 11040 0 0 2787 0 0 989 940 1186 8466 0 0 3.75203 3.75203 -137.986 -3.75203 0 0 612192. 2118.31 0.26 0.09 0.09 -1 -1 0.26 0.024821 0.0220871 147 58 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 7.60 vpr 61.81 MiB 0.03 7036 -1 -1 1 0.03 -1 -1 30292 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63296 32 32 470 382 1 198 105 17 17 289 -1 unnamed_device 23.2 MiB 0.31 1083 61.8 MiB 0.26 0.01 3.43916 -122.102 -3.43916 3.43916 1.05 0.000595007 0.000508389 0.0321236 0.0272166 26 2932 24 6.64007e+06 514878 477104. 1650.88 3.70 0.192091 0.168567 21682 110474 -1 2467 24 2014 3415 294681 62138 0 0 294681 62138 3415 2453 0 0 12094 9679 0 0 18397 13613 0 0 3415 2646 0 0 133627 15791 0 0 123733 17956 0 0 3415 0 0 1401 2445 2381 16350 0 0 4.11803 4.11803 -152.357 -4.11803 0 0 585099. 2024.56 0.26 0.12 0.13 -1 -1 0.26 0.0276183 0.0244023 156 106 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 7.07 vpr 61.59 MiB 0.03 7300 -1 -1 1 0.02 -1 -1 30128 -1 -1 33 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63068 31 32 427 343 1 189 96 17 17 289 -1 unnamed_device 23.0 MiB 0.25 844 61.6 MiB 0.13 0.00 3.64455 -111.344 -3.64455 3.64455 0.85 0.000207662 0.000162477 0.0136981 0.0111592 28 2388 22 6.64007e+06 414414 500653. 1732.36 3.76 0.164069 0.142193 21970 115934 -1 1937 20 1603 2802 164127 40367 0 0 164127 40367 2802 1899 0 0 9572 7574 0 0 14399 10811 0 0 2802 2045 0 0 69006 9101 0 0 65546 8937 0 0 2802 0 0 1199 1481 1495 10799 0 0 3.78762 3.78762 -140.026 -3.78762 0 0 612192. 2118.31 0.19 0.08 0.08 -1 -1 0.19 0.0217709 0.0192747 147 79 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.85 vpr 61.81 MiB 0.03 7084 -1 -1 1 0.02 -1 -1 30036 -1 -1 32 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63292 30 32 407 331 1 182 94 17 17 289 -1 unnamed_device 22.9 MiB 0.19 903 61.8 MiB 0.12 0.00 3.00058 -91.024 -3.00058 3.00058 0.89 0.000203577 0.000165202 0.0131219 0.0108575 26 2555 24 6.64007e+06 401856 477104. 1650.88 2.41 0.127887 0.111452 21682 110474 -1 2010 20 1407 2343 145353 34575 0 0 145353 34575 2343 1689 0 0 8232 6528 0 0 12393 9303 0 0 2343 1750 0 0 60114 7747 0 0 59928 7558 0 0 2343 0 0 936 1061 1107 8201 0 0 2.95897 2.95897 -114.118 -2.95897 0 0 585099. 2024.56 0.25 0.08 0.17 -1 -1 0.25 0.0229413 0.0204893 138 83 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 5.08 vpr 61.82 MiB 0.03 7220 -1 -1 1 0.02 -1 -1 29948 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63300 32 32 408 320 1 198 86 17 17 289 -1 unnamed_device 23.2 MiB 0.21 1078 61.8 MiB 0.56 0.01 3.53736 -124.143 -3.53736 3.53736 1.04 0.000403581 0.000327835 0.0449825 0.0380123 32 2811 24 6.64007e+06 276276 554710. 1919.41 1.27 0.122753 0.106804 22834 132086 -1 2396 22 2090 3578 248495 55891 0 0 248495 55891 3578 2627 0 0 12193 10193 0 0 20357 14280 0 0 3578 2956 0 0 109818 11650 0 0 98971 14185 0 0 3578 0 0 1488 1653 1515 11796 0 0 3.75863 3.75863 -148.518 -3.75863 0 0 701300. 2426.64 0.31 0.12 0.16 -1 -1 0.31 0.0304019 0.0273625 155 58 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 6.86 vpr 61.81 MiB 0.03 7052 -1 -1 1 0.01 -1 -1 29960 -1 -1 36 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63296 29 32 391 320 1 179 97 17 17 289 -1 unnamed_device 23.0 MiB 0.17 839 61.8 MiB 0.31 0.00 2.7969 -86.835 -2.7969 2.7969 1.16 0.000529391 0.000460388 0.0398568 0.0332442 32 2023 21 6.64007e+06 452088 554710. 1919.41 2.99 0.155979 0.133759 22834 132086 -1 1712 20 1347 2196 148707 34409 0 0 148707 34409 2196 1600 0 0 8024 6554 0 0 12632 9669 0 0 2196 1722 0 0 65815 6807 0 0 57844 8057 0 0 2196 0 0 849 913 899 6995 0 0 2.89697 2.89697 -103.097 -2.89697 0 0 701300. 2426.64 0.30 0.07 0.16 -1 -1 0.30 0.0211719 0.0188109 136 81 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.90 vpr 60.89 MiB 0.02 6712 -1 -1 1 0.01 -1 -1 29804 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62356 32 32 284 226 1 156 81 17 17 289 -1 unnamed_device 22.4 MiB 0.07 903 60.9 MiB 0.44 0.00 2.7819 -101.126 -2.7819 2.7819 1.01 0.000352914 0.000289929 0.0275955 0.0237377 32 2062 21 6.64007e+06 213486 554710. 1919.41 1.15 0.0822768 0.0720683 22834 132086 -1 1857 19 1248 1920 123164 28806 0 0 123164 28806 1920 1653 0 0 6859 5525 0 0 10207 7567 0 0 1920 1698 0 0 51270 6298 0 0 50988 6065 0 0 1920 0 0 672 745 704 5483 0 0 2.84577 2.84577 -121.987 -2.84577 0 0 701300. 2426.64 0.30 0.07 0.16 -1 -1 0.30 0.01803 0.016176 115 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.13 vpr 61.82 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 29860 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63308 32 32 408 320 1 194 99 17 17 289 -1 unnamed_device 23.0 MiB 0.34 919 61.8 MiB 0.42 0.01 3.38416 -116.143 -3.38416 3.38416 1.04 0.000551329 0.00047277 0.0542965 0.0464923 32 2779 25 6.64007e+06 439530 554710. 1919.41 1.24 0.144135 0.126328 22834 132086 -1 2091 21 1756 2737 181384 42588 0 0 181384 42588 2737 2243 0 0 9701 7738 0 0 14650 10816 0 0 2737 2347 0 0 74401 10144 0 0 77158 9300 0 0 2737 0 0 981 1403 1217 9292 0 0 3.78563 3.78563 -145.943 -3.78563 0 0 701300. 2426.64 0.20 0.07 0.09 -1 -1 0.20 0.0191943 0.0170284 152 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.12 vpr 61.77 MiB 0.02 6980 -1 -1 1 0.02 -1 -1 29948 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63256 32 32 408 320 1 201 87 17 17 289 -1 unnamed_device 23.1 MiB 0.24 1067 61.8 MiB 0.53 0.00 3.38936 -120.551 -3.38936 3.38936 1.15 0.000396541 0.000323317 0.0414748 0.0357381 32 2516 26 6.64007e+06 288834 554710. 1919.41 0.80 0.0823191 0.0708992 22834 132086 -1 2217 22 2188 3392 242734 55188 0 0 242734 55188 3392 2587 0 0 12473 10352 0 0 20465 15218 0 0 3392 2818 0 0 106028 11569 0 0 96984 12644 0 0 3392 0 0 1204 1165 1341 10160 0 0 3.77003 3.77003 -144.437 -3.77003 0 0 701300. 2426.64 0.30 0.12 0.17 -1 -1 0.30 0.0306665 0.027541 158 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 7.28 vpr 61.47 MiB 0.02 6784 -1 -1 1 0.01 -1 -1 29932 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 32 32 316 268 1 158 94 17 17 289 -1 unnamed_device 22.7 MiB 0.18 741 61.5 MiB 0.48 0.01 3.0573 -92.349 -3.0573 3.0573 1.09 0.000492359 0.00043268 0.0247493 0.0207789 30 1889 23 6.64007e+06 376740 526063. 1820.29 3.31 0.148546 0.128881 22546 126617 -1 1514 22 901 1522 91693 22200 0 0 91693 22200 1522 1107 0 0 5245 4244 0 0 6925 5627 0 0 1522 1174 0 0 37870 4701 0 0 38609 5347 0 0 1522 0 0 621 961 771 6167 0 0 2.99397 2.99397 -102.595 -2.99397 0 0 666494. 2306.21 0.29 0.06 0.15 -1 -1 0.29 0.0180382 0.0159094 112 47 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.93 vpr 60.78 MiB 0.02 7020 -1 -1 1 0.02 -1 -1 29824 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62240 31 32 277 222 1 160 81 17 17 289 -1 unnamed_device 22.1 MiB 0.09 866 60.8 MiB 0.24 0.00 2.8321 -95.6961 -2.8321 2.8321 1.13 0.000288871 0.000240534 0.0165805 0.0140401 32 1996 21 6.64007e+06 226044 554710. 1919.41 1.29 0.0680706 0.0589932 22834 132086 -1 1805 19 1412 2273 162928 37349 0 0 162928 37349 2273 1815 0 0 8186 6758 0 0 13739 9968 0 0 2273 1950 0 0 72494 7982 0 0 63963 8876 0 0 2273 0 0 861 721 966 7043 0 0 2.93297 2.93297 -117.377 -2.93297 0 0 701300. 2426.64 0.27 0.08 0.13 -1 -1 0.27 0.0178731 0.0160203 118 -1 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 7.32 vpr 61.67 MiB 0.03 6964 -1 -1 1 0.02 -1 -1 29888 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63152 32 32 382 304 1 188 97 17 17 289 -1 unnamed_device 22.9 MiB 0.18 1016 61.7 MiB 0.63 0.01 3.37136 -113.265 -3.37136 3.37136 1.08 0.000669371 0.000591831 0.0422092 0.0356124 32 2358 20 6.64007e+06 414414 554710. 1919.41 3.16 0.183779 0.15802 22834 132086 -1 2072 21 1568 2356 170936 38743 0 0 170936 38743 2356 1840 0 0 8582 7086 0 0 13711 10420 0 0 2356 1989 0 0 73155 8670 0 0 70776 8738 0 0 2356 0 0 788 902 1030 7732 0 0 3.52943 3.52943 -133.363 -3.52943 0 0 701300. 2426.64 0.26 0.08 0.14 -1 -1 0.26 0.0202072 0.017956 139 56 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.78 vpr 61.94 MiB 0.03 7124 -1 -1 1 0.02 -1 -1 30044 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63424 32 32 407 331 1 190 96 17 17 289 -1 unnamed_device 23.2 MiB 0.18 928 61.9 MiB 0.13 0.00 3.95515 -112.475 -3.95515 3.95515 0.79 0.000215031 0.000174306 0.0148056 0.0122021 32 2535 24 6.64007e+06 401856 554710. 1919.41 0.96 0.0697041 0.0590023 22834 132086 -1 2152 21 1472 2361 171444 39877 0 0 171444 39877 2361 1856 0 0 8743 7231 0 0 13779 10371 0 0 2361 1956 0 0 71619 9491 0 0 72581 8972 0 0 2361 0 0 889 943 899 7602 0 0 4.32582 4.32582 -134.83 -4.32582 0 0 701300. 2426.64 0.28 0.47 0.10 -1 -1 0.28 0.0306809 0.0277854 140 81 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 7.54 vpr 61.33 MiB 0.03 7336 -1 -1 1 0.03 -1 -1 29976 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62804 32 32 400 286 1 228 101 17 17 289 -1 unnamed_device 23.2 MiB 0.12 1299 61.3 MiB 0.31 0.01 3.86842 -132.753 -3.86842 3.86842 0.98 0.000424168 0.000360846 0.0407889 0.0347674 32 2925 28 6.64007e+06 464646 554710. 1919.41 3.83 0.183745 0.15994 22834 132086 -1 2415 21 2164 3436 209511 49120 0 0 209511 49120 3436 2600 0 0 12145 10080 0 0 19256 14112 0 0 3436 2806 0 0 83596 10257 0 0 87642 9265 0 0 3436 0 0 1272 1367 1437 11324 0 0 4.37509 4.37509 -160.138 -4.37509 0 0 701300. 2426.64 0.32 0.11 0.16 -1 -1 0.32 0.0283156 0.025477 179 -1 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 8.05 vpr 61.82 MiB 0.03 6968 -1 -1 1 0.02 -1 -1 30220 -1 -1 34 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63308 30 32 374 298 1 184 96 17 17 289 -1 unnamed_device 22.9 MiB 0.19 902 61.8 MiB 0.20 0.01 3.0603 -93.3039 -3.0603 3.0603 0.88 0.000462021 0.000374803 0.0206711 0.0169387 26 2480 24 6.64007e+06 426972 477104. 1650.88 4.55 0.193128 0.169195 21682 110474 -1 2157 20 1567 2569 172911 40719 0 0 172911 40719 2569 1874 0 0 9287 7686 0 0 14147 10797 0 0 2569 2072 0 0 73110 9167 0 0 71229 9123 0 0 2569 0 0 1002 1329 1421 9319 0 0 3.04797 3.04797 -118.497 -3.04797 0 0 585099. 2024.56 0.26 0.11 0.13 -1 -1 0.26 0.0345033 0.0303922 138 47 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 5.98 vpr 60.95 MiB 0.02 6988 -1 -1 1 0.01 -1 -1 29960 -1 -1 20 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62412 27 32 275 232 1 143 79 17 17 289 -1 unnamed_device 22.4 MiB 0.12 679 60.9 MiB 0.15 0.00 3.0555 -85.4739 -3.0555 3.0555 1.05 0.000278123 0.000226236 0.019603 0.016062 30 1509 20 6.64007e+06 251160 526063. 1820.29 2.71 0.13034 0.113713 22546 126617 -1 1341 19 829 1299 67659 16109 0 0 67659 16109 1299 958 0 0 4250 3173 0 0 5626 4468 0 0 1299 1039 0 0 28380 3114 0 0 26805 3357 0 0 1299 0 0 470 460 510 3923 0 0 2.73577 2.73577 -94.829 -2.73577 0 0 666494. 2306.21 0.19 0.03 0.09 -1 -1 0.19 0.00894418 0.00792854 103 26 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 10.90 vpr 61.98 MiB 0.03 7256 -1 -1 1 0.02 -1 -1 30232 -1 -1 42 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63472 32 32 494 379 1 232 106 17 17 289 -1 unnamed_device 23.7 MiB 0.22 1364 62.0 MiB 0.22 0.01 3.82075 -121.363 -3.82075 3.82075 0.77 0.00057882 0.000488727 0.022673 0.0185939 28 3655 24 6.64007e+06 527436 500653. 1732.36 7.36 0.188955 0.166382 21970 115934 -1 3086 21 1804 3410 264710 57634 0 0 264710 57634 3410 2744 0 0 11840 9622 0 0 17916 13939 0 0 3410 2947 0 0 120958 12866 0 0 107176 15516 0 0 3410 0 0 1606 1953 2005 13706 0 0 3.97883 3.97883 -150.33 -3.97883 0 0 612192. 2118.31 0.28 0.13 0.13 -1 -1 0.28 0.0318304 0.0285475 185 85 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 7.54 vpr 61.59 MiB 0.03 7160 -1 -1 1 0.02 -1 -1 30272 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63064 31 32 457 373 1 188 85 17 17 289 -1 unnamed_device 22.9 MiB 0.27 1037 61.6 MiB 0.21 0.00 3.64105 -119.55 -3.64105 3.64105 1.01 0.000347925 0.000286098 0.03268 0.0270018 32 2532 22 6.64007e+06 276276 554710. 1919.41 3.73 0.175579 0.150949 22834 132086 -1 2218 20 1459 2433 185699 41653 0 0 185699 41653 2433 2071 0 0 8769 7313 0 0 14508 10681 0 0 2433 2175 0 0 79147 9988 0 0 78409 9425 0 0 2433 0 0 974 1282 1129 8638 0 0 3.81463 3.81463 -144.907 -3.81463 0 0 701300. 2426.64 0.27 0.08 0.14 -1 -1 0.27 0.0231067 0.0206069 145 105 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 6.84 vpr 61.30 MiB 0.02 7060 -1 -1 1 0.01 -1 -1 29732 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62776 32 32 356 305 1 150 80 17 17 289 -1 unnamed_device 22.5 MiB 0.24 867 61.3 MiB 0.19 0.00 2.9543 -94.1008 -2.9543 2.9543 1.05 0.000317335 0.000251933 0.0288298 0.0234486 32 2006 18 6.64007e+06 200928 554710. 1919.41 3.12 0.131277 0.111914 22834 132086 -1 1801 16 835 1327 90565 20432 0 0 90565 20432 1327 1033 0 0 4669 3748 0 0 7062 5335 0 0 1327 1192 0 0 39158 4537 0 0 37022 4587 0 0 1327 0 0 492 461 344 3718 0 0 2.63437 2.63437 -112.179 -2.63437 0 0 701300. 2426.64 0.29 0.05 0.15 -1 -1 0.29 0.0161341 0.0143553 108 86 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.84 vpr 61.89 MiB 0.02 6940 -1 -1 1 0.01 -1 -1 29804 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63376 32 32 365 283 1 196 96 17 17 289 -1 unnamed_device 23.1 MiB 0.09 1103 61.9 MiB 0.28 0.01 3.65525 -118.025 -3.65525 3.65525 1.15 0.000462204 0.000391486 0.0305599 0.0252769 28 2563 19 6.64007e+06 401856 500653. 1732.36 1.19 0.101274 0.0879684 21970 115934 -1 2325 22 1701 2621 187605 42194 0 0 187605 42194 2621 2070 0 0 9195 7317 0 0 13844 10682 0 0 2621 2180 0 0 83172 9624 0 0 76152 10321 0 0 2621 0 0 920 1068 976 8021 0 0 3.83002 3.83002 -141.808 -3.83002 0 0 612192. 2118.31 0.21 0.06 0.11 -1 -1 0.21 0.0130422 0.0115296 146 31 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 7.56 vpr 61.75 MiB 0.03 7164 -1 -1 1 0.02 -1 -1 30028 -1 -1 38 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63232 31 32 445 338 1 220 101 17 17 289 -1 unnamed_device 23.5 MiB 0.10 1098 61.8 MiB 0.32 0.01 3.68676 -117.948 -3.68676 3.68676 1.06 0.000442208 0.000364842 0.0400517 0.0336298 32 2560 18 6.64007e+06 477204 554710. 1919.41 3.72 0.217304 0.188533 22834 132086 -1 2322 18 1490 2224 161466 36116 0 0 161466 36116 2224 1696 0 0 8290 6801 0 0 12725 9845 0 0 2224 1849 0 0 73463 7094 0 0 62540 8831 0 0 2224 0 0 734 1005 993 7786 0 0 3.79682 3.79682 -135.552 -3.79682 0 0 701300. 2426.64 0.26 0.11 0.12 -1 -1 0.26 0.0263518 0.0237318 173 50 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 7.35 vpr 61.66 MiB 0.03 7036 -1 -1 1 0.02 -1 -1 30020 -1 -1 34 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63136 30 32 376 300 1 186 96 17 17 289 -1 unnamed_device 22.9 MiB 0.09 937 61.7 MiB 0.19 0.01 2.9701 -89.4118 -2.9701 2.9701 1.04 0.000430088 0.000360313 0.0213152 0.0178405 32 2407 22 6.64007e+06 426972 554710. 1919.41 3.33 0.153852 0.131871 22834 132086 -1 2005 20 1454 2451 160020 36566 0 0 160020 36566 2451 1878 0 0 8510 6910 0 0 13079 9526 0 0 2451 2008 0 0 66768 8219 0 0 66761 8025 0 0 2451 0 0 997 1047 1196 8627 0 0 3.09736 3.09736 -107.784 -3.09736 0 0 701300. 2426.64 0.31 0.06 0.15 -1 -1 0.31 0.0148498 0.013214 135 50 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 8.76 vpr 62.11 MiB 0.02 6932 -1 -1 1 0.01 -1 -1 29976 -1 -1 43 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63596 32 32 408 320 1 201 107 17 17 289 -1 unnamed_device 23.3 MiB 0.18 1156 62.1 MiB 0.32 0.01 3.35816 -119.712 -3.35816 3.35816 1.05 0.000370376 0.000301634 0.0352519 0.0292978 26 3094 28 6.64007e+06 539994 477104. 1650.88 4.90 0.224766 0.193612 21682 110474 -1 2463 22 2084 3363 239784 53554 0 0 239784 53554 3363 2543 0 0 11779 9545 0 0 17936 13217 0 0 3363 2774 0 0 105350 12491 0 0 97993 12984 0 0 3363 0 0 1279 1548 1812 11786 0 0 4.04503 4.04503 -154.59 -4.04503 0 0 585099. 2024.56 0.26 0.12 0.12 -1 -1 0.26 0.0302471 0.0270883 158 61 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 7.69 vpr 61.52 MiB 0.02 7000 -1 -1 1 0.02 -1 -1 30008 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62996 32 32 406 319 1 200 104 17 17 289 -1 unnamed_device 23.2 MiB 0.23 1061 61.5 MiB 0.16 0.00 2.7929 -100.314 -2.7929 2.7929 0.99 0.000241231 0.000171261 0.0177208 0.0144187 32 2453 22 6.64007e+06 502320 554710. 1919.41 3.65 0.196424 0.17004 22834 132086 -1 2052 17 1466 2267 154608 36056 0 0 154608 36056 2267 1577 0 0 8484 7043 0 0 12664 9797 0 0 2267 1775 0 0 65382 8017 0 0 63544 7847 0 0 2267 0 0 801 851 946 7095 0 0 3.00317 3.00317 -117.428 -3.00317 0 0 701300. 2426.64 0.25 0.06 0.14 -1 -1 0.25 0.0184001 0.016414 157 61 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.46 vpr 61.36 MiB 0.02 6992 -1 -1 1 0.01 -1 -1 29932 -1 -1 18 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62828 29 32 291 242 1 134 79 17 17 289 -1 unnamed_device 22.4 MiB 0.09 534 61.4 MiB 0.08 0.00 2.7361 -83.243 -2.7361 2.7361 0.82 0.000143234 0.000113742 0.0111291 0.00901356 30 1380 20 6.64007e+06 226044 526063. 1820.29 2.18 0.106226 0.0921318 22546 126617 -1 1166 21 703 1106 55810 14606 0 0 55810 14606 1106 822 0 0 3757 2818 0 0 4825 3955 0 0 1106 932 0 0 22470 3192 0 0 22546 2887 0 0 1106 0 0 403 464 429 3208 0 0 2.66257 2.66257 -98.2757 -2.66257 0 0 666494. 2306.21 0.30 0.05 0.15 -1 -1 0.30 0.0171448 0.0152508 97 28 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 7.05 vpr 61.29 MiB 0.02 6920 -1 -1 1 0.02 -1 -1 29776 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62760 32 32 335 291 1 156 83 17 17 289 -1 unnamed_device 22.5 MiB 0.27 800 61.3 MiB 0.19 0.00 3.39936 -95.4301 -3.39936 3.39936 0.75 0.000352008 0.00028265 0.0259257 0.0204552 32 1903 19 6.64007e+06 238602 554710. 1919.41 2.98 0.149804 0.127037 22834 132086 -1 1632 20 1012 1445 110247 25548 0 0 110247 25548 1445 1109 0 0 5354 4439 0 0 9049 7001 0 0 1445 1215 0 0 45279 6218 0 0 47675 5566 0 0 1445 0 0 433 343 432 3657 0 0 3.02517 3.02517 -106.664 -3.02517 0 0 701300. 2426.64 0.31 0.59 0.16 -1 -1 0.31 0.025756 0.0233679 112 79 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 7.85 vpr 61.88 MiB 0.03 6936 -1 -1 1 0.02 -1 -1 29868 -1 -1 38 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63368 31 32 367 283 1 196 101 17 17 289 -1 unnamed_device 23.1 MiB 0.11 942 61.9 MiB 0.20 0.01 3.71976 -116.168 -3.71976 3.71976 1.07 0.000488979 0.000407218 0.0188764 0.01555 30 2411 22 6.64007e+06 477204 526063. 1820.29 3.67 0.177358 0.155514 22546 126617 -1 2071 17 1341 2110 113103 26437 0 0 113103 26437 2110 1592 0 0 6884 5095 0 0 8959 7109 0 0 2110 1729 0 0 45401 5724 0 0 47639 5188 0 0 2110 0 0 769 939 915 7245 0 0 3.79763 3.79763 -139.093 -3.79763 0 0 666494. 2306.21 0.30 0.07 0.15 -1 -1 0.30 0.0214721 0.0192756 152 29 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 8.27 vpr 61.08 MiB 0.03 6844 -1 -1 1 0.02 -1 -1 29932 -1 -1 31 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62544 29 32 301 258 1 150 92 17 17 289 -1 unnamed_device 22.4 MiB 0.30 587 61.1 MiB 0.25 0.01 3.0133 -81.0086 -3.0133 3.0133 1.06 0.000381459 0.000316819 0.0281939 0.0233444 28 1947 22 6.64007e+06 389298 500653. 1732.36 4.43 0.130565 0.112624 21970 115934 -1 1502 17 865 1501 95708 23659 0 0 95708 23659 1501 1111 0 0 5303 4181 0 0 7632 6001 0 0 1501 1190 0 0 38786 5849 0 0 40985 5327 0 0 1501 0 0 636 921 800 6138 0 0 2.87277 2.87277 -97.8705 -2.87277 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0130586 0.0115945 108 48 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 7.05 vpr 61.46 MiB 0.09 6800 -1 -1 1 0.02 -1 -1 29840 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62940 32 32 315 257 1 160 81 17 17 289 -1 unnamed_device 22.7 MiB 0.27 908 61.5 MiB 0.15 0.00 2.7929 -103.64 -2.7929 2.7929 0.95 0.000252315 0.000204529 0.0205097 0.016973 32 2115 21 6.64007e+06 213486 554710. 1919.41 3.13 0.132985 0.114539 22834 132086 -1 1893 21 1505 2510 167082 37259 0 0 167082 37259 2510 1773 0 0 8693 7134 0 0 13829 9983 0 0 2510 1931 0 0 67326 8666 0 0 72214 7772 0 0 2510 0 0 1005 950 1024 7951 0 0 3.01697 3.01697 -123.453 -3.01697 0 0 701300. 2426.64 0.30 0.22 0.15 -1 -1 0.30 0.0212013 0.0189376 119 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 6.14 vpr 61.53 MiB 0.11 7036 -1 -1 1 0.03 -1 -1 29904 -1 -1 37 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 31 32 389 309 1 189 100 17 17 289 -1 unnamed_device 22.7 MiB 0.23 938 61.5 MiB 0.18 0.01 3.0695 -97.8317 -3.0695 3.0695 0.99 0.000500249 0.000425731 0.0216448 0.0180792 30 2001 21 6.64007e+06 464646 526063. 1820.29 2.43 0.161136 0.140387 22546 126617 -1 1769 20 1182 1788 92193 22245 0 0 92193 22245 1788 1222 0 0 5892 4521 0 0 7888 6283 0 0 1788 1382 0 0 37770 4434 0 0 37067 4403 0 0 1788 0 0 606 669 863 5874 0 0 2.96017 2.96017 -114.178 -2.96017 0 0 666494. 2306.21 0.31 0.07 0.13 -1 -1 0.31 0.0253365 0.0228225 143 60 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 6.21 vpr 60.86 MiB 0.02 7016 -1 -1 1 0.01 -1 -1 29796 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62316 31 32 310 264 1 147 80 17 17 289 -1 unnamed_device 22.4 MiB 0.27 738 60.9 MiB 0.23 0.00 2.70619 -85.9169 -2.70619 2.70619 1.00 0.000299172 0.000241168 0.0265944 0.0189087 30 1794 19 6.64007e+06 213486 526063. 1820.29 2.49 0.126472 0.106299 22546 126617 -1 1571 19 852 1427 83287 19669 0 0 83287 19669 1427 1043 0 0 4875 3779 0 0 6112 5043 0 0 1427 1134 0 0 34050 4567 0 0 35396 4103 0 0 1427 0 0 575 610 584 4546 0 0 2.72277 2.72277 -100.391 -2.72277 0 0 666494. 2306.21 0.26 0.05 0.12 -1 -1 0.26 0.0157045 0.0140406 106 49 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.92 vpr 61.80 MiB 0.03 7004 -1 -1 1 0.02 -1 -1 30020 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63280 32 32 384 308 1 184 97 17 17 289 -1 unnamed_device 22.9 MiB 0.29 990 61.8 MiB 0.24 0.01 2.7379 -96.7083 -2.7379 2.7379 1.12 0.00045903 0.000382325 0.0269928 0.0222382 26 2751 25 6.64007e+06 414414 477104. 1650.88 3.65 0.148226 0.128144 21682 110474 -1 2166 21 1260 2142 190043 40468 0 0 190043 40468 2142 1595 0 0 7969 6419 0 0 11387 9048 0 0 2142 1725 0 0 85000 10312 0 0 81403 11369 0 0 2142 0 0 882 1644 1572 10152 0 0 2.75397 2.75397 -115.691 -2.75397 0 0 585099. 2024.56 0.24 0.14 0.13 -1 -1 0.24 0.0236363 0.0211553 137 56 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.38 vpr 61.48 MiB 0.03 7012 -1 -1 1 0.02 -1 -1 30000 -1 -1 38 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62960 31 32 424 341 1 195 101 17 17 289 -1 unnamed_device 23.0 MiB 0.28 915 61.5 MiB 0.31 0.01 3.1325 -99.4847 -3.1325 3.1325 1.06 0.000575632 0.000503593 0.0278533 0.0239222 26 2586 28 6.64007e+06 477204 477104. 1650.88 1.48 0.135434 0.120429 21682 110474 -1 2173 22 1754 2597 184983 43968 0 0 184983 43968 2597 1999 0 0 9575 7776 0 0 14052 10983 0 0 2597 2160 0 0 81030 9922 0 0 75132 11128 0 0 2597 0 0 843 1127 1132 8171 0 0 3.25977 3.25977 -125.418 -3.25977 0 0 585099. 2024.56 0.27 0.10 0.13 -1 -1 0.27 0.0280207 0.025015 150 88 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 6.30 vpr 61.17 MiB 0.02 6732 -1 -1 1 0.01 -1 -1 29860 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62640 32 32 334 280 1 160 82 17 17 289 -1 unnamed_device 22.4 MiB 0.17 778 61.2 MiB 0.21 0.01 2.55679 -90.6277 -2.55679 2.55679 0.98 0.000472753 0.00040657 0.0194335 0.015908 30 1799 21 6.64007e+06 226044 526063. 1820.29 2.66 0.142584 0.124189 22546 126617 -1 1569 22 1015 1559 96623 22110 0 0 96623 22110 1559 1152 0 0 5151 3994 0 0 6685 5341 0 0 1559 1226 0 0 45560 4435 0 0 36109 5962 0 0 1559 0 0 544 412 426 4141 0 0 2.61137 2.61137 -105.983 -2.61137 0 0 666494. 2306.21 0.30 0.07 0.13 -1 -1 0.30 0.0253645 0.0228219 115 54 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.58 vpr 61.24 MiB 0.02 6668 -1 -1 1 0.01 -1 -1 29780 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62712 32 32 340 284 1 164 82 17 17 289 -1 unnamed_device 22.4 MiB 0.24 901 61.2 MiB 0.32 0.00 2.7819 -99.5371 -2.7819 2.7819 0.88 0.000294409 0.000232388 0.029543 0.0245503 32 2289 25 6.64007e+06 226044 554710. 1919.41 1.07 0.0862532 0.0736993 22834 132086 -1 1951 19 1434 2362 160759 36777 0 0 160759 36777 2362 1930 0 0 8195 6772 0 0 12772 9426 0 0 2362 2043 0 0 68128 8264 0 0 66940 8342 0 0 2362 0 0 928 815 977 7338 0 0 2.88297 2.88297 -116.369 -2.88297 0 0 701300. 2426.64 0.25 0.09 0.10 -1 -1 0.25 0.0229779 0.0206372 121 60 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 7.35 vpr 61.93 MiB 0.03 6968 -1 -1 1 0.01 -1 -1 30256 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63416 32 32 408 320 1 198 102 17 17 289 -1 unnamed_device 23.2 MiB 0.19 1028 61.9 MiB 0.22 0.00 3.41536 -118.407 -3.41536 3.41536 1.06 0.000300367 0.000244125 0.028095 0.0230946 32 2585 25 6.64007e+06 477204 554710. 1919.41 3.49 0.213301 0.18559 22834 132086 -1 2346 24 2052 3035 260472 55599 0 0 260472 55599 3035 2255 0 0 11328 9405 0 0 18396 14016 0 0 3035 2480 0 0 119313 12456 0 0 105365 14987 0 0 3035 0 0 983 1305 1214 10001 0 0 3.62623 3.62623 -143.528 -3.62623 0 0 701300. 2426.64 0.31 0.12 0.16 -1 -1 0.31 0.0293447 0.0262779 156 49 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 7.65 vpr 61.70 MiB 0.03 7124 -1 -1 1 0.01 -1 -1 30012 -1 -1 34 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63180 29 32 371 297 1 183 95 17 17 289 -1 unnamed_device 22.9 MiB 0.22 914 61.7 MiB 0.32 0.01 2.7969 -88.6742 -2.7969 2.7969 0.96 0.000553176 0.000474297 0.0269293 0.0231425 26 2724 49 6.64007e+06 426972 477104. 1650.88 3.97 0.172351 0.150628 21682 110474 -1 1999 20 1342 2158 153878 38782 0 0 153878 38782 2158 1550 0 0 7638 6025 0 0 11175 8514 0 0 2158 1639 0 0 64011 10575 0 0 66738 10479 0 0 2158 0 0 816 1246 1269 8993 0 0 3.19257 3.19257 -111.564 -3.19257 0 0 585099. 2024.56 0.26 0.08 0.12 -1 -1 0.26 0.0242967 0.0218196 135 54 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 7.62 vpr 61.89 MiB 0.03 6992 -1 -1 1 0.02 -1 -1 30172 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63380 32 32 470 382 1 200 103 17 17 289 -1 unnamed_device 23.0 MiB 0.38 1062 61.9 MiB 0.33 0.01 3.34716 -120.02 -3.34716 3.34716 1.04 0.000839583 0.000747064 0.0313421 0.0267047 28 2850 22 6.64007e+06 489762 500653. 1732.36 3.78 0.249496 0.220209 21970 115934 -1 2424 23 1968 3014 239245 53291 0 0 239245 53291 3014 2245 0 0 10945 9334 0 0 16915 13153 0 0 3014 2457 0 0 102890 13333 0 0 102467 12769 0 0 3014 0 0 1046 1340 1537 10391 0 0 3.74643 3.74643 -147.894 -3.74643 0 0 612192. 2118.31 0.26 0.11 0.14 -1 -1 0.26 0.0293838 0.0260982 158 117 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.72 vpr 61.08 MiB 0.03 6948 -1 -1 1 0.01 -1 -1 29828 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62544 31 32 261 214 1 146 80 17 17 289 -1 unnamed_device 22.5 MiB 0.09 725 61.1 MiB 0.13 0.00 2.50628 -83.5111 -2.50628 2.50628 1.03 0.000257033 0.000207588 0.0178077 0.0145642 32 1696 22 6.64007e+06 213486 554710. 1919.41 1.18 0.0635263 0.0541837 22834 132086 -1 1478 20 919 1495 108080 24468 0 0 108080 24468 1495 1096 0 0 5458 4493 0 0 8406 6423 0 0 1495 1122 0 0 48039 5435 0 0 43187 5899 0 0 1495 0 0 576 644 491 4540 0 0 2.90317 2.90317 -102.419 -2.90317 0 0 701300. 2426.64 0.29 0.07 0.16 -1 -1 0.29 0.0245236 0.0226789 106 -1 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 7.65 vpr 61.73 MiB 0.07 7244 -1 -1 1 0.02 -1 -1 29856 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63216 32 32 419 339 1 190 97 17 17 289 -1 unnamed_device 23.0 MiB 0.23 816 61.7 MiB 0.11 0.00 3.80195 -109.429 -3.80195 3.80195 0.79 0.000198023 0.000157602 0.011626 0.0094638 32 2224 21 6.64007e+06 414414 554710. 1919.41 4.08 0.171299 0.148148 22834 132086 -1 1850 21 1556 2331 151066 36782 0 0 151066 36782 2331 1781 0 0 8525 6928 0 0 13677 10386 0 0 2331 1905 0 0 63529 7880 0 0 60673 7902 0 0 2331 0 0 775 790 861 6893 0 0 3.96743 3.96743 -133.405 -3.96743 0 0 701300. 2426.64 0.33 0.10 0.16 -1 -1 0.33 0.0281308 0.02516 143 89 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 7.39 vpr 61.65 MiB 0.02 6992 -1 -1 1 0.02 -1 -1 29896 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63132 32 32 377 319 1 155 81 17 17 289 -1 unnamed_device 22.8 MiB 0.26 693 61.7 MiB 0.28 0.00 2.9223 -100.424 -2.9223 2.9223 1.05 0.000353231 0.000283418 0.0285982 0.0234067 34 1658 46 6.64007e+06 213486 585099. 2024.56 3.54 0.15505 0.132072 23122 138558 -1 1371 21 1250 1837 91837 25332 0 0 91837 25332 1837 1338 0 0 6384 5107 0 0 9735 7317 0 0 1837 1467 0 0 37315 5077 0 0 34729 5026 0 0 1837 0 0 587 637 641 4994 0 0 2.99397 2.99397 -117.519 -2.99397 0 0 742403. 2568.87 0.28 0.06 0.15 -1 -1 0.28 0.0191719 0.0170351 114 93 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 7.27 vpr 61.53 MiB 0.03 7092 -1 -1 1 0.02 -1 -1 30016 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 32 32 402 317 1 196 101 17 17 289 -1 unnamed_device 22.9 MiB 0.25 994 61.5 MiB 0.31 0.01 2.8629 -101.071 -2.8629 2.8629 0.90 0.000403068 0.0003276 0.0312182 0.0261499 32 2230 18 6.64007e+06 464646 554710. 1919.41 3.58 0.170932 0.147852 22834 132086 -1 1933 21 1383 2099 137329 31865 0 0 137329 31865 2099 1500 0 0 7756 6480 0 0 11866 8989 0 0 2099 1629 0 0 59074 6285 0 0 54435 6982 0 0 2099 0 0 716 1030 1116 7825 0 0 2.82057 2.82057 -114.778 -2.82057 0 0 701300. 2426.64 0.29 0.07 0.16 -1 -1 0.29 0.0222241 0.0198199 151 59 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 10.16 vpr 61.72 MiB 0.02 7176 -1 -1 1 0.02 -1 -1 30212 -1 -1 45 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63204 32 32 501 383 1 232 109 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1171 61.7 MiB 0.36 0.01 4.02462 -136.063 -4.02462 4.02462 1.03 0.000798358 0.000689425 0.0376582 0.032264 28 3161 23 6.64007e+06 565110 500653. 1732.36 6.02 0.242921 0.212883 21970 115934 -1 2634 24 2363 3616 266713 58456 0 0 266713 58456 3616 2615 0 0 12727 10288 0 0 18557 14535 0 0 3616 2837 0 0 124955 12191 0 0 103242 15990 0 0 3616 0 0 1253 1800 2184 14341 0 0 4.55208 4.55208 -167.783 -4.55208 0 0 612192. 2118.31 0.23 0.12 0.11 -1 -1 0.23 0.0309464 0.0275932 188 81 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 6.44 vpr 60.52 MiB 0.02 6552 -1 -1 1 0.02 -1 -1 29740 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61972 30 32 249 232 1 118 77 17 17 289 -1 unnamed_device 21.9 MiB 0.11 517 60.5 MiB 0.11 0.00 2.10964 -66.1018 -2.10964 2.10964 1.06 0.000195549 0.000156276 0.0169636 0.0138081 28 1298 19 6.64007e+06 188370 500653. 1732.36 2.71 0.0877968 0.0743613 21970 115934 -1 1162 16 597 793 51676 13956 0 0 51676 13956 793 727 0 0 2957 2361 0 0 4095 3357 0 0 793 754 0 0 21720 3255 0 0 21318 3502 0 0 793 0 0 196 99 162 1714 0 0 2.06511 2.06511 -85.339 -2.06511 0 0 612192. 2118.31 0.28 0.05 0.13 -1 -1 0.28 0.0127054 0.0113344 83 51 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 6.08 vpr 61.27 MiB 0.02 6772 -1 -1 1 0.02 -1 -1 29888 -1 -1 17 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62744 30 32 299 247 1 137 79 17 17 289 -1 unnamed_device 22.4 MiB 0.10 718 61.3 MiB 0.28 0.00 2.9603 -93.822 -2.9603 2.9603 0.86 0.000316107 0.000258571 0.0273147 0.0228318 30 1593 19 6.64007e+06 213486 526063. 1820.29 2.58 0.121999 0.105881 22546 126617 -1 1376 19 741 1200 71330 16485 0 0 71330 16485 1200 937 0 0 4059 3042 0 0 5215 4227 0 0 1200 996 0 0 30705 3537 0 0 28951 3746 0 0 1200 0 0 459 549 492 3822 0 0 2.77457 2.77457 -103.884 -2.77457 0 0 666494. 2306.21 0.29 0.06 0.14 -1 -1 0.29 0.0194717 0.0173501 97 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.97 vpr 61.27 MiB 0.02 6748 -1 -1 1 0.02 -1 -1 29800 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62744 32 32 315 257 1 167 82 17 17 289 -1 unnamed_device 22.5 MiB 0.13 938 61.3 MiB 0.31 0.00 2.7647 -101.074 -2.7647 2.7647 1.05 0.000311959 0.0002506 0.0307305 0.0255125 32 2399 19 6.64007e+06 226044 554710. 1919.41 1.05 0.0809227 0.0695266 22834 132086 -1 2001 21 1515 2718 196611 43502 0 0 196611 43502 2718 1988 0 0 9457 7910 0 0 15040 10839 0 0 2718 2136 0 0 85013 10295 0 0 81665 10334 0 0 2718 0 0 1203 1102 1249 9390 0 0 2.97497 2.97497 -122.114 -2.97497 0 0 701300. 2426.64 0.24 0.16 0.11 -1 -1 0.24 0.0202412 0.0181206 126 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.90 vpr 60.89 MiB 0.02 6844 -1 -1 1 0.02 -1 -1 30008 -1 -1 34 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62356 25 32 259 222 1 138 91 17 17 289 -1 unnamed_device 22.3 MiB 0.06 607 60.9 MiB 0.29 0.00 2.7639 -75.5333 -2.7639 2.7639 1.06 0.000247761 0.000197455 0.0214046 0.0177429 32 1439 22 6.64007e+06 426972 554710. 1919.41 3.08 0.0969386 0.0823467 22834 132086 -1 1249 20 999 1539 100607 22746 0 0 100607 22746 1539 1085 0 0 5383 4357 0 0 8421 6073 0 0 1539 1200 0 0 46186 4371 0 0 37539 5660 0 0 1539 0 0 540 618 645 5318 0 0 2.64277 2.64277 -84.2419 -2.64277 0 0 701300. 2426.64 0.31 0.06 0.16 -1 -1 0.31 0.0146329 0.0129619 103 19 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 7.24 vpr 61.86 MiB 0.03 7012 -1 -1 1 0.04 -1 -1 30096 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63348 32 32 433 347 1 193 86 17 17 289 -1 unnamed_device 23.2 MiB 0.33 1074 61.9 MiB 0.34 0.00 3.50535 -115.313 -3.50535 3.50535 0.99 0.000263019 0.0002145 0.0331309 0.0271894 30 2596 19 6.64007e+06 276276 526063. 1820.29 3.16 0.187424 0.159722 22546 126617 -1 2113 18 1419 2509 119103 30290 0 0 119103 30290 2509 1647 0 0 8440 6979 0 0 10976 8872 0 0 2509 1814 0 0 45578 6031 0 0 49091 4947 0 0 2509 0 0 1090 1104 779 8066 0 0 3.66843 3.66843 -139.438 -3.66843 0 0 666494. 2306.21 0.29 0.07 0.16 -1 -1 0.29 0.0240761 0.0216345 148 84 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 8.42 vpr 61.88 MiB 0.02 7236 -1 -1 1 0.01 -1 -1 29968 -1 -1 38 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63364 31 32 423 341 1 193 101 17 17 289 -1 unnamed_device 23.1 MiB 0.29 845 61.9 MiB 0.24 0.00 3.0823 -97.147 -3.0823 3.0823 0.97 0.00051532 0.000436897 0.0207647 0.0173812 28 2382 24 6.64007e+06 477204 500653. 1732.36 4.50 0.185808 0.161974 21970 115934 -1 1924 22 1721 2680 178189 43694 0 0 178189 43694 2680 1925 0 0 9366 7457 0 0 13979 10657 0 0 2680 2106 0 0 72849 10242 0 0 76635 11307 0 0 2680 0 0 959 1227 1165 8669 0 0 3.27777 3.27777 -122.656 -3.27777 0 0 612192. 2118.31 0.29 0.10 0.14 -1 -1 0.29 0.0267057 0.0237549 147 88 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 9.02 vpr 61.24 MiB 0.03 7164 -1 -1 1 0.02 -1 -1 30256 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62708 32 32 439 351 1 194 98 17 17 289 -1 unnamed_device 23.0 MiB 0.41 964 61.2 MiB 0.19 0.01 3.18564 -110.686 -3.18564 3.18564 0.99 0.000532095 0.000453357 0.0220584 0.0185621 30 2619 24 6.65987e+06 431052 526063. 1820.29 5.00 0.251213 0.219375 22546 126617 -1 2047 23 1657 2654 149796 37708 0 0 149796 37708 2654 1941 0 0 8949 7128 0 0 12430 9950 0 0 2654 2141 0 0 65420 7527 0 0 57689 9021 0 0 2654 0 0 997 1419 1135 9245 0 0 3.53811 3.53811 -137.982 -3.53811 0 0 666494. 2306.21 0.28 0.09 0.15 -1 -1 0.28 0.0275749 0.0245943 151 80 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 6.12 vpr 61.36 MiB 0.03 7084 -1 -1 1 0.02 -1 -1 30108 -1 -1 21 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62836 30 32 412 333 1 186 83 17 17 289 -1 unnamed_device 22.7 MiB 0.47 857 61.4 MiB 0.38 0.01 3.4765 -103.217 -3.4765 3.4765 1.10 0.00106193 0.000849987 0.0461602 0.0392195 32 2584 25 6.65987e+06 266238 554710. 1919.41 1.39 0.122015 0.105781 22834 132086 -1 2025 23 1842 3058 218334 52415 0 0 218334 52415 3058 2417 0 0 11475 9911 0 0 18641 14146 0 0 3058 2535 0 0 90192 12267 0 0 91910 11139 0 0 3058 0 0 1216 1382 1219 9657 0 0 3.89491 3.89491 -132.936 -3.89491 0 0 701300. 2426.64 0.31 0.16 0.14 -1 -1 0.31 0.0296151 0.0267428 140 78 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.16 vpr 61.74 MiB 0.02 6912 -1 -1 1 0.01 -1 -1 30044 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63220 32 32 388 310 1 186 98 17 17 289 -1 unnamed_device 23.1 MiB 0.20 995 61.7 MiB 0.18 0.01 2.72347 -97.1213 -2.72347 2.72347 1.07 0.00039694 0.000326491 0.0205005 0.0168551 28 2456 23 6.65987e+06 431052 500653. 1732.36 1.31 0.106749 0.0941347 21970 115934 -1 2342 21 1476 2376 180287 41817 0 0 180287 41817 2376 1776 0 0 8829 7482 0 0 13463 10725 0 0 2376 1874 0 0 76945 10073 0 0 76298 9887 0 0 2376 0 0 900 1303 1570 9929 0 0 3.27085 3.27085 -127.69 -3.27085 0 0 612192. 2118.31 0.26 0.12 0.16 -1 -1 0.26 0.0252008 0.0226574 141 50 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.83 vpr 61.19 MiB 0.03 6936 -1 -1 1 0.02 -1 -1 30020 -1 -1 22 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62656 29 32 347 271 1 184 83 17 17 289 -1 unnamed_device 22.5 MiB 0.13 903 61.2 MiB 0.21 0.00 3.5765 -105.197 -3.5765 3.5765 1.05 0.000323745 0.000270561 0.0234861 0.0193837 32 2585 42 6.65987e+06 278916 554710. 1919.41 1.90 0.11831 0.104279 22834 132086 -1 2070 22 1821 3058 254042 57993 0 0 254042 57993 3058 2494 0 0 11944 10105 0 0 19597 15119 0 0 3058 2648 0 0 108748 14017 0 0 107637 13610 0 0 3058 0 0 1237 1560 1499 10746 0 0 3.81357 3.81357 -133.488 -3.81357 0 0 701300. 2426.64 0.23 0.26 0.14 -1 -1 0.23 0.0253153 0.0228676 138 25 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 10.11 vpr 61.45 MiB 0.02 7008 -1 -1 1 0.02 -1 -1 30008 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62928 32 32 377 289 1 195 84 17 17 289 -1 unnamed_device 22.8 MiB 0.22 1010 61.5 MiB 0.29 0.00 3.30796 -115.547 -3.30796 3.30796 0.95 0.000193593 0.000156255 0.0306052 0.0258058 28 2953 28 6.65987e+06 253560 500653. 1732.36 6.47 0.236383 0.209649 21970 115934 -1 2499 20 1751 3146 225378 52484 0 0 225378 52484 3146 2402 0 0 11483 10047 0 0 18115 14269 0 0 3146 2440 0 0 100653 10924 0 0 88835 12402 0 0 3146 0 0 1395 1405 1205 10557 0 0 3.82563 3.82563 -148.129 -3.82563 0 0 612192. 2118.31 0.26 0.09 0.14 -1 -1 0.26 0.021219 0.0191644 152 31 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.76 vpr 61.05 MiB 0.07 7148 -1 -1 1 0.02 -1 -1 29900 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62520 32 32 403 317 1 199 100 17 17 289 -1 unnamed_device 22.7 MiB 0.43 1022 61.1 MiB 0.37 0.00 2.91304 -96.7849 -2.91304 2.91304 1.06 0.000406429 0.000336085 0.0409892 0.0351209 30 2339 19 6.65987e+06 456408 526063. 1820.29 1.44 0.12833 0.112076 22546 126617 -1 1923 20 1236 2009 103357 25152 0 0 103357 25152 2009 1362 0 0 6804 5292 0 0 8810 7192 0 0 2009 1478 0 0 41826 5016 0 0 41899 4812 0 0 2009 0 0 773 824 850 7008 0 0 2.72771 2.72771 -111.769 -2.72771 0 0 666494. 2306.21 0.29 0.07 0.14 -1 -1 0.29 0.0261289 0.0236535 154 61 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 5.33 vpr 60.76 MiB 0.03 6840 -1 -1 1 0.02 -1 -1 29960 -1 -1 19 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62216 27 32 275 232 1 135 78 17 17 289 -1 unnamed_device 22.2 MiB 0.30 600 60.8 MiB 0.11 0.00 2.6767 -79.2284 -2.6767 2.6767 1.08 0.000152472 0.000123781 0.0155008 0.01269 26 1737 21 6.65987e+06 240882 477104. 1650.88 1.37 0.0843396 0.0745232 21682 110474 -1 1544 20 1091 1790 135871 33286 0 0 135871 33286 1790 1340 0 0 7029 6094 0 0 11465 9142 0 0 1790 1399 0 0 55501 8064 0 0 58296 7247 0 0 1790 0 0 699 846 796 5895 0 0 3.01711 3.01711 -102.309 -3.01711 0 0 585099. 2024.56 0.26 0.17 0.13 -1 -1 0.26 0.0200019 0.0180267 99 26 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 7.98 vpr 61.14 MiB 0.03 6952 -1 -1 1 0.01 -1 -1 29880 -1 -1 33 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62608 31 32 319 244 1 185 96 17 17 289 -1 unnamed_device 22.5 MiB 0.16 1021 61.1 MiB 0.13 0.00 2.73284 -89.9468 -2.73284 2.73284 0.95 0.000176051 0.000139651 0.0141277 0.0115467 28 2375 21 6.65987e+06 418374 500653. 1732.36 4.19 0.169724 0.149343 21970 115934 -1 2082 19 1205 2038 151576 34523 0 0 151576 34523 2038 1478 0 0 7539 6183 0 0 11285 9119 0 0 2038 1613 0 0 67492 7522 0 0 61184 8608 0 0 2038 0 0 833 1286 1366 9009 0 0 2.73891 2.73891 -104.723 -2.73891 0 0 612192. 2118.31 0.28 0.19 0.13 -1 -1 0.28 0.0212212 0.0191942 139 -1 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.60 vpr 61.15 MiB 0.02 6816 -1 -1 1 0.01 -1 -1 29884 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62616 31 32 340 294 1 148 79 17 17 289 -1 unnamed_device 22.3 MiB 0.26 698 61.1 MiB 0.08 0.00 2.45267 -78.5772 -2.45267 2.45267 0.99 0.000326018 0.000265291 0.00995145 0.00814836 32 1780 20 6.65987e+06 202848 554710. 1919.41 1.00 0.0558933 0.0479815 22834 132086 -1 1608 19 915 1431 99270 24001 0 0 99270 24001 1431 1182 0 0 5330 4479 0 0 8344 6458 0 0 1431 1242 0 0 41580 5332 0 0 41154 5308 0 0 1431 0 0 516 407 411 3931 0 0 2.60545 2.60545 -99.3333 -2.60545 0 0 701300. 2426.64 0.30 0.07 0.14 -1 -1 0.30 0.0134532 0.0121044 105 81 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.86 vpr 61.24 MiB 0.02 6760 -1 -1 1 0.02 -1 -1 29804 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62708 32 32 315 257 1 162 81 17 17 289 -1 unnamed_device 22.4 MiB 0.40 668 61.2 MiB 0.14 0.00 2.7647 -96.0315 -2.7647 2.7647 0.98 0.000308782 0.000248904 0.0140774 0.0118253 32 2038 24 6.65987e+06 215526 554710. 1919.41 1.25 0.0759334 0.0662 22834 132086 -1 1653 21 1405 2128 157639 38152 0 0 157639 38152 2128 1759 0 0 8079 6893 0 0 12264 9441 0 0 2128 1827 0 0 67169 8244 0 0 65871 9988 0 0 2128 0 0 723 926 797 6616 0 0 3.05797 3.05797 -121.205 -3.05797 0 0 701300. 2426.64 0.26 0.07 0.13 -1 -1 0.26 0.0184712 0.0166108 121 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 7.21 vpr 61.13 MiB 0.03 6944 -1 -1 1 0.01 -1 -1 29828 -1 -1 17 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62600 30 32 328 276 1 151 79 17 17 289 -1 unnamed_device 22.3 MiB 0.29 733 61.1 MiB 0.16 0.00 2.80139 -91.6342 -2.80139 2.80139 0.98 0.000350306 0.000286585 0.0223641 0.0182546 30 1825 20 6.65987e+06 215526 526063. 1820.29 3.39 0.127621 0.10943 22546 126617 -1 1486 20 801 1178 68307 16566 0 0 68307 16566 1178 881 0 0 4057 3120 0 0 5136 4236 0 0 1178 928 0 0 28203 3636 0 0 28555 3765 0 0 1178 0 0 377 276 404 3249 0 0 2.92897 2.92897 -110.851 -2.92897 0 0 666494. 2306.21 0.30 0.08 0.15 -1 -1 0.30 0.0213006 0.0191126 110 58 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 8.07 vpr 61.32 MiB 0.01 6960 -1 -1 1 0.02 -1 -1 29984 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62792 32 32 332 281 1 156 93 17 17 289 -1 unnamed_device 22.5 MiB 0.32 909 61.3 MiB 0.26 0.00 2.44518 -87.0356 -2.44518 2.44518 1.02 0.00030821 0.000256874 0.0224459 0.0188675 34 2117 34 6.65987e+06 367662 585099. 2024.56 4.19 0.173569 0.150471 23122 138558 -1 1822 20 1060 1725 133650 29945 0 0 133650 29945 1725 1180 0 0 6533 5409 0 0 10123 7976 0 0 1725 1290 0 0 54871 7549 0 0 58673 6541 0 0 1725 0 0 665 840 716 6300 0 0 2.59825 2.59825 -107.592 -2.59825 0 0 742403. 2568.87 0.25 0.07 0.17 -1 -1 0.25 0.0193994 0.0172927 114 57 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 8.02 vpr 61.47 MiB 0.09 7004 -1 -1 1 0.02 -1 -1 29796 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62944 32 32 387 306 1 188 96 17 17 289 -1 unnamed_device 22.9 MiB 0.43 913 61.5 MiB 0.39 0.01 2.8739 -99.5668 -2.8739 2.8739 1.00 0.000390913 0.000319094 0.0371979 0.0305802 32 2398 24 6.65987e+06 405696 554710. 1919.41 3.76 0.213877 0.18843 22834 132086 -1 1894 19 1572 2629 178958 42358 0 0 178958 42358 2629 1875 0 0 9812 8389 0 0 15653 11997 0 0 2629 2034 0 0 77169 8560 0 0 71066 9503 0 0 2629 0 0 1057 1286 1156 9226 0 0 2.88397 2.88397 -114.984 -2.88397 0 0 701300. 2426.64 0.26 0.11 0.15 -1 -1 0.26 0.0251755 0.0226067 143 55 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 7.98 vpr 61.41 MiB 0.03 7212 -1 -1 1 0.02 -1 -1 29964 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62880 32 32 408 320 1 200 98 17 17 289 -1 unnamed_device 23.0 MiB 0.36 958 61.4 MiB 0.14 0.01 3.2039 -109.523 -3.2039 3.2039 0.97 0.000425191 0.000353728 0.0181589 0.0152267 30 2458 23 6.65987e+06 431052 526063. 1820.29 3.82 0.178092 0.151353 22546 126617 -1 1919 23 1565 2363 128164 31805 0 0 128164 31805 2363 1714 0 0 8106 6637 0 0 10324 8531 0 0 2363 1833 0 0 52015 6288 0 0 52993 6802 0 0 2363 0 0 798 979 864 7224 0 0 3.59517 3.59517 -138.435 -3.59517 0 0 666494. 2306.21 0.30 0.18 0.15 -1 -1 0.30 0.0251209 0.0225425 156 60 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.98 vpr 60.75 MiB 0.02 6764 -1 -1 1 0.01 -1 -1 30004 -1 -1 18 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62204 29 32 276 232 1 145 79 17 17 289 -1 unnamed_device 22.0 MiB 0.21 739 60.7 MiB 0.26 0.00 2.43238 -75.7349 -2.43238 2.43238 1.00 0.000146433 0.000117065 0.020302 0.0168775 32 1722 18 6.65987e+06 228204 554710. 1919.41 0.92 0.0632593 0.0543787 22834 132086 -1 1553 19 1023 1785 130532 32396 0 0 130532 32396 1785 1369 0 0 6905 5823 0 0 10950 8535 0 0 1785 1577 0 0 56599 7660 0 0 52508 7432 0 0 1785 0 0 762 731 787 5849 0 0 2.51345 2.51345 -90.6703 -2.51345 0 0 701300. 2426.64 0.33 0.13 0.16 -1 -1 0.33 0.0205439 0.0186764 107 21 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 8.50 vpr 61.71 MiB 0.02 7000 -1 -1 1 0.02 -1 -1 29924 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63196 32 32 402 316 1 192 84 17 17 289 -1 unnamed_device 23.0 MiB 0.35 1023 61.7 MiB 0.27 0.00 2.79519 -98.9252 -2.79519 2.79519 1.09 0.000233247 0.0001917 0.0238439 0.0200476 34 2637 23 6.65987e+06 253560 585099. 2024.56 4.39 0.174583 0.152629 23122 138558 -1 2311 21 1676 3065 225684 53473 0 0 225684 53473 3065 2313 0 0 11387 9583 0 0 17145 13441 0 0 3065 2663 0 0 96263 13175 0 0 94759 12298 0 0 3065 0 0 1389 1972 1804 12068 0 0 3.21131 3.21131 -127.07 -3.21131 0 0 742403. 2568.87 0.25 0.12 0.13 -1 -1 0.25 0.0238703 0.0213433 146 60 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.26 vpr 61.44 MiB 0.03 6988 -1 -1 1 0.02 -1 -1 30016 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62912 32 32 384 304 1 185 98 17 17 289 -1 unnamed_device 22.5 MiB 0.41 853 61.4 MiB 0.14 0.00 2.9021 -99.6422 -2.9021 2.9021 0.97 0.000398031 0.000327341 0.0191048 0.0158008 30 2140 23 6.65987e+06 431052 526063. 1820.29 1.39 0.0879404 0.0763448 22546 126617 -1 1621 22 1239 1814 89838 22736 0 0 89838 22736 1814 1326 0 0 6066 4568 0 0 7974 6444 0 0 1814 1385 0 0 33637 4694 0 0 38533 4319 0 0 1814 0 0 575 687 709 5557 0 0 2.71137 2.71137 -113.67 -2.71137 0 0 666494. 2306.21 0.30 0.07 0.17 -1 -1 0.30 0.026347 0.0236692 142 54 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.12 vpr 61.20 MiB 0.02 6844 -1 -1 1 0.02 -1 -1 29756 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62664 32 32 340 285 1 162 94 17 17 289 -1 unnamed_device 22.5 MiB 0.28 914 61.2 MiB 0.32 0.01 2.23864 -85.0158 -2.23864 2.23864 1.00 0.00032311 0.000258474 0.0277742 0.0224037 32 1936 21 6.65987e+06 380340 554710. 1919.41 1.12 0.0859363 0.073491 22834 132086 -1 1713 20 1148 1692 122469 28774 0 0 122469 28774 1692 1255 0 0 6621 5700 0 0 10609 8371 0 0 1692 1344 0 0 52158 5830 0 0 49697 6274 0 0 1692 0 0 544 609 696 5379 0 0 2.15051 2.15051 -95.4859 -2.15051 0 0 701300. 2426.64 0.32 0.07 0.16 -1 -1 0.32 0.0201067 0.0180119 118 62 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 6.38 vpr 60.38 MiB 0.02 6752 -1 -1 1 0.01 -1 -1 29704 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61828 30 32 229 211 1 119 77 17 17 289 -1 unnamed_device 21.8 MiB 0.14 497 60.4 MiB 0.25 0.00 1.99938 -62.1461 -1.99938 1.99938 1.06 0.000224767 0.00018052 0.0160348 0.0136606 28 1308 19 6.65987e+06 190170 500653. 1732.36 2.53 0.0929276 0.0802258 21970 115934 -1 1121 18 623 860 57173 14767 0 0 57173 14767 860 756 0 0 3184 2528 0 0 4534 3742 0 0 860 796 0 0 23828 3533 0 0 23907 3412 0 0 860 0 0 237 190 173 2044 0 0 1.85885 1.85885 -74.5624 -1.85885 0 0 612192. 2118.31 0.28 0.06 0.14 -1 -1 0.28 0.0126943 0.0113361 85 29 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 8.09 vpr 61.10 MiB 0.02 6948 -1 -1 1 0.02 -1 -1 29956 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62568 31 32 337 282 1 155 80 17 17 289 -1 unnamed_device 22.3 MiB 0.38 705 61.1 MiB 0.20 0.00 3.15104 -95.2228 -3.15104 3.15104 0.96 0.000350184 0.000282964 0.0163602 0.0136577 28 2164 26 6.65987e+06 215526 500653. 1732.36 4.34 0.172836 0.15088 21970 115934 -1 1815 18 942 1340 112946 27064 0 0 112946 27064 1340 1170 0 0 5076 4220 0 0 7366 6036 0 0 1340 1187 0 0 47408 7189 0 0 50416 7262 0 0 1340 0 0 398 427 350 3409 0 0 3.23685 3.23685 -121.488 -3.23685 0 0 612192. 2118.31 0.23 0.06 0.11 -1 -1 0.23 0.017388 0.0157037 114 55 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.95 vpr 61.62 MiB 0.02 6968 -1 -1 1 0.02 -1 -1 29728 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63096 32 32 367 284 1 192 98 17 17 289 -1 unnamed_device 22.7 MiB 0.08 853 61.6 MiB 0.29 0.01 3.2281 -105.99 -3.2281 3.2281 0.89 0.000371963 0.00030145 0.0346695 0.028356 32 2492 23 6.65987e+06 431052 554710. 1919.41 1.26 0.105728 0.091014 22834 132086 -1 1965 20 1653 2368 195915 45502 0 0 195915 45502 2368 1908 0 0 9148 7701 0 0 14346 11129 0 0 2368 2018 0 0 82477 11800 0 0 85208 10946 0 0 2368 0 0 715 929 824 7072 0 0 3.64957 3.64957 -129.81 -3.64957 0 0 701300. 2426.64 0.31 0.08 0.14 -1 -1 0.31 0.0192341 0.0173728 145 31 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.46 vpr 61.44 MiB 0.02 7068 -1 -1 1 0.02 -1 -1 30264 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62912 32 32 461 376 1 196 100 17 17 289 -1 unnamed_device 23.2 MiB 0.41 1118 61.4 MiB 0.31 0.01 2.73064 -99.296 -2.73064 2.73064 0.91 0.000573676 0.000490126 0.0372402 0.0314334 28 2722 22 6.65987e+06 456408 500653. 1732.36 1.48 0.136194 0.119857 21970 115934 -1 2447 22 1631 2540 189448 42533 0 0 189448 42533 2540 1937 0 0 9063 7560 0 0 13595 10754 0 0 2540 2119 0 0 82172 10135 0 0 79538 10028 0 0 2540 0 0 909 1009 1139 8149 0 0 3.12145 3.12145 -124.412 -3.12145 0 0 612192. 2118.31 0.29 0.13 0.14 -1 -1 0.29 0.0339834 0.0306582 149 108 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.91 vpr 60.52 MiB 0.02 6748 -1 -1 1 0.02 -1 -1 29968 -1 -1 17 26 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61972 26 32 205 193 1 109 75 17 17 289 -1 unnamed_device 22.0 MiB 0.22 386 60.5 MiB 0.10 0.00 2.01838 -53.6874 -2.01838 2.01838 0.94 0.000210268 0.000168569 0.0129376 0.0104617 32 1163 17 6.65987e+06 215526 554710. 1919.41 1.06 0.0417013 0.0354219 22834 132086 -1 960 23 692 1062 70762 19436 0 0 70762 19436 1062 865 0 0 4039 3314 0 0 6421 4986 0 0 1062 881 0 0 30630 4727 0 0 27548 4663 0 0 1062 0 0 370 409 438 3277 0 0 1.98725 1.98725 -69.8409 -1.98725 0 0 701300. 2426.64 0.29 0.18 0.16 -1 -1 0.29 0.0146185 0.0129414 77 21 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 8.59 vpr 61.26 MiB 0.04 7024 -1 -1 1 0.02 -1 -1 29756 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62732 32 32 334 252 1 187 84 17 17 289 -1 unnamed_device 22.6 MiB 0.18 1085 61.3 MiB 0.34 0.00 3.30433 -111.143 -3.30433 3.30433 1.05 0.000346551 0.000294544 0.0305625 0.0260636 28 2500 50 6.65987e+06 253560 500653. 1732.36 4.55 0.236143 0.208132 21970 115934 -1 2254 22 1424 2503 181505 41402 0 0 181505 41402 2503 1889 0 0 9086 7610 0 0 14191 11282 0 0 2503 2013 0 0 78488 8798 0 0 74734 9810 0 0 2503 0 0 1079 1153 1327 9046 0 0 3.69751 3.69751 -139.195 -3.69751 0 0 612192. 2118.31 0.27 0.23 0.11 -1 -1 0.27 0.0253669 0.0228713 137 -1 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 5.66 vpr 60.54 MiB 0.03 6604 -1 -1 1 0.02 -1 -1 29648 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61992 32 32 200 183 1 122 77 17 17 289 -1 unnamed_device 22.0 MiB 0.07 784 60.5 MiB 0.10 0.00 1.74527 -67.125 -1.74527 1.74527 1.05 0.00021125 0.000168736 0.0135979 0.0110378 26 1547 21 6.65987e+06 164814 477104. 1650.88 2.02 0.0784258 0.0669309 21682 110474 -1 1431 18 567 784 60192 14352 0 0 60192 14352 784 660 0 0 3229 2675 0 0 4500 3748 0 0 784 687 0 0 25202 3390 0 0 25693 3192 0 0 784 0 0 217 131 193 1821 0 0 1.81685 1.81685 -81.304 -1.81685 0 0 585099. 2024.56 0.29 0.11 0.13 -1 -1 0.29 0.0122114 0.010927 81 -1 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 9.45 vpr 61.32 MiB 0.04 6972 -1 -1 1 0.02 -1 -1 30228 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62788 32 32 377 289 1 194 96 17 17 289 -1 unnamed_device 23.0 MiB 0.18 1028 61.3 MiB 0.26 0.01 3.2039 -112.155 -3.2039 3.2039 0.99 0.000564927 0.000461468 0.0218141 0.0181721 28 2774 26 6.65987e+06 405696 500653. 1732.36 5.41 0.198008 0.174715 21970 115934 -1 2376 21 1692 2551 206627 46808 0 0 206627 46808 2551 2088 0 0 9492 7931 0 0 13917 11220 0 0 2551 2151 0 0 89489 11802 0 0 88627 11616 0 0 2551 0 0 859 896 981 7631 0 0 3.77157 3.77157 -145.717 -3.77157 0 0 612192. 2118.31 0.23 0.21 0.14 -1 -1 0.23 0.0240991 0.0216425 150 21 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.28 vpr 61.55 MiB 0.03 7148 -1 -1 1 0.01 -1 -1 29816 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63024 32 32 338 254 1 196 98 17 17 289 -1 unnamed_device 22.8 MiB 0.23 1074 61.5 MiB 0.38 0.01 2.92104 -97.9116 -2.92104 2.92104 1.05 0.000495041 0.000422862 0.029023 0.0244506 32 2439 18 6.65987e+06 431052 554710. 1919.41 1.16 0.0909775 0.0790197 22834 132086 -1 2152 23 1546 2435 165051 38915 0 0 165051 38915 2435 1781 0 0 9158 7650 0 0 14720 11155 0 0 2435 1927 0 0 71239 7835 0 0 65064 8567 0 0 2435 0 0 889 1081 1167 8420 0 0 2.95505 2.95505 -112.529 -2.95505 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.0220292 0.0197697 148 -1 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 8.11 vpr 61.29 MiB 0.03 6964 -1 -1 1 0.02 -1 -1 30180 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62764 32 32 408 320 1 197 99 17 17 289 -1 unnamed_device 22.9 MiB 0.22 1048 61.3 MiB 0.34 0.01 3.19664 -112.342 -3.19664 3.19664 1.04 0.000389276 0.000328836 0.03724 0.0312848 32 2794 32 6.65987e+06 443730 554710. 1919.41 4.12 0.242785 0.211881 22834 132086 -1 2340 27 2292 3994 383953 101932 0 0 383953 101932 3994 2901 0 0 15600 13687 0 0 27097 20206 0 0 3994 3182 0 0 174263 30110 0 0 159005 31846 0 0 3994 0 0 1702 2360 2034 15448 0 0 3.78651 3.78651 -138.692 -3.78651 0 0 701300. 2426.64 0.30 0.18 0.14 -1 -1 0.30 0.0330927 0.0297307 153 54 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 6.02 vpr 61.04 MiB 0.02 6812 -1 -1 1 0.02 -1 -1 29884 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62500 32 32 295 247 1 149 79 17 17 289 -1 unnamed_device 22.6 MiB 0.07 823 61.0 MiB 0.07 0.00 2.30182 -82.589 -2.30182 2.30182 0.99 0.000157032 0.000126342 0.00914951 0.00747686 30 1932 19 6.65987e+06 190170 526063. 1820.29 2.49 0.124237 0.107953 22546 126617 -1 1674 18 881 1382 87002 19842 0 0 87002 19842 1382 1097 0 0 4621 3617 0 0 5899 4787 0 0 1382 1176 0 0 35670 4840 0 0 38048 4325 0 0 1382 0 0 501 505 503 3991 0 0 2.44531 2.44531 -101.003 -2.44531 0 0 666494. 2306.21 0.29 0.08 0.14 -1 -1 0.29 0.0175479 0.0157564 106 31 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.83 vpr 61.27 MiB 0.03 6768 -1 -1 1 0.02 -1 -1 29844 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62736 30 32 299 247 1 154 80 17 17 289 -1 unnamed_device 22.5 MiB 0.31 844 61.3 MiB 0.28 0.00 3.0263 -95.409 -3.0263 3.0263 0.99 0.000227209 0.000183111 0.0236745 0.020135 30 1756 22 6.65987e+06 228204 526063. 1820.29 1.01 0.080281 0.0703707 22546 126617 -1 1476 18 966 1507 81801 19875 0 0 81801 19875 1507 1071 0 0 5140 4143 0 0 6625 5437 0 0 1507 1109 0 0 32592 4294 0 0 34430 3821 0 0 1507 0 0 541 308 584 4404 0 0 2.68677 2.68677 -104.621 -2.68677 0 0 666494. 2306.21 0.28 0.06 0.15 -1 -1 0.28 0.0185971 0.0168168 113 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 7.10 vpr 60.74 MiB 0.02 6912 -1 -1 1 0.01 -1 -1 29860 -1 -1 20 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62196 28 32 283 237 1 150 80 17 17 289 -1 unnamed_device 22.2 MiB 0.10 798 60.7 MiB 0.14 0.00 2.7207 -87.8903 -2.7207 2.7207 0.90 0.000318586 0.000262343 0.0154324 0.0127133 32 1967 24 6.65987e+06 253560 554710. 1919.41 3.57 0.146565 0.127231 22834 132086 -1 1775 22 1273 2154 181417 42084 0 0 181417 42084 2154 1722 0 0 8598 7622 0 0 14907 11218 0 0 2154 1811 0 0 78038 9881 0 0 75566 9830 0 0 2154 0 0 881 860 877 6936 0 0 2.94917 2.94917 -107.286 -2.94917 0 0 701300. 2426.64 0.30 0.09 0.16 -1 -1 0.30 0.0204965 0.0183308 107 27 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 7.60 vpr 61.00 MiB 0.02 6836 -1 -1 1 0.02 -1 -1 29684 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62468 32 32 284 226 1 166 82 17 17 289 -1 unnamed_device 22.4 MiB 0.13 891 61.0 MiB 0.29 0.00 2.7647 -98.0659 -2.7647 2.7647 1.02 0.000300469 0.000245938 0.0240799 0.020062 32 2314 21 6.65987e+06 228204 554710. 1919.41 3.72 0.135398 0.117268 22834 132086 -1 1933 19 1391 2205 171533 38974 0 0 171533 38974 2205 1660 0 0 7997 6865 0 0 12625 9486 0 0 2205 1730 0 0 73703 9445 0 0 72798 9788 0 0 2205 0 0 814 1000 892 7099 0 0 3.07831 3.07831 -120.805 -3.07831 0 0 701300. 2426.64 0.21 0.20 0.14 -1 -1 0.21 0.0180207 0.0162482 125 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 7.61 vpr 61.14 MiB 0.02 6980 -1 -1 1 0.01 -1 -1 29984 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62604 31 32 305 251 1 162 94 17 17 289 -1 unnamed_device 22.5 MiB 0.09 922 61.1 MiB 0.25 0.01 2.61558 -92.4612 -2.61558 2.61558 0.96 0.000371421 0.000313354 0.017033 0.0141156 32 2219 18 6.65987e+06 393018 554710. 1919.41 3.92 0.171136 0.148763 22834 132086 -1 1902 21 1228 1935 142135 33367 0 0 142135 33367 1935 1350 0 0 7539 6483 0 0 12088 9437 0 0 1935 1478 0 0 59407 7400 0 0 59231 7219 0 0 1935 0 0 707 923 1016 7151 0 0 2.89465 2.89465 -113.458 -2.89465 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0151661 0.0136399 119 26 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 7.26 vpr 61.18 MiB 0.07 6872 -1 -1 1 0.02 -1 -1 29836 -1 -1 30 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62644 29 32 316 268 1 154 91 17 17 289 -1 unnamed_device 22.4 MiB 0.30 694 61.2 MiB 0.21 0.00 2.17493 -70.0787 -2.17493 2.17493 1.04 0.000440469 0.000373075 0.0135819 0.0114887 28 1813 22 6.65987e+06 380340 500653. 1732.36 3.05 0.133332 0.114938 21970 115934 -1 1592 21 1069 1777 124965 29890 0 0 124965 29890 1777 1205 0 0 6622 5494 0 0 10258 8098 0 0 1777 1386 0 0 53114 6812 0 0 51417 6895 0 0 1777 0 0 708 954 933 6916 0 0 2.13331 2.13331 -86.3742 -2.13331 0 0 612192. 2118.31 0.26 0.14 0.11 -1 -1 0.26 0.0197755 0.0175237 109 55 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.69 vpr 61.55 MiB 0.17 7200 -1 -1 1 0.02 -1 -1 29940 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63024 32 32 424 311 1 229 103 17 17 289 -1 unnamed_device 23.2 MiB 0.35 1248 61.5 MiB 0.33 0.01 3.41716 -118.279 -3.41716 3.41716 0.98 0.000452815 0.000377952 0.0250282 0.0213673 28 3205 29 6.65987e+06 494442 500653. 1732.36 2.52 0.132571 0.117907 21970 115934 -1 2679 20 1891 3214 259651 56481 0 0 259651 56481 3214 2302 0 0 11578 9701 0 0 17556 13640 0 0 3214 2483 0 0 113984 13588 0 0 110105 14767 0 0 3214 0 0 1323 2569 2658 16894 0 0 3.94283 3.94283 -149.897 -3.94283 0 0 612192. 2118.31 0.26 0.12 0.12 -1 -1 0.26 0.0269771 0.0243178 179 26 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 7.78 vpr 61.19 MiB 0.03 6928 -1 -1 1 0.02 -1 -1 29888 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62656 32 32 404 318 1 198 99 17 17 289 -1 unnamed_device 22.8 MiB 0.37 962 61.2 MiB 0.43 0.01 2.7849 -99.6495 -2.7849 2.7849 1.04 0.000391461 0.000317741 0.0467212 0.0399117 32 2284 23 6.65987e+06 443730 554710. 1919.41 3.46 0.205603 0.17756 22834 132086 -1 1961 22 1930 2856 179477 42029 0 0 179477 42029 2856 2053 0 0 10299 8548 0 0 16182 12057 0 0 2856 2231 0 0 76894 8165 0 0 70390 8975 0 0 2856 0 0 926 1194 1209 9139 0 0 2.80957 2.80957 -116.074 -2.80957 0 0 701300. 2426.64 0.28 0.09 0.15 -1 -1 0.28 0.0255054 0.022812 152 62 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 7.78 vpr 61.25 MiB 0.03 6812 -1 -1 1 0.02 -1 -1 30004 -1 -1 28 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62720 31 32 355 304 1 156 91 17 17 289 -1 unnamed_device 22.5 MiB 0.40 892 61.2 MiB 0.26 0.00 2.46718 -87.5183 -2.46718 2.46718 1.03 0.000278093 0.000223374 0.0249028 0.0205025 28 2070 23 6.65987e+06 354984 500653. 1732.36 3.82 0.189564 0.166267 21970 115934 -1 1827 18 1037 1620 122306 27999 0 0 122306 27999 1620 1196 0 0 6194 5087 0 0 9164 7498 0 0 1620 1284 0 0 52181 6583 0 0 51527 6351 0 0 1620 0 0 583 651 796 5772 0 0 2.61825 2.61825 -104.225 -2.61825 0 0 612192. 2118.31 0.27 0.17 0.14 -1 -1 0.27 0.0220277 0.0197812 113 77 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 7.80 vpr 61.58 MiB 0.14 7088 -1 -1 1 0.01 -1 -1 30004 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63056 31 32 393 311 1 194 84 17 17 289 -1 unnamed_device 23.0 MiB 0.43 958 61.6 MiB 0.42 0.01 3.0233 -95.9564 -3.0233 3.0233 1.02 0.000331911 0.000288417 0.0379778 0.0320034 32 2422 20 6.65987e+06 266238 554710. 1919.41 3.49 0.173556 0.150165 22834 132086 -1 2114 22 1590 2687 193727 45196 0 0 193727 45196 2687 1997 0 0 10290 8620 0 0 16487 12766 0 0 2687 2104 0 0 83279 9592 0 0 78297 10117 0 0 2687 0 0 1097 1256 1245 9197 0 0 2.97497 2.97497 -115.948 -2.97497 0 0 701300. 2426.64 0.27 0.10 0.16 -1 -1 0.27 0.02646 0.0234964 146 59 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 7.35 vpr 61.21 MiB 0.14 7336 -1 -1 1 0.03 -1 -1 30232 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62684 31 32 457 373 1 193 84 17 17 289 -1 unnamed_device 22.8 MiB 0.52 1008 61.2 MiB 0.15 0.01 3.84744 -112.706 -3.84744 3.84744 0.99 0.000512817 0.000418848 0.0203291 0.0171083 32 2836 23 6.65987e+06 266238 554710. 1919.41 3.39 0.174577 0.150928 22834 132086 -1 2300 18 1373 2268 170183 40214 0 0 170183 40214 2268 1899 0 0 8654 7512 0 0 13591 10628 0 0 2268 2011 0 0 70801 9426 0 0 72601 8738 0 0 2268 0 0 895 987 1016 7656 0 0 3.67891 3.67891 -134.46 -3.67891 0 0 701300. 2426.64 0.25 0.11 0.11 -1 -1 0.25 0.0248294 0.0223093 149 111 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 7.25 vpr 61.81 MiB 0.03 7168 -1 -1 1 0.02 -1 -1 30044 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63292 31 32 415 335 1 189 84 17 17 289 -1 unnamed_device 23.1 MiB 0.58 892 61.8 MiB 0.23 0.01 3.8015 -104.951 -3.8015 3.8015 1.07 0.000660842 0.000579783 0.0243566 0.0203928 30 2160 20 6.65987e+06 266238 526063. 1820.29 3.11 0.163448 0.142444 22546 126617 -1 1845 19 915 1474 77776 19172 0 0 77776 19172 1474 1117 0 0 4991 3823 0 0 6268 5172 0 0 1474 1156 0 0 30076 4329 0 0 33493 3575 0 0 1474 0 0 559 506 396 4125 0 0 3.40657 3.40657 -124.63 -3.40657 0 0 666494. 2306.21 0.25 0.06 0.13 -1 -1 0.25 0.0222579 0.0199358 144 86 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.60 vpr 61.55 MiB 0.03 7212 -1 -1 1 0.02 -1 -1 29904 -1 -1 32 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63032 31 32 393 311 1 193 95 17 17 289 -1 unnamed_device 22.8 MiB 0.33 978 61.6 MiB 0.21 0.01 2.96104 -93.2647 -2.96104 2.96104 1.07 0.000509293 0.000430857 0.0217765 0.0183625 28 2688 37 6.65987e+06 405696 500653. 1732.36 1.50 0.107508 0.0943675 21970 115934 -1 2301 20 1535 2612 195162 46097 0 0 195162 46097 2612 1866 0 0 9648 7995 0 0 14369 11272 0 0 2612 2033 0 0 82935 11578 0 0 82986 11353 0 0 2612 0 0 1077 1269 1524 9840 0 0 3.02691 3.02691 -119.858 -3.02691 0 0 612192. 2118.31 0.20 0.27 0.14 -1 -1 0.20 0.0270479 0.0241422 145 58 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.73 vpr 61.36 MiB 0.03 6860 -1 -1 1 0.02 -1 -1 30204 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62832 32 32 408 320 1 198 99 17 17 289 -1 unnamed_device 23.0 MiB 0.33 1086 61.4 MiB 0.27 0.01 3.16364 -112.001 -3.16364 3.16364 1.09 0.000465857 0.000387258 0.0270345 0.0225712 32 2958 23 6.65987e+06 443730 554710. 1919.41 1.35 0.0958694 0.0833614 22834 132086 -1 2434 23 1933 2786 210222 49034 0 0 210222 49034 2786 2167 0 0 10581 9036 0 0 16568 13011 0 0 2786 2271 0 0 88823 11471 0 0 88678 11078 0 0 2786 0 0 853 1217 1474 10054 0 0 3.73631 3.73631 -143.625 -3.73631 0 0 701300. 2426.64 0.30 0.18 0.16 -1 -1 0.30 0.0300099 0.0267746 154 42 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 11.47 vpr 61.82 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30200 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63304 32 32 497 381 1 232 103 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1222 61.8 MiB 0.27 0.01 3.2289 -114.89 -3.2289 3.2289 0.97 0.000916318 0.000801914 0.0302298 0.0259625 26 3445 37 6.65987e+06 494442 477104. 1650.88 7.36 0.292037 0.260082 21682 110474 -1 2788 28 2493 4253 455925 152255 0 0 455925 152255 4253 2955 0 0 15736 13107 0 0 25203 19501 0 0 4253 3210 0 0 208671 57522 0 0 197809 55960 0 0 4253 0 0 1760 3070 3004 19585 0 0 3.71357 3.71357 -144.909 -3.71357 0 0 585099. 2024.56 0.27 0.20 0.14 -1 -1 0.27 0.043522 0.0393579 183 91 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.65 vpr 61.05 MiB 0.03 6904 -1 -1 1 0.01 -1 -1 30040 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62512 31 32 307 252 1 158 80 17 17 289 -1 unnamed_device 22.3 MiB 0.09 781 61.0 MiB 0.23 0.01 2.79178 -90.8947 -2.79178 2.79178 1.01 0.000315281 0.000257009 0.0223623 0.0184255 32 2000 22 6.65987e+06 215526 554710. 1919.41 0.98 0.0756411 0.06719 22834 132086 -1 1705 23 1471 2353 176017 41116 0 0 176017 41116 2353 1782 0 0 8801 7350 0 0 14487 11034 0 0 2353 1924 0 0 74368 9678 0 0 73655 9348 0 0 2353 0 0 882 1002 960 7589 0 0 2.99785 2.99785 -114.54 -2.99785 0 0 701300. 2426.64 0.31 0.17 0.16 -1 -1 0.31 0.0216131 0.0193454 116 24 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 8.35 vpr 61.59 MiB 0.07 7124 -1 -1 1 0.02 -1 -1 29920 -1 -1 36 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63068 31 32 397 313 1 196 99 17 17 289 -1 unnamed_device 23.0 MiB 0.45 891 61.6 MiB 0.15 0.00 3.3069 -108.672 -3.3069 3.3069 1.02 0.000416168 0.000339339 0.0200891 0.0167311 30 2751 43 6.65987e+06 456408 526063. 1820.29 4.30 0.214986 0.189085 22546 126617 -1 1982 20 1416 2280 126603 31855 0 0 126603 31855 2280 1690 0 0 7511 5778 0 0 10337 8112 0 0 2280 1774 0 0 48378 7453 0 0 55817 7048 0 0 2280 0 0 864 1578 1245 9885 0 0 3.56837 3.56837 -129.97 -3.56837 0 0 666494. 2306.21 0.26 0.15 0.16 -1 -1 0.26 0.0297594 0.0268535 150 59 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.33 vpr 61.11 MiB 0.03 6972 -1 -1 1 0.02 -1 -1 30164 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62580 32 32 398 314 1 196 97 17 17 289 -1 unnamed_device 22.8 MiB 0.24 1201 61.1 MiB 0.25 0.02 2.89404 -97.127 -2.89404 2.89404 0.98 0.000663198 0.000581836 0.0190121 0.0158531 28 2906 20 6.65987e+06 418374 500653. 1732.36 1.43 0.100933 0.0890099 21970 115934 -1 2441 21 1458 2556 181953 41688 0 0 181953 41688 2556 1913 0 0 9421 7851 0 0 14170 11208 0 0 2556 2168 0 0 80406 8916 0 0 72844 9632 0 0 2556 0 0 1098 1337 1278 9529 0 0 2.68271 2.68271 -114.318 -2.68271 0 0 612192. 2118.31 0.29 0.15 0.12 -1 -1 0.29 0.0285392 0.0257349 148 54 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 5.37 vpr 61.28 MiB 0.02 6788 -1 -1 1 0.02 -1 -1 29836 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62752 32 32 346 258 1 194 84 17 17 289 -1 unnamed_device 22.6 MiB 0.27 1095 61.3 MiB 0.25 0.00 3.31896 -119.082 -3.31896 3.31896 1.00 0.000191697 0.000154375 0.029823 0.0247589 32 3022 23 6.65987e+06 253560 554710. 1919.41 1.37 0.107796 0.0943105 22834 132086 -1 2554 21 1968 3581 295894 67362 0 0 295894 67362 3581 2927 0 0 13801 12372 0 0 23074 17629 0 0 3581 3077 0 0 126830 15534 0 0 125027 15823 0 0 3581 0 0 1613 1958 2049 13873 0 0 3.82677 3.82677 -149.827 -3.82677 0 0 701300. 2426.64 0.25 0.16 0.14 -1 -1 0.25 0.0242435 0.0220211 150 -1 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 7.70 vpr 61.13 MiB 0.03 7000 -1 -1 1 0.02 -1 -1 30168 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62600 32 32 425 344 1 190 98 17 17 289 -1 unnamed_device 22.7 MiB 0.40 1074 61.1 MiB 0.21 0.01 2.65158 -97.8272 -2.65158 2.65158 0.89 0.000651189 0.000565329 0.0256023 0.0205213 26 2739 37 6.65987e+06 431052 477104. 1650.88 3.84 0.184988 0.160788 21682 110474 -1 2334 21 1466 2257 173304 39582 0 0 173304 39582 2257 1667 0 0 8717 7357 0 0 13192 10675 0 0 2257 1775 0 0 75134 8913 0 0 71747 9195 0 0 2257 0 0 791 1313 1217 8764 0 0 2.86365 2.86365 -118.243 -2.86365 0 0 585099. 2024.56 0.26 0.12 0.11 -1 -1 0.26 0.0290977 0.0261752 145 81 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 7.76 vpr 61.09 MiB 0.02 7000 -1 -1 1 0.02 -1 -1 29880 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62556 32 32 396 312 1 194 99 17 17 289 -1 unnamed_device 22.7 MiB 0.56 988 61.1 MiB 0.22 0.01 2.7647 -98.5497 -2.7647 2.7647 0.99 0.000424546 0.000352276 0.0274992 0.0229155 32 2475 21 6.65987e+06 443730 554710. 1919.41 3.58 0.179273 0.155179 22834 132086 -1 2132 20 1575 2720 209384 46353 0 0 209384 46353 2720 1889 0 0 10367 8717 0 0 16712 12690 0 0 2720 2091 0 0 93116 9690 0 0 83749 11276 0 0 2720 0 0 1145 1830 1740 12515 0 0 3.00717 3.00717 -116.12 -3.00717 0 0 701300. 2426.64 0.30 0.23 0.14 -1 -1 0.30 0.0280978 0.0255174 146 58 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 7.91 vpr 61.69 MiB 0.08 6984 -1 -1 1 0.02 -1 -1 30016 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63172 32 32 406 319 1 200 101 17 17 289 -1 unnamed_device 23.1 MiB 0.31 1116 61.7 MiB 0.27 0.01 2.63244 -96.6492 -2.63244 2.63244 1.03 0.000470162 0.000378526 0.0253739 0.0210683 32 2660 20 6.65987e+06 469086 554710. 1919.41 3.76 0.187312 0.162586 22834 132086 -1 2336 23 1848 2813 204018 46750 0 0 204018 46750 2813 2081 0 0 10519 8994 0 0 16695 12645 0 0 2813 2308 0 0 86732 10352 0 0 84446 10370 0 0 2813 0 0 965 1104 1149 8769 0 0 2.83051 2.83051 -116.207 -2.83051 0 0 701300. 2426.64 0.31 0.23 0.10 -1 -1 0.31 0.0220298 0.0197569 155 61 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 9.51 vpr 61.22 MiB 0.03 6936 -1 -1 1 0.01 -1 -1 30048 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62688 32 32 377 289 1 194 100 17 17 289 -1 unnamed_device 23.0 MiB 0.07 1107 61.2 MiB 0.53 0.01 3.2739 -115.867 -3.2739 3.2739 1.03 0.000717266 0.000631063 0.04102 0.033879 28 2627 25 6.65987e+06 456408 500653. 1732.36 5.47 0.215572 0.189929 21970 115934 -1 2270 20 1653 2748 203712 46876 0 0 203712 46876 2748 2070 0 0 10098 8427 0 0 15521 12112 0 0 2748 2170 0 0 89751 10791 0 0 82846 11306 0 0 2748 0 0 1095 1337 1254 9732 0 0 3.71237 3.71237 -138.136 -3.71237 0 0 612192. 2118.31 0.26 0.10 0.14 -1 -1 0.26 0.0245783 0.0219788 151 21 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.44 vpr 61.74 MiB 0.03 7152 -1 -1 1 0.02 -1 -1 30036 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63224 32 32 408 320 1 197 101 17 17 289 -1 unnamed_device 23.2 MiB 0.16 1001 61.7 MiB 0.34 0.01 3.10464 -111.42 -3.10464 3.10464 1.07 0.000512557 0.000439612 0.0271336 0.0227075 32 2674 23 6.65987e+06 469086 554710. 1919.41 1.29 0.104624 0.0915697 22834 132086 -1 2193 21 1976 2992 232042 53002 0 0 232042 53002 2992 2239 0 0 11620 10065 0 0 19163 15180 0 0 2992 2414 0 0 103874 10637 0 0 91401 12467 0 0 2992 0 0 1016 1262 1333 10065 0 0 3.48311 3.48311 -136.321 -3.48311 0 0 701300. 2426.64 0.33 0.11 0.16 -1 -1 0.33 0.0281248 0.0252861 153 50 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 9.76 vpr 61.20 MiB 0.03 7096 -1 -1 1 0.02 -1 -1 30108 -1 -1 34 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62668 31 32 451 369 1 193 97 17 17 289 -1 unnamed_device 23.0 MiB 0.52 939 61.2 MiB 0.19 0.01 3.49218 -98.6007 -3.49218 3.49218 0.94 0.000549415 0.000466713 0.0220962 0.0185742 28 2550 29 6.65987e+06 431052 500653. 1732.36 6.01 0.192679 0.168604 21970 115934 -1 2050 19 1318 2332 142165 36568 0 0 142165 36568 2332 1539 0 0 8599 7176 0 0 13268 10527 0 0 2332 1747 0 0 57571 8257 0 0 58063 7322 0 0 2332 0 0 1014 1555 1248 9377 0 0 3.46585 3.46585 -122.289 -3.46585 0 0 612192. 2118.31 0.22 0.05 0.09 -1 -1 0.22 0.0134744 0.0119283 145 110 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 7.90 vpr 61.42 MiB 0.02 7100 -1 -1 1 0.02 -1 -1 30164 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62896 32 32 433 347 1 195 84 17 17 289 -1 unnamed_device 22.9 MiB 0.49 970 61.4 MiB 0.37 0.00 3.20378 -101.807 -3.20378 3.20378 0.98 0.000425493 0.000348633 0.0393715 0.0326735 32 2520 22 6.65987e+06 253560 554710. 1919.41 3.76 0.252465 0.221474 22834 132086 -1 2170 21 1769 3143 216033 52205 0 0 216033 52205 3143 2285 0 0 12002 10504 0 0 19000 15011 0 0 3143 2422 0 0 93925 10620 0 0 84820 11363 0 0 3143 0 0 1374 1532 1346 10611 0 0 3.56305 3.56305 -126.097 -3.56305 0 0 701300. 2426.64 0.31 0.09 0.15 -1 -1 0.31 0.0205387 0.0185605 149 86 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 7.43 vpr 61.07 MiB 0.03 6820 -1 -1 1 0.01 -1 -1 29996 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62532 32 32 313 256 1 166 94 17 17 289 -1 unnamed_device 22.5 MiB 0.07 901 61.1 MiB 0.37 0.01 2.64858 -95.3186 -2.64858 2.64858 1.02 0.000363555 0.000296325 0.0319427 0.0264965 32 2179 26 6.65987e+06 380340 554710. 1919.41 3.64 0.175423 0.151325 22834 132086 -1 1863 23 1498 2335 181234 40984 0 0 181234 40984 2335 1649 0 0 9258 7718 0 0 15161 11711 0 0 2335 1831 0 0 79259 8509 0 0 72886 9566 0 0 2335 0 0 837 1113 1120 8407 0 0 2.60725 2.60725 -109.548 -2.60725 0 0 701300. 2426.64 0.28 0.09 0.16 -1 -1 0.28 0.0214926 0.0191686 124 20 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 9.27 vpr 61.43 MiB 0.03 6816 -1 -1 1 0.01 -1 -1 29736 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62908 32 32 371 315 1 164 82 17 17 289 -1 unnamed_device 22.7 MiB 0.35 816 61.4 MiB 0.19 0.00 2.66064 -93.256 -2.66064 2.66064 0.94 0.000363114 0.000297666 0.0249105 0.0204332 28 2296 23 6.65987e+06 228204 500653. 1732.36 5.20 0.19925 0.1744 21970 115934 -1 1901 22 1266 2008 171141 38436 0 0 171141 38436 2008 1678 0 0 7353 6177 0 0 10669 8539 0 0 2008 1730 0 0 77592 9533 0 0 71511 10779 0 0 2008 0 0 742 841 812 6137 0 0 3.22051 3.22051 -115.938 -3.22051 0 0 612192. 2118.31 0.28 0.26 0.14 -1 -1 0.28 0.0275734 0.0247825 121 91 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 10.15 vpr 61.46 MiB 0.03 7184 -1 -1 1 0.03 -1 -1 30196 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62940 32 32 470 352 1 233 104 17 17 289 -1 unnamed_device 23.3 MiB 0.21 1328 61.5 MiB 0.37 0.01 3.6989 -129.034 -3.6989 3.6989 0.86 0.000584064 0.000480546 0.0312746 0.0265481 30 2716 23 6.65987e+06 507120 526063. 1820.29 6.00 0.221746 0.195343 22546 126617 -1 2229 21 2062 3497 158419 40491 0 0 158419 40491 3497 2214 0 0 11660 9680 0 0 15945 12582 0 0 3497 2352 0 0 60326 7080 0 0 63494 6583 0 0 3497 0 0 1435 1794 1393 12517 0 0 3.92017 3.92017 -149.321 -3.92017 0 0 666494. 2306.21 0.29 0.16 0.14 -1 -1 0.29 0.0338108 0.0304357 187 53 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.78 vpr 61.61 MiB 0.03 7120 -1 -1 1 0.01 -1 -1 29740 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63088 32 32 369 285 1 194 95 17 17 289 -1 unnamed_device 22.6 MiB 0.26 1086 61.6 MiB 0.12 0.00 2.7929 -103.078 -2.7929 2.7929 0.90 0.000220395 0.00017941 0.0123639 0.0101802 32 2396 21 6.65987e+06 393018 554710. 1919.41 1.21 0.0741876 0.0643507 22834 132086 -1 2086 21 1489 2244 165886 38525 0 0 165886 38525 2244 1674 0 0 8472 7075 0 0 13917 10807 0 0 2244 1794 0 0 71079 8500 0 0 67930 8675 0 0 2244 0 0 755 869 859 7123 0 0 3.09137 3.09137 -121.023 -3.09137 0 0 701300. 2426.64 0.29 0.09 0.10 -1 -1 0.29 0.0258645 0.0233151 146 31 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 7.00 vpr 60.73 MiB 0.02 6820 -1 -1 1 0.01 -1 -1 29832 -1 -1 30 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62192 30 32 299 247 1 158 92 17 17 289 -1 unnamed_device 22.2 MiB 0.06 828 60.7 MiB 0.28 0.02 2.7427 -93.0778 -2.7427 2.7427 0.90 0.000288668 0.0002392 0.0220958 0.0186506 26 2138 26 6.65987e+06 380340 477104. 1650.88 3.45 0.147087 0.129307 21682 110474 -1 1725 19 1213 1991 140222 32526 0 0 140222 32526 1991 1467 0 0 7504 6304 0 0 11396 8835 0 0 1991 1594 0 0 61072 6804 0 0 56268 7522 0 0 1991 0 0 778 955 1009 7505 0 0 2.80657 2.80657 -109.889 -2.80657 0 0 585099. 2024.56 0.27 0.10 0.14 -1 -1 0.27 0.0182122 0.0162556 115 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 11.89 vpr 61.72 MiB 0.03 7248 -1 -1 1 0.03 -1 -1 30340 -1 -1 43 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63204 32 32 532 414 1 232 107 17 17 289 -1 unnamed_device 23.3 MiB 0.76 1184 61.7 MiB 0.33 0.00 3.7821 -129.035 -3.7821 3.7821 1.01 0.000264077 0.000212193 0.0341665 0.0288117 28 3080 24 6.65987e+06 545154 500653. 1732.36 7.27 0.269536 0.237341 21970 115934 -1 2663 20 2237 3439 265791 58962 0 0 265791 58962 3439 2637 0 0 12650 10366 0 0 18879 15110 0 0 3439 2838 0 0 118397 13105 0 0 108987 14906 0 0 3439 0 0 1202 2005 2029 14009 0 0 4.33277 4.33277 -159.859 -4.33277 0 0 612192. 2118.31 0.24 0.12 0.14 -1 -1 0.24 0.0334839 0.0302438 186 109 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 7.69 vpr 61.18 MiB 0.03 6948 -1 -1 1 0.01 -1 -1 29912 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62652 32 32 377 289 1 194 100 17 17 289 -1 unnamed_device 22.9 MiB 0.34 962 61.2 MiB 0.27 0.01 3.30796 -114.58 -3.30796 3.30796 1.06 0.000552495 0.0004648 0.0247501 0.0209005 26 2609 37 6.65987e+06 456408 477104. 1650.88 3.85 0.172442 0.151012 21682 110474 -1 2194 22 1926 2854 207698 47622 0 0 207698 47622 2854 2115 0 0 10546 8658 0 0 15737 12101 0 0 2854 2282 0 0 94378 10482 0 0 81329 11984 0 0 2854 0 0 928 1210 1282 9722 0 0 3.96483 3.96483 -144.914 -3.96483 0 0 585099. 2024.56 0.23 0.08 0.11 -1 -1 0.23 0.0198089 0.0177354 151 31 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 6.95 vpr 60.80 MiB 0.02 6756 -1 -1 1 0.02 -1 -1 29700 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62256 32 32 284 226 1 164 95 17 17 289 -1 unnamed_device 22.3 MiB 0.07 943 60.8 MiB 0.14 0.00 2.7647 -101.194 -2.7647 2.7647 0.93 0.00029382 0.000238959 0.0157485 0.0131098 32 2228 18 6.65987e+06 393018 554710. 1919.41 3.45 0.14162 0.12306 22834 132086 -1 1976 20 1376 2053 158055 36625 0 0 158055 36625 2053 1550 0 0 8005 6946 0 0 12671 9540 0 0 2053 1665 0 0 66081 8625 0 0 67192 8299 0 0 2053 0 0 677 857 999 7006 0 0 2.94077 2.94077 -123.797 -2.94077 0 0 701300. 2426.64 0.30 0.19 0.16 -1 -1 0.30 0.0205671 0.0185823 123 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 14.87 vpr 61.76 MiB 0.03 7240 -1 -1 1 0.02 -1 -1 30160 -1 -1 42 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63240 32 32 439 321 1 235 106 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1377 61.8 MiB 0.43 0.01 3.99236 -137.202 -3.99236 3.99236 0.93 0.00040894 0.000332282 0.0462277 0.039035 28 3630 41 6.65987e+06 532476 500653. 1732.36 10.95 0.26937 0.236297 21970 115934 -1 2915 25 2584 4297 399978 100188 0 0 399978 100188 4297 3041 0 0 15593 13126 0 0 23980 18403 0 0 4297 3314 0 0 181455 31561 0 0 170356 30743 0 0 4297 0 0 1713 3495 3954 22525 0 0 4.43083 4.43083 -163.534 -4.43083 0 0 612192. 2118.31 0.28 0.19 0.14 -1 -1 0.28 0.0377407 0.0342935 189 26 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 5.19 vpr 61.02 MiB 0.02 6896 -1 -1 1 0.01 -1 -1 29796 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62484 32 32 284 226 1 162 81 17 17 289 -1 unnamed_device 22.2 MiB 0.16 891 61.0 MiB 0.09 0.00 2.7647 -98.4265 -2.7647 2.7647 1.07 0.000333683 0.000272517 0.00987195 0.00811266 32 2005 21 6.65987e+06 215526 554710. 1919.41 1.26 0.0626383 0.0542049 22834 132086 -1 1868 24 1591 2566 194869 43521 0 0 194869 43521 2566 1986 0 0 9599 8320 0 0 15499 11703 0 0 2566 2113 0 0 82295 9510 0 0 82344 9889 0 0 2566 0 0 975 1241 1112 8576 0 0 2.83791 2.83791 -116.942 -2.83791 0 0 701300. 2426.64 0.23 0.06 0.16 -1 -1 0.23 0.014127 0.0126705 121 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 5.31 vpr 60.83 MiB 0.02 6924 -1 -1 1 0.01 -1 -1 29884 -1 -1 31 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62288 30 32 299 247 1 157 93 17 17 289 -1 unnamed_device 22.3 MiB 0.31 862 60.8 MiB 0.24 0.01 2.8299 -95.4732 -2.8299 2.8299 1.12 0.000403407 0.00033214 0.0205635 0.017009 32 1913 19 6.65987e+06 393018 554710. 1919.41 1.17 0.073328 0.0631327 22834 132086 -1 1742 17 1151 1797 124465 29331 0 0 124465 29331 1797 1280 0 0 6894 5877 0 0 10521 8126 0 0 1797 1408 0 0 51950 6416 0 0 51506 6224 0 0 1797 0 0 646 698 808 6285 0 0 2.85097 2.85097 -112.172 -2.85097 0 0 701300. 2426.64 0.33 0.19 0.13 -1 -1 0.33 0.0167982 0.0153422 113 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 9.18 vpr 61.55 MiB 0.03 7164 -1 -1 1 0.02 -1 -1 29940 -1 -1 33 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63024 29 32 397 323 1 182 94 17 17 289 -1 unnamed_device 22.8 MiB 0.34 1032 61.5 MiB 0.14 0.01 2.75878 -89.2977 -2.75878 2.75878 1.07 0.000338 0.000274102 0.0137437 0.0112304 26 2701 30 6.65987e+06 418374 477104. 1650.88 5.25 0.183971 0.161679 21682 110474 -1 2298 23 1664 2783 198132 45500 0 0 198132 45500 2783 2089 0 0 10102 8342 0 0 15653 11858 0 0 2783 2424 0 0 85141 10333 0 0 81670 10454 0 0 2783 0 0 1119 1321 1383 9838 0 0 2.93305 2.93305 -111.111 -2.93305 0 0 585099. 2024.56 0.26 0.11 0.12 -1 -1 0.26 0.031039 0.0279594 133 81 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.76 vpr 61.20 MiB 0.03 6968 -1 -1 1 0.02 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62672 32 32 408 320 1 194 84 17 17 289 -1 unnamed_device 22.9 MiB 0.30 1031 61.2 MiB 0.27 0.00 3.2571 -116.653 -3.2571 3.2571 0.94 0.000367387 0.000295166 0.0336031 0.0283578 32 2370 24 6.65987e+06 253560 554710. 1919.41 0.92 0.0941385 0.0810002 22834 132086 -1 2071 18 1769 2584 169536 41085 0 0 169536 41085 2584 2033 0 0 9823 8568 0 0 15501 12077 0 0 2584 2187 0 0 68911 8264 0 0 70133 7956 0 0 2584 0 0 815 674 840 7119 0 0 3.55637 3.55637 -140.99 -3.55637 0 0 701300. 2426.64 0.27 0.16 0.14 -1 -1 0.27 0.0312993 0.0286343 150 53 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 7.63 vpr 61.28 MiB 0.03 6860 -1 -1 1 0.02 -1 -1 30256 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62752 32 32 408 320 1 195 98 17 17 289 -1 unnamed_device 23.0 MiB 0.44 1051 61.3 MiB 0.17 0.01 3.2739 -112.841 -3.2739 3.2739 1.10 0.000622654 0.000538791 0.022709 0.0194545 30 2457 23 6.65987e+06 431052 526063. 1820.29 3.54 0.183952 0.161371 22546 126617 -1 2106 24 1606 2602 135396 34027 0 0 135396 34027 2602 2033 0 0 8833 7297 0 0 12105 9644 0 0 2602 2097 0 0 54532 6498 0 0 54722 6458 0 0 2602 0 0 996 1224 1251 9253 0 0 3.61717 3.61717 -138.858 -3.61717 0 0 666494. 2306.21 0.27 0.05 0.16 -1 -1 0.27 0.0149636 0.0132778 152 55 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 8.38 vpr 61.17 MiB 0.02 6792 -1 -1 1 0.01 -1 -1 29964 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62640 32 32 346 288 1 161 94 17 17 289 -1 unnamed_device 22.5 MiB 0.30 899 61.2 MiB 0.28 0.00 2.69764 -98.9691 -2.69764 2.69764 1.08 0.000331879 0.000269991 0.0334675 0.0287373 28 2165 19 6.65987e+06 380340 500653. 1732.36 4.33 0.153468 0.133778 21970 115934 -1 1929 20 1186 1798 135172 31257 0 0 135172 31257 1798 1306 0 0 6838 5635 0 0 10179 8291 0 0 1798 1370 0 0 58716 7301 0 0 55843 7354 0 0 1798 0 0 612 709 913 6312 0 0 2.80851 2.80851 -118.631 -2.80851 0 0 612192. 2118.31 0.27 0.18 0.13 -1 -1 0.27 0.0203375 0.0181278 120 55 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.73 vpr 61.21 MiB 0.03 6940 -1 -1 1 0.01 -1 -1 30076 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62680 31 32 355 304 1 152 80 17 17 289 -1 unnamed_device 22.3 MiB 0.36 880 61.2 MiB 0.16 0.00 2.74778 -89.6909 -2.74778 2.74778 0.93 0.000278173 0.000224305 0.0247155 0.0202594 32 2159 20 6.65987e+06 215526 554710. 1919.41 1.02 0.0770656 0.0658052 22834 132086 -1 1890 19 1075 1927 147283 33675 0 0 147283 33675 1927 1499 0 0 7340 6363 0 0 11947 8985 0 0 1927 1717 0 0 63526 7588 0 0 60616 7523 0 0 1927 0 0 852 1028 823 6784 0 0 2.59639 2.59639 -106.22 -2.59639 0 0 701300. 2426.64 0.31 0.19 0.16 -1 -1 0.31 0.0230981 0.0208074 109 82 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.74 vpr 61.50 MiB 0.02 6912 -1 -1 1 0.02 -1 -1 29948 -1 -1 33 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62980 30 32 377 300 1 186 95 17 17 289 -1 unnamed_device 22.5 MiB 0.29 1022 61.5 MiB 0.24 0.01 2.62144 -90.1623 -2.62144 2.62144 1.01 0.000526581 0.000449923 0.0285276 0.0238003 30 2124 20 6.65987e+06 418374 526063. 1820.29 1.06 0.085209 0.0732244 22546 126617 -1 1821 21 1145 1961 100747 24218 0 0 100747 24218 1961 1252 0 0 6606 5224 0 0 8628 6989 0 0 1961 1395 0 0 40965 4763 0 0 40626 4595 0 0 1961 0 0 816 1090 1210 8633 0 0 2.70651 2.70651 -107.056 -2.70651 0 0 666494. 2306.21 0.21 0.05 0.14 -1 -1 0.21 0.019987 0.0179429 137 52 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 7.27 vpr 61.37 MiB 0.03 7244 -1 -1 1 0.02 -1 -1 30116 -1 -1 31 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62840 28 32 337 265 1 180 91 17 17 289 -1 unnamed_device 22.6 MiB 0.12 834 61.4 MiB 0.25 0.01 3.41304 -98.8157 -3.41304 3.41304 1.05 0.000336554 0.00027501 0.0305729 0.0254141 32 2217 23 6.65987e+06 393018 554710. 1919.41 3.22 0.136995 0.117577 22834 132086 -1 1888 23 1658 2570 207842 46607 0 0 207842 46607 2570 2020 0 0 9978 8554 0 0 16109 12527 0 0 2570 2168 0 0 93150 9894 0 0 83465 11444 0 0 2570 0 0 912 1510 1572 10520 0 0 3.72751 3.72751 -120.849 -3.72751 0 0 701300. 2426.64 0.29 0.24 0.16 -1 -1 0.29 0.0275894 0.0250422 133 20 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.27 vpr 60.81 MiB 0.02 7128 -1 -1 1 0.02 -1 -1 30016 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62268 30 32 328 276 1 157 80 17 17 289 -1 unnamed_device 22.2 MiB 0.42 881 60.8 MiB 0.19 0.00 2.9333 -100.927 -2.9333 2.9333 1.06 0.000320428 0.000260361 0.0257685 0.0212351 32 2063 24 6.65987e+06 228204 554710. 1919.41 1.17 0.083467 0.0718939 22834 132086 -1 1847 20 1389 2268 174025 39506 0 0 174025 39506 2268 1702 0 0 8607 7478 0 0 13714 10637 0 0 2268 1851 0 0 73700 8634 0 0 73468 9204 0 0 2268 0 0 879 1037 976 7364 0 0 2.92797 2.92797 -117.365 -2.92797 0 0 701300. 2426.64 0.30 0.19 0.15 -1 -1 0.30 0.0206783 0.0185718 114 58 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 6.99 vpr 61.11 MiB 0.02 6880 -1 -1 1 0.02 -1 -1 29916 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62576 32 32 362 309 1 158 80 17 17 289 -1 unnamed_device 22.2 MiB 0.38 935 61.1 MiB 0.11 0.00 2.72278 -89.3697 -2.72278 2.72278 1.03 0.000348116 0.000278982 0.014312 0.0118089 26 2335 23 6.65987e+06 202848 477104. 1650.88 3.22 0.162167 0.14165 21682 110474 -1 1945 20 1095 1794 132052 29979 0 0 132052 29979 1794 1387 0 0 6667 5569 0 0 10059 7809 0 0 1794 1519 0 0 55457 7039 0 0 56281 6656 0 0 1794 0 0 699 825 731 5693 0 0 3.04225 3.04225 -109.647 -3.04225 0 0 585099. 2024.56 0.24 0.10 0.15 -1 -1 0.24 0.0211466 0.0188287 113 88 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 8.51 vpr 61.25 MiB 0.03 6984 -1 -1 1 0.02 -1 -1 29936 -1 -1 35 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62724 31 32 337 253 1 196 98 17 17 289 -1 unnamed_device 22.4 MiB 0.13 1103 61.3 MiB 0.27 0.01 3.33845 -112.703 -3.33845 3.33845 0.96 0.000385934 0.000321429 0.0280616 0.023366 30 2571 20 6.65987e+06 443730 526063. 1820.29 4.67 0.188426 0.165806 22546 126617 -1 2165 18 1291 2070 136562 29938 0 0 136562 29938 2070 1656 0 0 6994 5377 0 0 9232 7447 0 0 2070 1721 0 0 64875 5803 0 0 51321 7934 0 0 2070 0 0 779 875 645 6569 0 0 3.49723 3.49723 -134.261 -3.49723 0 0 666494. 2306.21 0.31 0.10 0.12 -1 -1 0.31 0.0200363 0.0181676 150 -1 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 7.87 vpr 61.50 MiB 0.03 6960 -1 -1 1 0.02 -1 -1 30176 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62980 32 32 408 320 1 197 98 17 17 289 -1 unnamed_device 23.1 MiB 0.34 1075 61.5 MiB 0.31 0.01 3.2629 -115.288 -3.2629 3.2629 1.06 0.000391236 0.000319292 0.0372484 0.0309723 32 2813 24 6.65987e+06 431052 554710. 1919.41 3.59 0.18547 0.159897 22834 132086 -1 2407 23 1926 3281 262681 57536 0 0 262681 57536 3281 2384 0 0 12259 10719 0 0 20806 15384 0 0 3281 2537 0 0 120083 12006 0 0 102971 14506 0 0 3281 0 0 1355 1864 1713 12513 0 0 3.82157 3.82157 -146.65 -3.82157 0 0 701300. 2426.64 0.28 0.17 0.15 -1 -1 0.28 0.0331961 0.030122 153 57 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 8.14 vpr 61.45 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 29976 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62924 32 32 408 320 1 194 98 17 17 289 -1 unnamed_device 23.1 MiB 0.49 1074 61.4 MiB 0.31 0.01 3.30796 -116.508 -3.30796 3.30796 1.07 0.000374575 0.000301011 0.0356709 0.0301156 32 2806 24 6.65987e+06 431052 554710. 1919.41 3.89 0.189941 0.164979 22834 132086 -1 2347 22 2004 3338 252685 58269 0 0 252685 58269 3338 2588 0 0 12610 10937 0 0 20300 15201 0 0 3338 2790 0 0 106804 13538 0 0 106295 13215 0 0 3338 0 0 1334 1688 1456 11978 0 0 3.93483 3.93483 -145.986 -3.93483 0 0 701300. 2426.64 0.33 0.25 0.14 -1 -1 0.33 0.0289887 0.0262326 151 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.83 vpr 61.11 MiB 0.02 6968 -1 -1 1 0.02 -1 -1 29944 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62580 32 32 400 316 1 196 101 17 17 289 -1 unnamed_device 22.7 MiB 0.20 1018 61.1 MiB 0.27 0.01 3.14164 -105.74 -3.14164 3.14164 0.99 0.000388668 0.000315051 0.0304917 0.0252618 32 2804 25 6.65987e+06 469086 554710. 1919.41 1.24 0.107852 0.0932803 22834 132086 -1 2240 22 1737 2902 221859 51203 0 0 221859 51203 2902 2138 0 0 11000 9575 0 0 18196 13890 0 0 2902 2255 0 0 95265 11500 0 0 91594 11845 0 0 2902 0 0 1165 1560 1277 10478 0 0 3.57211 3.57211 -130.446 -3.57211 0 0 701300. 2426.64 0.31 0.11 0.16 -1 -1 0.31 0.0286683 0.0257101 148 62 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.20 vpr 60.95 MiB 0.02 6876 -1 -1 1 0.02 -1 -1 29848 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62412 30 32 299 247 1 156 80 17 17 289 -1 unnamed_device 22.1 MiB 0.15 660 60.9 MiB 0.14 0.00 2.7819 -88.2882 -2.7819 2.7819 1.06 0.000241481 0.000196429 0.0245727 0.0201133 30 2085 36 6.65987e+06 228204 526063. 1820.29 1.67 0.102626 0.0897369 22546 126617 -1 1583 22 1200 1965 135426 33112 0 0 135426 33112 1965 1713 0 0 6703 5421 0 0 8785 7059 0 0 1965 1827 0 0 56770 8749 0 0 59238 8343 0 0 1965 0 0 765 972 754 6374 0 0 3.00317 3.00317 -110.556 -3.00317 0 0 666494. 2306.21 0.26 0.16 0.15 -1 -1 0.26 0.0229383 0.0207409 112 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.84 vpr 61.50 MiB 0.02 6984 -1 -1 1 0.02 -1 -1 30016 -1 -1 22 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62980 30 32 386 306 1 191 84 17 17 289 -1 unnamed_device 22.9 MiB 0.30 1065 61.5 MiB 0.21 0.00 3.60776 -117.831 -3.60776 3.60776 1.02 0.000370107 0.000306299 0.0290238 0.0242988 32 2339 23 6.65987e+06 278916 554710. 1919.41 1.09 0.0957401 0.0828504 22834 132086 -1 2117 20 1816 2707 205069 45720 0 0 205069 45720 2707 2140 0 0 10341 8643 0 0 15543 12205 0 0 2707 2251 0 0 88564 10398 0 0 85207 10083 0 0 2707 0 0 891 898 1051 7863 0 0 3.79063 3.79063 -142.614 -3.79063 0 0 701300. 2426.64 0.31 0.10 0.16 -1 -1 0.31 0.0263142 0.0237694 146 58 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 6.25 vpr 61.26 MiB 0.03 7064 -1 -1 1 0.01 -1 -1 30200 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62728 32 32 470 382 1 198 103 17 17 289 -1 unnamed_device 23.0 MiB 0.39 1019 61.3 MiB 0.24 0.01 3.10658 -109.392 -3.10658 3.10658 0.98 0.00035318 0.000287673 0.0314804 0.0258994 28 2867 24 6.65987e+06 494442 500653. 1732.36 2.35 0.113413 0.0982982 21970 115934 -1 2393 22 1796 2905 243635 59983 0 0 243635 59983 2905 2099 0 0 10772 8915 0 0 16429 13100 0 0 2905 2217 0 0 108936 16300 0 0 101688 17352 0 0 2905 0 0 1109 1881 1785 12914 0 0 3.63525 3.63525 -136.927 -3.63525 0 0 612192. 2118.31 0.28 0.17 0.13 -1 -1 0.28 0.0317066 0.0285307 154 106 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 7.76 vpr 61.21 MiB 0.03 7236 -1 -1 1 0.02 -1 -1 30116 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62676 31 32 427 343 1 189 94 17 17 289 -1 unnamed_device 22.8 MiB 0.51 1060 61.2 MiB 0.24 0.01 3.42704 -111.402 -3.42704 3.42704 1.02 0.000401155 0.000330426 0.0301122 0.0246703 28 2594 26 6.65987e+06 393018 500653. 1732.36 3.49 0.174604 0.150525 21970 115934 -1 2205 20 1355 2257 166712 37846 0 0 166712 37846 2257 1597 0 0 8549 7117 0 0 12531 10245 0 0 2257 1705 0 0 74331 7828 0 0 66787 9354 0 0 2257 0 0 902 933 1087 7971 0 0 3.65331 3.65331 -139.235 -3.65331 0 0 612192. 2118.31 0.28 0.09 0.13 -1 -1 0.28 0.0250306 0.0224484 145 79 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 7.13 vpr 61.57 MiB 0.02 7124 -1 -1 1 0.02 -1 -1 30044 -1 -1 30 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63044 30 32 407 331 1 182 92 17 17 289 -1 unnamed_device 22.9 MiB 0.39 944 61.6 MiB 0.19 0.01 3.0243 -90.7978 -3.0243 3.0243 1.06 0.000542834 0.000463377 0.0225723 0.0187393 32 2431 25 6.65987e+06 380340 554710. 1919.41 3.14 0.172808 0.148742 22834 132086 -1 2046 22 1544 2616 189353 44024 0 0 189353 44024 2616 1977 0 0 9844 8487 0 0 16245 12271 0 0 2616 2164 0 0 79279 9470 0 0 78753 9655 0 0 2616 0 0 1072 1380 1158 9288 0 0 3.17537 3.17537 -112.711 -3.17537 0 0 701300. 2426.64 0.31 0.12 0.15 -1 -1 0.31 0.0282776 0.0252725 136 83 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 10.19 vpr 61.48 MiB 0.03 6972 -1 -1 1 0.02 -1 -1 29956 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62952 32 32 408 320 1 198 85 17 17 289 -1 unnamed_device 22.8 MiB 0.38 1084 61.5 MiB 0.26 0.01 3.2179 -113.569 -3.2179 3.2179 1.05 0.000447903 0.000370256 0.0315544 0.0258697 28 3029 23 6.65987e+06 266238 500653. 1732.36 6.06 0.213162 0.186288 21970 115934 -1 2556 23 1995 3436 312141 65482 0 0 312141 65482 3436 2874 0 0 12333 10579 0 0 18861 14585 0 0 3436 2949 0 0 142468 16720 0 0 131607 17775 0 0 3436 0 0 1441 1491 1332 11162 0 0 3.82457 3.82457 -147.68 -3.82457 0 0 612192. 2118.31 0.25 0.14 0.12 -1 -1 0.25 0.0316177 0.0285185 154 58 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 6.85 vpr 61.53 MiB 0.02 7124 -1 -1 1 0.02 -1 -1 29984 -1 -1 34 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 29 32 391 320 1 179 95 17 17 289 -1 unnamed_device 22.6 MiB 0.25 957 61.5 MiB 0.22 0.00 2.67564 -86.9245 -2.67564 2.67564 1.07 0.000464055 0.000375468 0.0288903 0.0234586 32 2171 22 6.65987e+06 431052 554710. 1919.41 3.20 0.145555 0.123389 22834 132086 -1 1823 18 1320 2074 136113 33687 0 0 136113 33687 2074 1519 0 0 8044 6971 0 0 12579 9895 0 0 2074 1636 0 0 57273 6710 0 0 54069 6956 0 0 2074 0 0 754 815 763 6386 0 0 2.75351 2.75351 -103.636 -2.75351 0 0 701300. 2426.64 0.24 0.05 0.13 -1 -1 0.24 0.0148191 0.0132417 134 81 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.57 vpr 60.82 MiB 0.03 6836 -1 -1 1 0.02 -1 -1 29848 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62276 32 32 284 226 1 156 80 17 17 289 -1 unnamed_device 22.4 MiB 0.10 784 60.8 MiB 0.17 0.00 2.7819 -99.4949 -2.7819 2.7819 1.05 0.000302125 0.000240916 0.0213692 0.017418 32 2034 16 6.65987e+06 202848 554710. 1919.41 1.11 0.0710226 0.0609463 22834 132086 -1 1698 17 1196 1803 137595 32437 0 0 137595 32437 1803 1487 0 0 6923 6085 0 0 11013 8600 0 0 1803 1535 0 0 65555 6504 0 0 50498 8226 0 0 1803 0 0 607 595 510 4857 0 0 3.10017 3.10017 -122.104 -3.10017 0 0 701300. 2426.64 0.30 0.07 0.16 -1 -1 0.30 0.0175908 0.0159158 115 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 7.38 vpr 61.62 MiB 0.02 6916 -1 -1 1 0.02 -1 -1 29960 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63096 32 32 408 320 1 194 97 17 17 289 -1 unnamed_device 22.8 MiB 0.52 1076 61.6 MiB 0.26 0.01 3.39516 -118.34 -3.39516 3.39516 1.04 0.000401753 0.000328959 0.0311449 0.0254614 32 2623 24 6.65987e+06 418374 554710. 1919.41 3.26 0.196425 0.170053 22834 132086 -1 2303 23 2027 3090 241030 55702 0 0 241030 55702 3090 2396 0 0 11810 10264 0 0 19524 14873 0 0 3090 2574 0 0 103065 12991 0 0 100451 12604 0 0 3090 0 0 1063 1283 1230 9674 0 0 3.94583 3.94583 -147.952 -3.94583 0 0 701300. 2426.64 0.27 0.10 0.15 -1 -1 0.27 0.026775 0.0239776 150 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.98 vpr 61.21 MiB 0.02 6960 -1 -1 1 0.02 -1 -1 29896 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62676 32 32 408 320 1 201 85 17 17 289 -1 unnamed_device 22.9 MiB 0.27 1169 61.2 MiB 0.20 0.00 3.74996 -131.282 -3.74996 3.74996 0.98 0.000386283 0.000310492 0.0300212 0.0245208 32 2922 29 6.65987e+06 266238 554710. 1919.41 1.35 0.115123 0.0994835 22834 132086 -1 2629 21 2115 3185 327823 67991 0 0 327823 67991 3185 2575 0 0 12260 10444 0 0 19587 15438 0 0 3185 2768 0 0 145678 18246 0 0 143928 18520 0 0 3185 0 0 1070 1474 1082 9521 0 0 4.02903 4.02903 -155.661 -4.02903 0 0 701300. 2426.64 0.29 0.09 0.16 -1 -1 0.29 0.0192735 0.0174071 157 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.63 vpr 60.98 MiB 0.09 6956 -1 -1 1 0.01 -1 -1 30060 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62448 32 32 316 268 1 158 93 17 17 289 -1 unnamed_device 22.2 MiB 0.26 847 61.0 MiB 0.19 0.01 2.72758 -89.3349 -2.72758 2.72758 1.06 0.000399878 0.000336755 0.0223772 0.018678 26 2054 20 6.65987e+06 367662 477104. 1650.88 1.03 0.0772715 0.0668517 21682 110474 -1 1784 19 1014 1637 101702 25197 0 0 101702 25197 1637 1128 0 0 6138 4895 0 0 8831 7128 0 0 1637 1242 0 0 42259 5343 0 0 41200 5461 0 0 1637 0 0 623 735 914 6161 0 0 2.84985 2.84985 -106.672 -2.84985 0 0 585099. 2024.56 0.23 0.06 0.10 -1 -1 0.23 0.0159625 0.0142631 111 47 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 5.17 vpr 60.75 MiB 0.02 6772 -1 -1 1 0.02 -1 -1 29808 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62208 31 32 277 222 1 160 81 17 17 289 -1 unnamed_device 22.3 MiB 0.16 826 60.8 MiB 0.15 0.00 2.7317 -96.3379 -2.7317 2.7317 1.11 0.000292304 0.000235564 0.0175923 0.0145787 32 2017 18 6.65987e+06 228204 554710. 1919.41 1.00 0.06551 0.0563109 22834 132086 -1 1882 21 1551 2420 206366 45475 0 0 206366 45475 2420 1830 0 0 9492 8037 0 0 15331 11782 0 0 2420 1984 0 0 95106 9907 0 0 81597 11935 0 0 2420 0 0 869 793 890 7206 0 0 2.85897 2.85897 -113.82 -2.85897 0 0 701300. 2426.64 0.31 0.09 0.16 -1 -1 0.31 0.0197662 0.0177069 118 -1 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 7.48 vpr 61.41 MiB 0.02 6972 -1 -1 1 0.01 -1 -1 29868 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62888 32 32 382 304 1 188 96 17 17 289 -1 unnamed_device 22.9 MiB 0.65 1018 61.4 MiB 0.25 0.01 3.10199 -105.644 -3.10199 3.10199 1.00 0.000385017 0.000320736 0.0309503 0.025526 32 2448 22 6.65987e+06 405696 554710. 1919.41 3.17 0.174001 0.148893 22834 132086 -1 2096 24 1736 2693 199289 44869 0 0 199289 44869 2693 1990 0 0 10041 8288 0 0 15800 12114 0 0 2693 2212 0 0 82742 10694 0 0 85320 9571 0 0 2693 0 0 957 1157 1149 9168 0 0 3.60831 3.60831 -129.682 -3.60831 0 0 701300. 2426.64 0.31 0.19 0.16 -1 -1 0.31 0.0262335 0.0232829 138 56 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.88 vpr 61.70 MiB 0.03 7000 -1 -1 1 0.02 -1 -1 29964 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63184 32 32 407 331 1 190 94 17 17 289 -1 unnamed_device 23.0 MiB 0.38 879 61.7 MiB 0.21 0.01 3.62944 -101.768 -3.62944 3.62944 1.01 0.000484114 0.000419014 0.0248461 0.020897 28 2804 31 6.65987e+06 380340 500653. 1732.36 1.89 0.100084 0.0871021 21970 115934 -1 2245 22 1614 2638 204480 49047 0 0 204480 49047 2638 2106 0 0 9980 8156 0 0 14653 11832 0 0 2638 2218 0 0 87790 12875 0 0 86781 11860 0 0 2638 0 0 1024 1220 1192 9026 0 0 3.7175 3.7175 -129.7 -3.7175 0 0 612192. 2118.31 0.28 0.11 0.14 -1 -1 0.28 0.028193 0.0252243 138 81 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.69 vpr 61.24 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 29964 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62708 32 32 400 286 1 228 99 17 17 289 -1 unnamed_device 23.0 MiB 0.07 1362 61.2 MiB 0.23 0.01 3.85936 -131.474 -3.85936 3.85936 0.98 0.000530773 0.000447723 0.0281 0.0238707 32 3193 22 6.65987e+06 443730 554710. 1919.41 1.10 0.104563 0.0917844 22834 132086 -1 2888 22 2273 3790 345243 74859 0 0 345243 74859 3790 2962 0 0 14313 12116 0 0 24082 17714 0 0 3790 3138 0 0 145471 20452 0 0 153797 18477 0 0 3790 0 0 1517 1916 1801 13610 0 0 4.65057 4.65057 -162.876 -4.65057 0 0 701300. 2426.64 0.30 0.15 0.16 -1 -1 0.30 0.0338186 0.0306657 177 -1 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 6.63 vpr 61.32 MiB 0.03 7036 -1 -1 1 0.02 -1 -1 30128 -1 -1 32 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62788 30 32 374 298 1 184 94 17 17 289 -1 unnamed_device 22.5 MiB 0.34 983 61.3 MiB 0.21 0.01 2.98304 -93.8194 -2.98304 2.98304 0.95 0.000423333 0.000355186 0.0234862 0.0195285 28 2124 20 6.65987e+06 405696 500653. 1732.36 3.17 0.150686 0.129891 21970 115934 -1 1827 21 1511 2380 136908 33366 0 0 136908 33366 2380 1665 0 0 8581 6989 0 0 12690 9957 0 0 2380 1783 0 0 57555 6107 0 0 53322 6865 0 0 2380 0 0 869 978 1000 7705 0 0 2.84971 2.84971 -108.478 -2.84971 0 0 612192. 2118.31 0.28 0.08 0.14 -1 -1 0.28 0.0239036 0.0213647 136 47 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.40 vpr 60.92 MiB 0.02 6840 -1 -1 1 0.01 -1 -1 29932 -1 -1 20 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62380 27 32 275 232 1 143 79 17 17 289 -1 unnamed_device 22.2 MiB 0.12 682 60.9 MiB 0.13 0.00 2.9371 -80.7258 -2.9371 2.9371 1.07 0.000291195 0.000236253 0.0193267 0.0162668 28 1653 17 6.65987e+06 253560 500653. 1732.36 0.92 0.0602872 0.0518983 21970 115934 -1 1457 19 916 1420 91316 22617 0 0 91316 22617 1420 1158 0 0 5335 4514 0 0 7653 6214 0 0 1420 1246 0 0 38873 4498 0 0 36615 4987 0 0 1420 0 0 504 483 581 4266 0 0 2.95897 2.95897 -98.5514 -2.95897 0 0 612192. 2118.31 0.28 0.06 0.14 -1 -1 0.28 0.0168705 0.0150687 104 26 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 8.46 vpr 61.57 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 30240 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63052 32 32 494 379 1 232 104 17 17 289 -1 unnamed_device 23.3 MiB 0.32 1256 61.6 MiB 0.19 0.01 3.69844 -111.975 -3.69844 3.69844 1.08 0.000593146 0.000500649 0.0206837 0.0174142 30 3553 30 6.65987e+06 507120 526063. 1820.29 4.52 0.250865 0.219996 22546 126617 -1 2703 24 1734 3197 208639 47073 0 0 208639 47073 3197 2299 0 0 10488 8512 0 0 14192 11170 0 0 3197 2436 0 0 85663 11631 0 0 91902 11025 0 0 3197 0 0 1463 1748 1731 12287 0 0 3.69931 3.69931 -136.678 -3.69931 0 0 666494. 2306.21 0.29 0.12 0.15 -1 -1 0.29 0.036583 0.0328426 183 85 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 7.40 vpr 61.64 MiB 0.02 7032 -1 -1 1 0.02 -1 -1 30216 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63116 31 32 457 373 1 189 84 17 17 289 -1 unnamed_device 22.7 MiB 0.38 1027 61.6 MiB 0.24 0.00 3.51179 -112.948 -3.51179 3.51179 0.99 0.000451466 0.000367509 0.0298069 0.025042 32 2521 29 6.65987e+06 266238 554710. 1919.41 3.53 0.18855 0.162643 22834 132086 -1 2183 22 1816 2868 233819 52198 0 0 233819 52198 2868 2463 0 0 11184 9620 0 0 18074 14082 0 0 2868 2553 0 0 103216 11084 0 0 95609 12396 0 0 2868 0 0 1052 1243 1118 9267 0 0 3.80171 3.80171 -139.792 -3.80171 0 0 701300. 2426.64 0.31 0.11 0.16 -1 -1 0.31 0.029225 0.0262193 144 105 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 6.00 vpr 61.05 MiB 0.03 6908 -1 -1 1 0.02 -1 -1 29784 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62512 32 32 356 305 1 151 80 17 17 289 -1 unnamed_device 22.1 MiB 0.24 677 61.0 MiB 0.12 0.00 2.83198 -86.704 -2.83198 2.83198 1.00 0.00032612 0.000263271 0.0163285 0.0135312 30 1901 21 6.65987e+06 202848 526063. 1820.29 2.78 0.128071 0.110748 22546 126617 -1 1539 18 727 1123 64619 15872 0 0 64619 15872 1123 928 0 0 3901 3053 0 0 4994 4126 0 0 1123 966 0 0 26931 3424 0 0 26547 3375 0 0 1123 0 0 396 334 258 2957 0 0 2.56551 2.56551 -101.984 -2.56551 0 0 666494. 2306.21 0.29 0.05 0.15 -1 -1 0.29 0.0190487 0.01703 109 86 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 6.78 vpr 61.33 MiB 0.02 7120 -1 -1 1 0.02 -1 -1 29780 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62804 32 32 365 283 1 196 96 17 17 289 -1 unnamed_device 22.8 MiB 0.11 1035 61.3 MiB 0.23 0.00 3.5183 -110.034 -3.5183 3.5183 0.92 0.000311221 0.000254775 0.0263788 0.0217487 28 2688 22 6.65987e+06 405696 500653. 1732.36 3.43 0.174259 0.152526 21970 115934 -1 2184 20 1475 2316 166315 38977 0 0 166315 38977 2316 1864 0 0 8467 6927 0 0 12355 9863 0 0 2316 1930 0 0 73298 8843 0 0 67563 9550 0 0 2316 0 0 841 1034 983 7412 0 0 3.98597 3.98597 -139.016 -3.98597 0 0 612192. 2118.31 0.27 0.09 0.13 -1 -1 0.27 0.0240469 0.0216303 146 31 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 5.41 vpr 61.26 MiB 0.02 7184 -1 -1 1 0.02 -1 -1 30136 -1 -1 36 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62732 31 32 445 338 1 220 99 17 17 289 -1 unnamed_device 22.9 MiB 0.20 1162 61.3 MiB 0.27 0.01 3.33804 -108.245 -3.33804 3.33804 1.04 0.000385839 0.000319255 0.0365023 0.0305857 32 2716 22 6.65987e+06 456408 554710. 1919.41 1.55 0.116959 0.101798 22834 132086 -1 2354 21 1866 2920 212246 48456 0 0 212246 48456 2920 2142 0 0 11233 9597 0 0 18182 14066 0 0 2920 2372 0 0 91234 9558 0 0 85757 10721 0 0 2920 0 0 1054 1555 1671 11378 0 0 3.40291 3.40291 -127.255 -3.40291 0 0 701300. 2426.64 0.28 0.13 0.15 -1 -1 0.28 0.0201764 0.018148 171 50 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 6.35 vpr 61.54 MiB 0.02 7016 -1 -1 1 0.02 -1 -1 30040 -1 -1 33 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63020 30 32 376 300 1 186 95 17 17 289 -1 unnamed_device 22.6 MiB 0.17 1006 61.5 MiB 0.19 0.01 2.88004 -89.7327 -2.88004 2.88004 1.06 0.000580247 0.000503371 0.0217482 0.0183366 26 2869 32 6.65987e+06 418374 477104. 1650.88 2.74 0.125231 0.11115 21682 110474 -1 2451 18 1370 2397 199886 44530 0 0 199886 44530 2397 1884 0 0 8972 7565 0 0 13598 10586 0 0 2397 2014 0 0 85822 11512 0 0 86700 10969 0 0 2397 0 0 1027 1279 1286 9127 0 0 3.12131 3.12131 -114.435 -3.12131 0 0 585099. 2024.56 0.26 0.09 0.13 -1 -1 0.26 0.0212969 0.0191137 134 50 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 7.55 vpr 61.16 MiB 0.03 6860 -1 -1 1 0.02 -1 -1 29940 -1 -1 42 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62624 32 32 408 320 1 201 106 17 17 289 -1 unnamed_device 22.8 MiB 0.34 1145 61.2 MiB 0.25 0.01 3.2369 -114.212 -3.2369 3.2369 1.05 0.000552247 0.000474196 0.0270459 0.0224936 32 2836 23 6.65987e+06 532476 554710. 1919.41 3.66 0.227681 0.199056 22834 132086 -1 2428 21 1978 3237 263380 57298 0 0 263380 57298 3237 2406 0 0 12140 10394 0 0 19417 14544 0 0 3237 2622 0 0 115929 13491 0 0 109420 13841 0 0 3237 0 0 1259 1633 1431 11374 0 0 3.79557 3.79557 -144.415 -3.79557 0 0 701300. 2426.64 0.28 0.12 0.13 -1 -1 0.28 0.0297655 0.0267202 157 61 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 7.51 vpr 61.47 MiB 0.03 7076 -1 -1 1 0.01 -1 -1 29956 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62944 32 32 406 319 1 200 102 17 17 289 -1 unnamed_device 23.0 MiB 0.31 1117 61.5 MiB 0.29 0.01 2.67164 -97.6366 -2.67164 2.67164 1.06 0.000392723 0.00031965 0.0355892 0.0293246 30 2364 21 6.65987e+06 481764 526063. 1820.29 3.58 0.179024 0.153643 22546 126617 -1 1983 20 1509 2456 140943 33293 0 0 140943 33293 2456 1666 0 0 8575 6953 0 0 11109 9206 0 0 2456 1853 0 0 60379 6679 0 0 55968 6936 0 0 2456 0 0 947 1015 1162 8282 0 0 2.67851 2.67851 -110.655 -2.67851 0 0 666494. 2306.21 0.30 0.08 0.15 -1 -1 0.30 0.0239754 0.0214245 155 61 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.02 vpr 60.71 MiB 0.02 6756 -1 -1 1 0.02 -1 -1 29848 -1 -1 17 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62164 29 32 291 242 1 134 78 17 17 289 -1 unnamed_device 22.0 MiB 0.14 514 60.7 MiB 0.11 0.00 2.6657 -81.5402 -2.6657 2.6657 0.96 0.000282638 0.000228279 0.0205645 0.0169119 32 1660 25 6.65987e+06 215526 554710. 1919.41 0.94 0.0568983 0.0484582 22834 132086 -1 1371 24 1248 1743 159158 38763 0 0 159158 38763 1743 1448 0 0 6667 5703 0 0 11543 8669 0 0 1743 1571 0 0 65266 11250 0 0 72196 10122 0 0 1743 0 0 495 645 434 4307 0 0 2.78171 2.78171 -103.954 -2.78171 0 0 701300. 2426.64 0.24 0.05 0.11 -1 -1 0.24 0.0114258 0.0100429 96 28 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 7.32 vpr 61.02 MiB 0.02 6844 -1 -1 1 0.02 -1 -1 29768 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62488 32 32 335 291 1 154 81 17 17 289 -1 unnamed_device 22.2 MiB 0.40 807 61.0 MiB 0.17 0.00 2.97218 -86.7839 -2.97218 2.97218 1.07 0.00035804 0.000287369 0.0251448 0.0201203 32 1925 24 6.65987e+06 215526 554710. 1919.41 3.36 0.132852 0.113283 22834 132086 -1 1735 21 1225 1766 146473 34409 0 0 146473 34409 1766 1420 0 0 7067 6229 0 0 11828 9456 0 0 1766 1515 0 0 61289 8181 0 0 62757 7608 0 0 1766 0 0 541 429 466 4432 0 0 2.84671 2.84671 -104.047 -2.84671 0 0 701300. 2426.64 0.32 0.08 0.16 -1 -1 0.32 0.0210733 0.0187798 111 79 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.94 vpr 61.37 MiB 0.03 7056 -1 -1 1 0.01 -1 -1 29920 -1 -1 37 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62840 31 32 367 283 1 196 100 17 17 289 -1 unnamed_device 23.1 MiB 0.11 1058 61.4 MiB 0.24 0.01 3.30984 -111.239 -3.30984 3.30984 1.07 0.000379844 0.000310135 0.0249599 0.0205331 28 2461 21 6.65987e+06 469086 500653. 1732.36 1.10 0.078553 0.0677411 21970 115934 -1 2117 31 2127 3472 370503 143821 0 0 370503 143821 3472 2394 0 0 12707 10768 0 0 21427 16346 0 0 3472 2542 0 0 165373 55926 0 0 164052 55845 0 0 3472 0 0 1345 1676 1696 12763 0 0 3.60311 3.60311 -135.377 -3.60311 0 0 612192. 2118.31 0.27 0.18 0.14 -1 -1 0.27 0.0341416 0.030609 151 29 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 6.29 vpr 61.36 MiB 0.03 6872 -1 -1 1 0.01 -1 -1 29920 -1 -1 31 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62836 29 32 301 258 1 150 92 17 17 289 -1 unnamed_device 22.6 MiB 0.39 593 61.4 MiB 0.19 0.00 2.86104 -75.2633 -2.86104 2.86104 1.08 0.000331568 0.000269371 0.0214845 0.0176688 26 2218 45 6.65987e+06 393018 477104. 1650.88 2.41 0.0975416 0.0844401 21682 110474 -1 1747 22 1164 1865 162322 39922 0 0 162322 39922 1865 1457 0 0 7029 5724 0 0 10707 8425 0 0 1865 1583 0 0 70181 11488 0 0 70675 11245 0 0 1865 0 0 701 920 882 6870 0 0 2.85685 2.85685 -100.196 -2.85685 0 0 585099. 2024.56 0.25 0.09 0.14 -1 -1 0.25 0.020867 0.0186462 108 48 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 6.42 vpr 61.30 MiB 0.02 6844 -1 -1 1 0.02 -1 -1 29944 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62776 32 32 315 257 1 160 80 17 17 289 -1 unnamed_device 22.5 MiB 0.25 807 61.3 MiB 0.14 0.00 2.7929 -99.2183 -2.7929 2.7929 1.09 0.00042593 0.000360508 0.0157774 0.0131908 30 1907 17 6.65987e+06 202848 526063. 1820.29 2.64 0.127834 0.111772 22546 126617 -1 1595 17 1004 1658 81647 20514 0 0 81647 20514 1658 1129 0 0 5543 4400 0 0 7190 5829 0 0 1658 1241 0 0 32608 3891 0 0 32990 4024 0 0 1658 0 0 654 454 678 5094 0 0 2.77657 2.77657 -114.196 -2.77657 0 0 666494. 2306.21 0.27 0.13 0.13 -1 -1 0.27 0.0211783 0.0191719 119 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 8.18 vpr 61.29 MiB 0.02 7140 -1 -1 1 0.02 -1 -1 30008 -1 -1 35 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62764 31 32 389 309 1 189 98 17 17 289 -1 unnamed_device 23.0 MiB 0.32 939 61.3 MiB 0.16 0.01 2.9951 -96.8898 -2.9951 2.9951 1.10 0.000583028 0.000493822 0.020415 0.0172288 26 2424 25 6.65987e+06 443730 477104. 1650.88 4.36 0.178778 0.155815 21682 110474 -1 1953 21 1389 2070 149469 34398 0 0 149469 34398 2070 1512 0 0 7719 6261 0 0 11298 8948 0 0 2070 1593 0 0 64589 7716 0 0 61723 8368 0 0 2070 0 0 681 869 848 6632 0 0 3.04797 3.04797 -120.107 -3.04797 0 0 585099. 2024.56 0.27 0.09 0.12 -1 -1 0.27 0.0289294 0.0261877 141 60 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 7.47 vpr 60.94 MiB 0.02 6800 -1 -1 1 0.01 -1 -1 29808 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62404 31 32 310 264 1 148 79 17 17 289 -1 unnamed_device 22.5 MiB 0.34 708 60.9 MiB 0.13 0.00 2.49487 -77.9602 -2.49487 2.49487 1.10 0.000372971 0.000313887 0.0165111 0.0137367 26 1960 24 6.65987e+06 202848 477104. 1650.88 3.74 0.154626 0.135499 21682 110474 -1 1671 21 1061 1749 128636 33266 0 0 128636 33266 1749 1315 0 0 6825 5743 0 0 10081 8167 0 0 1749 1447 0 0 52634 8981 0 0 55598 7613 0 0 1749 0 0 688 917 852 5830 0 0 3.03805 3.03805 -105.001 -3.03805 0 0 585099. 2024.56 0.26 0.07 0.13 -1 -1 0.26 0.0193999 0.0173108 105 49 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 9.41 vpr 61.27 MiB 0.02 6936 -1 -1 1 0.02 -1 -1 30016 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62744 32 32 384 308 1 184 96 17 17 289 -1 unnamed_device 22.4 MiB 0.32 948 61.3 MiB 0.21 0.01 2.6657 -90.6973 -2.6657 2.6657 1.11 0.000462632 0.000391105 0.0234119 0.0192852 26 2604 32 6.65987e+06 405696 477104. 1650.88 5.51 0.168811 0.147036 21682 110474 -1 2258 22 1445 2563 272190 58016 0 0 272190 58016 2563 1741 0 0 9691 8167 0 0 15285 11948 0 0 2563 2011 0 0 124288 16479 0 0 117800 17670 0 0 2563 0 0 1118 2009 2072 12756 0 0 2.99817 2.99817 -115.274 -2.99817 0 0 585099. 2024.56 0.25 0.12 0.13 -1 -1 0.25 0.0267014 0.0239458 136 56 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 7.13 vpr 61.51 MiB 0.03 7120 -1 -1 1 0.02 -1 -1 29932 -1 -1 36 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62988 31 32 424 341 1 195 99 17 17 289 -1 unnamed_device 23.1 MiB 0.21 920 61.5 MiB 0.19 0.00 3.0233 -95.9488 -3.0233 3.0233 0.82 0.000382577 0.000305795 0.021546 0.0176264 32 2278 20 6.65987e+06 456408 554710. 1919.41 3.68 0.184079 0.159097 22834 132086 -1 1886 19 1603 2283 164040 39075 0 0 164040 39075 2283 1773 0 0 8782 7359 0 0 14125 10944 0 0 2283 1969 0 0 68874 8506 0 0 67693 8524 0 0 2283 0 0 680 719 832 6452 0 0 3.00817 3.00817 -116.09 -3.00817 0 0 701300. 2426.64 0.31 0.10 0.17 -1 -1 0.31 0.0262042 0.0236689 148 88 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.74 vpr 61.19 MiB 0.02 6668 -1 -1 1 0.02 -1 -1 29868 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62656 32 32 334 280 1 160 82 17 17 289 -1 unnamed_device 22.4 MiB 0.21 835 61.2 MiB 0.21 0.00 2.31427 -83.4482 -2.31427 2.31427 1.04 0.000308359 0.000247223 0.027634 0.0224684 32 2142 19 6.65987e+06 228204 554710. 1919.41 1.09 0.0817442 0.0696959 22834 132086 -1 1764 19 1148 1785 153193 33809 0 0 153193 33809 1785 1413 0 0 6921 5826 0 0 10860 8513 0 0 1785 1490 0 0 67128 8183 0 0 64714 8384 0 0 1785 0 0 637 571 484 4871 0 0 2.61545 2.61545 -103.639 -2.61545 0 0 701300. 2426.64 0.28 0.07 0.15 -1 -1 0.28 0.0187827 0.0168721 115 54 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 6.59 vpr 61.37 MiB 0.02 6780 -1 -1 1 0.02 -1 -1 29808 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62844 32 32 340 284 1 164 82 17 17 289 -1 unnamed_device 22.5 MiB 0.36 798 61.4 MiB 0.17 0.00 2.66064 -92.7752 -2.66064 2.66064 1.04 0.000315557 0.000254085 0.0225242 0.0185436 32 2168 23 6.65987e+06 228204 554710. 1919.41 2.72 0.120664 0.102732 22834 132086 -1 1868 23 1453 2344 190642 43203 0 0 190642 43203 2344 1919 0 0 8832 7483 0 0 14188 10785 0 0 2344 1965 0 0 86753 9878 0 0 76181 11173 0 0 2344 0 0 891 1016 967 7412 0 0 2.87091 2.87091 -114.979 -2.87091 0 0 701300. 2426.64 0.23 0.20 0.17 -1 -1 0.23 0.0241697 0.0216848 121 60 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 7.94 vpr 61.39 MiB 0.02 7152 -1 -1 1 0.02 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62868 32 32 408 320 1 198 100 17 17 289 -1 unnamed_device 23.1 MiB 0.30 1104 61.4 MiB 0.29 0.01 3.08864 -109.836 -3.08864 3.08864 1.03 0.000351206 0.000284356 0.0357831 0.0292907 32 2601 21 6.65987e+06 456408 554710. 1919.41 3.51 0.204858 0.176805 22834 132086 -1 2210 21 1722 2526 204096 45280 0 0 204096 45280 2526 1868 0 0 10081 8714 0 0 15461 12362 0 0 2526 2018 0 0 89135 9890 0 0 84367 10428 0 0 2526 0 0 804 893 973 7884 0 0 3.42891 3.42891 -132.907 -3.42891 0 0 701300. 2426.64 0.31 0.10 0.16 -1 -1 0.31 0.0264117 0.0236508 154 49 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 7.61 vpr 61.62 MiB 0.02 7056 -1 -1 1 0.02 -1 -1 30076 -1 -1 32 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63100 29 32 371 297 1 183 93 17 17 289 -1 unnamed_device 22.8 MiB 0.27 847 61.6 MiB 0.26 0.01 2.66464 -83.217 -2.66464 2.66464 1.09 0.000461404 0.000387152 0.0310842 0.0256493 32 2208 24 6.65987e+06 405696 554710. 1919.41 3.43 0.189866 0.163481 22834 132086 -1 1842 19 1313 2034 142345 34037 0 0 142345 34037 2034 1504 0 0 7702 6652 0 0 12095 9330 0 0 2034 1627 0 0 59332 7586 0 0 59148 7338 0 0 2034 0 0 721 1098 1249 8156 0 0 2.91691 2.91691 -101.499 -2.91691 0 0 701300. 2426.64 0.29 0.36 0.15 -1 -1 0.29 0.0277322 0.0252874 133 54 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 9.31 vpr 61.36 MiB 0.05 7044 -1 -1 1 0.02 -1 -1 30152 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62832 32 32 470 382 1 200 101 17 17 289 -1 unnamed_device 23.0 MiB 0.44 1005 61.4 MiB 0.10 0.00 3.17284 -108.861 -3.17284 3.17284 0.96 0.000229991 0.000185886 0.0114882 0.00933357 28 2885 25 6.65987e+06 469086 500653. 1732.36 5.50 0.201401 0.175303 21970 115934 -1 2373 20 1776 2842 218102 50080 0 0 218102 50080 2842 2134 0 0 10380 8527 0 0 14994 12136 0 0 2842 2258 0 0 96247 11427 0 0 90797 13598 0 0 2842 0 0 1066 1570 1394 10524 0 0 3.70031 3.70031 -144.255 -3.70031 0 0 612192. 2118.31 0.18 0.17 0.08 -1 -1 0.18 0.0251078 0.0221461 156 117 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.49 vpr 60.71 MiB 0.02 6960 -1 -1 1 0.01 -1 -1 29828 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62172 31 32 261 214 1 146 79 17 17 289 -1 unnamed_device 22.0 MiB 0.25 775 60.7 MiB 0.14 0.00 2.44173 -84.5895 -2.44173 2.44173 1.10 0.00031549 0.000245392 0.0150038 0.0123826 30 1765 14 6.65987e+06 202848 526063. 1820.29 0.92 0.0522246 0.0448142 22546 126617 -1 1530 19 946 1555 95314 22052 0 0 95314 22052 1555 1110 0 0 5201 4218 0 0 7114 5672 0 0 1555 1205 0 0 39333 5117 0 0 40556 4730 0 0 1555 0 0 609 717 695 4990 0 0 2.72871 2.72871 -101.249 -2.72871 0 0 666494. 2306.21 0.19 0.03 0.12 -1 -1 0.19 0.00919125 0.00820197 105 -1 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 6.77 vpr 61.11 MiB 0.03 7112 -1 -1 1 0.01 -1 -1 29836 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62580 32 32 419 339 1 190 96 17 17 289 -1 unnamed_device 22.8 MiB 0.35 1098 61.1 MiB 0.16 0.00 3.67964 -115.162 -3.67964 3.67964 0.94 0.000215478 0.000170283 0.0191046 0.0155068 28 2382 21 6.65987e+06 405696 500653. 1732.36 2.97 0.183952 0.160463 21970 115934 -1 2229 23 1507 2276 167283 37507 0 0 167283 37507 2276 1820 0 0 8304 6759 0 0 11910 9557 0 0 2276 2005 0 0 73677 8318 0 0 68840 9048 0 0 2276 0 0 769 909 1005 7031 0 0 3.46617 3.46617 -133.704 -3.46617 0 0 612192. 2118.31 0.28 0.09 0.13 -1 -1 0.28 0.0271416 0.0241587 142 89 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.86 vpr 61.43 MiB 0.02 7000 -1 -1 1 0.02 -1 -1 29792 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62908 32 32 377 319 1 156 80 17 17 289 -1 unnamed_device 22.7 MiB 0.25 880 61.4 MiB 0.14 0.00 2.8021 -101.987 -2.8021 2.8021 1.08 0.000301445 0.000245716 0.0227979 0.0190112 32 2027 21 6.65987e+06 202848 554710. 1919.41 1.05 0.0837013 0.0722324 22834 132086 -1 1833 22 1435 2085 162441 37256 0 0 162441 37256 2085 1791 0 0 7823 6826 0 0 12434 9558 0 0 2085 1841 0 0 69690 8714 0 0 68324 8526 0 0 2085 0 0 650 599 688 5442 0 0 3.02797 3.02797 -124.59 -3.02797 0 0 701300. 2426.64 0.32 0.09 0.16 -1 -1 0.32 0.0251253 0.022522 115 93 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 8.57 vpr 61.74 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30168 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63220 32 32 402 317 1 196 99 17 17 289 -1 unnamed_device 22.9 MiB 0.33 1009 61.7 MiB 0.26 0.00 2.63244 -94.0047 -2.63244 2.63244 1.04 0.000222455 0.00017981 0.0302532 0.0246406 28 2655 31 6.65987e+06 443730 500653. 1732.36 4.61 0.202656 0.175265 21970 115934 -1 2061 19 1342 2024 149127 34340 0 0 149127 34340 2024 1502 0 0 7671 6285 0 0 11300 9224 0 0 2024 1615 0 0 64491 7739 0 0 61617 7975 0 0 2024 0 0 682 955 921 7270 0 0 2.66631 2.66631 -111.412 -2.66631 0 0 612192. 2118.31 0.24 0.07 0.11 -1 -1 0.24 0.0225184 0.020301 149 59 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.24 vpr 61.60 MiB 0.03 7308 -1 -1 1 0.01 -1 -1 30164 -1 -1 43 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63076 32 32 501 383 1 232 107 17 17 289 -1 unnamed_device 23.3 MiB 0.35 1092 61.6 MiB 0.20 0.00 3.7509 -126.667 -3.7509 3.7509 1.04 0.000267285 0.00021883 0.0229644 0.0191192 30 2741 27 6.65987e+06 545154 526063. 1820.29 3.31 0.18295 0.157361 22546 126617 -1 2287 22 2076 3230 188769 43028 0 0 188769 43028 3230 2345 0 0 10887 8616 0 0 14637 11718 0 0 3230 2502 0 0 86860 7596 0 0 69925 10251 0 0 3230 0 0 1154 1854 1881 13303 0 0 4.14737 4.14737 -150.161 -4.14737 0 0 666494. 2306.21 0.29 0.10 0.13 -1 -1 0.29 0.0305774 0.0272857 186 81 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 6.24 vpr 60.35 MiB 0.02 6696 -1 -1 1 0.01 -1 -1 29728 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61796 30 32 249 232 1 118 77 17 17 289 -1 unnamed_device 21.7 MiB 0.22 522 60.3 MiB 0.09 0.00 1.98838 -63.7947 -1.98838 1.98838 1.06 0.000115214 8.954e-05 0.0165921 0.0133956 32 1286 24 6.65987e+06 190170 554710. 1919.41 2.56 0.0870257 0.073062 22834 132086 -1 1132 17 586 790 62108 16253 0 0 62108 16253 790 722 0 0 3182 2763 0 0 4956 3977 0 0 790 749 0 0 26715 3870 0 0 25675 4172 0 0 790 0 0 204 133 152 1749 0 0 1.83885 1.83885 -75.4397 -1.83885 0 0 701300. 2426.64 0.30 0.04 0.15 -1 -1 0.30 0.0125876 0.0111961 83 51 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.83 vpr 60.70 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 29912 -1 -1 16 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62152 30 32 299 247 1 137 78 17 17 289 -1 unnamed_device 22.2 MiB 0.15 574 60.7 MiB 0.24 0.00 2.80784 -84.9762 -2.80784 2.80784 0.97 0.000313864 0.000256255 0.0249481 0.0207934 32 1799 22 6.65987e+06 202848 554710. 1919.41 1.13 0.0781101 0.0670888 22834 132086 -1 1372 20 1011 1497 124690 30012 0 0 124690 30012 1497 1260 0 0 5745 4964 0 0 9164 7000 0 0 1497 1315 0 0 52571 7896 0 0 54216 7577 0 0 1497 0 0 486 616 530 4299 0 0 2.71571 2.71571 -102.206 -2.71571 0 0 701300. 2426.64 0.32 0.07 0.16 -1 -1 0.32 0.0189158 0.0169098 96 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 5.01 vpr 61.04 MiB 0.02 6708 -1 -1 1 0.01 -1 -1 29756 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62500 32 32 315 257 1 167 82 17 17 289 -1 unnamed_device 22.2 MiB 0.14 818 61.0 MiB 0.36 0.01 2.7647 -97.7083 -2.7647 2.7647 1.10 0.000371571 0.000323428 0.0301012 0.0247337 32 2411 22 6.65987e+06 228204 554710. 1919.41 0.99 0.0809128 0.0691265 22834 132086 -1 2009 21 1565 2754 203892 49156 0 0 203892 49156 2754 2086 0 0 10696 9517 0 0 17379 13423 0 0 2754 2221 0 0 87752 10763 0 0 82557 11146 0 0 2754 0 0 1189 1114 1253 9302 0 0 3.03597 3.03597 -124.226 -3.03597 0 0 701300. 2426.64 0.32 0.10 0.16 -1 -1 0.32 0.0234358 0.0211378 126 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.58 vpr 60.67 MiB 0.05 6928 -1 -1 1 0.02 -1 -1 29908 -1 -1 34 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62124 25 32 259 222 1 138 91 17 17 289 -1 unnamed_device 22.0 MiB 0.07 600 60.7 MiB 0.21 0.00 2.65984 -72.1531 -2.65984 2.65984 0.93 0.000132302 0.000103567 0.0173535 0.0142835 30 1409 21 6.65987e+06 431052 526063. 1820.29 3.10 0.120615 0.103291 22546 126617 -1 1204 18 803 1228 67694 16094 0 0 67694 16094 1228 876 0 0 4091 3248 0 0 5391 4334 0 0 1228 946 0 0 31601 2835 0 0 24155 3855 0 0 1228 0 0 425 425 474 4100 0 0 2.52151 2.52151 -82.7437 -2.52151 0 0 666494. 2306.21 0.30 0.05 0.14 -1 -1 0.30 0.0144921 0.0129631 103 19 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 7.72 vpr 61.38 MiB 0.07 6988 -1 -1 1 0.01 -1 -1 30108 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62852 32 32 433 347 1 193 84 17 17 289 -1 unnamed_device 22.9 MiB 0.45 934 61.4 MiB 0.22 0.00 3.17278 -100.953 -3.17278 3.17278 0.98 0.000351217 0.000302288 0.0241219 0.0197005 30 2123 24 6.65987e+06 253560 526063. 1820.29 3.72 0.174128 0.150897 22546 126617 -1 1703 19 1474 2588 115165 31748 0 0 115165 31748 2588 1742 0 0 8659 7121 0 0 11525 9241 0 0 2588 1868 0 0 44166 6530 0 0 45639 5246 0 0 2588 0 0 1114 1078 999 8523 0 0 3.17645 3.17645 -119.216 -3.17645 0 0 666494. 2306.21 0.30 0.08 0.15 -1 -1 0.30 0.0259075 0.0232863 147 84 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.14 vpr 61.42 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 29928 -1 -1 36 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62896 31 32 423 341 1 193 99 17 17 289 -1 unnamed_device 23.0 MiB 0.31 1003 61.4 MiB 0.22 0.00 3.0413 -99.5078 -3.0413 3.0413 0.99 0.000301666 0.000244551 0.027937 0.0228898 32 2242 23 6.65987e+06 456408 554710. 1919.41 1.12 0.0966647 0.0829504 22834 132086 -1 2005 20 1612 2570 179639 41566 0 0 179639 41566 2570 1787 0 0 9939 8427 0 0 15753 12314 0 0 2570 1968 0 0 77702 8061 0 0 71105 9009 0 0 2570 0 0 958 1033 1183 8460 0 0 2.95597 2.95597 -115.716 -2.95597 0 0 701300. 2426.64 0.22 0.16 0.16 -1 -1 0.22 0.0296654 0.0268096 145 88 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 29.84 vpr 62.45 MiB 0.08 7008 -1 -1 1 0.03 -1 -1 30280 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63944 32 32 439 351 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.80 873 62.4 MiB 0.27 0.00 3.15069 -114.065 -3.15069 3.15069 1.10 0.000222482 0.000175141 0.033556 0.0280785 48 2931 44 6.95648e+06 361892 865456. 2994.66 24.91 0.368267 0.323453 28354 207349 -1 2185 25 2197 3370 325945 68810 0 0 325945 68810 3370 2845 0 0 10475 9262 0 0 19900 12421 0 0 3370 3019 0 0 144259 19608 0 0 144571 21655 0 0 3370 0 0 1173 1399 1334 10652 0 0 4.32166 4.32166 -151.545 -4.32166 0 0 1.05005e+06 3633.38 0.41 0.17 0.25 -1 -1 0.41 0.0318274 0.028471 87 80 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 20.25 vpr 62.04 MiB 0.03 6956 -1 -1 1 0.02 -1 -1 30144 -1 -1 14 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63528 30 32 412 333 1 179 76 17 17 289 -1 unnamed_device 23.3 MiB 2.66 848 62.0 MiB 0.26 0.00 3.3213 -112.556 -3.3213 3.3213 0.79 0.000382312 0.000307877 0.0317304 0.0264033 38 2493 24 6.95648e+06 202660 678818. 2348.85 14.33 0.26942 0.234996 26626 170182 -1 2052 22 1774 2655 223678 44477 0 0 223678 44477 2655 2241 0 0 8054 7075 0 0 14176 9028 0 0 2655 2288 0 0 104640 10885 0 0 91498 12960 0 0 2655 0 0 881 878 825 7113 0 0 3.89226 3.89226 -139.357 -3.89226 0 0 902133. 3121.57 0.33 0.10 0.18 -1 -1 0.33 0.0279074 0.02499 76 78 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 11.85 vpr 62.42 MiB 0.02 6984 -1 -1 1 0.02 -1 -1 30028 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 388 310 1 179 83 17 17 289 -1 unnamed_device 23.7 MiB 1.25 677 62.4 MiB 0.11 0.00 3.04869 -103.473 -3.04869 3.04869 1.08 0.000184933 0.000146865 0.0206284 0.0170685 48 2231 40 6.95648e+06 275038 865456. 2994.66 7.05 0.240093 0.209234 28354 207349 -1 1770 23 1513 2242 214531 48598 0 0 214531 48598 2242 1893 0 0 7549 6579 0 0 13697 9116 0 0 2242 1990 0 0 99863 13392 0 0 88938 15628 0 0 2242 0 0 729 1007 1006 7594 0 0 3.84376 3.84376 -139.578 -3.84376 0 0 1.05005e+06 3633.38 0.37 0.09 0.20 -1 -1 0.37 0.0232807 0.0208621 77 50 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 9.46 vpr 62.13 MiB 0.04 7032 -1 -1 1 0.02 -1 -1 30068 -1 -1 16 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63620 29 32 347 271 1 176 77 17 17 289 -1 unnamed_device 23.2 MiB 0.39 833 62.1 MiB 0.13 0.00 3.3745 -110.858 -3.3745 3.3745 1.07 0.000350139 0.000275699 0.0235763 0.0193742 46 2235 23 6.95648e+06 231611 828058. 2865.25 5.34 0.216366 0.189971 28066 200906 -1 1875 20 1681 2501 186309 38703 0 0 186309 38703 2501 2100 0 0 7680 6908 0 0 13247 8614 0 0 2501 2336 0 0 86940 8686 0 0 73440 10059 0 0 2501 0 0 820 758 552 6589 0 0 3.62326 3.62326 -131.181 -3.62326 0 0 1.01997e+06 3529.29 0.41 0.09 0.25 -1 -1 0.41 0.0225956 0.020259 76 25 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 9.18 vpr 61.99 MiB 0.03 6968 -1 -1 1 0.02 -1 -1 29864 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 377 289 1 187 77 17 17 289 -1 unnamed_device 23.5 MiB 0.95 781 62.0 MiB 0.19 0.00 3.04139 -111.485 -3.04139 3.04139 1.10 0.000341585 0.000280017 0.0289642 0.0241477 56 2285 28 6.95648e+06 188184 973134. 3367.25 4.47 0.183704 0.1614 29794 239141 -1 1996 23 2009 3494 376801 80669 0 0 376801 80669 3494 2762 0 0 10712 9388 0 0 21951 12709 0 0 3494 2940 0 0 180402 24590 0 0 156748 28280 0 0 3494 0 0 1485 1569 1225 11077 0 0 4.05056 4.05056 -143.074 -4.05056 0 0 1.19926e+06 4149.71 0.41 0.12 0.24 -1 -1 0.41 0.0243799 0.0219039 78 31 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 10.58 vpr 62.39 MiB 0.03 7244 -1 -1 1 0.02 -1 -1 29960 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 403 317 1 191 93 17 17 289 -1 unnamed_device 23.6 MiB 0.64 823 62.4 MiB 0.18 0.00 2.7464 -97.9813 -2.7464 2.7464 0.95 0.000347897 0.000278218 0.0272207 0.0222822 48 2366 27 6.95648e+06 419795 865456. 2994.66 6.44 0.235524 0.205593 28354 207349 -1 1827 22 1446 2025 214918 52633 0 0 214918 52633 2025 1606 0 0 7161 6139 0 0 12689 8750 0 0 2025 1666 0 0 90120 17886 0 0 100898 16586 0 0 2025 0 0 579 613 609 5590 0 0 3.04052 3.04052 -123.175 -3.04052 0 0 1.05005e+06 3633.38 0.41 0.07 0.25 -1 -1 0.41 0.0168933 0.0150886 88 61 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 13.48 vpr 61.24 MiB 0.03 6824 -1 -1 1 0.02 -1 -1 29936 -1 -1 15 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62712 27 32 275 232 1 129 74 17 17 289 -1 unnamed_device 22.8 MiB 5.16 402 61.2 MiB 0.13 0.00 2.5173 -77.1551 -2.5173 2.5173 1.08 0.000246198 0.00019706 0.0172892 0.0141996 42 1478 36 6.95648e+06 217135 744469. 2576.02 4.67 0.145246 0.123646 27202 183097 -1 1158 24 1112 1659 133157 33438 0 0 133157 33438 1659 1313 0 0 5637 4889 0 0 9926 6859 0 0 1659 1321 0 0 59606 8284 0 0 54670 10772 0 0 1659 0 0 547 627 532 4695 0 0 2.96767 2.96767 -99.4215 -2.96767 0 0 949917. 3286.91 0.38 0.07 0.22 -1 -1 0.38 0.0179358 0.0158191 55 26 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 8.58 vpr 61.93 MiB 0.02 6932 -1 -1 1 0.01 -1 -1 29860 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63416 31 32 319 244 1 178 80 17 17 289 -1 unnamed_device 23.2 MiB 0.63 729 61.9 MiB 0.14 0.00 2.6456 -89.0964 -2.6456 2.6456 1.09 0.000326566 0.000265731 0.0254553 0.0210326 38 2916 49 6.95648e+06 246087 678818. 2348.85 4.41 0.172606 0.152438 26626 170182 -1 1881 18 1339 1922 151557 35502 0 0 151557 35502 1922 1678 0 0 6163 5461 0 0 9729 6748 0 0 1922 1713 0 0 64908 10149 0 0 66913 9753 0 0 1922 0 0 583 721 925 6083 0 0 3.36257 3.36257 -114.753 -3.36257 0 0 902133. 3121.57 0.35 0.07 0.18 -1 -1 0.35 0.0202676 0.0183271 77 -1 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 10.91 vpr 61.84 MiB 0.02 7068 -1 -1 1 0.01 -1 -1 30004 -1 -1 11 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63320 31 32 340 294 1 143 74 17 17 289 -1 unnamed_device 23.3 MiB 2.26 541 61.8 MiB 0.10 0.00 2.60155 -81.4951 -2.60155 2.60155 1.10 0.000336397 0.000271598 0.0209647 0.0172 42 1910 30 6.95648e+06 159232 744469. 2576.02 5.01 0.164749 0.140915 27202 183097 -1 1491 24 1040 1595 134504 29797 0 0 134504 29797 1595 1365 0 0 5291 4557 0 0 9155 6213 0 0 1595 1450 0 0 59049 7946 0 0 57819 8266 0 0 1595 0 0 555 589 425 4390 0 0 3.42512 3.42512 -110.971 -3.42512 0 0 949917. 3286.91 0.38 0.09 0.21 -1 -1 0.38 0.0218958 0.0193552 57 81 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 11.26 vpr 61.75 MiB 0.02 6932 -1 -1 1 0.01 -1 -1 29916 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63236 32 32 315 257 1 156 74 17 17 289 -1 unnamed_device 23.3 MiB 1.17 888 61.8 MiB 0.12 0.00 2.43785 -101.706 -2.43785 2.43785 1.05 0.000302933 0.00024367 0.0194942 0.0161815 36 2408 41 6.95648e+06 144757 648988. 2245.63 6.30 0.154836 0.136917 26050 158493 -1 2020 29 1930 2754 400085 123510 0 0 400085 123510 2754 2404 0 0 8393 7353 0 0 16947 9907 0 0 2754 2462 0 0 184565 52167 0 0 184672 49217 0 0 2754 0 0 824 1113 1019 7904 0 0 3.10582 3.10582 -135.16 -3.10582 0 0 828058. 2865.25 0.36 0.19 0.19 -1 -1 0.36 0.0275329 0.0244518 62 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 9.38 vpr 61.82 MiB 0.02 6960 -1 -1 1 0.02 -1 -1 29896 -1 -1 12 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63308 30 32 328 276 1 148 74 17 17 289 -1 unnamed_device 23.2 MiB 2.25 793 61.8 MiB 0.10 0.00 2.6163 -99.3956 -2.6163 2.6163 1.02 0.000321003 0.000259503 0.0194277 0.016065 36 1987 22 6.95648e+06 173708 648988. 2245.63 3.60 0.138445 0.121414 26050 158493 -1 1691 27 1620 2202 284859 105699 0 0 284859 105699 2202 1953 0 0 7083 6099 0 0 12789 8408 0 0 2202 1960 0 0 140565 43280 0 0 120018 43999 0 0 2202 0 0 582 776 702 5750 0 0 2.98057 2.98057 -121.693 -2.98057 0 0 828058. 2865.25 0.23 0.08 0.15 -1 -1 0.23 0.0131745 0.0116106 60 58 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 16.63 vpr 61.98 MiB 0.02 7044 -1 -1 1 0.02 -1 -1 29940 -1 -1 12 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63464 32 32 332 281 1 150 76 17 17 289 -1 unnamed_device 23.2 MiB 1.21 622 62.0 MiB 0.10 0.00 2.47995 -90.7569 -2.47995 2.47995 0.97 0.000263734 0.000213544 0.0202956 0.0167041 40 2046 32 6.95648e+06 173708 706193. 2443.58 11.43 0.232255 0.2016 26914 176310 -1 1566 22 1236 1738 136669 33043 0 0 136669 33043 1738 1378 0 0 5776 5028 0 0 10087 6724 0 0 1738 1457 0 0 60931 8882 0 0 56399 9574 0 0 1738 0 0 502 486 526 4698 0 0 3.01487 3.01487 -115.93 -3.01487 0 0 926341. 3205.33 0.36 0.29 0.21 -1 -1 0.36 0.0223352 0.0199601 60 57 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.65 vpr 62.31 MiB 0.03 6992 -1 -1 1 0.01 -1 -1 29880 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 387 306 1 180 85 17 17 289 -1 unnamed_device 23.6 MiB 1.71 736 62.3 MiB 0.23 0.00 2.7086 -98.8625 -2.7086 2.7086 0.79 0.000362994 0.000294464 0.0282828 0.0235638 46 2086 23 6.95648e+06 303989 828058. 2865.25 2.31 0.116896 0.10155 28066 200906 -1 1797 20 1618 2514 176064 39836 0 0 176064 39836 2514 1867 0 0 7888 6970 0 0 13757 8991 0 0 2514 2004 0 0 76763 9348 0 0 72628 10656 0 0 2514 0 0 896 931 850 7377 0 0 3.49087 3.49087 -126.738 -3.49087 0 0 1.01997e+06 3529.29 0.37 0.23 0.19 -1 -1 0.37 0.0198814 0.0179365 79 55 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 8.41 vpr 62.18 MiB 0.02 6980 -1 -1 1 0.01 -1 -1 29908 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 408 320 1 194 88 17 17 289 -1 unnamed_device 23.4 MiB 1.58 845 62.2 MiB 0.21 0.00 3.11789 -113.171 -3.11789 3.11789 0.76 0.000360607 0.000292128 0.0303815 0.0249957 44 2879 27 6.95648e+06 347416 787024. 2723.27 3.18 0.137666 0.119221 27778 195446 -1 2217 23 2160 3123 300836 63278 0 0 300836 63278 3123 2554 0 0 9557 8485 0 0 18092 11024 0 0 3123 2681 0 0 127360 20374 0 0 139581 18160 0 0 3123 0 0 963 1318 1041 9267 0 0 4.61146 4.61146 -159.306 -4.61146 0 0 997811. 3452.63 0.33 0.23 0.21 -1 -1 0.33 0.0315411 0.0284917 87 60 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 11.85 vpr 61.55 MiB 0.14 6760 -1 -1 1 0.02 -1 -1 29952 -1 -1 13 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63028 29 32 276 232 1 141 74 17 17 289 -1 unnamed_device 23.0 MiB 1.59 562 61.6 MiB 0.11 0.00 2.64555 -78.8873 -2.64555 2.64555 1.06 0.000269671 0.000214552 0.0229086 0.0186631 42 2011 49 6.95648e+06 188184 744469. 2576.02 6.43 0.184268 0.160247 27202 183097 -1 1449 26 1248 1904 176841 40627 0 0 176841 40627 1904 1678 0 0 6253 5548 0 0 12163 7737 0 0 1904 1773 0 0 75257 11686 0 0 79360 12205 0 0 1904 0 0 656 715 623 5276 0 0 3.10097 3.10097 -106.554 -3.10097 0 0 949917. 3286.91 0.38 0.09 0.21 -1 -1 0.38 0.0207163 0.0183827 58 21 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 12.48 vpr 62.11 MiB 0.03 7000 -1 -1 1 0.01 -1 -1 29904 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63604 32 32 402 316 1 185 77 17 17 289 -1 unnamed_device 23.4 MiB 2.53 972 62.1 MiB 0.19 0.00 2.6493 -103.646 -2.6493 2.6493 0.93 0.000399118 0.000324573 0.0313927 0.0258665 44 2502 23 6.95648e+06 188184 787024. 2723.27 6.37 0.260543 0.227037 27778 195446 -1 2051 24 2005 3139 282507 64814 0 0 282507 64814 3139 2421 0 0 9893 8986 0 0 17815 11557 0 0 3139 2742 0 0 128903 18595 0 0 119618 20513 0 0 3139 0 0 1134 1264 1291 9806 0 0 3.23112 3.23112 -129.647 -3.23112 0 0 997811. 3452.63 0.39 0.13 0.23 -1 -1 0.39 0.0290282 0.0259207 77 60 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 8.29 vpr 62.04 MiB 0.02 7020 -1 -1 1 0.02 -1 -1 29824 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63532 32 32 384 304 1 179 85 17 17 289 -1 unnamed_device 23.3 MiB 2.04 918 62.0 MiB 0.17 0.00 2.5613 -100.457 -2.5613 2.5613 0.99 0.000360902 0.00028759 0.0301767 0.0245296 38 2190 44 6.95648e+06 303989 678818. 2348.85 2.58 0.133813 0.11612 26626 170182 -1 1863 19 1409 1929 162074 33720 0 0 162074 33720 1929 1536 0 0 6094 5247 0 0 9842 6714 0 0 1929 1620 0 0 73165 8848 0 0 69115 9755 0 0 1929 0 0 520 544 547 4926 0 0 3.30147 3.30147 -129.068 -3.30147 0 0 902133. 3121.57 0.35 0.20 0.18 -1 -1 0.35 0.0248657 0.0224559 79 54 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 8.16 vpr 61.67 MiB 0.05 6748 -1 -1 1 0.02 -1 -1 29784 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63148 32 32 340 285 1 156 84 17 17 289 -1 unnamed_device 23.1 MiB 1.24 566 61.7 MiB 0.14 0.00 2.16806 -79.4577 -2.16806 2.16806 1.00 0.000320907 0.000258639 0.0272058 0.0222933 46 1711 23 6.95648e+06 289514 828058. 2865.25 3.18 0.137196 0.1191 28066 200906 -1 1235 17 1083 1437 95736 23990 0 0 95736 23990 1437 1113 0 0 4502 3818 0 0 6991 4857 0 0 1437 1161 0 0 40751 5894 0 0 40618 7147 0 0 1437 0 0 354 454 326 3651 0 0 2.43378 2.43378 -100.777 -2.43378 0 0 1.01997e+06 3529.29 0.42 0.06 0.20 -1 -1 0.42 0.0200871 0.0181215 67 62 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 9.66 vpr 61.33 MiB 0.02 6712 -1 -1 1 0.01 -1 -1 29736 -1 -1 10 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62800 30 32 229 211 1 118 72 17 17 289 -1 unnamed_device 22.8 MiB 0.46 407 61.3 MiB 0.08 0.00 1.84156 -63.1923 -1.84156 1.84156 0.94 0.000222424 0.000176917 0.0153093 0.0125096 40 1172 36 6.95648e+06 144757 706193. 2443.58 5.59 0.121681 0.10405 26914 176310 -1 909 20 714 914 73165 19332 0 0 73165 19332 914 822 0 0 3314 2880 0 0 5643 4082 0 0 914 826 0 0 32907 5303 0 0 29473 5419 0 0 914 0 0 200 191 152 1883 0 0 2.31613 2.31613 -85.6898 -2.31613 0 0 926341. 3205.33 0.37 0.05 0.22 -1 -1 0.37 0.014196 0.0125996 45 29 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 19.92 vpr 62.05 MiB 0.08 6956 -1 -1 1 0.01 -1 -1 30048 -1 -1 11 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63536 31 32 337 282 1 152 74 17 17 289 -1 unnamed_device 23.2 MiB 2.17 544 62.0 MiB 0.11 0.00 3.35745 -110.061 -3.35745 3.35745 1.04 0.000275154 0.000214813 0.0205124 0.0168369 42 2225 39 6.95648e+06 159232 744469. 2576.02 14.19 0.251206 0.219451 27202 183097 -1 1477 23 955 1324 119382 27684 0 0 119382 27684 1324 1176 0 0 4646 4131 0 0 8127 5838 0 0 1324 1186 0 0 54283 6999 0 0 49678 8354 0 0 1324 0 0 369 265 349 3107 0 0 3.72972 3.72972 -132.441 -3.72972 0 0 949917. 3286.91 0.32 0.20 0.17 -1 -1 0.32 0.0234296 0.0210455 61 55 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 18.98 vpr 62.17 MiB 0.02 7056 -1 -1 1 0.02 -1 -1 29732 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 367 284 1 184 85 17 17 289 -1 unnamed_device 23.4 MiB 0.56 1001 62.2 MiB 0.11 0.00 3.08304 -115.312 -3.08304 3.08304 1.01 0.000370515 0.000299122 0.0210455 0.0174552 38 2724 46 6.95648e+06 303989 678818. 2348.85 14.71 0.26507 0.232786 26626 170182 -1 2282 20 1686 2218 193555 39027 0 0 193555 39027 2218 1858 0 0 6935 6076 0 0 11567 7648 0 0 2218 1959 0 0 89275 10361 0 0 81342 11125 0 0 2218 0 0 532 407 599 5124 0 0 4.00842 4.00842 -151.83 -4.00842 0 0 902133. 3121.57 0.36 0.09 0.20 -1 -1 0.36 0.024608 0.0222043 81 31 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 26.37 vpr 62.57 MiB 0.03 7152 -1 -1 1 0.02 -1 -1 30260 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 461 376 1 188 91 17 17 289 -1 unnamed_device 23.8 MiB 1.41 794 62.6 MiB 0.24 0.01 3.03469 -102.667 -3.03469 3.03469 1.13 0.000503398 0.000433837 0.0228404 0.0189018 46 2548 26 6.95648e+06 390843 828058. 2865.25 20.95 0.330098 0.288668 28066 200906 -1 1980 19 1459 2234 167244 36954 0 0 167244 36954 2234 1776 0 0 6675 5843 0 0 11012 7227 0 0 2234 1903 0 0 66605 11004 0 0 78484 9201 0 0 2234 0 0 775 863 807 6801 0 0 3.70266 3.70266 -129.454 -3.70266 0 0 1.01997e+06 3529.29 0.36 0.06 0.22 -1 -1 0.36 0.0155099 0.0138429 85 108 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 9.57 vpr 61.29 MiB 0.02 6604 -1 -1 1 0.02 -1 -1 29868 -1 -1 13 26 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62756 26 32 205 193 1 108 71 17 17 289 -1 unnamed_device 22.8 MiB 1.09 327 61.3 MiB 0.03 0.00 1.82136 -55.7705 -1.82136 1.82136 0.96 0.000106294 8.4002e-05 0.00684313 0.00557804 40 894 32 6.95648e+06 188184 706193. 2443.58 5.03 0.109395 0.0939021 26914 176310 -1 649 17 643 801 53056 16425 0 0 53056 16425 801 760 0 0 3032 2708 0 0 4788 3595 0 0 801 774 0 0 21296 4744 0 0 22338 3844 0 0 801 0 0 158 143 159 1577 0 0 2.01518 2.01518 -70.0301 -2.01518 0 0 926341. 3205.33 0.37 0.04 0.15 -1 -1 0.37 0.0119569 0.0106715 44 21 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 8.23 vpr 61.90 MiB 0.03 6916 -1 -1 1 0.02 -1 -1 29884 -1 -1 12 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63388 32 32 334 252 1 180 76 17 17 289 -1 unnamed_device 23.1 MiB 1.22 698 61.9 MiB 0.09 0.00 3.4624 -113.129 -3.4624 3.4624 1.07 0.000320917 0.000261492 0.0200432 0.0166084 48 2265 46 6.95648e+06 173708 865456. 2994.66 3.04 0.119505 0.104082 28354 207349 -1 1653 28 1808 2713 323689 109198 0 0 323689 109198 2713 2324 0 0 8992 7914 0 0 17689 11075 0 0 2713 2489 0 0 153958 42874 0 0 137624 42522 0 0 2713 0 0 905 867 973 7810 0 0 3.89417 3.89417 -141.461 -3.89417 0 0 1.05005e+06 3633.38 0.42 0.18 0.24 -1 -1 0.42 0.0273179 0.0242931 74 -1 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.23 vpr 60.98 MiB 0.02 6560 -1 -1 1 0.01 -1 -1 29692 -1 -1 8 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62444 32 32 200 183 1 119 72 17 17 289 -1 unnamed_device 22.6 MiB 0.34 430 61.0 MiB 0.07 0.00 1.77736 -63.8645 -1.77736 1.77736 1.05 0.000211578 0.000168942 0.0132364 0.0106306 40 1209 23 6.95648e+06 115805 706193. 2443.58 2.18 0.0697036 0.0600791 26914 176310 -1 1037 20 759 940 84775 21556 0 0 84775 21556 940 872 0 0 3288 2886 0 0 5876 4005 0 0 940 926 0 0 34809 6523 0 0 38922 6344 0 0 940 0 0 181 177 116 1806 0 0 2.02638 2.02638 -83.8319 -2.02638 0 0 926341. 3205.33 0.37 0.19 0.20 -1 -1 0.37 0.0137689 0.012312 44 -1 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 12.78 vpr 62.07 MiB 0.02 6952 -1 -1 1 0.02 -1 -1 30168 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63556 32 32 377 289 1 186 88 17 17 289 -1 unnamed_device 23.4 MiB 0.77 746 62.1 MiB 0.25 0.00 3.17289 -112.752 -3.17289 3.17289 1.09 0.000345035 0.000275124 0.0278011 0.0232919 60 1868 32 6.95648e+06 347416 1.01997e+06 3529.29 7.68 0.243942 0.214233 30658 258169 -1 1488 24 1964 2969 215623 51209 0 0 215623 51209 2969 2212 0 0 9008 8093 0 0 18275 10969 0 0 2969 2296 0 0 95609 11593 0 0 86793 16046 0 0 2969 0 0 1005 1193 667 8504 0 0 3.70936 3.70936 -136.216 -3.70936 0 0 1.27783e+06 4421.56 0.55 0.24 0.27 -1 -1 0.55 0.0333131 0.0303277 83 21 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 10.17 vpr 62.28 MiB 0.02 6904 -1 -1 1 0.02 -1 -1 29824 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 338 254 1 188 91 17 17 289 -1 unnamed_device 23.6 MiB 0.47 738 62.3 MiB 0.13 0.00 2.79776 -96.6493 -2.79776 2.79776 0.99 0.000287331 0.000234237 0.0235968 0.0195518 56 1909 21 6.95648e+06 390843 973134. 3367.25 5.92 0.172143 0.148253 29794 239141 -1 1528 20 1388 1938 160778 35894 0 0 160778 35894 1938 1501 0 0 6726 5655 0 0 11306 7929 0 0 1938 1615 0 0 67111 9941 0 0 71759 9253 0 0 1938 0 0 550 648 581 5277 0 0 3.08387 3.08387 -113.552 -3.08387 0 0 1.19926e+06 4149.71 0.47 0.09 0.29 -1 -1 0.47 0.0231026 0.0206898 86 -1 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 13.44 vpr 62.12 MiB 0.03 7156 -1 -1 1 0.03 -1 -1 30088 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63608 32 32 408 320 1 189 92 17 17 289 -1 unnamed_device 23.4 MiB 0.51 762 62.1 MiB 0.14 0.01 3.16669 -113.111 -3.16669 3.16669 1.07 0.00037177 0.000300988 0.0214804 0.017789 48 2664 47 6.95648e+06 405319 865456. 2994.66 8.97 0.271878 0.239992 28354 207349 -1 1869 28 2266 3593 384919 82309 0 0 384919 82309 3593 2873 0 0 11181 9737 0 0 23073 13533 0 0 3593 3047 0 0 178291 25382 0 0 165188 27737 0 0 3593 0 0 1327 1599 1484 11779 0 0 4.26666 4.26666 -150.661 -4.26666 0 0 1.05005e+06 3633.38 0.43 0.21 0.25 -1 -1 0.43 0.0289429 0.0259658 87 54 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 8.10 vpr 61.61 MiB 0.02 6796 -1 -1 1 0.02 -1 -1 29824 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63084 32 32 295 247 1 145 74 17 17 289 -1 unnamed_device 23.0 MiB 1.03 900 61.6 MiB 0.12 0.00 2.3791 -92.8571 -2.3791 2.3791 1.08 0.000228769 0.000183852 0.0192602 0.0159939 38 2258 20 6.95648e+06 144757 678818. 2348.85 3.50 0.115583 0.100664 26626 170182 -1 1910 20 1251 1979 191418 36205 0 0 191418 36205 1979 1702 0 0 5909 5241 0 0 10469 6572 0 0 1979 1781 0 0 86758 9988 0 0 84324 10921 0 0 1979 0 0 728 954 888 6145 0 0 3.15742 3.15742 -117.86 -3.15742 0 0 902133. 3121.57 0.36 0.08 0.20 -1 -1 0.36 0.0177392 0.0158045 57 31 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 20.30 vpr 61.67 MiB 0.05 6928 -1 -1 1 0.02 -1 -1 29800 -1 -1 11 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63152 30 32 299 247 1 148 73 17 17 289 -1 unnamed_device 23.1 MiB 10.54 533 61.7 MiB 0.10 0.00 2.6193 -88.0976 -2.6193 2.6193 0.95 0.000303628 0.000244706 0.0209277 0.0172065 52 1387 30 6.95648e+06 159232 926341. 3205.33 6.24 0.174714 0.150616 29218 227130 -1 1051 21 1163 1681 129938 36225 0 0 129938 36225 1681 1401 0 0 5418 4753 0 0 10093 6660 0 0 1681 1490 0 0 58582 10210 0 0 52483 11711 0 0 1681 0 0 518 559 500 4636 0 0 2.87722 2.87722 -106.375 -2.87722 0 0 1.14541e+06 3963.36 0.39 0.06 0.25 -1 -1 0.39 0.0156424 0.0139192 60 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 17.30 vpr 61.53 MiB 0.02 6712 -1 -1 1 0.01 -1 -1 29936 -1 -1 13 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 28 32 283 237 1 144 73 17 17 289 -1 unnamed_device 22.9 MiB 0.79 535 61.5 MiB 0.12 0.00 2.5894 -83.5226 -2.5894 2.5894 1.13 0.000297028 0.000239922 0.0219669 0.018066 38 1999 23 6.95648e+06 188184 678818. 2348.85 12.84 0.212592 0.185373 26626 170182 -1 1612 21 1273 1955 186260 38899 0 0 186260 38899 1955 1675 0 0 6051 5262 0 0 10724 6969 0 0 1955 1709 0 0 89122 10407 0 0 76453 12877 0 0 1955 0 0 682 645 663 5335 0 0 3.07097 3.07097 -109.438 -3.07097 0 0 902133. 3121.57 0.32 0.07 0.20 -1 -1 0.32 0.0150015 0.0133879 61 27 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 10.16 vpr 61.49 MiB 0.02 6800 -1 -1 1 0.01 -1 -1 29760 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62964 32 32 284 226 1 160 74 17 17 289 -1 unnamed_device 22.8 MiB 0.31 755 61.5 MiB 0.12 0.00 2.43165 -96.2804 -2.43165 2.43165 1.15 0.000268124 0.000219016 0.0223667 0.0182767 42 2360 42 6.95648e+06 144757 744469. 2576.02 6.03 0.174969 0.152328 27202 183097 -1 1795 23 1588 2296 242638 48472 0 0 242638 48472 2296 1881 0 0 7646 6731 0 0 14926 9246 0 0 2296 2008 0 0 114522 13190 0 0 100952 15416 0 0 2296 0 0 708 790 840 6486 0 0 2.98662 2.98662 -122.219 -2.98662 0 0 949917. 3286.91 0.38 0.11 0.23 -1 -1 0.38 0.021803 0.0195881 64 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 12.08 vpr 61.59 MiB 0.02 6760 -1 -1 1 0.02 -1 -1 30024 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63064 31 32 305 251 1 156 84 17 17 289 -1 unnamed_device 23.1 MiB 0.31 626 61.6 MiB 0.17 0.00 2.5943 -92.9727 -2.5943 2.5943 1.04 0.000275069 0.000223094 0.0243648 0.0200943 50 1752 48 6.95648e+06 303989 902133. 3121.57 8.00 0.237435 0.20881 28642 213929 -1 1470 27 1482 2179 256178 94062 0 0 256178 94062 2179 1644 0 0 6885 6126 0 0 13412 8170 0 0 2179 1792 0 0 117356 38134 0 0 114167 38196 0 0 2179 0 0 697 1081 919 7200 0 0 2.91937 2.91937 -115.049 -2.91937 0 0 1.08113e+06 3740.92 0.39 0.16 0.26 -1 -1 0.39 0.0288958 0.0259796 68 26 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.16 vpr 61.73 MiB 0.02 6892 -1 -1 1 0.01 -1 -1 29836 -1 -1 18 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63212 29 32 316 268 1 148 79 17 17 289 -1 unnamed_device 23.3 MiB 1.08 528 61.7 MiB 0.07 0.00 2.12706 -72.0211 -2.12706 2.12706 1.00 0.000157988 0.000124417 0.011082 0.00901029 46 1316 24 6.95648e+06 260562 828058. 2865.25 4.59 0.136057 0.117302 28066 200906 -1 1066 19 1052 1420 80684 21309 0 0 80684 21309 1420 1154 0 0 4643 4127 0 0 7687 5339 0 0 1420 1232 0 0 34083 4431 0 0 31431 5026 0 0 1420 0 0 368 427 494 3809 0 0 2.49933 2.49933 -87.06 -2.49933 0 0 1.01997e+06 3529.29 0.39 0.14 0.20 -1 -1 0.39 0.0192469 0.0172635 64 55 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 12.59 vpr 62.58 MiB 0.03 7172 -1 -1 1 0.02 -1 -1 29968 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 424 311 1 219 92 17 17 289 -1 unnamed_device 23.8 MiB 1.07 1246 62.6 MiB 0.29 0.00 3.20405 -122.137 -3.20405 3.20405 1.16 0.00034511 0.000278406 0.041607 0.0347014 48 2985 31 6.95648e+06 405319 865456. 2994.66 7.30 0.27952 0.245108 28354 207349 -1 2605 24 2296 3780 351366 67574 0 0 351366 67574 3780 2592 0 0 11771 10424 0 0 24425 14474 0 0 3780 2835 0 0 158480 17293 0 0 149130 19956 0 0 3780 0 0 1484 1970 2518 16802 0 0 4.30112 4.30112 -159.374 -4.30112 0 0 1.05005e+06 3633.38 0.37 0.25 0.21 -1 -1 0.37 0.0357241 0.032155 100 26 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 8.25 vpr 62.18 MiB 0.03 7240 -1 -1 1 0.03 -1 -1 29916 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 404 318 1 190 92 17 17 289 -1 unnamed_device 23.4 MiB 1.32 760 62.2 MiB 0.25 0.00 2.6866 -98.3575 -2.6866 2.6866 1.14 0.000380274 0.000306949 0.0328037 0.0269018 40 2188 45 6.95648e+06 405319 706193. 2443.58 3.06 0.167949 0.14513 26914 176310 -1 1951 25 1978 2816 254104 55225 0 0 254104 55225 2816 2155 0 0 9212 7891 0 0 17565 10977 0 0 2816 2374 0 0 112461 15186 0 0 109234 16642 0 0 2816 0 0 838 1043 1097 8126 0 0 3.47687 3.47687 -131.899 -3.47687 0 0 926341. 3205.33 0.32 0.12 0.21 -1 -1 0.32 0.0290295 0.0258484 88 62 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 11.28 vpr 61.96 MiB 0.02 6836 -1 -1 1 0.02 -1 -1 30044 -1 -1 15 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63452 31 32 355 304 1 150 78 17 17 289 -1 unnamed_device 23.1 MiB 1.43 535 62.0 MiB 0.17 0.00 2.76796 -90.7212 -2.76796 2.76796 0.87 0.000295209 0.000234388 0.0293269 0.0237358 46 1916 48 6.95648e+06 217135 828058. 2865.25 6.37 0.161839 0.137456 28066 200906 -1 1455 20 1209 1718 127261 31221 0 0 127261 31221 1718 1399 0 0 5245 4656 0 0 8641 5784 0 0 1718 1450 0 0 56807 7681 0 0 53132 10251 0 0 1718 0 0 509 580 579 4930 0 0 2.90077 2.90077 -109.959 -2.90077 0 0 1.01997e+06 3529.29 0.34 0.07 0.19 -1 -1 0.34 0.0181223 0.01608 62 77 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 13.52 vpr 62.21 MiB 0.03 7024 -1 -1 1 0.02 -1 -1 29940 -1 -1 14 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 393 311 1 186 77 17 17 289 -1 unnamed_device 23.4 MiB 1.01 870 62.2 MiB 0.15 0.00 2.76476 -96.4815 -2.76476 2.76476 1.07 0.000351537 0.000286145 0.0290741 0.0238791 36 3224 45 6.95648e+06 202660 648988. 2245.63 8.75 0.192458 0.16878 26050 158493 -1 2363 22 1879 2810 296821 59363 0 0 296821 59363 2810 2478 0 0 8873 7696 0 0 15234 10003 0 0 2810 2526 0 0 131933 19130 0 0 135161 17530 0 0 2810 0 0 931 1142 1167 8178 0 0 3.43777 3.43777 -133.278 -3.43777 0 0 828058. 2865.25 0.33 0.15 0.16 -1 -1 0.33 0.026295 0.0235556 79 59 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 14.13 vpr 62.35 MiB 0.02 7204 -1 -1 1 0.02 -1 -1 30240 -1 -1 14 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 457 373 1 185 77 17 17 289 -1 unnamed_device 23.6 MiB 2.71 799 62.4 MiB 0.13 0.00 3.85289 -123.577 -3.85289 3.85289 1.03 0.000424785 0.000344569 0.0246049 0.0202409 40 3042 26 6.95648e+06 202660 706193. 2443.58 7.57 0.170681 0.148928 26914 176310 -1 2423 19 1658 2547 258785 56125 0 0 258785 56125 2547 2299 0 0 8379 7410 0 0 14709 9703 0 0 2547 2354 0 0 109251 18039 0 0 121352 16320 0 0 2547 0 0 889 1213 1059 8064 0 0 4.82781 4.82781 -162.861 -4.82781 0 0 926341. 3205.33 0.36 0.24 0.15 -1 -1 0.36 0.0269886 0.0242744 78 111 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.86 vpr 62.05 MiB 0.03 7100 -1 -1 1 0.01 -1 -1 29940 -1 -1 13 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63544 31 32 415 335 1 180 76 17 17 289 -1 unnamed_device 23.4 MiB 2.40 722 62.1 MiB 0.15 0.00 3.62239 -110.244 -3.62239 3.62239 1.05 0.000388433 0.000312816 0.032797 0.0269899 40 2545 29 6.95648e+06 188184 706193. 2443.58 3.90 0.173035 0.150467 26914 176310 -1 2101 21 1675 2620 240332 53190 0 0 240332 53190 2620 2216 0 0 8818 7766 0 0 15435 10246 0 0 2620 2265 0 0 101417 15905 0 0 109422 14792 0 0 2620 0 0 945 936 924 7447 0 0 4.41081 4.41081 -151.049 -4.41081 0 0 926341. 3205.33 0.31 0.06 0.13 -1 -1 0.31 0.0143239 0.0127105 75 86 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 7.90 vpr 62.52 MiB 0.02 7040 -1 -1 1 0.01 -1 -1 30040 -1 -1 25 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 393 311 1 185 88 17 17 289 -1 unnamed_device 23.7 MiB 0.98 1007 62.5 MiB 0.14 0.00 2.91206 -104.925 -2.91206 2.91206 0.92 0.000344057 0.000269303 0.0214506 0.0172325 40 2480 22 6.95648e+06 361892 706193. 2443.58 3.44 0.138297 0.120573 26914 176310 -1 2380 24 1854 2942 375789 103459 0 0 375789 103459 2942 2358 0 0 9600 8428 0 0 20195 12328 0 0 2942 2584 0 0 175076 38934 0 0 165034 38827 0 0 2942 0 0 1088 1497 1475 10046 0 0 3.87667 3.87667 -134.107 -3.87667 0 0 926341. 3205.33 0.32 0.10 0.22 -1 -1 0.32 0.0163157 0.0144416 85 58 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 12.47 vpr 62.30 MiB 0.03 7236 -1 -1 1 0.02 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63796 32 32 408 320 1 190 91 17 17 289 -1 unnamed_device 23.6 MiB 0.59 784 62.3 MiB 0.15 0.00 3.16669 -114.725 -3.16669 3.16669 1.12 0.000395978 0.000319043 0.0256629 0.0211407 50 2321 31 6.95648e+06 390843 902133. 3121.57 7.97 0.243848 0.214778 28642 213929 -1 1897 24 2226 3633 296853 63251 0 0 296853 63251 3633 2558 0 0 11194 9848 0 0 22487 13198 0 0 3633 2832 0 0 132071 15834 0 0 123835 18981 0 0 3633 0 0 1407 2271 2225 15826 0 0 3.98496 3.98496 -148.874 -3.98496 0 0 1.08113e+06 3740.92 0.33 0.12 0.23 -1 -1 0.33 0.0294646 0.0265124 87 42 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 11.90 vpr 62.48 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30128 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 497 381 1 222 95 17 17 289 -1 unnamed_device 24.1 MiB 1.42 915 62.5 MiB 0.17 0.00 3.20405 -114.965 -3.20405 3.20405 1.11 0.000255583 0.000197915 0.0298351 0.0243068 38 3849 48 6.95648e+06 448746 678818. 2348.85 6.49 0.201218 0.175717 26626 170182 -1 2516 24 2353 3475 298503 64662 0 0 298503 64662 3475 2818 0 0 10536 9211 0 0 17954 11625 0 0 3475 2947 0 0 127847 19479 0 0 135216 18582 0 0 3475 0 0 1122 1643 1575 11861 0 0 4.46232 4.46232 -160.977 -4.46232 0 0 902133. 3121.57 0.35 0.11 0.20 -1 -1 0.35 0.0270106 0.0240193 104 91 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.67 vpr 61.61 MiB 0.03 6768 -1 -1 1 0.02 -1 -1 29996 -1 -1 11 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63092 31 32 307 252 1 152 74 17 17 289 -1 unnamed_device 23.2 MiB 0.74 588 61.6 MiB 0.11 0.00 2.84796 -97.8907 -2.84796 2.84796 1.08 0.000301449 0.000240294 0.0216347 0.0176426 40 1693 29 6.95648e+06 159232 706193. 2443.58 2.42 0.121196 0.104183 26914 176310 -1 1515 23 1354 1828 146881 34060 0 0 146881 34060 1828 1503 0 0 6344 5731 0 0 10835 7541 0 0 1828 1577 0 0 64192 8397 0 0 61854 9311 0 0 1828 0 0 474 336 455 4255 0 0 3.30627 3.30627 -124.94 -3.30627 0 0 926341. 3205.33 0.33 0.07 0.21 -1 -1 0.33 0.0183941 0.01637 62 24 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 11.48 vpr 62.35 MiB 0.02 7324 -1 -1 1 0.02 -1 -1 29964 -1 -1 27 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 397 313 1 188 90 17 17 289 -1 unnamed_device 23.5 MiB 0.94 774 62.4 MiB 0.16 0.00 3.4998 -115.848 -3.4998 3.4998 1.16 0.000372251 0.000303802 0.0320192 0.0262962 48 2401 34 6.95648e+06 390843 865456. 2994.66 6.49 0.211882 0.183845 28354 207349 -1 1892 28 2016 3061 285497 68948 0 0 285497 68948 3061 2315 0 0 9543 8309 0 0 19690 11793 0 0 3061 2438 0 0 128428 21337 0 0 121714 22756 0 0 3061 0 0 1045 1564 1442 11488 0 0 3.99732 3.99732 -146.471 -3.99732 0 0 1.05005e+06 3633.38 0.42 0.08 0.25 -1 -1 0.42 0.0174044 0.0153602 86 59 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 32.93 vpr 61.97 MiB 0.02 6988 -1 -1 1 0.02 -1 -1 30168 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 398 314 1 188 90 17 17 289 -1 unnamed_device 23.4 MiB 1.21 906 62.0 MiB 0.18 0.00 2.79476 -99.5294 -2.79476 2.79476 1.04 0.000379337 0.000308038 0.0262919 0.0215512 40 3248 39 6.95648e+06 376368 706193. 2443.58 28.04 0.308223 0.269634 26914 176310 -1 2581 29 2066 3348 388210 92476 0 0 388210 92476 3348 2691 0 0 10516 9366 0 0 21129 13027 0 0 3348 2948 0 0 171739 32307 0 0 178130 32137 0 0 3348 0 0 1282 1872 1606 11578 0 0 3.82162 3.82162 -138.011 -3.82162 0 0 926341. 3205.33 0.35 0.17 0.19 -1 -1 0.35 0.0379337 0.0338926 85 54 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 7.73 vpr 61.97 MiB 0.03 6868 -1 -1 1 0.02 -1 -1 29792 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63456 32 32 346 258 1 187 77 17 17 289 -1 unnamed_device 23.6 MiB 0.94 778 62.0 MiB 0.14 0.00 3.04139 -112.781 -3.04139 3.04139 1.04 0.000369855 0.000296422 0.0240281 0.0198941 46 2766 39 6.95648e+06 188184 828058. 2865.25 3.01 0.145431 0.128629 28066 200906 -1 2175 22 1972 3317 291998 60146 0 0 291998 60146 3317 2543 0 0 9933 9032 0 0 18837 11347 0 0 3317 2831 0 0 127307 17336 0 0 129287 17057 0 0 3317 0 0 1345 1806 1799 12181 0 0 4.23686 4.23686 -153.152 -4.23686 0 0 1.01997e+06 3529.29 0.41 0.15 0.25 -1 -1 0.41 0.0286831 0.0260187 78 -1 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 26.78 vpr 62.27 MiB 0.02 7052 -1 -1 1 0.02 -1 -1 30068 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 425 344 1 182 87 17 17 289 -1 unnamed_device 23.4 MiB 2.20 803 62.3 MiB 0.17 0.00 2.5503 -93.1686 -2.5503 2.5503 1.06 0.000380471 0.000309097 0.0312255 0.0256399 46 2358 33 6.95648e+06 332941 828058. 2865.25 20.86 0.319911 0.280342 28066 200906 -1 1844 22 1500 2192 184439 39731 0 0 184439 39731 2192 1709 0 0 6769 5948 0 0 11434 7432 0 0 2192 1773 0 0 74280 12399 0 0 87572 10470 0 0 2192 0 0 692 920 815 7275 0 0 3.24547 3.24547 -123.39 -3.24547 0 0 1.01997e+06 3529.29 0.37 0.09 0.20 -1 -1 0.37 0.0251702 0.0225105 81 81 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 11.86 vpr 61.98 MiB 0.02 7004 -1 -1 1 0.02 -1 -1 29892 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63464 32 32 396 312 1 186 92 17 17 289 -1 unnamed_device 23.3 MiB 1.04 783 62.0 MiB 0.15 0.00 2.6023 -93.9626 -2.6023 2.6023 1.04 0.000374701 0.000303714 0.0284211 0.0233693 56 1955 35 6.95648e+06 405319 973134. 3367.25 6.98 0.240237 0.209441 29794 239141 -1 1697 28 1812 2740 402910 189704 0 0 402910 189704 2740 2142 0 0 8730 7291 0 0 19140 11389 0 0 2740 2309 0 0 190054 85078 0 0 179506 81495 0 0 2740 0 0 928 1550 1457 10317 0 0 3.17797 3.17797 -121.305 -3.17797 0 0 1.19926e+06 4149.71 0.47 0.26 0.29 -1 -1 0.47 0.0334734 0.0300278 85 58 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 21.91 vpr 62.44 MiB 0.03 6996 -1 -1 1 0.02 -1 -1 30020 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 406 319 1 192 93 17 17 289 -1 unnamed_device 23.7 MiB 0.62 868 62.4 MiB 0.19 0.01 2.6646 -98.177 -2.6646 2.6646 1.11 0.000713348 0.000573075 0.0306762 0.0252084 40 2616 41 6.95648e+06 419795 706193. 2443.58 17.18 0.272088 0.23721 26914 176310 -1 2159 24 1763 2682 301640 62906 0 0 301640 62906 2682 2000 0 0 9258 8034 0 0 17416 11276 0 0 2682 2142 0 0 138191 19444 0 0 131411 20010 0 0 2682 0 0 919 1097 1071 8145 0 0 3.41277 3.41277 -129.525 -3.41277 0 0 926341. 3205.33 0.40 0.17 0.21 -1 -1 0.40 0.0246902 0.0220118 89 61 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 9.74 vpr 62.16 MiB 0.02 6940 -1 -1 1 0.02 -1 -1 30100 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63656 32 32 377 289 1 186 92 17 17 289 -1 unnamed_device 23.4 MiB 0.74 1088 62.2 MiB 0.19 0.01 3.16669 -122.279 -3.16669 3.16669 0.96 0.000374476 0.000304262 0.0289864 0.0237227 40 2686 29 6.95648e+06 405319 706193. 2443.58 5.35 0.153171 0.133019 26914 176310 -1 2526 23 2051 3232 388732 79285 0 0 388732 79285 3232 2369 0 0 10440 9322 0 0 21527 12689 0 0 3232 2591 0 0 180785 26583 0 0 169516 25731 0 0 3232 0 0 1181 1147 1499 10495 0 0 4.36086 4.36086 -166.638 -4.36086 0 0 926341. 3205.33 0.26 0.19 0.18 -1 -1 0.26 0.0276912 0.0248549 85 21 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 11.24 vpr 62.39 MiB 0.03 7056 -1 -1 1 0.02 -1 -1 30016 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63884 32 32 408 320 1 189 94 17 17 289 -1 unnamed_device 23.5 MiB 0.98 805 62.4 MiB 0.23 0.01 3.14469 -112.641 -3.14469 3.14469 1.07 0.000385674 0.000315331 0.0335289 0.0276813 40 2844 46 6.95648e+06 434271 706193. 2443.58 6.36 0.189207 0.165076 26914 176310 -1 2105 25 2144 3165 319741 70835 0 0 319741 70835 3165 2502 0 0 10338 9211 0 0 19629 12383 0 0 3165 2692 0 0 141417 22510 0 0 142027 21537 0 0 3165 0 0 1021 1603 1316 10691 0 0 4.21356 4.21356 -156.695 -4.21356 0 0 926341. 3205.33 0.37 0.14 0.20 -1 -1 0.37 0.028017 0.0248039 88 50 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 15.61 vpr 62.62 MiB 0.02 7280 -1 -1 1 0.02 -1 -1 30124 -1 -1 25 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64128 31 32 451 369 1 185 88 17 17 289 -1 unnamed_device 24.0 MiB 1.70 853 62.6 MiB 0.22 0.00 3.56395 -114.65 -3.56395 3.56395 1.05 0.000419161 0.000347142 0.0312351 0.0258755 38 3210 46 6.95648e+06 361892 678818. 2348.85 10.17 0.201008 0.175652 26626 170182 -1 2200 21 1706 2754 235198 47940 0 0 235198 47940 2754 2097 0 0 8305 7333 0 0 13676 9013 0 0 2754 2278 0 0 109502 12719 0 0 98207 14500 0 0 2754 0 0 1048 1022 1209 8951 0 0 4.29486 4.29486 -148.648 -4.29486 0 0 902133. 3121.57 0.32 0.18 0.23 -1 -1 0.32 0.0333968 0.0300112 84 110 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 11.42 vpr 62.64 MiB 0.03 7024 -1 -1 1 0.03 -1 -1 30092 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 433 347 1 192 77 17 17 289 -1 unnamed_device 24.0 MiB 1.00 771 62.6 MiB 0.10 0.00 3.08604 -107.455 -3.08604 3.08604 0.82 0.000392009 0.000316835 0.0186928 0.0153589 44 2914 27 6.95648e+06 188184 787024. 2723.27 6.94 0.276887 0.243754 27778 195446 -1 2184 20 1747 2936 226399 50038 0 0 226399 50038 2936 2244 0 0 8811 7892 0 0 15837 10051 0 0 2936 2298 0 0 92809 14408 0 0 103070 13145 0 0 2936 0 0 1189 1131 1050 8906 0 0 4.12266 4.12266 -143.87 -4.12266 0 0 997811. 3452.63 0.40 0.14 0.24 -1 -1 0.40 0.0258782 0.0232206 80 86 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 17.64 vpr 61.56 MiB 0.02 6724 -1 -1 1 0.01 -1 -1 29976 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63040 32 32 313 256 1 160 87 17 17 289 -1 unnamed_device 23.1 MiB 0.16 635 61.6 MiB 0.14 0.00 2.6724 -95.8657 -2.6724 2.6724 1.12 0.000306955 0.000248431 0.0213199 0.0174354 48 1832 25 6.95648e+06 332941 865456. 2994.66 13.63 0.216811 0.189561 28354 207349 -1 1665 22 1496 2368 225372 48548 0 0 225372 48548 2368 1829 0 0 7888 6995 0 0 16259 9945 0 0 2368 1999 0 0 101766 12680 0 0 94723 15100 0 0 2368 0 0 872 1051 1065 8356 0 0 2.92732 2.92732 -117.221 -2.92732 0 0 1.05005e+06 3633.38 0.46 0.14 0.26 -1 -1 0.46 0.0210907 0.0189586 71 20 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 14.98 vpr 61.87 MiB 0.06 7076 -1 -1 1 0.02 -1 -1 29804 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63356 32 32 371 315 1 158 74 17 17 289 -1 unnamed_device 23.1 MiB 1.28 561 61.9 MiB 0.09 0.00 2.5393 -91.6019 -2.5393 2.5393 0.86 0.000303744 0.000242515 0.0202731 0.0164638 46 2169 40 6.95648e+06 144757 828058. 2865.25 10.09 0.221003 0.192423 28066 200906 -1 1503 21 1378 2027 173594 42718 0 0 173594 42718 2027 1749 0 0 6079 5449 0 0 10447 6602 0 0 2027 1775 0 0 80668 11358 0 0 72346 15785 0 0 2027 0 0 649 678 527 5285 0 0 3.49087 3.49087 -120.296 -3.49087 0 0 1.01997e+06 3529.29 0.40 0.11 0.25 -1 -1 0.40 0.0317496 0.0290704 63 91 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.27 vpr 62.36 MiB 0.03 7172 -1 -1 1 0.03 -1 -1 30312 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 470 352 1 223 94 17 17 289 -1 unnamed_device 24.1 MiB 0.69 1286 62.4 MiB 0.18 0.01 3.77644 -141.14 -3.77644 3.77644 1.00 0.000475097 0.000382963 0.0271983 0.0222156 44 3553 47 6.95648e+06 434271 787024. 2723.27 4.79 0.20368 0.178957 27778 195446 -1 2701 24 2588 4070 385364 72718 0 0 385364 72718 4070 3053 0 0 12016 10761 0 0 23053 13807 0 0 4070 3244 0 0 175627 20532 0 0 166528 21321 0 0 4070 0 0 1482 1407 1641 12804 0 0 4.72001 4.72001 -178.017 -4.72001 0 0 997811. 3452.63 0.37 0.17 0.19 -1 -1 0.37 0.0473172 0.0431724 103 53 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 11.76 vpr 62.02 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 29832 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 369 285 1 186 89 17 17 289 -1 unnamed_device 23.3 MiB 1.24 758 62.0 MiB 0.15 0.00 2.7698 -99.3988 -2.7698 2.7698 1.02 0.000355813 0.000284835 0.0298406 0.0243126 48 2097 40 6.95648e+06 361892 865456. 2994.66 6.77 0.237912 0.206968 28354 207349 -1 1696 21 1579 2065 212478 57300 0 0 212478 57300 2065 1695 0 0 7195 6158 0 0 12686 8690 0 0 2065 1743 0 0 91564 19191 0 0 96903 19823 0 0 2065 0 0 486 584 502 5099 0 0 3.14207 3.14207 -122.8 -3.14207 0 0 1.05005e+06 3633.38 0.42 0.10 0.25 -1 -1 0.42 0.0261544 0.023557 84 31 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 10.18 vpr 61.96 MiB 0.02 6836 -1 -1 1 0.02 -1 -1 29928 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63444 30 32 299 247 1 152 81 17 17 289 -1 unnamed_device 23.0 MiB 0.42 610 62.0 MiB 0.11 0.00 2.5723 -88.6182 -2.5723 2.5723 1.11 0.000303867 0.000246199 0.0214864 0.017696 48 1735 38 6.95648e+06 275038 865456. 2994.66 6.22 0.20896 0.183048 28354 207349 -1 1406 21 1399 1960 158264 37152 0 0 158264 37152 1960 1567 0 0 6438 5714 0 0 11989 7873 0 0 1960 1703 0 0 68869 9488 0 0 67048 10807 0 0 1960 0 0 561 770 779 5778 0 0 2.97752 2.97752 -114.334 -2.97752 0 0 1.05005e+06 3633.38 0.32 0.07 0.21 -1 -1 0.32 0.0175873 0.0156677 65 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 12.83 vpr 62.55 MiB 0.03 7220 -1 -1 1 0.02 -1 -1 30352 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 532 414 1 225 95 17 17 289 -1 unnamed_device 24.1 MiB 2.78 1182 62.6 MiB 0.27 0.01 3.77644 -138.218 -3.77644 3.77644 1.13 0.000397085 0.00032433 0.042385 0.0352753 46 3126 25 6.95648e+06 448746 828058. 2865.25 5.93 0.221744 0.195619 28066 200906 -1 2553 24 2654 4149 365389 70677 0 0 365389 70677 4149 2975 0 0 12131 10914 0 0 23253 13798 0 0 4149 3214 0 0 164440 19120 0 0 157267 20656 0 0 4149 0 0 1495 2513 2135 16494 0 0 5.00051 5.00051 -177.89 -5.00051 0 0 1.01997e+06 3529.29 0.43 0.18 0.21 -1 -1 0.43 0.0457299 0.0411202 103 109 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.70 vpr 62.31 MiB 0.03 6912 -1 -1 1 0.02 -1 -1 29928 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 377 289 1 187 92 17 17 289 -1 unnamed_device 23.5 MiB 1.36 857 62.3 MiB 0.12 0.00 3.12269 -114.65 -3.12269 3.12269 0.96 0.000368681 0.00029617 0.019011 0.0156704 38 2734 35 6.95648e+06 405319 678818. 2348.85 3.87 0.130115 0.11401 26626 170182 -1 2146 26 2253 3132 369438 96842 0 0 369438 96842 3132 2530 0 0 9555 8378 0 0 17735 10837 0 0 3132 2633 0 0 170049 35983 0 0 165835 36481 0 0 3132 0 0 879 987 1147 9203 0 0 3.98816 3.98816 -153.526 -3.98816 0 0 902133. 3121.57 0.37 0.19 0.20 -1 -1 0.37 0.0295211 0.0264197 86 31 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 10.18 vpr 61.60 MiB 0.02 6732 -1 -1 1 0.02 -1 -1 29820 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63080 32 32 284 226 1 158 88 17 17 289 -1 unnamed_device 23.2 MiB 0.34 658 61.6 MiB 0.12 0.00 2.55695 -95.2709 -2.55695 2.55695 0.96 0.000250895 0.00020466 0.0194588 0.0160873 46 1953 40 6.95648e+06 347416 828058. 2865.25 6.34 0.208107 0.183682 28066 200906 -1 1656 22 1551 2387 184760 40039 0 0 184760 40039 2387 1838 0 0 7053 6304 0 0 13093 7894 0 0 2387 1956 0 0 82592 10458 0 0 77248 11589 0 0 2387 0 0 836 1136 1118 8441 0 0 2.92122 2.92122 -117.568 -2.92122 0 0 1.01997e+06 3529.29 0.42 0.09 0.22 -1 -1 0.42 0.0200184 0.0179107 70 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 34.28 vpr 62.80 MiB 0.02 7164 -1 -1 1 0.01 -1 -1 30120 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 439 321 1 225 95 17 17 289 -1 unnamed_device 23.9 MiB 0.71 1082 62.8 MiB 0.26 0.01 3.77644 -138.075 -3.77644 3.77644 0.98 0.000441012 0.000358089 0.0398906 0.032853 46 3313 29 6.95648e+06 448746 828058. 2865.25 29.66 0.396776 0.350749 28066 200906 -1 2641 21 2576 4069 348769 67826 0 0 348769 67826 4069 2869 0 0 12019 10552 0 0 22098 13404 0 0 4069 3042 0 0 162751 17265 0 0 143763 20694 0 0 4069 0 0 1493 2360 2566 18164 0 0 4.76691 4.76691 -177.384 -4.76691 0 0 1.01997e+06 3529.29 0.42 0.15 0.19 -1 -1 0.42 0.0354155 0.0323359 105 26 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 10.42 vpr 61.47 MiB 0.02 6764 -1 -1 1 0.02 -1 -1 29800 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 32 32 284 226 1 156 74 17 17 289 -1 unnamed_device 22.9 MiB 0.46 879 61.5 MiB 0.11 0.00 2.43165 -100.937 -2.43165 2.43165 1.08 0.000295259 0.00023877 0.020569 0.0170114 44 2151 35 6.95648e+06 144757 787024. 2723.27 6.20 0.194676 0.170578 27778 195446 -1 1747 21 1491 2053 189298 37566 0 0 189298 37566 2053 1754 0 0 6522 5695 0 0 12235 7670 0 0 2053 1765 0 0 87957 9446 0 0 78478 11236 0 0 2053 0 0 562 496 577 5128 0 0 2.89922 2.89922 -123.919 -2.89922 0 0 997811. 3452.63 0.39 0.12 0.23 -1 -1 0.39 0.0205556 0.0185431 62 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 11.03 vpr 61.79 MiB 0.02 6804 -1 -1 1 0.01 -1 -1 29904 -1 -1 21 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63268 30 32 299 247 1 151 83 17 17 289 -1 unnamed_device 23.4 MiB 1.07 667 61.8 MiB 0.09 0.00 2.5985 -90.0506 -2.5985 2.5985 1.11 0.000239531 0.000193517 0.0162567 0.0134562 48 1884 36 6.95648e+06 303989 865456. 2994.66 6.21 0.184475 0.161911 28354 207349 -1 1518 19 1255 1833 157406 33836 0 0 157406 33836 1833 1502 0 0 5983 5205 0 0 10885 7202 0 0 1833 1599 0 0 69133 8607 0 0 67739 9721 0 0 1833 0 0 578 666 606 5589 0 0 2.86947 2.86947 -111.596 -2.86947 0 0 1.05005e+06 3633.38 0.37 0.07 0.21 -1 -1 0.37 0.016422 0.0147471 65 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 23.51 vpr 62.34 MiB 0.03 7032 -1 -1 1 0.02 -1 -1 29884 -1 -1 20 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63832 29 32 397 323 1 174 81 17 17 289 -1 unnamed_device 23.6 MiB 1.71 917 62.3 MiB 0.14 0.00 2.81496 -93.3662 -2.81496 2.81496 1.02 0.000379992 0.000307059 0.0275427 0.0221693 40 2527 25 6.95648e+06 289514 706193. 2443.58 18.02 0.288892 0.252122 26914 176310 -1 2304 24 1824 2953 274826 56583 0 0 274826 56583 2953 2339 0 0 9343 8368 0 0 18220 11188 0 0 2953 2568 0 0 121352 15390 0 0 120005 16730 0 0 2953 0 0 1129 1305 1227 9648 0 0 3.41777 3.41777 -125.146 -3.41777 0 0 926341. 3205.33 0.34 0.12 0.21 -1 -1 0.34 0.0272686 0.0242778 77 81 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 7.48 vpr 62.13 MiB 0.02 6972 -1 -1 1 0.02 -1 -1 30096 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63624 32 32 408 320 1 186 77 17 17 289 -1 unnamed_device 23.3 MiB 1.25 859 62.1 MiB 0.11 0.00 3.15569 -117.133 -3.15569 3.15569 0.97 0.000302506 0.000244741 0.0224964 0.0186926 40 2400 26 6.95648e+06 188184 706193. 2443.58 2.78 0.16536 0.146324 26914 176310 -1 2123 24 2233 3043 322173 65060 0 0 322173 65060 3043 2665 0 0 10168 8995 0 0 18203 12007 0 0 3043 2732 0 0 144963 19398 0 0 142753 19263 0 0 3043 0 0 810 1064 1132 8145 0 0 4.24186 4.24186 -159.49 -4.24186 0 0 926341. 3205.33 0.29 0.13 0.16 -1 -1 0.29 0.0264231 0.0235223 77 53 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 11.11 vpr 62.05 MiB 0.02 7232 -1 -1 1 0.02 -1 -1 30088 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 408 320 1 190 89 17 17 289 -1 unnamed_device 23.3 MiB 1.87 782 62.1 MiB 0.18 0.00 3.09569 -112.546 -3.09569 3.09569 1.11 0.000446135 0.000356333 0.0314367 0.0259238 48 2412 26 6.95648e+06 361892 865456. 2994.66 5.41 0.235952 0.206277 28354 207349 -1 2151 25 2081 3230 410791 88619 0 0 410791 88619 3230 2613 0 0 10418 9285 0 0 22938 12781 0 0 3230 2774 0 0 180729 31249 0 0 190246 29917 0 0 3230 0 0 1149 1302 1421 10500 0 0 4.18236 4.18236 -150.903 -4.18236 0 0 1.05005e+06 3633.38 0.36 0.11 0.28 -1 -1 0.36 0.0200694 0.0179681 85 55 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 11.98 vpr 62.27 MiB 0.02 6792 -1 -1 1 0.01 -1 -1 29964 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 346 288 1 155 88 17 17 289 -1 unnamed_device 23.5 MiB 1.63 639 62.3 MiB 0.14 0.00 2.55695 -96.0424 -2.55695 2.55695 1.13 0.000311317 0.00024882 0.0234333 0.0191888 44 2248 50 6.95648e+06 347416 787024. 2723.27 6.48 0.21334 0.186773 27778 195446 -1 1548 21 1427 2053 172527 37710 0 0 172527 37710 2053 1618 0 0 6442 5703 0 0 11109 7407 0 0 2053 1736 0 0 75532 10850 0 0 75338 10396 0 0 2053 0 0 626 624 796 6335 0 0 2.96042 2.96042 -121.184 -2.96042 0 0 997811. 3452.63 0.41 0.09 0.23 -1 -1 0.41 0.0214106 0.0191268 69 55 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 10.26 vpr 61.94 MiB 0.02 6896 -1 -1 1 0.02 -1 -1 30144 -1 -1 10 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63428 31 32 355 304 1 147 73 17 17 289 -1 unnamed_device 23.4 MiB 1.71 752 61.9 MiB 0.10 0.00 2.80096 -95.0111 -2.80096 2.80096 0.98 0.000260382 0.000211239 0.021744 0.0178905 40 1949 24 6.95648e+06 144757 706193. 2443.58 5.22 0.187187 0.160248 26914 176310 -1 1732 33 1414 2206 351550 145060 0 0 351550 145060 2206 1962 0 0 6992 6296 0 0 16288 9498 0 0 2206 1975 0 0 162506 61849 0 0 161352 63480 0 0 2206 0 0 792 879 940 6519 0 0 3.49407 3.49407 -121.635 -3.49407 0 0 926341. 3205.33 0.30 0.17 0.13 -1 -1 0.30 0.0324189 0.028731 59 82 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 10.60 vpr 62.21 MiB 0.03 6972 -1 -1 1 0.02 -1 -1 30112 -1 -1 22 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63700 30 32 377 300 1 178 84 17 17 289 -1 unnamed_device 23.5 MiB 1.24 674 62.2 MiB 0.16 0.00 2.6866 -91.8392 -2.6866 2.6866 1.11 0.000353502 0.000284586 0.0320675 0.026237 46 2343 38 6.95648e+06 318465 828058. 2865.25 5.44 0.212859 0.184713 28066 200906 -1 1784 22 1545 2188 168158 39940 0 0 168158 39940 2188 1697 0 0 7078 6300 0 0 11856 8112 0 0 2188 1798 0 0 72066 10886 0 0 72782 11147 0 0 2188 0 0 643 632 877 6580 0 0 3.40007 3.40007 -118.369 -3.40007 0 0 1.01997e+06 3529.29 0.41 0.09 0.25 -1 -1 0.41 0.024487 0.0218149 79 52 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 22.49 vpr 61.77 MiB 0.03 7080 -1 -1 1 0.01 -1 -1 29976 -1 -1 16 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63252 28 32 337 265 1 172 76 17 17 289 -1 unnamed_device 23.1 MiB 1.16 709 61.8 MiB 0.11 0.00 3.68925 -108.465 -3.68925 3.68925 1.09 0.000285654 0.000231398 0.0208474 0.0170579 40 2377 22 6.95648e+06 231611 706193. 2443.58 17.62 0.245837 0.215649 26914 176310 -1 1938 22 1799 2665 269200 58742 0 0 269200 58742 2665 2244 0 0 8911 7796 0 0 16580 10664 0 0 2665 2381 0 0 124667 17254 0 0 113712 18403 0 0 2665 0 0 866 1250 1364 9335 0 0 4.36851 4.36851 -139.547 -4.36851 0 0 926341. 3205.33 0.31 0.07 0.20 -1 -1 0.31 0.0142706 0.0126789 74 20 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 14.08 vpr 61.86 MiB 0.02 6936 -1 -1 1 0.01 -1 -1 29948 -1 -1 12 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63344 30 32 328 276 1 151 74 17 17 289 -1 unnamed_device 23.2 MiB 1.16 572 61.9 MiB 0.09 0.00 2.5905 -89.051 -2.5905 2.5905 1.11 0.000318823 0.000256555 0.0202284 0.0166436 58 1195 21 6.95648e+06 173708 997811. 3452.63 8.88 0.226341 0.196994 30370 251734 -1 1064 21 1320 1803 115289 29861 0 0 115289 29861 1803 1484 0 0 5923 5233 0 0 10523 7006 0 0 1803 1628 0 0 50931 6548 0 0 44306 7962 0 0 1803 0 0 483 320 558 4254 0 0 2.80627 2.80627 -107.136 -2.80627 0 0 1.25153e+06 4330.55 0.51 0.08 0.32 -1 -1 0.51 0.0198124 0.0176503 61 58 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 8.73 vpr 61.94 MiB 0.04 6856 -1 -1 1 0.02 -1 -1 29756 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63424 32 32 362 309 1 152 74 17 17 289 -1 unnamed_device 23.1 MiB 1.63 640 61.9 MiB 0.12 0.00 2.5753 -88.2075 -2.5753 2.5753 1.07 0.000319334 0.000254951 0.0256652 0.0211282 46 2086 32 6.95648e+06 144757 828058. 2865.25 3.30 0.156071 0.136254 28066 200906 -1 1685 20 1303 2038 178070 41765 0 0 178070 41765 2038 1637 0 0 6327 5639 0 0 10630 7028 0 0 2038 1650 0 0 76388 12867 0 0 80649 12944 0 0 2038 0 0 735 886 745 6146 0 0 3.25747 3.25747 -119.497 -3.25747 0 0 1.01997e+06 3529.29 0.40 0.09 0.24 -1 -1 0.40 0.0213968 0.019113 60 88 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 15.82 vpr 61.95 MiB 0.03 6968 -1 -1 1 0.01 -1 -1 29864 -1 -1 25 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63432 31 32 337 253 1 188 88 17 17 289 -1 unnamed_device 23.5 MiB 0.22 793 61.9 MiB 0.13 0.00 3.37335 -115.533 -3.37335 3.37335 1.11 0.00034433 0.000279428 0.0230429 0.0190663 54 2560 41 6.95648e+06 361892 949917. 3286.91 11.59 0.318089 0.283233 29506 232905 -1 1942 24 1933 3015 284912 63417 0 0 284912 63417 3015 2462 0 0 9150 8059 0 0 18053 10730 0 0 3015 2569 0 0 119284 20189 0 0 132395 19408 0 0 3015 0 0 1082 1340 922 9199 0 0 4.16042 4.16042 -148.358 -4.16042 0 0 1.17392e+06 4061.99 0.48 0.14 0.29 -1 -1 0.48 0.0258478 0.0231957 86 -1 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 11.83 vpr 62.43 MiB 0.03 7172 -1 -1 1 0.02 -1 -1 30108 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 408 320 1 189 91 17 17 289 -1 unnamed_device 23.6 MiB 1.89 865 62.4 MiB 0.18 0.01 3.14469 -113.115 -3.14469 3.14469 0.91 0.000422293 0.00034059 0.0264811 0.0218222 46 2868 35 6.95648e+06 390843 828058. 2865.25 6.36 0.224998 0.196044 28066 200906 -1 2270 21 1866 3137 274733 58560 0 0 274733 58560 3137 2417 0 0 9390 8499 0 0 17508 10592 0 0 3137 2669 0 0 126628 16891 0 0 114933 17492 0 0 3137 0 0 1271 1433 1296 11037 0 0 4.33886 4.33886 -152.685 -4.33886 0 0 1.01997e+06 3529.29 0.38 0.13 0.24 -1 -1 0.38 0.0216881 0.0193729 86 57 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 13.27 vpr 62.22 MiB 0.03 7156 -1 -1 1 0.02 -1 -1 29836 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63712 32 32 408 320 1 187 90 17 17 289 -1 unnamed_device 23.4 MiB 1.97 782 62.2 MiB 0.12 0.00 3.18689 -113.526 -3.18689 3.18689 0.96 0.000321805 0.000260714 0.0230961 0.0190999 54 2222 24 6.95648e+06 376368 949917. 3286.91 7.84 0.244497 0.213499 29506 232905 -1 1791 20 1756 2765 218312 48338 0 0 218312 48338 2765 2120 0 0 8819 7930 0 0 16478 10425 0 0 2765 2354 0 0 100368 11222 0 0 87117 14287 0 0 2765 0 0 1009 983 1030 8803 0 0 3.68446 3.68446 -138.438 -3.68446 0 0 1.17392e+06 4061.99 0.36 0.12 0.21 -1 -1 0.36 0.0257579 0.0232462 85 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 12.87 vpr 62.51 MiB 0.03 7048 -1 -1 1 0.01 -1 -1 29880 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 400 316 1 188 91 17 17 289 -1 unnamed_device 23.7 MiB 1.30 786 62.5 MiB 0.15 0.00 3.11104 -105.51 -3.11104 3.11104 1.06 0.000361428 0.000295997 0.0270711 0.0224722 66 2065 20 6.95648e+06 390843 1.11570e+06 3860.55 7.65 0.220439 0.190932 31810 283733 -1 1586 21 1433 2299 174810 39993 0 0 174810 39993 2299 1793 0 0 7308 6371 0 0 13909 9045 0 0 2299 1892 0 0 76992 8708 0 0 72003 12184 0 0 2299 0 0 866 1018 612 7259 0 0 3.64956 3.64956 -128.26 -3.64956 0 0 1.39736e+06 4835.16 0.51 0.09 0.30 -1 -1 0.51 0.026934 0.0243907 86 62 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 9.59 vpr 61.54 MiB 0.02 6940 -1 -1 1 0.02 -1 -1 29940 -1 -1 12 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63016 30 32 299 247 1 150 74 17 17 289 -1 unnamed_device 23.1 MiB 1.00 513 61.5 MiB 0.07 0.00 2.6646 -90.6034 -2.6646 2.6646 1.16 0.000153394 0.000121866 0.0134707 0.011023 46 1821 21 6.95648e+06 173708 828058. 2865.25 4.88 0.149116 0.129886 28066 200906 -1 1429 21 1269 1880 153667 38186 0 0 153667 38186 1880 1566 0 0 5753 5110 0 0 10753 6769 0 0 1880 1595 0 0 63337 11587 0 0 70064 11559 0 0 1880 0 0 611 662 466 4955 0 0 3.24027 3.24027 -115.168 -3.24027 0 0 1.01997e+06 3529.29 0.36 0.08 0.25 -1 -1 0.36 0.0190148 0.0169982 62 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 7.36 vpr 62.20 MiB 0.02 7048 -1 -1 1 0.02 -1 -1 29908 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63688 30 32 386 306 1 183 77 17 17 289 -1 unnamed_device 23.4 MiB 1.14 932 62.2 MiB 0.13 0.00 3.23334 -112.986 -3.23334 3.23334 1.04 0.000301323 0.000244971 0.0268096 0.0221867 38 2582 25 6.95648e+06 217135 678818. 2348.85 2.58 0.132334 0.115261 26626 170182 -1 2185 21 1985 2676 250940 50231 0 0 250940 50231 2676 2380 0 0 8263 7133 0 0 13476 9013 0 0 2676 2413 0 0 113892 14883 0 0 109957 14409 0 0 2676 0 0 691 628 702 6269 0 0 3.99616 3.99616 -150.807 -3.99616 0 0 902133. 3121.57 0.37 0.11 0.20 -1 -1 0.37 0.0264684 0.0237646 78 58 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 13.28 vpr 62.30 MiB 0.03 7120 -1 -1 1 0.02 -1 -1 30244 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 470 382 1 190 95 17 17 289 -1 unnamed_device 23.5 MiB 2.05 831 62.3 MiB 0.14 0.00 3.16669 -114.901 -3.16669 3.16669 0.95 0.000344261 0.000272123 0.0231279 0.0190234 40 2814 38 6.95648e+06 448746 706193. 2443.58 7.75 0.185649 0.162987 26914 176310 -1 2291 22 2073 3243 307395 64119 0 0 307395 64119 3243 2581 0 0 10218 8863 0 0 19146 11847 0 0 3243 2718 0 0 138771 17824 0 0 132774 20286 0 0 3243 0 0 1170 2077 1851 13697 0 0 4.61146 4.61146 -161.535 -4.61146 0 0 926341. 3205.33 0.36 0.13 0.21 -1 -1 0.36 0.0286116 0.0254373 88 106 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 10.41 vpr 62.58 MiB 0.03 7180 -1 -1 1 0.02 -1 -1 30148 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64084 31 32 427 343 1 189 85 17 17 289 -1 unnamed_device 23.7 MiB 0.82 874 62.6 MiB 0.17 0.00 3.4954 -117.32 -3.4954 3.4954 1.08 0.000219202 0.00017476 0.0298203 0.0245033 46 2435 21 6.95648e+06 318465 828058. 2865.25 5.82 0.224307 0.194345 28066 200906 -1 1972 21 1843 2886 220698 44252 0 0 220698 44252 2886 2129 0 0 8336 7350 0 0 14933 9191 0 0 2886 2355 0 0 97870 11613 0 0 93787 11614 0 0 2886 0 0 1043 1020 1202 9179 0 0 3.82066 3.82066 -141.908 -3.82066 0 0 1.01997e+06 3529.29 0.43 0.12 0.24 -1 -1 0.43 0.0320134 0.0289389 84 79 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 9.01 vpr 62.46 MiB 0.03 7256 -1 -1 1 0.02 -1 -1 30064 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63956 30 32 407 331 1 173 80 17 17 289 -1 unnamed_device 23.7 MiB 1.88 755 62.5 MiB 0.15 0.00 2.73356 -90.4449 -2.73356 2.73356 1.02 0.000467551 0.000387306 0.0283092 0.0230921 44 2439 49 6.95648e+06 260562 787024. 2723.27 3.45 0.142652 0.123064 27778 195446 -1 1645 21 1475 2212 142377 33378 0 0 142377 33378 2212 1714 0 0 6892 6013 0 0 11479 7989 0 0 2212 2056 0 0 59021 7973 0 0 60561 7633 0 0 2212 0 0 737 833 692 6200 0 0 3.23917 3.23917 -122.215 -3.23917 0 0 997811. 3452.63 0.38 0.08 0.23 -1 -1 0.38 0.023246 0.0206948 75 83 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 13.98 vpr 62.50 MiB 0.02 6988 -1 -1 1 0.02 -1 -1 30056 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 408 320 1 193 77 17 17 289 -1 unnamed_device 23.7 MiB 2.27 826 62.5 MiB 0.15 0.00 3.03659 -111.13 -3.03659 3.03659 1.15 0.000381958 0.000309008 0.0322144 0.026614 62 2299 31 6.95648e+06 188184 1.05005e+06 3633.38 7.67 0.325245 0.287243 30946 263737 -1 1918 22 1789 2820 222805 47713 0 0 222805 47713 2820 2264 0 0 9127 8081 0 0 16716 10791 0 0 2820 2404 0 0 90563 12517 0 0 100759 11656 0 0 2820 0 0 1031 955 752 7838 0 0 3.65146 3.65146 -137.278 -3.65146 0 0 1.30136e+06 4502.97 0.49 0.09 0.31 -1 -1 0.49 0.0241203 0.0216032 81 58 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 7.08 vpr 62.12 MiB 0.02 7028 -1 -1 1 0.01 -1 -1 29964 -1 -1 22 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63616 29 32 391 320 1 171 83 17 17 289 -1 unnamed_device 23.4 MiB 1.18 729 62.1 MiB 0.16 0.00 2.5613 -85.0737 -2.5613 2.5613 1.09 0.000370803 0.00029917 0.031033 0.0254541 44 2211 25 6.95648e+06 318465 787024. 2723.27 2.39 0.130674 0.112572 27778 195446 -1 1764 25 1786 2648 240687 51860 0 0 240687 51860 2648 2143 0 0 8024 7023 0 0 14017 9250 0 0 2648 2283 0 0 99457 16583 0 0 113893 14578 0 0 2648 0 0 862 1100 1051 7625 0 0 3.29047 3.29047 -109.482 -3.29047 0 0 997811. 3452.63 0.35 0.09 0.20 -1 -1 0.35 0.0238224 0.0211586 77 81 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 13.44 vpr 61.43 MiB 0.02 6912 -1 -1 1 0.01 -1 -1 29800 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62908 32 32 284 226 1 154 74 17 17 289 -1 unnamed_device 22.8 MiB 1.25 569 61.4 MiB 0.10 0.00 2.43785 -92.1131 -2.43785 2.43785 1.10 0.000282445 0.000229636 0.0198724 0.0163414 50 1870 39 6.95648e+06 144757 902133. 3121.57 8.52 0.201805 0.175834 28642 213929 -1 1429 20 1233 1812 157305 40604 0 0 157305 40604 1812 1527 0 0 5899 5213 0 0 11136 7146 0 0 1812 1548 0 0 69440 11400 0 0 67206 13770 0 0 1812 0 0 579 600 406 4611 0 0 3.21092 3.21092 -118.202 -3.21092 0 0 1.08113e+06 3740.92 0.35 0.05 0.26 -1 -1 0.35 0.0121396 0.0108578 61 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 13.91 vpr 62.49 MiB 0.03 7056 -1 -1 1 0.02 -1 -1 29900 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 408 320 1 187 88 17 17 289 -1 unnamed_device 23.6 MiB 3.88 781 62.5 MiB 0.13 0.00 3.13669 -113.309 -3.13669 3.13669 0.98 0.000319808 0.0002471 0.0243758 0.0200274 48 2631 27 6.95648e+06 347416 865456. 2994.66 6.46 0.245772 0.216265 28354 207349 -1 2147 24 2047 3195 386747 79796 0 0 386747 79796 3195 2722 0 0 10370 9228 0 0 22541 12760 0 0 3195 2870 0 0 167681 26644 0 0 179765 25572 0 0 3195 0 0 1148 1390 1373 10436 0 0 4.08826 4.08826 -151.568 -4.08826 0 0 1.05005e+06 3633.38 0.33 0.16 0.26 -1 -1 0.33 0.0322085 0.0290081 84 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 20.28 vpr 62.48 MiB 0.03 7196 -1 -1 1 0.01 -1 -1 29860 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 408 320 1 193 77 17 17 289 -1 unnamed_device 23.7 MiB 0.71 960 62.5 MiB 0.14 0.00 3.16669 -120.254 -3.16669 3.16669 0.94 0.00030935 0.00025025 0.0296187 0.0244493 40 2659 35 6.95648e+06 188184 706193. 2443.58 15.58 0.3032 0.264805 26914 176310 -1 2308 22 2237 3006 320316 69498 0 0 320316 69498 3006 2755 0 0 9924 8756 0 0 18315 11866 0 0 3006 2787 0 0 144781 22030 0 0 141284 21304 0 0 3006 0 0 769 788 925 7378 0 0 3.99746 3.99746 -157.192 -3.99746 0 0 926341. 3205.33 0.37 0.17 0.21 -1 -1 0.37 0.0335939 0.0304626 81 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 9.64 vpr 61.55 MiB 0.02 6792 -1 -1 1 0.02 -1 -1 30048 -1 -1 11 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63024 32 32 316 268 1 152 75 17 17 289 -1 unnamed_device 23.1 MiB 1.33 720 61.5 MiB 0.10 0.00 2.75376 -93.2996 -2.75376 2.75376 0.94 0.000245339 0.000199275 0.0192049 0.0158688 40 1910 26 6.95648e+06 159232 706193. 2443.58 5.05 0.169174 0.146187 26914 176310 -1 1729 21 1248 1812 173982 39013 0 0 173982 39013 1812 1544 0 0 6239 5516 0 0 11601 7622 0 0 1812 1668 0 0 78419 11282 0 0 74099 11381 0 0 1812 0 0 564 561 740 5325 0 0 3.19633 3.19633 -118.609 -3.19633 0 0 926341. 3205.33 0.34 0.08 0.18 -1 -1 0.34 0.0190876 0.0170337 60 47 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.58 vpr 61.76 MiB 0.02 6676 -1 -1 1 0.01 -1 -1 29884 -1 -1 11 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63240 31 32 277 222 1 154 74 17 17 289 -1 unnamed_device 23.2 MiB 0.37 582 61.8 MiB 0.09 0.00 2.6756 -95.5552 -2.6756 2.6756 1.08 0.000274307 0.000217144 0.0172872 0.0141166 38 2134 29 6.95648e+06 159232 678818. 2348.85 3.58 0.119887 0.104237 26626 170182 -1 1544 20 1356 1912 168346 40308 0 0 168346 40308 1912 1649 0 0 5991 5280 0 0 9969 6552 0 0 1912 1684 0 0 78200 11904 0 0 70362 13239 0 0 1912 0 0 556 587 548 4931 0 0 3.29722 3.29722 -128.849 -3.29722 0 0 902133. 3121.57 0.36 0.08 0.21 -1 -1 0.36 0.0188574 0.0168894 63 -1 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 8.86 vpr 62.13 MiB 0.03 6984 -1 -1 1 0.02 -1 -1 29792 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63620 32 32 382 304 1 180 83 17 17 289 -1 unnamed_device 23.4 MiB 1.70 815 62.1 MiB 0.10 0.00 3.07684 -104.354 -3.07684 3.07684 0.96 0.000203461 0.000156499 0.0180931 0.0146363 40 2668 29 6.95648e+06 275038 706193. 2443.58 3.57 0.147931 0.128963 26914 176310 -1 2048 21 1747 2407 200868 44274 0 0 200868 44274 2407 2049 0 0 7833 6790 0 0 14287 9219 0 0 2407 2148 0 0 86329 12076 0 0 87605 11992 0 0 2407 0 0 660 619 810 6474 0 0 4.47362 4.47362 -147.624 -4.47362 0 0 926341. 3205.33 0.38 0.10 0.22 -1 -1 0.38 0.0238854 0.0212926 78 56 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 12.67 vpr 62.12 MiB 0.05 7032 -1 -1 1 0.02 -1 -1 29912 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63608 32 32 407 331 1 182 83 17 17 289 -1 unnamed_device 23.3 MiB 2.53 845 62.1 MiB 0.13 0.00 3.561 -114.279 -3.561 3.561 1.10 0.000369841 0.000299713 0.0235735 0.0194647 40 2867 39 6.95648e+06 275038 706193. 2443.58 6.53 0.303255 0.268212 26914 176310 -1 2429 21 1783 2779 324650 66437 0 0 324650 66437 2779 2409 0 0 9217 8128 0 0 17724 11286 0 0 2779 2475 0 0 145217 21642 0 0 146934 20497 0 0 2779 0 0 996 1175 1187 8877 0 0 4.27797 4.27797 -149.337 -4.27797 0 0 926341. 3205.33 0.32 0.12 0.14 -1 -1 0.32 0.0245698 0.0220278 79 81 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 9.64 vpr 62.28 MiB 0.03 7164 -1 -1 1 0.02 -1 -1 29964 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 400 286 1 218 91 17 17 289 -1 unnamed_device 23.6 MiB 0.47 1112 62.3 MiB 0.10 0.00 3.73059 -132.9 -3.73059 3.73059 0.99 0.000214116 0.000172893 0.0134365 0.0110408 46 3391 45 6.95648e+06 390843 828058. 2865.25 5.66 0.168498 0.149705 28066 200906 -1 2663 24 2435 3706 387345 88736 0 0 387345 88736 3706 2898 0 0 11480 10286 0 0 21403 13205 0 0 3706 3149 0 0 178539 28075 0 0 168511 31123 0 0 3706 0 0 1271 1270 1255 11054 0 0 5.00971 5.00971 -177.957 -5.00971 0 0 1.01997e+06 3529.29 0.38 0.13 0.25 -1 -1 0.38 0.0275798 0.0248898 100 -1 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 10.89 vpr 61.88 MiB 0.20 7004 -1 -1 1 0.02 -1 -1 30108 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63360 30 32 374 298 1 176 80 17 17 289 -1 unnamed_device 23.4 MiB 1.70 807 61.9 MiB 0.16 0.00 2.89186 -97.4655 -2.89186 2.89186 0.95 0.000367861 0.000290466 0.0297094 0.0243472 46 2091 25 6.95648e+06 260562 828058. 2865.25 5.23 0.1748 0.149792 28066 200906 -1 1789 22 1696 2509 180163 38118 0 0 180163 38118 2509 1938 0 0 7844 6979 0 0 13424 8839 0 0 2509 2080 0 0 80126 8740 0 0 73751 9542 0 0 2509 0 0 813 891 905 7120 0 0 3.03987 3.03987 -117.867 -3.03987 0 0 1.01997e+06 3529.29 0.42 0.09 0.25 -1 -1 0.42 0.0252802 0.0226006 77 47 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 11.95 vpr 61.60 MiB 0.02 7004 -1 -1 1 0.01 -1 -1 29876 -1 -1 14 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63076 27 32 275 232 1 137 73 17 17 289 -1 unnamed_device 23.1 MiB 1.13 527 61.6 MiB 0.09 0.00 2.90721 -83.8803 -2.90721 2.90721 0.95 0.000268137 0.000213601 0.017198 0.0140892 36 1752 35 6.95648e+06 202660 648988. 2245.63 7.50 0.179442 0.154515 26050 158493 -1 1221 19 908 1168 95278 22526 0 0 95278 22526 1168 1005 0 0 4123 3550 0 0 6402 4858 0 0 1168 1041 0 0 41822 5813 0 0 40595 6259 0 0 1168 0 0 260 167 198 2413 0 0 3.12597 3.12597 -103.728 -3.12597 0 0 828058. 2865.25 0.33 0.06 0.18 -1 -1 0.33 0.0162276 0.0144565 57 26 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 38.67 vpr 62.44 MiB 0.03 7228 -1 -1 1 0.02 -1 -1 30208 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 494 379 1 222 93 17 17 289 -1 unnamed_device 24.1 MiB 0.88 1153 62.4 MiB 0.14 0.00 3.62995 -124.209 -3.62995 3.62995 1.05 0.000384268 0.000313741 0.0222893 0.0185433 46 3170 28 6.95648e+06 419795 828058. 2865.25 34.03 0.355608 0.312753 28066 200906 -1 2483 21 2368 3975 283672 57141 0 0 283672 57141 3975 2798 0 0 11454 10395 0 0 20672 12705 0 0 3975 3073 0 0 128041 13484 0 0 115555 14686 0 0 3975 0 0 1607 1699 1348 12815 0 0 3.87681 3.87681 -148.439 -3.87681 0 0 1.01997e+06 3529.29 0.40 0.15 0.23 -1 -1 0.40 0.0368844 0.033375 102 85 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 13.67 vpr 62.05 MiB 0.02 6988 -1 -1 1 0.02 -1 -1 30396 -1 -1 14 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63540 31 32 457 373 1 187 77 17 17 289 -1 unnamed_device 23.6 MiB 4.56 721 62.1 MiB 0.12 0.00 3.82604 -124.285 -3.82604 3.82604 1.08 0.00040791 0.000327629 0.0278355 0.022665 54 2228 30 6.95648e+06 202660 949917. 3286.91 5.31 0.219017 0.188792 29506 232905 -1 1642 23 1599 2403 182618 44647 0 0 182618 44647 2403 2025 0 0 7588 6848 0 0 13462 8692 0 0 2403 2054 0 0 75122 12538 0 0 81640 12490 0 0 2403 0 0 804 946 749 7172 0 0 4.85601 4.85601 -153.577 -4.85601 0 0 1.17392e+06 4061.99 0.43 0.08 0.27 -1 -1 0.43 0.0240931 0.0213812 79 105 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 16.72 vpr 62.05 MiB 0.02 6824 -1 -1 1 0.01 -1 -1 29872 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 356 305 1 147 74 17 17 289 -1 unnamed_device 23.4 MiB 3.60 617 62.1 MiB 0.10 0.00 2.5155 -87.0987 -2.5155 2.5155 0.92 0.000344933 0.000273252 0.0193536 0.01578 46 1881 26 6.95648e+06 144757 828058. 2865.25 9.79 0.218011 0.189209 28066 200906 -1 1302 21 943 1479 97491 23862 0 0 97491 23862 1479 1232 0 0 4787 4197 0 0 7487 5312 0 0 1479 1269 0 0 42265 6025 0 0 39994 5827 0 0 1479 0 0 536 345 456 4014 0 0 3.22022 3.22022 -112.973 -3.22022 0 0 1.01997e+06 3529.29 0.41 0.06 0.25 -1 -1 0.41 0.0202163 0.017903 58 86 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 21.45 vpr 62.14 MiB 0.03 6840 -1 -1 1 0.01 -1 -1 29816 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63632 32 32 365 283 1 188 85 17 17 289 -1 unnamed_device 23.4 MiB 0.60 797 62.1 MiB 0.16 0.00 3.4405 -115.651 -3.4405 3.4405 1.11 0.000364424 0.00029406 0.0268111 0.0220739 46 2734 50 6.95648e+06 303989 828058. 2865.25 17.01 0.302683 0.264912 28066 200906 -1 1875 23 1635 2363 168516 40443 0 0 168516 40443 2363 1982 0 0 7241 6319 0 0 12200 7973 0 0 2363 2041 0 0 71545 11232 0 0 72804 10896 0 0 2363 0 0 728 856 552 6303 0 0 4.40007 4.40007 -149.002 -4.40007 0 0 1.01997e+06 3529.29 0.40 0.09 0.24 -1 -1 0.40 0.0237454 0.0211203 82 31 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 8.87 vpr 62.66 MiB 0.03 7352 -1 -1 1 0.02 -1 -1 30164 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 445 338 1 210 86 17 17 289 -1 unnamed_device 23.8 MiB 0.78 983 62.7 MiB 0.21 0.00 3.4515 -119.432 -3.4515 3.4515 0.99 0.00040824 0.000332315 0.0389553 0.0320261 36 3172 29 6.95648e+06 332941 648988. 2245.63 4.51 0.161468 0.140221 26050 158493 -1 2516 28 2427 3383 345816 82637 0 0 345816 82637 3383 2770 0 0 10765 9378 0 0 19861 12812 0 0 3383 2924 0 0 152933 28679 0 0 155491 26074 0 0 3383 0 0 956 1256 1250 10263 0 0 4.34022 4.34022 -154.602 -4.34022 0 0 828058. 2865.25 0.33 0.09 0.19 -1 -1 0.33 0.0185024 0.0162907 95 50 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 12.33 vpr 62.10 MiB 0.03 7144 -1 -1 1 0.02 -1 -1 30100 -1 -1 20 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63588 30 32 376 300 1 178 82 17 17 289 -1 unnamed_device 23.3 MiB 1.35 809 62.1 MiB 0.13 0.00 2.77276 -89.4611 -2.77276 2.77276 1.09 0.00034533 0.000278869 0.0253992 0.0208743 48 2240 38 6.95648e+06 289514 865456. 2994.66 6.52 0.220091 0.190503 28354 207349 -1 1971 21 1533 2427 205441 46553 0 0 205441 46553 2427 1933 0 0 7977 7051 0 0 14608 9764 0 0 2427 2221 0 0 85341 13148 0 0 92661 12436 0 0 2427 0 0 894 960 878 7411 0 0 3.23727 3.23727 -116.721 -3.23727 0 0 1.05005e+06 3633.38 0.45 0.11 0.25 -1 -1 0.45 0.0287635 0.0259608 78 50 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 29.51 vpr 62.59 MiB 0.02 7060 -1 -1 1 0.02 -1 -1 30040 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 408 320 1 193 98 17 17 289 -1 unnamed_device 23.9 MiB 0.76 858 62.6 MiB 0.07 0.00 3.15089 -112.828 -3.15089 3.15089 0.94 0.000192467 0.00015183 0.0123062 0.0100405 46 2797 42 6.95648e+06 492173 828058. 2865.25 24.59 0.256174 0.223256 28066 200906 -1 1888 23 1915 2704 204046 44960 0 0 204046 44960 2704 2173 0 0 8197 7196 0 0 14313 9034 0 0 2704 2238 0 0 87770 12020 0 0 88358 12299 0 0 2704 0 0 789 928 932 7761 0 0 4.10246 4.10246 -144.898 -4.10246 0 0 1.01997e+06 3529.29 0.42 0.11 0.27 -1 -1 0.42 0.0310108 0.0278413 91 61 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 9.94 vpr 62.25 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 29984 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 406 319 1 192 96 17 17 289 -1 unnamed_device 23.4 MiB 0.95 801 62.2 MiB 0.22 0.00 2.5393 -95.6643 -2.5393 2.5393 1.05 0.000458232 0.000378296 0.035859 0.0294053 38 2677 36 6.95648e+06 463222 678818. 2348.85 5.35 0.174798 0.153322 26626 170182 -1 2012 21 1714 2263 198584 42989 0 0 198584 42989 2263 1853 0 0 7372 6412 0 0 11483 8186 0 0 2263 1942 0 0 87052 12611 0 0 88151 11985 0 0 2263 0 0 549 561 598 5355 0 0 3.44582 3.44582 -126.427 -3.44582 0 0 902133. 3121.57 0.36 0.10 0.12 -1 -1 0.36 0.0262224 0.0234193 91 61 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 9.77 vpr 61.51 MiB 0.02 6820 -1 -1 1 0.01 -1 -1 29964 -1 -1 13 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62984 29 32 291 242 1 136 74 17 17 289 -1 unnamed_device 22.9 MiB 4.71 675 61.5 MiB 0.09 0.00 2.4983 -86.9622 -2.4983 2.4983 1.05 0.000273051 0.000218326 0.0189592 0.0154015 34 1696 20 6.95648e+06 188184 618332. 2139.56 1.68 0.083192 0.0708061 25762 151098 -1 1421 21 1057 1301 111948 23947 0 0 111948 23947 1301 1181 0 0 4471 3857 0 0 7229 5329 0 0 1301 1202 0 0 48357 6295 0 0 49289 6083 0 0 1301 0 0 244 276 255 2564 0 0 2.93652 2.93652 -112.156 -2.93652 0 0 787024. 2723.27 0.32 0.06 0.18 -1 -1 0.32 0.0181986 0.0162124 57 28 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 11.86 vpr 62.05 MiB 0.02 6932 -1 -1 1 0.02 -1 -1 29772 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 335 291 1 148 74 17 17 289 -1 unnamed_device 23.4 MiB 1.18 547 62.1 MiB 0.33 0.00 2.4623 -82.593 -2.4623 2.4623 1.09 0.000311667 0.000250025 0.0233569 0.0196726 44 1822 32 6.95648e+06 144757 787024. 2723.27 7.01 0.200904 0.175101 27778 195446 -1 1334 21 1120 1432 130547 30457 0 0 130547 30457 1432 1286 0 0 4723 4092 0 0 7308 5378 0 0 1432 1311 0 0 59785 8335 0 0 55867 10055 0 0 1432 0 0 312 330 202 2942 0 0 3.16712 3.16712 -113.022 -3.16712 0 0 997811. 3452.63 0.35 0.06 0.21 -1 -1 0.35 0.0167978 0.0147893 58 79 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 26.58 vpr 62.19 MiB 0.03 7016 -1 -1 1 0.02 -1 -1 29900 -1 -1 29 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63684 31 32 367 283 1 188 92 17 17 289 -1 unnamed_device 23.4 MiB 0.59 791 62.2 MiB 0.64 0.01 3.3995 -115.334 -3.3995 3.3995 1.13 0.000341715 0.000292231 0.0414141 0.0369332 40 2793 34 6.95648e+06 419795 706193. 2443.58 21.60 0.322761 0.287012 26914 176310 -1 2324 25 2229 3167 390434 84255 0 0 390434 84255 3167 2738 0 0 10205 8880 0 0 19169 11896 0 0 3167 2882 0 0 172439 29829 0 0 182287 28030 0 0 3167 0 0 938 1351 1199 9495 0 0 4.49232 4.49232 -154.943 -4.49232 0 0 926341. 3205.33 0.32 0.16 0.21 -1 -1 0.32 0.0337533 0.0305099 88 29 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 11.78 vpr 61.47 MiB 0.02 6840 -1 -1 1 0.02 -1 -1 29988 -1 -1 14 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 29 32 301 258 1 144 75 17 17 289 -1 unnamed_device 22.9 MiB 1.50 540 61.5 MiB 0.12 0.00 2.76175 -84.5287 -2.76175 2.76175 0.99 0.000293365 0.000234781 0.021004 0.0172913 38 2071 39 6.95648e+06 202660 678818. 2348.85 6.99 0.201895 0.175798 26626 170182 -1 1387 21 1179 1648 142233 32754 0 0 142233 32754 1648 1459 0 0 5088 4429 0 0 8565 5646 0 0 1648 1555 0 0 68319 9199 0 0 56965 10466 0 0 1648 0 0 469 427 567 4453 0 0 3.08707 3.08707 -107.359 -3.08707 0 0 902133. 3121.57 0.26 0.04 0.12 -1 -1 0.26 0.0107057 0.00946096 59 48 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 9.49 vpr 61.58 MiB 0.03 6768 -1 -1 1 0.02 -1 -1 29844 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63060 32 32 315 257 1 154 74 17 17 289 -1 unnamed_device 23.1 MiB 1.34 627 61.6 MiB 0.13 0.00 2.43165 -90.6974 -2.43165 2.43165 1.08 0.000332423 0.000271821 0.0219603 0.0181544 46 1759 49 6.95648e+06 144757 828058. 2865.25 4.13 0.142276 0.123571 28066 200906 -1 1183 23 1443 2038 153404 42810 0 0 153404 42810 2038 1653 0 0 6390 5750 0 0 11269 7278 0 0 2038 1702 0 0 66149 13034 0 0 65520 13393 0 0 2038 0 0 595 653 633 5367 0 0 3.01782 3.01782 -117.033 -3.01782 0 0 1.01997e+06 3529.29 0.41 0.09 0.24 -1 -1 0.41 0.021904 0.0195013 61 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 16.68 vpr 62.12 MiB 0.03 6980 -1 -1 1 0.02 -1 -1 30000 -1 -1 24 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63616 31 32 389 309 1 181 87 17 17 289 -1 unnamed_device 23.4 MiB 1.47 853 62.1 MiB 0.11 0.00 2.90906 -103.428 -2.90906 2.90906 1.22 0.000309609 0.000252115 0.0203161 0.0168648 38 2440 28 6.95648e+06 347416 678818. 2348.85 11.37 0.228895 0.199301 26626 170182 -1 1960 21 1695 2202 213991 44036 0 0 213991 44036 2202 1802 0 0 6938 5959 0 0 11288 7705 0 0 2202 1899 0 0 96696 13396 0 0 94665 13275 0 0 2202 0 0 507 622 613 5302 0 0 3.39377 3.39377 -130.499 -3.39377 0 0 902133. 3121.57 0.35 0.10 0.21 -1 -1 0.35 0.0257822 0.0231269 82 60 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.93 vpr 61.46 MiB 0.02 6888 -1 -1 1 0.01 -1 -1 29852 -1 -1 11 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62932 31 32 310 264 1 143 74 17 17 289 -1 unnamed_device 23.0 MiB 2.52 798 61.5 MiB 0.12 0.00 2.63455 -86.3053 -2.63455 2.63455 1.10 0.000302469 0.000245137 0.0250273 0.0204867 44 1917 17 6.95648e+06 159232 787024. 2723.27 2.73 0.0914679 0.0790308 27778 195446 -1 1647 23 1141 1843 149332 32322 0 0 149332 32322 1843 1579 0 0 5803 5147 0 0 10632 6785 0 0 1843 1643 0 0 65821 8257 0 0 63390 8911 0 0 1843 0 0 702 794 742 5591 0 0 2.88637 2.88637 -109.483 -2.88637 0 0 997811. 3452.63 0.39 0.08 0.24 -1 -1 0.39 0.0209309 0.0186169 57 49 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 14.16 vpr 62.07 MiB 0.03 7000 -1 -1 1 0.01 -1 -1 30036 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63564 32 32 384 308 1 176 83 17 17 289 -1 unnamed_device 23.6 MiB 2.09 686 62.1 MiB 0.12 0.00 2.5143 -86.2508 -2.5143 2.5143 1.04 0.000357875 0.000286704 0.0242252 0.0197724 58 1714 31 6.95648e+06 275038 997811. 3452.63 8.28 0.234694 0.204373 30370 251734 -1 1490 21 1283 1930 137854 32628 0 0 137854 32628 1930 1537 0 0 6282 5471 0 0 11279 7612 0 0 1930 1661 0 0 55293 7768 0 0 61140 8579 0 0 1930 0 0 647 902 872 6751 0 0 3.04317 3.04317 -103.674 -3.04317 0 0 1.25153e+06 4330.55 0.40 0.06 0.32 -1 -1 0.40 0.0167156 0.0149214 76 56 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 13.83 vpr 62.50 MiB 0.04 7244 -1 -1 1 0.01 -1 -1 29924 -1 -1 26 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63996 31 32 424 341 1 187 89 17 17 289 -1 unnamed_device 23.8 MiB 0.96 744 62.5 MiB 0.08 0.00 2.86996 -98.893 -2.86996 2.86996 0.76 0.000199927 0.000157451 0.0160144 0.013052 46 2307 50 6.95648e+06 376368 828058. 2865.25 9.63 0.268044 0.235618 28066 200906 -1 1629 19 1570 2146 178355 43248 0 0 178355 43248 2146 1708 0 0 6765 5921 0 0 10925 7497 0 0 2146 1804 0 0 80760 12386 0 0 75613 13932 0 0 2146 0 0 576 814 651 5799 0 0 3.49087 3.49087 -128.095 -3.49087 0 0 1.01997e+06 3529.29 0.40 0.09 0.18 -1 -1 0.40 0.0235768 0.0210627 86 88 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 10.85 vpr 62.05 MiB 0.03 6680 -1 -1 1 0.01 -1 -1 29796 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 334 280 1 154 74 17 17 289 -1 unnamed_device 23.3 MiB 0.95 689 62.1 MiB 0.06 0.00 2.4011 -84.4959 -2.4011 2.4011 0.74 0.000163724 0.000127965 0.011312 0.00912937 46 2010 26 6.95648e+06 144757 828058. 2865.25 6.27 0.150983 0.130871 28066 200906 -1 1641 23 1196 1833 167342 37547 0 0 167342 37547 1833 1549 0 0 5895 5263 0 0 10353 6723 0 0 1833 1582 0 0 65931 12097 0 0 81497 10333 0 0 1833 0 0 637 719 384 4871 0 0 3.13112 3.13112 -111.902 -3.13112 0 0 1.01997e+06 3529.29 0.32 0.08 0.14 -1 -1 0.32 0.0212157 0.0187078 61 54 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 14.02 vpr 61.71 MiB 0.04 6680 -1 -1 1 0.02 -1 -1 29932 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63192 32 32 340 284 1 158 74 17 17 289 -1 unnamed_device 23.1 MiB 1.59 611 61.7 MiB 0.14 0.00 2.5503 -93.9069 -2.5503 2.5503 1.20 0.000289387 0.000231843 0.0259885 0.021226 50 1934 44 6.95648e+06 144757 902133. 3121.57 7.89 0.215615 0.18638 28642 213929 -1 1659 26 1530 2366 275742 94908 0 0 275742 94908 2366 1894 0 0 7308 6448 0 0 14776 8948 0 0 2366 1922 0 0 127704 36489 0 0 121222 39207 0 0 2366 0 0 836 904 724 6720 0 0 3.51792 3.51792 -127.07 -3.51792 0 0 1.08113e+06 3740.92 0.43 0.13 0.26 -1 -1 0.43 0.0214506 0.0189247 63 60 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 27.90 vpr 62.50 MiB 0.02 7156 -1 -1 1 0.02 -1 -1 30280 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 408 320 1 190 93 17 17 289 -1 unnamed_device 23.6 MiB 1.15 810 62.5 MiB 0.11 0.00 3.11169 -113.5 -3.11169 3.11169 0.89 0.000198698 0.000153193 0.017043 0.0136181 40 2477 27 6.95648e+06 419795 706193. 2443.58 23.30 0.236737 0.206048 26914 176310 -1 2218 25 2280 3363 330469 67461 0 0 330469 67461 3363 2559 0 0 10796 9648 0 0 21102 13087 0 0 3363 2754 0 0 144136 20386 0 0 147709 19027 0 0 3363 0 0 1083 1414 1566 11042 0 0 4.27906 4.27906 -154.257 -4.27906 0 0 926341. 3205.33 0.31 0.10 0.22 -1 -1 0.31 0.0238417 0.0213164 88 49 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 10.68 vpr 62.35 MiB 0.02 7076 -1 -1 1 0.01 -1 -1 30088 -1 -1 19 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63848 29 32 371 297 1 175 80 17 17 289 -1 unnamed_device 23.6 MiB 1.58 847 62.4 MiB 0.16 0.00 2.6053 -90.5364 -2.6053 2.6053 1.15 0.000355716 0.000295902 0.0302675 0.0250861 36 2518 31 6.95648e+06 275038 648988. 2245.63 5.44 0.173918 0.152997 26050 158493 -1 1934 23 1529 2189 187253 39924 0 0 187253 39924 2189 1774 0 0 7004 6049 0 0 12412 8297 0 0 2189 1887 0 0 82136 10521 0 0 81323 11396 0 0 2189 0 0 660 971 801 6911 0 0 3.31427 3.31427 -121.131 -3.31427 0 0 828058. 2865.25 0.31 0.08 0.18 -1 -1 0.31 0.0213095 0.018913 77 54 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 31.20 vpr 62.67 MiB 0.02 7232 -1 -1 1 0.02 -1 -1 30164 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 470 382 1 192 93 17 17 289 -1 unnamed_device 23.9 MiB 1.87 1008 62.7 MiB 0.20 0.00 3.08969 -117.371 -3.08969 3.08969 0.92 0.000414592 0.00032335 0.0356686 0.0287331 38 2961 30 6.95648e+06 419795 678818. 2348.85 25.77 0.286327 0.247773 26626 170182 -1 2571 20 1974 2911 255055 50971 0 0 255055 50971 2911 2268 0 0 8837 7657 0 0 14345 9514 0 0 2911 2422 0 0 111026 15004 0 0 115025 14106 0 0 2911 0 0 937 1029 1117 9064 0 0 4.29196 4.29196 -160.58 -4.29196 0 0 902133. 3121.57 0.36 0.12 0.20 -1 -1 0.36 0.0317071 0.028557 89 117 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 7.26 vpr 61.33 MiB 0.03 6904 -1 -1 1 0.01 -1 -1 29900 -1 -1 11 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62804 31 32 261 214 1 144 74 17 17 289 -1 unnamed_device 22.8 MiB 1.92 566 61.3 MiB 0.08 0.00 2.5956 -83.806 -2.5956 2.5956 0.97 0.000212727 0.000171763 0.0158972 0.0132166 38 2341 27 6.95648e+06 159232 678818. 2348.85 2.27 0.0977926 0.0857673 26626 170182 -1 1704 21 1154 1734 143230 31772 0 0 143230 31772 1734 1521 0 0 5541 4823 0 0 8970 6244 0 0 1734 1597 0 0 62108 8915 0 0 63143 8672 0 0 1734 0 0 580 598 432 4626 0 0 3.13827 3.13827 -112.659 -3.13827 0 0 902133. 3121.57 0.23 0.04 0.13 -1 -1 0.23 0.0102363 0.00913627 58 -1 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 15.26 vpr 62.43 MiB 0.03 6904 -1 -1 1 0.02 -1 -1 29872 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 419 339 1 182 87 17 17 289 -1 unnamed_device 23.5 MiB 2.65 794 62.4 MiB 0.11 0.00 3.34034 -107.491 -3.34034 3.34034 1.16 0.00031276 0.000253104 0.0224382 0.0185209 56 1906 24 6.95648e+06 332941 973134. 3367.25 8.06 0.249979 0.218784 29794 239141 -1 1519 20 1287 1749 130682 32394 0 0 130682 32394 1749 1418 0 0 6018 5070 0 0 9802 6995 0 0 1749 1462 0 0 51741 9899 0 0 59623 7550 0 0 1749 0 0 462 425 547 4479 0 0 3.94421 3.94421 -132.646 -3.94421 0 0 1.19926e+06 4149.71 0.48 0.08 0.30 -1 -1 0.48 0.0238276 0.0212644 82 89 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 13.03 vpr 61.73 MiB 0.02 6788 -1 -1 1 0.02 -1 -1 29828 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63212 32 32 377 319 1 154 74 17 17 289 -1 unnamed_device 23.1 MiB 3.86 576 61.7 MiB 0.07 0.00 2.45985 -93.0786 -2.45985 2.45985 0.98 0.000205444 0.00016662 0.0148473 0.0119587 38 2305 35 6.95648e+06 144757 678818. 2348.85 5.58 0.150422 0.130731 26626 170182 -1 1620 23 1565 2162 205412 45213 0 0 205412 45213 2162 1951 0 0 6818 6161 0 0 11365 7653 0 0 2162 1974 0 0 88880 13780 0 0 94025 13694 0 0 2162 0 0 597 461 701 5365 0 0 3.27512 3.27512 -129.589 -3.27512 0 0 902133. 3121.57 0.34 0.09 0.18 -1 -1 0.34 0.0222276 0.0195858 61 93 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 10.29 vpr 62.40 MiB 0.03 6880 -1 -1 1 0.02 -1 -1 29992 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 402 317 1 188 88 17 17 289 -1 unnamed_device 23.6 MiB 1.42 968 62.4 MiB 0.20 0.00 2.5393 -101.567 -2.5393 2.5393 1.08 0.00021949 0.000176222 0.0290412 0.0239803 44 2416 24 6.95648e+06 347416 787024. 2723.27 5.04 0.190955 0.164774 27778 195446 -1 2024 19 1606 2370 185715 37561 0 0 185715 37561 2370 1804 0 0 7498 6612 0 0 13258 8753 0 0 2370 1902 0 0 87901 8127 0 0 72318 10363 0 0 2370 0 0 764 644 868 7388 0 0 2.90057 2.90057 -123.929 -2.90057 0 0 997811. 3452.63 0.37 0.28 0.17 -1 -1 0.37 0.0282852 0.0257042 84 59 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 13.28 vpr 62.56 MiB 0.02 7452 -1 -1 1 0.02 -1 -1 30280 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 501 383 1 222 97 17 17 289 -1 unnamed_device 24.2 MiB 1.69 1017 62.6 MiB 0.26 0.01 3.74344 -131.816 -3.74344 3.74344 1.03 0.000494699 0.000407663 0.0376428 0.0310404 46 3084 43 6.95648e+06 477698 828058. 2865.25 7.35 0.294861 0.256502 28066 200906 -1 2378 22 2561 3623 286719 60407 0 0 286719 60407 3623 2792 0 0 11060 9823 0 0 18654 12198 0 0 3623 2936 0 0 122945 16757 0 0 126814 15901 0 0 3623 0 0 1062 1533 1448 12232 0 0 4.76511 4.76511 -175.574 -4.76511 0 0 1.01997e+06 3529.29 0.47 0.37 0.22 -1 -1 0.47 0.0355947 0.0321412 104 81 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.86 vpr 61.47 MiB 0.02 6668 -1 -1 1 0.01 -1 -1 29756 -1 -1 10 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 30 32 249 232 1 117 72 17 17 289 -1 unnamed_device 22.9 MiB 0.62 408 61.5 MiB 0.08 0.00 1.83056 -63.303 -1.83056 1.83056 1.14 0.000241863 0.000190785 0.0163084 0.0132986 38 1183 23 6.95648e+06 144757 678818. 2348.85 2.45 0.0766746 0.065942 26626 170182 -1 946 18 646 763 57153 14169 0 0 57153 14169 763 680 0 0 2610 2334 0 0 3898 2890 0 0 763 714 0 0 26460 3350 0 0 22659 4201 0 0 763 0 0 117 26 126 1266 0 0 2.00428 2.00428 -79.1377 -2.00428 0 0 902133. 3121.57 0.37 0.04 0.21 -1 -1 0.37 0.0132893 0.0117964 45 51 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 11.91 vpr 61.93 MiB 0.02 6840 -1 -1 1 0.02 -1 -1 30008 -1 -1 12 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63416 30 32 299 247 1 141 74 17 17 289 -1 unnamed_device 23.1 MiB 2.21 478 61.9 MiB 0.08 0.00 2.68956 -88.2492 -2.68956 2.68956 1.12 0.000245637 0.000197247 0.0163134 0.0132839 48 1399 30 6.95648e+06 173708 865456. 2994.66 6.20 0.167791 0.146377 28354 207349 -1 1100 18 1005 1464 99605 25785 0 0 99605 25785 1464 1155 0 0 4865 4319 0 0 8412 5931 0 0 1464 1174 0 0 41275 6040 0 0 42125 7166 0 0 1464 0 0 459 475 271 3745 0 0 2.99767 2.99767 -108.594 -2.99767 0 0 1.05005e+06 3633.38 0.37 0.05 0.21 -1 -1 0.37 0.0152176 0.0136351 58 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 23.21 vpr 61.79 MiB 0.02 6728 -1 -1 1 0.01 -1 -1 29848 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63272 32 32 315 257 1 161 74 17 17 289 -1 unnamed_device 23.4 MiB 0.19 597 61.8 MiB 0.18 0.00 2.43165 -92.9836 -2.43165 2.43165 1.04 0.000342193 0.000279002 0.02577 0.0216161 46 2271 46 6.95648e+06 144757 828058. 2865.25 19.33 0.272652 0.239006 28066 200906 -1 1753 22 1505 2438 198419 44231 0 0 198419 44231 2438 1955 0 0 7382 6657 0 0 12867 8152 0 0 2438 2025 0 0 94939 10887 0 0 78355 14555 0 0 2438 0 0 933 965 918 7426 0 0 2.99332 2.99332 -121.61 -2.99332 0 0 1.01997e+06 3529.29 0.36 0.08 0.21 -1 -1 0.36 0.0185257 0.016524 65 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 9.60 vpr 61.26 MiB 0.03 6856 -1 -1 1 0.01 -1 -1 29972 -1 -1 16 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62728 25 32 259 222 1 132 73 17 17 289 -1 unnamed_device 22.7 MiB 0.49 456 61.3 MiB 0.32 0.00 2.73975 -74.0014 -2.73975 2.73975 1.01 0.000282526 0.000227266 0.0240097 0.0200697 38 1668 26 6.95648e+06 231611 678818. 2348.85 5.58 0.159356 0.13827 26626 170182 -1 1203 21 1081 1425 118244 33490 0 0 118244 33490 1425 1238 0 0 4641 4072 0 0 7288 5089 0 0 1425 1289 0 0 52790 10631 0 0 50675 11171 0 0 1425 0 0 344 361 374 3452 0 0 2.97402 2.97402 -96.4507 -2.97402 0 0 902133. 3121.57 0.31 0.06 0.18 -1 -1 0.31 0.015587 0.0138268 56 19 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 13.39 vpr 62.34 MiB 0.03 7124 -1 -1 1 0.01 -1 -1 30248 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 433 347 1 192 77 17 17 289 -1 unnamed_device 23.7 MiB 1.36 843 62.3 MiB 0.92 0.01 3.11905 -107.539 -3.11905 3.11905 0.96 0.000612222 0.000532106 0.0506007 0.0434514 54 2840 34 6.95648e+06 188184 949917. 3286.91 6.85 0.256331 0.224403 29506 232905 -1 2160 29 1918 3246 388259 93895 0 0 388259 93895 3246 2607 0 0 9703 8763 0 0 18745 11148 0 0 3246 2807 0 0 180006 34665 0 0 173313 33905 0 0 3246 0 0 1328 1161 1559 10214 0 0 4.30286 4.30286 -144.525 -4.30286 0 0 1.17392e+06 4061.99 0.47 0.75 0.29 -1 -1 0.47 0.0409788 0.0368039 80 84 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 20.81 vpr 62.30 MiB 0.03 7176 -1 -1 1 0.02 -1 -1 29908 -1 -1 29 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 423 341 1 185 92 17 17 289 -1 unnamed_device 23.6 MiB 1.21 901 62.3 MiB 0.17 0.00 2.86506 -100.744 -2.86506 2.86506 0.96 0.000400558 0.000323143 0.0295946 0.0243526 38 2487 30 6.95648e+06 419795 678818. 2348.85 15.95 0.32319 0.281075 26626 170182 -1 2079 23 1948 2607 247874 51106 0 0 247874 51106 2607 2166 0 0 7943 7059 0 0 13117 8708 0 0 2607 2354 0 0 113122 15272 0 0 108478 15547 0 0 2607 0 0 659 843 861 6672 0 0 3.47552 3.47552 -130.635 -3.47552 0 0 902133. 3121.57 0.37 0.11 0.20 -1 -1 0.37 0.0271847 0.0242174 87 88 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 11.67 vpr 62.02 MiB 0.02 7004 -1 -1 1 0.02 -1 -1 30144 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63504 32 32 439 351 1 287 85 17 17 289 -1 unnamed_device 23.7 MiB 1.40 1181 62.0 MiB 0.19 0.00 3.61514 -128.545 -3.61514 3.61514 1.03 0.000407025 0.000330817 0.0325722 0.0268441 54 2792 23 6.99608e+06 309029 949917. 3286.91 6.38 0.255936 0.223691 29506 232905 -1 2329 21 2478 2831 219284 46510 0 0 219284 46510 2831 2553 0 0 9087 7951 0 0 14780 10137 0 0 2831 2613 0 0 96661 11353 0 0 93094 11903 0 0 2831 0 0 353 295 435 4818 0 0 4.43851 4.43851 -160.169 -4.43851 0 0 1.17392e+06 4061.99 0.48 0.12 0.29 -1 -1 0.48 0.0340486 0.0309878 129 80 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 24.04 vpr 62.38 MiB 0.03 7176 -1 -1 1 0.02 -1 -1 30092 -1 -1 20 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 412 333 1 259 82 17 17 289 -1 unnamed_device 23.7 MiB 1.79 1150 62.4 MiB 0.10 0.00 3.67562 -123.975 -3.67562 3.67562 1.03 0.000191972 0.000152436 0.0167754 0.0136629 46 3344 45 6.99608e+06 294314 828058. 2865.25 18.63 0.27859 0.24434 28066 200906 -1 2611 19 2258 3078 251612 52531 0 0 251612 52531 3078 2602 0 0 9777 8759 0 0 17629 11496 0 0 3078 2625 0 0 108108 14136 0 0 109942 12913 0 0 3078 0 0 820 775 663 6976 0 0 4.66639 4.66639 -159.408 -4.66639 0 0 1.01997e+06 3529.29 0.40 0.11 0.25 -1 -1 0.40 0.0256111 0.0230317 117 78 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.92 vpr 62.29 MiB 0.03 6872 -1 -1 1 0.02 -1 -1 30024 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 388 310 1 241 82 17 17 289 -1 unnamed_device 23.5 MiB 1.01 1105 62.3 MiB 0.18 0.00 2.96629 -107.549 -2.96629 2.96629 1.12 0.000366887 0.000297922 0.0299965 0.0247836 40 2898 47 6.99608e+06 264882 706193. 2443.58 4.46 0.212383 0.188601 26914 176310 -1 2590 21 1850 2206 268396 55252 0 0 268396 55252 2206 1998 0 0 7324 6375 0 0 13632 8750 0 0 2206 2042 0 0 123096 17476 0 0 119932 18611 0 0 2206 0 0 356 329 394 4217 0 0 4.16386 4.16386 -147.797 -4.16386 0 0 926341. 3205.33 0.39 0.73 0.18 -1 -1 0.39 0.0360341 0.0332089 106 50 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 18.89 vpr 61.82 MiB 0.03 6988 -1 -1 1 0.02 -1 -1 30020 -1 -1 18 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63300 29 32 347 271 1 201 79 17 17 289 -1 unnamed_device 22.9 MiB 0.96 920 61.8 MiB 0.57 0.01 3.3964 -110.714 -3.3964 3.3964 0.98 0.00053233 0.000456226 0.030609 0.0255755 40 2666 27 6.99608e+06 264882 706193. 2443.58 13.42 0.249977 0.218821 26914 176310 -1 2314 19 1730 2541 261144 53491 0 0 261144 53491 2541 2253 0 0 8504 7354 0 0 15285 10130 0 0 2541 2305 0 0 122435 15343 0 0 109838 16106 0 0 2541 0 0 811 786 937 7153 0 0 3.93311 3.93311 -138.221 -3.93311 0 0 926341. 3205.33 0.30 0.27 0.17 -1 -1 0.30 0.0236107 0.0213185 89 25 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 9.15 vpr 62.35 MiB 0.03 7136 -1 -1 1 0.02 -1 -1 29968 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63844 32 32 377 289 1 218 79 17 17 289 -1 unnamed_device 23.5 MiB 0.57 952 62.3 MiB 0.17 0.00 3.52464 -127.635 -3.52464 3.52464 1.11 0.000378249 0.00030345 0.0304258 0.0251046 52 3148 38 6.99608e+06 220735 926341. 3205.33 4.62 0.164007 0.144782 29218 227130 -1 2378 24 2415 3662 362029 74041 0 0 362029 74041 3662 3186 0 0 11160 9886 0 0 19962 12450 0 0 3662 3315 0 0 165676 21014 0 0 157907 24190 0 0 3662 0 0 1247 998 1086 9801 0 0 4.10465 4.10465 -155.479 -4.10465 0 0 1.14541e+06 3963.36 0.46 0.14 0.27 -1 -1 0.46 0.0272864 0.0243982 93 31 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 14.42 vpr 62.37 MiB 0.03 7020 -1 -1 1 0.01 -1 -1 29856 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 403 317 1 251 95 17 17 289 -1 unnamed_device 23.7 MiB 0.74 1126 62.4 MiB 0.19 0.00 2.98959 -104.896 -2.98959 2.98959 1.12 0.000421526 0.000343867 0.0296265 0.024363 58 2646 22 6.99608e+06 456186 997811. 3452.63 9.64 0.257187 0.224097 30370 251734 -1 2185 20 1895 2859 221799 48769 0 0 221799 48769 2859 2207 0 0 9439 8248 0 0 17242 11400 0 0 2859 2432 0 0 87762 13122 0 0 101638 11360 0 0 2859 0 0 964 1190 1077 8760 0 0 3.26666 3.26666 -125.089 -3.26666 0 0 1.25153e+06 4330.55 0.49 0.11 0.32 -1 -1 0.49 0.0255733 0.0229799 117 61 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 9.64 vpr 61.15 MiB 0.02 7076 -1 -1 1 0.01 -1 -1 30052 -1 -1 16 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62616 27 32 275 232 1 158 75 17 17 289 -1 unnamed_device 22.6 MiB 1.78 556 61.1 MiB 0.42 0.00 2.93029 -91.4248 -2.93029 2.93029 1.15 0.000266977 0.000215808 0.0296495 0.0251612 38 1865 41 6.99608e+06 235451 678818. 2348.85 3.25 0.116041 0.101135 26626 170182 -1 1455 22 1392 2030 194588 42586 0 0 194588 42586 2030 1737 0 0 6122 5462 0 0 10287 6914 0 0 2030 1753 0 0 86393 12816 0 0 87726 13904 0 0 2030 0 0 638 922 864 6096 0 0 3.52311 3.52311 -118.968 -3.52311 0 0 902133. 3121.57 0.31 0.62 0.20 -1 -1 0.31 0.0231104 0.0208149 70 26 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 22.73 vpr 61.44 MiB 0.04 7220 -1 -1 1 0.01 -1 -1 29848 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62912 31 32 319 244 1 178 80 17 17 289 -1 unnamed_device 23.0 MiB 1.09 791 61.4 MiB 0.14 0.00 2.36575 -83.7099 -2.36575 2.36575 1.09 0.000318901 0.000258088 0.0233238 0.019324 46 2204 20 6.99608e+06 250167 828058. 2865.25 17.48 0.255853 0.224136 28066 200906 -1 1670 22 1262 1935 129790 30324 0 0 129790 30324 1935 1502 0 0 6085 5258 0 0 9502 6648 0 0 1935 1612 0 0 53651 7859 0 0 56682 7445 0 0 1935 0 0 673 801 960 6827 0 0 3.12022 3.12022 -107.385 -3.12022 0 0 1.01997e+06 3529.29 0.39 0.07 0.24 -1 -1 0.39 0.0209739 0.0185968 77 -1 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 12.09 vpr 62.05 MiB 0.02 6896 -1 -1 1 0.01 -1 -1 29848 -1 -1 15 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63536 31 32 340 294 1 222 78 17 17 289 -1 unnamed_device 23.3 MiB 3.90 984 62.0 MiB 0.39 0.00 2.65309 -96.3032 -2.65309 2.65309 1.07 0.000295458 0.000235571 0.0301365 0.0251353 44 2803 29 6.99608e+06 220735 787024. 2723.27 3.50 0.106325 0.0914768 27778 195446 -1 1985 21 1743 2146 165178 36090 0 0 165178 36090 2146 1935 0 0 7014 6212 0 0 11629 8139 0 0 2146 1981 0 0 66510 9774 0 0 75733 8049 0 0 2146 0 0 403 260 423 4056 0 0 3.15127 3.15127 -119.942 -3.15127 0 0 997811. 3452.63 0.46 0.74 0.24 -1 -1 0.46 0.0485819 0.0458786 96 81 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 9.81 vpr 61.70 MiB 0.02 6768 -1 -1 1 0.02 -1 -1 29876 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63184 32 32 315 257 1 187 77 17 17 289 -1 unnamed_device 23.2 MiB 1.51 919 61.7 MiB 0.13 0.00 2.95409 -116.661 -2.95409 2.95409 1.13 0.000295876 0.000242334 0.0224388 0.0186026 36 2727 29 6.99608e+06 191304 648988. 2245.63 3.64 0.117598 0.103156 26050 158493 -1 2216 21 1721 2156 209678 41343 0 0 209678 41343 2156 1964 0 0 6726 5875 0 0 11509 7526 0 0 2156 1973 0 0 99522 11174 0 0 87609 12831 0 0 2156 0 0 435 501 482 4444 0 0 3.60016 3.60016 -144.383 -3.60016 0 0 828058. 2865.25 0.36 0.86 0.16 -1 -1 0.36 0.0284463 0.0259697 79 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 12.75 vpr 61.80 MiB 0.02 6924 -1 -1 1 0.02 -1 -1 29920 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63280 30 32 328 276 1 199 77 17 17 289 -1 unnamed_device 23.0 MiB 2.43 1041 61.8 MiB 0.48 0.00 3.26623 -115.452 -3.26623 3.26623 1.00 0.000386142 0.000328298 0.0341848 0.0306709 42 2649 24 6.99608e+06 220735 744469. 2576.02 5.93 0.175413 0.15455 27202 183097 -1 2183 21 1810 2410 210513 43547 0 0 210513 43547 2410 2024 0 0 7823 6811 0 0 14397 9358 0 0 2410 2080 0 0 94827 10968 0 0 88646 12306 0 0 2410 0 0 600 681 588 5555 0 0 3.803 3.803 -143.569 -3.803 0 0 949917. 3286.91 0.49 0.37 0.18 -1 -1 0.49 0.0266094 0.0241844 88 58 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.26 vpr 61.94 MiB 0.02 6796 -1 -1 1 0.01 -1 -1 29956 -1 -1 14 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63428 32 32 332 281 1 211 78 17 17 289 -1 unnamed_device 23.1 MiB 0.86 1064 61.9 MiB 0.29 0.00 2.6272 -104.017 -2.6272 2.6272 0.99 0.000309967 0.000249142 0.0276044 0.0230135 40 2489 21 6.99608e+06 206020 706193. 2443.58 3.43 0.149242 0.13126 26914 176310 -1 2297 21 1444 1556 178225 36775 0 0 178225 36775 1556 1466 0 0 5141 4438 0 0 9184 6040 0 0 1556 1489 0 0 82408 11513 0 0 78380 11829 0 0 1556 0 0 112 88 89 2079 0 0 3.30957 3.30957 -130.141 -3.30957 0 0 926341. 3205.33 0.36 0.39 0.16 -1 -1 0.36 0.0324454 0.0299492 90 57 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 9.12 vpr 61.99 MiB 0.02 6980 -1 -1 1 0.02 -1 -1 29868 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63480 32 32 387 306 1 231 80 17 17 289 -1 unnamed_device 23.2 MiB 1.26 925 62.0 MiB 0.15 0.01 2.87709 -105.46 -2.87709 2.87709 1.17 0.000371637 0.000298587 0.0260645 0.0213714 46 2970 43 6.99608e+06 235451 828058. 2865.25 3.44 0.147045 0.128713 28066 200906 -1 2065 26 2165 2974 237024 51309 0 0 237024 51309 2974 2528 0 0 8916 7935 0 0 15733 9897 0 0 2974 2601 0 0 108456 12974 0 0 97971 15374 0 0 2974 0 0 809 849 782 7132 0 0 3.65646 3.65646 -138.397 -3.65646 0 0 1.01997e+06 3529.29 0.36 0.12 0.15 -1 -1 0.36 0.0299616 0.0267219 101 55 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 12.20 vpr 62.06 MiB 0.02 7232 -1 -1 1 0.02 -1 -1 29948 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 408 320 1 254 82 17 17 289 -1 unnamed_device 23.4 MiB 1.00 1217 62.1 MiB 0.18 0.00 3.52284 -133.146 -3.52284 3.52284 0.97 0.000387544 0.000312126 0.026926 0.0220555 40 3638 49 6.99608e+06 264882 706193. 2443.58 7.14 0.176405 0.154028 26914 176310 -1 3166 28 3289 4290 554217 131793 0 0 554217 131793 4290 3753 0 0 12983 11578 0 0 26781 15431 0 0 4290 3872 0 0 255866 49554 0 0 250007 47605 0 0 4290 0 0 1001 1151 1121 9903 0 0 5.12911 5.12911 -188.899 -5.12911 0 0 926341. 3205.33 0.32 0.20 0.18 -1 -1 0.32 0.0366065 0.0330887 111 60 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 13.65 vpr 61.26 MiB 0.04 6712 -1 -1 1 0.01 -1 -1 29948 -1 -1 14 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62732 29 32 276 232 1 161 75 17 17 289 -1 unnamed_device 22.7 MiB 3.23 566 61.3 MiB 0.09 0.00 2.43785 -80.2309 -2.43785 2.43785 0.85 0.000261112 0.000209987 0.0160093 0.0131913 44 1878 23 6.99608e+06 206020 787024. 2723.27 7.10 0.146183 0.12607 27778 195446 -1 1265 21 1143 1582 98816 24307 0 0 98816 24307 1582 1273 0 0 5026 4423 0 0 8197 5813 0 0 1582 1296 0 0 42455 5223 0 0 39974 6279 0 0 1582 0 0 439 425 253 3613 0 0 2.82132 2.82132 -95.4637 -2.82132 0 0 997811. 3452.63 0.38 0.26 0.21 -1 -1 0.38 0.0223092 0.0202812 69 21 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 28.78 vpr 62.31 MiB 0.04 7024 -1 -1 1 0.02 -1 -1 30012 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 402 316 1 243 80 17 17 289 -1 unnamed_device 23.6 MiB 3.01 1156 62.3 MiB 0.40 0.00 2.91309 -109.974 -2.91309 2.91309 1.11 0.000516517 0.000432282 0.0306518 0.0254511 36 4396 48 6.99608e+06 235451 648988. 2245.63 21.51 0.285505 0.249732 26050 158493 -1 3248 30 3497 5172 609873 149809 0 0 609873 149809 5172 4690 0 0 15653 13958 0 0 28327 17892 0 0 5172 4785 0 0 275235 55265 0 0 280314 53219 0 0 5172 0 0 1675 2683 2604 16708 0 0 4.28591 4.28591 -160.988 -4.28591 0 0 828058. 2865.25 0.33 0.24 0.18 -1 -1 0.33 0.0387834 0.034851 107 60 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 12.92 vpr 62.12 MiB 0.06 7096 -1 -1 1 0.02 -1 -1 30056 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63608 32 32 384 304 1 230 81 17 17 289 -1 unnamed_device 23.4 MiB 1.55 870 62.1 MiB 0.15 0.00 2.7325 -100.574 -2.7325 2.7325 1.08 0.000298086 0.000243347 0.0300171 0.0247437 54 2301 26 6.99608e+06 250167 949917. 3286.91 7.20 0.218874 0.190378 29506 232905 -1 1672 20 1759 2199 130732 32149 0 0 130732 32149 2199 1850 0 0 6907 6114 0 0 11620 7722 0 0 2199 1930 0 0 54202 7462 0 0 53605 7071 0 0 2199 0 0 440 316 380 4277 0 0 3.26951 3.26951 -123.417 -3.26951 0 0 1.17392e+06 4061.99 0.46 0.07 0.28 -1 -1 0.46 0.0224993 0.0200959 99 54 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 14.78 vpr 62.00 MiB 0.02 6824 -1 -1 1 0.02 -1 -1 29792 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63492 32 32 340 285 1 218 79 17 17 289 -1 unnamed_device 23.1 MiB 1.08 947 62.0 MiB 0.72 0.00 2.96539 -101.557 -2.96539 2.96539 1.08 0.000320876 0.000257568 0.0398585 0.0338542 46 2713 50 6.99608e+06 220735 828058. 2865.25 8.43 0.245503 0.214369 28066 200906 -1 1979 21 1793 2222 186845 42956 0 0 186845 42956 2222 1865 0 0 7303 6462 0 0 11778 8283 0 0 2222 2036 0 0 86115 11255 0 0 77205 13055 0 0 2222 0 0 429 474 522 4779 0 0 3.41896 3.41896 -122.194 -3.41896 0 0 1.01997e+06 3529.29 0.39 0.65 0.23 -1 -1 0.39 0.0280119 0.0253129 91 62 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 10.42 vpr 61.03 MiB 0.02 6648 -1 -1 1 0.01 -1 -1 29684 -1 -1 11 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62496 30 32 229 211 1 139 73 17 17 289 -1 unnamed_device 22.4 MiB 2.76 557 61.0 MiB 0.08 0.00 1.94236 -71.8766 -1.94236 1.94236 1.10 0.000194825 0.000155646 0.0145447 0.0120202 36 1740 46 6.99608e+06 161872 648988. 2245.63 3.57 0.115762 0.101732 26050 158493 -1 1242 23 901 993 83458 19163 0 0 83458 19163 993 929 0 0 3294 2866 0 0 5227 3721 0 0 993 930 0 0 34935 5719 0 0 38016 4998 0 0 993 0 0 92 98 62 1429 0 0 2.10323 2.10323 -90.5431 -2.10323 0 0 828058. 2865.25 0.29 0.32 0.15 -1 -1 0.29 0.019746 0.0177299 56 29 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 13.26 vpr 62.00 MiB 0.03 6888 -1 -1 1 0.02 -1 -1 30012 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63492 31 32 337 282 1 210 79 17 17 289 -1 unnamed_device 23.4 MiB 2.36 828 62.0 MiB 0.84 0.02 3.08859 -107.101 -3.08859 3.08859 1.08 0.000560444 0.000491218 0.0217949 0.0189995 40 2252 25 6.99608e+06 235451 706193. 2443.58 5.80 0.1816 0.159479 26914 176310 -1 2068 23 1648 2014 196391 45397 0 0 196391 45397 2014 1872 0 0 6577 5688 0 0 11908 7663 0 0 2014 1903 0 0 86783 14291 0 0 87095 13980 0 0 2014 0 0 366 288 307 3949 0 0 3.52016 3.52016 -130.934 -3.52016 0 0 926341. 3205.33 0.37 0.10 0.21 -1 -1 0.37 0.0234032 0.0209694 92 55 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 12.87 vpr 62.22 MiB 0.02 7012 -1 -1 1 0.01 -1 -1 29796 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63712 32 32 367 284 1 215 87 17 17 289 -1 unnamed_device 23.4 MiB 0.86 1156 62.2 MiB 0.39 0.01 3.29568 -124.683 -3.29568 3.29568 1.01 0.000346827 0.000277588 0.0252574 0.0214783 40 2775 25 6.99608e+06 338461 706193. 2443.58 7.58 0.240046 0.211611 26914 176310 -1 2557 22 2311 3161 308835 61468 0 0 308835 61468 3161 2597 0 0 10293 9154 0 0 19365 12389 0 0 3161 2706 0 0 142208 15988 0 0 130647 18634 0 0 3161 0 0 850 789 894 8020 0 0 4.50705 4.50705 -164.034 -4.50705 0 0 926341. 3205.33 0.35 0.14 0.21 -1 -1 0.35 0.0309605 0.0280468 97 31 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 14.21 vpr 62.19 MiB 0.03 6940 -1 -1 1 0.01 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 461 376 1 303 86 17 17 289 -1 unnamed_device 23.8 MiB 1.91 1297 62.2 MiB 0.25 0.00 3.14198 -113.485 -3.14198 3.14198 1.05 0.000415417 0.000335272 0.0406673 0.033384 48 3465 26 6.99608e+06 323745 865456. 2994.66 8.38 0.277948 0.242055 28354 207349 -1 2820 21 2329 2641 246000 52605 0 0 246000 52605 2641 2428 0 0 9144 8068 0 0 15400 10970 0 0 2641 2596 0 0 107984 14402 0 0 108190 14141 0 0 2641 0 0 312 234 350 4161 0 0 4.03065 4.03065 -150.278 -4.03065 0 0 1.05005e+06 3633.38 0.43 0.12 0.25 -1 -1 0.43 0.030864 0.0277422 138 108 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 10.24 vpr 60.98 MiB 0.14 6652 -1 -1 1 0.02 -1 -1 29864 -1 -1 15 26 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62444 26 32 205 193 1 125 73 17 17 289 -1 unnamed_device 22.5 MiB 1.02 444 61.0 MiB 0.07 0.00 2.3067 -68.6024 -2.3067 2.3067 0.97 0.00021695 0.000175135 0.0137555 0.0111973 36 1511 34 6.99608e+06 220735 648988. 2245.63 5.49 0.0944369 0.0817758 26050 158493 -1 1115 21 729 856 67095 17126 0 0 67095 17126 856 783 0 0 2964 2592 0 0 4675 3404 0 0 856 806 0 0 28859 4672 0 0 28885 4869 0 0 856 0 0 127 119 138 1512 0 0 2.66797 2.66797 -87.9265 -2.66797 0 0 828058. 2865.25 0.35 0.05 0.19 -1 -1 0.35 0.0128552 0.011372 52 21 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 23.90 vpr 61.63 MiB 0.15 6968 -1 -1 1 0.02 -1 -1 29772 -1 -1 12 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63112 32 32 334 252 1 181 76 17 17 289 -1 unnamed_device 23.1 MiB 1.48 778 61.6 MiB 0.44 0.00 3.28415 -111.563 -3.28415 3.28415 0.93 0.000331033 0.000266414 0.0367163 0.0322067 40 2636 25 6.99608e+06 176588 706193. 2443.58 17.94 0.247379 0.217343 26914 176310 -1 2092 20 1759 2650 256229 62056 0 0 256229 62056 2650 2225 0 0 8834 7793 0 0 16434 10666 0 0 2650 2293 0 0 119777 18987 0 0 105884 20092 0 0 2650 0 0 891 695 1074 7656 0 0 4.15931 4.15931 -153.041 -4.15931 0 0 926341. 3205.33 0.33 0.10 0.18 -1 -1 0.33 0.0202857 0.0181744 75 -1 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 9.46 vpr 60.90 MiB 0.02 6548 -1 -1 1 0.01 -1 -1 29664 -1 -1 8 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62364 32 32 200 183 1 119 72 17 17 289 -1 unnamed_device 22.3 MiB 0.53 432 60.9 MiB 0.08 0.00 1.68521 -61.3737 -1.68521 1.68521 0.93 0.000199779 0.000160792 0.0139874 0.0115104 46 1134 24 6.99608e+06 117725 828058. 2865.25 5.55 0.120266 0.104684 28066 200906 -1 887 21 614 786 64664 17216 0 0 64664 17216 786 654 0 0 2663 2341 0 0 4681 3107 0 0 786 766 0 0 27672 5123 0 0 28076 5225 0 0 786 0 0 172 163 94 1621 0 0 1.68342 1.68342 -73.4851 -1.68342 0 0 1.01997e+06 3529.29 0.38 0.04 0.24 -1 -1 0.38 0.0111669 0.00987511 44 -1 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 24.69 vpr 62.04 MiB 0.03 6948 -1 -1 1 0.01 -1 -1 30108 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63524 32 32 377 289 1 218 80 17 17 289 -1 unnamed_device 23.3 MiB 1.80 961 62.0 MiB 0.12 0.00 3.16045 -116.759 -3.16045 3.16045 1.16 0.000420131 0.000348644 0.0218707 0.0182295 40 3007 45 6.99608e+06 235451 706193. 2443.58 19.15 0.26047 0.228882 26914 176310 -1 2590 26 2367 3343 337106 71495 0 0 337106 71495 3343 2771 0 0 10044 8781 0 0 19921 11839 0 0 3343 2897 0 0 150705 22189 0 0 149750 23018 0 0 3343 0 0 976 937 967 8523 0 0 4.16042 4.16042 -160.014 -4.16042 0 0 926341. 3205.33 0.37 0.15 0.22 -1 -1 0.37 0.0303354 0.0271537 94 21 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 21.67 vpr 61.82 MiB 0.02 6984 -1 -1 1 0.02 -1 -1 29776 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63308 32 32 338 254 1 188 91 17 17 289 -1 unnamed_device 23.2 MiB 0.83 840 61.8 MiB 0.16 0.01 2.6432 -95.0631 -2.6432 2.6432 1.09 0.000358826 0.000291907 0.0229515 0.0190163 40 2379 40 6.99608e+06 397324 706193. 2443.58 16.96 0.252337 0.221834 26914 176310 -1 2026 25 1589 2279 280847 87527 0 0 280847 87527 2279 1776 0 0 7941 6973 0 0 14916 9848 0 0 2279 1864 0 0 131344 33061 0 0 122088 34005 0 0 2279 0 0 690 785 785 6519 0 0 3.08582 3.08582 -123.889 -3.08582 0 0 926341. 3205.33 0.36 0.23 0.21 -1 -1 0.36 0.0278416 0.0250363 86 -1 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 11.93 vpr 62.27 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30180 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 408 320 1 256 83 17 17 289 -1 unnamed_device 23.6 MiB 1.30 1080 62.3 MiB 0.13 0.00 3.19775 -117.278 -3.19775 3.19775 1.06 0.000385191 0.00031147 0.0223987 0.0186016 46 3521 27 6.99608e+06 279598 828058. 2865.25 6.09 0.221374 0.193765 28066 200906 -1 2595 24 2578 3638 313973 62643 0 0 313973 62643 3638 3154 0 0 10630 9530 0 0 18848 11594 0 0 3638 3184 0 0 138412 18025 0 0 138807 17156 0 0 3638 0 0 1060 1063 1126 9479 0 0 4.15242 4.15242 -157.373 -4.15242 0 0 1.01997e+06 3529.29 0.41 0.36 0.23 -1 -1 0.41 0.0317847 0.0286287 114 54 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 14.43 vpr 61.36 MiB 0.13 6652 -1 -1 1 0.02 -1 -1 29812 -1 -1 11 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62828 32 32 295 247 1 175 75 17 17 289 -1 unnamed_device 22.7 MiB 1.96 692 61.4 MiB 0.34 0.00 2.4829 -87.1621 -2.4829 2.4829 1.07 0.000290477 0.000233059 0.0311131 0.0264329 38 2369 32 6.99608e+06 161872 678818. 2348.85 6.39 0.153368 0.135419 26626 170182 -1 1611 21 1493 2034 143573 33436 0 0 143573 33436 2034 1632 0 0 6501 5708 0 0 10005 7027 0 0 2034 1696 0 0 63139 8321 0 0 59860 9052 0 0 2034 0 0 541 381 494 4670 0 0 3.34552 3.34552 -121.582 -3.34552 0 0 902133. 3121.57 0.35 0.89 0.20 -1 -1 0.35 0.0264121 0.024034 72 31 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 20.48 vpr 61.55 MiB 0.02 6772 -1 -1 1 0.02 -1 -1 29812 -1 -1 13 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63032 30 32 299 247 1 173 75 17 17 289 -1 unnamed_device 22.8 MiB 10.76 674 61.6 MiB 0.24 0.00 3.04939 -100.715 -3.04939 3.04939 1.36 0.000288294 0.000230476 0.0228953 0.0189983 58 1864 31 6.99608e+06 191304 997811. 3452.63 3.93 0.135039 0.11858 30370 251734 -1 1458 23 1788 2661 199950 47041 0 0 199950 47041 2661 2135 0 0 8565 7592 0 0 15853 10327 0 0 2661 2280 0 0 82687 11295 0 0 87523 13412 0 0 2661 0 0 873 1013 736 7379 0 0 3.32751 3.32751 -124.692 -3.32751 0 0 1.25153e+06 4330.55 0.34 0.07 0.31 -1 -1 0.34 0.0137429 0.012163 73 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 18.05 vpr 61.43 MiB 0.02 6892 -1 -1 1 0.01 -1 -1 29960 -1 -1 15 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62900 28 32 283 237 1 163 75 17 17 289 -1 unnamed_device 22.8 MiB 1.81 691 61.4 MiB 0.72 0.02 3.06474 -95.1971 -3.06474 3.06474 1.05 0.000416213 0.000361737 0.0242915 0.0206885 36 2654 50 6.99608e+06 220735 648988. 2245.63 11.80 0.192822 0.169405 26050 158493 -1 1838 22 1391 2075 241226 49172 0 0 241226 49172 2075 1756 0 0 6736 5785 0 0 11941 7873 0 0 2075 1799 0 0 112314 15865 0 0 106085 16094 0 0 2075 0 0 684 816 639 5778 0 0 3.56411 3.56411 -125.617 -3.56411 0 0 828058. 2865.25 0.33 0.29 0.19 -1 -1 0.33 0.0263154 0.0237957 72 27 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 11.50 vpr 61.41 MiB 0.02 6668 -1 -1 1 0.01 -1 -1 29700 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62884 32 32 284 226 1 160 74 17 17 289 -1 unnamed_device 22.9 MiB 0.53 874 61.4 MiB 0.11 0.00 2.36125 -98.1386 -2.36125 2.36125 1.04 0.000290655 0.000235371 0.0211113 0.0173894 44 2171 25 6.99608e+06 147157 787024. 2723.27 6.82 0.179066 0.157778 27778 195446 -1 1936 20 1547 2377 200270 40166 0 0 200270 40166 2377 2043 0 0 7265 6565 0 0 13916 8275 0 0 2377 2059 0 0 92573 9395 0 0 81762 11829 0 0 2377 0 0 830 659 908 6880 0 0 2.87602 2.87602 -125.518 -2.87602 0 0 997811. 3452.63 0.40 0.62 0.24 -1 -1 0.40 0.0202834 0.0183383 64 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 13.18 vpr 61.89 MiB 0.02 6944 -1 -1 1 0.02 -1 -1 30140 -1 -1 13 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63380 31 32 305 251 1 185 76 17 17 289 -1 unnamed_device 23.2 MiB 1.20 959 61.9 MiB 0.10 0.00 2.48195 -98.0758 -2.48195 2.48195 1.07 0.000300514 0.000243011 0.017679 0.0144537 44 2512 22 6.99608e+06 191304 787024. 2723.27 8.22 0.174114 0.151416 27778 195446 -1 2105 19 1362 1758 157069 30735 0 0 157069 30735 1758 1501 0 0 5432 4804 0 0 9181 6135 0 0 1758 1530 0 0 78502 7111 0 0 60438 9654 0 0 1758 0 0 396 375 471 4110 0 0 2.85602 2.85602 -122.66 -2.85602 0 0 997811. 3452.63 0.40 0.07 0.23 -1 -1 0.40 0.017748 0.0158478 76 26 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 16.60 vpr 62.00 MiB 0.02 6888 -1 -1 1 0.01 -1 -1 29864 -1 -1 16 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63488 29 32 316 268 1 197 77 17 17 289 -1 unnamed_device 23.3 MiB 3.77 745 62.0 MiB 0.53 0.00 2.46925 -82.5255 -2.46925 2.46925 0.94 0.000302748 0.000232321 0.0290031 0.0244124 48 1902 26 6.99608e+06 235451 865456. 2994.66 8.90 0.209609 0.18163 28354 207349 -1 1657 20 1400 1698 142365 34593 0 0 142365 34593 1698 1518 0 0 5908 5207 0 0 10317 7175 0 0 1698 1557 0 0 63700 9090 0 0 59044 10046 0 0 1698 0 0 298 128 402 3422 0 0 2.85732 2.85732 -104.841 -2.85732 0 0 1.05005e+06 3633.38 0.41 0.07 0.25 -1 -1 0.41 0.0192809 0.0172264 86 55 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 15.37 vpr 62.42 MiB 0.02 7032 -1 -1 1 0.02 -1 -1 30124 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 424 311 1 243 84 17 17 289 -1 unnamed_device 23.8 MiB 1.74 1239 62.4 MiB 0.65 0.01 3.13845 -119.607 -3.13845 3.13845 1.00 0.000479073 0.000411485 0.0376492 0.0318452 48 3122 32 6.99608e+06 294314 865456. 2994.66 8.24 0.249422 0.217928 28354 207349 -1 2717 21 2285 3543 310560 60957 0 0 310560 60957 3543 2684 0 0 11318 9811 0 0 22237 13702 0 0 3543 2876 0 0 142899 14806 0 0 127020 17078 0 0 3543 0 0 1258 2098 1974 14807 0 0 3.91782 3.91782 -153.346 -3.91782 0 0 1.05005e+06 3633.38 0.31 0.79 0.15 -1 -1 0.31 0.0314823 0.0286526 106 26 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 11.91 vpr 62.37 MiB 0.02 7176 -1 -1 1 0.02 -1 -1 29900 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 404 318 1 252 82 17 17 289 -1 unnamed_device 23.8 MiB 1.60 1072 62.4 MiB 0.83 0.01 3.32748 -122.12 -3.32748 3.32748 1.09 0.000750336 0.000661377 0.0520407 0.0446357 42 3919 41 6.99608e+06 264882 744469. 2576.02 5.15 0.212063 0.186382 27202 183097 -1 2767 26 2897 3786 385445 79436 0 0 385445 79436 3786 3324 0 0 12125 10938 0 0 22756 14560 0 0 3786 3458 0 0 171072 24258 0 0 171920 22898 0 0 3786 0 0 889 1050 1067 8752 0 0 4.32625 4.32625 -155.117 -4.32625 0 0 949917. 3286.91 0.41 0.51 0.20 -1 -1 0.41 0.0449787 0.0411344 110 62 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 23.55 vpr 62.16 MiB 0.02 6996 -1 -1 1 0.01 -1 -1 30068 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63652 31 32 355 304 1 224 79 17 17 289 -1 unnamed_device 23.5 MiB 1.50 1096 62.2 MiB 0.08 0.00 2.82209 -105.758 -2.82209 2.82209 0.80 0.000163472 0.000129068 0.0137019 0.0110969 40 2552 18 6.99608e+06 235451 706193. 2443.58 18.13 0.228886 0.200137 26914 176310 -1 2363 20 1510 1533 158552 32481 0 0 158552 32481 1533 1520 0 0 5151 4528 0 0 9069 6065 0 0 1533 1521 0 0 69945 9773 0 0 71321 9074 0 0 1533 0 0 23 23 18 1663 0 0 3.45616 3.45616 -131.844 -3.45616 0 0 926341. 3205.33 0.32 0.46 0.19 -1 -1 0.32 0.0213278 0.0193899 99 77 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 12.81 vpr 62.12 MiB 0.03 7036 -1 -1 1 0.02 -1 -1 29948 -1 -1 19 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63616 31 32 393 311 1 242 82 17 17 289 -1 unnamed_device 23.2 MiB 1.21 1037 62.1 MiB 0.14 0.00 2.97859 -104.658 -2.97859 2.97859 0.94 0.000191428 0.000152027 0.0248467 0.020444 48 2842 24 6.99608e+06 279598 865456. 2994.66 7.64 0.21125 0.183924 28354 207349 -1 2224 23 2039 2739 309735 85287 0 0 309735 85287 2739 2358 0 0 9330 8170 0 0 16494 11254 0 0 2739 2395 0 0 136456 30011 0 0 141977 31099 0 0 2739 0 0 700 805 572 6586 0 0 3.70966 3.70966 -138.646 -3.70966 0 0 1.05005e+06 3633.38 0.36 0.32 0.23 -1 -1 0.36 0.0345073 0.0311377 106 59 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 14.22 vpr 62.11 MiB 0.03 7132 -1 -1 1 0.01 -1 -1 30216 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63596 31 32 457 373 1 302 86 17 17 289 -1 unnamed_device 23.7 MiB 1.81 1355 62.1 MiB 0.21 0.00 3.88027 -131.403 -3.88027 3.88027 1.07 0.000406533 0.000324908 0.0366357 0.029708 46 4231 39 6.99608e+06 338461 828058. 2865.25 8.79 0.222633 0.197039 28066 200906 -1 2888 23 2790 3244 280646 58961 0 0 280646 58961 3244 2996 0 0 10039 8786 0 0 17104 11165 0 0 3244 3065 0 0 124086 16600 0 0 122929 16349 0 0 3244 0 0 454 366 464 5482 0 0 4.86304 4.86304 -169.909 -4.86304 0 0 1.01997e+06 3529.29 0.27 0.07 0.24 -1 -1 0.27 0.0163052 0.0144632 138 111 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 15.65 vpr 62.12 MiB 0.02 7236 -1 -1 1 0.02 -1 -1 29856 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63608 31 32 415 335 1 257 81 17 17 289 -1 unnamed_device 23.6 MiB 3.87 1126 62.1 MiB 0.19 0.00 4.40043 -134.911 -4.40043 4.40043 1.09 0.00038056 0.000307267 0.0332845 0.0274585 40 3992 45 6.99608e+06 264882 706193. 2443.58 7.27 0.193805 0.169725 26914 176310 -1 2985 22 2373 3146 292411 63706 0 0 292411 63706 3146 2865 0 0 10794 9318 0 0 18273 12754 0 0 3146 2903 0 0 123915 18681 0 0 133137 17185 0 0 3146 0 0 773 887 630 7276 0 0 5.5838 5.5838 -183.281 -5.5838 0 0 926341. 3205.33 0.37 0.13 0.21 -1 -1 0.37 0.0294294 0.0264845 116 86 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 12.83 vpr 62.16 MiB 0.02 7024 -1 -1 1 0.01 -1 -1 29904 -1 -1 20 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63648 31 32 393 311 1 241 83 17 17 289 -1 unnamed_device 23.2 MiB 2.80 976 62.2 MiB 0.62 0.00 3.02439 -106.958 -3.02439 3.02439 1.04 0.000308609 0.000252107 0.0405611 0.034533 46 2864 46 6.99608e+06 294314 828058. 2865.25 5.34 0.182033 0.159018 28066 200906 -1 1986 20 2035 2658 171983 40618 0 0 171983 40618 2658 2287 0 0 8338 7450 0 0 13436 9288 0 0 2658 2410 0 0 76644 8233 0 0 68249 10950 0 0 2658 0 0 623 721 724 6398 0 0 3.30256 3.30256 -125.961 -3.30256 0 0 1.01997e+06 3529.29 0.42 0.65 0.24 -1 -1 0.42 0.0300928 0.027276 107 58 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 25.74 vpr 62.43 MiB 0.02 7016 -1 -1 1 0.02 -1 -1 30192 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 23.7 MiB 0.95 1004 62.4 MiB 0.32 0.00 3.16045 -115.972 -3.16045 3.16045 0.93 0.000370198 0.000297742 0.0354837 0.029449 46 3021 32 6.99608e+06 264882 828058. 2865.25 21.28 0.296578 0.259732 28066 200906 -1 2349 21 2230 2867 226896 48817 0 0 226896 48817 2867 2521 0 0 8758 7902 0 0 14903 9552 0 0 2867 2678 0 0 104764 12134 0 0 92737 14030 0 0 2867 0 0 637 598 693 6711 0 0 4.42202 4.42202 -152.731 -4.42202 0 0 1.01997e+06 3529.29 0.42 0.11 0.19 -1 -1 0.42 0.0279534 0.0252208 111 42 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 16.54 vpr 62.51 MiB 0.03 7228 -1 -1 1 0.01 -1 -1 30104 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 497 381 1 313 86 17 17 289 -1 unnamed_device 24.2 MiB 2.97 1470 62.5 MiB 0.71 0.01 4.02333 -145.553 -4.02333 4.02333 0.84 0.000573489 0.000453364 0.0500578 0.0423319 48 4289 29 6.99608e+06 323745 865456. 2994.66 8.97 0.308938 0.272074 28354 207349 -1 3473 28 3650 4904 634869 159394 0 0 634869 159394 4904 4173 0 0 15781 14100 0 0 32577 19710 0 0 4904 4323 0 0 289402 59985 0 0 287301 57103 0 0 4904 0 0 1254 1623 1651 13134 0 0 4.928 4.928 -188.767 -4.928 0 0 1.05005e+06 3633.38 0.35 0.72 0.26 -1 -1 0.35 0.0487114 0.0443105 140 91 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 8.57 vpr 61.49 MiB 0.02 6708 -1 -1 1 0.02 -1 -1 29936 -1 -1 13 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62964 31 32 307 252 1 181 76 17 17 289 -1 unnamed_device 23.0 MiB 0.80 653 61.5 MiB 0.52 0.00 2.6383 -95.3745 -2.6383 2.6383 0.94 0.000291661 0.000238188 0.0315762 0.0268258 40 2158 35 6.99608e+06 191304 706193. 2443.58 3.94 0.16325 0.144447 26914 176310 -1 1780 30 1947 2473 303951 99087 0 0 303951 99087 2473 2214 0 0 7953 6900 0 0 18256 10528 0 0 2473 2305 0 0 137897 38962 0 0 134899 38178 0 0 2473 0 0 526 596 663 5358 0 0 3.40187 3.40187 -131.477 -3.40187 0 0 926341. 3205.33 0.33 0.13 0.17 -1 -1 0.33 0.0234299 0.0207992 75 24 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 16.35 vpr 62.27 MiB 0.03 6980 -1 -1 1 0.02 -1 -1 29980 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 397 313 1 243 81 17 17 289 -1 unnamed_device 23.4 MiB 0.85 1196 62.3 MiB 0.53 0.01 3.51984 -122.576 -3.51984 3.51984 0.89 0.000450064 0.000376536 0.021493 0.0186853 44 3660 38 6.99608e+06 264882 787024. 2723.27 10.95 0.288999 0.255393 27778 195446 -1 2628 30 2469 2961 372097 123637 0 0 372097 123637 2961 2726 0 0 8707 7625 0 0 16273 10327 0 0 2961 2794 0 0 183877 49582 0 0 157318 50583 0 0 2961 0 0 492 706 623 6328 0 0 4.33331 4.33331 -161.906 -4.33331 0 0 997811. 3452.63 0.40 0.18 0.23 -1 -1 0.40 0.0337791 0.0300617 106 59 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 13.95 vpr 62.35 MiB 0.18 7000 -1 -1 1 0.02 -1 -1 30208 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 398 314 1 246 83 17 17 289 -1 unnamed_device 23.7 MiB 2.34 1109 62.4 MiB 0.72 0.01 3.06359 -109.988 -3.06359 3.06359 1.12 0.000451112 0.000374642 0.0394018 0.0341911 44 3384 45 6.99608e+06 279598 787024. 2723.27 4.50 0.172601 0.152976 27778 195446 -1 2525 23 2066 2935 245258 53614 0 0 245258 53614 2935 2477 0 0 9191 8186 0 0 16206 10707 0 0 2935 2537 0 0 108427 14112 0 0 105564 15595 0 0 2935 0 0 869 959 857 7662 0 0 4.08556 4.08556 -147.38 -4.08556 0 0 997811. 3452.63 0.41 0.75 0.23 -1 -1 0.41 0.0305463 0.0275312 107 54 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 33.60 vpr 61.64 MiB 0.22 6884 -1 -1 1 0.02 -1 -1 29824 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63120 32 32 346 258 1 186 77 17 17 289 -1 unnamed_device 23.1 MiB 1.29 944 61.6 MiB 0.16 0.00 2.93179 -113.266 -2.93179 2.93179 1.09 0.000370894 0.000307291 0.0281824 0.0233787 46 2710 27 6.99608e+06 191304 828058. 2865.25 27.37 0.28914 0.250581 28066 200906 -1 2313 20 1965 3333 283385 56138 0 0 283385 56138 3333 2580 0 0 9873 8885 0 0 18002 10889 0 0 3333 2799 0 0 127749 15280 0 0 121095 15705 0 0 3333 0 0 1368 1439 1820 12006 0 0 3.96176 3.96176 -155.83 -3.96176 0 0 1.01997e+06 3529.29 0.36 0.24 0.25 -1 -1 0.36 0.0244481 0.0221311 78 -1 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 16.44 vpr 62.26 MiB 0.17 7268 -1 -1 1 0.02 -1 -1 30112 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 425 344 1 266 83 17 17 289 -1 unnamed_device 23.5 MiB 2.00 1099 62.3 MiB 0.14 0.00 2.70344 -102.521 -2.70344 2.70344 1.12 0.00037004 0.000299172 0.0205247 0.0168629 50 2687 23 6.99608e+06 279598 902133. 3121.57 9.52 0.277979 0.247074 28642 213929 -1 2260 20 2128 2521 186291 41975 0 0 186291 41975 2521 2230 0 0 8208 7224 0 0 13511 9366 0 0 2521 2285 0 0 78281 9940 0 0 81249 10930 0 0 2521 0 0 393 469 484 5139 0 0 3.70471 3.70471 -134.953 -3.70471 0 0 1.08113e+06 3740.92 0.38 0.06 0.26 -1 -1 0.38 0.0143378 0.0128079 120 81 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 34.62 vpr 62.20 MiB 0.25 6880 -1 -1 1 0.02 -1 -1 29808 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63696 32 32 396 312 1 242 84 17 17 289 -1 unnamed_device 23.3 MiB 1.76 1088 62.2 MiB 0.18 0.00 3.02259 -112.724 -3.02259 3.02259 1.10 0.000401624 0.000328269 0.0288935 0.0238574 44 3362 48 6.99608e+06 294314 787024. 2723.27 27.24 0.345716 0.305986 27778 195446 -1 2470 24 2419 3305 349814 89089 0 0 349814 89089 3305 2607 0 0 10023 8769 0 0 18382 11730 0 0 3305 2753 0 0 165255 30580 0 0 149544 32650 0 0 3305 0 0 886 1009 1255 9843 0 0 3.51216 3.51216 -140.153 -3.51216 0 0 997811. 3452.63 0.42 0.18 0.24 -1 -1 0.42 0.0547223 0.05143 106 58 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 26.90 vpr 62.37 MiB 0.03 7052 -1 -1 1 0.02 -1 -1 30040 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 406 319 1 253 81 17 17 289 -1 unnamed_device 23.7 MiB 1.18 1164 62.4 MiB 0.84 0.01 2.70344 -101.731 -2.70344 2.70344 0.95 0.000426108 0.000377914 0.0442655 0.0379133 40 3542 27 6.99608e+06 250167 706193. 2443.58 20.54 0.28259 0.248942 26914 176310 -1 3053 27 3128 4160 459701 96568 0 0 459701 96568 4160 3805 0 0 13135 11430 0 0 24880 15358 0 0 4160 3912 0 0 200986 32077 0 0 212380 29986 0 0 4160 0 0 1032 1589 1468 10727 0 0 3.48852 3.48852 -142.228 -3.48852 0 0 926341. 3205.33 0.32 0.88 0.23 -1 -1 0.32 0.0404892 0.0369313 108 61 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 11.79 vpr 62.18 MiB 0.03 6912 -1 -1 1 0.02 -1 -1 30128 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 377 289 1 218 80 17 17 289 -1 unnamed_device 23.4 MiB 1.59 886 62.2 MiB 0.95 0.02 3.17765 -114.651 -3.17765 3.17765 0.98 0.000583107 0.000479413 0.0397391 0.0340535 48 2911 46 6.99608e+06 235451 865456. 2994.66 5.65 0.187694 0.165218 28354 207349 -1 2284 23 2058 2955 259273 56538 0 0 259273 56538 2955 2612 0 0 9269 8309 0 0 17724 11037 0 0 2955 2686 0 0 112623 15348 0 0 113747 16546 0 0 2955 0 0 897 821 888 7697 0 0 4.42632 4.42632 -155.248 -4.42632 0 0 1.05005e+06 3633.38 0.42 0.11 0.25 -1 -1 0.42 0.0260777 0.02336 94 21 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 28.31 vpr 62.09 MiB 0.03 7016 -1 -1 1 0.02 -1 -1 30136 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63580 32 32 408 320 1 251 82 17 17 289 -1 unnamed_device 23.5 MiB 1.02 909 62.1 MiB 0.62 0.01 3.18865 -115.126 -3.18865 3.18865 1.02 0.000409186 0.000332159 0.0393321 0.0340425 40 3328 49 6.99608e+06 264882 706193. 2443.58 23.21 0.32564 0.287227 26914 176310 -1 2414 23 2428 2932 296331 67940 0 0 296331 67940 2932 2567 0 0 9705 8710 0 0 17216 11413 0 0 2932 2597 0 0 141257 20391 0 0 122289 22262 0 0 2932 0 0 504 425 495 5410 0 0 4.71186 4.71186 -159.283 -4.71186 0 0 926341. 3205.33 0.38 0.13 0.21 -1 -1 0.38 0.0289589 0.0259323 110 50 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 15.44 vpr 62.12 MiB 0.03 7176 -1 -1 1 0.02 -1 -1 30132 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63608 31 32 451 369 1 290 85 17 17 289 -1 unnamed_device 23.7 MiB 2.17 1397 62.1 MiB 0.74 0.02 3.27348 -117.46 -3.27348 3.27348 0.99 0.000388734 0.000320566 0.0487517 0.0410378 40 3984 23 6.99608e+06 323745 706193. 2443.58 7.85 0.196865 0.172965 26914 176310 -1 3248 25 2640 3129 364688 74254 0 0 364688 74254 3129 2921 0 0 10441 9130 0 0 18944 12473 0 0 3129 3005 0 0 169097 23407 0 0 159948 23318 0 0 3129 0 0 489 478 567 5701 0 0 4.52885 4.52885 -161.24 -4.52885 0 0 926341. 3205.33 0.33 0.14 0.18 -1 -1 0.33 0.0294795 0.026244 132 110 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 16.94 vpr 62.11 MiB 0.03 7080 -1 -1 1 0.01 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 433 347 1 281 84 17 17 289 -1 unnamed_device 23.6 MiB 1.43 1253 62.1 MiB 0.92 0.01 3.10975 -114.928 -3.10975 3.10975 1.12 0.000656258 0.000570381 0.0517114 0.0453925 52 3846 42 6.99608e+06 294314 926341. 3205.33 10.42 0.372449 0.319835 29218 227130 -1 2891 22 2617 3677 315078 66046 0 0 315078 66046 3677 2978 0 0 11954 10827 0 0 19599 13637 0 0 3677 3208 0 0 142218 17122 0 0 133953 18274 0 0 3677 0 0 1060 980 901 8782 0 0 4.19172 4.19172 -151.953 -4.19172 0 0 1.14541e+06 3963.36 0.46 0.13 0.29 -1 -1 0.46 0.0296632 0.0266201 126 86 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 12.73 vpr 61.69 MiB 0.02 6652 -1 -1 1 0.01 -1 -1 30028 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63168 32 32 313 256 1 191 77 17 17 289 -1 unnamed_device 23.2 MiB 0.76 958 61.7 MiB 0.55 0.01 2.48675 -99.8972 -2.48675 2.48675 0.93 0.000388812 0.000327609 0.0260861 0.0223288 44 2478 50 6.99608e+06 191304 787024. 2723.27 8.14 0.207148 0.181738 27778 195446 -1 1982 24 1551 2062 174800 34074 0 0 174800 34074 2062 1691 0 0 6024 5348 0 0 10811 6703 0 0 2062 1793 0 0 76376 9352 0 0 77465 9187 0 0 2062 0 0 511 571 396 4942 0 0 3.10962 3.10962 -125.659 -3.10962 0 0 997811. 3452.63 0.35 0.08 0.21 -1 -1 0.35 0.0188845 0.0167495 80 20 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 13.68 vpr 62.31 MiB 0.02 6892 -1 -1 1 0.02 -1 -1 29728 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 371 315 1 244 80 17 17 289 -1 unnamed_device 23.6 MiB 1.25 1076 62.3 MiB 0.83 0.01 3.05483 -112.867 -3.05483 3.05483 0.85 0.000404362 0.000336849 0.0499059 0.0439241 46 2984 28 6.99608e+06 235451 828058. 2865.25 8.17 0.217986 0.19004 28066 200906 -1 2222 24 2388 2778 222286 46310 0 0 222286 46310 2778 2454 0 0 8702 7813 0 0 14841 9737 0 0 2778 2645 0 0 96933 12107 0 0 96254 11554 0 0 2778 0 0 390 419 338 4705 0 0 3.9283 3.9283 -150.218 -3.9283 0 0 1.01997e+06 3529.29 0.37 0.11 0.24 -1 -1 0.37 0.0246292 0.0218389 108 91 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 13.24 vpr 62.09 MiB 0.02 7348 -1 -1 1 0.02 -1 -1 30308 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 470 352 1 285 84 17 17 289 -1 unnamed_device 23.7 MiB 1.26 1443 62.1 MiB 0.77 0.01 3.75729 -139.061 -3.75729 3.75729 0.90 0.000344616 0.000294982 0.0444712 0.0388229 44 4177 46 6.99608e+06 294314 787024. 2723.27 6.38 0.205743 0.179852 27778 195446 -1 3158 33 3806 5293 624318 202253 0 0 624318 202253 5293 4378 0 0 14806 13494 0 0 32922 18470 0 0 5293 4546 0 0 286896 80760 0 0 279108 80605 0 0 5293 0 0 1487 1308 1583 12735 0 0 5.01276 5.01276 -185.088 -5.01276 0 0 997811. 3452.63 0.38 0.30 0.22 -1 -1 0.38 0.0519597 0.0470103 127 53 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 20.46 vpr 61.96 MiB 0.03 6896 -1 -1 1 0.02 -1 -1 29760 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 369 285 1 217 80 17 17 289 -1 unnamed_device 23.2 MiB 0.81 889 62.0 MiB 0.72 0.02 2.95409 -108.732 -2.95409 2.95409 1.00 0.000469217 0.000396758 0.0431249 0.0379044 50 2534 41 6.99608e+06 235451 902133. 3121.57 13.60 0.281518 0.249138 28642 213929 -1 2050 25 1926 2474 234868 57052 0 0 234868 57052 2474 2217 0 0 7803 6853 0 0 13720 9052 0 0 2474 2297 0 0 96556 18878 0 0 111841 17755 0 0 2474 0 0 548 745 641 5708 0 0 3.60016 3.60016 -133.98 -3.60016 0 0 1.08113e+06 3740.92 0.43 0.12 0.21 -1 -1 0.43 0.0279944 0.0250257 93 31 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 13.40 vpr 61.44 MiB 0.02 7076 -1 -1 1 0.01 -1 -1 29840 -1 -1 24 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62912 30 32 299 247 1 177 86 17 17 289 -1 unnamed_device 23.0 MiB 0.64 749 61.4 MiB 0.79 0.02 3.08675 -101.312 -3.08675 3.08675 1.20 0.000599871 0.00053123 0.0351374 0.030558 46 2087 22 6.99608e+06 353176 828058. 2865.25 8.51 0.199071 0.174463 28066 200906 -1 1615 21 1493 2171 155300 34571 0 0 155300 34571 2171 1694 0 0 6930 6168 0 0 11991 7921 0 0 2171 1786 0 0 69315 7580 0 0 62722 9422 0 0 2171 0 0 678 691 606 6556 0 0 3.37291 3.37291 -122.117 -3.37291 0 0 1.01997e+06 3529.29 0.39 0.07 0.24 -1 -1 0.39 0.0174619 0.0155096 80 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.97 vpr 62.43 MiB 0.03 7220 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63928 32 32 532 414 1 346 89 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1725 62.4 MiB 0.91 0.01 4.33222 -155.203 -4.33222 4.33222 1.06 0.000764829 0.000674443 0.059399 0.0513027 48 4147 26 6.99608e+06 367892 865456. 2994.66 5.44 0.222159 0.195971 28354 207349 -1 3635 24 3752 4670 505869 107352 0 0 505869 107352 4670 4258 0 0 14779 13116 0 0 28657 17997 0 0 4670 4424 0 0 226112 33858 0 0 226981 33699 0 0 4670 0 0 918 1028 1030 9534 0 0 5.48749 5.48749 -199.857 -5.48749 0 0 1.05005e+06 3633.38 0.29 0.12 0.17 -1 -1 0.29 0.0208366 0.0184354 159 109 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 13.12 vpr 62.20 MiB 0.03 6988 -1 -1 1 0.01 -1 -1 29984 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63688 32 32 377 289 1 217 80 17 17 289 -1 unnamed_device 23.4 MiB 0.96 874 62.2 MiB 0.15 0.00 3.52464 -127.833 -3.52464 3.52464 1.00 0.000336837 0.000273512 0.0280012 0.0230926 48 2582 24 6.99608e+06 235451 865456. 2994.66 8.03 0.215242 0.18777 28354 207349 -1 2166 22 2148 2866 270119 56055 0 0 270119 56055 2866 2550 0 0 9136 7898 0 0 16042 10613 0 0 2866 2655 0 0 111186 17554 0 0 128023 14785 0 0 2866 0 0 718 956 969 7453 0 0 4.41331 4.41331 -161.081 -4.41331 0 0 1.05005e+06 3633.38 0.36 0.50 0.26 -1 -1 0.36 0.0361368 0.0333494 92 31 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 25.11 vpr 61.59 MiB 0.10 6752 -1 -1 1 0.02 -1 -1 29900 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63064 32 32 284 226 1 158 88 17 17 289 -1 unnamed_device 22.9 MiB 0.37 693 61.6 MiB 0.19 0.00 2.40955 -93.2753 -2.40955 2.40955 1.08 0.000331943 0.000251677 0.0248621 0.020345 38 2357 23 6.99608e+06 353176 678818. 2348.85 20.77 0.219444 0.193378 26626 170182 -1 1828 23 1562 2427 254035 50387 0 0 254035 50387 2427 1979 0 0 7195 6410 0 0 13110 7866 0 0 2427 2077 0 0 122162 14919 0 0 106714 17136 0 0 2427 0 0 865 1059 1147 8556 0 0 3.03362 3.03362 -121.288 -3.03362 0 0 902133. 3121.57 0.35 0.11 0.20 -1 -1 0.35 0.0208024 0.0186288 70 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 15.10 vpr 62.45 MiB 0.10 7312 -1 -1 1 0.02 -1 -1 30172 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 439 321 1 256 83 17 17 289 -1 unnamed_device 23.7 MiB 1.03 1314 62.4 MiB 0.17 0.00 3.84529 -140.493 -3.84529 3.84529 0.93 0.000470655 0.000395434 0.024952 0.0206603 50 3387 29 6.99608e+06 279598 902133. 3121.57 10.26 0.271469 0.237859 28642 213929 -1 2881 23 2842 4124 365832 69454 0 0 365832 69454 4124 3149 0 0 12131 10773 0 0 23997 14019 0 0 4124 3320 0 0 173488 16561 0 0 147968 21632 0 0 4124 0 0 1282 1362 2377 14983 0 0 4.86726 4.86726 -180.866 -4.86726 0 0 1.08113e+06 3740.92 0.42 0.15 0.26 -1 -1 0.42 0.0321973 0.0290512 113 26 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 8.14 vpr 61.23 MiB 0.02 6796 -1 -1 1 0.02 -1 -1 29828 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62704 32 32 284 226 1 156 74 17 17 289 -1 unnamed_device 22.7 MiB 0.51 617 61.2 MiB 0.28 0.01 2.36125 -91.337 -2.36125 2.36125 0.95 0.00028416 0.000231977 0.0225857 0.0189486 44 2141 47 6.99608e+06 147157 787024. 2723.27 2.67 0.11042 0.0965785 27778 195446 -1 1508 21 1484 2209 153063 33985 0 0 153063 33985 2209 1750 0 0 6514 5820 0 0 11389 7364 0 0 2209 1796 0 0 71989 7324 0 0 58753 9931 0 0 2209 0 0 725 540 788 6128 0 0 3.22492 3.22492 -120.98 -3.22492 0 0 997811. 3452.63 0.41 0.11 0.23 -1 -1 0.41 0.0248468 0.0225198 62 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 13.05 vpr 61.70 MiB 0.10 6928 -1 -1 1 0.02 -1 -1 29880 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63184 30 32 299 247 1 179 77 17 17 289 -1 unnamed_device 23.3 MiB 0.92 647 61.7 MiB 0.24 0.00 2.68144 -94.1108 -2.68144 2.68144 0.98 0.000175534 0.000128343 0.0245123 0.0206749 46 2008 35 6.99608e+06 220735 828058. 2865.25 7.45 0.211367 0.187611 28066 200906 -1 1617 21 1488 1909 134173 31204 0 0 134173 31204 1909 1661 0 0 5891 5300 0 0 9831 6529 0 0 1909 1700 0 0 55176 8525 0 0 59457 7489 0 0 1909 0 0 421 520 431 4517 0 0 3.33551 3.33551 -120.143 -3.33551 0 0 1.01997e+06 3529.29 0.39 0.07 0.24 -1 -1 0.39 0.0196101 0.0176539 74 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 31.06 vpr 62.13 MiB 0.11 7192 -1 -1 1 0.01 -1 -1 29872 -1 -1 20 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63624 29 32 397 323 1 244 81 17 17 289 -1 unnamed_device 23.5 MiB 2.75 1150 62.1 MiB 0.16 0.00 3.16913 -109.079 -3.16913 3.16913 1.00 0.000296577 0.000242073 0.028483 0.0235739 38 3834 45 6.99608e+06 294314 678818. 2348.85 24.58 0.287616 0.250968 26626 170182 -1 2803 21 2140 2828 252417 52186 0 0 252417 52186 2828 2570 0 0 8787 7709 0 0 13988 9571 0 0 2828 2642 0 0 109608 15187 0 0 114378 14507 0 0 2828 0 0 688 845 618 6515 0 0 4.1679 4.1679 -150.215 -4.1679 0 0 902133. 3121.57 0.33 0.11 0.20 -1 -1 0.33 0.0277761 0.0250755 112 81 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.66 vpr 62.40 MiB 0.20 7016 -1 -1 1 0.02 -1 -1 30044 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 408 320 1 249 81 17 17 289 -1 unnamed_device 23.6 MiB 1.28 1160 62.4 MiB 0.17 0.00 3.54484 -131.496 -3.54484 3.54484 1.02 0.000365029 0.000298034 0.0326802 0.0267279 40 3094 26 6.99608e+06 250167 706193. 2443.58 2.86 0.156674 0.135952 26914 176310 -1 2797 35 3562 4746 656755 175267 0 0 656755 175267 4746 4233 0 0 14357 12891 0 0 32131 17345 0 0 4746 4344 0 0 304261 68079 0 0 296514 68375 0 0 4746 0 0 1184 1446 1455 11273 0 0 5.02101 5.02101 -178.002 -5.02101 0 0 926341. 3205.33 0.26 1.60 0.12 -1 -1 0.26 0.0448466 0.0405512 108 53 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 18.56 vpr 62.26 MiB 0.16 6972 -1 -1 1 0.03 -1 -1 30104 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 408 320 1 249 81 17 17 289 -1 unnamed_device 23.5 MiB 1.74 1238 62.3 MiB 0.16 0.00 3.54484 -133.382 -3.54484 3.54484 1.02 0.000321615 0.000263043 0.0287915 0.0238222 44 3695 43 6.99608e+06 250167 787024. 2723.27 11.28 0.262117 0.230384 27778 195446 -1 2706 24 2593 3429 283198 56787 0 0 283198 56787 3429 2999 0 0 10320 9204 0 0 18424 11770 0 0 3429 3163 0 0 120383 15587 0 0 127213 14064 0 0 3429 0 0 836 654 797 7678 0 0 4.41031 4.41031 -171.049 -4.41031 0 0 997811. 3452.63 0.41 0.13 0.23 -1 -1 0.41 0.029897 0.0266669 110 55 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 14.16 vpr 61.81 MiB 0.14 6872 -1 -1 1 0.03 -1 -1 29984 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63296 32 32 346 288 1 212 79 17 17 289 -1 unnamed_device 23.1 MiB 1.14 1028 61.8 MiB 0.43 0.01 2.88809 -111.673 -2.88809 2.88809 1.12 0.000347131 0.000283443 0.034973 0.0293317 44 2559 22 6.99608e+06 220735 787024. 2723.27 7.35 0.220465 0.194142 27778 195446 -1 2090 21 1699 1926 176037 34846 0 0 176037 34846 1926 1800 0 0 6044 5330 0 0 10450 6868 0 0 1926 1834 0 0 77054 9707 0 0 78637 9307 0 0 1926 0 0 227 148 213 3072 0 0 3.40886 3.40886 -136.762 -3.40886 0 0 997811. 3452.63 0.43 0.09 0.21 -1 -1 0.43 0.024875 0.0224904 92 55 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 14.54 vpr 61.87 MiB 0.13 6900 -1 -1 1 0.01 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63352 31 32 355 304 1 230 80 17 17 289 -1 unnamed_device 23.2 MiB 3.50 966 61.9 MiB 0.15 0.00 2.69674 -98.2874 -2.69674 2.69674 0.87 0.000332893 0.000262369 0.0256609 0.0207608 40 3088 44 6.99608e+06 250167 706193. 2443.58 6.78 0.156639 0.137109 26914 176310 -1 2429 19 1963 2425 244550 52669 0 0 244550 52669 2425 2180 0 0 8704 7838 0 0 14949 10600 0 0 2425 2273 0 0 114194 14328 0 0 101853 15450 0 0 2425 0 0 462 506 354 4671 0 0 3.41981 3.41981 -134.925 -3.41981 0 0 926341. 3205.33 0.25 0.10 0.14 -1 -1 0.25 0.0208778 0.0186676 102 82 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 18.58 vpr 62.07 MiB 0.03 7048 -1 -1 1 0.02 -1 -1 30116 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63556 30 32 377 300 1 226 81 17 17 289 -1 unnamed_device 23.2 MiB 1.78 943 62.1 MiB 0.17 0.01 2.77544 -93.1827 -2.77544 2.77544 1.08 0.000343467 0.000276976 0.0263533 0.0219184 58 1967 27 6.99608e+06 279598 997811. 3452.63 12.50 0.277764 0.243478 30370 251734 -1 1636 23 1772 2582 218235 62606 0 0 218235 62606 2582 2083 0 0 8758 7689 0 0 17311 11220 0 0 2582 2258 0 0 95261 19905 0 0 91741 19451 0 0 2582 0 0 810 899 1063 8588 0 0 3.01967 3.01967 -107.608 -3.01967 0 0 1.25153e+06 4330.55 0.51 0.11 0.31 -1 -1 0.51 0.028211 0.0254009 101 52 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 25.37 vpr 61.84 MiB 0.03 7080 -1 -1 1 0.01 -1 -1 30112 -1 -1 18 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63320 28 32 337 265 1 197 78 17 17 289 -1 unnamed_device 23.2 MiB 1.62 814 61.8 MiB 0.36 0.01 3.17575 -103.538 -3.17575 3.17575 0.92 0.000383699 0.000320006 0.028615 0.0243631 40 2564 26 6.99608e+06 264882 706193. 2443.58 19.86 0.250485 0.21884 26914 176310 -1 2153 22 1862 2674 238747 51690 0 0 238747 51690 2674 2125 0 0 8764 7739 0 0 15777 10293 0 0 2674 2242 0 0 107822 14214 0 0 101036 15077 0 0 2674 0 0 812 982 1232 8704 0 0 4.52226 4.52226 -153.925 -4.52226 0 0 926341. 3205.33 0.37 0.10 0.21 -1 -1 0.37 0.0216295 0.0192048 87 20 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 30.49 vpr 62.03 MiB 0.06 7104 -1 -1 1 0.02 -1 -1 29960 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63516 30 32 328 276 1 204 77 17 17 289 -1 unnamed_device 23.1 MiB 2.43 896 62.0 MiB 0.26 0.00 3.64224 -122.046 -3.64224 3.64224 0.93 0.00029942 0.000242368 0.024381 0.0203386 38 3117 40 6.99608e+06 220735 678818. 2348.85 24.19 0.254745 0.224187 26626 170182 -1 2276 21 1887 2518 247200 50244 0 0 247200 50244 2518 2339 0 0 7983 7088 0 0 13178 9019 0 0 2518 2364 0 0 111983 14902 0 0 109020 14532 0 0 2518 0 0 631 612 626 5749 0 0 4.04565 4.04565 -148.138 -4.04565 0 0 902133. 3121.57 0.36 0.11 0.20 -1 -1 0.36 0.0215211 0.0192923 88 58 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 17.97 vpr 61.99 MiB 0.02 6768 -1 -1 1 0.01 -1 -1 29772 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63480 32 32 362 309 1 241 79 17 17 289 -1 unnamed_device 23.3 MiB 4.14 1111 62.0 MiB 0.69 0.01 3.09069 -105.835 -3.09069 3.09069 1.17 0.000418394 0.000361212 0.0336008 0.0291803 46 2672 28 6.99608e+06 220735 828058. 2865.25 8.96 0.232707 0.205464 28066 200906 -1 2041 19 1736 2124 149650 33693 0 0 149650 33693 2124 1851 0 0 7005 6280 0 0 11746 7980 0 0 2124 2009 0 0 63227 7656 0 0 63424 7917 0 0 2124 0 0 388 395 193 3876 0 0 3.61446 3.61446 -130.008 -3.61446 0 0 1.01997e+06 3529.29 0.35 0.07 0.21 -1 -1 0.35 0.0183602 0.0164164 104 88 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 10.69 vpr 61.90 MiB 0.03 7000 -1 -1 1 0.01 -1 -1 29828 -1 -1 25 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63384 31 32 337 253 1 188 88 17 17 289 -1 unnamed_device 23.3 MiB 0.20 962 61.9 MiB 0.42 0.02 3.13845 -114.723 -3.13845 3.13845 1.05 0.000533167 0.000453969 0.0244131 0.0206705 44 2886 30 6.99608e+06 367892 787024. 2723.27 5.92 0.14782 0.131467 27778 195446 -1 2306 21 1839 2852 252340 48272 0 0 252340 48272 2852 2417 0 0 8377 7510 0 0 15702 9666 0 0 2852 2512 0 0 124086 11086 0 0 98471 15081 0 0 2852 0 0 1013 1093 866 8604 0 0 3.79252 3.79252 -146.19 -3.79252 0 0 997811. 3452.63 0.40 0.10 0.24 -1 -1 0.40 0.0210091 0.0189244 86 -1 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 15.78 vpr 62.36 MiB 0.03 7004 -1 -1 1 0.02 -1 -1 30064 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 408 320 1 249 81 17 17 289 -1 unnamed_device 23.7 MiB 0.98 974 62.4 MiB 0.98 0.01 3.42564 -122.486 -3.42564 3.42564 1.02 0.000494978 0.000419903 0.0424136 0.0361483 46 3549 29 6.99608e+06 250167 828058. 2865.25 8.52 0.251276 0.219592 28066 200906 -1 2454 23 2506 3273 271685 58765 0 0 271685 58765 3273 2873 0 0 9527 8603 0 0 17807 10735 0 0 3273 2927 0 0 116354 17260 0 0 121451 16367 0 0 3273 0 0 767 800 654 7044 0 0 4.41825 4.41825 -163.039 -4.41825 0 0 1.01997e+06 3529.29 0.38 1.10 0.24 -1 -1 0.38 0.0301317 0.0272015 110 57 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 11.55 vpr 62.27 MiB 0.03 7164 -1 -1 1 0.02 -1 -1 29904 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 408 320 1 248 82 17 17 289 -1 unnamed_device 23.5 MiB 0.89 1106 62.3 MiB 0.62 0.01 4.23178 -141.841 -4.23178 4.23178 1.06 0.000431625 0.000356192 0.0467114 0.0400771 46 3637 26 6.99608e+06 264882 828058. 2865.25 5.76 0.161594 0.141728 28066 200906 -1 2670 20 2533 3416 293012 61573 0 0 293012 61573 3416 3168 0 0 10681 9590 0 0 18035 11948 0 0 3416 3257 0 0 126505 17035 0 0 130959 16575 0 0 3416 0 0 883 986 1023 8532 0 0 5.371 5.371 -185.297 -5.371 0 0 1.01997e+06 3529.29 0.39 0.13 0.23 -1 -1 0.39 0.0261392 0.0234781 108 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 37.22 vpr 62.30 MiB 0.02 7104 -1 -1 1 0.01 -1 -1 29852 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 400 316 1 250 82 17 17 289 -1 unnamed_device 23.7 MiB 0.76 1089 62.3 MiB 0.14 0.00 3.51078 -124.459 -3.51078 3.51078 0.96 0.000316516 0.000260546 0.023731 0.0197184 44 4221 32 6.99608e+06 264882 787024. 2723.27 32.35 0.310878 0.276359 27778 195446 -1 2769 23 2256 3205 287797 61289 0 0 287797 61289 3205 2730 0 0 10207 9156 0 0 17358 11802 0 0 3205 2806 0 0 122559 17790 0 0 131263 17005 0 0 3205 0 0 949 1221 1110 8893 0 0 4.2931 4.2931 -159.912 -4.2931 0 0 997811. 3452.63 0.41 0.67 0.24 -1 -1 0.41 0.0358295 0.0324464 107 62 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 13.60 vpr 61.47 MiB 0.02 6836 -1 -1 1 0.01 -1 -1 29876 -1 -1 13 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62948 30 32 299 247 1 179 75 17 17 289 -1 unnamed_device 23.0 MiB 1.15 679 61.5 MiB 0.27 0.00 3.05739 -104.154 -3.05739 3.05739 1.11 0.000274904 0.000221628 0.0263727 0.0221249 46 2202 26 6.99608e+06 191304 828058. 2865.25 8.58 0.192649 0.169579 28066 200906 -1 1829 23 1548 2114 175991 39674 0 0 175991 39674 2114 1832 0 0 6482 5824 0 0 11338 7380 0 0 2114 1864 0 0 85837 9562 0 0 68106 13212 0 0 2114 0 0 566 553 391 4774 0 0 3.81776 3.81776 -135.955 -3.81776 0 0 1.01997e+06 3529.29 0.40 0.09 0.24 -1 -1 0.40 0.021351 0.0190484 76 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 13.65 vpr 62.31 MiB 0.18 7152 -1 -1 1 0.01 -1 -1 29904 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63804 30 32 386 306 1 237 80 17 17 289 -1 unnamed_device 23.5 MiB 2.89 1174 62.3 MiB 0.58 0.02 3.75497 -127.755 -3.75497 3.75497 1.05 0.000439959 0.000368386 0.0243848 0.0210319 40 2911 32 6.99608e+06 264882 706193. 2443.58 5.65 0.186117 0.166117 26914 176310 -1 2718 35 3790 5426 839799 320207 0 0 839799 320207 5426 4815 0 0 16910 14868 0 0 36520 21407 0 0 5426 4937 0 0 396269 134829 0 0 379248 139351 0 0 5426 0 0 1636 2093 1995 14634 0 0 4.84774 4.84774 -172.046 -4.84774 0 0 926341. 3205.33 0.37 0.37 0.22 -1 -1 0.37 0.0422134 0.0378738 105 58 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 26.60 vpr 62.36 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30276 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 470 382 1 309 86 17 17 289 -1 unnamed_device 24.0 MiB 1.27 1385 62.4 MiB 0.11 0.00 3.52458 -130.088 -3.52458 3.52458 0.85 0.000207383 0.000163318 0.0179907 0.0147195 40 3682 26 6.99608e+06 323745 706193. 2443.58 21.21 0.33131 0.291851 26914 176310 -1 3129 26 2919 2993 357238 75033 0 0 357238 75033 2993 2944 0 0 9486 8383 0 0 19381 11467 0 0 2993 2953 0 0 163044 24715 0 0 159341 24571 0 0 2993 0 0 74 60 78 3353 0 0 4.54655 4.54655 -171.097 -4.54655 0 0 926341. 3205.33 0.30 0.12 0.17 -1 -1 0.30 0.0240083 0.0213286 139 106 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 13.11 vpr 61.93 MiB 0.03 7032 -1 -1 1 0.01 -1 -1 30104 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63412 31 32 427 343 1 275 84 17 17 289 -1 unnamed_device 23.4 MiB 2.17 1186 61.9 MiB 0.19 0.00 3.52904 -124.177 -3.52904 3.52904 1.09 0.000318121 0.000259161 0.0333359 0.0273574 46 3048 29 6.99608e+06 309029 828058. 2865.25 5.97 0.193515 0.170457 28066 200906 -1 2473 20 2252 2712 185894 40315 0 0 185894 40315 2712 2433 0 0 8470 7628 0 0 14035 9429 0 0 2712 2485 0 0 78411 9446 0 0 79554 8894 0 0 2712 0 0 460 345 517 5400 0 0 4.15191 4.15191 -154.075 -4.15191 0 0 1.01997e+06 3529.29 0.38 0.59 0.24 -1 -1 0.38 0.0341244 0.0312128 124 79 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 32.11 vpr 62.27 MiB 0.02 7252 -1 -1 1 0.01 -1 -1 30052 -1 -1 22 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63768 30 32 407 331 1 249 84 17 17 289 -1 unnamed_device 23.5 MiB 3.87 1108 62.3 MiB 0.55 0.00 3.51688 -110.794 -3.51688 3.51688 1.00 0.000412818 0.000347954 0.0456956 0.0394071 46 2995 27 6.99608e+06 323745 828058. 2865.25 24.40 0.334156 0.296159 28066 200906 -1 2299 23 2186 3108 264278 56246 0 0 264278 56246 3108 2524 0 0 10104 9022 0 0 17083 11598 0 0 3108 2613 0 0 114194 15392 0 0 116681 15097 0 0 3108 0 0 922 1077 849 8628 0 0 3.9203 3.9203 -142.347 -3.9203 0 0 1.01997e+06 3529.29 0.41 0.13 0.18 -1 -1 0.41 0.0321996 0.0290726 114 83 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 27.30 vpr 62.22 MiB 0.02 7164 -1 -1 1 0.02 -1 -1 30008 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 23.5 MiB 1.34 1001 62.2 MiB 0.26 0.00 3.54484 -126.992 -3.54484 3.54484 1.11 0.000366682 0.000292206 0.0361336 0.0297696 48 2972 38 6.99608e+06 264882 865456. 2994.66 21.20 0.304419 0.266299 28354 207349 -1 2493 23 2644 3584 361062 74605 0 0 361062 74605 3584 3162 0 0 11713 10553 0 0 23093 14594 0 0 3584 3299 0 0 171124 20239 0 0 147964 22758 0 0 3584 0 0 940 903 886 8205 0 0 4.62791 4.62791 -166.124 -4.62791 0 0 1.05005e+06 3633.38 0.40 0.90 0.25 -1 -1 0.40 0.0316478 0.0286003 110 58 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 15.56 vpr 62.05 MiB 0.03 7060 -1 -1 1 0.02 -1 -1 30000 -1 -1 20 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63540 29 32 391 320 1 240 81 17 17 289 -1 unnamed_device 23.4 MiB 2.57 939 62.1 MiB 0.19 0.00 2.90529 -95.8872 -2.90529 2.90529 1.07 0.000357666 0.000287006 0.0323007 0.0263081 40 3577 46 6.99608e+06 294314 706193. 2443.58 9.08 0.183128 0.157507 26914 176310 -1 2535 26 2616 3386 445286 129846 0 0 445286 129846 3386 3059 0 0 11181 9609 0 0 20964 13609 0 0 3386 3123 0 0 196494 52456 0 0 209875 47990 0 0 3386 0 0 770 1001 800 7749 0 0 3.92101 3.92101 -136.89 -3.92101 0 0 926341. 3205.33 0.39 0.18 0.21 -1 -1 0.39 0.0309003 0.0278278 110 81 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 17.24 vpr 61.57 MiB 0.02 6620 -1 -1 1 0.02 -1 -1 29888 -1 -1 10 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63052 32 32 284 226 1 155 74 17 17 289 -1 unnamed_device 23.0 MiB 0.90 546 61.6 MiB 0.10 0.00 2.35025 -89.8393 -2.35025 2.35025 1.09 0.000299816 0.000242154 0.0194786 0.0159677 48 1890 44 6.99608e+06 147157 865456. 2994.66 12.54 0.213825 0.187588 28354 207349 -1 1540 23 1630 2586 293639 86311 0 0 293639 86311 2586 2062 0 0 8205 7295 0 0 15580 9707 0 0 2586 2104 0 0 137868 30718 0 0 126814 34425 0 0 2586 0 0 956 1006 866 7604 0 0 3.00432 3.00432 -123.81 -3.00432 0 0 1.05005e+06 3633.38 0.41 0.13 0.25 -1 -1 0.41 0.0213421 0.0191048 62 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 11.67 vpr 62.14 MiB 0.03 7108 -1 -1 1 0.02 -1 -1 29852 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63628 32 32 408 320 1 251 82 17 17 289 -1 unnamed_device 23.5 MiB 0.81 1204 62.1 MiB 0.59 0.01 4.01233 -145.273 -4.01233 4.01233 1.07 0.000379313 0.000308499 0.037929 0.0326521 44 3725 44 6.99608e+06 264882 787024. 2723.27 4.35 0.185081 0.164349 27778 195446 -1 3003 23 2794 3746 396066 75474 0 0 396066 75474 3746 3454 0 0 11343 10099 0 0 20696 13159 0 0 3746 3522 0 0 175421 24283 0 0 181114 20957 0 0 3746 0 0 952 1176 1046 9298 0 0 5.0031 5.0031 -185.633 -5.0031 0 0 997811. 3452.63 0.34 0.99 0.22 -1 -1 0.34 0.0335646 0.0305483 110 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 16.37 vpr 62.23 MiB 0.03 7156 -1 -1 1 0.02 -1 -1 29856 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 408 320 1 255 81 17 17 289 -1 unnamed_device 23.6 MiB 1.19 995 62.2 MiB 0.46 0.00 3.89803 -136.299 -3.89803 3.89803 1.06 0.000370625 0.000299262 0.0451065 0.0389782 50 2705 50 6.99608e+06 250167 902133. 3121.57 10.35 0.34467 0.305715 28642 213929 -1 2088 22 2774 3790 263396 59361 0 0 263396 59361 3790 3180 0 0 11593 10393 0 0 20237 13178 0 0 3790 3242 0 0 118370 13302 0 0 105616 16066 0 0 3790 0 0 1016 970 867 8717 0 0 4.8888 4.8888 -174.232 -4.8888 0 0 1.08113e+06 3740.92 0.43 0.12 0.26 -1 -1 0.43 0.0279853 0.025108 111 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 15.64 vpr 61.79 MiB 0.02 6684 -1 -1 1 0.02 -1 -1 30040 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63276 32 32 316 268 1 202 77 17 17 289 -1 unnamed_device 23.3 MiB 2.46 835 61.8 MiB 0.15 0.00 2.68159 -95.1777 -2.68159 2.68159 1.05 0.000311636 0.000250529 0.0261259 0.0211848 44 2546 49 6.99608e+06 191304 787024. 2723.27 8.43 0.206328 0.180256 27778 195446 -1 1798 21 1507 1748 136020 29611 0 0 136020 29611 1748 1605 0 0 5742 5053 0 0 9304 6633 0 0 1748 1678 0 0 64634 6472 0 0 52844 8170 0 0 1748 0 0 241 181 194 2952 0 0 3.05386 3.05386 -115.45 -3.05386 0 0 997811. 3452.63 0.36 0.71 0.21 -1 -1 0.36 0.0254174 0.0229917 85 47 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 8.50 vpr 61.50 MiB 0.06 6820 -1 -1 1 0.01 -1 -1 29880 -1 -1 11 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62976 31 32 277 222 1 154 74 17 17 289 -1 unnamed_device 23.0 MiB 0.29 834 61.5 MiB 0.07 0.00 2.5019 -97.7598 -2.5019 2.5019 1.10 0.000155111 0.000123837 0.0129833 0.0106747 38 2137 30 6.99608e+06 161872 678818. 2348.85 4.05 0.131434 0.115922 26626 170182 -1 1888 21 1443 2150 188821 42347 0 0 188821 42347 2150 1811 0 0 6329 5637 0 0 11907 7008 0 0 2150 1822 0 0 88660 11993 0 0 77625 14076 0 0 2150 0 0 707 599 747 5935 0 0 3.15597 3.15597 -126.761 -3.15597 0 0 902133. 3121.57 0.35 0.48 0.21 -1 -1 0.35 0.0246179 0.0224121 63 -1 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 16.29 vpr 61.93 MiB 0.10 6928 -1 -1 1 0.01 -1 -1 29868 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63412 32 32 382 304 1 235 81 17 17 289 -1 unnamed_device 23.2 MiB 1.41 900 61.9 MiB 0.10 0.00 3.30848 -111.495 -3.30848 3.30848 0.82 0.000197288 0.000156969 0.0186334 0.015177 48 2985 38 6.99608e+06 250167 865456. 2994.66 9.60 0.254774 0.225274 28354 207349 -1 2288 23 2042 2440 224947 51545 0 0 224947 51545 2440 2178 0 0 8190 7151 0 0 14995 10114 0 0 2440 2225 0 0 90580 15813 0 0 106302 14064 0 0 2440 0 0 398 403 351 4454 0 0 4.47885 4.47885 -147.47 -4.47885 0 0 1.05005e+06 3633.38 0.34 0.85 0.25 -1 -1 0.34 0.0345726 0.0315327 102 56 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 22.23 vpr 62.27 MiB 0.10 7128 -1 -1 1 0.02 -1 -1 30044 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 407 331 1 251 83 17 17 289 -1 unnamed_device 23.6 MiB 4.51 1309 62.3 MiB 0.15 0.00 3.50704 -123.204 -3.50704 3.50704 0.96 0.000290468 0.000229525 0.0272359 0.0224069 36 3482 27 6.99608e+06 279598 648988. 2245.63 11.93 0.287755 0.254106 26050 158493 -1 2683 37 3005 3559 494214 195512 0 0 494214 195512 3559 3164 0 0 11107 9726 0 0 21678 13836 0 0 3559 3262 0 0 234548 86016 0 0 219763 79508 0 0 3559 0 0 554 558 595 6792 0 0 4.73121 4.73121 -167.352 -4.73121 0 0 828058. 2865.25 0.34 1.04 0.19 -1 -1 0.34 0.0495278 0.0445334 113 81 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 12.22 vpr 62.11 MiB 0.03 7084 -1 -1 1 0.01 -1 -1 29956 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63604 32 32 400 286 1 218 91 17 17 289 -1 unnamed_device 23.2 MiB 0.72 1162 62.1 MiB 0.15 0.00 3.52884 -130.29 -3.52884 3.52884 0.77 0.000219896 0.000177483 0.0207074 0.0168216 46 3111 23 6.99608e+06 397324 828058. 2865.25 6.32 0.217571 0.191169 28066 200906 -1 2528 23 2365 3682 291796 56949 0 0 291796 56949 3682 2865 0 0 10840 9718 0 0 19238 11874 0 0 3682 3113 0 0 140433 12618 0 0 113921 16761 0 0 3682 0 0 1317 1155 1374 11126 0 0 4.5276 4.5276 -163.405 -4.5276 0 0 1.01997e+06 3529.29 0.35 1.08 0.21 -1 -1 0.35 0.0401915 0.0363528 100 -1 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 13.97 vpr 61.98 MiB 0.02 7072 -1 -1 1 0.02 -1 -1 30084 -1 -1 20 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63472 30 32 374 298 1 227 82 17 17 289 -1 unnamed_device 23.2 MiB 1.60 887 62.0 MiB 0.18 0.00 3.11069 -100.044 -3.11069 3.11069 1.11 0.00039463 0.000319262 0.0321374 0.0261997 48 2655 23 6.99608e+06 294314 865456. 2994.66 6.54 0.220194 0.192363 28354 207349 -1 2039 19 1734 2407 208835 47943 0 0 208835 47943 2407 1946 0 0 8429 7434 0 0 14459 10210 0 0 2407 2078 0 0 82080 14288 0 0 99053 11987 0 0 2407 0 0 673 772 710 6370 0 0 3.49411 3.49411 -124.069 -3.49411 0 0 1.05005e+06 3633.38 0.40 0.90 0.22 -1 -1 0.40 0.0290308 0.0265118 102 47 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 11.35 vpr 61.56 MiB 0.02 7000 -1 -1 1 0.01 -1 -1 29884 -1 -1 16 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63040 27 32 275 232 1 153 75 17 17 289 -1 unnamed_device 23.0 MiB 2.00 544 61.6 MiB 0.11 0.00 3.14605 -89.3983 -3.14605 3.14605 1.10 0.000263792 0.00021111 0.0217488 0.0177322 40 1910 38 6.99608e+06 235451 706193. 2443.58 4.76 0.138351 0.118278 26914 176310 -1 1458 23 1417 1944 222384 69075 0 0 222384 69075 1944 1664 0 0 6507 5546 0 0 11319 7385 0 0 1944 1704 0 0 98495 27101 0 0 102175 25675 0 0 1944 0 0 527 567 505 4733 0 0 3.54952 3.54952 -117.469 -3.54952 0 0 926341. 3205.33 0.36 0.47 0.21 -1 -1 0.36 0.0229747 0.0207535 68 26 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 18.84 vpr 62.27 MiB 0.04 7160 -1 -1 1 0.01 -1 -1 30184 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 494 379 1 313 85 17 17 289 -1 unnamed_device 24.1 MiB 1.56 1495 62.3 MiB 0.26 0.00 3.51804 -129.151 -3.51804 3.51804 0.94 0.000454695 0.000377078 0.0417841 0.0346131 50 4164 42 6.99608e+06 309029 902133. 3121.57 11.44 0.340736 0.284294 28642 213929 -1 3463 25 3119 4360 539162 127423 0 0 539162 127423 4360 3686 0 0 13853 12334 0 0 25989 16392 0 0 4360 4011 0 0 238476 47184 0 0 252124 43816 0 0 4360 0 0 1241 1375 999 10649 0 0 4.5572 4.5572 -163.784 -4.5572 0 0 1.08113e+06 3740.92 0.41 1.01 0.26 -1 -1 0.41 0.0496907 0.0454144 140 85 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 33.23 vpr 62.14 MiB 0.03 7176 -1 -1 1 0.02 -1 -1 30220 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63628 31 32 457 373 1 302 85 17 17 289 -1 unnamed_device 23.8 MiB 3.50 1434 62.1 MiB 0.56 0.01 4.12662 -140.111 -4.12662 4.12662 1.01 0.000720022 0.00062073 0.0336736 0.029969 40 3796 42 6.99608e+06 323745 706193. 2443.58 24.90 0.326161 0.287598 26914 176310 -1 3198 30 3448 3953 793532 305137 0 0 793532 305137 3953 3721 0 0 12483 10865 0 0 26903 15661 0 0 3953 3818 0 0 372163 140602 0 0 374077 130470 0 0 3953 0 0 505 574 531 6631 0 0 4.76044 4.76044 -178.167 -4.76044 0 0 926341. 3205.33 0.37 0.30 0.21 -1 -1 0.37 0.0340275 0.0303438 138 105 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 14.48 vpr 62.12 MiB 0.10 6764 -1 -1 1 0.02 -1 -1 29732 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63612 32 32 356 305 1 233 79 17 17 289 -1 unnamed_device 23.5 MiB 3.96 1051 62.1 MiB 0.67 0.01 3.12513 -110.742 -3.12513 3.12513 1.03 0.00034716 0.000292386 0.0330574 0.0281399 36 3173 47 6.99608e+06 220735 648988. 2245.63 4.08 0.157542 0.137791 26050 158493 -1 2419 25 1928 2416 300803 85491 0 0 300803 85491 2416 2279 0 0 7867 6670 0 0 14597 9619 0 0 2416 2309 0 0 139800 32944 0 0 133707 31670 0 0 2416 0 0 488 629 574 5221 0 0 3.94736 3.94736 -142.509 -3.94736 0 0 828058. 2865.25 0.34 1.20 0.17 -1 -1 0.34 0.0338756 0.0307946 102 86 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 15.58 vpr 62.19 MiB 0.12 6840 -1 -1 1 0.02 -1 -1 29792 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 365 283 1 217 79 17 17 289 -1 unnamed_device 23.5 MiB 1.39 913 62.2 MiB 0.18 0.00 3.13845 -111.068 -3.13845 3.13845 1.09 0.000341704 0.000273726 0.0312481 0.0254665 46 2649 29 6.99608e+06 220735 828058. 2865.25 7.32 0.203269 0.176488 28066 200906 -1 1977 28 2137 2831 321091 137487 0 0 321091 137487 2831 2448 0 0 8536 7739 0 0 16846 10168 0 0 2831 2479 0 0 151357 57655 0 0 138690 56998 0 0 2831 0 0 694 615 452 6122 0 0 3.87882 3.87882 -141.931 -3.87882 0 0 1.01997e+06 3529.29 0.35 1.14 0.21 -1 -1 0.35 0.0334884 0.0301877 91 31 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 21.00 vpr 61.98 MiB 0.11 7244 -1 -1 1 0.01 -1 -1 30092 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63464 31 32 445 338 1 261 84 17 17 289 -1 unnamed_device 23.6 MiB 2.24 1094 62.0 MiB 0.19 0.00 3.28239 -113.667 -3.28239 3.28239 1.03 0.000374764 0.000302368 0.0351454 0.0287238 56 2577 32 6.99608e+06 309029 973134. 3367.25 14.53 0.331742 0.290968 29794 239141 -1 2263 22 2507 3318 318465 70767 0 0 318465 70767 3318 2682 0 0 11247 9513 0 0 19449 13409 0 0 3318 2908 0 0 139237 20688 0 0 141896 21567 0 0 3318 0 0 811 956 830 8487 0 0 3.91282 3.91282 -144.482 -3.91282 0 0 1.19926e+06 4149.71 0.35 0.13 0.30 -1 -1 0.35 0.0287385 0.0257009 118 50 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 13.45 vpr 62.23 MiB 0.14 7224 -1 -1 1 0.02 -1 -1 30124 -1 -1 20 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 376 300 1 228 82 17 17 289 -1 unnamed_device 23.4 MiB 1.97 1086 62.2 MiB 0.53 0.00 2.93349 -100.655 -2.93349 2.93349 0.98 0.000328867 0.000268282 0.042037 0.0360187 46 2675 19 6.99608e+06 294314 828058. 2865.25 6.50 0.199596 0.173413 28066 200906 -1 2232 17 1558 2288 154256 33914 0 0 154256 33914 2288 1758 0 0 7417 6498 0 0 11541 8217 0 0 2288 1817 0 0 64696 8115 0 0 66026 7509 0 0 2288 0 0 730 694 536 6036 0 0 3.39506 3.39506 -125.197 -3.39506 0 0 1.01997e+06 3529.29 0.41 0.08 0.24 -1 -1 0.41 0.0229034 0.0206917 102 50 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 10.46 vpr 62.31 MiB 0.10 7056 -1 -1 1 0.02 -1 -1 29976 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 408 320 1 252 81 17 17 289 -1 unnamed_device 23.7 MiB 1.52 1152 62.3 MiB 0.47 0.01 3.55094 -125.18 -3.55094 3.55094 1.14 0.000304624 0.000247701 0.0400403 0.0337185 46 3646 32 6.99608e+06 250167 828058. 2865.25 3.07 0.159355 0.139332 28066 200906 -1 2738 22 2253 2781 220648 47797 0 0 220648 47797 2781 2542 0 0 8433 7443 0 0 14391 9330 0 0 2781 2657 0 0 94182 13172 0 0 98080 12653 0 0 2781 0 0 528 526 442 5389 0 0 4.78915 4.78915 -174.737 -4.78915 0 0 1.01997e+06 3529.29 0.37 0.85 0.21 -1 -1 0.37 0.0329858 0.0299517 107 61 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 13.25 vpr 62.48 MiB 0.11 7084 -1 -1 1 0.01 -1 -1 30004 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 406 319 1 253 82 17 17 289 -1 unnamed_device 23.8 MiB 1.50 1035 62.5 MiB 0.57 0.00 2.73464 -101.863 -2.73464 2.73464 0.96 0.000547176 0.000492808 0.0382819 0.0328086 50 2628 21 6.99608e+06 264882 902133. 3121.57 7.02 0.267847 0.213255 28642 213929 -1 2233 22 2355 3063 244598 50880 0 0 244598 50880 3063 2571 0 0 9629 8428 0 0 16954 11066 0 0 3063 2644 0 0 108963 12919 0 0 102926 13252 0 0 3063 0 0 708 778 762 7103 0 0 3.09891 3.09891 -123.972 -3.09891 0 0 1.08113e+06 3740.92 0.38 0.10 0.22 -1 -1 0.38 0.0237822 0.0212063 108 61 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 12.69 vpr 61.50 MiB 0.20 7004 -1 -1 1 0.02 -1 -1 29828 -1 -1 14 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62976 29 32 291 242 1 171 75 17 17 289 -1 unnamed_device 22.9 MiB 1.35 827 61.5 MiB 0.46 0.01 2.89729 -102.313 -2.89729 2.89729 1.06 0.000329222 0.000287456 0.0251105 0.0214522 38 2023 21 6.99608e+06 206020 678818. 2348.85 6.26 0.148258 0.128461 26626 170182 -1 1803 20 1474 1912 153164 31277 0 0 153164 31277 1912 1661 0 0 5853 5089 0 0 9471 6366 0 0 1912 1680 0 0 69345 7637 0 0 64671 8844 0 0 1912 0 0 438 351 435 4012 0 0 3.39486 3.39486 -127.621 -3.39486 0 0 902133. 3121.57 0.39 0.60 0.21 -1 -1 0.39 0.0248207 0.0225649 73 28 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 15.55 vpr 61.86 MiB 0.03 6840 -1 -1 1 0.01 -1 -1 29820 -1 -1 14 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63348 32 32 335 291 1 207 78 17 17 289 -1 unnamed_device 23.2 MiB 3.39 829 61.9 MiB 0.69 0.01 2.99983 -100.033 -2.99983 2.99983 1.01 0.000979735 0.000784252 0.0365743 0.0308906 46 2372 24 6.99608e+06 206020 828058. 2865.25 7.21 0.189016 0.164659 28066 200906 -1 1752 24 1759 2131 155152 34676 0 0 155152 34676 2131 1890 0 0 6721 5935 0 0 11457 7669 0 0 2131 1948 0 0 67795 8421 0 0 64917 8813 0 0 2131 0 0 372 411 388 4046 0 0 3.62366 3.62366 -122.989 -3.62366 0 0 1.01997e+06 3529.29 0.32 0.07 0.19 -1 -1 0.32 0.0183539 0.016363 91 79 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 11.84 vpr 62.27 MiB 0.03 7008 -1 -1 1 0.02 -1 -1 29924 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 367 283 1 217 79 17 17 289 -1 unnamed_device 23.5 MiB 1.09 893 62.3 MiB 0.60 0.01 3.18065 -112.148 -3.18065 3.18065 1.11 0.00035445 0.000300758 0.0406852 0.035646 44 2956 27 6.99608e+06 235451 787024. 2723.27 6.31 0.180072 0.160265 27778 195446 -1 2021 22 2035 2642 193066 43971 0 0 193066 43971 2642 2275 0 0 8173 7196 0 0 14046 9433 0 0 2642 2327 0 0 85090 10757 0 0 80473 11983 0 0 2642 0 0 607 573 577 5989 0 0 4.17142 4.17142 -148.528 -4.17142 0 0 997811. 3452.63 0.39 0.10 0.23 -1 -1 0.39 0.0282167 0.0255585 91 29 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 12.97 vpr 61.82 MiB 0.02 6880 -1 -1 1 0.02 -1 -1 29956 -1 -1 16 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63304 29 32 301 258 1 191 77 17 17 289 -1 unnamed_device 23.0 MiB 2.13 718 61.8 MiB 0.83 0.01 2.55329 -83.6959 -2.55329 2.55329 1.03 0.000347934 0.000287728 0.0323405 0.0271333 40 2407 31 6.99608e+06 235451 706193. 2443.58 6.53 0.15361 0.135474 26914 176310 -1 1853 22 1534 1728 179377 39648 0 0 179377 39648 1728 1685 0 0 6035 5241 0 0 11216 7519 0 0 1728 1695 0 0 76237 12433 0 0 82433 11075 0 0 1728 0 0 194 189 206 2763 0 0 3.54406 3.54406 -120.407 -3.54406 0 0 926341. 3205.33 0.36 0.09 0.22 -1 -1 0.36 0.0193406 0.0171945 81 48 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 14.47 vpr 61.71 MiB 0.02 6728 -1 -1 1 0.01 -1 -1 29804 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63196 32 32 315 257 1 188 77 17 17 289 -1 unnamed_device 23.2 MiB 1.11 738 61.7 MiB 0.15 0.00 2.94309 -108.661 -2.94309 2.94309 0.97 0.000297874 0.000237759 0.0204718 0.0167362 42 2499 40 6.99608e+06 191304 744469. 2576.02 9.62 0.215193 0.187967 27202 183097 -1 1795 22 1800 2248 203478 43393 0 0 203478 43393 2248 2045 0 0 7324 6457 0 0 13037 8630 0 0 2248 2085 0 0 91231 11383 0 0 87390 12793 0 0 2248 0 0 448 470 382 4466 0 0 3.60011 3.60011 -138.417 -3.60011 0 0 949917. 3286.91 0.36 0.09 0.21 -1 -1 0.36 0.0230174 0.0207258 79 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 14.01 vpr 61.92 MiB 0.03 7072 -1 -1 1 0.02 -1 -1 29928 -1 -1 19 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63404 31 32 389 309 1 239 82 17 17 289 -1 unnamed_device 23.1 MiB 1.42 929 61.9 MiB 1.04 0.01 3.53218 -119.083 -3.53218 3.53218 1.16 0.000542512 0.000448519 0.0442778 0.0379087 46 2862 32 6.99608e+06 279598 828058. 2865.25 7.56 0.246992 0.216417 28066 200906 -1 2221 21 2180 2981 250146 54497 0 0 250146 54497 2981 2490 0 0 9442 8442 0 0 16155 10735 0 0 2981 2585 0 0 104922 15791 0 0 113665 14454 0 0 2981 0 0 801 885 799 7438 0 0 4.29145 4.29145 -148.903 -4.29145 0 0 1.01997e+06 3529.29 0.35 0.10 0.20 -1 -1 0.35 0.025488 0.0229489 105 60 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 16.21 vpr 61.95 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 29820 -1 -1 13 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63440 31 32 310 264 1 192 76 17 17 289 -1 unnamed_device 23.3 MiB 3.08 715 62.0 MiB 0.89 0.00 2.61074 -88.9551 -2.61074 2.61074 0.95 0.000532084 0.000434626 0.0339916 0.0286982 44 2597 45 6.99608e+06 191304 787024. 2723.27 8.84 0.207567 0.181431 27778 195446 -1 1648 20 1341 1685 137690 31354 0 0 137690 31354 1685 1568 0 0 5317 4675 0 0 9088 6175 0 0 1685 1659 0 0 59435 8779 0 0 60480 8498 0 0 1685 0 0 344 369 208 3324 0 0 3.26866 3.26866 -120.682 -3.26866 0 0 997811. 3452.63 0.41 0.07 0.24 -1 -1 0.41 0.01833 0.0162826 81 49 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 15.78 vpr 62.17 MiB 0.02 6972 -1 -1 1 0.02 -1 -1 30092 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 384 308 1 232 82 17 17 289 -1 unnamed_device 23.4 MiB 1.55 964 62.2 MiB 0.33 0.00 2.97859 -100.784 -2.97859 2.97859 1.06 0.000347827 0.000281385 0.0370509 0.0317114 50 2661 33 6.99608e+06 264882 902133. 3121.57 10.22 0.269478 0.236929 28642 213929 -1 2120 21 1747 2345 206316 49668 0 0 206316 49668 2345 1966 0 0 7842 6713 0 0 12821 8936 0 0 2345 2047 0 0 85024 15279 0 0 95939 14727 0 0 2345 0 0 598 769 816 6848 0 0 3.40881 3.40881 -130.502 -3.40881 0 0 1.08113e+06 3740.92 0.44 0.11 0.21 -1 -1 0.44 0.0278218 0.0250433 103 56 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 31.94 vpr 62.07 MiB 0.03 7172 -1 -1 1 0.02 -1 -1 29936 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63564 31 32 424 341 1 272 84 17 17 289 -1 unnamed_device 23.5 MiB 0.80 1303 62.1 MiB 0.46 0.00 3.98442 -134.478 -3.98442 3.98442 0.91 0.000363053 0.000294396 0.0411721 0.0351016 40 3298 35 6.99608e+06 309029 706193. 2443.58 27.55 0.318121 0.279818 26914 176310 -1 2936 23 2939 4020 425652 97571 0 0 425652 97571 4020 3420 0 0 13428 12214 0 0 25770 16644 0 0 4020 3589 0 0 193480 31029 0 0 184934 30675 0 0 4020 0 0 1081 1324 1355 10592 0 0 4.46914 4.46914 -165.899 -4.46914 0 0 926341. 3205.33 0.36 0.16 0.21 -1 -1 0.36 0.0273612 0.024391 122 88 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 31.80 vpr 62.10 MiB 0.02 6808 -1 -1 1 0.02 -1 -1 29900 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63588 32 32 334 280 1 208 77 17 17 289 -1 unnamed_device 23.2 MiB 3.12 949 62.1 MiB 0.96 0.00 2.83824 -103.95 -2.83824 2.83824 1.12 0.000367911 0.000309974 0.0322089 0.0277203 40 2717 24 6.99608e+06 191304 706193. 2443.58 24.26 0.282969 0.250929 26914 176310 -1 2395 22 1826 2577 258839 56407 0 0 258839 56407 2577 2135 0 0 8686 7629 0 0 15791 10382 0 0 2577 2344 0 0 116047 17191 0 0 113161 16726 0 0 2577 0 0 751 725 809 6496 0 0 3.97102 3.97102 -140.595 -3.97102 0 0 926341. 3205.33 0.35 0.11 0.13 -1 -1 0.35 0.0248994 0.0224403 88 54 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 19.78 vpr 61.91 MiB 0.02 6908 -1 -1 1 0.01 -1 -1 29840 -1 -1 14 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63392 32 32 340 284 1 212 78 17 17 289 -1 unnamed_device 23.0 MiB 1.04 828 61.9 MiB 0.19 0.00 2.68144 -96.471 -2.68144 2.68144 0.88 0.000303521 0.000237897 0.0255888 0.0210277 46 2441 38 6.99608e+06 206020 828058. 2865.25 15.27 0.231015 0.201043 28066 200906 -1 1648 21 1571 1888 144563 34287 0 0 144563 34287 1888 1795 0 0 5785 5189 0 0 10390 6581 0 0 1888 1807 0 0 62007 9126 0 0 62605 9789 0 0 1888 0 0 317 355 333 3527 0 0 3.43281 3.43281 -122.397 -3.43281 0 0 1.01997e+06 3529.29 0.41 0.08 0.24 -1 -1 0.41 0.0201459 0.0179542 91 60 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 26.86 vpr 62.16 MiB 0.03 7156 -1 -1 1 0.01 -1 -1 30292 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63648 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 23.5 MiB 1.17 1129 62.2 MiB 0.60 0.00 3.22785 -121.486 -3.22785 3.22785 1.12 0.000316245 0.000259651 0.043816 0.037888 38 3492 32 6.99608e+06 264882 678818. 2348.85 19.19 0.332058 0.294132 26626 170182 -1 2614 23 2303 2810 242383 49811 0 0 242383 49811 2810 2454 0 0 8498 7622 0 0 14277 9220 0 0 2810 2470 0 0 107296 14198 0 0 106692 13847 0 0 2810 0 0 507 386 440 5257 0 0 4.77112 4.77112 -169.626 -4.77112 0 0 902133. 3121.57 0.34 0.89 0.16 -1 -1 0.34 0.0299925 0.027086 110 49 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 15.41 vpr 62.15 MiB 0.18 6928 -1 -1 1 0.02 -1 -1 30064 -1 -1 21 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63644 29 32 371 297 1 222 82 17 17 289 -1 unnamed_device 23.3 MiB 2.14 863 62.2 MiB 0.28 0.00 2.79574 -93.8705 -2.79574 2.79574 1.04 0.000341243 0.00027681 0.0280328 0.0238107 44 2580 26 6.99608e+06 309029 787024. 2723.27 7.89 0.242162 0.216139 27778 195446 -1 1996 20 1783 2436 170234 39331 0 0 170234 39331 2436 1984 0 0 7777 6773 0 0 13290 9115 0 0 2436 2114 0 0 69084 10325 0 0 75211 9020 0 0 2436 0 0 653 926 1035 7714 0 0 3.77071 3.77071 -125.525 -3.77071 0 0 997811. 3452.63 0.34 0.45 0.23 -1 -1 0.34 0.0314075 0.0285835 101 54 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 12.58 vpr 62.33 MiB 0.20 6936 -1 -1 1 0.03 -1 -1 30092 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 470 382 1 309 86 17 17 289 -1 unnamed_device 23.9 MiB 0.98 1425 62.3 MiB 0.19 0.00 3.64737 -135.181 -3.64737 3.64737 0.96 0.000345899 0.000281897 0.0375154 0.0309796 44 3867 26 6.99608e+06 323745 787024. 2723.27 5.22 0.210793 0.186197 27778 195446 -1 3087 22 2950 3489 318893 64152 0 0 318893 64152 3489 3231 0 0 10882 9875 0 0 19118 12729 0 0 3489 3257 0 0 140424 18185 0 0 141491 16875 0 0 3489 0 0 539 533 492 6131 0 0 4.60179 4.60179 -175.706 -4.60179 0 0 997811. 3452.63 0.32 0.95 0.20 -1 -1 0.32 0.0336409 0.0304754 140 117 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 15.07 vpr 61.50 MiB 0.14 6800 -1 -1 1 0.02 -1 -1 29872 -1 -1 11 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62980 31 32 261 214 1 143 74 17 17 289 -1 unnamed_device 23.1 MiB 1.21 634 61.5 MiB 0.13 0.00 2.29975 -78.6304 -2.29975 2.29975 0.87 0.000266139 0.00021474 0.0197314 0.0162333 40 1966 34 6.99608e+06 161872 706193. 2443.58 8.40 0.175369 0.152428 26914 176310 -1 1639 27 1255 1935 188000 41038 0 0 188000 41038 1935 1763 0 0 6398 5659 0 0 11466 7524 0 0 1935 1800 0 0 84126 11857 0 0 82140 12435 0 0 1935 0 0 680 702 779 5612 0 0 2.97477 2.97477 -112.669 -2.97477 0 0 926341. 3205.33 0.35 0.88 0.21 -1 -1 0.35 0.0287463 0.0260278 57 -1 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 16.74 vpr 62.53 MiB 0.21 7028 -1 -1 1 0.02 -1 -1 29892 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 419 339 1 263 85 17 17 289 -1 unnamed_device 23.6 MiB 4.37 1115 62.5 MiB 0.47 0.02 4.00273 -135.636 -4.00273 4.00273 1.09 0.000619128 0.000534157 0.0289482 0.0244555 44 3311 30 6.99608e+06 309029 787024. 2723.27 6.71 0.153268 0.135231 27778 195446 -1 2342 21 2500 3247 219517 49306 0 0 219517 49306 3247 2763 0 0 10498 9322 0 0 17220 12026 0 0 3247 2926 0 0 99238 9887 0 0 86067 12382 0 0 3247 0 0 747 778 634 7402 0 0 4.7821 4.7821 -163.924 -4.7821 0 0 997811. 3452.63 0.38 0.10 0.20 -1 -1 0.38 0.0248372 0.0222038 118 89 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 18.21 vpr 62.07 MiB 0.18 6900 -1 -1 1 0.01 -1 -1 29784 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63560 32 32 377 319 1 253 80 17 17 289 -1 unnamed_device 23.3 MiB 1.47 1154 62.1 MiB 0.19 0.00 3.88907 -143.247 -3.88907 3.88907 1.10 0.000351963 0.000284948 0.0299887 0.0245438 48 3191 25 6.99608e+06 235451 865456. 2994.66 11.78 0.248617 0.218551 28354 207349 -1 2660 43 4176 5408 1072076 372038 0 0 1072076 372038 5408 4879 0 0 17138 15083 0 0 40232 22183 0 0 5408 4979 0 0 503514 164069 0 0 500376 160845 0 0 5408 0 0 1232 1417 1530 12191 0 0 4.58234 4.58234 -174.777 -4.58234 0 0 1.05005e+06 3633.38 0.37 0.39 0.21 -1 -1 0.37 0.0534374 0.0485912 110 93 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 14.37 vpr 62.23 MiB 0.15 6992 -1 -1 1 0.01 -1 -1 30136 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63728 32 32 402 317 1 247 83 17 17 289 -1 unnamed_device 23.3 MiB 1.58 1174 62.2 MiB 0.14 0.00 2.81774 -110.396 -2.81774 2.81774 1.08 0.000376709 0.00031085 0.0224911 0.0186037 40 3055 27 6.99608e+06 279598 706193. 2443.58 5.99 0.170407 0.150424 26914 176310 -1 2685 21 2250 2779 278758 54940 0 0 278758 54940 2779 2456 0 0 8925 7746 0 0 16116 10413 0 0 2779 2531 0 0 126530 16264 0 0 121629 15530 0 0 2779 0 0 529 661 680 6467 0 0 3.59711 3.59711 -145.849 -3.59711 0 0 926341. 3205.33 0.30 0.95 0.21 -1 -1 0.30 0.0302929 0.0273237 106 59 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 24.43 vpr 62.46 MiB 0.03 7148 -1 -1 1 0.02 -1 -1 30184 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63956 32 32 501 383 1 312 86 17 17 289 -1 unnamed_device 24.2 MiB 1.48 1340 62.5 MiB 0.21 0.00 3.84453 -136.265 -3.84453 3.84453 1.13 0.000429174 0.000350454 0.0414152 0.0342237 54 3403 27 6.99608e+06 323745 949917. 3286.91 18.56 0.36264 0.319011 29506 232905 -1 2495 22 2704 3106 237421 52147 0 0 237421 52147 3106 2841 0 0 9549 8484 0 0 15709 10460 0 0 3106 2892 0 0 99524 14261 0 0 106427 13209 0 0 3106 0 0 402 394 319 5025 0 0 5.2234 5.2234 -185.186 -5.2234 0 0 1.17392e+06 4061.99 0.47 0.21 0.28 -1 -1 0.47 0.034202 0.0306795 141 81 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 15.47 vpr 61.31 MiB 0.02 6860 -1 -1 1 0.02 -1 -1 29732 -1 -1 13 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62780 30 32 249 232 1 154 75 17 17 289 -1 unnamed_device 22.7 MiB 2.94 544 61.3 MiB 0.11 0.00 2.25155 -74.472 -2.25155 2.25155 1.09 0.00022325 0.000176694 0.0211496 0.0169722 44 1627 30 6.99608e+06 191304 787024. 2723.27 6.64 0.131764 0.112976 27778 195446 -1 1161 22 845 864 66148 16037 0 0 66148 16037 864 849 0 0 2990 2538 0 0 4702 3477 0 0 864 861 0 0 26017 4433 0 0 30711 3879 0 0 864 0 0 19 20 8 949 0 0 2.32007 2.32007 -91.5011 -2.32007 0 0 997811. 3452.63 0.39 0.65 0.22 -1 -1 0.39 0.0180758 0.0161664 65 51 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 17.54 vpr 61.29 MiB 0.02 6836 -1 -1 1 0.02 -1 -1 29944 -1 -1 14 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62756 30 32 299 247 1 167 76 17 17 289 -1 unnamed_device 22.7 MiB 3.97 741 61.3 MiB 0.13 0.00 2.78909 -98.5383 -2.78909 2.78909 1.06 0.000316997 0.00026162 0.0237008 0.0194699 40 1987 24 6.99608e+06 206020 706193. 2443.58 7.87 0.184354 0.160743 26914 176310 -1 1755 19 1387 1985 198381 39676 0 0 198381 39676 1985 1720 0 0 6849 5901 0 0 11578 8010 0 0 1985 1739 0 0 91401 10973 0 0 84583 11333 0 0 1985 0 0 598 704 520 5363 0 0 3.40101 3.40101 -129.379 -3.40101 0 0 926341. 3205.33 0.35 0.62 0.22 -1 -1 0.35 0.0255454 0.0233514 72 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 13.10 vpr 61.61 MiB 0.11 6708 -1 -1 1 0.02 -1 -1 29756 -1 -1 12 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63088 32 32 315 257 1 192 76 17 17 289 -1 unnamed_device 23.1 MiB 0.34 817 61.6 MiB 0.73 0.01 2.73464 -103.374 -2.73464 2.73464 1.05 0.000475159 0.000408783 0.0307521 0.0266909 44 3155 37 6.99608e+06 176588 787024. 2723.27 6.46 0.151457 0.133112 27778 195446 -1 2041 20 1928 2961 269318 56205 0 0 269318 56205 2961 2522 0 0 8963 8036 0 0 15880 10361 0 0 2961 2643 0 0 124996 14754 0 0 113557 17889 0 0 2961 0 0 1033 795 822 8107 0 0 3.28351 3.28351 -129.882 -3.28351 0 0 997811. 3452.63 0.40 0.99 0.21 -1 -1 0.40 0.0253132 0.0228953 80 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 16.06 vpr 61.13 MiB 0.03 6824 -1 -1 1 0.01 -1 -1 29940 -1 -1 18 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62596 25 32 259 222 1 151 75 17 17 289 -1 unnamed_device 22.6 MiB 0.98 566 61.1 MiB 0.35 0.00 2.75555 -76.5316 -2.75555 2.75555 1.11 0.000297903 0.000243601 0.0215768 0.0183185 36 1835 36 6.99608e+06 264882 648988. 2245.63 8.94 0.173899 0.152476 26050 158493 -1 1412 20 1103 1506 122900 28242 0 0 122900 28242 1506 1322 0 0 4852 4157 0 0 8194 5586 0 0 1506 1355 0 0 53947 7853 0 0 52895 7969 0 0 1506 0 0 403 525 479 4093 0 0 3.40963 3.40963 -104.992 -3.40963 0 0 828058. 2865.25 0.28 0.67 0.17 -1 -1 0.28 0.0205371 0.0185647 68 19 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 16.67 vpr 62.30 MiB 0.10 6908 -1 -1 1 0.03 -1 -1 30104 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63796 32 32 433 347 1 281 84 17 17 289 -1 unnamed_device 24.0 MiB 1.72 1301 62.3 MiB 0.18 0.00 3.11645 -119.622 -3.11645 3.11645 1.08 0.000340394 0.000276115 0.0312696 0.0257306 56 3179 20 6.99608e+06 294314 973134. 3367.25 8.29 0.275474 0.244656 29794 239141 -1 2824 21 2637 3694 377501 72179 0 0 377501 72179 3694 3038 0 0 12328 10661 0 0 21774 14808 0 0 3694 3459 0 0 183559 17754 0 0 152452 22459 0 0 3694 0 0 1057 931 894 8714 0 0 4.01312 4.01312 -151.038 -4.01312 0 0 1.19926e+06 4149.71 0.42 0.67 0.32 -1 -1 0.42 0.0320533 0.029256 125 84 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 16.97 vpr 61.92 MiB 0.04 7008 -1 -1 1 0.01 -1 -1 29904 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63404 31 32 423 341 1 270 85 17 17 289 -1 unnamed_device 23.4 MiB 1.26 1053 61.9 MiB 0.85 0.02 3.41798 -116.032 -3.41798 3.41798 1.10 0.000666366 0.000582304 0.0468811 0.0399651 52 2904 24 6.99608e+06 323745 926341. 3205.33 8.54 0.305654 0.269797 29218 227130 -1 2145 19 2407 3109 213417 49226 0 0 213417 49226 3109 2643 0 0 10147 9087 0 0 16347 11795 0 0 3109 2704 0 0 95640 9935 0 0 85065 13062 0 0 3109 0 0 702 590 395 6528 0 0 3.96865 3.96865 -142.273 -3.96865 0 0 1.14541e+06 3963.36 0.50 0.63 0.25 -1 -1 0.50 0.0308371 0.0282303 121 88 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 19.08 vpr 61.32 MiB 0.03 6828 -1 -1 14 0.32 -1 -1 32328 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62796 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 22.8 MiB 3.03 1171 61.3 MiB 0.16 0.00 7.1786 -141.837 -7.1786 7.1786 1.08 0.000456979 0.000370317 0.0359384 0.0296901 42 3418 46 6.79088e+06 255968 744469. 2576.02 10.41 0.368192 0.327039 26542 182613 -1 2651 26 1727 4962 437940 152335 0 0 437940 152335 4962 2437 0 0 15925 13812 0 0 29767 19146 0 0 4962 2964 0 0 193870 59105 0 0 188454 54871 0 0 4962 0 0 3235 5349 5249 34381 0 0 7.5937 7.5937 -161.726 -7.5937 0 0 949917. 3286.91 0.32 0.95 0.21 -1 -1 0.32 0.0491058 0.0449582 134 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 14.24 vpr 61.44 MiB 0.11 6628 -1 -1 14 0.31 -1 -1 32328 -1 -1 20 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62912 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 22.9 MiB 2.51 1287 61.4 MiB 0.13 0.00 6.84273 -137.13 -6.84273 6.84273 1.02 0.000483341 0.000394451 0.0290449 0.0240428 38 3230 25 6.79088e+06 269440 678818. 2348.85 5.92 0.190173 0.16788 25966 169698 -1 2676 16 1302 3432 188177 42078 0 0 188177 42078 3432 1847 0 0 10740 9181 0 0 16940 11713 0 0 3432 2133 0 0 75485 8874 0 0 78148 8330 0 0 3432 0 0 2130 3505 3340 23951 0 0 7.34393 7.34393 -155.666 -7.34393 0 0 902133. 3121.57 0.31 0.75 0.18 -1 -1 0.31 0.0357989 0.0331719 132 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 20.70 vpr 61.72 MiB 0.11 6628 -1 -1 11 0.24 -1 -1 32284 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63204 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 23.1 MiB 2.20 1057 61.7 MiB 0.58 0.01 5.91503 -114.436 -5.91503 5.91503 1.03 0.000683987 0.000566846 0.0465444 0.0396532 40 3038 26 6.79088e+06 269440 706193. 2443.58 12.12 0.30103 0.265929 26254 175826 -1 2740 18 1380 4218 304764 67428 0 0 304764 67428 4218 2443 0 0 13964 12073 0 0 24914 16688 0 0 4218 2857 0 0 123046 17257 0 0 134404 16110 0 0 4218 0 0 2838 6588 5964 38246 0 0 6.00113 6.00113 -133.495 -6.00113 0 0 926341. 3205.33 0.33 0.31 0.21 -1 -1 0.33 0.0338682 0.0307688 138 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 10.61 vpr 61.16 MiB 0.13 6600 -1 -1 12 0.43 -1 -1 32280 -1 -1 22 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62628 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 22.6 MiB 1.92 1073 61.2 MiB 0.51 0.00 6.07188 -117.783 -6.07188 6.07188 1.07 0.000564882 0.000479282 0.0395281 0.0339189 36 3372 40 6.79088e+06 296384 648988. 2245.63 3.32 0.203572 0.181172 25390 158009 -1 2744 22 1605 4970 298641 66324 0 0 298641 66324 4970 2633 0 0 15461 13354 0 0 27157 18116 0 0 4970 3135 0 0 120442 15274 0 0 125641 13812 0 0 4970 0 0 3365 5589 5871 37583 0 0 6.44778 6.44778 -138.001 -6.44778 0 0 828058. 2865.25 0.23 0.60 0.18 -1 -1 0.23 0.0303589 0.0274661 136 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 17.85 vpr 61.75 MiB 0.09 6608 -1 -1 13 0.34 -1 -1 32424 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63236 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 22.9 MiB 3.24 1433 61.8 MiB 0.18 0.00 6.54861 -138.074 -6.54861 6.54861 1.02 0.000569719 0.000466451 0.0386431 0.032021 44 3629 18 6.79088e+06 323328 787024. 2723.27 7.75 0.334809 0.298555 27118 194962 -1 2955 15 1548 4241 210603 49240 0 0 210603 49240 4241 2129 0 0 13456 11670 0 0 21605 15180 0 0 4241 2550 0 0 83763 8778 0 0 83297 8933 0 0 4241 0 0 2693 3254 4016 27708 0 0 6.96371 6.96371 -159.614 -6.96371 0 0 997811. 3452.63 0.32 0.82 0.27 -1 -1 0.32 0.033487 0.0307751 160 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 15.98 vpr 61.77 MiB 0.12 6684 -1 -1 12 0.28 -1 -1 32228 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63252 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 23.0 MiB 3.37 1311 61.8 MiB 0.22 0.00 6.25532 -135.367 -6.25532 6.25532 1.12 0.000490546 0.000397502 0.0240203 0.0203828 38 3589 28 6.79088e+06 323328 678818. 2348.85 6.51 0.242369 0.218278 25966 169698 -1 2988 15 1432 4208 225287 50900 0 0 225287 50900 4208 2001 0 0 13062 11198 0 0 19900 14059 0 0 4208 2441 0 0 91212 10987 0 0 92697 10214 0 0 4208 0 0 2776 5239 4293 32930 0 0 6.70957 6.70957 -158.507 -6.70957 0 0 902133. 3121.57 0.28 0.61 0.17 -1 -1 0.28 0.0328146 0.0299913 150 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 11.50 vpr 60.82 MiB 0.18 6428 -1 -1 12 0.19 -1 -1 31968 -1 -1 20 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62284 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 22.2 MiB 2.19 972 60.8 MiB 0.17 0.01 5.95433 -114.661 -5.95433 5.95433 0.99 0.00053248 0.000461608 0.0181425 0.0154204 44 2417 19 6.79088e+06 269440 787024. 2723.27 4.39 0.108857 0.096533 27118 194962 -1 1988 17 975 2549 144040 31922 0 0 144040 31922 2549 1426 0 0 8121 7001 0 0 13057 9215 0 0 2549 1656 0 0 57998 6545 0 0 59766 6079 0 0 2549 0 0 1574 1738 2023 14320 0 0 6.20493 6.20493 -127.252 -6.20493 0 0 997811. 3452.63 0.44 0.07 0.22 -1 -1 0.44 0.020776 0.0189805 101 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 14.67 vpr 61.30 MiB 0.06 6632 -1 -1 11 0.20 -1 -1 32316 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62768 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 22.8 MiB 2.43 1181 61.3 MiB 0.47 0.00 5.36687 -116.355 -5.36687 5.36687 1.06 0.000686819 0.000601496 0.0435501 0.0372407 38 3159 28 6.79088e+06 242496 678818. 2348.85 7.37 0.225731 0.201147 25966 169698 -1 2549 17 1209 3525 194725 42569 0 0 194725 42569 3525 1711 0 0 10741 9238 0 0 17366 11628 0 0 3525 1943 0 0 80272 9026 0 0 79296 9023 0 0 3525 0 0 2316 4465 3959 30035 0 0 5.49217 5.49217 -130.711 -5.49217 0 0 902133. 3121.57 0.38 0.10 0.20 -1 -1 0.38 0.03238 0.0300148 118 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 14.41 vpr 61.21 MiB 0.11 6476 -1 -1 12 0.19 -1 -1 32104 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62676 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 22.8 MiB 3.61 1126 61.2 MiB 0.14 0.00 5.49223 -117.258 -5.49223 5.49223 0.97 0.00038039 0.000310041 0.0301713 0.0249375 40 2429 16 6.79088e+06 242496 706193. 2443.58 6.49 0.197501 0.173931 26254 175826 -1 2383 16 1015 2335 162554 35176 0 0 162554 35176 2335 1437 0 0 8029 6703 0 0 13767 9543 0 0 2335 1719 0 0 66632 8345 0 0 69456 7429 0 0 2335 0 0 1320 1906 1456 12501 0 0 5.86813 5.86813 -131.572 -5.86813 0 0 926341. 3205.33 0.36 0.08 0.20 -1 -1 0.36 0.0243662 0.0223032 111 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 17.58 vpr 61.42 MiB 0.03 6512 -1 -1 13 0.26 -1 -1 32336 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62892 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 22.7 MiB 2.32 1052 61.4 MiB 0.56 0.01 5.99697 -135.029 -5.99697 5.99697 0.98 0.00061049 0.000481323 0.0226964 0.0196475 38 2858 18 6.79088e+06 215552 678818. 2348.85 10.12 0.265016 0.234805 25966 169698 -1 2446 18 1100 2732 159018 36032 0 0 159018 36032 2732 1603 0 0 8684 7444 0 0 13349 9405 0 0 2732 1792 0 0 64632 8095 0 0 66889 7693 0 0 2732 0 0 1632 2305 2288 16355 0 0 6.49817 6.49817 -162.09 -6.49817 0 0 902133. 3121.57 0.36 0.75 0.20 -1 -1 0.36 0.0302014 0.0278218 107 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 14.28 vpr 61.03 MiB 0.02 6556 -1 -1 12 0.22 -1 -1 32168 -1 -1 16 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62492 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 22.5 MiB 2.20 828 61.0 MiB 0.51 0.01 5.99697 -122.038 -5.99697 5.99697 0.99 0.000424944 0.00036003 0.0216202 0.0190993 44 2110 27 6.79088e+06 215552 787024. 2723.27 7.78 0.202141 0.180493 27118 194962 -1 1740 17 759 1952 99254 23897 0 0 99254 23897 1952 1041 0 0 6228 5288 0 0 10216 7064 0 0 1952 1207 0 0 37012 5016 0 0 41894 4281 0 0 1952 0 0 1193 1467 1365 11617 0 0 6.24757 6.24757 -135.323 -6.24757 0 0 997811. 3452.63 0.41 0.06 0.22 -1 -1 0.41 0.0212518 0.0193301 93 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 11.91 vpr 60.91 MiB 0.02 6468 -1 -1 12 0.17 -1 -1 32272 -1 -1 14 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62376 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 22.3 MiB 2.80 1053 60.9 MiB 0.50 0.01 5.6029 -133.233 -5.6029 5.6029 0.97 0.000496312 0.00041393 0.0294534 0.0260919 38 2797 47 6.79088e+06 188608 678818. 2348.85 3.75 0.175307 0.157672 25966 169698 -1 2295 16 934 2423 134898 29815 0 0 134898 29815 2423 1363 0 0 7392 6304 0 0 11393 7858 0 0 2423 1510 0 0 55070 6566 0 0 56197 6214 0 0 2423 0 0 1489 2131 1834 14323 0 0 5.8535 5.8535 -151.334 -5.8535 0 0 902133. 3121.57 0.35 0.41 0.18 -1 -1 0.35 0.0255692 0.0236039 94 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 15.76 vpr 61.93 MiB 0.02 6524 -1 -1 13 0.35 -1 -1 32332 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63420 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 23.3 MiB 2.15 1240 61.9 MiB 0.97 0.01 6.71306 -141.158 -6.71306 6.71306 1.05 0.000449499 0.000386293 0.0642285 0.0555986 44 3169 27 6.79088e+06 282912 787024. 2723.27 8.53 0.321998 0.285832 27118 194962 -1 2596 16 1280 3701 198179 45335 0 0 198179 45335 3701 1781 0 0 11973 10325 0 0 19372 13772 0 0 3701 2165 0 0 78815 8750 0 0 80617 8542 0 0 3701 0 0 2421 3881 4264 30697 0 0 6.83836 6.83836 -155.274 -6.83836 0 0 997811. 3452.63 0.40 0.10 0.23 -1 -1 0.40 0.0333747 0.0306464 148 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 15.19 vpr 61.68 MiB 0.02 6556 -1 -1 14 0.39 -1 -1 32496 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63156 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 22.9 MiB 2.40 1378 61.7 MiB 0.97 0.01 7.55456 -155.259 -7.55456 7.55456 1.03 0.000576173 0.000477316 0.0636612 0.054814 36 4081 43 6.79088e+06 282912 648988. 2245.63 7.65 0.269865 0.241253 25390 158009 -1 3188 16 1510 4038 255438 56684 0 0 255438 56684 4038 2220 0 0 13032 11160 0 0 21697 15109 0 0 4038 2571 0 0 107375 12871 0 0 105258 12753 0 0 4038 0 0 2528 3784 4215 27487 0 0 7.67985 7.67985 -171.347 -7.67985 0 0 828058. 2865.25 0.35 0.15 0.19 -1 -1 0.35 0.044741 0.0417943 149 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 16.11 vpr 61.09 MiB 0.02 6532 -1 -1 11 0.22 -1 -1 31972 -1 -1 20 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62560 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 22.5 MiB 2.14 994 61.1 MiB 0.80 0.02 5.70368 -111.95 -5.70368 5.70368 1.15 0.00064156 0.000570724 0.046039 0.0401191 36 3090 48 6.79088e+06 269440 648988. 2245.63 9.21 0.222034 0.197709 25390 158009 -1 2411 17 1110 2712 167525 37802 0 0 167525 37802 2712 1731 0 0 8746 7496 0 0 14618 10200 0 0 2712 1942 0 0 68031 8431 0 0 70706 8002 0 0 2712 0 0 1602 2219 2473 15678 0 0 6.07958 6.07958 -129.543 -6.07958 0 0 828058. 2865.25 0.22 0.06 0.12 -1 -1 0.22 0.0150331 0.0136454 111 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 16.78 vpr 61.91 MiB 0.02 6708 -1 -1 12 0.36 -1 -1 32692 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63396 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 23.3 MiB 3.45 1315 61.9 MiB 0.75 0.02 6.17261 -133.634 -6.17261 6.17261 0.94 0.000763459 0.000646878 0.0642419 0.0551572 48 3753 28 6.79088e+06 269440 865456. 2994.66 8.29 0.357361 0.316969 27694 206865 -1 3358 21 1858 6026 379888 81819 0 0 379888 81819 6026 2957 0 0 18825 16507 0 0 35234 22211 0 0 6026 3681 0 0 154408 18592 0 0 159369 17871 0 0 6026 0 0 4168 7368 7438 50182 0 0 6.46241 6.46241 -151.239 -6.46241 0 0 1.05005e+06 3633.38 0.37 0.18 0.21 -1 -1 0.37 0.0522671 0.047668 146 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 29.27 vpr 61.93 MiB 0.02 6540 -1 -1 13 0.31 -1 -1 32328 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63412 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 23.2 MiB 2.37 1342 61.9 MiB 0.89 0.01 6.92025 -144.778 -6.92025 6.92025 1.02 0.000478844 0.000414576 0.0610758 0.0527749 36 3964 31 6.79088e+06 282912 648988. 2245.63 20.62 0.377253 0.335409 25390 158009 -1 3049 24 1468 4261 374852 131429 0 0 374852 131429 4261 2215 0 0 13919 11884 0 0 23632 16250 0 0 4261 2580 0 0 164980 49779 0 0 163799 48721 0 0 4261 0 0 2793 5256 5650 35744 0 0 7.58246 7.58246 -167.329 -7.58246 0 0 828058. 2865.25 0.31 0.41 0.18 -1 -1 0.31 0.0513389 0.0468865 144 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 20.89 vpr 61.04 MiB 0.03 6432 -1 -1 12 0.20 -1 -1 32328 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62508 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 22.4 MiB 2.98 897 61.0 MiB 0.66 0.01 5.57833 -123.346 -5.57833 5.57833 1.05 0.000389718 0.000322452 0.030007 0.0259127 30 3061 47 6.79088e+06 215552 556674. 1926.21 13.27 0.241266 0.214096 24526 138013 -1 2041 22 989 2682 127878 31645 0 0 127878 31645 2682 1370 0 0 8303 7013 0 0 12515 8934 0 0 2682 1557 0 0 50656 6448 0 0 51040 6323 0 0 2682 0 0 1693 3072 2761 19778 0 0 5.95417 5.95417 -141.765 -5.95417 0 0 706193. 2443.58 0.31 0.13 0.16 -1 -1 0.31 0.033914 0.0310175 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 14.14 vpr 60.59 MiB 0.02 6352 -1 -1 10 0.10 -1 -1 31980 -1 -1 12 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62040 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 22.1 MiB 3.42 726 60.6 MiB 0.73 0.01 4.41351 -104.197 -4.41351 4.41351 1.04 0.000409051 0.000334319 0.0303813 0.0260347 36 2142 17 6.79088e+06 161664 648988. 2245.63 4.99 0.126337 0.111622 25390 158009 -1 1869 16 825 1842 135874 30524 0 0 135874 30524 1842 1243 0 0 5943 5108 0 0 10357 6934 0 0 1842 1366 0 0 57981 7823 0 0 57909 8050 0 0 1842 0 0 1017 1424 1473 9712 0 0 4.53881 4.53881 -120.528 -4.53881 0 0 828058. 2865.25 0.31 0.72 0.18 -1 -1 0.31 0.018172 0.0166251 67 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 14.19 vpr 60.77 MiB 0.02 6468 -1 -1 13 0.24 -1 -1 32228 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62232 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 22.2 MiB 2.63 981 60.8 MiB 0.77 0.02 6.53742 -143.365 -6.53742 6.53742 1.00 0.000448412 0.00037626 0.027502 0.0236774 34 2809 35 6.79088e+06 215552 618332. 2139.56 5.78 0.151174 0.134449 25102 150614 -1 2263 16 963 2289 139398 31588 0 0 139398 31588 2289 1318 0 0 7622 6385 0 0 12529 8788 0 0 2289 1498 0 0 57611 6769 0 0 57058 6830 0 0 2289 0 0 1326 1838 1921 13396 0 0 6.53742 6.53742 -157.982 -6.53742 0 0 787024. 2723.27 0.34 0.65 0.17 -1 -1 0.34 0.0268797 0.0247827 99 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 15.37 vpr 61.76 MiB 0.03 6496 -1 -1 13 0.39 -1 -1 32452 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63244 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 23.3 MiB 1.65 1291 61.8 MiB 0.70 0.01 6.19723 -135.08 -6.19723 6.19723 0.98 0.000923173 0.000817632 0.0389225 0.0339794 36 3625 43 6.79088e+06 296384 648988. 2245.63 7.42 0.217015 0.193738 25390 158009 -1 3067 22 1825 5192 330142 72983 0 0 330142 72983 5192 2782 0 0 16652 14510 0 0 28580 19181 0 0 5192 3203 0 0 136870 16697 0 0 137656 16610 0 0 5192 0 0 3367 6320 5921 38892 0 0 6.78453 6.78453 -158.441 -6.78453 0 0 828058. 2865.25 0.27 0.48 0.19 -1 -1 0.27 0.0500577 0.0462262 143 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 13.60 vpr 61.48 MiB 0.02 6588 -1 -1 13 0.39 -1 -1 32584 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62956 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 23.0 MiB 2.69 1427 61.5 MiB 0.80 0.02 6.55321 -141.386 -6.55321 6.55321 1.01 0.000871844 0.000739972 0.0504089 0.0434184 44 3376 19 6.79088e+06 255968 787024. 2723.27 5.65 0.191464 0.170584 27118 194962 -1 2791 17 1287 3501 199179 44364 0 0 199179 44364 3501 1765 0 0 11257 9598 0 0 18454 13061 0 0 3501 2118 0 0 80494 9071 0 0 81972 8751 0 0 3501 0 0 2214 3602 3767 25822 0 0 7.18741 7.18741 -162.322 -7.18741 0 0 997811. 3452.63 0.37 0.17 0.22 -1 -1 0.37 0.0348946 0.0319939 141 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 10.84 vpr 60.27 MiB 0.02 6212 -1 -1 9 0.12 -1 -1 31740 -1 -1 16 26 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61712 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 21.9 MiB 2.01 609 60.3 MiB 0.29 0.00 3.9703 -76.7287 -3.9703 3.9703 1.06 0.000221338 0.000177953 0.0271609 0.0234757 30 1692 24 6.79088e+06 215552 556674. 1926.21 3.34 0.0865958 0.0767778 24526 138013 -1 1424 15 626 1326 75293 18504 0 0 75293 18504 1326 906 0 0 4305 3643 0 0 6235 4629 0 0 1326 1024 0 0 30980 4349 0 0 31121 3953 0 0 1326 0 0 700 988 899 6691 0 0 4.7221 4.7221 -97.9041 -4.7221 0 0 706193. 2443.58 0.30 0.45 0.15 -1 -1 0.30 0.0152478 0.0139238 64 66 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 17.55 vpr 61.78 MiB 0.02 6536 -1 -1 13 0.43 -1 -1 32376 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63264 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 23.2 MiB 3.04 1392 61.8 MiB 0.24 0.00 7.1002 -146.855 -7.1002 7.1002 0.97 0.000429739 0.00035233 0.0298101 0.0253505 44 3365 20 6.79088e+06 296384 787024. 2723.27 9.03 0.339738 0.305317 27118 194962 -1 2830 18 1341 3760 195537 44766 0 0 195537 44766 3760 1797 0 0 11950 10331 0 0 19234 13666 0 0 3760 2271 0 0 76076 8807 0 0 80757 7894 0 0 3760 0 0 2419 3933 3530 25956 0 0 7.3508 7.3508 -162.513 -7.3508 0 0 997811. 3452.63 0.40 0.52 0.24 -1 -1 0.40 0.0389449 0.0358174 137 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 14.82 vpr 60.77 MiB 0.02 6240 -1 -1 8 0.09 -1 -1 32020 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62228 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 22.0 MiB 2.94 577 60.8 MiB 0.08 0.00 3.9703 -81.1298 -3.9703 3.9703 0.93 0.000176827 0.000140635 0.0131941 0.0107521 36 1781 27 6.79088e+06 229024 648988. 2245.63 8.06 0.129807 0.113783 25390 158009 -1 1281 16 679 1464 81516 20804 0 0 81516 20804 1464 960 0 0 4826 3970 0 0 7705 5498 0 0 1464 1089 0 0 31033 4849 0 0 35024 4438 0 0 1464 0 0 785 940 1090 7407 0 0 4.2209 4.2209 -95.1326 -4.2209 0 0 828058. 2865.25 0.30 0.19 0.19 -1 -1 0.30 0.0138295 0.0125649 64 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 15.51 vpr 61.05 MiB 0.03 6596 -1 -1 15 0.30 -1 -1 32448 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62516 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 22.6 MiB 2.59 1179 61.1 MiB 0.12 0.00 7.29713 -149.008 -7.29713 7.29713 0.95 0.000229752 0.000184842 0.0265929 0.0219946 38 3192 42 6.79088e+06 229024 678818. 2348.85 8.15 0.224368 0.200343 25966 169698 -1 2762 19 1322 3568 233049 49876 0 0 233049 49876 3568 1985 0 0 11135 9588 0 0 18340 12399 0 0 3568 2266 0 0 98484 12053 0 0 97954 11585 0 0 3568 0 0 2246 3611 3455 25142 0 0 7.76257 7.76257 -168.883 -7.76257 0 0 902133. 3121.57 0.34 0.45 0.25 -1 -1 0.34 0.0341561 0.0313121 118 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 14.20 vpr 61.66 MiB 0.02 6568 -1 -1 12 0.23 -1 -1 32304 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63140 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 23.0 MiB 2.38 1276 61.7 MiB 0.16 0.00 6.08302 -130.979 -6.08302 6.08302 1.10 0.000487751 0.000389688 0.0378699 0.0313573 38 3178 28 6.79088e+06 296384 678818. 2348.85 6.57 0.240224 0.213093 25966 169698 -1 2685 14 1271 3884 194929 44477 0 0 194929 44477 3884 1695 0 0 12005 10224 0 0 18717 13060 0 0 3884 2074 0 0 80619 8424 0 0 75820 9000 0 0 3884 0 0 2613 4444 4806 33459 0 0 6.08302 6.08302 -142.632 -6.08302 0 0 902133. 3121.57 0.32 0.33 0.18 -1 -1 0.32 0.036106 0.0332827 145 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 13.95 vpr 61.94 MiB 0.03 6668 -1 -1 13 0.37 -1 -1 32220 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63428 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 23.1 MiB 1.89 1201 61.9 MiB 0.08 0.00 6.84955 -138.036 -6.84955 6.84955 1.09 0.000474526 0.000376755 0.0172476 0.014548 36 3535 50 6.79088e+06 269440 648988. 2245.63 6.29 0.218331 0.193374 25390 158009 -1 2729 17 1291 3611 212502 48917 0 0 212502 48917 3611 1938 0 0 12105 10248 0 0 20142 14151 0 0 3611 2242 0 0 86454 10205 0 0 86579 10133 0 0 3611 0 0 2320 4102 4307 28156 0 0 7.22545 7.22545 -160.553 -7.22545 0 0 828058. 2865.25 0.26 0.40 0.18 -1 -1 0.26 0.0345672 0.0319435 136 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 18.33 vpr 61.30 MiB 0.02 6460 -1 -1 12 0.21 -1 -1 31796 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62772 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 22.7 MiB 2.89 1099 61.3 MiB 0.11 0.00 5.40269 -124.362 -5.40269 5.40269 1.08 0.000421554 0.000344015 0.0227451 0.0189613 44 2555 18 6.79088e+06 255968 787024. 2723.27 10.03 0.274996 0.245477 27118 194962 -1 2094 16 888 2302 135212 29573 0 0 135212 29573 2302 1178 0 0 7453 6237 0 0 12041 8616 0 0 2302 1392 0 0 53059 6591 0 0 58055 5559 0 0 2302 0 0 1414 1894 1689 13685 0 0 5.40269 5.40269 -134.801 -5.40269 0 0 997811. 3452.63 0.39 0.37 0.23 -1 -1 0.39 0.0285995 0.0264083 106 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 16.51 vpr 61.14 MiB 0.02 6452 -1 -1 11 0.22 -1 -1 32268 -1 -1 20 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62608 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 22.5 MiB 3.06 976 61.1 MiB 0.11 0.00 5.19894 -112.905 -5.19894 5.19894 1.05 0.00035712 0.000282021 0.0224662 0.0185631 40 2234 16 6.79088e+06 269440 706193. 2443.58 8.56 0.201029 0.178124 26254 175826 -1 2179 17 1022 2637 166789 37652 0 0 166789 37652 2637 1544 0 0 8895 7696 0 0 15808 10786 0 0 2637 1720 0 0 67542 7990 0 0 69270 7916 0 0 2637 0 0 1615 2193 2712 17097 0 0 5.39909 5.39909 -130.327 -5.39909 0 0 926341. 3205.33 0.34 0.38 0.28 -1 -1 0.34 0.0255192 0.0233753 97 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 8.57 vpr 60.96 MiB 0.02 6440 -1 -1 11 0.21 -1 -1 32064 -1 -1 19 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62428 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 22.5 MiB 1.44 998 61.0 MiB 0.09 0.00 5.52794 -112.188 -5.52794 5.52794 0.98 0.000309819 0.000252961 0.0178879 0.0148011 36 2740 27 6.79088e+06 255968 648988. 2245.63 2.96 0.135716 0.120839 25390 158009 -1 2256 16 1061 2654 157775 35928 0 0 157775 35928 2654 1511 0 0 8664 7371 0 0 14417 10139 0 0 2654 1732 0 0 64973 7603 0 0 64413 7572 0 0 2654 0 0 1593 2184 2264 16291 0 0 5.74283 5.74283 -126.71 -5.74283 0 0 828058. 2865.25 0.34 0.32 0.19 -1 -1 0.34 0.0310708 0.0289234 107 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 16.77 vpr 61.41 MiB 0.03 6440 -1 -1 12 0.25 -1 -1 32280 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62880 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 22.6 MiB 2.80 1284 61.4 MiB 0.13 0.00 5.78978 -138.424 -5.78978 5.78978 1.07 0.000399043 0.000322011 0.0255964 0.0211834 44 3269 22 6.79088e+06 255968 787024. 2723.27 8.96 0.248478 0.219711 27118 194962 -1 2554 19 1167 2904 153624 34766 0 0 153624 34766 2904 1552 0 0 9173 7900 0 0 14576 10264 0 0 2904 1899 0 0 60157 6856 0 0 63910 6295 0 0 2904 0 0 1737 2135 2056 16050 0 0 6.29098 6.29098 -154.761 -6.29098 0 0 997811. 3452.63 0.35 0.08 0.21 -1 -1 0.35 0.0287798 0.0263348 119 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 9.83 vpr 61.16 MiB 0.02 6604 -1 -1 11 0.20 -1 -1 32192 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62632 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 22.5 MiB 1.99 933 61.2 MiB 0.50 0.00 5.15968 -117.446 -5.15968 5.15968 1.15 0.000436488 0.000355846 0.0357377 0.0308405 38 2716 21 6.79088e+06 229024 678818. 2348.85 2.98 0.172173 0.151406 25966 169698 -1 2109 15 1040 2793 139330 33198 0 0 139330 33198 2793 1514 0 0 8767 7484 0 0 13239 9400 0 0 2793 1730 0 0 54878 6794 0 0 56860 6276 0 0 2793 0 0 1753 2429 2411 18322 0 0 5.52794 5.52794 -136.947 -5.52794 0 0 902133. 3121.57 0.33 0.34 0.20 -1 -1 0.33 0.0280319 0.0258625 107 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 8.12 vpr 60.96 MiB 0.22 6640 -1 -1 10 0.19 -1 -1 32164 -1 -1 18 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62428 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 22.5 MiB 1.81 957 61.0 MiB 0.09 0.00 4.95172 -107.836 -4.95172 4.95172 0.98 0.000279209 0.000227076 0.021358 0.0177549 30 2391 23 6.79088e+06 242496 556674. 1926.21 2.42 0.100875 0.0893516 24526 138013 -1 1935 16 801 2128 105007 25101 0 0 105007 25101 2128 1143 0 0 6822 5688 0 0 9980 7299 0 0 2128 1254 0 0 42206 4853 0 0 41743 4864 0 0 2128 0 0 1327 1852 1948 14701 0 0 5.20232 5.20232 -122.337 -5.20232 0 0 706193. 2443.58 0.30 0.07 0.16 -1 -1 0.30 0.0219538 0.0199398 103 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 12.06 vpr 62.12 MiB 0.30 6824 -1 -1 13 0.40 -1 -1 32524 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63616 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 23.4 MiB 2.15 1470 62.1 MiB 0.31 0.00 6.50941 -142.111 -6.50941 6.50941 1.02 0.000732961 0.000624721 0.0303988 0.0264015 40 3572 21 6.79088e+06 296384 706193. 2443.58 3.73 0.211499 0.18896 26254 175826 -1 3411 17 1555 4907 328274 71291 0 0 328274 71291 4907 2448 0 0 16222 13860 0 0 28340 19106 0 0 4907 2884 0 0 134783 16912 0 0 139115 16081 0 0 4907 0 0 3352 7198 6995 47732 0 0 6.67391 6.67391 -160.22 -6.67391 0 0 926341. 3205.33 0.37 0.45 0.22 -1 -1 0.37 0.0494272 0.0459912 162 238 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 48.43 vpr 61.63 MiB 0.19 6628 -1 -1 13 0.37 -1 -1 32472 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63112 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 22.9 MiB 2.52 1307 61.6 MiB 0.32 0.00 6.38406 -137.253 -6.38406 6.38406 1.07 0.00053175 0.000436647 0.0481643 0.0405716 38 3978 26 6.79088e+06 282912 678818. 2348.85 39.34 0.377915 0.334328 25966 169698 -1 2898 24 1654 4876 264575 60787 0 0 264575 60787 4876 2281 0 0 14851 12893 0 0 23668 16126 0 0 4876 2712 0 0 106852 13592 0 0 109452 13183 0 0 4876 0 0 3222 6001 5748 41175 0 0 6.78797 6.78797 -159.557 -6.78797 0 0 902133. 3121.57 0.35 1.15 0.19 -1 -1 0.35 0.0659412 0.0615672 152 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 18.23 vpr 60.89 MiB 0.20 6484 -1 -1 12 0.17 -1 -1 32284 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62348 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 22.4 MiB 2.20 946 60.9 MiB 0.12 0.00 5.78978 -125.721 -5.78978 5.78978 1.08 0.000376467 0.000306671 0.024485 0.0203239 36 3013 28 6.79088e+06 242496 648988. 2245.63 8.36 0.252197 0.224538 25390 158009 -1 2411 21 1222 3351 237525 51658 0 0 237525 51658 3351 2027 0 0 10647 9177 0 0 18129 12287 0 0 3351 2296 0 0 101213 13148 0 0 100834 12723 0 0 3351 0 0 2129 3841 3913 24892 0 0 6.41628 6.41628 -150.265 -6.41628 0 0 828058. 2865.25 0.27 0.58 0.19 -1 -1 0.27 0.0312028 0.0285034 102 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 17.59 vpr 61.70 MiB 0.32 6536 -1 -1 12 0.29 -1 -1 32664 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63184 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 23.0 MiB 2.12 1373 61.7 MiB 0.19 0.00 6.29452 -134.455 -6.29452 6.29452 1.02 0.000508062 0.000415578 0.041879 0.0345695 44 3546 21 6.79088e+06 309856 787024. 2723.27 7.05 0.31093 0.274455 27118 194962 -1 2902 18 1338 4136 216156 49058 0 0 216156 49058 4136 1967 0 0 12970 11049 0 0 20986 14754 0 0 4136 2447 0 0 85157 9824 0 0 88771 9017 0 0 4136 0 0 2798 4766 4419 31943 0 0 6.71732 6.71732 -151.746 -6.71732 0 0 997811. 3452.63 0.33 0.88 0.24 -1 -1 0.33 0.041878 0.0388042 148 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 20.35 vpr 61.77 MiB 0.22 6728 -1 -1 14 0.45 -1 -1 33248 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63252 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 23.3 MiB 1.95 1374 61.8 MiB 0.11 0.00 6.92457 -144.114 -6.92457 6.92457 1.07 0.000496525 0.000397765 0.0233029 0.0193636 36 4083 44 6.79088e+06 282912 648988. 2245.63 11.96 0.249346 0.222373 25390 158009 -1 3223 23 1586 4542 392806 123620 0 0 392806 123620 4542 2598 0 0 14501 12483 0 0 26022 17721 0 0 4542 2973 0 0 167184 44401 0 0 176015 43444 0 0 4542 0 0 2956 4863 4974 31979 0 0 7.47267 7.47267 -168.241 -7.47267 0 0 828058. 2865.25 0.33 0.44 0.17 -1 -1 0.33 0.0477262 0.043898 146 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 11.64 vpr 61.38 MiB 0.04 6572 -1 -1 13 0.35 -1 -1 32876 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62848 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 22.8 MiB 3.42 1281 61.4 MiB 0.16 0.00 6.45902 -136.076 -6.45902 6.45902 1.10 0.000459137 0.000373834 0.0350761 0.0290533 40 3252 30 6.79088e+06 282912 706193. 2443.58 3.73 0.191253 0.167682 26254 175826 -1 3037 21 1578 4182 285911 61732 0 0 285911 61732 4182 2400 0 0 13676 11973 0 0 24656 16305 0 0 4182 2809 0 0 118122 14570 0 0 121093 13675 0 0 4182 0 0 2604 3660 4069 27065 0 0 7.12467 7.12467 -161.015 -7.12467 0 0 926341. 3205.33 0.36 0.14 0.21 -1 -1 0.36 0.0413952 0.0377422 126 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 13.16 vpr 61.36 MiB 0.11 6560 -1 -1 12 0.30 -1 -1 32836 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62836 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 22.8 MiB 1.55 1334 61.4 MiB 0.17 0.00 6.29447 -134.048 -6.29447 6.29447 1.02 0.000425611 0.00034682 0.029939 0.0250529 44 3228 16 6.79088e+06 309856 787024. 2723.27 6.89 0.255598 0.226509 27118 194962 -1 2692 18 1169 3532 192084 42591 0 0 192084 42591 3532 1614 0 0 11167 9540 0 0 18467 12787 0 0 3532 1954 0 0 76611 8586 0 0 78775 8110 0 0 3532 0 0 2363 4087 4283 29441 0 0 6.67037 6.67037 -149.036 -6.67037 0 0 997811. 3452.63 0.38 0.23 0.23 -1 -1 0.38 0.0341293 0.0311785 135 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 12.90 vpr 61.04 MiB 0.17 6584 -1 -1 12 0.25 -1 -1 32308 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62500 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 22.4 MiB 1.95 1085 61.0 MiB 0.20 0.00 6.03612 -122.551 -6.03612 6.03612 1.09 0.000453958 0.000373901 0.030337 0.0252461 36 2901 24 6.79088e+06 229024 648988. 2245.63 6.43 0.266665 0.237719 25390 158009 -1 2449 21 1163 3097 194169 43497 0 0 194169 43497 3097 1650 0 0 10127 8683 0 0 17301 12087 0 0 3097 1922 0 0 80570 9604 0 0 79977 9551 0 0 3097 0 0 1934 3129 3325 22367 0 0 6.44003 6.44003 -140.314 -6.44003 0 0 828058. 2865.25 0.34 0.10 0.19 -1 -1 0.34 0.0298258 0.0268661 113 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 20.61 vpr 62.18 MiB 0.19 6844 -1 -1 14 0.57 -1 -1 32344 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 23.4 MiB 2.17 1630 62.2 MiB 0.20 0.00 6.99643 -149.016 -6.99643 6.99643 1.03 0.000608481 0.000499933 0.0356612 0.0297219 38 4592 46 6.79088e+06 336800 678818. 2348.85 10.66 0.291699 0.25863 25966 169698 -1 3688 20 1821 5461 309757 66656 0 0 309757 66656 5461 2805 0 0 16732 14451 0 0 26096 18054 0 0 5461 3237 0 0 126749 14322 0 0 129258 13787 0 0 5461 0 0 3640 7832 8308 52273 0 0 7.32188 7.32188 -169.801 -7.32188 0 0 902133. 3121.57 0.28 0.68 0.17 -1 -1 0.28 0.0472841 0.0433844 169 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 13.31 vpr 61.53 MiB 0.17 6432 -1 -1 11 0.23 -1 -1 32316 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 23.0 MiB 2.59 1108 61.5 MiB 0.13 0.00 5.57057 -117.295 -5.57057 5.57057 1.08 0.000436605 0.000347895 0.0257659 0.0207884 34 3474 42 6.79088e+06 242496 618332. 2139.56 6.10 0.193171 0.16925 25102 150614 -1 2628 20 1289 3289 226177 52286 0 0 226177 52286 3289 2015 0 0 10843 9331 0 0 18700 12885 0 0 3289 2262 0 0 95284 12859 0 0 94772 12934 0 0 3289 0 0 2000 2766 3168 20251 0 0 5.69587 5.69587 -139.212 -5.69587 0 0 787024. 2723.27 0.32 0.11 0.17 -1 -1 0.32 0.0280496 0.025306 113 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 12.47 vpr 61.68 MiB 0.19 6668 -1 -1 13 0.33 -1 -1 32320 -1 -1 19 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63164 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 23.0 MiB 2.48 1202 61.7 MiB 0.57 0.02 6.34486 -127.069 -6.34486 6.34486 0.99 0.000728082 0.000644955 0.0257082 0.02261 38 2988 19 6.79088e+06 255968 678818. 2348.85 3.98 0.183279 0.164588 25966 169698 -1 2469 18 1198 3713 197778 43633 0 0 197778 43633 3713 1691 0 0 11461 9899 0 0 18152 12403 0 0 3713 2014 0 0 79461 8976 0 0 81278 8650 0 0 3713 0 0 2515 4417 4716 32565 0 0 6.54507 6.54507 -141.56 -6.54507 0 0 902133. 3121.57 0.44 0.75 0.20 -1 -1 0.44 0.0331437 0.0305612 132 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 16.01 vpr 61.96 MiB 0.24 6636 -1 -1 12 0.29 -1 -1 32296 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63448 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 23.2 MiB 2.38 1296 62.0 MiB 1.12 0.01 6.04038 -128.677 -6.04038 6.04038 1.02 0.000613332 0.000509365 0.0762808 0.0662559 44 3335 23 6.79088e+06 282912 787024. 2723.27 7.76 0.359539 0.317748 27118 194962 -1 2730 18 1388 4254 214935 50293 0 0 214935 50293 4254 1847 0 0 13290 11276 0 0 22112 15061 0 0 4254 2268 0 0 88191 9684 0 0 82834 10157 0 0 4254 0 0 2866 5119 5148 36309 0 0 6.29098 6.29098 -143.664 -6.29098 0 0 997811. 3452.63 0.32 0.18 0.23 -1 -1 0.32 0.0367159 0.0336035 153 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 15.36 vpr 61.48 MiB 0.14 6556 -1 -1 13 0.26 -1 -1 32372 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62952 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 22.9 MiB 2.21 1205 61.5 MiB 0.98 0.01 5.99697 -128.982 -5.99697 5.99697 1.01 0.000687035 0.000595458 0.0572744 0.0495882 38 3337 23 6.79088e+06 255968 678818. 2348.85 7.56 0.305983 0.270722 25966 169698 -1 2679 20 1369 3844 212853 48146 0 0 212853 48146 3844 1970 0 0 12090 10319 0 0 18303 12922 0 0 3844 2340 0 0 84501 10877 0 0 90271 9718 0 0 3844 0 0 2475 3702 3886 27227 0 0 6.45897 6.45897 -148.322 -6.45897 0 0 902133. 3121.57 0.35 0.11 0.20 -1 -1 0.35 0.0337223 0.030681 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 15.90 vpr 61.66 MiB 0.11 6724 -1 -1 13 0.23 -1 -1 32276 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63144 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 23.0 MiB 3.08 1142 61.7 MiB 0.81 0.00 6.79572 -137.321 -6.79572 6.79572 0.96 0.000854359 0.000760889 0.0458268 0.0400559 36 3307 32 6.79088e+06 229024 648988. 2245.63 7.37 0.239386 0.213538 25390 158009 -1 2664 22 1196 3344 298495 96129 0 0 298495 96129 3344 1835 0 0 10666 9157 0 0 19059 12725 0 0 3344 2051 0 0 130778 35408 0 0 131304 34953 0 0 3344 0 0 2148 4446 4294 28466 0 0 7.16043 7.16043 -158.899 -7.16043 0 0 828058. 2865.25 0.33 0.14 0.19 -1 -1 0.33 0.0327955 0.0296902 118 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 25.21 vpr 61.96 MiB 0.18 6548 -1 -1 12 0.31 -1 -1 32196 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 23.4 MiB 3.07 1451 62.0 MiB 0.40 0.00 6.49047 -143.269 -6.49047 6.49047 1.00 0.000673861 0.000579974 0.0269118 0.0236032 36 4196 40 6.79088e+06 309856 648988. 2245.63 15.74 0.250281 0.223906 25390 158009 -1 3237 19 1542 4788 316497 66550 0 0 316497 66550 4788 2720 0 0 15167 13093 0 0 26278 17622 0 0 4788 3176 0 0 129302 15426 0 0 136174 14513 0 0 4788 0 0 3246 7372 7702 47122 0 0 6.74877 6.74877 -162.228 -6.74877 0 0 828058. 2865.25 0.26 0.47 0.14 -1 -1 0.26 0.0512649 0.0475723 150 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 14.58 vpr 61.47 MiB 0.18 6612 -1 -1 13 0.36 -1 -1 32396 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62944 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 23.0 MiB 3.03 1376 61.5 MiB 0.97 0.01 6.71306 -143.577 -6.71306 6.71306 1.00 0.000805294 0.000653593 0.054523 0.0473333 38 3401 31 6.79088e+06 269440 678818. 2348.85 5.44 0.254549 0.225622 25966 169698 -1 2888 18 1424 3958 202874 45851 0 0 202874 45851 3958 1975 0 0 12199 10385 0 0 19207 13309 0 0 3958 2333 0 0 81287 9034 0 0 82265 8815 0 0 3958 0 0 2534 3957 3865 28958 0 0 6.96366 6.96366 -160.872 -6.96366 0 0 902133. 3121.57 0.30 0.60 0.19 -1 -1 0.30 0.0366744 0.0335871 143 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 16.13 vpr 61.40 MiB 0.26 6592 -1 -1 14 0.32 -1 -1 32568 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62872 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 22.8 MiB 3.09 1167 61.4 MiB 0.84 0.01 6.96377 -144.578 -6.96377 6.96377 1.00 0.000569125 0.000498024 0.0337527 0.0290019 44 3093 30 6.79088e+06 242496 787024. 2723.27 7.44 0.27884 0.249116 27118 194962 -1 2549 17 1188 3372 186968 41931 0 0 186968 41931 3372 1607 0 0 10589 9169 0 0 17566 12089 0 0 3372 1972 0 0 72951 9147 0 0 79118 7947 0 0 3372 0 0 2184 3523 3105 24092 0 0 7.16819 7.16819 -160.771 -7.16819 0 0 997811. 3452.63 0.35 0.10 0.19 -1 -1 0.35 0.0280434 0.0257937 123 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 14.80 vpr 61.62 MiB 0.09 6620 -1 -1 13 0.36 -1 -1 32444 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63104 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 22.9 MiB 4.49 1273 61.6 MiB 0.24 0.00 6.91681 -139.809 -6.91681 6.91681 1.01 0.000508697 0.000421654 0.0286785 0.0243653 34 3508 49 6.79088e+06 269440 618332. 2139.56 5.66 0.248509 0.222 25102 150614 -1 3090 20 1542 4208 267757 60986 0 0 267757 60986 4208 2366 0 0 14037 12017 0 0 24049 16457 0 0 4208 2716 0 0 110324 13938 0 0 110931 13492 0 0 4208 0 0 2666 4067 4728 29245 0 0 7.09666 7.09666 -161.986 -7.09666 0 0 787024. 2723.27 0.29 0.10 0.15 -1 -1 0.29 0.0226981 0.0204237 134 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 14.57 vpr 61.97 MiB 0.04 6792 -1 -1 13 0.31 -1 -1 32320 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63456 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 23.2 MiB 2.01 1315 62.0 MiB 0.54 0.01 6.76001 -146.752 -6.76001 6.76001 0.94 0.000995011 0.000820078 0.0420016 0.0359478 38 3967 26 6.79088e+06 309856 678818. 2348.85 6.83 0.18623 0.164557 25966 169698 -1 3021 17 1697 4984 259458 58959 0 0 259458 58959 4984 2442 0 0 15308 13198 0 0 24342 16588 0 0 4984 2906 0 0 102040 12250 0 0 107800 11575 0 0 4984 0 0 3287 5800 5654 40193 0 0 7.08209 7.08209 -164.607 -7.08209 0 0 902133. 3121.57 0.34 0.42 0.21 -1 -1 0.34 0.0504 0.0469243 154 218 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 15.46 vpr 61.88 MiB 0.05 6644 -1 -1 12 0.42 -1 -1 32212 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63364 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 23.1 MiB 1.98 1348 61.9 MiB 0.62 0.01 6.37282 -138.756 -6.37282 6.37282 0.89 0.000763516 0.000665695 0.0487115 0.0416888 38 4069 24 6.79088e+06 323328 678818. 2348.85 8.39 0.264255 0.235059 25966 169698 -1 3035 20 1718 4824 237870 56660 0 0 237870 56660 4824 2433 0 0 15009 12875 0 0 22662 16097 0 0 4824 2881 0 0 94099 11220 0 0 96452 11154 0 0 4824 0 0 3106 4923 4585 32910 0 0 6.87407 6.87407 -168.993 -6.87407 0 0 902133. 3121.57 0.31 0.12 0.16 -1 -1 0.31 0.0363982 0.0332215 157 229 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 14.85 vpr 61.03 MiB 0.04 6364 -1 -1 11 0.17 -1 -1 32144 -1 -1 13 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62492 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 22.5 MiB 2.11 905 61.0 MiB 0.38 0.01 5.1486 -113.282 -5.1486 5.1486 0.99 0.000583144 0.000473365 0.0276024 0.0235048 44 2414 23 6.79088e+06 175136 787024. 2723.27 8.14 0.202922 0.180023 27118 194962 -1 1866 14 897 2198 122764 29582 0 0 122764 29582 2198 1269 0 0 7119 6227 0 0 11653 8106 0 0 2198 1487 0 0 50137 6481 0 0 49459 6012 0 0 2198 0 0 1301 1749 1741 12765 0 0 5.59941 5.59941 -134.253 -5.59941 0 0 997811. 3452.63 0.38 0.19 0.22 -1 -1 0.38 0.0230444 0.0214118 90 121 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 15.03 vpr 61.51 MiB 0.02 6496 -1 -1 13 0.25 -1 -1 32400 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62988 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 22.9 MiB 3.42 1100 61.5 MiB 0.65 0.01 6.38411 -139.812 -6.38411 6.38411 0.99 0.00051427 0.000426712 0.0362937 0.0309045 38 2718 21 6.79088e+06 229024 678818. 2348.85 6.86 0.184115 0.163233 25966 169698 -1 2201 16 1038 2646 138008 31876 0 0 138008 31876 2646 1403 0 0 8319 7009 0 0 12792 9001 0 0 2646 1619 0 0 54312 6846 0 0 57293 5998 0 0 2646 0 0 1608 2260 2286 16444 0 0 7.13591 7.13591 -158.425 -7.13591 0 0 902133. 3121.57 0.35 0.08 0.20 -1 -1 0.35 0.0265286 0.0243181 113 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 21.30 vpr 62.05 MiB 0.03 6836 -1 -1 14 0.56 -1 -1 32496 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63544 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 23.2 MiB 1.93 1451 62.1 MiB 0.81 0.00 7.1786 -148.537 -7.1786 7.1786 1.05 0.000700884 0.00058304 0.0711177 0.0606781 40 4964 47 6.79088e+06 323328 706193. 2443.58 14.14 0.30199 0.266862 26254 175826 -1 4100 32 3277 10217 991377 258059 0 0 991377 258059 10217 5834 0 0 31484 27668 0 0 61407 37048 0 0 10217 6748 0 0 442757 89450 0 0 435295 91311 0 0 10217 0 0 6940 15646 15986 89395 0 0 8.25242 8.25242 -195.077 -8.25242 0 0 926341. 3205.33 0.32 0.36 0.18 -1 -1 0.32 0.0688965 0.0622998 180 266 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 32.41 vpr 62.03 MiB 0.03 6560 -1 -1 13 0.44 -1 -1 32348 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63520 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 23.4 MiB 3.22 1494 62.0 MiB 0.67 0.00 6.72087 -147.435 -6.72087 6.72087 1.10 0.000677148 0.000580652 0.0504905 0.044005 34 4162 48 6.79088e+06 282912 618332. 2139.56 23.26 0.456768 0.40779 25102 150614 -1 3482 22 1639 4709 503125 149940 0 0 503125 149940 4709 2723 0 0 15410 13131 0 0 29024 18398 0 0 4709 3105 0 0 226818 58050 0 0 222455 54533 0 0 4709 0 0 3070 6350 7214 40981 0 0 7.3116 7.3116 -172.31 -7.3116 0 0 787024. 2723.27 0.32 0.51 0.17 -1 -1 0.32 0.047995 0.0439318 154 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 21.78 vpr 61.07 MiB 0.02 6456 -1 -1 11 0.21 -1 -1 32232 -1 -1 17 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62532 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 22.7 MiB 1.00 862 61.1 MiB 0.82 0.00 5.53143 -117.9 -5.53143 5.53143 0.88 0.000400429 0.000332906 0.0423797 0.0360856 30 2926 42 6.79088e+06 229024 556674. 1926.21 16.36 0.227563 0.200719 24526 138013 -1 2093 15 1026 2787 151219 35157 0 0 151219 35157 2787 1512 0 0 8522 7215 0 0 12892 9030 0 0 2787 1662 0 0 61166 8052 0 0 63065 7686 0 0 2787 0 0 1761 2514 2974 19774 0 0 5.65673 5.65673 -133.183 -5.65673 0 0 706193. 2443.58 0.30 0.09 0.16 -1 -1 0.30 0.0217933 0.0199582 99 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 15.42 vpr 61.92 MiB 0.03 6860 -1 -1 15 0.60 -1 -1 32568 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 23.4 MiB 1.80 1646 61.9 MiB 0.56 0.01 7.5189 -157.368 -7.5189 7.5189 1.03 0.000792488 0.000679693 0.0357333 0.0307837 40 3955 21 6.79088e+06 323328 706193. 2443.58 6.43 0.251436 0.224853 26254 175826 -1 3808 20 2044 6291 426153 89793 0 0 426153 89793 6291 3410 0 0 20420 17450 0 0 37375 24203 0 0 6291 4092 0 0 177618 20285 0 0 178158 20353 0 0 6291 0 0 4247 8826 9383 57841 0 0 8.2707 8.2707 -182.859 -8.2707 0 0 926341. 3205.33 0.31 1.03 0.22 -1 -1 0.31 0.0451926 0.0415161 172 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 14.41 vpr 61.70 MiB 0.03 6764 -1 -1 13 0.37 -1 -1 32364 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63184 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 23.0 MiB 1.59 1396 61.7 MiB 0.55 0.00 6.61551 -143.991 -6.61551 6.61551 0.93 0.000544614 0.000426125 0.0417452 0.0357999 38 3660 28 6.79088e+06 296384 678818. 2348.85 6.47 0.232631 0.206952 25966 169698 -1 2995 17 1443 3988 211008 47235 0 0 211008 47235 3988 2043 0 0 12333 10483 0 0 18988 13300 0 0 3988 2456 0 0 86680 9446 0 0 85031 9507 0 0 3988 0 0 2545 4268 4376 29905 0 0 6.89412 6.89412 -162.598 -6.89412 0 0 902133. 3121.57 0.35 0.65 0.20 -1 -1 0.35 0.0468333 0.0434894 149 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 24.00 vpr 61.09 MiB 0.03 6500 -1 -1 11 0.18 -1 -1 31908 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62556 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 22.6 MiB 2.32 1004 61.1 MiB 0.88 0.01 5.82549 -130.589 -5.82549 5.82549 1.13 0.000617817 0.00052449 0.0409731 0.0356296 30 2876 26 6.79088e+06 215552 556674. 1926.21 17.12 0.240308 0.213767 24526 138013 -1 2210 17 1020 2574 141537 32196 0 0 141537 32196 2574 1402 0 0 8078 6841 0 0 12270 8668 0 0 2574 1550 0 0 58721 6858 0 0 57320 6877 0 0 2574 0 0 1554 2406 2246 17082 0 0 5.95079 5.95079 -145.499 -5.95079 0 0 706193. 2443.58 0.26 0.06 0.16 -1 -1 0.26 0.0179525 0.0163426 97 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 19.46 vpr 61.96 MiB 0.02 6848 -1 -1 12 0.40 -1 -1 32280 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63448 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 23.1 MiB 2.31 1356 62.0 MiB 0.86 0.01 6.32253 -138.894 -6.32253 6.32253 1.04 0.000399546 0.0003233 0.058109 0.0494416 44 3284 27 6.79088e+06 282912 787024. 2723.27 11.18 0.34548 0.306722 27118 194962 -1 2880 17 1316 4091 218830 48751 0 0 218830 48751 4091 1778 0 0 12888 11128 0 0 21028 14613 0 0 4091 2153 0 0 89342 9353 0 0 87390 9726 0 0 4091 0 0 2775 5434 5964 39130 0 0 6.67037 6.67037 -156.855 -6.67037 0 0 997811. 3452.63 0.41 0.13 0.24 -1 -1 0.41 0.0352393 0.0322655 152 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 14.33 vpr 61.16 MiB 0.02 6384 -1 -1 12 0.17 -1 -1 31920 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62628 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 22.7 MiB 2.57 1037 61.2 MiB 0.67 0.02 6.04387 -130.269 -6.04387 6.04387 1.12 0.000544426 0.00046258 0.0347469 0.0302771 44 2998 28 6.79088e+06 215552 787024. 2723.27 6.43 0.199797 0.179574 27118 194962 -1 2463 15 1179 3145 181878 41692 0 0 181878 41692 3145 1668 0 0 10048 8658 0 0 16387 11389 0 0 3145 2005 0 0 73639 9028 0 0 75514 8944 0 0 3145 0 0 1966 2791 2730 19576 0 0 6.29447 6.29447 -148.485 -6.29447 0 0 997811. 3452.63 0.39 0.23 0.23 -1 -1 0.39 0.0304184 0.028199 115 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 16.90 vpr 61.18 MiB 0.02 6408 -1 -1 12 0.24 -1 -1 32284 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62652 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 22.7 MiB 1.76 881 61.2 MiB 0.15 0.00 6.34486 -126.195 -6.34486 6.34486 1.07 0.000336802 0.000273729 0.031246 0.0258922 34 2439 44 6.79088e+06 255968 618332. 2139.56 9.27 0.273394 0.243211 25102 150614 -1 1901 16 877 2453 131762 32910 0 0 131762 32910 2453 1349 0 0 8398 7042 0 0 13824 9951 0 0 2453 1527 0 0 52979 6595 0 0 51655 6446 0 0 2453 0 0 1576 2560 2839 18498 0 0 6.72076 6.72076 -143.319 -6.72076 0 0 787024. 2723.27 0.32 0.94 0.18 -1 -1 0.32 0.0238548 0.0218959 105 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 13.15 vpr 61.68 MiB 0.03 6736 -1 -1 12 0.34 -1 -1 32672 -1 -1 24 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63156 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 22.7 MiB 1.96 1153 61.7 MiB 0.10 0.00 6.55742 -124.037 -6.55742 6.55742 0.99 0.000520363 0.000421749 0.0231852 0.0193836 36 3225 29 6.79088e+06 323328 648988. 2245.63 4.92 0.165329 0.145776 25390 158009 -1 2665 17 1228 3849 217733 49499 0 0 217733 49499 3849 1998 0 0 12569 10651 0 0 21258 14857 0 0 3849 2299 0 0 87308 10007 0 0 88900 9687 0 0 3849 0 0 2621 5204 5005 35775 0 0 6.80802 6.80802 -140.04 -6.80802 0 0 828058. 2865.25 0.29 0.82 0.18 -1 -1 0.29 0.040603 0.0372893 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 19.88 vpr 61.72 MiB 0.02 6656 -1 -1 14 0.37 -1 -1 32604 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63204 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 23.0 MiB 3.24 1427 61.7 MiB 0.22 0.01 6.92451 -144.913 -6.92451 6.92451 1.00 0.000588343 0.0004866 0.0325021 0.0274962 44 3917 32 6.79088e+06 296384 787024. 2723.27 10.54 0.335126 0.298194 27118 194962 -1 3163 17 1598 4134 243155 53447 0 0 243155 53447 4134 2199 0 0 13127 11250 0 0 21964 15066 0 0 4134 2614 0 0 98956 11472 0 0 100840 10846 0 0 4134 0 0 2536 4018 3411 27093 0 0 7.30041 7.30041 -166.277 -7.30041 0 0 997811. 3452.63 0.39 0.51 0.21 -1 -1 0.39 0.0524858 0.0494177 155 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 14.64 vpr 61.56 MiB 0.03 6800 -1 -1 12 0.34 -1 -1 32284 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63036 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 22.7 MiB 2.07 1248 61.6 MiB 0.27 0.00 6.20837 -138.563 -6.20837 6.20837 1.23 0.000507888 0.000414444 0.037345 0.0314882 44 3437 21 6.79088e+06 255968 787024. 2723.27 5.59 0.189351 0.168099 27118 194962 -1 2672 15 1263 3602 196731 44022 0 0 196731 44022 3602 1700 0 0 11457 9882 0 0 18279 12979 0 0 3602 2095 0 0 79486 8881 0 0 80305 8485 0 0 3602 0 0 2339 3598 3754 26543 0 0 6.45897 6.45897 -154.052 -6.45897 0 0 997811. 3452.63 0.34 0.60 0.23 -1 -1 0.34 0.0351477 0.0323704 137 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 14.79 vpr 60.85 MiB 0.02 6472 -1 -1 12 0.19 -1 -1 30860 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62312 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 22.2 MiB 1.72 985 60.9 MiB 0.65 0.01 5.91857 -125.482 -5.91857 5.91857 0.88 0.00061761 0.000535486 0.0398398 0.0354533 34 2617 19 6.79088e+06 202080 618332. 2139.56 6.99 0.218748 0.194766 25102 150614 -1 2219 13 865 2282 137254 30522 0 0 137254 30522 2282 1348 0 0 7441 6241 0 0 12527 8456 0 0 2282 1495 0 0 56394 6515 0 0 56328 6467 0 0 2282 0 0 1417 2387 2660 17092 0 0 6.04387 6.04387 -137.893 -6.04387 0 0 787024. 2723.27 0.28 0.48 0.15 -1 -1 0.28 0.0186462 0.0172405 95 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 13.05 vpr 61.50 MiB 0.03 6492 -1 -1 12 0.23 -1 -1 31952 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62976 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 23.0 MiB 2.62 1080 61.5 MiB 0.28 0.02 6.07958 -129.05 -6.07958 6.07958 0.99 0.000359024 0.000307387 0.0237445 0.0198524 38 2803 24 6.79088e+06 242496 678818. 2348.85 3.92 0.155488 0.137683 25966 169698 -1 2301 18 1080 3043 164290 37448 0 0 164290 37448 3043 1585 0 0 9583 8279 0 0 15310 10539 0 0 3043 1826 0 0 65014 7920 0 0 68297 7299 0 0 3043 0 0 1963 3309 3005 22486 0 0 6.36938 6.36938 -146.765 -6.36938 0 0 902133. 3121.57 0.35 0.56 0.18 -1 -1 0.35 0.0329836 0.0303163 114 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 17.58 vpr 61.39 MiB 0.03 6688 -1 -1 11 0.20 -1 -1 32244 -1 -1 22 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62864 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 22.7 MiB 3.76 1171 61.4 MiB 0.35 0.01 5.61753 -118.579 -5.61753 5.61753 1.06 0.000582355 0.000497657 0.0368316 0.0312631 38 3423 49 6.79088e+06 296384 678818. 2348.85 8.70 0.222579 0.196221 25966 169698 -1 2723 16 1269 3963 218010 47875 0 0 218010 47875 3963 1949 0 0 12091 10465 0 0 19026 13049 0 0 3963 2292 0 0 87246 10461 0 0 91721 9659 0 0 3963 0 0 2694 4809 4864 36046 0 0 5.99337 5.99337 -136.605 -5.99337 0 0 902133. 3121.57 0.34 0.21 0.20 -1 -1 0.34 0.0321508 0.0295648 129 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 20.32 vpr 61.36 MiB 0.04 6664 -1 -1 11 0.26 -1 -1 32216 -1 -1 21 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62836 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 22.7 MiB 1.84 968 61.4 MiB 0.23 0.00 5.70363 -105.841 -5.70363 5.70363 1.08 0.000227105 0.00018252 0.0325364 0.0272502 50 2352 17 6.79088e+06 282912 902133. 3121.57 11.83 0.290947 0.256983 27982 213445 -1 2075 18 1127 3138 165690 39252 0 0 165690 39252 3138 1463 0 0 10275 8684 0 0 16648 11650 0 0 3138 1827 0 0 65550 7731 0 0 66941 7897 0 0 3138 0 0 2011 2705 3504 23022 0 0 5.82893 5.82893 -119.128 -5.82893 0 0 1.08113e+06 3740.92 0.41 0.82 0.25 -1 -1 0.41 0.034449 0.0315707 125 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 18.12 vpr 60.90 MiB 0.05 6464 -1 -1 13 0.25 -1 -1 32168 -1 -1 16 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62364 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 22.6 MiB 3.76 1091 60.9 MiB 0.13 0.00 6.25532 -124.609 -6.25532 6.25532 1.10 0.000368498 0.000298857 0.0282105 0.0232793 36 2773 26 6.79088e+06 215552 648988. 2245.63 9.50 0.22899 0.204231 25390 158009 -1 2420 17 1062 2700 155754 35754 0 0 155754 35754 2700 1568 0 0 8775 7523 0 0 14430 10191 0 0 2700 1765 0 0 64286 7165 0 0 62863 7542 0 0 2700 0 0 1638 2010 2311 16145 0 0 6.50592 6.50592 -141.53 -6.50592 0 0 828058. 2865.25 0.31 0.26 0.19 -1 -1 0.31 0.0281742 0.0260031 104 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 13.70 vpr 61.34 MiB 0.02 6536 -1 -1 12 0.22 -1 -1 32300 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62812 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 22.7 MiB 2.76 1227 61.3 MiB 0.15 0.00 6.07958 -132.59 -6.07958 6.07958 1.23 0.000457347 0.000372463 0.0173772 0.0148651 36 3034 43 6.79088e+06 269440 648988. 2245.63 3.86 0.182966 0.164085 25390 158009 -1 2557 17 1142 2933 180470 40172 0 0 180470 40172 2933 1550 0 0 9686 8160 0 0 16108 11357 0 0 2933 1796 0 0 73607 8859 0 0 75203 8450 0 0 2933 0 0 1791 2989 2845 19566 0 0 6.33018 6.33018 -151.345 -6.33018 0 0 828058. 2865.25 0.33 0.77 0.19 -1 -1 0.33 0.0311275 0.0285242 125 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 14.38 vpr 61.43 MiB 0.15 6756 -1 -1 13 0.37 -1 -1 32424 -1 -1 20 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62904 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 22.7 MiB 2.67 1211 61.4 MiB 0.22 0.00 6.54518 -134.181 -6.54518 6.54518 1.09 0.000452608 0.000366009 0.0347601 0.0295057 36 3312 22 6.79088e+06 269440 648988. 2245.63 4.04 0.157598 0.138404 25390 158009 -1 2715 21 1287 3879 219124 49495 0 0 219124 49495 3879 1810 0 0 12616 10644 0 0 20887 14652 0 0 3879 2180 0 0 87981 10393 0 0 89882 9816 0 0 3879 0 0 2592 4776 4538 31697 0 0 7.17162 7.17162 -158.949 -7.17162 0 0 828058. 2865.25 0.28 0.78 0.14 -1 -1 0.28 0.0370794 0.0336989 137 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 9.87 vpr 61.87 MiB 0.28 6704 -1 -1 14 0.34 -1 -1 32280 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63356 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 23.2 MiB 2.06 1335 61.9 MiB 0.11 0.00 7.22905 -148.195 -7.22905 7.22905 0.88 0.000294674 0.000238383 0.0255392 0.0209736 36 3614 19 6.79088e+06 282912 648988. 2245.63 3.14 0.157163 0.138668 25390 158009 -1 2954 17 1415 3898 225808 50308 0 0 225808 50308 3898 2172 0 0 12599 10467 0 0 20576 14451 0 0 3898 2480 0 0 90976 10601 0 0 93861 10137 0 0 3898 0 0 2483 4471 4692 30918 0 0 7.69105 7.69105 -172.722 -7.69105 0 0 828058. 2865.25 0.32 0.19 0.19 -1 -1 0.32 0.03833 0.0352202 149 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 19.13 vpr 61.52 MiB 0.19 6620 -1 -1 14 0.31 -1 -1 32332 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62996 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 22.8 MiB 3.26 1267 61.5 MiB 0.15 0.00 6.79583 -138.47 -6.79583 6.79583 0.87 0.00044044 0.000357782 0.0292255 0.0240789 44 3418 25 6.79088e+06 269440 787024. 2723.27 9.85 0.290826 0.259684 27118 194962 -1 2568 15 1174 3396 184709 41729 0 0 184709 41729 3396 1608 0 0 10942 9341 0 0 17687 12585 0 0 3396 2026 0 0 75506 7937 0 0 73782 8232 0 0 3396 0 0 2222 3928 4057 28161 0 0 7.17173 7.17173 -153.631 -7.17173 0 0 997811. 3452.63 0.32 0.40 0.19 -1 -1 0.32 0.0359057 0.033178 136 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 19.19 vpr 61.90 MiB 0.02 6516 -1 -1 13 0.43 -1 -1 32528 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63388 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 23.1 MiB 3.01 1211 61.9 MiB 0.23 0.00 6.67391 -137.428 -6.67391 6.67391 1.08 0.000481749 0.000396513 0.0325256 0.0273344 44 3116 29 6.79088e+06 255968 787024. 2723.27 8.51 0.332941 0.298273 27118 194962 -1 2618 19 1220 3763 202722 45710 0 0 202722 45710 3763 1781 0 0 11819 10116 0 0 19885 13718 0 0 3763 2166 0 0 81431 9128 0 0 82061 8801 0 0 3763 0 0 2543 3857 4445 31920 0 0 7.04981 7.04981 -153.668 -7.04981 0 0 997811. 3452.63 0.35 0.86 0.22 -1 -1 0.35 0.0438477 0.0404753 139 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 9.76 vpr 60.98 MiB 0.03 6528 -1 -1 13 0.22 -1 -1 32292 -1 -1 16 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62440 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 22.5 MiB 2.38 1056 61.0 MiB 0.15 0.00 5.84133 -125.224 -5.84133 5.84133 1.06 0.000413219 0.000325459 0.0288997 0.0240176 38 2562 19 6.79088e+06 215552 678818. 2348.85 2.74 0.162928 0.144404 25966 169698 -1 2156 16 968 2377 131841 29953 0 0 131841 29953 2377 1383 0 0 7427 6294 0 0 11449 8042 0 0 2377 1630 0 0 53543 6508 0 0 54668 6096 0 0 2377 0 0 1409 1723 1816 13507 0 0 6.38943 6.38943 -142.78 -6.38943 0 0 902133. 3121.57 0.33 0.27 0.24 -1 -1 0.33 0.0239011 0.0218671 106 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 12.00 vpr 61.71 MiB 0.14 6652 -1 -1 13 0.56 -1 -1 32344 -1 -1 23 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63188 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 23.0 MiB 2.38 1353 61.7 MiB 0.51 0.00 6.80265 -142.99 -6.80265 6.80265 1.08 0.000709564 0.000621442 0.0480475 0.0413014 36 3835 32 6.79088e+06 309856 648988. 2245.63 4.00 0.199226 0.1757 25390 158009 -1 3040 20 1535 3924 241600 53452 0 0 241600 53452 3924 2250 0 0 12911 10833 0 0 20926 14935 0 0 3924 2669 0 0 99298 11667 0 0 100617 11098 0 0 3924 0 0 2389 3446 3709 24368 0 0 7.67975 7.67975 -168.524 -7.67975 0 0 828058. 2865.25 0.33 0.38 0.19 -1 -1 0.33 0.0476131 0.0440203 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 12.31 vpr 61.74 MiB 0.12 6800 -1 -1 14 0.38 -1 -1 32612 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63224 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 23.1 MiB 2.52 1338 61.7 MiB 0.18 0.00 6.68167 -146.217 -6.68167 6.68167 0.94 0.000488246 0.000379989 0.0330838 0.0273848 38 3202 27 6.79088e+06 269440 678818. 2348.85 5.15 0.225268 0.201261 25966 169698 -1 2793 19 1298 3865 221370 47596 0 0 221370 47596 3865 1945 0 0 11874 10069 0 0 19305 13006 0 0 3865 2247 0 0 89728 10508 0 0 92733 9821 0 0 3865 0 0 2567 5035 4863 34118 0 0 7.18287 7.18287 -170.178 -7.18287 0 0 902133. 3121.57 0.35 0.15 0.16 -1 -1 0.35 0.0363439 0.0331058 133 181 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 12.23 vpr 61.70 MiB 0.04 6664 -1 -1 12 0.29 -1 -1 32432 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63176 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 23.1 MiB 2.73 1193 61.7 MiB 0.25 0.00 6.54856 -132.625 -6.54856 6.54856 1.11 0.000505194 0.000414565 0.048706 0.0380369 30 3908 44 6.79088e+06 282912 556674. 1926.21 5.11 0.188865 0.163801 24526 138013 -1 2893 20 1519 4290 253570 56988 0 0 253570 56988 4290 2464 0 0 13549 11586 0 0 20637 14703 0 0 4290 2725 0 0 101330 13589 0 0 109474 11921 0 0 4290 0 0 2771 4907 4792 32842 0 0 6.88526 6.88526 -155.13 -6.88526 0 0 706193. 2443.58 0.29 0.23 0.16 -1 -1 0.29 0.03514 0.0319575 143 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 11.47 vpr 61.31 MiB 0.05 6736 -1 -1 13 0.28 -1 -1 32316 -1 -1 21 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62784 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 22.7 MiB 2.86 1262 61.3 MiB 0.22 0.00 6.93338 -129.368 -6.93338 6.93338 1.14 0.000524277 0.000433207 0.0386717 0.0325194 36 3664 46 6.79088e+06 282912 648988. 2245.63 3.47 0.175675 0.155961 25390 158009 -1 2976 19 1310 3609 229507 49667 0 0 229507 49667 3609 1955 0 0 11598 9972 0 0 19572 13406 0 0 3609 2241 0 0 95664 11241 0 0 95455 10852 0 0 3609 0 0 2299 4051 4116 28297 0 0 7.30041 7.30041 -148.974 -7.30041 0 0 828058. 2865.25 0.33 0.13 0.37 -1 -1 0.33 0.0380154 0.0348778 126 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 16.39 vpr 61.96 MiB 0.04 6608 -1 -1 14 0.45 -1 -1 31960 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63448 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 23.3 MiB 2.45 1496 62.0 MiB 0.10 0.00 6.83847 -145.508 -6.83847 6.83847 1.04 0.000596323 0.000483576 0.0230893 0.0194663 44 3696 32 6.79088e+06 282912 787024. 2723.27 7.64 0.332138 0.296077 27118 194962 -1 3106 17 1510 4214 230080 51544 0 0 230080 51544 4214 2121 0 0 13259 11515 0 0 21642 15062 0 0 4214 2586 0 0 92161 10350 0 0 94590 9910 0 0 4214 0 0 2704 3990 4104 28928 0 0 7.17517 7.17517 -164.333 -7.17517 0 0 997811. 3452.63 0.38 0.96 0.26 -1 -1 0.38 0.0503124 0.0469124 154 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 25.02 vpr 61.46 MiB 0.09 6688 -1 -1 11 0.35 -1 -1 32496 -1 -1 22 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62936 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 22.9 MiB 2.08 1099 61.5 MiB 0.34 0.00 5.74283 -113.79 -5.74283 5.74283 1.06 0.000413741 0.000334007 0.046025 0.0387206 36 3206 24 6.79088e+06 296384 648988. 2245.63 15.92 0.28609 0.25158 25390 158009 -1 2644 27 1253 4042 398145 147243 0 0 398145 147243 4042 2104 0 0 12829 10766 0 0 23447 15502 0 0 4042 2521 0 0 179033 61248 0 0 174752 55102 0 0 4042 0 0 2789 5736 5338 36831 0 0 6.03684 6.03684 -130.453 -6.03684 0 0 828058. 2865.25 0.33 1.40 0.17 -1 -1 0.33 0.0445583 0.0407113 130 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 17.82 vpr 60.97 MiB 0.09 6560 -1 -1 13 0.21 -1 -1 32064 -1 -1 14 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62436 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 22.6 MiB 4.03 956 61.0 MiB 0.17 0.00 5.77864 -135.969 -5.77864 5.77864 0.96 0.000598766 0.000515372 0.0140248 0.011958 36 3010 40 6.79088e+06 188608 648988. 2245.63 6.96 0.233963 0.208348 25390 158009 -1 2362 18 1268 3052 192657 44603 0 0 192657 44603 3052 1889 0 0 10099 8882 0 0 17252 11977 0 0 3052 2117 0 0 76607 10007 0 0 82595 9731 0 0 3052 0 0 1784 2040 2529 17053 0 0 6.11534 6.11534 -154.462 -6.11534 0 0 828058. 2865.25 0.32 0.71 0.19 -1 -1 0.32 0.0306219 0.0282341 99 130 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 17.50 vpr 61.60 MiB 0.10 6732 -1 -1 14 0.27 -1 -1 32368 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63080 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 23.1 MiB 2.65 1305 61.6 MiB 0.13 0.00 7.04217 -146.535 -7.04217 7.04217 1.08 0.000422854 0.00034989 0.0190652 0.0162375 36 3525 22 6.79088e+06 255968 648988. 2245.63 8.13 0.201204 0.180139 25390 158009 -1 2815 16 1265 3244 201691 44467 0 0 201691 44467 3244 1842 0 0 10668 8987 0 0 17443 12379 0 0 3244 2076 0 0 84052 9729 0 0 83040 9454 0 0 3244 0 0 1979 3020 3416 22739 0 0 7.84435 7.84435 -171.483 -7.84435 0 0 828058. 2865.25 0.32 0.71 0.18 -1 -1 0.32 0.0304733 0.0280537 129 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 10.17 vpr 61.85 MiB 0.09 6620 -1 -1 15 0.46 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63336 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 23.1 MiB 2.73 1452 61.9 MiB 0.41 0.00 7.3152 -155.529 -7.3152 7.3152 1.04 0.000955137 0.000826044 0.0657063 0.0565223 38 3747 26 6.79088e+06 296384 678818. 2348.85 2.78 0.229779 0.203003 25966 169698 -1 3298 19 1854 5067 271700 60405 0 0 271700 60405 5067 2680 0 0 15337 13358 0 0 24653 16711 0 0 5067 3200 0 0 109796 12541 0 0 111780 11915 0 0 5067 0 0 3213 4635 4985 33910 0 0 7.84862 7.84862 -178.511 -7.84862 0 0 902133. 3121.57 0.29 0.13 0.12 -1 -1 0.29 0.0380919 0.0346657 153 227 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 12.53 vpr 61.18 MiB 0.14 6532 -1 -1 11 0.16 -1 -1 32608 -1 -1 14 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62644 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 22.6 MiB 3.22 1007 61.2 MiB 0.29 0.01 5.37463 -117.408 -5.37463 5.37463 0.98 0.000466838 0.00039651 0.0224812 0.0190482 34 2729 23 6.79088e+06 188608 618332. 2139.56 4.08 0.137863 0.120662 25102 150614 -1 2319 18 953 2503 167147 36716 0 0 167147 36716 2503 1477 0 0 8410 7219 0 0 14137 9677 0 0 2503 1677 0 0 69281 8465 0 0 70313 8201 0 0 2503 0 0 1550 2904 2984 18431 0 0 5.82544 5.82544 -137.685 -5.82544 0 0 787024. 2723.27 0.29 0.76 0.14 -1 -1 0.29 0.0300975 0.0276444 91 123 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 12.90 vpr 61.35 MiB 0.08 6452 -1 -1 12 0.22 -1 -1 31948 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62824 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 22.7 MiB 2.16 1069 61.4 MiB 0.97 0.02 5.82898 -130.331 -5.82898 5.82898 0.99 0.000470029 0.000390498 0.0426833 0.0366638 44 2639 19 6.79088e+06 215552 787024. 2723.27 5.04 0.220445 0.195043 27118 194962 -1 2077 15 996 2668 133861 30868 0 0 133861 30868 2668 1334 0 0 8335 7090 0 0 13579 9572 0 0 2668 1606 0 0 51318 6005 0 0 55293 5261 0 0 2668 0 0 1672 2116 1957 15775 0 0 6.20488 6.20488 -142.574 -6.20488 0 0 997811. 3452.63 0.39 0.72 0.21 -1 -1 0.39 0.0305317 0.0280824 111 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 13.49 vpr 61.56 MiB 0.17 6596 -1 -1 12 0.36 -1 -1 32412 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63040 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 23.1 MiB 1.93 1333 61.6 MiB 0.48 0.01 6.42321 -133.875 -6.42321 6.42321 0.86 0.000787442 0.000652712 0.0320938 0.0270957 44 3031 18 6.79088e+06 269440 787024. 2723.27 6.34 0.279881 0.247639 27118 194962 -1 2620 16 1136 3277 167192 38337 0 0 167192 38337 3277 1582 0 0 10319 8859 0 0 16586 11770 0 0 3277 1912 0 0 65981 7262 0 0 67752 6952 0 0 3277 0 0 2141 3185 3211 23542 0 0 6.54851 6.54851 -146.763 -6.54851 0 0 997811. 3452.63 0.38 0.40 0.20 -1 -1 0.38 0.0358929 0.0330308 145 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 16.84 vpr 61.34 MiB 0.22 6568 -1 -1 12 0.26 -1 -1 32424 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62808 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 22.9 MiB 2.49 1323 61.3 MiB 0.74 0.01 6.47021 -137.3 -6.47021 6.47021 1.05 0.000575633 0.000502601 0.0507308 0.0437406 36 3932 28 6.79088e+06 255968 648988. 2245.63 8.57 0.230085 0.203787 25390 158009 -1 3167 20 1405 4176 373028 120304 0 0 373028 120304 4176 2244 0 0 13067 11110 0 0 23266 15589 0 0 4176 2606 0 0 163721 44618 0 0 164622 44137 0 0 4176 0 0 2771 4738 4802 32441 0 0 7.05751 7.05751 -163.485 -7.05751 0 0 828058. 2865.25 0.34 0.33 0.17 -1 -1 0.34 0.0354678 0.0323804 133 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 19.83 vpr 61.90 MiB 0.14 6756 -1 -1 14 0.53 -1 -1 32592 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63384 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 23.2 MiB 2.05 1389 61.9 MiB 0.51 0.01 7.34316 -151.316 -7.34316 7.34316 1.01 0.000834401 0.000722507 0.0277781 0.0243004 38 3985 23 6.79088e+06 309856 678818. 2348.85 10.67 0.37544 0.333354 25966 169698 -1 3070 17 1517 4642 234459 53928 0 0 234459 53928 4642 2119 0 0 14419 12372 0 0 22683 15606 0 0 4642 2602 0 0 91735 10896 0 0 96338 10333 0 0 4642 0 0 3125 5142 5358 36975 0 0 7.46846 7.46846 -168.256 -7.46846 0 0 902133. 3121.57 0.32 0.95 0.27 -1 -1 0.32 0.0459604 0.0425903 170 238 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 13.67 vpr 61.23 MiB 0.16 6688 -1 -1 11 0.26 -1 -1 32248 -1 -1 21 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62700 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 22.6 MiB 2.99 1141 61.2 MiB 0.83 0.02 5.74632 -117.652 -5.74632 5.74632 1.03 0.00071326 0.000626848 0.0484397 0.0409448 38 3022 29 6.79088e+06 282912 678818. 2348.85 5.35 0.260539 0.23368 25966 169698 -1 2467 16 1227 3577 187135 42408 0 0 187135 42408 3577 1770 0 0 11163 9507 0 0 17260 12178 0 0 3577 2105 0 0 76882 8287 0 0 74676 8561 0 0 3577 0 0 2350 3542 3922 27111 0 0 5.95772 5.95772 -133.587 -5.95772 0 0 902133. 3121.57 0.31 0.08 0.16 -1 -1 0.31 0.0260207 0.0237866 128 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 13.44 vpr 61.14 MiB 0.12 6444 -1 -1 11 0.24 -1 -1 32136 -1 -1 19 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62608 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 22.6 MiB 1.88 905 61.1 MiB 0.32 0.00 5.56719 -104.624 -5.56719 5.56719 0.97 0.000365715 0.000295251 0.0284507 0.0241113 44 2051 17 6.79088e+06 255968 787024. 2723.27 7.11 0.223639 0.200312 27118 194962 -1 1723 15 778 2137 110456 25565 0 0 110456 25565 2137 1048 0 0 6786 5730 0 0 10925 7795 0 0 2137 1244 0 0 44538 4815 0 0 43933 4933 0 0 2137 0 0 1359 1614 1803 13697 0 0 5.94309 5.94309 -119.135 -5.94309 0 0 997811. 3452.63 0.27 0.06 0.17 -1 -1 0.27 0.0206024 0.018803 101 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 17.58 vpr 62.23 MiB 0.29 6768 -1 -1 13 0.52 -1 -1 32168 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63728 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 23.6 MiB 2.68 1666 62.2 MiB 0.39 0.00 6.72081 -139.329 -6.72081 6.72081 0.97 0.000586155 0.000472822 0.0604969 0.0511282 40 4558 31 6.79088e+06 390688 706193. 2443.58 8.59 0.334682 0.297771 26254 175826 -1 3943 17 1993 5893 392922 86141 0 0 392922 86141 5893 3231 0 0 19523 16599 0 0 33193 22671 0 0 5893 3868 0 0 162623 20349 0 0 165797 19423 0 0 5893 0 0 3900 7493 7261 48125 0 0 7.24997 7.24997 -162.641 -7.24997 0 0 926341. 3205.33 0.47 0.14 0.21 -1 -1 0.47 0.0352802 0.0324658 191 278 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 17.08 vpr 61.78 MiB 0.03 6732 -1 -1 14 0.40 -1 -1 32532 -1 -1 20 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63260 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 23.0 MiB 2.57 1146 61.8 MiB 0.52 0.00 7.18979 -146.393 -7.18979 7.18979 0.95 0.000515833 0.000441721 0.0333963 0.0288941 34 3473 34 6.79088e+06 269440 618332. 2139.56 8.67 0.176342 0.156268 25102 150614 -1 2930 19 1453 3784 248074 58051 0 0 248074 58051 3784 2132 0 0 12699 10803 0 0 21690 15279 0 0 3784 2434 0 0 102383 13988 0 0 103734 13415 0 0 3784 0 0 2331 3420 3478 24469 0 0 7.51536 7.51536 -168.249 -7.51536 0 0 787024. 2723.27 0.31 0.41 0.18 -1 -1 0.31 0.0398326 0.0367724 128 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 17.11 vpr 61.27 MiB 0.02 6652 -1 -1 12 0.19 -1 -1 32048 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62736 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 22.8 MiB 3.47 1175 61.3 MiB 0.49 0.00 5.79327 -138.237 -5.79327 5.79327 0.96 0.000414367 0.000354372 0.0270677 0.0232199 46 2769 18 6.79088e+06 255968 828058. 2865.25 8.22 0.203131 0.179472 27406 200422 -1 2402 16 1043 2625 150321 32289 0 0 150321 32289 2625 1412 0 0 8153 6988 0 0 12369 8683 0 0 2625 1627 0 0 61483 7143 0 0 63066 6436 0 0 2625 0 0 1582 2121 2058 15182 0 0 6.38057 6.38057 -158.205 -6.38057 0 0 1.01997e+06 3529.29 0.41 0.29 0.23 -1 -1 0.41 0.0280843 0.0258105 109 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 17.87 vpr 61.50 MiB 0.03 6564 -1 -1 13 0.41 -1 -1 32376 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62976 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 22.9 MiB 4.03 1222 61.5 MiB 0.54 0.01 6.79927 -139.987 -6.79927 6.79927 0.91 0.000335318 0.000272933 0.0244586 0.021141 36 3531 41 6.79088e+06 242496 648988. 2245.63 7.28 0.176421 0.156536 25390 158009 -1 2858 21 1245 3561 296118 87177 0 0 296118 87177 3561 1889 0 0 11671 9925 0 0 19816 13641 0 0 3561 2244 0 0 128860 30563 0 0 128649 28915 0 0 3561 0 0 2316 3939 3897 26493 0 0 7.04987 7.04987 -159.641 -7.04987 0 0 828058. 2865.25 0.36 0.85 0.19 -1 -1 0.36 0.0400663 0.0369241 125 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 41.96 vpr 62.00 MiB 0.03 6844 -1 -1 13 0.43 -1 -1 32272 -1 -1 25 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63488 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 23.2 MiB 3.05 1512 62.0 MiB 0.84 0.02 6.12997 -135.199 -6.12997 6.12997 0.92 0.000724146 0.000605069 0.0672233 0.0594734 38 4024 33 6.79088e+06 336800 678818. 2348.85 33.84 0.446913 0.397762 25966 169698 -1 3525 18 1814 5037 289917 62497 0 0 289917 62497 5037 2723 0 0 15193 13105 0 0 23862 16264 0 0 5037 3267 0 0 119894 13593 0 0 120894 13545 0 0 5037 0 0 3223 5463 6045 38898 0 0 6.38057 6.38057 -155.951 -6.38057 0 0 902133. 3121.57 0.36 0.17 0.21 -1 -1 0.36 0.0438076 0.0400753 159 232 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 16.34 vpr 61.61 MiB 0.02 6636 -1 -1 11 0.30 -1 -1 32384 -1 -1 23 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63088 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 23.0 MiB 2.34 1073 61.6 MiB 0.70 0.01 5.83242 -116.072 -5.83242 5.83242 0.93 0.000610194 0.000512132 0.0443539 0.0375316 38 3327 27 6.79088e+06 309856 678818. 2348.85 7.92 0.214691 0.189593 25966 169698 -1 2552 18 1214 3998 203140 47955 0 0 203140 47955 3998 2009 0 0 12553 10861 0 0 19331 13653 0 0 3998 2356 0 0 76876 10162 0 0 86384 8914 0 0 3998 0 0 2784 5060 5156 34668 0 0 6.45886 6.45886 -139.839 -6.45886 0 0 902133. 3121.57 0.34 0.66 0.20 -1 -1 0.34 0.0348926 0.0322034 140 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 14.66 vpr 61.58 MiB 0.02 6624 -1 -1 15 0.37 -1 -1 32696 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63060 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 22.9 MiB 2.15 1286 61.6 MiB 0.79 0.00 7.46856 -150.693 -7.46856 7.46856 0.96 0.000696875 0.00059626 0.0438265 0.0375302 40 2831 22 6.79088e+06 255968 706193. 2443.58 6.08 0.217972 0.19316 26254 175826 -1 2843 20 1355 3694 253679 62786 0 0 253679 62786 3694 2074 0 0 12436 10592 0 0 21358 14846 0 0 3694 2419 0 0 106579 16199 0 0 105918 16656 0 0 3694 0 0 2339 3683 4556 28146 0 0 7.71916 7.71916 -167.683 -7.71916 0 0 926341. 3205.33 0.32 0.61 0.21 -1 -1 0.32 0.0484512 0.0449629 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 15.33 vpr 61.83 MiB 0.02 6616 -1 -1 13 0.43 -1 -1 32864 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63312 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 23.1 MiB 3.09 1370 61.8 MiB 0.62 0.02 6.80265 -145.399 -6.80265 6.80265 0.93 0.000989862 0.000876976 0.039015 0.0338292 38 3715 32 6.79088e+06 309856 678818. 2348.85 6.11 0.197891 0.176074 25966 169698 -1 3027 19 1486 4592 244922 54361 0 0 244922 54361 4592 2285 0 0 13982 11964 0 0 22323 15267 0 0 4592 2725 0 0 98809 11411 0 0 100624 10709 0 0 4592 0 0 3106 5249 5202 37875 0 0 7.42915 7.42915 -165.303 -7.42915 0 0 902133. 3121.57 0.29 0.25 0.19 -1 -1 0.29 0.0394874 0.0362153 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 19.30 vpr 61.13 MiB 0.02 6600 -1 -1 12 0.24 -1 -1 31664 -1 -1 18 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62596 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 22.8 MiB 2.86 964 61.1 MiB 0.90 0.04 6.04736 -125.367 -6.04736 6.04736 1.08 0.000280073 0.000237846 0.0431601 0.0376814 30 2753 22 6.79088e+06 242496 556674. 1926.21 9.46 0.221968 0.19936 24526 138013 -1 2114 17 1084 2518 123174 29822 0 0 123174 29822 2518 1561 0 0 7862 6586 0 0 11618 8388 0 0 2518 1741 0 0 50208 5573 0 0 48450 5973 0 0 2518 0 0 1434 1140 1872 12300 0 0 6.54856 6.54856 -148.698 -6.54856 0 0 706193. 2443.58 0.28 0.07 0.16 -1 -1 0.28 0.0223651 0.020279 109 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 15.56 vpr 60.93 MiB 0.02 6536 -1 -1 11 0.16 -1 -1 32348 -1 -1 14 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62388 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 22.5 MiB 2.09 1145 60.9 MiB 0.50 0.01 5.71482 -126.252 -5.71482 5.71482 0.95 0.000474012 0.000398692 0.0343864 0.0231426 38 3024 20 6.79088e+06 188608 678818. 2348.85 8.31 0.152174 0.127861 25966 169698 -1 2583 18 1159 2961 169409 37556 0 0 169409 37556 2961 1738 0 0 9171 7998 0 0 14508 9887 0 0 2961 1955 0 0 69452 8123 0 0 70356 7855 0 0 2961 0 0 1802 2465 2822 18386 0 0 5.96542 5.96542 -148.416 -5.96542 0 0 902133. 3121.57 0.35 0.28 0.20 -1 -1 0.35 0.0283693 0.0259876 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 15.62 vpr 61.65 MiB 0.03 6708 -1 -1 13 0.35 -1 -1 32244 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63132 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 23.2 MiB 1.64 1146 61.7 MiB 0.74 0.01 6.58427 -131.594 -6.58427 6.58427 1.06 0.000952838 0.000843386 0.0571675 0.0496943 40 3144 46 6.79088e+06 296384 706193. 2443.58 7.50 0.252634 0.22376 26254 175826 -1 2897 21 1694 4729 309094 69333 0 0 309094 69333 4729 2448 0 0 15748 13231 0 0 27362 18204 0 0 4729 2965 0 0 126614 16501 0 0 129912 15984 0 0 4729 0 0 3035 5841 5258 36667 0 0 7.33607 7.33607 -156.069 -7.33607 0 0 926341. 3205.33 0.36 0.81 0.18 -1 -1 0.36 0.0499431 0.0461228 144 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 23.83 vpr 60.92 MiB 0.02 6520 -1 -1 10 0.21 -1 -1 32048 -1 -1 17 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62380 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 22.3 MiB 2.33 866 60.9 MiB 0.70 0.02 4.98748 -104.487 -4.98748 4.98748 1.00 0.000357371 0.000302074 0.0240895 0.0205331 30 2808 47 6.79088e+06 229024 556674. 1926.21 17.11 0.223547 0.198225 24526 138013 -1 2118 20 1031 2843 160679 39452 0 0 160679 39452 2843 1603 0 0 8860 7543 0 0 13961 9673 0 0 2843 1844 0 0 65059 9310 0 0 67113 9479 0 0 2843 0 0 1812 2576 2348 19363 0 0 5.61044 5.61044 -132.085 -5.61044 0 0 706193. 2443.58 0.29 0.09 0.16 -1 -1 0.29 0.0247983 0.0223835 98 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 18.29 vpr 61.28 MiB 0.02 6348 -1 -1 14 0.25 -1 -1 32248 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62748 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 22.7 MiB 3.68 1120 61.3 MiB 0.50 0.01 6.37298 -133.274 -6.37298 6.37298 1.02 0.000565989 0.000464151 0.0203513 0.0177337 40 2652 19 6.79088e+06 242496 706193. 2443.58 8.87 0.211793 0.187756 26254 175826 -1 2419 18 1103 2898 167543 37878 0 0 167543 37878 2898 1604 0 0 9581 8094 0 0 16473 11096 0 0 2898 1870 0 0 68098 7676 0 0 67595 7538 0 0 2898 0 0 1795 2428 2513 18354 0 0 7.12478 7.12478 -157.019 -7.12478 0 0 926341. 3205.33 0.37 0.66 0.21 -1 -1 0.37 0.0322227 0.0298023 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 16.16 vpr 61.61 MiB 0.03 6552 -1 -1 12 0.37 -1 -1 32488 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63088 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 22.9 MiB 1.74 1228 61.6 MiB 0.47 0.01 6.13341 -132.612 -6.13341 6.13341 1.12 0.00105585 0.000896108 0.0525751 0.0449257 36 3651 44 6.79088e+06 296384 648988. 2245.63 8.99 0.293491 0.263277 25390 158009 -1 2807 20 1411 4259 246744 54297 0 0 246744 54297 4259 2155 0 0 13190 11033 0 0 22155 15076 0 0 4259 2523 0 0 101709 11923 0 0 101172 11587 0 0 4259 0 0 2848 5611 5449 36611 0 0 6.58073 6.58073 -154.768 -6.58073 0 0 828058. 2865.25 0.27 0.30 0.16 -1 -1 0.27 0.0397911 0.0364812 143 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 15.48 vpr 60.91 MiB 0.02 6464 -1 -1 12 0.19 -1 -1 31828 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62368 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 22.4 MiB 2.84 1035 60.9 MiB 0.74 0.01 5.4976 -121.005 -5.4976 5.4976 1.04 0.000482065 0.000409942 0.0274558 0.0235399 36 2875 36 6.79088e+06 215552 648988. 2245.63 6.67 0.169047 0.150216 25390 158009 -1 2349 20 980 2337 135273 31488 0 0 135273 31488 2337 1467 0 0 7755 6630 0 0 12342 8890 0 0 2337 1711 0 0 55078 6300 0 0 55424 6490 0 0 2337 0 0 1357 1793 1821 13050 0 0 6.24059 6.24059 -142.131 -6.24059 0 0 828058. 2865.25 0.31 0.36 0.15 -1 -1 0.31 0.025812 0.0235768 101 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 21.74 vpr 61.62 MiB 0.02 6568 -1 -1 12 0.24 -1 -1 32320 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63096 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 22.8 MiB 2.04 1236 61.6 MiB 0.19 0.00 6.25876 -129.091 -6.25876 6.25876 0.99 0.000502418 0.000413626 0.0344742 0.0304705 38 3273 21 6.79088e+06 242496 678818. 2348.85 13.85 0.325599 0.292375 25966 169698 -1 2692 18 1241 3624 203869 44439 0 0 203869 44439 3624 1864 0 0 11160 9652 0 0 17345 11877 0 0 3624 2201 0 0 82736 9655 0 0 85380 9190 0 0 3624 0 0 2383 4570 4501 31962 0 0 6.50936 6.50936 -151.28 -6.50936 0 0 902133. 3121.57 0.35 0.41 0.19 -1 -1 0.35 0.0379714 0.0347558 123 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 14.79 vpr 61.56 MiB 0.02 6736 -1 -1 13 0.35 -1 -1 32640 -1 -1 19 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63036 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 23.0 MiB 1.96 1279 61.6 MiB 0.46 0.01 6.33367 -133.326 -6.33367 6.33367 1.06 0.000659633 0.000575038 0.0367765 0.0313973 38 3391 34 6.79088e+06 255968 678818. 2348.85 6.15 0.180233 0.16029 25966 169698 -1 2724 17 1228 3624 196725 43861 0 0 196725 43861 3624 1907 0 0 11342 9620 0 0 17694 12510 0 0 3624 2247 0 0 78497 9215 0 0 81944 8362 0 0 3624 0 0 2396 3941 4056 27293 0 0 6.54507 6.54507 -152.104 -6.54507 0 0 902133. 3121.57 0.27 0.58 0.18 -1 -1 0.27 0.0322403 0.0297808 134 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 23.06 vpr 61.01 MiB 0.02 6524 -1 -1 11 0.23 -1 -1 31916 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62472 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 22.5 MiB 1.64 1170 61.0 MiB 0.09 0.00 5.66792 -123.968 -5.66792 5.66792 1.10 0.000415124 0.00033864 0.0174565 0.0145574 38 3112 27 6.79088e+06 202080 678818. 2348.85 17.36 0.24251 0.21483 25966 169698 -1 2587 18 1147 3049 176546 39040 0 0 176546 39040 3049 1654 0 0 9472 8302 0 0 15265 10408 0 0 3049 1933 0 0 73239 8371 0 0 72472 8372 0 0 3049 0 0 1902 2596 2810 19485 0 0 6.16912 6.16912 -144.797 -6.16912 0 0 902133. 3121.57 0.31 0.09 0.21 -1 -1 0.31 0.0239943 0.0218749 105 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 18.10 vpr 61.27 MiB 0.02 6460 -1 -1 13 0.23 -1 -1 32224 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62740 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 22.6 MiB 2.27 1063 61.3 MiB 0.62 0.00 6.03617 -131.152 -6.03617 6.03617 1.02 0.00035747 0.00029576 0.0514092 0.044597 36 3043 39 6.79088e+06 229024 648988. 2245.63 10.28 0.247414 0.221211 25390 158009 -1 2517 16 1229 3347 190229 43862 0 0 190229 43862 3347 1820 0 0 10787 9350 0 0 17821 12346 0 0 3347 2156 0 0 76708 9365 0 0 78219 8825 0 0 3347 0 0 2118 2936 3134 22735 0 0 6.33367 6.33367 -149.849 -6.33367 0 0 828058. 2865.25 0.34 0.32 0.20 -1 -1 0.34 0.0334766 0.0308973 116 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 15.75 vpr 61.54 MiB 0.03 6632 -1 -1 13 0.34 -1 -1 32216 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63020 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 22.9 MiB 2.62 1354 61.5 MiB 0.17 0.00 6.11878 -133.886 -6.11878 6.11878 1.05 0.000492375 0.000402061 0.0385146 0.0318269 46 3151 24 6.79088e+06 242496 828058. 2865.25 6.61 0.219662 0.19499 27406 200422 -1 2686 19 1337 3781 207011 45471 0 0 207011 45471 3781 1771 0 0 11709 10201 0 0 19151 12913 0 0 3781 2159 0 0 85063 9147 0 0 83526 9280 0 0 3781 0 0 2444 3982 4016 28435 0 0 6.28328 6.28328 -147.536 -6.28328 0 0 1.01997e+06 3529.29 0.36 0.62 0.22 -1 -1 0.36 0.0387574 0.0359844 130 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 16.30 vpr 61.29 MiB 0.02 6760 -1 -1 11 0.23 -1 -1 32336 -1 -1 22 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62764 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 22.9 MiB 2.15 964 61.3 MiB 0.13 0.00 5.53486 -106.345 -5.53486 5.53486 1.07 0.000429915 0.000349393 0.0286402 0.0235875 36 2656 25 6.79088e+06 296384 648988. 2245.63 7.90 0.196657 0.174865 25390 158009 -1 2263 15 945 2739 159570 35837 0 0 159570 35837 2739 1410 0 0 8946 7567 0 0 14581 10402 0 0 2739 1678 0 0 63479 7840 0 0 67086 6940 0 0 2739 0 0 1794 3431 3304 22964 0 0 5.66016 5.66016 -119.129 -5.66016 0 0 828058. 2865.25 0.26 0.62 0.18 -1 -1 0.26 0.0253001 0.0232831 115 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 17.86 vpr 62.09 MiB 0.02 6680 -1 -1 14 0.44 -1 -1 32344 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63580 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 23.5 MiB 2.09 1491 62.1 MiB 0.54 0.02 7.40125 -159.232 -7.40125 7.40125 1.07 0.000672403 0.000561418 0.0330927 0.0277662 38 3647 36 6.79088e+06 296384 678818. 2348.85 9.27 0.332952 0.296122 25966 169698 -1 3081 20 1473 4224 216052 48756 0 0 216052 48756 4224 2075 0 0 13106 11044 0 0 19859 13994 0 0 4224 2522 0 0 86637 9657 0 0 88002 9464 0 0 4224 0 0 2751 4246 4119 30752 0 0 8.02774 8.02774 -182.876 -8.02774 0 0 902133. 3121.57 0.32 0.54 0.18 -1 -1 0.32 0.0380736 0.034831 160 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 23.57 vpr 60.92 MiB 0.02 6600 -1 -1 12 0.21 -1 -1 32328 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62384 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 22.4 MiB 3.37 1073 60.9 MiB 0.23 0.00 5.82893 -123.636 -5.82893 5.82893 0.98 0.000402758 0.000315079 0.0327741 0.0267235 36 2915 18 6.79088e+06 242496 648988. 2245.63 14.36 0.253146 0.223466 25390 158009 -1 2450 26 1089 2709 361277 148666 0 0 361277 148666 2709 1644 0 0 8722 7331 0 0 16642 10687 0 0 2709 1885 0 0 160266 63958 0 0 170229 63161 0 0 2709 0 0 1620 2568 2619 17378 0 0 5.82893 5.82893 -136.996 -5.82893 0 0 828058. 2865.25 0.28 1.32 0.15 -1 -1 0.28 0.0329289 0.0298558 108 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 19.59 vpr 61.51 MiB 0.02 6652 -1 -1 13 0.37 -1 -1 32388 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62988 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 22.7 MiB 2.72 1246 61.5 MiB 0.49 0.00 6.37287 -130.265 -6.37287 6.37287 1.08 0.00040259 0.00032835 0.0407964 0.0343279 44 3312 28 6.79088e+06 255968 787024. 2723.27 10.61 0.285523 0.251342 27118 194962 -1 2616 17 1252 3705 200761 45035 0 0 200761 45035 3705 1734 0 0 11524 9858 0 0 19289 13174 0 0 3705 2126 0 0 82326 8921 0 0 80212 9222 0 0 3705 0 0 2453 3982 4156 28506 0 0 6.70957 6.70957 -149.212 -6.70957 0 0 997811. 3452.63 0.38 0.75 0.18 -1 -1 0.38 0.0368987 0.0340671 132 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 15.34 vpr 61.00 MiB 0.03 6400 -1 -1 13 0.15 -1 -1 32284 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62460 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 22.4 MiB 2.59 1106 61.0 MiB 0.14 0.00 6.20842 -140.032 -6.20842 6.20842 1.00 0.000384782 0.000313286 0.0309145 0.0255197 36 3206 36 6.79088e+06 215552 648988. 2245.63 6.77 0.183509 0.161468 25390 158009 -1 2385 17 992 2456 143875 32977 0 0 143875 32977 2456 1385 0 0 8029 6837 0 0 13069 9418 0 0 2456 1625 0 0 58435 6998 0 0 59430 6714 0 0 2456 0 0 1464 1847 1963 13384 0 0 6.45902 6.45902 -160.775 -6.45902 0 0 828058. 2865.25 0.28 0.40 0.17 -1 -1 0.28 0.0237957 0.0217442 104 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 26.01 vpr 61.55 MiB 0.03 6648 -1 -1 12 0.27 -1 -1 32676 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63028 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 22.9 MiB 2.64 1222 61.6 MiB 0.13 0.00 5.83242 -130.968 -5.83242 5.83242 1.07 0.000394901 0.000325785 0.028857 0.0240644 38 2921 21 6.79088e+06 255968 678818. 2348.85 19.15 0.343268 0.304542 25966 169698 -1 2418 14 1098 3462 186879 41384 0 0 186879 41384 3462 1621 0 0 10650 9068 0 0 17210 11685 0 0 3462 1931 0 0 75098 8901 0 0 76997 8178 0 0 3462 0 0 2364 4260 3930 29808 0 0 6.08302 6.08302 -144.897 -6.08302 0 0 902133. 3121.57 0.35 0.36 0.16 -1 -1 0.35 0.0305139 0.0283194 121 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 20.93 vpr 62.07 MiB 0.03 6824 -1 -1 15 0.65 -1 -1 32492 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63564 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 23.6 MiB 2.64 1464 62.1 MiB 0.14 0.00 8.1062 -160.068 -8.1062 8.1062 0.98 0.000369518 0.000303706 0.0299012 0.0247493 48 4051 26 6.79088e+06 323328 865456. 2994.66 12.43 0.431076 0.387511 27694 206865 -1 3306 20 1759 5274 303907 68350 0 0 303907 68350 5274 2438 0 0 17203 14788 0 0 29534 20162 0 0 5274 3024 0 0 120566 14263 0 0 126056 13675 0 0 5274 0 0 3515 6752 6983 47354 0 0 8.39251 8.39251 -179.016 -8.39251 0 0 1.05005e+06 3633.38 0.45 0.52 0.24 -1 -1 0.45 0.0481379 0.0441797 176 249 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 10.15 vpr 60.41 MiB 0.02 6232 -1 -1 10 0.10 -1 -1 31648 -1 -1 11 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61860 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 22.0 MiB 1.96 720 60.4 MiB 0.09 0.00 4.44354 -100.588 -4.44354 4.44354 1.01 0.000264786 0.000211614 0.0192854 0.0157203 34 1733 18 6.79088e+06 148192 618332. 2139.56 4.34 0.134028 0.116003 25102 150614 -1 1593 19 636 1491 84519 20219 0 0 84519 20219 1491 902 0 0 4939 4262 0 0 8556 5875 0 0 1491 1034 0 0 33973 4112 0 0 34069 4034 0 0 1491 0 0 855 1061 1109 8344 0 0 4.44354 4.44354 -109.738 -4.44354 0 0 787024. 2723.27 0.31 0.06 0.18 -1 -1 0.31 0.0153425 0.0137694 63 82 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 21.72 vpr 60.95 MiB 0.03 6604 -1 -1 13 0.24 -1 -1 32180 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62408 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 22.5 MiB 2.46 1009 60.9 MiB 0.12 0.00 6.07969 -127.299 -6.07969 6.07969 1.12 0.000375344 0.000302412 0.0259815 0.0214126 34 3219 36 6.79088e+06 255968 618332. 2139.56 13.35 0.264487 0.233035 25102 150614 -1 2458 20 1261 3147 203432 47009 0 0 203432 47009 3147 1974 0 0 10548 9023 0 0 17882 12511 0 0 3147 2280 0 0 83412 10822 0 0 85296 10399 0 0 3147 0 0 1886 2208 2584 17285 0 0 6.20499 6.20499 -143.76 -6.20499 0 0 787024. 2723.27 0.28 0.60 0.18 -1 -1 0.28 0.0305323 0.0279661 105 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 19.72 vpr 61.45 MiB 0.04 6428 -1 -1 12 0.25 -1 -1 32352 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62924 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 23.0 MiB 2.89 1055 61.4 MiB 0.16 0.00 6.40514 -135.594 -6.40514 6.40514 1.04 0.00050385 0.000425747 0.0345753 0.0283628 44 3224 36 6.79088e+06 229024 787024. 2723.27 10.23 0.280275 0.246334 27118 194962 -1 2351 20 1298 3322 180648 42021 0 0 180648 42021 3322 1805 0 0 10326 8941 0 0 17362 11839 0 0 3322 2112 0 0 71575 8791 0 0 74741 8533 0 0 3322 0 0 2024 2704 2909 20605 0 0 6.53044 6.53044 -153.664 -6.53044 0 0 997811. 3452.63 0.33 0.83 0.21 -1 -1 0.33 0.0367762 0.0333183 115 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 17.99 vpr 60.62 MiB 0.03 6496 -1 -1 9 0.13 -1 -1 31908 -1 -1 20 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62080 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 22.0 MiB 1.62 775 60.6 MiB 0.28 0.00 4.29134 -83.4176 -4.29134 4.29134 1.04 0.000309224 0.000247897 0.0249547 0.0211144 28 2220 28 6.79088e+06 269440 531479. 1839.03 9.89 0.167158 0.146412 23950 126010 -1 1868 21 815 2082 125007 28987 0 0 125007 28987 2082 1341 0 0 6951 5860 0 0 11431 8151 0 0 2082 1480 0 0 51271 6106 0 0 51190 6049 0 0 2082 0 0 1267 1867 2126 14632 0 0 4.66724 4.66724 -102.119 -4.66724 0 0 648988. 2245.63 0.24 0.89 0.15 -1 -1 0.24 0.0224681 0.0204378 86 103 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 15.88 vpr 61.53 MiB 0.11 6564 -1 -1 12 0.34 -1 -1 32320 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 22.9 MiB 3.35 1469 61.5 MiB 0.17 0.00 6.34142 -146.405 -6.34142 6.34142 1.07 0.000529442 0.000430614 0.0316015 0.0260042 40 3650 25 6.79088e+06 309856 706193. 2443.58 5.24 0.209703 0.18508 26254 175826 -1 3368 17 1618 4205 272577 59597 0 0 272577 59597 4205 2413 0 0 14035 11924 0 0 23608 16420 0 0 4205 2905 0 0 113499 12894 0 0 113025 13041 0 0 4205 0 0 2587 4472 4299 28167 0 0 6.71732 6.71732 -165.932 -6.71732 0 0 926341. 3205.33 0.32 0.72 0.18 -1 -1 0.32 0.0350877 0.0324109 146 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 30.01 vpr 61.70 MiB 0.16 6572 -1 -1 14 0.40 -1 -1 32544 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63184 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 23.2 MiB 1.67 1254 61.7 MiB 0.40 0.00 7.22905 -149.343 -7.22905 7.22905 1.05 0.000529541 0.000431489 0.0490734 0.0421369 36 3629 36 6.79088e+06 296384 648988. 2245.63 23.26 0.394435 0.350861 25390 158009 -1 2987 18 1502 4387 269273 60255 0 0 269273 60255 4387 2483 0 0 14197 12204 0 0 23718 16434 0 0 4387 2860 0 0 109766 13296 0 0 112818 12978 0 0 4387 0 0 2885 5071 5182 34459 0 0 7.60495 7.60495 -172.156 -7.60495 0 0 828058. 2865.25 0.34 0.43 0.20 -1 -1 0.34 0.0401548 0.035445 151 202 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.12 vpr 62.05 MiB 0.14 7084 -1 -1 1 0.03 -1 -1 30128 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 439 351 1 202 101 17 17 289 -1 unnamed_device 23.3 MiB 2.66 1118 62.0 MiB 0.33 0.01 3.32249 -120.949 -3.32249 3.32249 0.97 0.000516695 0.000433543 0.0378595 0.0309662 32 3162 29 6.87369e+06 517032 586450. 2029.24 1.40 0.12259 0.105534 25474 144626 -1 2494 23 2101 3314 328917 70608 0 0 328917 70608 3314 2689 0 0 13224 11735 0 0 23198 18044 0 0 3314 2813 0 0 150941 16481 0 0 134926 18846 0 0 3314 0 0 1213 1433 1390 10882 0 0 3.7341 3.7341 -146.058 -3.7341 0 0 744469. 2576.02 0.30 0.13 0.15 -1 -1 0.30 0.0268777 0.0237357 155 80 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 18.08 vpr 61.99 MiB 0.14 7056 -1 -1 1 0.03 -1 -1 30072 -1 -1 23 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63476 30 32 412 333 1 192 85 17 17 289 -1 unnamed_device 23.3 MiB 4.90 917 62.0 MiB 0.23 0.01 3.41479 -113.356 -3.41479 3.41479 1.05 0.000415422 0.000333237 0.027417 0.0227617 32 2826 34 6.87369e+06 321398 586450. 2029.24 5.65 0.201722 0.175569 25474 144626 -1 2208 22 1985 3283 282859 66501 0 0 282859 66501 3283 2653 0 0 13179 11947 0 0 22039 17378 0 0 3283 2759 0 0 120664 16090 0 0 120411 15674 0 0 3283 0 0 1298 1557 1428 10604 0 0 4.2023 4.2023 -148.779 -4.2023 0 0 744469. 2576.02 0.28 0.91 0.16 -1 -1 0.28 0.0281161 0.0253131 141 78 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 10.04 vpr 62.06 MiB 0.10 7016 -1 -1 1 0.02 -1 -1 30028 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 388 310 1 191 100 17 17 289 -1 unnamed_device 23.4 MiB 2.84 1050 62.1 MiB 0.46 0.01 3.09176 -110.352 -3.09176 3.09176 1.04 0.000394707 0.00032372 0.0336546 0.028368 34 2726 24 6.87369e+06 503058 618332. 2139.56 2.33 0.147631 0.128149 25762 151098 -1 2191 18 1469 2252 149461 36800 0 0 149461 36800 2252 1670 0 0 8958 7888 0 0 13081 10825 0 0 2252 1813 0 0 61100 7605 0 0 61818 6999 0 0 2252 0 0 783 1040 1211 8594 0 0 3.7814 3.7814 -142.051 -3.7814 0 0 787024. 2723.27 0.33 0.48 0.18 -1 -1 0.33 0.023912 0.0215969 145 50 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 8.64 vpr 61.82 MiB 0.10 7108 -1 -1 1 0.01 -1 -1 30116 -1 -1 23 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63308 29 32 347 271 1 184 84 17 17 289 -1 unnamed_device 23.0 MiB 1.65 960 61.8 MiB 0.25 0.01 3.28949 -109.281 -3.28949 3.28949 0.88 0.000337111 0.000268547 0.0285644 0.0232111 34 2417 23 6.87369e+06 321398 618332. 2139.56 2.99 0.123134 0.106645 25762 151098 -1 1982 21 1836 3157 213920 51164 0 0 213920 51164 3157 2352 0 0 11985 10581 0 0 18424 14540 0 0 3157 2503 0 0 91092 10556 0 0 86105 10632 0 0 3157 0 0 1321 1556 1725 11501 0 0 3.8234 3.8234 -137.117 -3.8234 0 0 787024. 2723.27 0.31 0.10 0.17 -1 -1 0.31 0.0223089 0.0198985 136 25 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 10.11 vpr 61.91 MiB 0.09 7208 -1 -1 1 0.02 -1 -1 29848 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63392 32 32 377 289 1 202 85 17 17 289 -1 unnamed_device 23.3 MiB 3.39 1076 61.9 MiB 0.16 0.00 3.32249 -122.535 -3.32249 3.32249 0.90 0.000210045 0.000169307 0.0189863 0.0154525 34 3143 25 6.87369e+06 293451 618332. 2139.56 2.99 0.130119 0.114296 25762 151098 -1 2701 23 2275 4138 349496 79987 0 0 349496 79987 4138 3298 0 0 16129 14863 0 0 25935 20419 0 0 4138 3384 0 0 150300 19400 0 0 148856 18623 0 0 4138 0 0 1863 2182 1964 14743 0 0 4.14601 4.14601 -162.174 -4.14601 0 0 787024. 2723.27 0.31 0.14 0.18 -1 -1 0.31 0.0261859 0.0232912 147 31 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 9.48 vpr 62.11 MiB 0.14 6872 -1 -1 1 0.01 -1 -1 29956 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63604 32 32 403 317 1 200 105 17 17 289 -1 unnamed_device 23.4 MiB 2.35 1074 62.1 MiB 0.24 0.00 3.1261 -104.285 -3.1261 3.1261 1.11 0.000387405 0.000310804 0.0243383 0.0197636 28 2844 46 6.87369e+06 572927 531479. 1839.03 2.87 0.142065 0.124563 24610 126494 -1 2348 22 1709 2780 198240 46413 0 0 198240 46413 2780 1987 0 0 10283 8795 0 0 15386 12247 0 0 2780 2122 0 0 80376 10990 0 0 86635 10272 0 0 2780 0 0 1071 1414 1632 10597 0 0 3.02616 3.02616 -129.374 -3.02616 0 0 648988. 2245.63 0.28 0.09 0.14 -1 -1 0.28 0.0208973 0.0185651 156 61 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 10.01 vpr 61.03 MiB 0.07 6824 -1 -1 1 0.02 -1 -1 29960 -1 -1 20 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62496 27 32 275 232 1 146 79 17 17 289 -1 unnamed_device 22.5 MiB 2.43 640 61.0 MiB 0.12 0.00 2.71895 -83.9222 -2.71895 2.71895 0.93 0.000145059 0.000115744 0.0141352 0.0114526 26 2070 48 6.87369e+06 279477 503264. 1741.40 3.85 0.151533 0.132021 24322 120374 -1 1712 21 1375 2257 178860 43291 0 0 178860 43291 2257 1896 0 0 8842 7764 0 0 13587 10943 0 0 2257 1997 0 0 76840 10294 0 0 75077 10397 0 0 2257 0 0 882 1167 1258 7760 0 0 3.30786 3.30786 -117.162 -3.30786 0 0 618332. 2139.56 0.25 0.12 0.14 -1 -1 0.25 0.0183747 0.0163203 101 26 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 9.58 vpr 61.80 MiB 0.09 7044 -1 -1 1 0.02 -1 -1 29992 -1 -1 35 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63288 31 32 319 244 1 187 98 17 17 289 -1 unnamed_device 23.0 MiB 1.55 892 61.8 MiB 0.38 0.01 2.92855 -93.4449 -2.92855 2.92855 1.02 0.000309155 0.000247752 0.0273523 0.0226109 34 2588 24 6.87369e+06 489084 618332. 2139.56 4.03 0.149614 0.128912 25762 151098 -1 1961 21 1456 2350 160541 39633 0 0 160541 39633 2350 1593 0 0 9252 8136 0 0 14024 11310 0 0 2350 1737 0 0 65913 8692 0 0 66652 8165 0 0 2350 0 0 894 1273 1377 9798 0 0 3.13256 3.13256 -111.827 -3.13256 0 0 787024. 2723.27 0.25 0.07 0.17 -1 -1 0.25 0.0156171 0.0138877 141 -1 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 9.25 vpr 61.81 MiB 0.07 6964 -1 -1 1 0.02 -1 -1 29912 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63292 31 32 340 294 1 153 79 17 17 289 -1 unnamed_device 23.0 MiB 3.68 841 61.8 MiB 0.18 0.00 2.60257 -92.3207 -2.60257 2.60257 1.06 0.000313529 0.000250771 0.0262463 0.0211655 32 2198 25 6.87369e+06 223581 586450. 2029.24 1.70 0.0860945 0.0730038 25474 144626 -1 1876 16 996 1584 136951 30620 0 0 136951 30620 1584 1294 0 0 6274 5542 0 0 10464 8242 0 0 1584 1436 0 0 59787 7077 0 0 57258 7029 0 0 1584 0 0 588 602 520 4654 0 0 2.85396 2.85396 -117.88 -2.85396 0 0 744469. 2576.02 0.28 0.06 0.15 -1 -1 0.28 0.0176974 0.0159076 103 81 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 11.88 vpr 61.28 MiB 0.11 6800 -1 -1 1 0.02 -1 -1 29764 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62748 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 22.8 MiB 5.28 774 61.3 MiB 0.18 0.00 3.0558 -110.582 -3.0558 3.0558 1.03 0.000348768 0.000285579 0.0219972 0.0178961 34 2263 21 6.87369e+06 223581 618332. 2139.56 1.93 0.114042 0.0978246 25762 151098 -1 1920 23 1617 2542 201471 45765 0 0 201471 45765 2542 2076 0 0 9404 8132 0 0 15282 11571 0 0 2542 2144 0 0 86878 10999 0 0 84823 10843 0 0 2542 0 0 925 1114 1211 8424 0 0 3.03546 3.03546 -127.648 -3.03546 0 0 787024. 2723.27 0.33 0.68 0.18 -1 -1 0.33 0.0239973 0.021539 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 9.69 vpr 61.48 MiB 0.09 7072 -1 -1 1 0.02 -1 -1 29840 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62956 30 32 328 276 1 160 80 17 17 289 -1 unnamed_device 22.8 MiB 3.89 667 61.5 MiB 0.19 0.00 3.0931 -100.53 -3.0931 3.0931 1.08 0.000303977 0.000244281 0.0282369 0.0231297 32 2051 23 6.87369e+06 251529 586450. 2029.24 1.74 0.0829731 0.0707067 25474 144626 -1 1561 18 1273 1860 131669 32511 0 0 131669 32511 1860 1512 0 0 7230 6426 0 0 11390 9048 0 0 1860 1597 0 0 55658 6826 0 0 53671 7102 0 0 1860 0 0 587 753 805 5611 0 0 2.94121 2.94121 -115.624 -2.94121 0 0 744469. 2576.02 0.29 0.08 0.17 -1 -1 0.29 0.0258578 0.0238626 109 58 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 8.57 vpr 61.85 MiB 0.12 6980 -1 -1 1 0.01 -1 -1 29952 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63332 32 32 332 281 1 161 96 17 17 289 -1 unnamed_device 23.1 MiB 2.26 809 61.8 MiB 0.34 0.00 2.91455 -98.4539 -2.91455 2.91455 0.92 0.00030242 0.000244079 0.0281076 0.0229812 34 2175 19 6.87369e+06 447163 618332. 2139.56 1.83 0.108409 0.0919349 25762 151098 -1 1846 25 1369 2159 170887 39507 0 0 170887 39507 2159 1522 0 0 8385 7272 0 0 13219 10408 0 0 2159 1669 0 0 72577 9582 0 0 72388 9054 0 0 2159 0 0 790 1059 1070 7954 0 0 2.88196 2.88196 -113.276 -2.88196 0 0 787024. 2723.27 0.29 0.43 0.16 -1 -1 0.29 0.0252649 0.0224589 116 57 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 15.33 vpr 62.14 MiB 0.08 6932 -1 -1 1 0.02 -1 -1 29812 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 387 306 1 195 99 17 17 289 -1 unnamed_device 23.4 MiB 5.72 1044 62.1 MiB 1.09 0.01 2.88825 -106.773 -2.88825 2.88825 1.09 0.000267607 0.000210407 0.0472212 0.0397571 34 2600 23 6.87369e+06 489084 618332. 2139.56 4.29 0.233975 0.204269 25762 151098 -1 2290 24 2175 3834 277783 66553 0 0 277783 66553 3834 2709 0 0 15087 13563 0 0 24095 19104 0 0 3834 2943 0 0 115789 14170 0 0 115144 14064 0 0 3834 0 0 1659 2355 2363 15415 0 0 3.02156 3.02156 -126.145 -3.02156 0 0 787024. 2723.27 0.28 0.60 0.16 -1 -1 0.28 0.0389116 0.0357027 147 55 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 12.72 vpr 62.17 MiB 0.09 7060 -1 -1 1 0.02 -1 -1 30084 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 23.4 MiB 4.86 991 62.2 MiB 0.09 0.00 3.43679 -119.5 -3.43679 3.43679 1.05 0.000190035 0.000150801 0.0133318 0.0108657 34 2676 23 6.87369e+06 517032 618332. 2139.56 4.15 0.142598 0.123667 25762 151098 -1 2167 17 1670 2628 177702 44212 0 0 177702 44212 2628 2016 0 0 10086 8794 0 0 14731 11986 0 0 2628 2168 0 0 69760 9761 0 0 77869 9487 0 0 2628 0 0 958 1386 1060 8792 0 0 3.999 3.999 -149.944 -3.999 0 0 787024. 2723.27 0.25 0.06 0.18 -1 -1 0.25 0.0138381 0.012344 155 60 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 8.01 vpr 60.97 MiB 0.09 6828 -1 -1 1 0.02 -1 -1 29980 -1 -1 19 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62436 29 32 276 232 1 148 80 17 17 289 -1 unnamed_device 22.4 MiB 2.51 647 61.0 MiB 0.45 0.01 2.8846 -87.6406 -2.8846 2.8846 0.98 0.000275831 0.00023035 0.0285485 0.024272 32 2074 23 6.87369e+06 265503 586450. 2029.24 1.47 0.0763682 0.0661315 25474 144626 -1 1587 22 1212 2025 163953 40009 0 0 163953 40009 2025 1608 0 0 7946 7107 0 0 12816 9996 0 0 2025 1650 0 0 69891 10082 0 0 69250 9566 0 0 2025 0 0 813 952 931 6627 0 0 3.33921 3.33921 -113.144 -3.33921 0 0 744469. 2576.02 0.31 0.08 0.17 -1 -1 0.31 0.0167382 0.0146975 102 21 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 10.44 vpr 62.15 MiB 0.08 7176 -1 -1 1 0.01 -1 -1 29928 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 402 316 1 200 85 17 17 289 -1 unnamed_device 23.4 MiB 3.11 1113 62.1 MiB 0.33 0.01 2.77395 -104.528 -2.77395 2.77395 0.94 0.000455211 0.000379361 0.0301224 0.0254485 34 2935 24 6.87369e+06 293451 618332. 2139.56 2.59 0.151887 0.131482 25762 151098 -1 2455 22 2100 3598 278390 63840 0 0 278390 63840 3598 2682 0 0 13665 12336 0 0 22632 17517 0 0 3598 3086 0 0 121115 13826 0 0 113782 14393 0 0 3598 0 0 1498 1946 1790 12914 0 0 3.10756 3.10756 -130.661 -3.10756 0 0 787024. 2723.27 0.30 0.82 0.18 -1 -1 0.30 0.0378336 0.0345484 145 60 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 14.76 vpr 61.84 MiB 0.14 7020 -1 -1 1 0.02 -1 -1 29928 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63328 32 32 384 304 1 193 102 17 17 289 -1 unnamed_device 23.1 MiB 5.70 1021 61.8 MiB 0.21 0.00 2.80515 -103.129 -2.80515 2.80515 1.02 0.000299681 0.000246632 0.0254739 0.0208751 26 2768 40 6.87369e+06 531006 503264. 1741.40 4.66 0.192529 0.167581 24322 120374 -1 2421 22 1714 2638 230631 49816 0 0 230631 49816 2638 2017 0 0 10021 8477 0 0 15585 12259 0 0 2638 2165 0 0 100987 12437 0 0 98762 12461 0 0 2638 0 0 924 1196 1307 9037 0 0 2.90096 2.90096 -126.631 -2.90096 0 0 618332. 2139.56 0.28 0.29 0.14 -1 -1 0.28 0.0254266 0.0227342 148 54 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 11.24 vpr 61.54 MiB 0.08 6744 -1 -1 1 0.02 -1 -1 29768 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63020 32 32 340 285 1 165 93 17 17 289 -1 unnamed_device 22.8 MiB 2.99 824 61.5 MiB 0.55 0.01 2.55736 -94.5428 -2.55736 2.55736 0.98 0.00032563 0.000276013 0.0331272 0.0275557 30 1971 17 6.87369e+06 405241 556674. 1926.21 2.95 0.120135 0.102723 25186 138497 -1 1646 23 961 1455 89566 20992 0 0 89566 20992 1455 1015 0 0 5084 4136 0 0 6523 5411 0 0 1455 1112 0 0 37641 4770 0 0 37408 4548 0 0 1455 0 0 494 688 740 5101 0 0 2.26017 2.26017 -101.011 -2.26017 0 0 706193. 2443.58 0.30 0.88 0.16 -1 -1 0.30 0.0254902 0.0227272 117 62 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 9.69 vpr 61.08 MiB 0.09 6768 -1 -1 1 0.01 -1 -1 29688 -1 -1 14 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62544 30 32 229 211 1 119 76 17 17 289 -1 unnamed_device 22.6 MiB 1.00 638 61.1 MiB 0.39 0.01 2.31406 -76.155 -2.31406 2.31406 1.01 0.000317435 0.000262361 0.0153088 0.012876 30 1456 18 6.87369e+06 195634 556674. 1926.21 4.62 0.103915 0.0900577 25186 138497 -1 1282 19 600 871 52583 12718 0 0 52583 12718 871 770 0 0 3043 2449 0 0 3930 3261 0 0 871 796 0 0 22527 2688 0 0 21341 2754 0 0 871 0 0 271 216 278 2282 0 0 2.29547 2.29547 -91.4676 -2.29547 0 0 706193. 2443.58 0.29 0.04 0.16 -1 -1 0.29 0.012341 0.0108309 73 29 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.94 vpr 61.61 MiB 0.11 6928 -1 -1 1 0.01 -1 -1 30056 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63084 31 32 337 282 1 165 80 17 17 289 -1 unnamed_device 23.0 MiB 2.56 866 61.6 MiB 0.52 0.01 3.53045 -111.392 -3.53045 3.53045 0.89 0.000427675 0.000358101 0.0235349 0.0198702 32 2361 26 6.87369e+06 237555 586450. 2029.24 1.97 0.0832333 0.0718596 25474 144626 -1 2023 19 1145 1674 167228 37146 0 0 167228 37146 1674 1408 0 0 6803 6010 0 0 11864 9400 0 0 1674 1441 0 0 75266 9106 0 0 69947 9781 0 0 1674 0 0 529 465 519 4369 0 0 3.62916 3.62916 -137.952 -3.62916 0 0 744469. 2576.02 0.24 0.16 0.15 -1 -1 0.24 0.0185064 0.0165301 113 55 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 11.97 vpr 61.82 MiB 0.19 7056 -1 -1 1 0.02 -1 -1 29732 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63300 32 32 367 284 1 197 100 17 17 289 -1 unnamed_device 23.0 MiB 1.55 1077 61.8 MiB 0.78 0.01 3.38299 -117.3 -3.38299 3.38299 0.96 0.000581213 0.000503066 0.0422707 0.0359964 34 2502 26 6.87369e+06 503058 618332. 2139.56 5.63 0.210128 0.18235 25762 151098 -1 2078 23 1691 2393 180331 41616 0 0 180331 41616 2393 1891 0 0 9174 8031 0 0 14623 11604 0 0 2393 1991 0 0 76991 8929 0 0 74757 9170 0 0 2393 0 0 702 751 916 6882 0 0 3.7031 3.7031 -139.114 -3.7031 0 0 787024. 2723.27 0.27 0.08 0.15 -1 -1 0.27 0.0211682 0.0187831 150 31 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 15.91 vpr 62.27 MiB 0.17 7148 -1 -1 1 0.01 -1 -1 30300 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 461 376 1 199 104 17 17 289 -1 unnamed_device 23.6 MiB 4.17 977 62.3 MiB 0.78 0.01 3.06976 -105.712 -3.06976 3.06976 0.98 0.000541588 0.000457925 0.0501367 0.0422199 36 2656 21 6.87369e+06 558954 648988. 2245.63 7.07 0.218079 0.187589 26050 158493 -1 1969 20 1434 2222 143271 34002 0 0 143271 34002 2222 1590 0 0 8260 7071 0 0 11659 9586 0 0 2222 1717 0 0 63293 6422 0 0 55615 7616 0 0 2222 0 0 788 940 745 7023 0 0 3.3977 3.3977 -125.842 -3.3977 0 0 828058. 2865.25 0.32 0.05 0.19 -1 -1 0.32 0.0153134 0.0135609 154 108 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 12.12 vpr 60.99 MiB 0.16 6768 -1 -1 1 0.03 -1 -1 30012 -1 -1 16 26 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62456 26 32 205 193 1 109 74 17 17 289 -1 unnamed_device 22.5 MiB 2.64 656 61.0 MiB 0.38 0.00 2.29206 -69.2282 -2.29206 2.29206 0.99 0.000218158 0.000174843 0.0185809 0.0154178 26 1433 20 6.87369e+06 223581 503264. 1741.40 5.26 0.0924152 0.0793401 24322 120374 -1 1346 22 796 1233 117855 26348 0 0 117855 26348 1233 1081 0 0 4921 4290 0 0 8019 6406 0 0 1233 1102 0 0 53151 6653 0 0 49298 6816 0 0 1233 0 0 437 486 544 3852 0 0 2.15912 2.15912 -82.9481 -2.15912 0 0 618332. 2139.56 0.25 0.06 0.13 -1 -1 0.25 0.0123429 0.0108776 69 21 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 13.69 vpr 62.00 MiB 0.14 6920 -1 -1 1 0.02 -1 -1 29824 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63484 32 32 334 252 1 196 85 17 17 289 -1 unnamed_device 23.2 MiB 2.18 931 62.0 MiB 0.65 0.01 3.28949 -112.21 -3.28949 3.28949 0.93 0.00043302 0.000365525 0.0380174 0.0322691 34 2765 26 6.87369e+06 293451 618332. 2139.56 6.79 0.213076 0.182433 25762 151098 -1 2055 25 2176 3658 294101 68840 0 0 294101 68840 3658 2797 0 0 14121 12904 0 0 23081 18057 0 0 3658 3006 0 0 123024 16488 0 0 126559 15588 0 0 3658 0 0 1482 1909 1776 12961 0 0 3.8897 3.8897 -143.488 -3.8897 0 0 787024. 2723.27 0.31 0.11 0.17 -1 -1 0.31 0.0217796 0.0191576 141 -1 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 12.46 vpr 60.72 MiB 0.14 6732 -1 -1 1 0.01 -1 -1 29632 -1 -1 12 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62180 32 32 200 183 1 122 76 17 17 289 -1 unnamed_device 22.1 MiB 0.93 586 60.7 MiB 0.60 0.01 2.05403 -74.0721 -2.05403 2.05403 0.90 0.000347497 0.000286316 0.0206699 0.0171026 30 1422 15 6.87369e+06 167686 556674. 1926.21 6.13 0.109006 0.0903692 25186 138497 -1 1204 16 596 795 60162 14373 0 0 60162 14373 795 672 0 0 2971 2522 0 0 3644 3164 0 0 795 691 0 0 25447 3645 0 0 26510 3679 0 0 795 0 0 199 124 200 1772 0 0 1.93252 1.93252 -88.9708 -1.93252 0 0 706193. 2443.58 0.29 0.08 0.15 -1 -1 0.29 0.0113542 0.0102108 71 -1 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 11.42 vpr 61.97 MiB 0.22 6968 -1 -1 1 0.01 -1 -1 30048 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 377 289 1 202 100 17 17 289 -1 unnamed_device 23.1 MiB 1.85 1111 62.0 MiB 0.70 0.01 3.43679 -122.131 -3.43679 3.43679 0.96 0.000431944 0.000359567 0.0340871 0.0288392 32 3241 33 6.87369e+06 503058 586450. 2029.24 2.97 0.1227 0.107543 25474 144626 -1 2348 23 2149 3369 289069 64517 0 0 289069 64517 3369 2756 0 0 13295 11636 0 0 21463 16692 0 0 3369 2895 0 0 126362 15277 0 0 121211 15261 0 0 3369 0 0 1220 1489 1466 10906 0 0 3.9127 3.9127 -149.791 -3.9127 0 0 744469. 2576.02 0.29 0.51 0.13 -1 -1 0.29 0.0313031 0.0281421 155 21 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 15.72 vpr 61.86 MiB 0.13 6956 -1 -1 1 0.01 -1 -1 29796 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63344 32 32 338 254 1 198 100 17 17 289 -1 unnamed_device 23.0 MiB 1.85 1007 61.9 MiB 0.78 0.01 2.90845 -101.769 -2.90845 2.90845 0.97 0.000605502 0.000535808 0.036647 0.0312905 28 2840 41 6.87369e+06 503058 531479. 1839.03 9.02 0.222399 0.195629 24610 126494 -1 2306 20 1724 2634 221292 52180 0 0 221292 52180 2634 1997 0 0 10078 8651 0 0 14546 11790 0 0 2634 2107 0 0 100673 13415 0 0 90727 14220 0 0 2634 0 0 910 1035 1417 8986 0 0 3.09326 3.09326 -127.648 -3.09326 0 0 648988. 2245.63 0.26 0.10 0.13 -1 -1 0.26 0.0220078 0.0196827 151 -1 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 13.16 vpr 61.92 MiB 0.16 6936 -1 -1 1 0.01 -1 -1 30076 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 408 320 1 202 103 17 17 289 -1 unnamed_device 23.2 MiB 2.19 1029 61.9 MiB 0.99 0.01 3.44779 -121.16 -3.44779 3.44779 0.98 0.000452945 0.000381381 0.0464754 0.0392286 32 3122 35 6.87369e+06 544980 586450. 2029.24 4.03 0.162599 0.142055 25474 144626 -1 2328 24 2085 3636 294488 71092 0 0 294488 71092 3636 2632 0 0 14767 13189 0 0 24811 19575 0 0 3636 2897 0 0 135305 15547 0 0 112333 17252 0 0 3636 0 0 1551 2226 2024 14549 0 0 4.113 4.113 -152.474 -4.113 0 0 744469. 2576.02 0.26 0.63 0.16 -1 -1 0.26 0.032291 0.0287312 156 54 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 13.64 vpr 61.15 MiB 0.15 6800 -1 -1 1 0.02 -1 -1 29772 -1 -1 15 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62620 32 32 295 247 1 157 79 17 17 289 -1 unnamed_device 22.6 MiB 1.70 926 61.2 MiB 0.69 0.01 2.42892 -93.7064 -2.42892 2.42892 0.81 0.00052947 0.00046415 0.0296572 0.0253135 30 2248 33 6.87369e+06 209608 556674. 1926.21 5.69 0.155209 0.13594 25186 138497 -1 1871 17 1071 1748 109347 24768 0 0 109347 24768 1748 1376 0 0 6010 4911 0 0 7569 6269 0 0 1748 1601 0 0 44820 5655 0 0 47452 4956 0 0 1748 0 0 677 848 707 5556 0 0 2.98226 2.98226 -121.231 -2.98226 0 0 706193. 2443.58 0.22 0.42 0.16 -1 -1 0.22 0.0173912 0.0156412 104 31 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 15.14 vpr 61.52 MiB 0.16 6892 -1 -1 1 0.01 -1 -1 29780 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62992 30 32 299 247 1 160 80 17 17 289 -1 unnamed_device 22.9 MiB 2.52 926 61.5 MiB 0.81 0.01 3.25325 -107.102 -3.25325 3.25325 0.96 0.000315584 0.000249832 0.0374627 0.0322822 30 2105 34 6.87369e+06 251529 556674. 1926.21 6.01 0.172032 0.150969 25186 138497 -1 1795 17 911 1465 90502 21317 0 0 90502 21317 1465 1155 0 0 5158 4311 0 0 6779 5667 0 0 1465 1203 0 0 37984 4627 0 0 37651 4354 0 0 1465 0 0 554 505 661 4737 0 0 3.05731 3.05731 -123.2 -3.05731 0 0 706193. 2443.58 0.29 0.42 0.15 -1 -1 0.29 0.0188003 0.0167478 110 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 13.39 vpr 61.01 MiB 0.16 6856 -1 -1 1 0.01 -1 -1 29812 -1 -1 19 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62472 28 32 283 237 1 150 79 17 17 289 -1 unnamed_device 22.5 MiB 1.75 777 61.0 MiB 0.79 0.01 2.72995 -90.2561 -2.72995 2.72995 1.01 0.000346872 0.000292533 0.0332425 0.0277022 34 2151 20 6.87369e+06 265503 618332. 2139.56 5.07 0.129373 0.112354 25762 151098 -1 1788 24 1395 2454 187421 43857 0 0 187421 43857 2454 1935 0 0 9363 8440 0 0 14943 11691 0 0 2454 2004 0 0 79590 10259 0 0 78617 9528 0 0 2454 0 0 1059 1070 1122 8417 0 0 3.06656 3.06656 -114.553 -3.06656 0 0 787024. 2723.27 0.27 0.66 0.17 -1 -1 0.27 0.0237651 0.021306 104 27 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 17.24 vpr 61.20 MiB 0.17 6848 -1 -1 1 0.01 -1 -1 29796 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62668 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 22.6 MiB 2.13 642 61.2 MiB 0.71 0.00 2.77395 -99.582 -2.77395 2.77395 1.00 0.000278517 0.000232293 0.0331461 0.0278591 36 1955 23 6.87369e+06 223581 648988. 2245.63 8.33 0.184536 0.160598 26050 158493 -1 1623 19 1406 2202 134683 35412 0 0 134683 35412 2202 1659 0 0 8164 7079 0 0 11453 9288 0 0 2202 1760 0 0 61315 6954 0 0 49347 8672 0 0 2202 0 0 796 830 819 6809 0 0 3.09326 3.09326 -123.21 -3.09326 0 0 828058. 2865.25 0.31 0.66 0.19 -1 -1 0.31 0.0185662 0.0165782 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 12.37 vpr 61.59 MiB 0.21 6840 -1 -1 1 0.01 -1 -1 30016 -1 -1 32 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63068 31 32 305 251 1 163 95 17 17 289 -1 unnamed_device 22.9 MiB 1.73 753 61.6 MiB 0.43 0.02 2.81125 -94.7007 -2.81125 2.81125 0.99 0.000336278 0.000277963 0.0217177 0.0184536 28 2254 24 6.87369e+06 447163 531479. 1839.03 3.58 0.0865976 0.0757494 24610 126494 -1 1908 22 1517 2461 195770 46489 0 0 195770 46489 2461 1773 0 0 9262 8067 0 0 14245 11307 0 0 2461 1947 0 0 84254 11806 0 0 83087 11589 0 0 2461 0 0 944 1156 1345 9402 0 0 2.96796 2.96796 -120.678 -2.96796 0 0 648988. 2245.63 0.26 0.70 0.15 -1 -1 0.26 0.0230426 0.0204883 119 26 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 13.34 vpr 61.28 MiB 0.14 6888 -1 -1 1 0.02 -1 -1 29820 -1 -1 32 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62752 29 32 316 268 1 155 93 17 17 289 -1 unnamed_device 22.8 MiB 3.72 774 61.3 MiB 0.76 0.01 2.30671 -78.688 -2.30671 2.30671 0.94 0.000458627 0.000384604 0.0326558 0.0272507 28 1904 22 6.87369e+06 447163 531479. 1839.03 3.26 0.098438 0.0852127 24610 126494 -1 1704 19 1191 1989 136883 32969 0 0 136883 32969 1989 1306 0 0 7565 6532 0 0 11281 9142 0 0 1989 1457 0 0 59308 6977 0 0 54751 7555 0 0 1989 0 0 798 1099 1180 8038 0 0 2.51972 2.51972 -102.205 -2.51972 0 0 648988. 2245.63 0.23 0.36 0.13 -1 -1 0.23 0.0209237 0.0187428 113 55 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 18.57 vpr 62.26 MiB 0.17 7316 -1 -1 1 0.02 -1 -1 29956 -1 -1 44 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63756 32 32 424 311 1 231 108 17 17 289 -1 unnamed_device 23.6 MiB 5.62 1268 62.3 MiB 0.85 0.01 3.51809 -124.254 -3.51809 3.51809 0.86 0.000579014 0.000502234 0.0521282 0.0448979 34 3521 37 6.87369e+06 614849 618332. 2139.56 5.88 0.204716 0.180916 25762 151098 -1 2846 22 2249 3854 312155 69702 0 0 312155 69702 3854 2560 0 0 14888 12992 0 0 22400 17793 0 0 3854 2796 0 0 133830 16505 0 0 133329 17056 0 0 3854 0 0 1605 3325 3193 20633 0 0 4.124 4.124 -157.871 -4.124 0 0 787024. 2723.27 0.34 0.85 0.16 -1 -1 0.34 0.0311454 0.0280363 184 26 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 18.59 vpr 61.94 MiB 0.12 6996 -1 -1 1 0.02 -1 -1 29884 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63428 32 32 404 318 1 200 103 17 17 289 -1 unnamed_device 23.2 MiB 4.11 1061 61.9 MiB 0.71 0.01 2.89745 -107.364 -2.89745 2.89745 0.93 0.000495121 0.000423409 0.0369076 0.0315482 28 2529 23 6.87369e+06 544980 531479. 1839.03 7.75 0.227703 0.19985 24610 126494 -1 2224 23 2040 3124 220073 50963 0 0 220073 50963 3124 2202 0 0 11228 9662 0 0 17031 13287 0 0 3124 2416 0 0 93619 11906 0 0 91947 11490 0 0 3124 0 0 1084 1398 1540 10610 0 0 3.09326 3.09326 -128.458 -3.09326 0 0 648988. 2245.63 0.27 0.85 0.14 -1 -1 0.27 0.0276274 0.0245811 154 62 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 20.66 vpr 61.75 MiB 0.12 7012 -1 -1 1 0.02 -1 -1 30044 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63228 31 32 355 304 1 160 94 17 17 289 -1 unnamed_device 23.1 MiB 4.61 797 61.7 MiB 0.79 0.01 2.77825 -95.0114 -2.77825 2.77825 1.02 0.000432426 0.000366083 0.0376539 0.0317784 28 2255 26 6.87369e+06 433189 531479. 1839.03 10.72 0.189245 0.164358 24610 126494 -1 1885 19 1217 2000 156598 36661 0 0 156598 36661 2000 1444 0 0 7563 6351 0 0 11284 9108 0 0 2000 1560 0 0 64654 9472 0 0 69097 8726 0 0 2000 0 0 783 1008 1116 7771 0 0 3.27021 3.27021 -120.008 -3.27021 0 0 648988. 2245.63 0.26 0.43 0.14 -1 -1 0.26 0.0217994 0.0195476 116 77 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 16.80 vpr 61.79 MiB 0.11 7160 -1 -1 1 0.02 -1 -1 29908 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63276 31 32 393 311 1 195 86 17 17 289 -1 unnamed_device 23.1 MiB 3.60 1064 61.8 MiB 0.61 0.01 2.78315 -101.308 -2.78315 2.78315 0.98 0.000445362 0.000373486 0.0335106 0.0281477 30 2566 24 6.87369e+06 321398 556674. 1926.21 7.28 0.185292 0.156014 25186 138497 -1 2032 20 1444 2415 144782 33347 0 0 144782 33347 2415 1845 0 0 8174 6703 0 0 10546 8567 0 0 2415 1966 0 0 59672 7573 0 0 61560 6693 0 0 2415 0 0 971 1026 966 7918 0 0 3.16556 3.16556 -125.386 -3.16556 0 0 706193. 2443.58 0.31 0.48 0.14 -1 -1 0.31 0.030549 0.0276632 142 59 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 20.95 vpr 62.01 MiB 0.07 7172 -1 -1 1 0.01 -1 -1 30112 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63500 31 32 457 373 1 198 85 17 17 289 -1 unnamed_device 23.3 MiB 6.42 1073 62.0 MiB 0.81 0.01 3.93354 -123.865 -3.93354 3.93354 0.94 0.000480627 0.000397427 0.0490573 0.0416619 30 2822 25 6.87369e+06 307425 556674. 1926.21 8.15 0.208449 0.181327 25186 138497 -1 2140 20 1447 2428 142616 33749 0 0 142616 33749 2428 1875 0 0 8362 7042 0 0 11148 9128 0 0 2428 2052 0 0 58849 6703 0 0 59401 6949 0 0 2428 0 0 981 1154 1248 8521 0 0 4.15755 4.15755 -148.931 -4.15755 0 0 706193. 2443.58 0.26 0.71 0.17 -1 -1 0.26 0.023859 0.0211549 145 111 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 18.80 vpr 61.88 MiB 0.03 7248 -1 -1 1 0.01 -1 -1 29992 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63360 31 32 415 335 1 195 85 17 17 289 -1 unnamed_device 23.1 MiB 3.00 962 61.9 MiB 0.87 0.01 3.73124 -113.651 -3.73124 3.73124 0.93 0.000326136 0.000247489 0.048427 0.0424621 34 2710 27 6.87369e+06 307425 618332. 2139.56 9.58 0.263428 0.232843 25762 151098 -1 2153 21 1722 2735 211028 50944 0 0 211028 50944 2735 2306 0 0 10848 9597 0 0 16383 13180 0 0 2735 2401 0 0 87699 12424 0 0 90628 11036 0 0 2735 0 0 1013 1111 864 7847 0 0 3.88305 3.88305 -141.775 -3.88305 0 0 787024. 2723.27 0.31 0.61 0.18 -1 -1 0.31 0.027672 0.0246524 141 86 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 18.84 vpr 61.99 MiB 0.02 7288 -1 -1 1 0.02 -1 -1 29992 -1 -1 35 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63476 31 32 393 311 1 195 98 17 17 289 -1 unnamed_device 23.2 MiB 3.26 1027 62.0 MiB 1.07 0.01 2.88825 -103.082 -2.88825 2.88825 1.01 0.000500287 0.000417215 0.04826 0.041555 34 2688 24 6.87369e+06 489084 618332. 2139.56 9.17 0.236299 0.206744 25762 151098 -1 2283 22 1869 3162 221692 52636 0 0 221692 52636 3162 2217 0 0 12223 10770 0 0 18890 15019 0 0 3162 2435 0 0 91726 11390 0 0 92529 10805 0 0 3162 0 0 1293 1622 1899 12108 0 0 3.04926 3.04926 -122.184 -3.04926 0 0 787024. 2723.27 0.29 0.69 0.16 -1 -1 0.29 0.0347171 0.0313597 148 58 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 18.71 vpr 61.84 MiB 0.02 7056 -1 -1 1 0.02 -1 -1 30192 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63328 32 32 408 320 1 202 102 17 17 289 -1 unnamed_device 22.9 MiB 2.86 1080 61.8 MiB 0.85 0.01 3.32249 -119.406 -3.32249 3.32249 1.04 0.000815011 0.000677851 0.0332016 0.0279254 34 2858 26 6.87369e+06 531006 618332. 2139.56 9.88 0.223306 0.194516 25762 151098 -1 2333 22 1983 3124 251386 56401 0 0 251386 56401 3124 2337 0 0 12296 10990 0 0 18579 15100 0 0 3124 2495 0 0 113962 11367 0 0 100301 14112 0 0 3124 0 0 1141 1920 2078 13503 0 0 3.9034 3.9034 -152.562 -3.9034 0 0 787024. 2723.27 0.25 0.66 0.18 -1 -1 0.25 0.0342814 0.0310162 156 42 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 20.37 vpr 62.16 MiB 0.03 7200 -1 -1 1 0.02 -1 -1 30120 -1 -1 42 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63652 32 32 497 381 1 234 106 17 17 289 -1 unnamed_device 23.6 MiB 4.71 1217 62.2 MiB 0.87 0.02 3.36169 -121.727 -3.36169 3.36169 0.93 0.000545742 0.000452606 0.0461131 0.0391434 32 3570 39 6.87369e+06 586901 586450. 2029.24 8.91 0.275136 0.241213 25474 144626 -1 2713 21 2207 3664 276966 64212 0 0 276966 64212 3664 2567 0 0 14356 12469 0 0 23260 18054 0 0 3664 2814 0 0 116267 14315 0 0 115755 13993 0 0 3664 0 0 1457 2192 2462 16033 0 0 3.7891 3.7891 -152.086 -3.7891 0 0 744469. 2576.02 0.26 0.69 0.16 -1 -1 0.26 0.0389386 0.0348755 186 91 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 17.69 vpr 61.19 MiB 0.02 6944 -1 -1 1 0.01 -1 -1 30004 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62656 31 32 307 252 1 164 80 17 17 289 -1 unnamed_device 22.8 MiB 3.41 854 61.2 MiB 0.68 0.01 3.0136 -106.802 -3.0136 3.0136 0.91 0.000437397 0.000375161 0.0243935 0.0206151 32 2329 21 6.87369e+06 237555 586450. 2029.24 8.62 0.151979 0.132706 25474 144626 -1 1847 17 1234 1950 154500 35853 0 0 154500 35853 1950 1570 0 0 7659 6900 0 0 11687 9280 0 0 1950 1659 0 0 66986 8083 0 0 64268 8361 0 0 1950 0 0 716 903 901 6386 0 0 3.10431 3.10431 -126.112 -3.10431 0 0 744469. 2576.02 0.22 0.57 0.14 -1 -1 0.22 0.0233546 0.021468 112 24 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 19.91 vpr 62.02 MiB 0.02 6928 -1 -1 1 0.02 -1 -1 29844 -1 -1 37 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63504 31 32 397 313 1 198 100 17 17 289 -1 unnamed_device 23.1 MiB 4.13 1022 62.0 MiB 0.78 0.01 3.37079 -115.274 -3.37079 3.37079 0.98 0.000468547 0.000390713 0.0309813 0.0261474 28 2943 26 6.87369e+06 517032 531479. 1839.03 10.06 0.210967 0.185132 24610 126494 -1 2624 23 1913 3097 307033 67758 0 0 307033 67758 3097 2276 0 0 11906 10233 0 0 18289 14734 0 0 3097 2491 0 0 139022 17843 0 0 131622 20181 0 0 3097 0 0 1184 2044 2153 13906 0 0 4.4969 4.4969 -165.24 -4.4969 0 0 648988. 2245.63 0.26 0.52 0.16 -1 -1 0.26 0.0295921 0.0264837 152 59 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 17.09 vpr 62.09 MiB 0.03 6980 -1 -1 1 0.03 -1 -1 30020 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63584 32 32 398 314 1 198 99 17 17 289 -1 unnamed_device 23.4 MiB 2.90 1114 62.1 MiB 0.53 0.00 2.75195 -101.903 -2.75195 2.75195 0.92 0.000418978 0.000370871 0.032725 0.0280885 30 2808 23 6.87369e+06 489084 556674. 1926.21 8.32 0.190148 0.166071 25186 138497 -1 2184 20 1386 2323 134270 31387 0 0 134270 31387 2323 1582 0 0 8125 6820 0 0 10484 8672 0 0 2323 1682 0 0 57443 6092 0 0 53572 6539 0 0 2323 0 0 937 1028 882 8080 0 0 2.94796 2.94796 -122.564 -2.94796 0 0 706193. 2443.58 0.22 0.55 0.14 -1 -1 0.22 0.0260221 0.0234202 150 54 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 14.50 vpr 62.02 MiB 0.02 7120 -1 -1 1 0.02 -1 -1 29828 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63508 32 32 346 258 1 202 85 17 17 289 -1 unnamed_device 23.1 MiB 1.14 1205 62.0 MiB 0.64 0.01 3.44779 -125.859 -3.44779 3.44779 0.95 0.000401684 0.000333648 0.0465868 0.0403785 34 3215 25 6.87369e+06 293451 618332. 2139.56 6.62 0.160967 0.141498 25762 151098 -1 2628 23 2237 4016 320446 72879 0 0 320446 72879 4016 3441 0 0 15410 13727 0 0 23448 18629 0 0 4016 3535 0 0 137578 16552 0 0 135978 16995 0 0 4016 0 0 1779 2541 2439 15977 0 0 3.9034 3.9034 -156.063 -3.9034 0 0 787024. 2723.27 0.28 0.87 0.14 -1 -1 0.28 0.0290387 0.026231 147 -1 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 18.46 vpr 62.08 MiB 0.03 7128 -1 -1 1 0.01 -1 -1 30148 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63572 32 32 425 344 1 195 100 17 17 289 -1 unnamed_device 23.5 MiB 5.21 1003 62.1 MiB 1.13 0.02 2.77395 -100.311 -2.77395 2.77395 1.13 0.000595012 0.000517213 0.0551863 0.0474115 34 2607 22 6.87369e+06 503058 618332. 2139.56 6.45 0.199969 0.176256 25762 151098 -1 2172 23 1840 2886 210092 49661 0 0 210092 49661 2886 2111 0 0 11134 9710 0 0 17255 13732 0 0 2886 2262 0 0 89694 10793 0 0 86237 11053 0 0 2886 0 0 1046 1462 1958 11678 0 0 3.11526 3.11526 -125.959 -3.11526 0 0 787024. 2723.27 0.28 0.74 0.16 -1 -1 0.28 0.0276292 0.0248241 148 81 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 21.07 vpr 62.03 MiB 0.02 7172 -1 -1 1 0.01 -1 -1 29800 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63516 32 32 396 312 1 198 103 17 17 289 -1 unnamed_device 23.3 MiB 4.98 1004 62.0 MiB 0.69 0.01 2.84425 -101.377 -2.84425 2.84425 1.04 0.000413039 0.000343113 0.058059 0.052363 34 2575 23 6.87369e+06 544980 618332. 2139.56 10.01 0.295071 0.261593 25762 151098 -1 2123 24 1715 2918 202893 49122 0 0 202893 49122 2918 1998 0 0 11343 9896 0 0 17597 13897 0 0 2918 2131 0 0 84512 10717 0 0 83605 10483 0 0 2918 0 0 1203 1871 2008 13732 0 0 3.10426 3.10426 -123.988 -3.10426 0 0 787024. 2723.27 0.30 0.62 0.15 -1 -1 0.30 0.029804 0.0266505 152 58 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 14.30 vpr 61.97 MiB 0.02 6988 -1 -1 1 0.01 -1 -1 29868 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63460 32 32 406 319 1 201 104 17 17 289 -1 unnamed_device 23.0 MiB 3.92 1025 62.0 MiB 1.08 0.02 2.85525 -102.206 -2.85525 2.85525 0.86 0.000548583 0.000467368 0.0541933 0.0467584 32 3260 38 6.87369e+06 558954 586450. 2029.24 4.04 0.17442 0.155509 25474 144626 -1 2276 23 2069 3378 291428 66852 0 0 291428 66852 3378 2480 0 0 13062 11381 0 0 22946 17518 0 0 3378 2710 0 0 124983 16355 0 0 123681 16408 0 0 3378 0 0 1309 1602 1786 11647 0 0 3.07126 3.07126 -124.669 -3.07126 0 0 744469. 2576.02 0.31 0.55 0.17 -1 -1 0.31 0.0297438 0.026298 156 61 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 17.50 vpr 62.19 MiB 0.08 6844 -1 -1 1 0.02 -1 -1 30036 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63684 32 32 377 289 1 202 103 17 17 289 -1 unnamed_device 23.4 MiB 1.05 1138 62.2 MiB 0.26 0.01 3.32249 -120.659 -3.32249 3.32249 1.01 0.000445794 0.000368818 0.0269609 0.022661 26 2972 26 6.87369e+06 544980 503264. 1741.40 10.43 0.172931 0.151534 24322 120374 -1 2772 24 2261 3663 526430 141382 0 0 526430 141382 3663 2833 0 0 14267 12578 0 0 23999 18587 0 0 3663 2961 0 0 238274 54018 0 0 242564 50405 0 0 3663 0 0 1402 1721 2025 13017 0 0 4.5409 4.5409 -167.264 -4.5409 0 0 618332. 2139.56 0.22 0.74 0.13 -1 -1 0.22 0.0265364 0.0236765 156 21 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 21.45 vpr 61.91 MiB 0.02 7056 -1 -1 1 0.02 -1 -1 30044 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63392 32 32 408 320 1 202 105 17 17 289 -1 unnamed_device 23.3 MiB 4.40 1085 61.9 MiB 1.13 0.01 3.32249 -118.239 -3.32249 3.32249 0.92 0.000438946 0.000362438 0.0503147 0.0427012 28 2694 25 6.87369e+06 572927 531479. 1839.03 10.67 0.225653 0.197433 24610 126494 -1 2378 23 2096 3452 250314 57216 0 0 250314 57216 3452 2456 0 0 12848 11306 0 0 19351 15511 0 0 3452 2643 0 0 108834 11942 0 0 102377 13358 0 0 3452 0 0 1356 1733 1783 13184 0 0 3.9737 3.9737 -148.431 -3.9737 0 0 648988. 2245.63 0.27 0.64 0.12 -1 -1 0.27 0.0318879 0.0288009 157 50 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 20.64 vpr 62.00 MiB 0.03 7224 -1 -1 1 0.03 -1 -1 30124 -1 -1 37 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63492 31 32 451 369 1 195 100 17 17 289 -1 unnamed_device 23.3 MiB 4.85 1061 62.0 MiB 0.40 0.01 3.25649 -112.114 -3.25649 3.25649 1.10 0.000416313 0.000337926 0.0283088 0.0240936 28 2839 28 6.87369e+06 517032 531479. 1839.03 9.33 0.21175 0.184681 24610 126494 -1 2446 24 1888 3299 309693 66122 0 0 309693 66122 3299 2479 0 0 12377 10930 0 0 19288 15242 0 0 3299 2679 0 0 139736 16468 0 0 131694 18324 0 0 3299 0 0 1411 1691 1704 12801 0 0 3.5648 3.5648 -136.802 -3.5648 0 0 648988. 2245.63 0.22 0.92 0.13 -1 -1 0.22 0.0319272 0.0283855 150 110 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 16.17 vpr 62.11 MiB 0.02 7024 -1 -1 1 0.02 -1 -1 30176 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 433 347 1 200 85 17 17 289 -1 unnamed_device 23.4 MiB 4.80 1161 62.1 MiB 0.28 0.01 3.25649 -118.081 -3.25649 3.25649 1.07 0.000400479 0.000326694 0.0358027 0.0291995 34 3241 33 6.87369e+06 293451 618332. 2139.56 5.30 0.18918 0.165074 25762 151098 -1 2730 24 2094 3888 334370 74630 0 0 334370 74630 3888 3394 0 0 15273 13788 0 0 23538 18688 0 0 3888 3540 0 0 141435 18556 0 0 146348 16664 0 0 3888 0 0 1794 2423 2310 14851 0 0 3.968 3.968 -149.111 -3.968 0 0 787024. 2723.27 0.31 0.84 0.15 -1 -1 0.31 0.0314649 0.0283058 145 86 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.71 vpr 61.63 MiB 0.02 6768 -1 -1 1 0.01 -1 -1 29968 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63112 32 32 313 256 1 167 96 17 17 289 -1 unnamed_device 22.8 MiB 0.99 824 61.6 MiB 0.33 0.00 2.88825 -103.549 -2.88825 2.88825 0.97 0.000497354 0.000436595 0.0242452 0.0204488 28 2344 21 6.87369e+06 447163 531479. 1839.03 1.13 0.0785731 0.0685208 24610 126494 -1 2015 22 1545 2481 196143 46266 0 0 196143 46266 2481 1892 0 0 9411 8251 0 0 14319 11453 0 0 2481 1991 0 0 85757 11521 0 0 81694 11158 0 0 2481 0 0 936 1305 1330 9436 0 0 3.10426 3.10426 -124.03 -3.10426 0 0 648988. 2245.63 0.25 0.08 0.14 -1 -1 0.25 0.0174731 0.0154822 121 20 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 10.32 vpr 61.66 MiB 0.02 6856 -1 -1 1 0.02 -1 -1 29800 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63144 32 32 371 315 1 166 80 17 17 289 -1 unnamed_device 23.0 MiB 4.30 776 61.7 MiB 0.14 0.00 2.9366 -103.39 -2.9366 2.9366 0.98 0.000385457 0.000309455 0.0180582 0.0148708 32 2563 34 6.87369e+06 223581 586450. 2029.24 1.41 0.0886164 0.0762811 25474 144626 -1 2168 22 1563 2444 240569 55298 0 0 240569 55298 2444 2030 0 0 9863 8918 0 0 18155 14295 0 0 2444 2127 0 0 107199 13785 0 0 100464 14143 0 0 2444 0 0 881 959 929 7327 0 0 3.40321 3.40321 -134.892 -3.40321 0 0 744469. 2576.02 0.34 0.35 0.16 -1 -1 0.34 0.0253165 0.0227897 112 91 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 10.50 vpr 61.94 MiB 0.03 7200 -1 -1 1 0.02 -1 -1 30236 -1 -1 44 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63424 32 32 470 352 1 236 108 17 17 289 -1 unnamed_device 23.5 MiB 3.43 1350 61.9 MiB 0.92 0.01 3.99454 -139.525 -3.99454 3.99454 1.06 0.000539654 0.000453976 0.0642398 0.0552965 30 3171 24 6.87369e+06 614849 556674. 1926.21 1.72 0.165016 0.145193 25186 138497 -1 2487 23 2405 4121 227516 55022 0 0 227516 55022 4121 2837 0 0 14177 12242 0 0 20090 16023 0 0 4121 3013 0 0 94165 10277 0 0 90842 10630 0 0 4121 0 0 1716 2144 2246 15703 0 0 4.57075 4.57075 -166.207 -4.57075 0 0 706193. 2443.58 0.29 0.30 0.18 -1 -1 0.29 0.034671 0.0310926 189 53 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 17.00 vpr 61.84 MiB 0.03 7028 -1 -1 1 0.02 -1 -1 29740 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63324 32 32 369 285 1 198 99 17 17 289 -1 unnamed_device 23.2 MiB 3.56 1031 61.8 MiB 0.23 0.01 2.93045 -106.705 -2.93045 2.93045 0.97 0.000517163 0.000444982 0.028518 0.0238696 28 2623 24 6.87369e+06 489084 531479. 1839.03 7.83 0.19496 0.170272 24610 126494 -1 2197 20 1450 2115 161955 37718 0 0 161955 37718 2115 1602 0 0 7926 6705 0 0 12091 9671 0 0 2115 1683 0 0 69785 8666 0 0 67923 9391 0 0 2115 0 0 665 837 895 6844 0 0 2.99796 2.99796 -129.127 -2.99796 0 0 648988. 2245.63 0.26 0.53 0.13 -1 -1 0.26 0.0273378 0.0245293 150 31 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 15.77 vpr 61.55 MiB 0.02 6768 -1 -1 1 0.02 -1 -1 29848 -1 -1 31 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63024 30 32 299 247 1 160 93 17 17 289 -1 unnamed_device 23.2 MiB 0.94 778 61.5 MiB 1.04 0.01 2.75195 -94.6293 -2.75195 2.75195 0.94 0.000354874 0.000293549 0.0266765 0.0225031 26 2409 43 6.87369e+06 433189 503264. 1741.40 7.98 0.2118 0.185071 24322 120374 -1 2031 25 1688 2543 271461 66850 0 0 271461 66850 2543 1959 0 0 10080 8918 0 0 16810 13317 0 0 2543 2071 0 0 117664 20735 0 0 121821 19850 0 0 2543 0 0 855 1212 1105 8773 0 0 3.21556 3.21556 -128.734 -3.21556 0 0 618332. 2139.56 0.26 0.91 0.14 -1 -1 0.26 0.0246987 0.0219593 116 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 23.42 vpr 62.39 MiB 0.04 7304 -1 -1 1 0.02 -1 -1 30460 -1 -1 47 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 532 414 1 236 111 17 17 289 -1 unnamed_device 23.7 MiB 8.07 1293 62.4 MiB 0.51 0.01 4.06664 -137.508 -4.06664 4.06664 1.00 0.000840762 0.00073413 0.0401278 0.0344113 34 3159 23 6.87369e+06 656770 618332. 2139.56 8.98 0.272423 0.237951 25762 151098 -1 2583 22 2496 3806 298462 66252 0 0 298462 66252 3806 2764 0 0 14555 12864 0 0 22885 18292 0 0 3806 2966 0 0 138466 12803 0 0 114944 16563 0 0 3806 0 0 1310 2027 2114 15233 0 0 4.43295 4.43295 -169.303 -4.43295 0 0 787024. 2723.27 0.29 0.67 0.16 -1 -1 0.29 0.0401416 0.0363121 190 109 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 19.88 vpr 62.17 MiB 0.03 7128 -1 -1 1 0.02 -1 -1 29876 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63664 32 32 377 289 1 202 104 17 17 289 -1 unnamed_device 23.4 MiB 4.19 1038 62.2 MiB 0.64 0.01 3.35369 -119.945 -3.35369 3.35369 1.17 0.00042787 0.000380432 0.0375322 0.0310226 28 2720 24 6.87369e+06 558954 531479. 1839.03 8.38 0.232697 0.20343 24610 126494 -1 2350 21 2073 3115 239934 55029 0 0 239934 55029 3115 2307 0 0 11709 10166 0 0 17395 13970 0 0 3115 2512 0 0 102265 13343 0 0 102335 12731 0 0 3115 0 0 1042 1305 1516 10816 0 0 3.9507 3.9507 -154.331 -3.9507 0 0 648988. 2245.63 0.23 0.91 0.16 -1 -1 0.23 0.0257895 0.0229049 156 31 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 11.95 vpr 61.20 MiB 0.03 6680 -1 -1 1 0.01 -1 -1 29680 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62672 32 32 284 226 1 168 97 17 17 289 -1 unnamed_device 22.6 MiB 0.90 878 61.2 MiB 0.80 0.01 2.84425 -102.272 -2.84425 2.84425 1.10 0.000582071 0.000512147 0.039629 0.0351386 30 2359 26 6.87369e+06 461137 556674. 1926.21 5.82 0.209744 0.185723 25186 138497 -1 1821 23 1300 2090 117886 29348 0 0 117886 29348 2090 1499 0 0 7433 6485 0 0 9888 8166 0 0 2090 1626 0 0 46880 6106 0 0 49505 5466 0 0 2090 0 0 790 1004 1153 8013 0 0 2.96496 2.96496 -123.488 -2.96496 0 0 706193. 2443.58 0.26 0.41 0.16 -1 -1 0.26 0.0235464 0.0210266 123 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 13.68 vpr 62.05 MiB 0.03 7308 -1 -1 1 0.02 -1 -1 30204 -1 -1 45 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63540 32 32 439 321 1 236 109 17 17 289 -1 unnamed_device 23.6 MiB 4.66 1340 62.1 MiB 0.72 0.01 3.98534 -140.435 -3.98534 3.98534 0.96 0.000414335 0.000363977 0.0402869 0.0342387 32 4030 36 6.87369e+06 628823 586450. 2029.24 2.51 0.145358 0.127688 25474 144626 -1 2969 23 2529 4236 416414 89063 0 0 416414 89063 4236 3120 0 0 16888 15150 0 0 28503 22245 0 0 4236 3351 0 0 182925 22955 0 0 179626 22242 0 0 4236 0 0 1707 3520 3739 22692 0 0 4.81985 4.81985 -180.196 -4.81985 0 0 744469. 2576.02 0.29 0.90 0.17 -1 -1 0.29 0.0401085 0.0322681 189 26 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 12.97 vpr 61.11 MiB 0.02 6616 -1 -1 1 0.01 -1 -1 29744 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62572 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 22.5 MiB 1.46 637 61.1 MiB 0.82 0.01 2.77395 -99.4567 -2.77395 2.77395 1.07 0.000435333 0.000373387 0.0446593 0.0384953 36 2059 29 6.87369e+06 223581 648988. 2245.63 5.45 0.183663 0.159289 26050 158493 -1 1489 20 1465 2354 148701 38422 0 0 148701 38422 2354 1795 0 0 8631 7579 0 0 12390 9906 0 0 2354 1918 0 0 67041 7916 0 0 55931 9308 0 0 2354 0 0 889 1006 912 7671 0 0 3.07126 3.07126 -121.841 -3.07126 0 0 828058. 2865.25 0.30 0.41 0.18 -1 -1 0.30 0.021239 0.0190427 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 12.17 vpr 61.69 MiB 0.02 6772 -1 -1 1 0.01 -1 -1 29880 -1 -1 33 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63172 30 32 299 247 1 162 95 17 17 289 -1 unnamed_device 22.9 MiB 3.56 779 61.7 MiB 0.15 0.00 2.75195 -93.9675 -2.75195 2.75195 1.06 0.000291417 0.000244375 0.017603 0.0145325 30 1981 23 6.87369e+06 461137 556674. 1926.21 4.07 0.143334 0.121752 25186 138497 -1 1591 20 984 1629 91148 22930 0 0 91148 22930 1629 1086 0 0 5765 4932 0 0 7617 6245 0 0 1629 1169 0 0 35730 4904 0 0 38778 4594 0 0 1629 0 0 645 710 785 6221 0 0 2.84266 2.84266 -113.811 -2.84266 0 0 706193. 2443.58 0.26 0.41 0.16 -1 -1 0.26 0.0219012 0.0197296 119 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 10.28 vpr 61.82 MiB 0.03 7016 -1 -1 1 0.02 -1 -1 29840 -1 -1 35 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63308 29 32 397 323 1 185 96 17 17 289 -1 unnamed_device 23.3 MiB 4.40 985 61.8 MiB 0.18 0.01 2.74095 -91.7049 -2.74095 2.74095 1.07 0.00052274 0.000445823 0.018945 0.015776 28 2636 23 6.87369e+06 489084 531479. 1839.03 2.17 0.0945317 0.0826209 24610 126494 -1 2173 22 1766 3032 217536 50807 0 0 217536 50807 3032 2194 0 0 11480 9964 0 0 17489 14112 0 0 3032 2306 0 0 91890 10841 0 0 90613 11390 0 0 3032 0 0 1266 1597 1493 11430 0 0 3.20621 3.20621 -116.708 -3.20621 0 0 648988. 2245.63 0.28 0.09 0.14 -1 -1 0.28 0.0217441 0.019193 141 81 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 10.67 vpr 61.79 MiB 0.03 7056 -1 -1 1 0.01 -1 -1 30100 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63268 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 23.2 MiB 4.34 915 61.8 MiB 0.15 0.00 3.36169 -118.09 -3.36169 3.36169 1.08 0.000381528 0.000308831 0.0247311 0.0201857 34 2635 25 6.87369e+06 293451 618332. 2139.56 2.40 0.134154 0.117368 25762 151098 -1 1916 19 1831 2772 192003 46929 0 0 192003 46929 2772 2368 0 0 10542 9260 0 0 15778 12635 0 0 2772 2462 0 0 77740 9782 0 0 82399 10422 0 0 2772 0 0 941 1260 1203 8780 0 0 4.1823 4.1823 -152.231 -4.1823 0 0 787024. 2723.27 0.35 0.10 0.18 -1 -1 0.35 0.0248937 0.0221441 147 53 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 20.04 vpr 61.95 MiB 0.03 6992 -1 -1 1 0.02 -1 -1 30240 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63432 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 23.4 MiB 5.90 1001 61.9 MiB 0.76 0.01 3.43679 -119.75 -3.43679 3.43679 1.04 0.00044433 0.000370787 0.0511106 0.0465147 32 3221 37 6.87369e+06 517032 586450. 2029.24 7.28 0.278293 0.247105 25474 144626 -1 2416 23 2092 3437 331923 74437 0 0 331923 74437 3437 2665 0 0 13902 12516 0 0 25065 19330 0 0 3437 2816 0 0 146158 18333 0 0 139924 18777 0 0 3437 0 0 1345 1637 1805 12330 0 0 4.0317 4.0317 -149.892 -4.0317 0 0 744469. 2576.02 0.25 0.91 0.16 -1 -1 0.25 0.032849 0.0295798 155 55 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 14.70 vpr 61.81 MiB 0.02 6748 -1 -1 1 0.02 -1 -1 30056 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63292 32 32 346 288 1 168 97 17 17 289 -1 unnamed_device 22.9 MiB 4.09 769 61.8 MiB 0.22 0.01 2.86625 -102.277 -2.86625 2.86625 1.05 0.000320069 0.000259587 0.0274942 0.0225601 36 2037 25 6.87369e+06 461137 648988. 2245.63 4.42 0.184502 0.159725 26050 158493 -1 1601 21 1418 2104 124946 31886 0 0 124946 31886 2104 1555 0 0 7861 6837 0 0 11459 9308 0 0 2104 1657 0 0 49601 6528 0 0 51817 6001 0 0 2104 0 0 686 887 925 7172 0 0 2.99796 2.99796 -116.862 -2.99796 0 0 828058. 2865.25 0.33 0.85 0.18 -1 -1 0.33 0.0233251 0.021051 123 55 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 18.61 vpr 61.71 MiB 0.03 6920 -1 -1 1 0.01 -1 -1 30000 -1 -1 18 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63192 31 32 355 304 1 160 81 17 17 289 -1 unnamed_device 23.0 MiB 5.48 757 61.7 MiB 0.18 0.00 2.9476 -99.6202 -2.9476 2.9476 1.10 0.000436507 0.000367476 0.0221311 0.0183225 34 2247 20 6.87369e+06 251529 618332. 2139.56 6.67 0.187616 0.163877 25762 151098 -1 1830 22 1396 2466 188661 45266 0 0 188661 45266 2466 1847 0 0 9602 8723 0 0 15218 12094 0 0 2466 1907 0 0 79579 10599 0 0 79330 10096 0 0 2466 0 0 1070 1253 1109 8656 0 0 3.41421 3.41421 -128.695 -3.41421 0 0 787024. 2723.27 0.34 0.72 0.15 -1 -1 0.34 0.0232131 0.0208299 108 82 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 17.06 vpr 62.04 MiB 0.04 7104 -1 -1 1 0.02 -1 -1 30068 -1 -1 34 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63524 30 32 377 300 1 189 96 17 17 289 -1 unnamed_device 23.3 MiB 3.87 974 62.0 MiB 0.66 0.01 2.75195 -94.4007 -2.75195 2.75195 1.12 0.000565818 0.000487305 0.0300899 0.0258045 26 2848 34 6.87369e+06 475111 503264. 1741.40 6.01 0.200028 0.177081 24322 120374 -1 2391 22 1722 2758 241392 55567 0 0 241392 55567 2758 2156 0 0 10692 9358 0 0 16589 13183 0 0 2758 2248 0 0 102227 14829 0 0 106368 13793 0 0 2758 0 0 1036 1678 1839 11705 0 0 3.31716 3.31716 -125.089 -3.31716 0 0 618332. 2139.56 0.21 0.98 0.15 -1 -1 0.21 0.0278235 0.0246948 143 52 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 14.04 vpr 61.93 MiB 0.38 6996 -1 -1 1 0.02 -1 -1 29956 -1 -1 35 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63416 28 32 337 265 1 180 95 17 17 289 -1 unnamed_device 23.1 MiB 2.42 879 61.9 MiB 0.19 0.00 3.33779 -102.64 -3.33779 3.33779 1.07 0.000301252 0.000248865 0.0233531 0.0192685 28 2572 21 6.87369e+06 489084 531479. 1839.03 5.80 0.192104 0.169288 24610 126494 -1 2119 20 1604 2751 221557 51259 0 0 221557 51259 2751 2031 0 0 10581 9199 0 0 15947 12889 0 0 2751 2196 0 0 91999 12904 0 0 97528 12040 0 0 2751 0 0 1147 2129 2042 13365 0 0 3.9407 3.9407 -136.457 -3.9407 0 0 648988. 2245.63 0.29 0.10 0.17 -1 -1 0.29 0.0205185 0.0182227 139 20 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 12.36 vpr 61.73 MiB 0.15 6980 -1 -1 1 0.02 -1 -1 29880 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63208 30 32 328 276 1 161 80 17 17 289 -1 unnamed_device 23.0 MiB 3.64 823 61.7 MiB 0.20 0.00 2.9806 -100.71 -2.9806 2.9806 1.12 0.000317899 0.000256815 0.0274133 0.0223237 30 2012 21 6.87369e+06 251529 556674. 1926.21 4.42 0.164095 0.143281 25186 138497 -1 1598 18 1060 1799 103554 24932 0 0 103554 24932 1799 1301 0 0 6347 5465 0 0 8083 6759 0 0 1799 1389 0 0 40767 5333 0 0 44759 4685 0 0 1799 0 0 739 839 820 6079 0 0 3.07931 3.07931 -118.914 -3.07931 0 0 706193. 2443.58 0.31 0.06 0.17 -1 -1 0.31 0.0167263 0.0148179 110 58 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 11.69 vpr 61.64 MiB 0.18 7116 -1 -1 1 0.02 -1 -1 29896 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63124 32 32 362 309 1 163 81 17 17 289 -1 unnamed_device 22.9 MiB 4.71 934 61.6 MiB 0.05 0.00 2.8626 -99.8613 -2.8626 2.8626 0.87 0.000182753 0.000146348 0.00698804 0.00581232 34 2296 19 6.87369e+06 237555 618332. 2139.56 1.44 0.0640836 0.0543535 25762 151098 -1 1919 21 1244 2025 158947 36863 0 0 158947 36863 2025 1692 0 0 8098 7184 0 0 12333 10002 0 0 2025 1841 0 0 67437 8332 0 0 67029 7812 0 0 2025 0 0 781 814 669 6081 0 0 2.96131 2.96131 -118.105 -2.96131 0 0 787024. 2723.27 0.29 0.06 0.18 -1 -1 0.29 0.0153231 0.013527 110 88 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 13.29 vpr 61.71 MiB 0.16 7044 -1 -1 1 0.02 -1 -1 29872 -1 -1 37 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63196 31 32 337 253 1 197 100 17 17 289 -1 unnamed_device 22.8 MiB 1.84 1127 61.7 MiB 0.23 0.01 3.41479 -117.889 -3.41479 3.41479 1.04 0.000340911 0.000275116 0.0225714 0.0185527 28 2897 30 6.87369e+06 517032 531479. 1839.03 6.93 0.214104 0.188726 24610 126494 -1 2462 24 2116 3382 263101 60168 0 0 263101 60168 3382 2731 0 0 12931 11251 0 0 20258 16157 0 0 3382 2955 0 0 116357 12770 0 0 106791 14304 0 0 3382 0 0 1266 1440 1599 11267 0 0 4.035 4.035 -150.563 -4.035 0 0 648988. 2245.63 0.28 0.11 0.17 -1 -1 0.28 0.0251827 0.0226288 151 -1 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 15.06 vpr 61.82 MiB 0.21 7064 -1 -1 1 0.01 -1 -1 30072 -1 -1 38 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63300 32 32 408 320 1 202 102 17 17 289 -1 unnamed_device 23.1 MiB 5.83 1082 61.8 MiB 0.24 0.01 3.42579 -122.557 -3.42579 3.42579 1.07 0.000421814 0.000343376 0.0241024 0.0196616 34 2896 34 6.87369e+06 531006 618332. 2139.56 4.21 0.168885 0.148083 25762 151098 -1 2479 23 2123 3541 255878 61881 0 0 255878 61881 3541 2523 0 0 14152 12652 0 0 21376 17351 0 0 3541 2667 0 0 106691 13538 0 0 106577 13150 0 0 3541 0 0 1418 1738 1639 12708 0 0 3.7891 3.7891 -149.813 -3.7891 0 0 787024. 2723.27 0.33 0.52 0.18 -1 -1 0.33 0.0295042 0.0264649 156 57 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 15.48 vpr 61.92 MiB 0.07 6872 -1 -1 1 0.02 -1 -1 29996 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63404 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 23.2 MiB 5.52 1082 61.9 MiB 0.31 0.01 3.44779 -122.578 -3.44779 3.44779 1.10 0.000467464 0.00038993 0.0362598 0.0301685 32 3250 37 6.87369e+06 517032 586450. 2029.24 5.67 0.242474 0.210554 25474 144626 -1 2439 22 2197 3750 387458 82719 0 0 387458 82719 3750 2890 0 0 15206 13711 0 0 27661 21366 0 0 3750 3048 0 0 177122 19227 0 0 159969 22477 0 0 3750 0 0 1553 1920 1771 13950 0 0 4.0397 4.0397 -155.078 -4.0397 0 0 744469. 2576.02 0.31 0.18 0.17 -1 -1 0.31 0.0365121 0.0323229 155 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 13.86 vpr 61.88 MiB 0.03 6928 -1 -1 1 0.01 -1 -1 29940 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63368 32 32 400 316 1 198 103 17 17 289 -1 unnamed_device 23.1 MiB 4.48 1146 61.9 MiB 0.36 0.01 3.38179 -117.59 -3.38179 3.38179 0.96 0.000414203 0.000339253 0.0378764 0.0318901 32 3381 25 6.87369e+06 544980 586450. 2029.24 3.86 0.212766 0.184253 25474 144626 -1 2604 25 2090 3673 338944 75936 0 0 338944 75936 3673 2777 0 0 14845 13436 0 0 26959 20453 0 0 3673 3051 0 0 147748 18045 0 0 142046 18174 0 0 3673 0 0 1583 2026 2128 14378 0 0 3.9657 3.9657 -146.852 -3.9657 0 0 744469. 2576.02 0.33 1.47 0.19 -1 -1 0.33 0.0309949 0.0274763 152 62 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 8.88 vpr 61.19 MiB 0.02 6892 -1 -1 1 0.02 -1 -1 29824 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62660 30 32 299 247 1 159 81 17 17 289 -1 unnamed_device 22.7 MiB 3.52 875 61.2 MiB 0.46 0.01 2.9806 -103.759 -2.9806 2.9806 0.97 0.00028195 0.000233291 0.030495 0.0255651 32 2357 22 6.87369e+06 265503 586450. 2029.24 1.23 0.0849229 0.0731271 25474 144626 -1 1951 20 1338 2180 216768 46433 0 0 216768 46433 2180 1836 0 0 8851 7955 0 0 14940 11802 0 0 2180 1936 0 0 99702 10872 0 0 88915 12032 0 0 2180 0 0 842 934 861 6867 0 0 3.20461 3.20461 -125.575 -3.20461 0 0 744469. 2576.02 0.30 0.09 0.21 -1 -1 0.30 0.0192301 0.0171616 110 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 10.56 vpr 62.06 MiB 0.09 7156 -1 -1 1 0.03 -1 -1 29920 -1 -1 23 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63548 30 32 386 306 1 193 85 17 17 289 -1 unnamed_device 23.3 MiB 4.58 944 62.1 MiB 0.37 0.02 3.36289 -114.873 -3.36289 3.36289 1.06 0.000525757 0.000449475 0.0388231 0.0329788 34 2309 24 6.87369e+06 321398 618332. 2139.56 2.01 0.166688 0.146098 25762 151098 -1 1864 21 1771 2736 173162 42232 0 0 173162 42232 2736 2088 0 0 10308 8989 0 0 15352 12172 0 0 2736 2193 0 0 74075 8303 0 0 67955 8487 0 0 2736 0 0 965 847 1047 8171 0 0 3.8439 3.8439 -141.245 -3.8439 0 0 787024. 2723.27 0.29 0.06 0.15 -1 -1 0.29 0.0170944 0.0153811 140 58 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 20.30 vpr 62.25 MiB 0.12 7124 -1 -1 1 0.02 -1 -1 30268 -1 -1 43 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 470 382 1 202 107 17 17 289 -1 unnamed_device 23.5 MiB 6.63 1115 62.3 MiB 0.28 0.01 3.38179 -121.215 -3.38179 3.38179 1.14 0.000472982 0.000382341 0.0293649 0.0240674 28 2822 25 6.87369e+06 600875 531479. 1839.03 8.79 0.22942 0.198797 24610 126494 -1 2555 21 1911 3236 272203 59754 0 0 272203 59754 3236 2263 0 0 12442 10937 0 0 19360 15604 0 0 3236 2465 0 0 121342 13412 0 0 112587 15073 0 0 3236 0 0 1325 2268 2307 15516 0 0 4.124 4.124 -157.21 -4.124 0 0 648988. 2245.63 0.25 0.51 0.13 -1 -1 0.25 0.0331227 0.0298414 158 106 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 15.22 vpr 62.16 MiB 0.13 7108 -1 -1 1 0.03 -1 -1 30044 -1 -1 33 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63652 31 32 427 343 1 196 96 17 17 289 -1 unnamed_device 23.5 MiB 3.16 846 62.2 MiB 0.63 0.01 3.63244 -111.59 -3.63244 3.63244 0.95 0.000412886 0.000340202 0.0310078 0.0257445 36 2634 24 6.87369e+06 461137 648988. 2245.63 6.42 0.212898 0.183995 26050 158493 -1 1991 24 1951 3216 222020 54825 0 0 222020 54825 3216 2490 0 0 11654 10223 0 0 17367 13857 0 0 3216 2683 0 0 89673 13079 0 0 96894 12493 0 0 3216 0 0 1265 1653 1641 11635 0 0 3.7861 3.7861 -137.818 -3.7861 0 0 828058. 2865.25 0.30 0.10 0.16 -1 -1 0.30 0.024961 0.0220932 150 79 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 10.63 vpr 61.83 MiB 0.15 7076 -1 -1 1 0.03 -1 -1 30096 -1 -1 32 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63312 30 32 407 331 1 188 94 17 17 289 -1 unnamed_device 23.0 MiB 3.35 939 61.8 MiB 1.03 0.01 2.87725 -95.4428 -2.87725 2.87725 1.05 0.000362439 0.000313771 0.0492051 0.0424268 34 2572 27 6.87369e+06 447163 618332. 2139.56 2.44 0.179112 0.156544 25762 151098 -1 2014 21 1838 3000 222459 53536 0 0 222459 53536 3000 2241 0 0 11683 10259 0 0 18485 14520 0 0 3000 2618 0 0 94941 11950 0 0 91350 11948 0 0 3000 0 0 1162 1421 1300 10199 0 0 3.14976 3.14976 -117.487 -3.14976 0 0 787024. 2723.27 0.31 0.10 0.19 -1 -1 0.31 0.0219878 0.0193725 141 83 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 14.79 vpr 61.87 MiB 0.14 7016 -1 -1 1 0.02 -1 -1 29996 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63352 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 23.2 MiB 6.64 1105 61.9 MiB 0.32 0.05 3.32249 -118.902 -3.32249 3.32249 1.11 0.000575039 0.000384342 0.0253061 0.0207372 34 3209 23 6.87369e+06 293451 618332. 2139.56 2.39 0.14455 0.125116 25762 151098 -1 2709 23 2338 4067 341747 78616 0 0 341747 78616 4067 3467 0 0 15517 14002 0 0 23986 18959 0 0 4067 3683 0 0 153983 18591 0 0 140127 19914 0 0 4067 0 0 1729 1836 1913 13645 0 0 4.1603 4.1603 -158.921 -4.1603 0 0 787024. 2723.27 0.32 1.03 0.31 -1 -1 0.32 0.0308809 0.0279063 147 58 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 11.56 vpr 62.00 MiB 0.13 7144 -1 -1 1 0.02 -1 -1 29924 -1 -1 36 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63484 29 32 391 320 1 181 97 17 17 289 -1 unnamed_device 23.2 MiB 3.16 925 62.0 MiB 0.86 0.01 2.83945 -93.3233 -2.83945 2.83945 1.01 0.000282662 0.000239183 0.029048 0.024321 26 2439 39 6.87369e+06 503058 503264. 1741.40 3.78 0.19383 0.169216 24322 120374 -1 2211 23 1598 2530 217879 48868 0 0 217879 48868 2530 1910 0 0 9772 8462 0 0 15537 12300 0 0 2530 2036 0 0 94050 11957 0 0 93460 12203 0 0 2530 0 0 932 1163 1120 8283 0 0 3.32816 3.32816 -123.227 -3.32816 0 0 618332. 2139.56 0.21 0.10 0.10 -1 -1 0.21 0.0242659 0.0214259 138 81 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 10.18 vpr 61.28 MiB 0.12 6852 -1 -1 1 0.02 -1 -1 29872 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62752 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 22.8 MiB 1.47 911 61.3 MiB 0.71 0.01 2.9586 -107.845 -2.9586 2.9586 1.03 0.000312319 0.000256593 0.0272028 0.0230297 34 2320 21 6.87369e+06 223581 618332. 2139.56 4.07 0.124181 0.108973 25762 151098 -1 1921 21 1361 2078 161603 37781 0 0 161603 37781 2078 1736 0 0 8126 7097 0 0 12474 9908 0 0 2078 1775 0 0 68058 8906 0 0 68789 8359 0 0 2078 0 0 717 785 711 5857 0 0 3.17461 3.17461 -130.301 -3.17461 0 0 787024. 2723.27 0.33 0.10 0.17 -1 -1 0.33 0.0187816 0.0167033 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 17.85 vpr 62.14 MiB 0.26 7172 -1 -1 1 0.02 -1 -1 29824 -1 -1 37 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 23.3 MiB 6.40 1129 62.1 MiB 0.28 0.01 3.43679 -122.883 -3.43679 3.43679 1.04 0.000429426 0.000357872 0.0318864 0.0265389 26 3400 45 6.87369e+06 517032 503264. 1741.40 6.95 0.210534 0.184732 24322 120374 -1 2833 25 2441 3939 456695 109049 0 0 456695 109049 3939 3270 0 0 15807 14085 0 0 26422 21070 0 0 3939 3418 0 0 204638 35010 0 0 201950 32196 0 0 3939 0 0 1498 2266 2137 14334 0 0 4.3716 4.3716 -168.917 -4.3716 0 0 618332. 2139.56 0.26 0.14 0.17 -1 -1 0.26 0.0234431 0.0208225 155 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 12.64 vpr 61.91 MiB 0.23 6992 -1 -1 1 0.02 -1 -1 29948 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63392 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 23.2 MiB 5.60 975 61.9 MiB 0.26 0.00 3.36169 -121.244 -3.36169 3.36169 1.02 0.000342593 0.000281935 0.0365432 0.0304992 34 2774 23 6.87369e+06 293451 618332. 2139.56 2.48 0.175076 0.153286 25762 151098 -1 2355 22 2130 3410 259810 59996 0 0 259810 59996 3410 2900 0 0 12874 11153 0 0 19287 15277 0 0 3410 3054 0 0 108503 14545 0 0 112326 13067 0 0 3410 0 0 1280 1660 1645 11327 0 0 4.154 4.154 -158.149 -4.154 0 0 787024. 2723.27 0.29 0.12 0.18 -1 -1 0.29 0.0259304 0.0229761 147 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 13.24 vpr 61.49 MiB 0.11 6808 -1 -1 1 0.02 -1 -1 30084 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62968 32 32 316 268 1 158 94 17 17 289 -1 unnamed_device 22.7 MiB 4.78 701 61.5 MiB 0.63 0.01 2.77825 -91.8806 -2.77825 2.77825 1.19 0.000717749 0.000587094 0.024395 0.02094 34 1971 26 6.87369e+06 419215 618332. 2139.56 3.62 0.158305 0.13667 25762 151098 -1 1624 20 1216 1921 135323 34642 0 0 135323 34642 1921 1406 0 0 7322 6384 0 0 11622 9229 0 0 1921 1484 0 0 56781 8215 0 0 55756 7924 0 0 1921 0 0 705 766 923 6961 0 0 2.80966 2.80966 -111.511 -2.80966 0 0 787024. 2723.27 0.33 0.07 0.15 -1 -1 0.33 0.0178037 0.015696 112 47 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 10.73 vpr 61.05 MiB 0.14 6900 -1 -1 1 0.02 -1 -1 29948 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62516 31 32 277 222 1 164 80 17 17 289 -1 unnamed_device 22.6 MiB 1.50 663 61.1 MiB 0.53 0.01 3.1169 -105.508 -3.1169 3.1169 1.07 0.000510392 0.000451246 0.0228948 0.0192409 32 2215 21 6.87369e+06 237555 586450. 2029.24 3.25 0.0824806 0.0717137 25474 144626 -1 1773 21 1491 2375 173166 42389 0 0 173166 42389 2375 1951 0 0 8869 7728 0 0 14071 10760 0 0 2375 2064 0 0 73028 10223 0 0 72448 9663 0 0 2375 0 0 884 1189 1223 7931 0 0 3.21561 3.21561 -125.948 -3.21561 0 0 744469. 2576.02 0.31 0.10 0.17 -1 -1 0.31 0.0189592 0.016823 112 -1 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 12.21 vpr 62.05 MiB 0.15 6948 -1 -1 1 0.02 -1 -1 29860 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63544 32 32 382 304 1 194 99 17 17 289 -1 unnamed_device 23.3 MiB 4.65 845 62.1 MiB 1.19 0.01 3.39099 -111.172 -3.39099 3.39099 0.99 0.000400218 0.000329022 0.0443421 0.0375208 32 3021 49 6.87369e+06 489084 586450. 2029.24 2.17 0.138862 0.120478 25474 144626 -1 2032 21 1691 2458 201381 48023 0 0 201381 48023 2458 1999 0 0 9526 8266 0 0 15437 12019 0 0 2458 2082 0 0 83541 12318 0 0 87961 11339 0 0 2458 0 0 767 1030 1049 7934 0 0 4.057 4.057 -140.006 -4.057 0 0 744469. 2576.02 0.29 0.10 0.17 -1 -1 0.29 0.0260904 0.0233532 144 56 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 19.35 vpr 61.79 MiB 0.13 6904 -1 -1 1 0.02 -1 -1 30044 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63272 32 32 407 331 1 190 97 17 17 289 -1 unnamed_device 23.0 MiB 2.73 878 61.8 MiB 0.81 0.01 3.52914 -107.052 -3.52914 3.52914 0.89 0.00041291 0.000338022 0.0342166 0.0291873 36 2379 45 6.87369e+06 461137 648988. 2245.63 11.80 0.269013 0.234625 26050 158493 -1 1841 23 1485 2295 179901 41133 0 0 179901 41133 2295 1855 0 0 8662 7534 0 0 12926 10340 0 0 2295 1928 0 0 83983 8787 0 0 69740 10689 0 0 2295 0 0 810 826 733 6834 0 0 3.5118 3.5118 -127.801 -3.5118 0 0 828058. 2865.25 0.29 0.09 0.16 -1 -1 0.29 0.0234421 0.0207452 144 81 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 11.90 vpr 62.13 MiB 0.13 7100 -1 -1 1 0.02 -1 -1 29976 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63620 32 32 400 286 1 232 105 17 17 289 -1 unnamed_device 23.4 MiB 1.74 1320 62.1 MiB 0.81 0.01 3.96154 -136.583 -3.96154 3.96154 1.04 0.000517394 0.000427317 0.0386156 0.0329187 28 3341 21 6.87369e+06 572927 531479. 1839.03 4.87 0.120773 0.106056 24610 126494 -1 2785 23 2406 3957 290994 66921 0 0 290994 66921 3957 2988 0 0 14806 12938 0 0 22705 17973 0 0 3957 3170 0 0 123979 14819 0 0 121590 15033 0 0 3957 0 0 1551 2009 2026 14371 0 0 4.91545 4.91545 -174.942 -4.91545 0 0 648988. 2245.63 0.23 0.23 0.12 -1 -1 0.23 0.0298706 0.0269038 183 -1 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 13.35 vpr 62.09 MiB 0.09 7056 -1 -1 1 0.01 -1 -1 30116 -1 -1 32 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63584 30 32 374 298 1 188 94 17 17 289 -1 unnamed_device 23.4 MiB 3.57 876 62.1 MiB 0.96 0.02 2.83325 -94.2035 -2.83325 2.83325 0.97 0.000476878 0.000401357 0.0348727 0.0291927 34 2547 23 6.87369e+06 447163 618332. 2139.56 4.89 0.165539 0.145345 25762 151098 -1 2051 19 1653 2609 192513 46887 0 0 192513 46887 2609 1944 0 0 10242 9089 0 0 15706 12839 0 0 2609 2098 0 0 79095 10889 0 0 82252 10028 0 0 2609 0 0 956 1223 1234 8790 0 0 3.17786 3.17786 -117.658 -3.17786 0 0 787024. 2723.27 0.32 0.12 0.18 -1 -1 0.32 0.0223388 0.019958 141 47 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 13.39 vpr 61.27 MiB 0.11 6996 -1 -1 1 0.02 -1 -1 29976 -1 -1 20 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62736 27 32 275 232 1 145 79 17 17 289 -1 unnamed_device 22.8 MiB 1.67 641 61.3 MiB 0.63 0.01 2.9348 -85.8608 -2.9348 2.9348 1.00 0.000286961 0.000233728 0.0296055 0.0249806 34 1601 23 6.87369e+06 279477 618332. 2139.56 7.18 0.168358 0.146526 25762 151098 -1 1308 21 1198 1754 120724 29957 0 0 120724 29957 1754 1469 0 0 6742 5979 0 0 10389 8335 0 0 1754 1584 0 0 49867 6271 0 0 50218 6319 0 0 1754 0 0 556 742 624 5090 0 0 2.94631 2.94631 -102.553 -2.94631 0 0 787024. 2723.27 0.31 0.06 0.18 -1 -1 0.31 0.0167254 0.0147896 102 26 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 23.28 vpr 62.57 MiB 0.13 7204 -1 -1 1 0.02 -1 -1 30180 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 494 379 1 233 105 17 17 289 -1 unnamed_device 23.7 MiB 4.08 1314 62.6 MiB 1.17 0.03 3.40379 -119.023 -3.40379 3.40379 1.00 0.000918107 0.000749824 0.0678267 0.0590545 30 3788 23 6.87369e+06 572927 556674. 1926.21 13.72 0.259752 0.227744 25186 138497 -1 2804 21 2104 3814 246888 56936 0 0 246888 56936 3814 2718 0 0 13282 11664 0 0 18057 14653 0 0 3814 3223 0 0 108965 11896 0 0 98956 12782 0 0 3814 0 0 1710 2131 1701 14392 0 0 3.9757 3.9757 -149.898 -3.9757 0 0 706193. 2443.58 0.31 0.60 0.16 -1 -1 0.31 0.0354683 0.0320496 184 85 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 15.08 vpr 61.96 MiB 0.13 7172 -1 -1 1 0.03 -1 -1 30284 -1 -1 23 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63452 31 32 457 373 1 199 86 17 17 289 -1 unnamed_device 23.1 MiB 4.68 903 62.0 MiB 0.93 0.02 3.97274 -122.806 -3.97274 3.97274 0.98 0.000793546 0.000655551 0.0445152 0.0375287 34 2764 45 6.87369e+06 321398 618332. 2139.56 5.59 0.181234 0.158045 25762 151098 -1 2121 21 1528 2377 182990 44951 0 0 182990 44951 2377 2089 0 0 9511 8378 0 0 15054 12185 0 0 2377 2146 0 0 75067 10638 0 0 78604 9515 0 0 2377 0 0 849 1237 1004 7877 0 0 4.57265 4.57265 -154.364 -4.57265 0 0 787024. 2723.27 0.32 0.09 0.18 -1 -1 0.32 0.0235891 0.020934 144 105 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 14.23 vpr 61.58 MiB 0.10 6772 -1 -1 1 0.02 -1 -1 29772 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63060 32 32 356 305 1 162 80 17 17 289 -1 unnamed_device 22.9 MiB 4.23 723 61.6 MiB 0.60 0.00 3.8283 -103.889 -3.8283 3.8283 0.98 0.000287456 0.000234936 0.0376545 0.0317558 34 2370 23 6.87369e+06 223581 618332. 2139.56 5.60 0.143528 0.12461 25762 151098 -1 1820 14 853 1267 113784 26334 0 0 113784 26334 1267 1038 0 0 5049 4312 0 0 7133 5882 0 0 1267 1089 0 0 48423 7298 0 0 50645 6715 0 0 1267 0 0 414 566 470 3631 0 0 3.18321 3.18321 -118.048 -3.18321 0 0 787024. 2723.27 0.27 0.06 0.15 -1 -1 0.27 0.0149062 0.0134012 107 86 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 16.06 vpr 61.91 MiB 0.17 6956 -1 -1 1 0.02 -1 -1 29816 -1 -1 34 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63400 32 32 365 283 1 196 98 17 17 289 -1 unnamed_device 23.2 MiB 1.85 1116 61.9 MiB 0.58 0.03 3.30669 -118.066 -3.30669 3.30669 1.00 0.000542308 0.000467904 0.0249143 0.0215028 28 2841 42 6.87369e+06 475111 531479. 1839.03 9.65 0.232496 0.201553 24610 126494 -1 2528 18 1600 2385 234913 57173 0 0 234913 57173 2385 2035 0 0 9236 8191 0 0 14104 11614 0 0 2385 2129 0 0 103630 17099 0 0 103173 16105 0 0 2385 0 0 785 842 782 6790 0 0 4.0239 4.0239 -153.714 -4.0239 0 0 648988. 2245.63 0.28 0.10 0.14 -1 -1 0.28 0.0220529 0.0197968 147 31 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 14.32 vpr 62.24 MiB 0.11 7200 -1 -1 1 0.02 -1 -1 30092 -1 -1 40 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63732 31 32 445 338 1 224 103 17 17 289 -1 unnamed_device 23.6 MiB 3.17 1131 62.2 MiB 0.66 0.01 3.42399 -116.035 -3.42399 3.42399 1.03 0.000916825 0.000799893 0.039069 0.0332275 28 2909 41 6.87369e+06 558954 531479. 1839.03 3.94 0.185684 0.164159 24610 126494 -1 2447 22 2020 3036 203566 47752 0 0 203566 47752 3036 2294 0 0 11210 9414 0 0 16726 13512 0 0 3036 2450 0 0 86161 9590 0 0 83397 10492 0 0 3036 0 0 1016 1449 1541 11092 0 0 3.9127 3.9127 -146.087 -3.9127 0 0 648988. 2245.63 0.28 0.73 0.16 -1 -1 0.28 0.0304456 0.027079 176 50 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 17.99 vpr 61.92 MiB 0.12 6928 -1 -1 1 0.01 -1 -1 30004 -1 -1 36 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63408 30 32 376 300 1 188 98 17 17 289 -1 unnamed_device 23.3 MiB 3.00 964 61.9 MiB 0.87 0.01 2.80025 -90.6262 -2.80025 2.80025 0.97 0.000901551 0.000733243 0.0415588 0.035157 30 2744 28 6.87369e+06 503058 556674. 1926.21 10.45 0.214668 0.188391 25186 138497 -1 2011 22 1552 2860 175160 42089 0 0 175160 42089 2860 2033 0 0 10024 8618 0 0 13333 10944 0 0 2860 2361 0 0 75692 8744 0 0 70391 9389 0 0 2860 0 0 1308 1867 1603 11932 0 0 2.95426 2.95426 -110.339 -2.95426 0 0 706193. 2443.58 0.30 0.09 0.16 -1 -1 0.30 0.021265 0.0186603 144 50 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 16.76 vpr 61.98 MiB 0.14 7056 -1 -1 1 0.02 -1 -1 29928 -1 -1 46 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63468 32 32 408 320 1 202 110 17 17 289 -1 unnamed_device 23.3 MiB 3.55 1267 62.0 MiB 0.59 0.01 3.44779 -122.697 -3.44779 3.44779 0.97 0.000559207 0.000491719 0.034482 0.0288646 32 3190 25 6.87369e+06 642796 586450. 2029.24 8.63 0.244898 0.215055 25474 144626 -1 2540 23 1979 3319 287614 63633 0 0 287614 63633 3319 2505 0 0 12975 11377 0 0 21783 16707 0 0 3319 2714 0 0 122911 15658 0 0 123307 14672 0 0 3319 0 0 1340 1719 1801 12249 0 0 3.9144 3.9144 -151.085 -3.9144 0 0 744469. 2576.02 0.31 0.17 0.18 -1 -1 0.31 0.0348533 0.0313686 160 61 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 16.89 vpr 62.20 MiB 0.16 7172 -1 -1 1 0.01 -1 -1 29960 -1 -1 42 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63696 32 32 406 319 1 201 106 17 17 289 -1 unnamed_device 23.3 MiB 3.75 1077 62.2 MiB 0.85 0.01 2.77395 -101.364 -2.77395 2.77395 0.97 0.000401659 0.000327248 0.0452221 0.0376188 28 2623 18 6.87369e+06 586901 531479. 1839.03 8.37 0.215176 0.186885 24610 126494 -1 2177 20 1487 2233 149928 35006 0 0 149928 35006 2233 1639 0 0 8124 6972 0 0 12426 9844 0 0 2233 1757 0 0 63342 7329 0 0 61570 7465 0 0 2233 0 0 746 798 825 6670 0 0 2.95696 2.95696 -122.628 -2.95696 0 0 648988. 2245.63 0.27 0.07 0.15 -1 -1 0.27 0.0220605 0.0196529 157 61 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 11.75 vpr 61.17 MiB 0.15 6784 -1 -1 1 0.01 -1 -1 29948 -1 -1 20 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62640 29 32 291 242 1 155 81 17 17 289 -1 unnamed_device 22.6 MiB 2.31 771 61.2 MiB 0.65 0.01 2.9256 -97.6421 -2.9256 2.9256 0.89 0.000334037 0.000279407 0.0361589 0.0306725 32 1904 28 6.87369e+06 279477 586450. 2029.24 2.38 0.0975836 0.0845238 25474 144626 -1 1559 21 1255 1812 134925 31080 0 0 134925 31080 1812 1457 0 0 6933 6122 0 0 10531 8274 0 0 1812 1578 0 0 58051 6920 0 0 55786 6729 0 0 1812 0 0 557 633 561 4677 0 0 3.14961 3.14961 -119.058 -3.14961 0 0 744469. 2576.02 0.27 0.77 0.15 -1 -1 0.27 0.0210913 0.0188756 107 28 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 14.09 vpr 61.57 MiB 0.03 6812 -1 -1 1 0.02 -1 -1 29904 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63052 32 32 335 291 1 156 81 17 17 289 -1 unnamed_device 22.9 MiB 3.61 738 61.6 MiB 0.42 0.00 3.34714 -93.116 -3.34714 3.34714 0.99 0.00028383 0.000231805 0.0175175 0.0146218 34 1934 25 6.87369e+06 237555 618332. 2139.56 3.87 0.101608 0.0883378 25762 151098 -1 1526 17 671 933 67068 16464 0 0 67068 16464 933 748 0 0 3753 3175 0 0 5308 4413 0 0 933 780 0 0 28943 3539 0 0 27198 3809 0 0 933 0 0 262 215 220 2220 0 0 2.91065 2.91065 -109.04 -2.91065 0 0 787024. 2723.27 0.28 0.54 0.16 -1 -1 0.28 0.0181047 0.0162626 102 79 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 18.18 vpr 62.00 MiB 0.03 7040 -1 -1 1 0.01 -1 -1 29828 -1 -1 39 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63484 31 32 367 283 1 197 102 17 17 289 -1 unnamed_device 23.4 MiB 2.91 1096 62.0 MiB 0.77 0.01 3.31149 -115.155 -3.31149 3.31149 1.13 0.000508556 0.000421925 0.0397216 0.0338803 34 2541 24 6.87369e+06 544980 618332. 2139.56 8.81 0.229998 0.198545 25762 151098 -1 2175 21 1829 2971 203864 46815 0 0 203864 46815 2971 1988 0 0 11279 9637 0 0 16641 13206 0 0 2971 2199 0 0 89113 9344 0 0 80889 10441 0 0 2971 0 0 1142 1260 1581 10896 0 0 3.6811 3.6811 -142.044 -3.6811 0 0 787024. 2723.27 0.32 0.62 0.17 -1 -1 0.32 0.0257553 0.0229575 152 29 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 13.34 vpr 61.72 MiB 0.08 6924 -1 -1 1 0.01 -1 -1 29968 -1 -1 32 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63204 29 32 301 258 1 148 93 17 17 289 -1 unnamed_device 22.9 MiB 4.28 678 61.7 MiB 0.66 0.01 2.76725 -84.5484 -2.76725 2.76725 1.12 0.000297918 0.000239459 0.0341271 0.028621 28 1957 24 6.87369e+06 447163 531479. 1839.03 3.09 0.101331 0.0878109 24610 126494 -1 1644 22 1217 1880 162074 37882 0 0 162074 37882 1880 1505 0 0 7404 6349 0 0 11578 9451 0 0 1880 1556 0 0 71280 9118 0 0 68052 9903 0 0 1880 0 0 663 847 884 6730 0 0 3.15456 3.15456 -109.347 -3.15456 0 0 648988. 2245.63 0.24 0.53 0.15 -1 -1 0.24 0.0204849 0.0180258 108 48 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 14.71 vpr 61.64 MiB 0.08 7016 -1 -1 1 0.01 -1 -1 29844 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63124 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 22.9 MiB 3.92 913 61.6 MiB 0.74 0.01 2.9586 -110.383 -2.9586 2.9586 1.04 0.000408213 0.000347656 0.0383429 0.0324872 34 2392 28 6.87369e+06 223581 618332. 2139.56 4.39 0.150476 0.131407 25762 151098 -1 2088 25 1697 2760 256483 55677 0 0 256483 55677 2760 2252 0 0 10612 9514 0 0 17075 13271 0 0 2760 2387 0 0 115904 13943 0 0 107372 14310 0 0 2760 0 0 1063 1278 1343 9012 0 0 3.30791 3.30791 -134.781 -3.30791 0 0 787024. 2723.27 0.37 0.75 0.18 -1 -1 0.37 0.0258519 0.0229594 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 18.15 vpr 62.05 MiB 0.09 7224 -1 -1 1 0.01 -1 -1 30000 -1 -1 34 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63536 31 32 389 309 1 193 97 17 17 289 -1 unnamed_device 23.2 MiB 3.89 753 62.0 MiB 0.64 0.01 2.88345 -96.1055 -2.88345 2.88345 0.96 0.000510255 0.000429067 0.0326598 0.0277504 34 2143 42 6.87369e+06 475111 618332. 2139.56 8.09 0.244472 0.213699 25762 151098 -1 1632 19 1669 2422 147139 37371 0 0 147139 37371 2422 1845 0 0 9028 7726 0 0 13498 10602 0 0 2422 1961 0 0 59795 7989 0 0 59974 7248 0 0 2422 0 0 753 874 1037 7458 0 0 2.92396 2.92396 -114.807 -2.92396 0 0 787024. 2723.27 0.31 0.66 0.18 -1 -1 0.31 0.0277356 0.0251004 146 60 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 12.16 vpr 61.22 MiB 0.07 7104 -1 -1 1 0.01 -1 -1 29964 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62692 31 32 310 264 1 154 79 17 17 289 -1 unnamed_device 22.6 MiB 4.14 693 61.2 MiB 0.48 0.01 2.63557 -88.3925 -2.63557 2.63557 0.97 0.000449078 0.000379018 0.020804 0.0177917 32 2243 25 6.87369e+06 223581 586450. 2029.24 2.61 0.0837883 0.0731203 25474 144626 -1 1682 17 998 1558 123312 30714 0 0 123312 30714 1558 1318 0 0 6283 5580 0 0 9865 8024 0 0 1558 1371 0 0 51723 6713 0 0 52325 7708 0 0 1558 0 0 560 397 539 4402 0 0 2.99961 2.99961 -109.627 -2.99961 0 0 744469. 2576.02 0.32 0.31 0.18 -1 -1 0.32 0.0162599 0.0145458 103 49 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 15.34 vpr 61.79 MiB 0.14 7236 -1 -1 1 0.02 -1 -1 30108 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63276 32 32 384 308 1 190 100 17 17 289 -1 unnamed_device 23.0 MiB 4.01 1011 61.8 MiB 0.85 0.01 2.77825 -96.7977 -2.77825 2.77825 0.85 0.000435387 0.000357014 0.039653 0.0335264 34 2193 23 6.87369e+06 503058 618332. 2139.56 4.70 0.162414 0.141758 25762 151098 -1 1870 19 1329 2243 138064 34439 0 0 138064 34439 2243 1575 0 0 8523 7337 0 0 12429 9974 0 0 2243 1666 0 0 56814 7046 0 0 55812 6841 0 0 2243 0 0 914 1330 1494 10081 0 0 2.77566 2.77566 -113.943 -2.77566 0 0 787024. 2723.27 0.29 0.71 0.16 -1 -1 0.29 0.0224527 0.0200993 143 56 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 17.21 vpr 62.20 MiB 0.04 7188 -1 -1 1 0.02 -1 -1 29988 -1 -1 39 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63692 31 32 424 341 1 196 102 17 17 289 -1 unnamed_device 23.4 MiB 3.02 1013 62.2 MiB 0.66 0.01 2.86625 -103.225 -2.86625 2.86625 0.98 0.000511003 0.000428873 0.0305391 0.0256855 26 2617 24 6.87369e+06 544980 503264. 1741.40 7.36 0.185194 0.161704 24322 120374 -1 2417 25 2096 3188 311657 71106 0 0 311657 71106 3188 2330 0 0 12470 10743 0 0 20261 16032 0 0 3188 2568 0 0 137837 19789 0 0 134713 19644 0 0 3188 0 0 1092 1374 1485 10449 0 0 3.58076 3.58076 -133.791 -3.58076 0 0 618332. 2139.56 0.26 0.83 0.14 -1 -1 0.26 0.0342337 0.0305401 151 88 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 14.06 vpr 61.57 MiB 0.02 6804 -1 -1 1 0.01 -1 -1 29844 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63052 32 32 334 280 1 164 81 17 17 289 -1 unnamed_device 22.7 MiB 3.75 947 61.6 MiB 0.87 0.01 2.62457 -96.7726 -2.62457 2.62457 1.01 0.000414925 0.000357582 0.0364269 0.0311218 34 2312 21 6.87369e+06 237555 618332. 2139.56 4.05 0.146471 0.127775 25762 151098 -1 1959 19 1258 1991 163216 35929 0 0 163216 35929 1991 1560 0 0 7541 6532 0 0 11481 9138 0 0 1991 1625 0 0 70316 8772 0 0 69896 8302 0 0 1991 0 0 733 899 853 6094 0 0 3.06361 3.06361 -124.166 -3.06361 0 0 787024. 2723.27 0.30 0.58 0.13 -1 -1 0.30 0.0183139 0.0162161 110 54 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 13.81 vpr 61.50 MiB 0.03 7048 -1 -1 1 0.02 -1 -1 29928 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62972 32 32 340 284 1 166 80 17 17 289 -1 unnamed_device 22.8 MiB 4.37 756 61.5 MiB 0.95 0.01 2.9366 -101.777 -2.9366 2.9366 1.06 0.000409163 0.000342224 0.0515765 0.044915 32 2840 25 6.87369e+06 223581 586450. 2029.24 3.21 0.131342 0.11606 25474 144626 -1 2034 23 1533 2574 228709 53143 0 0 228709 53143 2574 2302 0 0 10303 9253 0 0 17442 13574 0 0 2574 2373 0 0 99675 12839 0 0 96141 12802 0 0 2574 0 0 1041 1269 1302 8770 0 0 3.15261 3.15261 -127.214 -3.15261 0 0 744469. 2576.02 0.27 0.52 0.20 -1 -1 0.27 0.0248291 0.0220768 112 60 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 20.01 vpr 61.84 MiB 0.09 7240 -1 -1 1 0.01 -1 -1 30224 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63320 32 32 408 320 1 202 104 17 17 289 -1 unnamed_device 23.1 MiB 4.83 1180 61.8 MiB 0.98 0.01 3.56029 -125.74 -3.56029 3.56029 0.95 0.00042276 0.000347121 0.0444855 0.0381727 30 2744 21 6.87369e+06 558954 556674. 1926.21 8.27 0.191867 0.167888 25186 138497 -1 2217 22 1573 2406 153198 35843 0 0 153198 35843 2406 1683 0 0 8252 6951 0 0 11800 9239 0 0 2406 1791 0 0 63349 8093 0 0 64985 8086 0 0 2406 0 0 833 1059 1048 8300 0 0 3.606 3.606 -141.726 -3.606 0 0 706193. 2443.58 0.27 0.74 0.14 -1 -1 0.27 0.0299338 0.0268756 157 49 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 18.45 vpr 61.81 MiB 0.02 7072 -1 -1 1 0.01 -1 -1 29920 -1 -1 34 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63296 29 32 371 297 1 183 95 17 17 289 -1 unnamed_device 23.1 MiB 3.37 748 61.8 MiB 0.78 0.01 2.74095 -85.5651 -2.74095 2.74095 1.02 0.000560081 0.000474541 0.0288728 0.024685 36 2142 24 6.87369e+06 475111 648988. 2245.63 9.18 0.203456 0.17708 26050 158493 -1 1635 22 1484 2230 127450 33818 0 0 127450 33818 2230 1669 0 0 8038 6911 0 0 11887 9643 0 0 2230 1779 0 0 49378 7256 0 0 53687 6560 0 0 2230 0 0 746 1034 1088 8276 0 0 2.96496 2.96496 -107.184 -2.96496 0 0 828058. 2865.25 0.27 0.57 0.14 -1 -1 0.27 0.0258758 0.0231343 141 54 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 22.30 vpr 62.23 MiB 0.04 7084 -1 -1 1 0.02 -1 -1 30204 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63728 32 32 470 382 1 202 104 17 17 289 -1 unnamed_device 23.5 MiB 7.10 1011 62.2 MiB 0.70 0.01 3.45699 -121.75 -3.45699 3.45699 1.13 0.000561323 0.000474135 0.0457392 0.0389103 32 2942 25 6.87369e+06 558954 586450. 2029.24 8.42 0.249911 0.21752 25474 144626 -1 2285 22 2071 3419 257532 60243 0 0 257532 60243 3419 2383 0 0 13763 11987 0 0 21636 17164 0 0 3419 2596 0 0 115482 11964 0 0 99813 14149 0 0 3419 0 0 1348 1750 2008 13191 0 0 3.7984 3.7984 -147.706 -3.7984 0 0 744469. 2576.02 0.27 1.07 0.14 -1 -1 0.27 0.0277865 0.0244573 157 117 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 10.85 vpr 61.01 MiB 0.03 6748 -1 -1 1 0.01 -1 -1 29856 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62476 31 32 261 214 1 155 79 17 17 289 -1 unnamed_device 22.6 MiB 1.05 755 61.0 MiB 0.79 0.01 2.44612 -86.2497 -2.44612 2.44612 1.09 0.000311564 0.000258256 0.0275018 0.0241053 32 2251 25 6.87369e+06 223581 586450. 2029.24 3.55 0.0862986 0.0761455 25474 144626 -1 1783 23 1437 2270 209921 47369 0 0 209921 47369 2270 1760 0 0 9004 8064 0 0 15460 12163 0 0 2270 1811 0 0 89820 12538 0 0 91097 11033 0 0 2270 0 0 833 922 950 6843 0 0 2.93826 2.93826 -114.559 -2.93826 0 0 744469. 2576.02 0.30 0.42 0.16 -1 -1 0.30 0.0224692 0.02002 104 -1 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 18.03 vpr 62.26 MiB 0.03 7136 -1 -1 1 0.02 -1 -1 29864 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 419 339 1 194 100 17 17 289 -1 unnamed_device 23.4 MiB 3.04 946 62.3 MiB 1.16 0.02 3.62144 -112.821 -3.62144 3.62144 1.09 0.00106683 0.000978662 0.0453824 0.0387621 32 2883 32 6.87369e+06 503058 586450. 2029.24 7.85 0.236924 0.206168 25474 144626 -1 2082 22 1691 2427 189240 47882 0 0 189240 47882 2427 1975 0 0 9608 8307 0 0 15747 12420 0 0 2427 2091 0 0 81469 11497 0 0 77562 11592 0 0 2427 0 0 736 907 985 7029 0 0 4.26996 4.26996 -144.416 -4.26996 0 0 744469. 2576.02 0.28 0.81 0.16 -1 -1 0.28 0.0305794 0.0271273 149 89 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 17.06 vpr 61.98 MiB 0.04 6824 -1 -1 1 0.01 -1 -1 29812 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63472 32 32 377 319 1 168 80 17 17 289 -1 unnamed_device 23.1 MiB 5.78 903 62.0 MiB 0.76 0.02 2.9898 -110.69 -2.9898 2.9898 0.99 0.000355298 0.000298515 0.0329739 0.0279505 34 2270 21 6.87369e+06 223581 618332. 2139.56 4.55 0.148587 0.129234 25762 151098 -1 1913 23 1604 2312 191360 43362 0 0 191360 43362 2312 1919 0 0 8909 7813 0 0 13829 11002 0 0 2312 1988 0 0 84511 10159 0 0 79487 10481 0 0 2312 0 0 708 773 836 6179 0 0 3.17461 3.17461 -129.463 -3.17461 0 0 787024. 2723.27 0.29 0.83 0.16 -1 -1 0.29 0.0281698 0.0251439 114 93 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 18.74 vpr 62.09 MiB 0.04 6952 -1 -1 1 0.02 -1 -1 29956 -1 -1 39 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 402 317 1 199 103 17 17 289 -1 unnamed_device 23.4 MiB 4.06 1041 62.1 MiB 0.65 0.01 2.88825 -104.585 -2.88825 2.88825 1.00 0.000554012 0.000455572 0.0316439 0.0266941 34 2427 20 6.87369e+06 544980 618332. 2139.56 8.39 0.235786 0.206403 25762 151098 -1 1972 21 1562 2275 153593 36187 0 0 153593 36187 2275 1658 0 0 8797 7489 0 0 12978 10562 0 0 2275 1792 0 0 67917 6666 0 0 59351 8020 0 0 2275 0 0 713 1101 989 8042 0 0 2.98996 2.98996 -122.621 -2.98996 0 0 787024. 2723.27 0.31 0.51 0.17 -1 -1 0.31 0.0273757 0.0245663 153 59 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 21.37 vpr 62.07 MiB 0.03 7232 -1 -1 1 0.02 -1 -1 30216 -1 -1 47 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63556 32 32 501 383 1 236 111 17 17 289 -1 unnamed_device 23.8 MiB 6.20 1249 62.1 MiB 1.16 0.01 4.02754 -139.472 -4.02754 4.02754 0.86 0.000805365 0.000685264 0.0678111 0.0589938 32 3488 29 6.87369e+06 656770 586450. 2029.24 8.73 0.321718 0.283937 25474 144626 -1 2755 22 2520 4054 340738 76219 0 0 340738 76219 4054 2932 0 0 15819 13934 0 0 26350 20445 0 0 4054 3200 0 0 145377 18071 0 0 145084 17637 0 0 4054 0 0 1534 2721 2499 17726 0 0 4.82285 4.82285 -177.226 -4.82285 0 0 744469. 2576.02 0.25 0.83 0.17 -1 -1 0.25 0.0393744 0.0357957 190 81 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 15.54 vpr 61.07 MiB 0.02 6744 -1 -1 1 0.01 -1 -1 29756 -1 -1 14 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62532 30 32 249 232 1 118 76 17 17 289 -1 unnamed_device 22.7 MiB 2.98 686 61.1 MiB 0.52 0.01 2.42836 -80.8009 -2.42836 2.42836 1.05 0.000278894 0.000228524 0.0171782 0.0145053 30 1443 19 6.87369e+06 195634 556674. 1926.21 6.25 0.113719 0.0990627 25186 138497 -1 1252 19 609 869 57126 13188 0 0 57126 13188 869 658 0 0 3046 2494 0 0 4052 3355 0 0 869 684 0 0 26162 2656 0 0 22128 3341 0 0 869 0 0 260 161 278 2160 0 0 2.13917 2.13917 -90.4736 -2.13917 0 0 706193. 2443.58 0.24 0.63 0.17 -1 -1 0.24 0.0148441 0.0130733 72 51 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 17.89 vpr 61.38 MiB 0.03 7012 -1 -1 1 0.02 -1 -1 29840 -1 -1 18 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62848 30 32 299 247 1 158 80 17 17 289 -1 unnamed_device 22.8 MiB 1.58 713 61.4 MiB 0.21 0.00 2.9678 -99.1594 -2.9678 2.9678 0.95 0.000315595 0.000258593 0.0190677 0.0155974 28 2037 47 6.87369e+06 251529 531479. 1839.03 10.34 0.174822 0.152422 24610 126494 -1 1697 19 1396 1977 149886 34946 0 0 149886 34946 1977 1635 0 0 7296 6164 0 0 10701 8624 0 0 1977 1678 0 0 62677 8634 0 0 65258 8211 0 0 1977 0 0 581 668 692 5304 0 0 3.27791 3.27791 -124.275 -3.27791 0 0 648988. 2245.63 0.26 0.57 0.16 -1 -1 0.26 0.0224277 0.0201529 109 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 13.51 vpr 61.43 MiB 0.03 6952 -1 -1 1 0.01 -1 -1 29716 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62908 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 22.8 MiB 1.67 763 61.4 MiB 0.29 0.00 2.77395 -99.9579 -2.77395 2.77395 1.09 0.000500518 0.000439194 0.0194544 0.0167332 34 2424 23 6.87369e+06 223581 618332. 2139.56 5.84 0.136139 0.119974 25762 151098 -1 1968 22 1646 2945 242501 55161 0 0 242501 55161 2945 2325 0 0 11395 10455 0 0 18224 14226 0 0 2945 2395 0 0 112553 11540 0 0 94439 14220 0 0 2945 0 0 1299 1561 1347 10550 0 0 2.96796 2.96796 -124.582 -2.96796 0 0 787024. 2723.27 0.28 0.58 0.18 -1 -1 0.28 0.0222066 0.0197325 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 14.37 vpr 61.12 MiB 0.03 6860 -1 -1 1 0.01 -1 -1 29984 -1 -1 37 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62584 25 32 259 222 1 139 94 17 17 289 -1 unnamed_device 22.6 MiB 0.99 707 61.1 MiB 0.67 0.00 2.80025 -79.575 -2.80025 2.80025 1.08 0.000290427 0.000238594 0.0248701 0.0207347 28 1728 23 6.87369e+06 517032 531479. 1839.03 7.57 0.140389 0.12177 24610 126494 -1 1619 23 1235 2092 172859 38411 0 0 172859 38411 2092 1444 0 0 7908 7057 0 0 12314 9643 0 0 2092 1568 0 0 74934 9438 0 0 73519 9261 0 0 2092 0 0 857 1072 1271 8524 0 0 2.92096 2.92096 -98.0628 -2.92096 0 0 648988. 2245.63 0.22 0.65 0.14 -1 -1 0.22 0.0212171 0.0187978 106 19 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 20.49 vpr 62.04 MiB 0.13 7092 -1 -1 1 0.03 -1 -1 30152 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63532 32 32 433 347 1 200 85 17 17 289 -1 unnamed_device 23.4 MiB 4.47 1088 62.0 MiB 1.12 0.01 3.39279 -121.23 -3.39279 3.39279 1.13 0.000479164 0.000393998 0.0537016 0.046176 34 3005 25 6.87369e+06 293451 618332. 2139.56 9.68 0.286091 0.251559 25762 151098 -1 2317 20 1869 3361 244778 57209 0 0 244778 57209 3361 2330 0 0 13003 11822 0 0 20446 16269 0 0 3361 2433 0 0 107877 11273 0 0 96730 13082 0 0 3361 0 0 1492 1751 1378 11612 0 0 3.7341 3.7341 -143.497 -3.7341 0 0 787024. 2723.27 0.30 0.48 0.15 -1 -1 0.30 0.0313252 0.0284092 145 84 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 18.69 vpr 62.25 MiB 0.03 7052 -1 -1 1 0.02 -1 -1 29916 -1 -1 38 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 423 341 1 195 101 17 17 289 -1 unnamed_device 23.4 MiB 3.17 990 62.2 MiB 0.81 0.01 2.87245 -99.0276 -2.87245 2.87245 1.02 0.000500837 0.000406385 0.0307379 0.0257651 26 2617 38 6.87369e+06 531006 503264. 1741.40 9.00 0.207127 0.181576 24322 120374 -1 2258 23 2172 3428 258853 60075 0 0 258853 60075 3428 2463 0 0 13189 11359 0 0 21253 16422 0 0 3428 2643 0 0 110580 13494 0 0 106975 13694 0 0 3428 0 0 1256 1673 1794 11791 0 0 3.21376 3.21376 -126.123 -3.21376 0 0 618332. 2139.56 0.22 0.87 0.11 -1 -1 0.22 0.0310409 0.0274961 150 88 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 14.83 vpr 61.85 MiB 0.02 7096 -1 -1 1 0.02 -1 -1 30244 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63332 32 32 439 351 1 295 93 17 17 289 -1 unnamed_device 23.1 MiB 2.13 1469 61.8 MiB 0.77 0.01 4.05304 -143.181 -4.05304 4.05304 1.02 0.000472187 0.00039066 0.0509405 0.043264 34 3597 35 6.89349e+06 408721 618332. 2139.56 6.43 0.209524 0.184375 25762 151098 -1 2918 20 2535 3113 211601 48752 0 0 211601 48752 3113 2796 0 0 11193 9128 0 0 16781 13122 0 0 3113 2857 0 0 92376 9854 0 0 85025 10995 0 0 3113 0 0 578 758 580 6623 0 0 4.53545 4.53545 -168.996 -4.53545 0 0 787024. 2723.27 0.24 0.59 0.17 -1 -1 0.24 0.0330604 0.0302481 192 80 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 14.63 vpr 61.88 MiB 0.03 7176 -1 -1 1 0.02 -1 -1 30088 -1 -1 29 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63360 30 32 412 333 1 262 91 17 17 289 -1 unnamed_device 23.0 MiB 2.18 1319 61.9 MiB 0.73 0.01 4.19467 -132.556 -4.19467 4.19467 1.14 0.000686881 0.000585574 0.0386171 0.0322797 34 3475 27 6.89349e+06 408721 618332. 2139.56 5.76 0.151232 0.13271 25762 151098 -1 2584 22 1984 2771 193677 44414 0 0 193677 44414 2771 2338 0 0 10212 8308 0 0 14749 11618 0 0 2771 2472 0 0 80948 10246 0 0 82226 9432 0 0 2771 0 0 787 800 567 6555 0 0 4.61008 4.61008 -155.87 -4.61008 0 0 787024. 2723.27 0.26 0.56 0.17 -1 -1 0.26 0.029766 0.0268769 177 78 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 15.88 vpr 61.75 MiB 0.03 7016 -1 -1 1 0.02 -1 -1 30036 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63232 32 32 388 310 1 253 89 17 17 289 -1 unnamed_device 23.0 MiB 2.72 1231 61.8 MiB 0.45 0.01 3.18936 -113.706 -3.18936 3.18936 0.98 0.000529028 0.000451489 0.022641 0.0191138 34 3374 25 6.89349e+06 352346 618332. 2139.56 6.83 0.163081 0.138304 25762 151098 -1 2720 22 1870 2344 171463 39041 0 0 171463 39041 2344 1964 0 0 8648 7001 0 0 12868 10025 0 0 2344 2005 0 0 69662 9682 0 0 75597 8364 0 0 2344 0 0 474 447 561 5140 0 0 3.6753 3.6753 -141.994 -3.6753 0 0 787024. 2723.27 0.28 0.55 0.17 -1 -1 0.28 0.0260376 0.023195 167 50 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 14.37 vpr 61.56 MiB 0.03 7044 -1 -1 1 0.01 -1 -1 30020 -1 -1 25 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63036 29 32 347 271 1 209 86 17 17 289 -1 unnamed_device 22.9 MiB 2.01 915 61.6 MiB 0.28 0.00 3.65595 -111.993 -3.65595 3.65595 0.99 0.00042336 0.000354678 0.0321949 0.0268526 34 3087 42 6.89349e+06 352346 618332. 2139.56 6.14 0.148759 0.129933 25762 151098 -1 1926 21 1750 2694 178844 43475 0 0 178844 43475 2694 2219 0 0 9984 8138 0 0 14696 11509 0 0 2694 2320 0 0 74185 9711 0 0 74591 9578 0 0 2694 0 0 944 1089 1057 8156 0 0 3.87966 3.87966 -134.386 -3.87966 0 0 787024. 2723.27 0.31 0.82 0.18 -1 -1 0.31 0.0261742 0.023467 148 25 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 17.92 vpr 61.79 MiB 0.19 6844 -1 -1 1 0.02 -1 -1 29896 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63272 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 23.2 MiB 3.16 1297 61.8 MiB 0.78 0.01 4.12824 -141.637 -4.12824 4.12824 1.00 0.000396453 0.000325743 0.0385018 0.032471 34 3431 44 6.89349e+06 338252 618332. 2139.56 8.33 0.199794 0.167824 25762 151098 -1 2724 23 2372 4170 318394 70306 0 0 318394 70306 4170 3248 0 0 15037 12542 0 0 24238 18308 0 0 4170 3461 0 0 139194 15502 0 0 131585 17245 0 0 4170 0 0 1798 1821 1910 14199 0 0 4.52755 4.52755 -169.152 -4.52755 0 0 787024. 2723.27 0.25 0.70 0.19 -1 -1 0.25 0.0324508 0.0291348 163 31 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 12.14 vpr 62.06 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 29936 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 403 317 1 257 105 17 17 289 -1 unnamed_device 23.4 MiB 2.47 1345 62.1 MiB 0.59 0.01 3.57159 -118.017 -3.57159 3.57159 1.04 0.000484814 0.000402779 0.0413728 0.0345346 34 3384 30 6.89349e+06 577847 618332. 2139.56 3.71 0.213949 0.18975 25762 151098 -1 2674 23 1885 2993 209257 46211 0 0 209257 46211 2993 2125 0 0 10781 8780 0 0 16217 12483 0 0 2993 2247 0 0 93188 9632 0 0 83085 10944 0 0 2993 0 0 1108 1266 1299 10080 0 0 3.45265 3.45265 -136.56 -3.45265 0 0 787024. 2723.27 0.26 0.98 0.16 -1 -1 0.26 0.0622901 0.0535142 179 61 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 15.88 vpr 61.02 MiB 0.02 6944 -1 -1 1 0.02 -1 -1 29944 -1 -1 21 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62484 27 32 275 232 1 165 80 17 17 289 -1 unnamed_device 22.6 MiB 2.04 857 61.0 MiB 0.30 0.00 3.0242 -92.5228 -3.0242 3.0242 1.07 0.000324064 0.000253755 0.0257588 0.0210519 36 1852 22 6.89349e+06 295971 648988. 2245.63 6.90 0.195786 0.173384 26050 158493 -1 1682 17 1093 1621 112190 25612 0 0 112190 25612 1621 1308 0 0 5841 4772 0 0 8498 6870 0 0 1621 1360 0 0 46480 6014 0 0 48129 5288 0 0 1621 0 0 528 663 420 4614 0 0 2.98851 2.98851 -107.963 -2.98851 0 0 828058. 2865.25 0.27 0.74 0.19 -1 -1 0.27 0.0169426 0.015363 111 26 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 7.39 vpr 61.43 MiB 0.03 6912 -1 -1 1 0.01 -1 -1 29880 -1 -1 35 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62900 31 32 319 244 1 187 98 17 17 289 -1 unnamed_device 22.9 MiB 1.57 1020 61.4 MiB 0.17 0.00 2.6641 -91.3157 -2.6641 2.6641 1.14 0.000357484 0.000299141 0.020658 0.0170857 28 2485 16 6.89349e+06 493284 531479. 1839.03 1.66 0.0877787 0.0770329 24610 126494 -1 2253 21 1309 2103 152472 34564 0 0 152472 34564 2103 1471 0 0 7503 5971 0 0 11423 8815 0 0 2103 1574 0 0 65732 8339 0 0 63608 8394 0 0 2103 0 0 794 1059 1236 8504 0 0 2.59831 2.59831 -107.229 -2.59831 0 0 648988. 2245.63 0.27 0.09 0.14 -1 -1 0.27 0.0213795 0.0190107 141 -1 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 9.86 vpr 61.50 MiB 0.02 6888 -1 -1 1 0.01 -1 -1 29848 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62976 31 32 340 294 1 225 84 17 17 289 -1 unnamed_device 22.9 MiB 2.47 1102 61.5 MiB 0.30 0.00 2.93075 -100.61 -2.93075 2.93075 1.01 0.000336736 0.00027714 0.0287915 0.0236994 34 2799 22 6.89349e+06 295971 618332. 2139.56 2.45 0.131789 0.113623 25762 151098 -1 2133 22 1604 1923 136952 31974 0 0 136952 31974 1923 1700 0 0 7270 5839 0 0 10814 8696 0 0 1923 1731 0 0 57988 7298 0 0 57034 6710 0 0 1923 0 0 319 355 225 3460 0 0 3.21721 3.21721 -121.078 -3.21721 0 0 787024. 2723.27 0.40 0.72 0.18 -1 -1 0.40 0.0242272 0.0217807 140 81 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 9.90 vpr 61.55 MiB 0.02 6768 -1 -1 1 0.01 -1 -1 29816 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63032 32 32 315 257 1 193 83 17 17 289 -1 unnamed_device 22.9 MiB 2.63 907 61.6 MiB 0.28 0.00 2.96065 -107.361 -2.96065 2.96065 1.00 0.000321703 0.000265815 0.0276325 0.0229827 34 2356 20 6.89349e+06 267783 618332. 2139.56 2.71 0.12483 0.108368 25762 151098 -1 1942 19 1685 2192 160260 36346 0 0 160260 36346 2192 1865 0 0 8021 6530 0 0 11621 9282 0 0 2192 1894 0 0 71793 7962 0 0 64441 8813 0 0 2192 0 0 507 528 496 4737 0 0 3.11426 3.11426 -130.525 -3.11426 0 0 787024. 2723.27 0.35 0.66 0.17 -1 -1 0.35 0.0235046 0.0211928 127 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 10.08 vpr 61.46 MiB 0.02 6972 -1 -1 1 0.01 -1 -1 29976 -1 -1 21 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62936 30 32 328 276 1 203 83 17 17 289 -1 unnamed_device 23.0 MiB 2.89 1048 61.5 MiB 0.19 0.00 3.43724 -113.319 -3.43724 3.43724 1.07 0.000175488 0.000141471 0.0249646 0.0204766 34 2735 38 6.89349e+06 295971 618332. 2139.56 2.88 0.159709 0.140085 25762 151098 -1 2166 21 1679 2225 204468 41801 0 0 204468 41801 2225 1926 0 0 8033 6527 0 0 11758 9139 0 0 2225 1983 0 0 91580 11488 0 0 88647 10738 0 0 2225 0 0 546 547 471 4881 0 0 3.6114 3.6114 -136.533 -3.6114 0 0 787024. 2723.27 0.28 0.55 0.18 -1 -1 0.28 0.0257642 0.0233476 135 58 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 8.10 vpr 61.77 MiB 0.02 6808 -1 -1 1 0.02 -1 -1 29988 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63248 32 32 332 281 1 215 84 17 17 289 -1 unnamed_device 23.0 MiB 1.97 1144 61.8 MiB 0.23 0.00 3.0432 -104.092 -3.0432 3.0432 1.08 0.000298344 0.000247884 0.0306043 0.0251672 34 2444 31 6.89349e+06 281877 618332. 2139.56 2.42 0.132872 0.114082 25762 151098 -1 2057 16 1242 1428 93081 22734 0 0 93081 22734 1428 1282 0 0 5497 4650 0 0 7991 6507 0 0 1428 1302 0 0 38355 4545 0 0 38382 4448 0 0 1428 0 0 186 87 144 2237 0 0 2.90551 2.90551 -118.637 -2.90551 0 0 787024. 2723.27 0.25 0.17 0.18 -1 -1 0.25 0.0188483 0.0171325 135 57 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 10.01 vpr 62.01 MiB 0.03 6980 -1 -1 1 0.01 -1 -1 29836 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 387 306 1 239 89 17 17 289 -1 unnamed_device 23.3 MiB 2.10 1152 62.0 MiB 0.20 0.01 3.35709 -115.476 -3.35709 3.35709 1.00 0.000395274 0.000323098 0.0202816 0.0168603 34 2759 24 6.89349e+06 352346 618332. 2139.56 3.19 0.157843 0.138606 25762 151098 -1 2316 19 1653 2245 156921 35930 0 0 156921 35930 2245 1865 0 0 8241 6621 0 0 12188 9597 0 0 2245 1899 0 0 73029 6891 0 0 58973 9057 0 0 2245 0 0 592 628 419 5120 0 0 3.3694 3.3694 -133.715 -3.3694 0 0 787024. 2723.27 0.34 0.69 0.17 -1 -1 0.34 0.0262925 0.0236107 161 55 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 17.96 vpr 61.96 MiB 0.02 7152 -1 -1 1 0.02 -1 -1 29960 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63448 32 32 408 320 1 264 92 17 17 289 -1 unnamed_device 23.3 MiB 2.71 1237 62.0 MiB 0.33 0.01 4.22854 -144.427 -4.22854 4.22854 1.08 0.00045781 0.000382741 0.0389902 0.0326226 36 3246 35 6.89349e+06 394628 648988. 2245.63 8.70 0.272896 0.232933 26050 158493 -1 2570 21 2260 2974 201338 46441 0 0 201338 46441 2974 2454 0 0 10497 8575 0 0 15308 12096 0 0 2974 2630 0 0 86211 10198 0 0 83374 10488 0 0 2974 0 0 714 618 792 6856 0 0 4.73405 4.73405 -170.307 -4.73405 0 0 828058. 2865.25 0.27 0.90 0.18 -1 -1 0.27 0.0257767 0.023212 177 60 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.61 vpr 60.99 MiB 0.02 6892 -1 -1 1 0.02 -1 -1 29880 -1 -1 21 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62456 29 32 276 232 1 171 82 17 17 289 -1 unnamed_device 22.5 MiB 1.57 859 61.0 MiB 0.33 0.00 2.84265 -93.58 -2.84265 2.84265 0.98 0.000245868 0.000195299 0.0279898 0.023326 34 2036 21 6.89349e+06 295971 618332. 2139.56 1.71 0.102271 0.0869717 25762 151098 -1 1756 20 1030 1431 102539 23311 0 0 102539 23311 1431 1140 0 0 5313 4354 0 0 7991 6329 0 0 1431 1369 0 0 44409 5051 0 0 41964 5068 0 0 1431 0 0 401 385 243 3262 0 0 2.66756 2.66756 -105.384 -2.66756 0 0 787024. 2723.27 0.29 0.57 0.17 -1 -1 0.29 0.0199952 0.0179557 112 21 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 10.64 vpr 61.68 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 29876 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63164 32 32 402 316 1 256 89 17 17 289 -1 unnamed_device 22.9 MiB 2.95 1337 61.7 MiB 0.28 0.01 3.54049 -124.249 -3.54049 3.54049 1.08 0.000446834 0.000364849 0.0403774 0.0338499 36 3302 21 6.89349e+06 352346 648988. 2245.63 2.81 0.157501 0.137754 26050 158493 -1 2823 21 2364 3794 270535 60027 0 0 270535 60027 3794 2932 0 0 13644 11175 0 0 19737 15583 0 0 3794 3102 0 0 124379 12204 0 0 105187 15031 0 0 3794 0 0 1430 1776 1806 12778 0 0 3.588 3.588 -143.958 -3.588 0 0 828058. 2865.25 0.38 0.60 0.25 -1 -1 0.38 0.0283081 0.0254252 174 60 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 8.09 vpr 61.71 MiB 0.03 6996 -1 -1 1 0.03 -1 -1 29912 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63196 32 32 384 304 1 236 89 17 17 289 -1 unnamed_device 23.0 MiB 1.18 1152 61.7 MiB 0.81 0.01 2.93865 -104.924 -2.93865 2.93865 1.03 0.000465752 0.000393429 0.0426887 0.0365255 34 2845 44 6.89349e+06 352346 618332. 2139.56 2.30 0.179331 0.156543 25762 151098 -1 2326 21 1916 2399 180722 41828 0 0 180722 41828 2399 2124 0 0 9069 7386 0 0 13134 10588 0 0 2399 2185 0 0 77732 9718 0 0 75989 9827 0 0 2399 0 0 483 531 481 4936 0 0 3.22491 3.22491 -124.505 -3.22491 0 0 787024. 2723.27 0.30 0.49 0.17 -1 -1 0.30 0.0279146 0.0252727 160 54 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 8.68 vpr 61.59 MiB 0.04 6684 -1 -1 1 0.02 -1 -1 29808 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63072 32 32 340 285 1 224 85 17 17 289 -1 unnamed_device 22.7 MiB 2.60 1202 61.6 MiB 0.35 0.01 2.91975 -105.679 -2.91975 2.91975 0.99 0.000575441 0.000489163 0.0280943 0.0229217 34 2717 21 6.89349e+06 295971 618332. 2139.56 1.92 0.114318 0.0973667 25762 151098 -1 2204 20 1474 1993 131743 30704 0 0 131743 30704 1993 1644 0 0 7342 5804 0 0 10836 8556 0 0 1993 1705 0 0 57329 6094 0 0 52250 6901 0 0 1993 0 0 519 606 643 5241 0 0 2.66796 2.66796 -116.438 -2.66796 0 0 787024. 2723.27 0.26 0.36 0.18 -1 -1 0.26 0.0235315 0.0212798 139 62 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 7.17 vpr 60.74 MiB 0.02 6832 -1 -1 1 0.01 -1 -1 29716 -1 -1 15 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62196 30 32 229 211 1 142 77 17 17 289 -1 unnamed_device 22.3 MiB 1.31 753 60.7 MiB 0.61 0.00 2.41926 -82.029 -2.41926 2.41926 1.17 0.000265151 0.000216027 0.019293 0.0162366 34 1623 20 6.89349e+06 211408 618332. 2139.56 1.82 0.0812999 0.0696106 25762 151098 -1 1485 17 684 821 61070 14109 0 0 61070 14109 821 695 0 0 3079 2416 0 0 4600 3640 0 0 821 713 0 0 25517 3418 0 0 26232 3227 0 0 821 0 0 137 113 143 1488 0 0 2.22577 2.22577 -93.3767 -2.22577 0 0 787024. 2723.27 0.33 0.05 0.18 -1 -1 0.33 0.0117588 0.0104044 85 29 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 8.87 vpr 61.45 MiB 0.02 6868 -1 -1 1 0.01 -1 -1 29960 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62920 31 32 337 282 1 217 85 17 17 289 -1 unnamed_device 22.7 MiB 1.88 1074 61.4 MiB 0.89 0.01 3.39499 -119.405 -3.39499 3.39499 1.04 0.000331439 0.000267527 0.0390811 0.0327375 34 2565 21 6.89349e+06 310065 618332. 2139.56 1.90 0.137857 0.118483 25762 151098 -1 2102 19 1506 2005 150768 33492 0 0 150768 33492 2005 1679 0 0 7484 6055 0 0 11134 8914 0 0 2005 1709 0 0 68592 7009 0 0 59548 8126 0 0 2005 0 0 499 317 506 4623 0 0 3.4245 3.4245 -135.133 -3.4245 0 0 787024. 2723.27 0.33 0.64 0.18 -1 -1 0.33 0.0207517 0.0185356 142 55 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 7.77 vpr 61.90 MiB 0.02 6952 -1 -1 1 0.01 -1 -1 29844 -1 -1 40 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63388 32 32 367 284 1 228 104 17 17 289 -1 unnamed_device 23.2 MiB 1.23 1140 61.9 MiB 1.16 0.02 3.64283 -126.167 -3.64283 3.64283 1.12 0.0005282 0.000453182 0.0460734 0.0390997 34 2762 19 6.89349e+06 563754 618332. 2139.56 2.10 0.150879 0.13179 25762 151098 -1 2285 21 1973 2801 224378 47619 0 0 224378 47619 2801 2254 0 0 10464 8402 0 0 15393 12257 0 0 2801 2389 0 0 102489 10165 0 0 90430 12152 0 0 2801 0 0 828 912 869 8002 0 0 4.08444 4.08444 -148.41 -4.08444 0 0 787024. 2723.27 0.31 0.09 0.18 -1 -1 0.31 0.0197386 0.0175504 166 31 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 10.10 vpr 61.95 MiB 0.03 7048 -1 -1 1 0.02 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63440 32 32 461 376 1 309 95 17 17 289 -1 unnamed_device 23.2 MiB 1.73 1550 62.0 MiB 0.86 0.01 3.45522 -119.44 -3.45522 3.45522 1.10 0.000864543 0.000744003 0.0490649 0.0421377 34 3725 41 6.89349e+06 436909 618332. 2139.56 2.81 0.211291 0.185336 25762 151098 -1 2955 22 2235 2541 216138 45984 0 0 216138 45984 2541 2285 0 0 9259 7451 0 0 13942 10907 0 0 2541 2394 0 0 99020 10798 0 0 88835 12149 0 0 2541 0 0 306 390 340 4189 0 0 3.7896 3.7896 -145.839 -3.7896 0 0 787024. 2723.27 0.34 0.31 0.17 -1 -1 0.34 0.0359767 0.0326012 201 108 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 9.67 vpr 60.76 MiB 0.02 6768 -1 -1 1 0.02 -1 -1 29872 -1 -1 18 26 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62220 26 32 205 193 1 129 76 17 17 289 -1 unnamed_device 22.4 MiB 1.63 709 60.8 MiB 0.84 0.01 2.22087 -67.8511 -2.22087 2.22087 1.11 0.000285973 0.000243645 0.0230112 0.0192923 32 1557 19 6.89349e+06 253689 586450. 2029.24 3.50 0.0849334 0.0724475 25474 144626 -1 1355 18 621 785 66837 14480 0 0 66837 14480 785 696 0 0 3047 2449 0 0 4607 3612 0 0 785 717 0 0 29208 3524 0 0 28405 3482 0 0 785 0 0 164 119 201 1639 0 0 2.03676 2.03676 -80.0394 -2.03676 0 0 744469. 2576.02 0.27 0.07 0.15 -1 -1 0.27 0.0123897 0.0109727 77 21 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 11.52 vpr 61.45 MiB 0.02 6920 -1 -1 1 0.01 -1 -1 29716 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62924 32 32 334 252 1 196 85 17 17 289 -1 unnamed_device 23.0 MiB 1.47 926 61.4 MiB 0.64 0.01 3.25074 -111.065 -3.25074 3.25074 1.10 0.000598341 0.000521101 0.0348145 0.0294387 34 2730 29 6.89349e+06 295971 618332. 2139.56 5.06 0.220732 0.194713 25762 151098 -1 2111 21 1693 2888 226504 51488 0 0 226504 51488 2888 2411 0 0 10488 8787 0 0 16739 12890 0 0 2888 2529 0 0 96871 12399 0 0 96630 12472 0 0 2888 0 0 1195 1608 1291 10254 0 0 3.85235 3.85235 -142.854 -3.85235 0 0 787024. 2723.27 0.32 0.20 0.17 -1 -1 0.32 0.0312575 0.0244081 141 -1 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 7.92 vpr 60.51 MiB 0.02 6440 -1 -1 1 0.01 -1 -1 29788 -1 -1 12 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61960 32 32 200 183 1 122 76 17 17 289 -1 unnamed_device 21.9 MiB 0.40 561 60.5 MiB 0.07 0.00 1.93068 -71.8214 -1.93068 1.93068 1.07 0.000217819 0.00017588 0.00924026 0.00756878 30 1357 41 6.89349e+06 169126 556674. 1926.21 4.23 0.104225 0.0915918 25186 138497 -1 1228 21 685 1002 60980 15894 0 0 60980 15894 1002 823 0 0 3560 3011 0 0 4802 3948 0 0 1002 880 0 0 24381 3562 0 0 26233 3670 0 0 1002 0 0 317 167 398 2728 0 0 1.89046 1.89046 -84.5346 -1.89046 0 0 706193. 2443.58 0.27 0.12 0.14 -1 -1 0.27 0.0161349 0.0141819 71 -1 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 9.43 vpr 61.91 MiB 0.03 7136 -1 -1 1 0.01 -1 -1 30052 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63400 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 23.0 MiB 2.31 1219 61.9 MiB 0.57 0.00 3.69075 -131.17 -3.69075 3.69075 1.08 0.000454758 0.00038154 0.0259702 0.0216288 34 3031 28 6.89349e+06 338252 618332. 2139.56 2.58 0.164117 0.144116 25762 151098 -1 2506 20 1680 2361 185882 40599 0 0 185882 40599 2361 2027 0 0 8690 7071 0 0 13118 10381 0 0 2361 2209 0 0 83948 8703 0 0 75404 10208 0 0 2361 0 0 681 656 507 5743 0 0 4.02876 4.02876 -157.31 -4.02876 0 0 787024. 2723.27 0.31 0.49 0.16 -1 -1 0.31 0.0258142 0.0232142 161 21 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 12.75 vpr 61.59 MiB 0.03 6868 -1 -1 1 0.03 -1 -1 29860 -1 -1 36 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63064 32 32 338 254 1 198 100 17 17 289 -1 unnamed_device 22.8 MiB 1.06 1101 61.6 MiB 0.67 0.01 2.9056 -102.176 -2.9056 2.9056 1.03 0.000429441 0.000357529 0.0328498 0.0276241 34 2639 27 6.89349e+06 507378 618332. 2139.56 6.72 0.249166 0.218751 25762 151098 -1 2151 20 1443 2332 162061 36686 0 0 162061 36686 2332 1672 0 0 8490 6714 0 0 12351 9702 0 0 2332 1853 0 0 68580 8572 0 0 67976 8173 0 0 2332 0 0 889 1082 1218 8369 0 0 2.64741 2.64741 -113.723 -2.64741 0 0 787024. 2723.27 0.31 0.52 0.20 -1 -1 0.31 0.0214822 0.0191828 151 -1 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 10.27 vpr 61.77 MiB 0.03 6992 -1 -1 1 0.02 -1 -1 30120 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63252 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 23.0 MiB 1.78 1445 61.8 MiB 1.14 0.01 3.70795 -132.019 -3.70795 3.70795 1.14 0.000584187 0.000485539 0.0535474 0.0466802 34 3672 37 6.89349e+06 380534 618332. 2139.56 3.22 0.207418 0.183292 25762 151098 -1 3064 23 2535 3731 291056 63635 0 0 291056 63635 3731 3068 0 0 13481 11096 0 0 20632 15875 0 0 3731 3331 0 0 132342 14130 0 0 117139 16135 0 0 3731 0 0 1196 1303 1628 10932 0 0 3.9237 3.9237 -156.384 -3.9237 0 0 787024. 2723.27 0.32 0.17 0.15 -1 -1 0.32 0.0351653 0.0317602 174 54 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 8.66 vpr 61.06 MiB 0.03 6940 -1 -1 1 0.01 -1 -1 29816 -1 -1 17 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62528 32 32 295 247 1 188 81 17 17 289 -1 unnamed_device 22.5 MiB 2.31 1024 61.1 MiB 0.94 0.01 2.94175 -107.352 -2.94175 2.94175 0.98 0.00049848 0.000439289 0.0285888 0.024403 34 2388 19 6.89349e+06 239595 618332. 2139.56 2.17 0.128787 0.112968 25762 151098 -1 2055 20 1425 2121 148205 34214 0 0 148205 34214 2121 1682 0 0 7864 6591 0 0 11993 9483 0 0 2121 1827 0 0 65030 6843 0 0 59076 7788 0 0 2121 0 0 696 587 624 5672 0 0 2.78066 2.78066 -122.113 -2.78066 0 0 787024. 2723.27 0.28 0.09 0.18 -1 -1 0.28 0.017573 0.0155618 118 31 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 8.78 vpr 61.31 MiB 0.04 6708 -1 -1 1 0.01 -1 -1 29920 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62784 30 32 299 247 1 183 81 17 17 289 -1 unnamed_device 22.9 MiB 2.23 1040 61.3 MiB 1.08 0.02 3.51049 -116.472 -3.51049 3.51049 1.00 0.000652194 0.000532072 0.0361327 0.0312005 34 2525 44 6.89349e+06 267783 618332. 2139.56 2.34 0.123842 0.108784 25762 151098 -1 2094 20 1325 2054 151086 33715 0 0 151086 33715 2054 1734 0 0 7392 5979 0 0 11259 8741 0 0 2054 1863 0 0 63759 7928 0 0 64568 7470 0 0 2054 0 0 729 612 804 6121 0 0 3.57495 3.57495 -135.965 -3.57495 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0176929 0.015719 121 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 8.35 vpr 61.52 MiB 0.03 6860 -1 -1 1 0.01 -1 -1 29844 -1 -1 21 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62992 28 32 283 237 1 173 81 17 17 289 -1 unnamed_device 22.8 MiB 1.86 969 61.5 MiB 0.10 0.00 3.37119 -105.852 -3.37119 3.37119 0.85 0.000151985 0.000121252 0.0103877 0.00852913 34 2261 21 6.89349e+06 295971 618332. 2139.56 3.36 0.105038 0.0917382 25762 151098 -1 1954 21 1196 2046 141171 32563 0 0 141171 32563 2046 1662 0 0 7438 6076 0 0 11355 8867 0 0 2046 1716 0 0 58561 7139 0 0 59725 7103 0 0 2046 0 0 850 803 859 6724 0 0 3.56716 3.56716 -125.155 -3.56716 0 0 787024. 2723.27 0.29 0.06 0.17 -1 -1 0.29 0.014833 0.0131856 117 27 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 7.70 vpr 60.95 MiB 0.02 6972 -1 -1 1 0.01 -1 -1 29912 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62416 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 22.5 MiB 1.37 868 61.0 MiB 0.16 0.00 2.85355 -103.202 -2.85355 2.85355 1.02 0.000363662 0.000304796 0.019153 0.0158323 34 2265 24 6.89349e+06 225501 618332. 2139.56 1.49 0.067456 0.0574339 25762 151098 -1 1935 22 1539 2583 195381 43729 0 0 195381 43729 2583 2086 0 0 9407 7678 0 0 14519 11079 0 0 2583 2188 0 0 83006 10685 0 0 83283 10013 0 0 2583 0 0 1044 1192 1203 8866 0 0 3.17456 3.17456 -131.297 -3.17456 0 0 787024. 2723.27 0.32 0.54 0.13 -1 -1 0.32 0.0182557 0.0161115 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 8.34 vpr 61.34 MiB 0.05 6848 -1 -1 1 0.02 -1 -1 30080 -1 -1 19 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62808 31 32 305 251 1 191 82 17 17 289 -1 unnamed_device 22.8 MiB 1.76 826 61.3 MiB 0.10 0.00 2.92465 -99.4213 -2.92465 2.92465 0.97 0.000147749 0.000116965 0.014663 0.0120532 34 2319 27 6.89349e+06 267783 618332. 2139.56 1.65 0.0975915 0.0827747 25762 151098 -1 1764 22 1335 1806 105756 28211 0 0 105756 28211 1806 1523 0 0 6846 5545 0 0 9898 7973 0 0 1806 1560 0 0 41222 5673 0 0 44178 5937 0 0 1806 0 0 471 547 526 4710 0 0 3.10946 3.10946 -121.579 -3.10946 0 0 787024. 2723.27 0.33 1.04 0.35 -1 -1 0.33 0.0260004 0.0232843 122 26 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.80 vpr 61.54 MiB 0.02 6884 -1 -1 1 0.02 -1 -1 29824 -1 -1 23 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63020 29 32 316 268 1 201 84 17 17 289 -1 unnamed_device 22.9 MiB 2.13 950 61.5 MiB 0.19 0.00 2.80245 -90.1073 -2.80245 2.80245 1.03 0.000168904 0.000136057 0.0227416 0.0186051 34 2488 49 6.89349e+06 324158 618332. 2139.56 2.10 0.130277 0.11195 25762 151098 -1 1927 22 1385 1873 130253 31743 0 0 130253 31743 1873 1620 0 0 7063 5820 0 0 10305 8259 0 0 1873 1663 0 0 55648 7095 0 0 53491 7286 0 0 1873 0 0 488 440 558 4735 0 0 2.82896 2.82896 -106.771 -2.82896 0 0 787024. 2723.27 0.31 0.07 0.18 -1 -1 0.31 0.0192501 0.0170356 130 55 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 9.52 vpr 62.07 MiB 0.03 7240 -1 -1 1 0.02 -1 -1 30012 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63556 32 32 424 311 1 254 91 17 17 289 -1 unnamed_device 23.4 MiB 2.84 1460 62.1 MiB 0.34 0.00 3.73615 -132.405 -3.73615 3.73615 1.05 0.00053942 0.000465415 0.0358012 0.0304528 34 3482 25 6.89349e+06 380534 618332. 2139.56 3.03 0.203585 0.18029 25762 151098 -1 2921 21 1974 3212 232114 51937 0 0 232114 51937 3212 2474 0 0 11648 9627 0 0 18037 14117 0 0 3212 2577 0 0 98254 11763 0 0 97751 11379 0 0 3212 0 0 1238 2148 2237 14553 0 0 3.91296 3.91296 -154.792 -3.91296 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.0276376 0.0247544 184 26 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 8.79 vpr 62.06 MiB 0.03 7052 -1 -1 1 0.02 -1 -1 29896 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63552 32 32 404 318 1 260 89 17 17 289 -1 unnamed_device 23.3 MiB 2.60 1330 62.1 MiB 0.30 0.01 3.39694 -122.321 -3.39694 3.39694 1.04 0.000422789 0.000347674 0.0305802 0.0256725 34 3572 45 6.89349e+06 352346 618332. 2139.56 2.36 0.167985 0.146758 25762 151098 -1 2912 24 2727 3695 294092 65708 0 0 294092 65708 3695 3065 0 0 13564 11095 0 0 20357 15927 0 0 3695 3287 0 0 127632 15920 0 0 125149 16414 0 0 3695 0 0 968 1184 1282 9391 0 0 3.89985 3.89985 -154.523 -3.89985 0 0 787024. 2723.27 0.33 0.16 0.18 -1 -1 0.33 0.0323482 0.028967 173 62 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.99 vpr 61.47 MiB 0.02 6860 -1 -1 1 0.01 -1 -1 30028 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62944 31 32 355 304 1 229 85 17 17 289 -1 unnamed_device 22.6 MiB 1.19 1126 61.5 MiB 0.24 0.00 2.90265 -100.941 -2.90265 2.90265 1.14 0.00045113 0.000381614 0.03064 0.0252233 34 2416 27 6.89349e+06 310065 618332. 2139.56 1.90 0.11616 0.100394 25762 151098 -1 2025 18 1319 1362 100423 23189 0 0 100423 23189 1362 1338 0 0 5096 4112 0 0 7483 5964 0 0 1362 1344 0 0 41652 5626 0 0 43468 4805 0 0 1362 0 0 43 54 41 1596 0 0 2.93371 2.93371 -113.31 -2.93371 0 0 787024. 2723.27 0.32 0.06 0.17 -1 -1 0.32 0.0185636 0.0166087 143 77 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 14.21 vpr 61.65 MiB 0.03 7108 -1 -1 1 0.03 -1 -1 29964 -1 -1 26 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63132 31 32 393 311 1 246 89 17 17 289 -1 unnamed_device 22.9 MiB 3.73 1061 61.7 MiB 0.21 0.00 3.38219 -111.854 -3.38219 3.38219 1.12 0.000407644 0.000343804 0.0282899 0.0234002 38 2830 26 6.89349e+06 366440 678818. 2348.85 6.77 0.230748 0.201197 26626 170182 -1 2185 21 1714 2453 165461 37583 0 0 165461 37583 2453 1949 0 0 8308 6747 0 0 10951 8925 0 0 2453 1994 0 0 68118 8746 0 0 73178 9222 0 0 2453 0 0 739 851 678 6609 0 0 3.4497 3.4497 -130.836 -3.4497 0 0 902133. 3121.57 0.31 0.10 0.21 -1 -1 0.31 0.0246048 0.0219369 170 59 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 13.63 vpr 62.11 MiB 0.03 7204 -1 -1 1 0.02 -1 -1 30240 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63604 31 32 457 373 1 307 94 17 17 289 -1 unnamed_device 23.3 MiB 2.59 1540 62.1 MiB 0.46 0.01 4.14544 -137.646 -4.14544 4.14544 0.96 0.000489299 0.000419177 0.0476036 0.0403222 36 3544 23 6.89349e+06 436909 648988. 2245.63 6.14 0.297573 0.26716 26050 158493 -1 2846 21 2138 2414 174648 38674 0 0 174648 38674 2414 2218 0 0 8586 6921 0 0 12453 9976 0 0 2414 2283 0 0 72995 8943 0 0 75786 8333 0 0 2414 0 0 276 325 228 3795 0 0 4.48614 4.48614 -158.274 -4.48614 0 0 828058. 2865.25 0.33 0.09 0.17 -1 -1 0.33 0.0249116 0.0220209 201 111 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 13.11 vpr 62.07 MiB 0.02 7192 -1 -1 1 0.02 -1 -1 29920 -1 -1 27 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63556 31 32 415 335 1 269 90 17 17 289 -1 unnamed_device 23.2 MiB 2.92 1251 62.1 MiB 0.43 0.01 4.35103 -136.93 -4.35103 4.35103 1.12 0.000372432 0.000297828 0.0446553 0.0378714 36 2924 34 6.89349e+06 380534 648988. 2245.63 4.41 0.235688 0.206279 26050 158493 -1 2427 22 2159 2963 211446 47619 0 0 211446 47619 2963 2535 0 0 10364 8357 0 0 15303 11811 0 0 2963 2706 0 0 87423 11675 0 0 92430 10535 0 0 2963 0 0 804 830 948 7519 0 0 4.94794 4.94794 -166.973 -4.94794 0 0 828058. 2865.25 0.39 1.20 0.20 -1 -1 0.39 0.0377353 0.0345335 181 86 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 9.18 vpr 61.77 MiB 0.03 7052 -1 -1 1 0.01 -1 -1 29944 -1 -1 27 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63248 31 32 393 311 1 249 90 17 17 289 -1 unnamed_device 22.8 MiB 2.21 1324 61.8 MiB 0.38 0.01 2.99685 -106.912 -2.99685 2.99685 1.00 0.000529278 0.000452357 0.0458872 0.0390901 34 3299 37 6.89349e+06 380534 618332. 2139.56 2.99 0.190869 0.167124 25762 151098 -1 2557 21 2199 3006 233502 51828 0 0 233502 51828 3006 2503 0 0 11248 9406 0 0 17039 13678 0 0 3006 2685 0 0 102372 11411 0 0 96831 12145 0 0 3006 0 0 807 1049 1146 8070 0 0 3.36751 3.36751 -126.939 -3.36751 0 0 787024. 2723.27 0.32 0.11 0.17 -1 -1 0.32 0.0264108 0.0235067 168 58 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 10.63 vpr 61.99 MiB 0.03 7020 -1 -1 1 0.01 -1 -1 30208 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 23.2 MiB 2.56 1373 62.0 MiB 0.35 0.01 3.70795 -131.751 -3.70795 3.70795 1.03 0.00267636 0.0025887 0.0437315 0.0371601 38 2814 20 6.89349e+06 380534 678818. 2348.85 4.20 0.181258 0.15539 26626 170182 -1 2514 20 1700 2114 149941 32228 0 0 149941 32228 2114 1858 0 0 7325 5866 0 0 9862 7981 0 0 2114 1909 0 0 62748 7825 0 0 65778 6789 0 0 2114 0 0 414 365 374 4447 0 0 3.85976 3.85976 -149.412 -3.85976 0 0 902133. 3121.57 0.24 0.05 0.12 -1 -1 0.24 0.0136486 0.0121524 178 42 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 16.88 vpr 62.05 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30080 -1 -1 31 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 497 381 1 321 95 17 17 289 -1 unnamed_device 23.7 MiB 3.04 1602 62.0 MiB 0.48 0.01 4.10198 -142.12 -4.10198 4.10198 1.07 0.000532442 0.000455342 0.0635193 0.055159 38 4079 31 6.89349e+06 436909 678818. 2348.85 8.80 0.398125 0.354141 26626 170182 -1 3139 22 3084 4527 290241 68537 0 0 290241 68537 4527 3627 0 0 15273 12716 0 0 21110 16724 0 0 4527 3811 0 0 121585 15974 0 0 123219 15685 0 0 4527 0 0 1443 2338 2275 15369 0 0 4.53085 4.53085 -168.792 -4.53085 0 0 902133. 3121.57 0.38 0.72 0.18 -1 -1 0.38 0.03354 0.0299985 220 91 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 8.01 vpr 61.22 MiB 0.03 6812 -1 -1 1 0.01 -1 -1 30084 -1 -1 20 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62688 31 32 307 252 1 192 83 17 17 289 -1 unnamed_device 22.6 MiB 2.43 970 61.2 MiB 0.21 0.00 3.1012 -110.173 -3.1012 3.1012 1.09 0.000287776 0.000229645 0.0235699 0.0190377 34 2300 22 6.89349e+06 281877 618332. 2139.56 2.00 0.119617 0.103088 25762 151098 -1 1943 22 1526 2092 139870 32717 0 0 139870 32717 2092 1684 0 0 7589 6388 0 0 11301 8937 0 0 2092 1790 0 0 60822 6697 0 0 55974 7221 0 0 2092 0 0 566 578 501 4937 0 0 3.12151 3.12151 -125.501 -3.12151 0 0 787024. 2723.27 0.32 0.07 0.18 -1 -1 0.32 0.0173797 0.015295 126 24 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 10.01 vpr 61.79 MiB 0.03 7228 -1 -1 1 0.01 -1 -1 29896 -1 -1 27 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63276 31 32 397 313 1 251 90 17 17 289 -1 unnamed_device 22.9 MiB 2.11 1266 61.8 MiB 0.18 0.01 3.99994 -131.778 -3.99994 3.99994 1.13 0.000505563 0.000432297 0.017787 0.014773 36 3079 25 6.89349e+06 380534 648988. 2245.63 4.37 0.157724 0.136393 26050 158493 -1 2545 19 1586 2042 170053 37220 0 0 170053 37220 2042 1829 0 0 7597 6105 0 0 11281 9030 0 0 2042 1898 0 0 79493 8076 0 0 67598 10282 0 0 2042 0 0 456 625 814 5347 0 0 4.29115 4.29115 -154.163 -4.29115 0 0 828058. 2865.25 0.27 0.08 0.11 -1 -1 0.27 0.0206838 0.0183467 168 59 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 8.81 vpr 62.01 MiB 0.03 7228 -1 -1 1 0.02 -1 -1 30044 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63500 32 32 398 314 1 254 92 17 17 289 -1 unnamed_device 23.4 MiB 2.23 1291 62.0 MiB 0.19 0.01 3.49949 -118.211 -3.49949 3.49949 1.02 0.000522115 0.000452649 0.0195362 0.016433 34 3811 36 6.89349e+06 394628 618332. 2139.56 2.91 0.154649 0.136808 25762 151098 -1 2669 21 1716 2693 180168 42034 0 0 180168 42034 2693 2248 0 0 9730 7805 0 0 14377 11206 0 0 2693 2354 0 0 73789 9501 0 0 76886 8920 0 0 2693 0 0 977 1294 1328 8810 0 0 3.6674 3.6674 -140.506 -3.6674 0 0 787024. 2723.27 0.20 0.05 0.12 -1 -1 0.20 0.0123811 0.0108835 173 54 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.91 vpr 61.59 MiB 0.03 6876 -1 -1 1 0.02 -1 -1 29904 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63068 32 32 346 258 1 202 85 17 17 289 -1 unnamed_device 22.8 MiB 0.88 1039 61.6 MiB 0.25 0.00 3.45729 -124.333 -3.45729 3.45729 1.09 0.000337859 0.000286125 0.0297948 0.0251571 32 3148 36 6.89349e+06 295971 586450. 2029.24 2.18 0.139867 0.12259 25474 144626 -1 2461 23 2086 3702 304676 67576 0 0 304676 67576 3702 3057 0 0 13648 11319 0 0 22786 17025 0 0 3702 3193 0 0 138460 15427 0 0 122378 17555 0 0 3702 0 0 1616 2184 1920 14118 0 0 3.9034 3.9034 -157.181 -3.9034 0 0 744469. 2576.02 0.29 0.15 0.15 -1 -1 0.29 0.0285675 0.0256514 147 -1 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 10.66 vpr 61.99 MiB 0.06 7048 -1 -1 1 0.02 -1 -1 30000 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63480 32 32 425 344 1 281 92 17 17 289 -1 unnamed_device 23.4 MiB 1.99 1258 62.0 MiB 0.43 0.01 3.41219 -117.057 -3.41219 3.41219 1.23 0.000641686 0.00055102 0.0447656 0.0381333 36 3052 26 6.89349e+06 394628 648988. 2245.63 4.47 0.226949 0.196784 26050 158493 -1 2499 22 1824 2139 149606 34968 0 0 149606 34968 2139 1920 0 0 7789 6379 0 0 11304 9118 0 0 2139 2015 0 0 61752 8361 0 0 64483 7175 0 0 2139 0 0 315 432 410 4182 0 0 3.5578 3.5578 -137.129 -3.5578 0 0 828058. 2865.25 0.34 0.09 0.17 -1 -1 0.34 0.0269945 0.0240473 184 81 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.80 vpr 61.75 MiB 0.03 7000 -1 -1 1 0.02 -1 -1 29860 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63232 32 32 396 312 1 255 91 17 17 289 -1 unnamed_device 23.0 MiB 2.78 1338 61.8 MiB 0.26 0.01 3.42319 -124.001 -3.42319 3.42319 1.15 0.000372619 0.000325181 0.0281194 0.0234614 34 3266 23 6.89349e+06 380534 618332. 2139.56 2.23 0.145596 0.12851 25762 151098 -1 2602 20 1791 2652 188603 44250 0 0 188603 44250 2652 2170 0 0 9650 7944 0 0 15042 11531 0 0 2652 2226 0 0 81794 10148 0 0 76813 10231 0 0 2652 0 0 861 884 1229 8946 0 0 3.4747 3.4747 -144.207 -3.4747 0 0 787024. 2723.27 0.24 0.08 0.18 -1 -1 0.24 0.0208561 0.0185134 169 58 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.47 vpr 61.78 MiB 0.03 7060 -1 -1 1 0.02 -1 -1 29884 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63264 32 32 406 319 1 260 91 17 17 289 -1 unnamed_device 23.0 MiB 1.98 1383 61.8 MiB 0.35 0.01 3.00785 -110.854 -3.00785 3.00785 1.11 0.00041145 0.000339598 0.0388774 0.0321743 36 3301 34 6.89349e+06 380534 648988. 2245.63 2.64 0.179997 0.156705 26050 158493 -1 2849 22 2280 3148 247579 52926 0 0 247579 52926 3148 2676 0 0 11090 8862 0 0 16369 12801 0 0 3148 2910 0 0 104659 13390 0 0 109165 12287 0 0 3148 0 0 868 1208 1125 8471 0 0 3.41395 3.41395 -138.744 -3.41395 0 0 828058. 2865.25 0.34 0.12 0.19 -1 -1 0.34 0.0302987 0.0274019 175 61 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 8.51 vpr 61.84 MiB 0.03 7132 -1 -1 1 0.02 -1 -1 30000 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63324 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 22.9 MiB 1.90 1050 61.8 MiB 0.33 0.01 3.76105 -129.849 -3.76105 3.76105 1.04 0.000348189 0.000281003 0.0352843 0.0292032 34 3151 39 6.89349e+06 338252 618332. 2139.56 2.85 0.180017 0.157596 25762 151098 -1 2242 24 2173 3178 248730 55547 0 0 248730 55547 3178 2626 0 0 11523 9309 0 0 17561 13575 0 0 3178 2701 0 0 116472 12247 0 0 96818 15089 0 0 3178 0 0 1005 951 912 8430 0 0 4.10206 4.10206 -153.379 -4.10206 0 0 787024. 2723.27 0.31 0.11 0.11 -1 -1 0.31 0.0248772 0.0220046 161 21 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 10.65 vpr 62.05 MiB 0.04 7020 -1 -1 1 0.01 -1 -1 30060 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 23.2 MiB 1.89 1084 62.0 MiB 0.19 0.00 3.73915 -124.893 -3.73915 3.73915 1.35 0.000634108 0.000557106 0.0261366 0.0220845 36 2694 24 6.89349e+06 380534 648988. 2245.63 4.93 0.228367 0.200937 26050 158493 -1 2141 21 1860 2262 152731 37995 0 0 152731 37995 2262 2035 0 0 8521 6985 0 0 12374 10033 0 0 2262 2128 0 0 65491 8174 0 0 61821 8640 0 0 2262 0 0 402 432 332 4284 0 0 3.98476 3.98476 -146.295 -3.98476 0 0 828058. 2865.25 0.33 0.08 0.18 -1 -1 0.33 0.0220536 0.0194764 179 50 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 8.16 vpr 62.23 MiB 0.03 7228 -1 -1 1 0.03 -1 -1 30124 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 451 369 1 300 94 17 17 289 -1 unnamed_device 23.5 MiB 1.75 1566 62.2 MiB 0.43 0.01 3.94494 -127.14 -3.94494 3.94494 1.13 0.00043567 0.000357566 0.0484836 0.041114 34 3869 30 6.89349e+06 436909 618332. 2139.56 2.38 0.19447 0.167952 25762 151098 -1 2919 20 1848 2167 147079 34806 0 0 147079 34806 2167 1955 0 0 8154 6677 0 0 11970 9693 0 0 2167 2010 0 0 60718 7339 0 0 61903 7132 0 0 2167 0 0 319 318 163 3631 0 0 4.17985 4.17985 -148.696 -4.17985 0 0 787024. 2723.27 0.29 0.09 0.16 -1 -1 0.29 0.0258167 0.0230855 195 110 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.60 vpr 62.15 MiB 0.03 7132 -1 -1 1 0.02 -1 -1 30204 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 433 347 1 287 92 17 17 289 -1 unnamed_device 23.4 MiB 3.60 1550 62.1 MiB 0.46 0.00 3.80935 -131.042 -3.80935 3.80935 1.11 0.00023004 0.000186556 0.0437591 0.0373418 34 4418 50 6.89349e+06 394628 618332. 2139.56 2.84 0.18194 0.15924 25762 151098 -1 3155 25 2900 4237 316416 73942 0 0 316416 73942 4237 3391 0 0 15232 12681 0 0 22856 17918 0 0 4237 3695 0 0 138603 17359 0 0 131251 18898 0 0 4237 0 0 1337 1484 1352 11084 0 0 4.45026 4.45026 -153.993 -4.45026 0 0 787024. 2723.27 0.33 0.16 0.17 -1 -1 0.33 0.0403436 0.0362827 191 86 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 8.19 vpr 61.20 MiB 0.03 6888 -1 -1 1 0.01 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62668 32 32 313 256 1 198 84 17 17 289 -1 unnamed_device 22.6 MiB 2.07 974 61.2 MiB 0.24 0.01 2.93565 -106.664 -2.93565 2.93565 1.18 0.00031304 0.000249975 0.0242833 0.0198336 34 2513 36 6.89349e+06 281877 618332. 2139.56 2.37 0.128694 0.112021 25762 151098 -1 2011 20 1312 1887 132336 31055 0 0 132336 31055 1887 1474 0 0 7083 5884 0 0 10684 8321 0 0 1887 1539 0 0 55181 7063 0 0 55614 6774 0 0 1887 0 0 575 767 733 5566 0 0 3.23776 3.23776 -129.59 -3.23776 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0175744 0.0156202 127 20 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.62 vpr 61.89 MiB 0.02 6860 -1 -1 1 0.01 -1 -1 29920 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63380 32 32 371 315 1 250 85 17 17 289 -1 unnamed_device 23.2 MiB 1.90 1369 61.9 MiB 0.16 0.00 3.40739 -119.33 -3.40739 3.40739 1.25 0.00048135 0.000415209 0.0184543 0.0157049 34 3317 36 6.89349e+06 295971 618332. 2139.56 2.90 0.163215 0.14434 25762 151098 -1 2665 20 1837 2148 174386 37999 0 0 174386 37999 2148 1962 0 0 7914 6390 0 0 11543 9120 0 0 2148 1978 0 0 76832 9432 0 0 73801 9117 0 0 2148 0 0 311 328 232 3641 0 0 3.75629 3.75629 -146.127 -3.75629 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0206628 0.0185037 154 91 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 10.40 vpr 61.98 MiB 0.05 7112 -1 -1 1 0.02 -1 -1 30236 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63472 32 32 470 352 1 298 94 17 17 289 -1 unnamed_device 23.3 MiB 2.19 1452 62.0 MiB 0.40 0.01 4.31889 -147.119 -4.31889 4.31889 1.31 0.000788252 0.000691505 0.0438282 0.0370634 34 4490 48 6.89349e+06 422815 618332. 2139.56 3.90 0.195492 0.1712 25762 151098 -1 3003 25 2900 3996 292271 71648 0 0 292271 71648 3996 3388 0 0 14712 12283 0 0 23194 17893 0 0 3996 3456 0 0 125235 17415 0 0 121138 17213 0 0 3996 0 0 1096 1168 963 9491 0 0 5.4889 5.4889 -184.906 -5.4889 0 0 787024. 2723.27 0.32 0.15 0.18 -1 -1 0.32 0.0346343 0.0308793 209 53 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 9.00 vpr 61.81 MiB 0.05 6912 -1 -1 1 0.02 -1 -1 29784 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63292 32 32 369 285 1 225 87 17 17 289 -1 unnamed_device 23.0 MiB 2.12 1088 61.8 MiB 0.16 0.00 3.029 -107.58 -3.029 3.029 1.30 0.00036412 0.00030914 0.0213049 0.017835 34 2896 28 6.89349e+06 324158 618332. 2139.56 2.82 0.161091 0.142028 25762 151098 -1 2226 20 1686 2404 176506 42364 0 0 176506 42364 2404 1956 0 0 9169 7724 0 0 13876 11067 0 0 2404 2033 0 0 75803 8918 0 0 72850 10666 0 0 2404 0 0 718 866 930 6748 0 0 3.12781 3.12781 -126.716 -3.12781 0 0 787024. 2723.27 0.32 0.09 0.17 -1 -1 0.32 0.0230303 0.020564 156 31 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 7.93 vpr 61.27 MiB 0.02 6708 -1 -1 1 0.01 -1 -1 29856 -1 -1 32 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62744 30 32 299 247 1 183 94 17 17 289 -1 unnamed_device 22.7 MiB 1.52 877 61.3 MiB 0.25 0.01 3.39319 -106.393 -3.39319 3.39319 1.16 0.000344288 0.000286372 0.0172225 0.0145507 36 2031 19 6.89349e+06 451003 648988. 2245.63 2.34 0.125854 0.109612 26050 158493 -1 1791 21 1118 1636 101006 23612 0 0 101006 23612 1636 1213 0 0 5860 4620 0 0 8636 6748 0 0 1636 1303 0 0 44381 4480 0 0 38857 5248 0 0 1636 0 0 518 570 626 5258 0 0 3.3164 3.3164 -122.591 -3.3164 0 0 828058. 2865.25 0.34 0.10 0.18 -1 -1 0.34 0.0241448 0.0220526 129 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.93 vpr 62.33 MiB 0.08 7236 -1 -1 1 0.03 -1 -1 30384 -1 -1 35 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 532 414 1 356 99 17 17 289 -1 unnamed_device 24.0 MiB 2.40 1829 62.3 MiB 0.39 0.01 4.59263 -157.158 -4.59263 4.59263 1.38 0.000859858 0.000750393 0.055807 0.0487558 34 4872 44 6.89349e+06 493284 618332. 2139.56 4.03 0.281086 0.242163 25762 151098 -1 3633 22 3221 3975 303906 67067 0 0 303906 67067 3975 3689 0 0 14749 11884 0 0 21731 17350 0 0 3975 3798 0 0 138928 13494 0 0 120548 16852 0 0 3975 0 0 754 773 777 7805 0 0 5.42264 5.42264 -191.06 -5.42264 0 0 787024. 2723.27 0.28 0.08 0.18 -1 -1 0.28 0.0176975 0.0155885 239 109 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.87 vpr 61.91 MiB 0.08 6968 -1 -1 1 0.02 -1 -1 29904 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63400 32 32 377 289 1 225 87 17 17 289 -1 unnamed_device 23.0 MiB 1.73 1075 61.9 MiB 0.25 0.01 3.54039 -126.255 -3.54039 3.54039 1.03 0.000354942 0.00028621 0.0305995 0.0247982 34 2902 25 6.89349e+06 324158 618332. 2139.56 2.27 0.15458 0.134398 25762 151098 -1 2249 21 2022 2792 197189 45861 0 0 197189 45861 2792 2413 0 0 10493 8507 0 0 15121 12205 0 0 2792 2520 0 0 81395 10672 0 0 84596 9544 0 0 2792 0 0 770 1000 967 7591 0 0 4.0039 4.0039 -155.958 -4.0039 0 0 787024. 2723.27 0.28 0.16 0.15 -1 -1 0.28 0.0249205 0.0224779 159 31 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 8.52 vpr 61.27 MiB 0.08 6912 -1 -1 1 0.02 -1 -1 29660 -1 -1 33 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62740 32 32 284 226 1 168 97 17 17 289 -1 unnamed_device 22.7 MiB 0.72 857 61.3 MiB 0.16 0.00 2.86955 -102.539 -2.86955 2.86955 1.08 0.000217189 0.000180483 0.0162347 0.0133907 30 2262 20 6.89349e+06 465097 556674. 1926.21 3.79 0.148461 0.130505 25186 138497 -1 1772 22 1208 1937 121750 27704 0 0 121750 27704 1937 1406 0 0 6466 4929 0 0 9207 7156 0 0 1937 1504 0 0 50518 6528 0 0 51685 6181 0 0 1937 0 0 729 934 1116 7350 0 0 2.89906 2.89906 -119.073 -2.89906 0 0 706193. 2443.58 0.32 0.10 0.15 -1 -1 0.32 0.0202962 0.0180578 123 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 9.42 vpr 62.18 MiB 0.17 7340 -1 -1 1 0.02 -1 -1 30304 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63676 32 32 439 321 1 267 92 17 17 289 -1 unnamed_device 23.4 MiB 2.56 1493 62.2 MiB 0.37 0.01 4.29569 -151.038 -4.29569 4.29569 1.05 0.000541174 0.000459858 0.0487484 0.0413587 34 3646 26 6.89349e+06 394628 618332. 2139.56 2.76 0.203301 0.179133 25762 151098 -1 2895 22 2497 4002 269787 60896 0 0 269787 60896 4002 3135 0 0 14290 11724 0 0 21764 16759 0 0 4002 3243 0 0 119109 12051 0 0 106620 13984 0 0 4002 0 0 1505 2474 2624 17723 0 0 4.7118 4.7118 -180.538 -4.7118 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0241113 0.0215748 194 26 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 7.85 vpr 60.92 MiB 0.09 6720 -1 -1 1 0.02 -1 -1 29780 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62380 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 22.5 MiB 1.28 683 60.9 MiB 0.17 0.00 2.98685 -102.68 -2.98685 2.98685 0.94 0.000251706 0.000204883 0.0217637 0.0179104 34 2556 34 6.89349e+06 225501 618332. 2139.56 2.36 0.128398 0.111966 25762 151098 -1 1785 23 1637 2608 182553 46433 0 0 182553 46433 2608 2046 0 0 9742 8233 0 0 15235 11768 0 0 2608 2115 0 0 80669 9782 0 0 71691 12489 0 0 2608 0 0 971 907 1616 8778 0 0 3.35636 3.35636 -126.811 -3.35636 0 0 787024. 2723.27 0.33 0.18 0.16 -1 -1 0.33 0.0246487 0.0222305 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 7.93 vpr 61.06 MiB 0.08 7080 -1 -1 1 0.02 -1 -1 29996 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62528 30 32 299 247 1 185 81 17 17 289 -1 unnamed_device 22.5 MiB 1.92 957 61.1 MiB 0.31 0.01 2.94665 -102.107 -2.94665 2.94665 0.92 0.00028365 0.000228873 0.0265326 0.022173 34 2282 33 6.89349e+06 267783 618332. 2139.56 1.93 0.112488 0.0960827 25762 151098 -1 1911 17 1285 1730 129277 29093 0 0 129277 29093 1730 1383 0 0 6413 5186 0 0 9612 7594 0 0 1730 1435 0 0 57590 6244 0 0 52202 7251 0 0 1730 0 0 445 537 627 4629 0 0 2.94931 2.94931 -118.581 -2.94931 0 0 787024. 2723.27 0.32 0.07 0.18 -1 -1 0.32 0.0164571 0.0146771 121 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 9.89 vpr 61.71 MiB 0.22 7256 -1 -1 1 0.01 -1 -1 30052 -1 -1 31 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63188 29 32 397 323 1 253 92 17 17 289 -1 unnamed_device 22.9 MiB 2.38 1314 61.7 MiB 0.71 0.01 3.21664 -104.801 -3.21664 3.21664 0.88 0.000516452 0.000442883 0.0347025 0.0292448 34 3094 24 6.89349e+06 436909 618332. 2139.56 2.75 0.16249 0.141338 25762 151098 -1 2587 22 1837 2459 196724 43586 0 0 196724 43586 2459 2199 0 0 9209 7687 0 0 14319 11369 0 0 2459 2241 0 0 85117 9588 0 0 83161 10502 0 0 2459 0 0 622 630 551 5562 0 0 3.64464 3.64464 -127.537 -3.64464 0 0 787024. 2723.27 0.28 0.08 0.14 -1 -1 0.28 0.0181028 0.015845 171 81 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 11.90 vpr 61.77 MiB 0.20 6984 -1 -1 1 0.02 -1 -1 30032 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63256 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 23.0 MiB 3.37 1302 61.8 MiB 0.98 0.01 4.24554 -147.729 -4.24554 4.24554 0.99 0.000488278 0.000415827 0.0519466 0.0440307 34 3453 27 6.89349e+06 366440 618332. 2139.56 3.07 0.174741 0.153188 25762 151098 -1 2717 21 2230 3182 221131 51277 0 0 221131 51277 3182 2539 0 0 11738 9766 0 0 17966 14082 0 0 3182 2647 0 0 99372 10172 0 0 85691 12071 0 0 3182 0 0 952 904 636 7604 0 0 4.61355 4.61355 -170.203 -4.61355 0 0 787024. 2723.27 0.30 0.14 0.17 -1 -1 0.30 0.0232406 0.0206683 178 53 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 11.51 vpr 61.79 MiB 0.05 7232 -1 -1 1 0.01 -1 -1 30052 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63272 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 23.0 MiB 2.90 1508 61.8 MiB 0.79 0.01 4.30074 -148.321 -4.30074 4.30074 1.01 0.000761526 0.000638961 0.0448478 0.0379497 34 3583 24 6.89349e+06 366440 618332. 2139.56 3.53 0.181153 0.158324 25762 151098 -1 3005 19 2367 3250 261698 55994 0 0 261698 55994 3250 2637 0 0 11779 9408 0 0 17641 13818 0 0 3250 2715 0 0 122738 12595 0 0 103040 14821 0 0 3250 0 0 883 1028 1187 8574 0 0 4.68895 4.68895 -176.197 -4.68895 0 0 787024. 2723.27 0.28 0.11 0.15 -1 -1 0.28 0.0210357 0.0186729 175 55 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 11.69 vpr 61.53 MiB 0.19 6924 -1 -1 1 0.02 -1 -1 30028 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63008 32 32 346 288 1 218 84 17 17 289 -1 unnamed_device 22.8 MiB 2.10 1096 61.5 MiB 1.07 0.01 3.54849 -124.981 -3.54849 3.54849 1.11 0.000387697 0.000320124 0.0438337 0.037352 34 2505 25 6.89349e+06 281877 618332. 2139.56 4.31 0.169315 0.148993 25762 151098 -1 2091 19 1343 1563 114347 26151 0 0 114347 26151 1563 1450 0 0 5828 4731 0 0 8677 6951 0 0 1563 1458 0 0 51145 5332 0 0 45571 6229 0 0 1563 0 0 220 273 281 2891 0 0 3.3102 3.3102 -133.989 -3.3102 0 0 787024. 2723.27 0.31 0.14 0.16 -1 -1 0.31 0.0209778 0.0189568 141 55 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 11.67 vpr 61.56 MiB 0.15 6780 -1 -1 1 0.02 -1 -1 30120 -1 -1 22 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63040 31 32 355 304 1 231 85 17 17 289 -1 unnamed_device 22.9 MiB 2.59 1240 61.6 MiB 0.90 0.01 3.48549 -119.058 -3.48549 3.48549 0.99 0.000606239 0.000519991 0.0380823 0.0318161 34 2928 22 6.89349e+06 310065 618332. 2139.56 3.79 0.161843 0.141601 25762 151098 -1 2424 19 1448 1828 129781 29531 0 0 129781 29531 1828 1595 0 0 6842 5564 0 0 9513 7740 0 0 1828 1812 0 0 55228 6363 0 0 54542 6457 0 0 1828 0 0 380 399 225 3592 0 0 3.5058 3.5058 -131.732 -3.5058 0 0 787024. 2723.27 0.29 0.14 0.16 -1 -1 0.29 0.0217589 0.0196084 146 82 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 12.30 vpr 61.87 MiB 0.13 6948 -1 -1 1 0.02 -1 -1 29928 -1 -1 27 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63356 30 32 377 300 1 236 89 17 17 289 -1 unnamed_device 23.2 MiB 3.11 1277 61.9 MiB 0.68 0.02 3.1983 -108.997 -3.1983 3.1983 1.12 0.000541978 0.000467047 0.0460367 0.0395851 34 2959 22 6.89349e+06 380534 618332. 2139.56 3.98 0.181058 0.159903 25762 151098 -1 2375 19 1679 2431 169987 38631 0 0 169987 38631 2431 1927 0 0 8751 7076 0 0 13166 10412 0 0 2431 1986 0 0 75244 8241 0 0 67964 8989 0 0 2431 0 0 752 1035 1124 8236 0 0 3.21861 3.21861 -126.822 -3.21861 0 0 787024. 2723.27 0.27 0.15 0.15 -1 -1 0.27 0.0194484 0.0174526 162 52 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 12.60 vpr 61.73 MiB 0.20 7080 -1 -1 1 0.02 -1 -1 29968 -1 -1 27 28 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63216 28 32 337 265 1 203 87 17 17 289 -1 unnamed_device 23.0 MiB 2.06 1107 61.7 MiB 0.78 0.01 3.77025 -114.582 -3.77025 3.77025 0.88 0.000255651 0.000214772 0.0376776 0.032213 34 2559 34 6.89349e+06 380534 618332. 2139.56 5.37 0.156459 0.13679 25762 151098 -1 2072 25 1721 2530 225736 46787 0 0 225736 46787 2530 2012 0 0 9214 7486 0 0 14644 11187 0 0 2530 2090 0 0 102949 11864 0 0 93869 12148 0 0 2530 0 0 809 1126 1459 8998 0 0 4.09436 4.09436 -132.489 -4.09436 0 0 787024. 2723.27 0.30 0.17 0.13 -1 -1 0.30 0.0257544 0.022949 145 20 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 13.23 vpr 61.32 MiB 0.21 6856 -1 -1 1 0.01 -1 -1 29900 -1 -1 21 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62792 30 32 328 276 1 208 83 17 17 289 -1 unnamed_device 22.9 MiB 3.15 1118 61.3 MiB 0.94 0.01 3.56059 -119.797 -3.56059 3.56059 0.86 0.000326561 0.000263853 0.0422733 0.0364977 34 2796 38 6.89349e+06 295971 618332. 2139.56 4.43 0.165469 0.14513 25762 151098 -1 2270 20 1766 2408 194054 41360 0 0 194054 41360 2408 2122 0 0 8830 7195 0 0 13384 10521 0 0 2408 2182 0 0 89126 9002 0 0 77898 10338 0 0 2408 0 0 642 663 625 5692 0 0 3.68505 3.68505 -139.402 -3.68505 0 0 787024. 2723.27 0.32 0.18 0.19 -1 -1 0.32 0.0227623 0.0184835 136 58 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 13.66 vpr 61.93 MiB 0.14 6768 -1 -1 1 0.01 -1 -1 29748 -1 -1 21 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63420 32 32 362 309 1 245 85 17 17 289 -1 unnamed_device 23.2 MiB 2.83 1289 61.9 MiB 0.99 0.02 3.06705 -110.063 -3.06705 3.06705 1.04 0.000590097 0.000495276 0.0300664 0.0258956 34 3153 24 6.89349e+06 295971 618332. 2139.56 4.88 0.147873 0.129793 25762 151098 -1 2593 20 1827 2115 165483 36557 0 0 165483 36557 2115 1862 0 0 7775 6219 0 0 11290 8928 0 0 2115 2078 0 0 69570 9209 0 0 72618 8261 0 0 2115 0 0 288 316 210 3505 0 0 3.44451 3.44451 -132.872 -3.44451 0 0 787024. 2723.27 0.28 0.13 0.17 -1 -1 0.28 0.0227413 0.0204779 150 88 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 12.02 vpr 61.54 MiB 0.14 7092 -1 -1 1 0.02 -1 -1 29816 -1 -1 37 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63012 31 32 337 253 1 197 100 17 17 289 -1 unnamed_device 22.8 MiB 1.43 1081 61.5 MiB 1.00 0.02 3.42729 -118.651 -3.42729 3.42729 1.00 0.000397562 0.000323586 0.0377032 0.0320848 32 3087 28 6.89349e+06 521472 586450. 2029.24 4.05 0.1167 0.101996 25474 144626 -1 2382 20 1597 2564 232622 49062 0 0 232622 49062 2564 2070 0 0 9699 7951 0 0 16523 12638 0 0 2564 2200 0 0 107326 11113 0 0 93946 13090 0 0 2564 0 0 967 1111 958 8428 0 0 3.9767 3.9767 -147.338 -3.9767 0 0 744469. 2576.02 0.31 0.30 0.15 -1 -1 0.31 0.0248532 0.0226398 151 -1 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 13.53 vpr 61.79 MiB 0.18 7024 -1 -1 1 0.02 -1 -1 30272 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63276 32 32 408 320 1 257 90 17 17 289 -1 unnamed_device 23.0 MiB 2.46 1269 61.8 MiB 0.81 0.01 3.88558 -135.164 -3.88558 3.88558 0.94 0.000661716 0.00058112 0.0399124 0.0342278 34 3346 24 6.89349e+06 366440 618332. 2139.56 5.49 0.17288 0.152561 25762 151098 -1 2661 21 2070 2754 203424 45445 0 0 203424 45445 2754 2320 0 0 10053 8349 0 0 15348 12060 0 0 2754 2346 0 0 94160 9005 0 0 78355 11365 0 0 2754 0 0 684 737 525 6120 0 0 3.85869 3.85869 -152.762 -3.85869 0 0 787024. 2723.27 0.28 0.11 0.17 -1 -1 0.28 0.0256795 0.0229339 173 57 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 13.73 vpr 61.78 MiB 0.14 7108 -1 -1 1 0.02 -1 -1 29956 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63264 32 32 408 320 1 256 90 17 17 289 -1 unnamed_device 22.9 MiB 2.60 1386 61.8 MiB 0.91 0.01 3.98468 -138.518 -3.98468 3.98468 1.02 0.000474544 0.000395119 0.0429152 0.0345832 34 3923 28 6.89349e+06 366440 618332. 2139.56 5.71 0.154811 0.133011 25762 151098 -1 2968 23 2523 3596 285551 63199 0 0 285551 63199 3596 3062 0 0 13089 10550 0 0 20146 15383 0 0 3596 3289 0 0 122019 15390 0 0 123105 15525 0 0 3596 0 0 1073 1557 1504 10580 0 0 4.71758 4.71758 -174.595 -4.71758 0 0 787024. 2723.27 0.27 0.30 0.15 -1 -1 0.27 0.0333119 0.0292177 171 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 13.86 vpr 62.04 MiB 0.15 7088 -1 -1 1 0.02 -1 -1 29956 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63524 32 32 400 316 1 257 91 17 17 289 -1 unnamed_device 23.5 MiB 2.72 1399 62.0 MiB 0.71 0.02 3.47514 -119.109 -3.47514 3.47514 1.00 0.00108421 0.000895425 0.0281093 0.024636 34 3794 45 6.89349e+06 380534 618332. 2139.56 5.96 0.159386 0.141257 25762 151098 -1 2828 21 2017 2940 219032 49461 0 0 219032 49461 2940 2249 0 0 10902 8829 0 0 16390 12921 0 0 2940 2549 0 0 99598 10456 0 0 86262 12457 0 0 2940 0 0 923 1324 1472 9081 0 0 3.6201 3.6201 -141.543 -3.6201 0 0 787024. 2723.27 0.31 0.14 0.18 -1 -1 0.31 0.0244268 0.0218437 172 62 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 13.64 vpr 61.45 MiB 0.13 6828 -1 -1 1 0.02 -1 -1 29836 -1 -1 19 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62924 30 32 299 247 1 183 81 17 17 289 -1 unnamed_device 22.7 MiB 2.30 812 61.4 MiB 0.88 0.02 3.08116 -100.784 -3.08116 3.08116 1.12 0.000344943 0.000284774 0.0258758 0.0224472 34 2290 21 6.89349e+06 267783 618332. 2139.56 5.57 0.121528 0.10607 25762 151098 -1 1802 19 1298 1839 126582 30898 0 0 126582 30898 1839 1635 0 0 6854 5527 0 0 10271 8076 0 0 1839 1699 0 0 53259 7179 0 0 52520 6782 0 0 1839 0 0 541 562 467 4545 0 0 3.1912 3.1912 -122.846 -3.1912 0 0 787024. 2723.27 0.26 0.27 0.17 -1 -1 0.26 0.0201017 0.0180893 120 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 13.97 vpr 61.67 MiB 0.15 7112 -1 -1 1 0.02 -1 -1 29864 -1 -1 26 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63152 30 32 386 306 1 241 88 17 17 289 -1 unnamed_device 22.9 MiB 3.73 1192 61.7 MiB 0.62 0.01 4.05614 -126.886 -4.05614 4.05614 0.94 0.000631957 0.00054969 0.0284947 0.0245288 34 3073 26 6.89349e+06 366440 618332. 2139.56 5.12 0.151338 0.133389 25762 151098 -1 2450 19 2063 2814 198608 46073 0 0 198608 46073 2814 2388 0 0 10063 8434 0 0 15196 11896 0 0 2814 2553 0 0 82934 10201 0 0 84787 10601 0 0 2814 0 0 751 783 845 6733 0 0 4.66738 4.66738 -159.705 -4.66738 0 0 787024. 2723.27 0.31 0.25 0.15 -1 -1 0.31 0.0274888 0.0248414 166 58 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 13.88 vpr 62.29 MiB 0.15 7048 -1 -1 1 0.02 -1 -1 30320 -1 -1 30 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 470 382 1 316 94 17 17 289 -1 unnamed_device 23.4 MiB 2.03 1513 62.3 MiB 1.02 0.01 3.69891 -128.314 -3.69891 3.69891 1.00 0.000538319 0.000464688 0.0395916 0.0338071 36 3668 34 6.89349e+06 422815 648988. 2245.63 5.85 0.176379 0.154233 26050 158493 -1 2947 22 1942 1982 160381 34314 0 0 160381 34314 1982 1959 0 0 7280 5928 0 0 10264 8224 0 0 1982 1973 0 0 75819 6994 0 0 63054 9236 0 0 1982 0 0 40 33 36 2171 0 0 4.09395 4.09395 -149.168 -4.09395 0 0 828058. 2865.25 0.30 0.18 0.15 -1 -1 0.30 0.0327675 0.0295438 204 106 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 14.77 vpr 61.97 MiB 0.11 7136 -1 -1 1 0.02 -1 -1 30164 -1 -1 29 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63456 31 32 427 343 1 278 92 17 17 289 -1 unnamed_device 23.2 MiB 2.80 1323 62.0 MiB 0.97 0.01 4.04034 -133.634 -4.04034 4.04034 0.96 0.000487123 0.000423359 0.0400909 0.0341249 34 3361 47 6.89349e+06 408721 618332. 2139.56 6.58 0.197811 0.173216 25762 151098 -1 2605 22 2176 2791 195077 46360 0 0 195077 46360 2791 2394 0 0 10506 8746 0 0 16006 12576 0 0 2791 2440 0 0 81784 10087 0 0 81199 10117 0 0 2791 0 0 615 734 597 6623 0 0 4.67285 4.67285 -162.115 -4.67285 0 0 787024. 2723.27 0.28 0.19 0.18 -1 -1 0.28 0.0265565 0.0237644 185 79 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 14.35 vpr 61.81 MiB 0.11 7328 -1 -1 1 0.02 -1 -1 30140 -1 -1 28 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63292 30 32 407 331 1 261 90 17 17 289 -1 unnamed_device 23.0 MiB 3.05 1401 61.8 MiB 1.07 0.01 3.43529 -112.638 -3.43529 3.43529 1.06 0.000432388 0.000360496 0.0595085 0.0526332 34 3557 26 6.89349e+06 394628 618332. 2139.56 5.55 0.169857 0.150141 25762 151098 -1 2851 20 2254 3155 233608 52429 0 0 233608 52429 3155 2794 0 0 11609 9675 0 0 17219 13571 0 0 3155 2973 0 0 99233 11680 0 0 99237 11736 0 0 3155 0 0 901 1192 1223 8917 0 0 3.74735 3.74735 -140.421 -3.74735 0 0 787024. 2723.27 0.30 0.18 0.15 -1 -1 0.30 0.0257461 0.0231437 175 83 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 14.95 vpr 62.00 MiB 0.10 7016 -1 -1 1 0.02 -1 -1 29952 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63492 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 23.2 MiB 3.28 1353 62.0 MiB 0.97 0.01 4.13624 -144.048 -4.13624 4.13624 1.03 0.000519215 0.000441444 0.0406052 0.034728 36 3108 25 6.89349e+06 366440 648988. 2245.63 6.15 0.177028 0.155812 26050 158493 -1 2672 20 2154 2993 194324 44226 0 0 194324 44226 2993 2489 0 0 10561 8592 0 0 15725 12281 0 0 2993 2668 0 0 79379 9375 0 0 82673 8821 0 0 2993 0 0 839 749 667 6926 0 0 4.56985 4.56985 -170.318 -4.56985 0 0 828058. 2865.25 0.33 0.21 0.15 -1 -1 0.33 0.0429553 0.0403949 177 58 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 14.36 vpr 61.85 MiB 0.11 7104 -1 -1 1 0.02 -1 -1 30016 -1 -1 30 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63336 29 32 391 320 1 251 91 17 17 289 -1 unnamed_device 23.2 MiB 3.24 1333 61.9 MiB 0.99 0.03 3.58265 -113.112 -3.58265 3.58265 0.96 0.000425944 0.000350746 0.0360593 0.0308226 34 3067 25 6.89349e+06 422815 618332. 2139.56 5.04 0.167826 0.146597 25762 151098 -1 2525 19 1673 2287 144200 34696 0 0 144200 34696 2287 1835 0 0 8545 7061 0 0 12877 10250 0 0 2287 1947 0 0 60752 6480 0 0 57452 7123 0 0 2287 0 0 614 491 522 5456 0 0 3.3527 3.3527 -125.781 -3.3527 0 0 787024. 2723.27 0.28 0.29 0.15 -1 -1 0.28 0.024379 0.0220571 170 81 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 13.54 vpr 61.07 MiB 0.08 6760 -1 -1 1 0.03 -1 -1 29752 -1 -1 16 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62532 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 22.6 MiB 1.02 897 61.1 MiB 0.64 0.01 3.037 -110.466 -3.037 3.037 1.05 0.000414315 0.00034752 0.026713 0.0232093 34 2283 20 6.89349e+06 225501 618332. 2139.56 6.53 0.119121 0.104292 25762 151098 -1 1907 20 1326 2174 157313 35987 0 0 157313 35987 2174 1825 0 0 8045 6430 0 0 11828 9252 0 0 2174 1879 0 0 65910 8525 0 0 67182 8076 0 0 2174 0 0 848 995 1004 6983 0 0 3.08851 3.08851 -126.189 -3.08851 0 0 787024. 2723.27 0.25 0.56 0.17 -1 -1 0.25 0.0218692 0.0196839 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 15.66 vpr 61.86 MiB 0.09 6876 -1 -1 1 0.02 -1 -1 29856 -1 -1 27 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63344 32 32 408 320 1 259 91 17 17 289 -1 unnamed_device 23.0 MiB 2.52 1338 61.9 MiB 0.92 0.01 4.05227 -138.63 -4.05227 4.05227 1.03 0.000686415 0.000556771 0.0381711 0.030528 36 3107 28 6.89349e+06 380534 648988. 2245.63 7.75 0.183891 0.160609 26050 158493 -1 2495 18 2014 2773 195909 44116 0 0 195909 44116 2773 2388 0 0 9960 8020 0 0 14453 11410 0 0 2773 2527 0 0 82829 10071 0 0 83121 9700 0 0 2773 0 0 759 741 897 7204 0 0 4.38525 4.38525 -163.152 -4.38525 0 0 828058. 2865.25 0.32 0.19 0.17 -1 -1 0.32 0.0230905 0.0208151 174 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 16.88 vpr 61.84 MiB 0.09 6996 -1 -1 1 0.01 -1 -1 29888 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63324 32 32 408 320 1 263 89 17 17 289 -1 unnamed_device 22.9 MiB 3.78 1388 61.8 MiB 1.02 0.01 4.06714 -138.238 -4.06714 4.06714 1.08 0.000357853 0.000304221 0.0434713 0.0378936 36 3290 21 6.89349e+06 352346 648988. 2245.63 8.09 0.252765 0.222627 26050 158493 -1 2907 22 2500 3553 275860 60310 0 0 275860 60310 3553 3122 0 0 12692 10500 0 0 18560 14600 0 0 3553 3270 0 0 118472 14492 0 0 119030 14326 0 0 3553 0 0 1053 1096 1089 9019 0 0 4.48298 4.48298 -171.449 -4.48298 0 0 828058. 2865.25 0.32 0.11 0.18 -1 -1 0.32 0.0234176 0.0206957 176 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 15.24 vpr 61.70 MiB 0.10 6868 -1 -1 1 0.02 -1 -1 29956 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63176 32 32 316 268 1 204 83 17 17 289 -1 unnamed_device 22.8 MiB 2.57 992 61.7 MiB 1.08 0.01 2.7913 -97.3573 -2.7913 2.7913 1.11 0.000581418 0.000514758 0.050793 0.0456596 34 2470 46 6.89349e+06 267783 618332. 2139.56 7.07 0.186733 0.166398 25762 151098 -1 2044 20 1411 1674 124187 28474 0 0 124187 28474 1674 1600 0 0 6184 4953 0 0 9058 7096 0 0 1674 1612 0 0 51267 7084 0 0 54330 6129 0 0 1674 0 0 263 216 225 2944 0 0 2.98151 2.98151 -115.549 -2.98151 0 0 787024. 2723.27 0.31 0.11 0.16 -1 -1 0.31 0.0186071 0.0165745 128 47 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 12.98 vpr 61.00 MiB 0.10 6732 -1 -1 1 0.02 -1 -1 29924 -1 -1 17 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62460 31 32 277 222 1 164 80 17 17 289 -1 unnamed_device 22.6 MiB 1.24 675 61.0 MiB 0.73 0.01 3.07 -102.832 -3.07 3.07 1.10 0.000407649 0.000347186 0.0251696 0.0216164 32 2220 30 6.89349e+06 239595 586450. 2029.24 4.75 0.102969 0.0911833 25474 144626 -1 1756 19 1316 2022 145297 35554 0 0 145297 35554 2022 1710 0 0 7538 6313 0 0 12517 9510 0 0 2022 1794 0 0 61034 8254 0 0 60164 7973 0 0 2022 0 0 706 761 810 6085 0 0 3.28601 3.28601 -129.038 -3.28601 0 0 744469. 2576.02 0.26 0.58 0.17 -1 -1 0.26 0.0220736 0.019669 112 -1 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 15.34 vpr 61.64 MiB 0.11 6972 -1 -1 1 0.00 -1 -1 29800 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63124 32 32 382 304 1 240 89 17 17 289 -1 unnamed_device 22.9 MiB 2.49 1229 61.6 MiB 1.07 0.01 3.66728 -121.118 -3.66728 3.66728 1.07 0.00042875 0.000354088 0.0393725 0.0336227 34 2812 33 6.89349e+06 352346 618332. 2139.56 6.88 0.172244 0.150605 25762 151098 -1 2385 23 1792 2235 158309 36360 0 0 158309 36360 2235 1947 0 0 8204 6713 0 0 12784 9958 0 0 2235 1995 0 0 65392 8182 0 0 67459 7565 0 0 2235 0 0 443 468 352 4448 0 0 3.94539 3.94539 -143.3 -3.94539 0 0 787024. 2723.27 0.32 0.14 0.17 -1 -1 0.32 0.0315658 0.0235143 158 56 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 15.49 vpr 61.77 MiB 0.09 7028 -1 -1 1 0.02 -1 -1 30016 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63248 32 32 407 331 1 263 90 17 17 289 -1 unnamed_device 23.2 MiB 3.50 1401 61.8 MiB 1.39 0.01 4.22974 -133.572 -4.22974 4.22974 1.07 0.000494106 0.000415443 0.0745647 0.0664817 36 3088 23 6.89349e+06 366440 648988. 2245.63 6.04 0.203645 0.180508 26050 158493 -1 2628 21 1717 2080 151399 34775 0 0 151399 34775 2080 1902 0 0 7702 6266 0 0 11016 9036 0 0 2080 1942 0 0 65495 7795 0 0 63026 7834 0 0 2080 0 0 363 379 317 4123 0 0 4.43365 4.43365 -155.141 -4.43365 0 0 828058. 2865.25 0.33 0.14 0.17 -1 -1 0.33 0.0240608 0.0214184 172 81 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 21.30 vpr 61.91 MiB 0.11 7180 -1 -1 1 0.02 -1 -1 30000 -1 -1 41 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63400 32 32 400 286 1 232 105 17 17 289 -1 unnamed_device 23.1 MiB 1.41 1117 61.9 MiB 0.71 0.02 3.94478 -129.566 -3.94478 3.94478 1.05 0.000498842 0.000413716 0.0279651 0.0233634 36 3141 48 6.89349e+06 577847 648988. 2245.63 15.14 0.304814 0.26707 26050 158493 -1 2263 22 1886 3159 233959 52236 0 0 233959 52236 3159 2407 0 0 11284 8831 0 0 16594 13025 0 0 3159 2587 0 0 106006 11271 0 0 93757 14115 0 0 3159 0 0 1273 1511 1464 11275 0 0 4.29379 4.29379 -153.3 -4.29379 0 0 828058. 2865.25 0.30 0.14 0.18 -1 -1 0.30 0.0297299 0.0267953 183 -1 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 14.59 vpr 61.84 MiB 0.19 7088 -1 -1 1 0.01 -1 -1 30188 -1 -1 28 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63324 30 32 374 298 1 235 90 17 17 289 -1 unnamed_device 23.1 MiB 2.72 1188 61.8 MiB 1.00 0.01 3.1264 -106.707 -3.1264 3.1264 1.06 0.00037087 0.000299886 0.042034 0.0356001 34 2875 28 6.89349e+06 394628 618332. 2139.56 5.46 0.165985 0.144977 25762 151098 -1 2364 18 1752 2484 179179 41123 0 0 179179 41123 2484 2040 0 0 9133 7514 0 0 13995 10846 0 0 2484 2227 0 0 75234 9486 0 0 75849 9010 0 0 2484 0 0 732 879 848 6849 0 0 3.10715 3.10715 -120.163 -3.10715 0 0 787024. 2723.27 0.32 0.28 0.14 -1 -1 0.32 0.0244921 0.0220113 162 47 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 14.90 vpr 61.31 MiB 0.08 6812 -1 -1 1 0.02 -1 -1 30020 -1 -1 22 27 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62780 27 32 275 232 1 168 81 17 17 289 -1 unnamed_device 22.8 MiB 1.84 866 61.3 MiB 0.83 0.01 3.46649 -101.978 -3.46649 3.46649 0.94 0.000328223 0.000269805 0.0295419 0.0246638 30 1929 31 6.89349e+06 310065 556674. 1926.21 6.79 0.143868 0.125239 25186 138497 -1 1625 24 1086 1676 101238 22955 0 0 101238 22955 1676 1298 0 0 5641 4352 0 0 7794 6143 0 0 1676 1382 0 0 40979 4949 0 0 43472 4831 0 0 1676 0 0 590 721 676 5181 0 0 3.3164 3.3164 -119.334 -3.3164 0 0 706193. 2443.58 0.29 0.54 0.17 -1 -1 0.29 0.0211911 0.018998 114 26 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 17.33 vpr 62.17 MiB 0.12 7204 -1 -1 1 0.03 -1 -1 30216 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 494 379 1 323 96 17 17 289 -1 unnamed_device 23.6 MiB 3.06 1749 62.2 MiB 0.99 0.01 3.95894 -133.722 -3.95894 3.95894 1.06 0.000661298 0.000564875 0.0507914 0.0431175 38 3799 39 6.89349e+06 451003 678818. 2348.85 8.93 0.317022 0.279619 26626 170182 -1 3292 20 2628 3743 258449 56076 0 0 258449 56076 3743 2897 0 0 12673 10331 0 0 17466 13934 0 0 3743 3178 0 0 110147 13425 0 0 110677 12311 0 0 3743 0 0 1115 1292 1041 9547 0 0 4.57775 4.57775 -160.554 -4.57775 0 0 902133. 3121.57 0.31 0.11 0.19 -1 -1 0.31 0.0267657 0.0238014 218 85 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 24.20 vpr 62.14 MiB 0.18 7116 -1 -1 1 0.01 -1 -1 30240 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63636 31 32 457 373 1 306 94 17 17 289 -1 unnamed_device 23.3 MiB 4.95 1481 62.1 MiB 0.66 0.00 4.14544 -140.538 -4.14544 4.14544 0.98 0.000270505 0.0002189 0.0478607 0.0405049 34 3930 27 6.89349e+06 436909 618332. 2139.56 10.79 0.275643 0.236831 25762 151098 -1 2954 22 2674 3104 225646 51264 0 0 225646 51264 3104 2932 0 0 11472 9205 0 0 16909 13392 0 0 3104 2988 0 0 98343 10854 0 0 92714 11893 0 0 3104 0 0 430 488 435 5461 0 0 4.45225 4.45225 -161.385 -4.45225 0 0 787024. 2723.27 0.32 0.78 0.17 -1 -1 0.32 0.0285279 0.025562 201 105 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 16.63 vpr 61.61 MiB 0.10 6820 -1 -1 1 0.01 -1 -1 29744 -1 -1 22 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63084 32 32 356 305 1 245 86 17 17 289 -1 unnamed_device 22.8 MiB 4.08 1189 61.6 MiB 0.72 0.00 3.32419 -111.999 -3.32419 3.32419 0.95 0.000352309 0.000288073 0.0410774 0.0351429 34 3203 42 6.89349e+06 310065 618332. 2139.56 5.91 0.176171 0.154824 25762 151098 -1 2557 20 1874 2184 211930 44463 0 0 211930 44463 2184 2062 0 0 8177 6692 0 0 12578 9854 0 0 2184 2085 0 0 95865 11700 0 0 90942 12070 0 0 2184 0 0 310 352 298 3764 0 0 3.973 3.973 -138.25 -3.973 0 0 787024. 2723.27 0.28 0.61 0.14 -1 -1 0.28 0.0212852 0.0189834 150 86 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 15.56 vpr 61.78 MiB 0.18 6948 -1 -1 1 0.02 -1 -1 29804 -1 -1 23 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63264 32 32 365 283 1 225 87 17 17 289 -1 unnamed_device 22.9 MiB 3.22 1219 61.8 MiB 1.20 0.01 3.66075 -126.656 -3.66075 3.66075 1.16 0.000954584 0.000782852 0.0459112 0.0389376 34 3136 25 6.89349e+06 324158 618332. 2139.56 4.73 0.164559 0.143431 25762 151098 -1 2532 24 1842 2695 207853 46122 0 0 207853 46122 2695 2312 0 0 10147 8206 0 0 15190 11972 0 0 2695 2379 0 0 90530 10561 0 0 86596 10692 0 0 2695 0 0 853 994 883 7439 0 0 3.89866 3.89866 -148.468 -3.89866 0 0 787024. 2723.27 0.32 0.63 0.18 -1 -1 0.32 0.0327563 0.029298 152 31 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 14.22 vpr 62.12 MiB 0.22 7164 -1 -1 1 0.01 -1 -1 30140 -1 -1 30 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63616 31 32 445 338 1 280 93 17 17 289 -1 unnamed_device 23.4 MiB 3.66 1413 62.1 MiB 1.14 0.01 3.79525 -129.637 -3.79525 3.79525 1.05 0.0005977 0.00051506 0.0489619 0.0419792 34 3321 22 6.89349e+06 422815 618332. 2139.56 3.65 0.187912 0.164689 25762 151098 -1 2778 22 2350 3286 225275 52276 0 0 225275 52276 3286 2654 0 0 12204 10263 0 0 18610 14743 0 0 3286 2743 0 0 96467 10415 0 0 91422 11458 0 0 3286 0 0 936 1250 1167 9559 0 0 3.90166 3.90166 -150.759 -3.90166 0 0 787024. 2723.27 0.24 0.51 0.13 -1 -1 0.24 0.0343414 0.0312228 193 50 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 13.65 vpr 61.95 MiB 0.22 7108 -1 -1 1 0.02 -1 -1 29964 -1 -1 28 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 376 300 1 235 90 17 17 289 -1 unnamed_device 23.3 MiB 2.67 1267 61.9 MiB 1.37 0.01 3.48849 -114.458 -3.48849 3.48849 1.06 0.000476603 0.00040479 0.0462694 0.0393787 34 3275 26 6.89349e+06 394628 618332. 2139.56 4.38 0.164008 0.142398 25762 151098 -1 2511 22 1671 2649 188626 43381 0 0 188626 43381 2649 2070 0 0 9582 7748 0 0 14590 11212 0 0 2649 2222 0 0 83884 9253 0 0 75272 10876 0 0 2649 0 0 978 1109 896 8120 0 0 3.907 3.907 -139.154 -3.907 0 0 787024. 2723.27 0.26 0.36 0.17 -1 -1 0.26 0.0264224 0.0234709 162 50 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 17.77 vpr 61.91 MiB 0.17 7016 -1 -1 1 0.02 -1 -1 30148 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63400 32 32 408 320 1 260 92 17 17 289 -1 unnamed_device 23.1 MiB 2.26 1211 61.9 MiB 1.29 0.01 4.01094 -134.526 -4.01094 4.01094 1.52 0.000515096 0.000431752 0.0512464 0.0443206 36 3227 44 6.89349e+06 394628 648988. 2245.63 7.15 0.189149 0.165985 26050 158493 -1 2507 22 2075 2782 196620 51322 0 0 196620 51322 2782 2321 0 0 10224 8294 0 0 14622 11557 0 0 2782 2400 0 0 81041 13743 0 0 85169 13007 0 0 2782 0 0 707 710 564 6293 0 0 4.40845 4.40845 -159.535 -4.40845 0 0 828058. 2865.25 0.28 0.91 0.16 -1 -1 0.28 0.0323499 0.0293286 173 61 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 15.18 vpr 61.80 MiB 0.16 7056 -1 -1 1 0.02 -1 -1 30004 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63288 32 32 406 319 1 260 92 17 17 289 -1 unnamed_device 23.0 MiB 3.37 1520 61.8 MiB 1.25 0.01 2.99985 -110.156 -2.99985 2.99985 1.10 0.000412536 0.000338454 0.0602608 0.0515826 34 3369 23 6.89349e+06 394628 618332. 2139.56 4.21 0.159364 0.138823 25762 151098 -1 2871 23 2051 2833 234434 51643 0 0 234434 51643 2833 2425 0 0 10873 9199 0 0 16479 13043 0 0 2833 2595 0 0 98113 12906 0 0 103303 11475 0 0 2833 0 0 782 1086 1167 7834 0 0 3.13881 3.13881 -132.382 -3.13881 0 0 787024. 2723.27 0.29 0.53 0.13 -1 -1 0.29 0.0306891 0.027278 175 61 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 13.86 vpr 61.10 MiB 0.07 6824 -1 -1 1 0.01 -1 -1 29980 -1 -1 21 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62564 29 32 291 242 1 178 82 17 17 289 -1 unnamed_device 22.6 MiB 1.55 848 61.1 MiB 1.00 0.01 3.2217 -104.791 -3.2217 3.2217 1.05 0.00038182 0.000318133 0.0289558 0.0238962 34 2127 22 6.89349e+06 295971 618332. 2139.56 5.85 0.14458 0.127776 25762 151098 -1 1760 20 1346 1803 125780 29658 0 0 125780 29658 1803 1496 0 0 6760 5537 0 0 9928 7939 0 0 1803 1535 0 0 56235 5970 0 0 49251 7181 0 0 1803 0 0 457 403 420 3997 0 0 3.04826 3.04826 -116.286 -3.04826 0 0 787024. 2723.27 0.26 0.48 0.21 -1 -1 0.26 0.0218827 0.019702 117 28 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 14.54 vpr 61.40 MiB 0.09 6836 -1 -1 1 0.01 -1 -1 29784 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62872 32 32 335 291 1 223 84 17 17 289 -1 unnamed_device 22.7 MiB 1.91 1164 61.4 MiB 1.20 0.01 3.48069 -107.364 -3.48069 3.48069 1.07 0.000387614 0.000322486 0.0247437 0.0213179 34 2700 24 6.89349e+06 281877 618332. 2139.56 5.80 0.126174 0.109784 25762 151098 -1 2245 21 1574 1888 127080 29797 0 0 127080 29797 1888 1728 0 0 7027 5579 0 0 10167 8106 0 0 1888 1841 0 0 54146 6157 0 0 51964 6386 0 0 1888 0 0 314 185 277 3292 0 0 3.7047 3.7047 -129.563 -3.7047 0 0 787024. 2723.27 0.25 0.58 0.16 -1 -1 0.25 0.0232792 0.0205649 136 79 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 14.94 vpr 61.93 MiB 0.17 7196 -1 -1 1 0.02 -1 -1 29824 -1 -1 24 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63420 31 32 367 283 1 225 87 17 17 289 -1 unnamed_device 23.1 MiB 2.68 1230 61.9 MiB 1.42 0.02 3.67795 -128.023 -3.67795 3.67795 1.12 0.000417881 0.000360348 0.0673138 0.0539577 34 2942 27 6.89349e+06 338252 618332. 2139.56 4.71 0.190855 0.162473 25762 151098 -1 2438 20 1950 2848 207831 46697 0 0 207831 46697 2848 2576 0 0 10540 8597 0 0 15713 12412 0 0 2848 2685 0 0 89450 10241 0 0 86432 10186 0 0 2848 0 0 898 1242 984 8472 0 0 4.16026 4.16026 -154.536 -4.16026 0 0 787024. 2723.27 0.27 0.51 0.15 -1 -1 0.27 0.0281277 0.0254243 153 29 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 13.92 vpr 61.36 MiB 0.24 6844 -1 -1 1 0.02 -1 -1 29992 -1 -1 21 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62836 29 32 301 258 1 193 82 17 17 289 -1 unnamed_device 22.8 MiB 2.91 1062 61.4 MiB 1.07 0.01 2.7553 -90.5273 -2.7553 2.7553 1.08 0.000285416 0.000232625 0.0737419 0.0680909 34 2338 26 6.89349e+06 295971 618332. 2139.56 4.15 0.168994 0.151483 25762 151098 -1 1939 20 1256 1467 107217 24513 0 0 107217 24513 1467 1445 0 0 5416 4411 0 0 7853 6201 0 0 1467 1454 0 0 43921 5962 0 0 47093 5040 0 0 1467 0 0 211 203 193 2520 0 0 2.92126 2.92126 -108.663 -2.92126 0 0 787024. 2723.27 0.28 0.43 0.16 -1 -1 0.28 0.0177843 0.0160196 123 48 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 13.93 vpr 61.10 MiB 0.08 6800 -1 -1 1 0.02 -1 -1 29828 -1 -1 18 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62568 32 32 315 257 1 194 82 17 17 289 -1 unnamed_device 22.5 MiB 3.74 1030 61.1 MiB 1.06 0.01 3.0872 -111.835 -3.0872 3.0872 1.10 0.000400895 0.000323141 0.0449798 0.0391164 34 2438 21 6.89349e+06 253689 618332. 2139.56 3.69 0.14084 0.123183 25762 151098 -1 2132 19 1584 2268 166708 35946 0 0 166708 35946 2268 1747 0 0 7869 6342 0 0 12067 9048 0 0 2268 1882 0 0 71771 8233 0 0 70465 8694 0 0 2268 0 0 684 734 826 5952 0 0 3.21315 3.21315 -133.861 -3.21315 0 0 787024. 2723.27 0.29 0.26 0.20 -1 -1 0.29 0.0200424 0.0179607 127 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 13.97 vpr 61.71 MiB 0.20 7160 -1 -1 1 0.01 -1 -1 29944 -1 -1 26 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63192 31 32 389 309 1 242 89 17 17 289 -1 unnamed_device 23.0 MiB 3.28 1129 61.7 MiB 1.22 0.01 3.37794 -115.19 -3.37794 3.37794 1.18 0.000528427 0.000450386 0.0490754 0.0417661 34 2844 23 6.89349e+06 366440 618332. 2139.56 3.67 0.174767 0.152857 25762 151098 -1 2334 21 2263 3074 216426 50235 0 0 216426 50235 3074 2596 0 0 11343 9458 0 0 17168 13509 0 0 3074 2718 0 0 93037 11086 0 0 88730 10868 0 0 3074 0 0 811 1027 794 7542 0 0 3.5671 3.5671 -140.679 -3.5671 0 0 787024. 2723.27 0.30 0.33 0.18 -1 -1 0.30 0.025497 0.0229048 164 60 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 15.28 vpr 61.16 MiB 0.24 6856 -1 -1 1 0.01 -1 -1 29796 -1 -1 21 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62632 31 32 310 264 1 196 84 17 17 289 -1 unnamed_device 22.4 MiB 3.10 866 61.2 MiB 1.13 0.01 2.66772 -87.396 -2.66772 2.66772 1.10 0.000392072 0.000337722 0.0328175 0.0279435 34 2328 26 6.89349e+06 295971 618332. 2139.56 5.23 0.12867 0.111981 25762 151098 -1 1894 21 1248 1582 119667 27681 0 0 119667 27681 1582 1375 0 0 6002 4835 0 0 9019 7229 0 0 1582 1568 0 0 51445 6257 0 0 50037 6417 0 0 1582 0 0 334 341 186 3111 0 0 2.89721 2.89721 -108.587 -2.89721 0 0 787024. 2723.27 0.24 0.46 0.15 -1 -1 0.24 0.0219009 0.0192694 125 49 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 13.60 vpr 61.72 MiB 0.23 7024 -1 -1 1 0.01 -1 -1 29992 -1 -1 25 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63200 32 32 384 308 1 242 89 17 17 289 -1 unnamed_device 22.9 MiB 4.93 1156 61.7 MiB 0.39 0.01 3.34119 -109.863 -3.34119 3.34119 0.91 0.000316865 0.00026286 0.0233302 0.0196796 30 3148 21 6.89349e+06 352346 556674. 1926.21 2.97 0.102375 0.0902736 25186 138497 -1 2329 19 1442 2091 124674 29711 0 0 124674 29711 2091 1751 0 0 7134 5517 0 0 9488 7693 0 0 2091 1798 0 0 51103 6668 0 0 52767 6284 0 0 2091 0 0 649 775 928 6793 0 0 3.6785 3.6785 -135.516 -3.6785 0 0 706193. 2443.58 0.26 0.33 0.15 -1 -1 0.26 0.0324287 0.0294686 161 56 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 16.16 vpr 62.24 MiB 0.28 7188 -1 -1 1 0.03 -1 -1 29924 -1 -1 31 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63732 31 32 424 341 1 277 94 17 17 289 -1 unnamed_device 23.4 MiB 4.87 1345 62.2 MiB 0.80 0.01 3.93579 -131.271 -3.93579 3.93579 1.01 0.000565599 0.00048608 0.0420125 0.0357716 34 3494 32 6.89349e+06 436909 618332. 2139.56 4.89 0.161513 0.141805 25762 151098 -1 2844 21 2225 3311 241282 54978 0 0 241282 54978 3311 2682 0 0 12002 9899 0 0 18520 14442 0 0 3311 2882 0 0 103347 12418 0 0 100791 12655 0 0 3311 0 0 1086 1369 1371 9977 0 0 4.04544 4.04544 -153.264 -4.04544 0 0 787024. 2723.27 0.27 0.50 0.16 -1 -1 0.27 0.0298818 0.0267811 188 88 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 16.69 vpr 61.56 MiB 0.09 7048 -1 -1 1 0.02 -1 -1 29844 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63040 32 32 334 280 1 216 84 17 17 289 -1 unnamed_device 22.7 MiB 4.65 1193 61.6 MiB 0.57 0.01 3.0892 -107.436 -3.0892 3.0892 0.98 0.000227648 0.000188136 0.0310581 0.0268647 34 2850 45 6.89349e+06 281877 618332. 2139.56 5.77 0.159052 0.138957 25762 151098 -1 2319 19 1291 1828 130796 30069 0 0 130796 30069 1828 1540 0 0 6779 5438 0 0 10116 7895 0 0 1828 1632 0 0 56980 6536 0 0 53265 7028 0 0 1828 0 0 537 540 431 4450 0 0 3.23081 3.23081 -127.245 -3.23081 0 0 787024. 2723.27 0.26 0.53 0.16 -1 -1 0.26 0.019016 0.0170267 136 54 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 14.07 vpr 61.69 MiB 0.09 6860 -1 -1 1 0.01 -1 -1 29740 -1 -1 20 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63168 32 32 340 284 1 218 84 17 17 289 -1 unnamed_device 22.9 MiB 3.22 1090 61.7 MiB 0.90 0.01 3.0652 -107.715 -3.0652 3.0652 1.12 0.000417511 0.000362915 0.026455 0.0225303 34 2686 22 6.89349e+06 281877 618332. 2139.56 4.06 0.136275 0.119287 25762 151098 -1 2306 19 1492 1773 144161 31068 0 0 144161 31068 1773 1581 0 0 6507 5188 0 0 9430 7504 0 0 1773 1589 0 0 66754 6835 0 0 57924 8371 0 0 1773 0 0 281 288 174 3078 0 0 3.08861 3.08861 -127.976 -3.08861 0 0 787024. 2723.27 0.25 0.44 0.15 -1 -1 0.25 0.0202002 0.0181024 139 60 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 18.14 vpr 61.87 MiB 0.11 6876 -1 -1 1 0.02 -1 -1 30200 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63352 32 32 408 320 1 264 92 17 17 289 -1 unnamed_device 23.1 MiB 3.06 1271 61.9 MiB 0.95 0.01 3.75305 -130.3 -3.75305 3.75305 1.21 0.00044885 0.000375285 0.0539638 0.0459108 38 2950 22 6.89349e+06 394628 678818. 2348.85 7.26 0.25945 0.228209 26626 170182 -1 2504 23 1886 2380 165014 37289 0 0 165014 37289 2380 1998 0 0 8470 7025 0 0 11674 9641 0 0 2380 2080 0 0 73123 7794 0 0 66987 8751 0 0 2380 0 0 494 432 527 4927 0 0 4.14126 4.14126 -154.467 -4.14126 0 0 902133. 3121.57 0.30 0.71 0.17 -1 -1 0.30 0.0243853 0.0215355 178 49 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 18.42 vpr 61.63 MiB 0.09 6932 -1 -1 1 0.02 -1 -1 30000 -1 -1 27 29 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63112 29 32 371 297 1 231 88 17 17 289 -1 unnamed_device 23.0 MiB 3.97 1124 61.6 MiB 0.70 0.01 2.96685 -95.6188 -2.96685 2.96685 1.01 0.000420037 0.000352583 0.0294509 0.0249733 34 2651 23 6.89349e+06 380534 618332. 2139.56 7.15 0.214831 0.187587 25762 151098 -1 2014 21 1786 2349 160605 38009 0 0 160605 38009 2349 1986 0 0 8779 7128 0 0 12985 10331 0 0 2349 2092 0 0 68460 7813 0 0 65683 8659 0 0 2349 0 0 563 855 966 6739 0 0 2.99951 2.99951 -114.664 -2.99951 0 0 787024. 2723.27 0.33 0.95 0.16 -1 -1 0.33 0.0262855 0.0234144 158 54 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 21.19 vpr 62.20 MiB 0.18 7116 -1 -1 1 0.02 -1 -1 30112 -1 -1 29 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63692 32 32 470 382 1 315 93 17 17 289 -1 unnamed_device 23.2 MiB 2.49 1373 62.2 MiB 1.41 0.01 4.07998 -134.602 -4.07998 4.07998 1.26 0.000771795 0.000682618 0.0536506 0.0456433 40 3006 25 6.89349e+06 408721 706193. 2443.58 9.60 0.283853 0.24791 26914 176310 -1 2670 23 2386 2765 219408 54283 0 0 219408 54283 2765 2504 0 0 10722 9101 0 0 16900 13610 0 0 2765 2625 0 0 91080 13185 0 0 95176 13258 0 0 2765 0 0 379 301 348 4551 0 0 4.93859 4.93859 -163.686 -4.93859 0 0 926341. 3205.33 0.35 0.92 0.18 -1 -1 0.35 0.0586613 0.0520091 203 117 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 16.29 vpr 61.05 MiB 0.08 6976 -1 -1 1 0.01 -1 -1 29832 -1 -1 16 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62520 31 32 261 214 1 155 79 17 17 289 -1 unnamed_device 22.4 MiB 1.31 799 61.1 MiB 1.14 0.01 2.34777 -87.2363 -2.34777 2.34777 1.15 0.000360726 0.000311927 0.0251118 0.0211764 34 2182 35 6.89349e+06 225501 618332. 2139.56 7.93 0.155771 0.135937 25762 151098 -1 1718 20 1264 2028 146978 33408 0 0 146978 33408 2028 1584 0 0 7400 6007 0 0 10853 8545 0 0 2028 1661 0 0 60783 8262 0 0 63886 7349 0 0 2028 0 0 764 979 894 6399 0 0 2.90111 2.90111 -113.782 -2.90111 0 0 787024. 2723.27 0.26 0.65 0.17 -1 -1 0.26 0.0174605 0.015593 104 -1 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 14.37 vpr 61.84 MiB 0.08 7016 -1 -1 1 0.02 -1 -1 29892 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63320 32 32 419 339 1 274 92 17 17 289 -1 unnamed_device 22.9 MiB 3.12 1523 61.8 MiB 1.27 0.01 4.62868 -152.447 -4.62868 4.62868 1.12 0.000471967 0.000391511 0.0532749 0.0457071 34 3472 32 6.89349e+06 394628 618332. 2139.56 4.25 0.191611 0.166793 25762 151098 -1 2812 20 2314 3023 212770 49119 0 0 212770 49119 3023 2567 0 0 11187 9183 0 0 17076 13400 0 0 3023 2674 0 0 87962 11385 0 0 90499 9910 0 0 3023 0 0 709 929 612 6993 0 0 5.00304 5.00304 -179.036 -5.00304 0 0 787024. 2723.27 0.25 0.41 0.16 -1 -1 0.25 0.0283079 0.0254527 180 89 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 19.23 vpr 61.80 MiB 0.09 6848 -1 -1 1 0.02 -1 -1 29776 -1 -1 24 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63280 32 32 377 319 1 259 88 17 17 289 -1 unnamed_device 23.0 MiB 4.03 1271 61.8 MiB 0.71 0.01 4.06408 -137.108 -4.06408 4.06408 1.20 0.000416186 0.000352313 0.0430465 0.0362096 34 3693 49 6.89349e+06 338252 618332. 2139.56 8.12 0.232819 0.198747 25762 151098 -1 2775 24 2905 3633 301844 67314 0 0 301844 67314 3633 3225 0 0 13266 11207 0 0 20635 15755 0 0 3633 3342 0 0 131885 16775 0 0 128792 17010 0 0 3633 0 0 728 829 789 7435 0 0 4.52949 4.52949 -171.29 -4.52949 0 0 787024. 2723.27 0.30 0.92 0.18 -1 -1 0.30 0.0574132 0.0543526 161 93 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 14.97 vpr 61.82 MiB 0.20 7236 -1 -1 1 0.01 -1 -1 29976 -1 -1 26 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63308 32 32 402 317 1 253 90 17 17 289 -1 unnamed_device 23.0 MiB 2.99 1356 61.8 MiB 0.76 0.01 3.00785 -111.74 -3.00785 3.00785 1.25 0.000491218 0.000417894 0.0435619 0.037502 34 3110 30 6.89349e+06 366440 618332. 2139.56 4.82 0.187253 0.165081 25762 151098 -1 2447 19 1731 2370 160571 37522 0 0 160571 37522 2370 1896 0 0 8869 7388 0 0 13682 10908 0 0 2370 1998 0 0 66667 7880 0 0 66613 7452 0 0 2370 0 0 639 1139 1080 7484 0 0 3.33486 3.33486 -133.015 -3.33486 0 0 787024. 2723.27 0.27 0.44 0.14 -1 -1 0.27 0.0285159 0.0253811 172 59 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 19.09 vpr 61.81 MiB 0.10 7236 -1 -1 1 0.02 -1 -1 30168 -1 -1 32 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63296 32 32 501 383 1 322 96 17 17 289 -1 unnamed_device 23.5 MiB 3.15 1551 61.8 MiB 1.36 0.01 4.16434 -144.315 -4.16434 4.16434 1.26 0.000636208 0.000544674 0.0704583 0.0603343 42 3234 29 6.89349e+06 451003 744469. 2576.02 7.56 0.335386 0.293653 27202 183097 -1 2711 22 2373 2838 179902 42678 0 0 179902 42678 2838 2467 0 0 10305 8713 0 0 15615 12470 0 0 2838 2553 0 0 76875 7719 0 0 71431 8756 0 0 2838 0 0 465 442 471 5146 0 0 4.53025 4.53025 -167.395 -4.53025 0 0 949917. 3286.91 0.41 0.76 0.19 -1 -1 0.41 0.037091 0.0338913 223 81 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 13.36 vpr 61.04 MiB 0.07 6924 -1 -1 1 0.02 -1 -1 29784 -1 -1 16 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62504 30 32 249 232 1 160 78 17 17 289 -1 unnamed_device 22.5 MiB 1.80 834 61.0 MiB 1.02 0.06 2.56796 -82.7399 -2.56796 2.56796 1.17 0.000441065 0.000389489 0.0292719 0.0254231 34 1761 17 6.89349e+06 225501 618332. 2139.56 5.06 0.107677 0.0932924 25762 151098 -1 1538 13 599 609 47660 10898 0 0 47660 10898 609 601 0 0 2350 1867 0 0 3204 2628 0 0 609 605 0 0 19869 2742 0 0 21019 2455 0 0 609 0 0 10 6 11 656 0 0 2.32206 2.32206 -95.2384 -2.32206 0 0 787024. 2723.27 0.32 0.47 0.14 -1 -1 0.32 0.0113929 0.0102651 93 51 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 13.21 vpr 61.26 MiB 0.09 6712 -1 -1 1 0.02 -1 -1 29908 -1 -1 21 30 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62732 30 32 299 247 1 181 83 17 17 289 -1 unnamed_device 22.7 MiB 1.81 880 61.3 MiB 1.07 0.06 3.34479 -111.36 -3.34479 3.34479 1.13 0.000356481 0.000293859 0.0312047 0.02636 34 2229 20 6.89349e+06 295971 618332. 2139.56 4.92 0.131611 0.114828 25762 151098 -1 1822 22 1572 2314 158525 37694 0 0 158525 37694 2314 1820 0 0 8577 7264 0 0 13392 10443 0 0 2314 1932 0 0 63823 8242 0 0 68105 7993 0 0 2314 0 0 742 800 850 6470 0 0 3.5578 3.5578 -137.785 -3.5578 0 0 787024. 2723.27 0.28 0.50 0.16 -1 -1 0.28 0.0221337 0.0199103 124 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 15.13 vpr 61.04 MiB 0.09 6704 -1 -1 1 0.02 -1 -1 29712 -1 -1 19 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62500 32 32 315 257 1 199 83 17 17 289 -1 unnamed_device 22.5 MiB 3.26 1077 61.0 MiB 0.94 0.01 3.54849 -121.382 -3.54849 3.54849 1.15 0.000416644 0.000352624 0.0311093 0.0266344 34 3092 38 6.89349e+06 267783 618332. 2139.56 4.85 0.145102 0.127021 25762 151098 -1 2485 21 2032 3443 253502 56720 0 0 253502 56720 3443 2701 0 0 12144 10244 0 0 19043 14146 0 0 3443 2767 0 0 105110 13680 0 0 110319 13182 0 0 3443 0 0 1411 1653 1882 12067 0 0 3.5358 3.5358 -144.207 -3.5358 0 0 787024. 2723.27 0.27 0.52 0.22 -1 -1 0.27 0.0226261 0.0202091 129 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 15.31 vpr 60.94 MiB 0.10 6816 -1 -1 1 0.02 -1 -1 29948 -1 -1 24 25 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62404 25 32 259 222 1 162 81 17 17 289 -1 unnamed_device 22.5 MiB 3.02 777 60.9 MiB 1.05 0.01 3.0352 -84.8978 -3.0352 3.0352 1.04 0.00030462 0.00026267 0.048173 0.0437199 30 1649 21 6.89349e+06 338252 556674. 1926.21 5.68 0.146247 0.129382 25186 138497 -1 1427 20 925 1258 71304 17073 0 0 71304 17073 1258 1030 0 0 4291 3294 0 0 5692 4604 0 0 1258 1075 0 0 31637 3155 0 0 27168 3915 0 0 1258 0 0 333 322 349 3216 0 0 3.05551 3.05551 -100.386 -3.05551 0 0 706193. 2443.58 0.30 0.44 0.15 -1 -1 0.30 0.0181446 0.0160917 107 19 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 16.18 vpr 61.92 MiB 0.10 7032 -1 -1 1 0.04 -1 -1 30180 -1 -1 28 32 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 433 347 1 288 92 17 17 289 -1 unnamed_device 23.2 MiB 4.81 1470 61.9 MiB 0.86 0.01 3.64495 -129.115 -3.64495 3.64495 0.99 0.0004315 0.000360351 0.0513873 0.0442503 34 4210 46 6.89349e+06 394628 618332. 2139.56 4.64 0.182517 0.16008 25762 151098 -1 3003 24 2714 3940 257221 59735 0 0 257221 59735 3940 3084 0 0 13912 11308 0 0 21481 16410 0 0 3940 3290 0 0 106283 13239 0 0 107665 12404 0 0 3940 0 0 1226 1372 1097 10141 0 0 4.22456 4.22456 -158.54 -4.22456 0 0 787024. 2723.27 0.26 0.66 0.17 -1 -1 0.26 0.0292571 0.0260038 190 84 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 15.50 vpr 61.90 MiB 0.08 7248 -1 -1 1 0.02 -1 -1 29972 -1 -1 28 31 0 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63388 31 32 423 341 1 274 91 17 17 289 -1 unnamed_device 23.0 MiB 3.80 1302 61.9 MiB 1.07 0.01 3.92659 -130.107 -3.92659 3.92659 1.12 0.00054703 0.000467973 0.0472474 0.039784 34 3215 28 6.89349e+06 394628 618332. 2139.56 4.04 0.181747 0.1578 25762 151098 -1 2634 21 2075 2963 196390 47224 0 0 196390 47224 2963 2375 0 0 11101 9264 0 0 16797 13404 0 0 2963 2438 0 0 82736 9785 0 0 79830 9958 0 0 2963 0 0 888 1048 972 8037 0 0 4.02529 4.02529 -149.097 -4.02529 0 0 787024. 2723.27 0.32 0.57 0.18 -1 -1 0.32 0.0359751 0.032493 182 88 29 29 93 31 From af5927c8ca5a888beeafba6940ec09ce2800a7ae Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 4 Apr 2023 16:50:13 -0400 Subject: [PATCH 49/81] golden results updated for power_extended_arch_list using odin-ii --- .../config/golden_results.txt | 62 +++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) 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 12987c0077f..8192a606fd2 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time 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.25 vpr 62.61 MiB 0.04 9644 -1 -1 3 0.21 -1 -1 38396 -1 -1 68 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64116 99 130 363 493 1 258 298 12 12 144 clb auto 24.6 MiB 0.07 663 62.6 MiB 0.11 0.00 1.8822 -194.336 -1.8822 1.8822 0.24 0.000382968 0.000343673 0.0286061 0.0257295 46 1554 15 5.66058e+06 4.21279e+06 378970. 2631.74 1.17 0.161319 0.148198 1338 10 535 664 53989 17476 2.37728 2.37728 -235.992 -2.37728 0 0 486261. 3376.82 0.11 0.03 0.0146655 0.0138888 0.008293 0.2268 0.08234 0.6908 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 12.61 vpr 66.20 MiB 0.04 9692 -1 -1 15 0.38 -1 -1 38888 -1 -1 40 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67788 162 96 999 932 1 694 303 16 16 256 mult_36 auto 28.2 MiB 0.23 5322 66.2 MiB 0.35 0.01 19.6096 -1746.99 -19.6096 19.6096 0.52 0.00126317 0.00114318 0.127149 0.115302 48 12619 24 1.21132e+07 4.13576e+06 756778. 2956.16 7.81 0.71366 0.654224 9816 15 3082 6134 1533841 391381 22.3371 22.3371 -2005.48 -22.3371 0 0 968034. 3781.38 0.24 0.30 0.0746823 0.0707298 0.007649 0.3582 0.01718 0.6246 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 764.97 vpr 502.40 MiB 22.47 219856 -1 -1 129 278.26 -1 -1 98556 -1 -1 2018 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 514456 114 102 29578 29304 1 16035 2286 54 54 2916 clb auto 262.4 MiB 23.38 227724 483.7 MiB 37.62 0.30 70.0264 -59744.6 -70.0264 70.0264 26.54 0.0604162 0.0531777 7.54333 6.17009 100 333375 32 1.70873e+08 1.36042e+08 1.90496e+07 6532.79 257.93 27.4567 22.5699 306670 21 61491 243022 41249600 9105554 81.358 81.358 -74066.1 -81.358 -14.9014 -0.296573 2.40310e+07 8241.08 9.06 13.59 4.10018 3.55276 0.1043 0.4232 0.01037 0.5664 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.26 vpr 62.64 MiB 0.04 9720 -1 -1 3 0.23 -1 -1 38544 -1 -1 68 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64140 99 130 363 493 1 258 298 12 12 144 clb auto 24.6 MiB 0.06 663 62.6 MiB 0.11 0.00 1.8822 -194.336 -1.8822 1.8822 0.25 0.000391609 0.000351276 0.0285611 0.0256545 48 1452 28 5.66058e+06 4.21279e+06 394078. 2736.65 1.18 0.1642 0.150387 1389 9 580 714 65382 21872 2.44551 2.44551 -235.99 -2.44551 0 0 503207. 3494.49 0.12 0.03 0.0141597 0.0134524 0.009166 0.2036 0.07357 0.7229 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 11.65 vpr 66.07 MiB 0.03 9600 -1 -1 15 0.35 -1 -1 38772 -1 -1 40 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67660 162 96 999 932 1 694 303 16 16 256 mult_36 auto 28.0 MiB 0.24 5322 66.1 MiB 0.34 0.01 19.6096 -1746.99 -19.6096 19.6096 0.52 0.00133038 0.0012118 0.127668 0.115966 48 12405 30 1.21132e+07 4.13576e+06 756778. 2956.16 6.79 0.683048 0.62717 9856 19 3065 6120 1535975 390041 22.4737 22.4737 -1977.69 -22.4737 0 0 968034. 3781.38 0.24 0.32 0.0846503 0.0799206 0.007931 0.3467 0.01647 0.6368 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 731.71 vpr 491.28 MiB 22.34 219856 -1 -1 129 280.50 -1 -1 98576 -1 -1 1927 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 503072 114 102 29578 29304 1 15675 2195 53 53 2809 clb auto 263.6 MiB 41.75 220558 473.3 MiB 34.25 0.25 70.7419 -55186.5 -70.7419 70.7419 24.70 0.0558596 0.0488629 7.33444 5.95963 102 322183 32 1.63647e+08 1.31137e+08 1.86097e+07 6625.03 210.96 28.6918 23.5112 298494 21 59902 235919 37173360 7593608 81.5391 81.5391 -70356 -81.5391 -21.8619 -0.295467 2.33362e+07 8307.64 9.11 12.43 4.19459 3.62437 0.1041 0.4134 0.009934 0.5766 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.34 vpr 62.57 MiB 0.04 9568 -1 -1 3 0.22 -1 -1 38432 -1 -1 67 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64076 99 130 363 493 1 257 297 12 12 144 clb auto 24.5 MiB 0.07 673 62.6 MiB 0.12 0.00 1.94167 -196.58 -1.94167 1.94167 0.25 0.000346221 0.000307947 0.0292058 0.0260455 48 1433 10 5.66058e+06 4.1589e+06 411630. 2858.54 1.21 0.136722 0.124925 1377 8 513 691 64218 20015 2.4696 2.4696 -231.287 -2.4696 0 0 526257. 3654.56 0.12 0.03 0.0135519 0.0129095 0.008156 0.2239 0.08221 0.6939 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.46 vpr 66.46 MiB 0.03 9628 -1 -1 15 0.33 -1 -1 38824 -1 -1 39 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68060 162 96 999 932 1 695 302 16 16 256 mult_36 auto 28.4 MiB 0.23 5666 66.5 MiB 0.32 0.01 19.9735 -1743.29 -19.9735 19.9735 0.54 0.00122863 0.00110699 0.115518 0.104766 48 12630 43 1.21132e+07 4.08187e+06 791884. 3093.30 8.45 0.755897 0.691716 10104 17 3111 6516 2172181 572112 22.5517 22.5517 -1934.5 -22.5517 0 0 1.01413e+06 3961.44 0.26 0.41 0.0814017 0.0770673 0.00793 0.3511 0.01649 0.6324 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1077.87 vpr 566.48 MiB 20.66 219852 -1 -1 129 279.99 -1 -1 98600 -1 -1 1852 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 580076 114 102 29578 29304 1 15977 2120 53 53 2809 clb auto 258.8 MiB 256.48 229531 506.3 MiB 34.95 0.26 69.0853 -57025.3 -69.0853 69.0853 27.47 0.0585862 0.051315 7.51 6.08881 110 326182 32 1.63647e+08 1.27095e+08 2.07937e+07 7402.52 334.31 38.2123 31.3216 301429 19 55710 222602 47257119 11468846 79.5737 79.5737 -69219.7 -79.5737 -25.2972 -0.293253 2.64620e+07 9420.44 9.62 15.93 3.93878 3.44862 0.1129 0.4255 0.01019 0.5643 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.36 vpr 62.76 MiB 0.04 9568 -1 -1 3 0.24 -1 -1 38540 -1 -1 67 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64264 99 130 363 493 1 257 297 12 12 144 clb auto 24.7 MiB 0.07 673 62.8 MiB 0.12 0.00 1.94167 -196.58 -1.94167 1.94167 0.25 0.000360205 0.000321678 0.0301137 0.0269036 48 1473 9 5.66058e+06 4.1589e+06 411630. 2858.54 1.21 0.140584 0.128806 1342 9 566 770 56262 18545 2.41711 2.41711 -231.767 -2.41711 0 0 526257. 3654.56 0.12 0.03 0.0139513 0.0132529 0.009381 0.1992 0.07301 0.7278 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 10.85 vpr 66.54 MiB 0.03 9648 -1 -1 15 0.35 -1 -1 38852 -1 -1 39 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68132 162 96 999 932 1 695 302 16 16 256 mult_36 auto 28.5 MiB 0.23 5666 66.5 MiB 0.31 0.01 19.9735 -1750.63 -19.9735 19.9735 0.53 0.00118182 0.00106427 0.110744 0.100116 48 12982 33 1.21132e+07 4.08187e+06 791884. 3093.30 5.87 0.540173 0.495239 10146 17 3126 6504 2252334 601115 22.5962 22.5962 -1968.32 -22.5962 0 0 1.01413e+06 3961.44 0.26 0.41 0.0783195 0.0740884 0.008214 0.3387 0.01589 0.6454 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1050.74 vpr 537.89 MiB 21.02 219856 -1 -1 129 280.09 -1 -1 98600 -1 -1 1780 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 550800 114 102 29578 29304 1 15502 2048 51 51 2601 clb auto 257.7 MiB 314.52 220482 482.1 MiB 33.60 0.25 72.566 -54231 -72.566 72.566 25.12 0.0571776 0.050098 7.37189 6.06542 102 321076 45 1.52527e+08 1.23215e+08 1.80757e+07 6949.52 258.70 38.0259 31.0521 291680 19 55197 222162 39783809 8576628 83.4959 83.4959 -69059.3 -83.4959 -34.4534 -0.198615 2.25881e+07 8684.41 8.28 13.03 3.93602 3.43799 0.1057 0.3905 0.0094 0.6001 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.48 vpr 62.71 MiB 0.04 9640 -1 -1 3 0.22 -1 -1 38540 -1 -1 67 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64212 99 130 363 493 1 263 297 12 12 144 clb auto 24.6 MiB 0.07 691 62.7 MiB 0.12 0.00 2.10061 -200 -2.10061 2.10061 0.26 0.000378302 0.000338729 0.0296969 0.0266487 40 1601 31 5.66058e+06 4.1589e+06 362583. 2517.93 1.31 0.20899 0.192007 1460 11 537 719 64000 22471 2.51317 2.51317 -242.256 -2.51317 0 0 454087. 3153.38 0.12 0.03 0.0155622 0.0147052 0.008074 0.2306 0.07511 0.6943 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 12.28 vpr 66.48 MiB 0.03 9656 -1 -1 15 0.36 -1 -1 38780 -1 -1 36 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68080 162 96 999 932 1 700 299 16 16 256 mult_36 auto 28.8 MiB 0.25 5489 66.5 MiB 0.32 0.01 19.9012 -1769.79 -19.9012 19.9012 0.56 0.00121439 0.00109195 0.114237 0.103439 50 12057 50 1.21132e+07 3.92018e+06 848054. 3312.71 7.23 0.766683 0.704121 9869 16 2750 5495 2058150 510830 22.378 22.378 -2054.14 -22.378 0 0 1.09096e+06 4261.55 0.28 0.39 0.0800319 0.0758682 0.00812 0.3562 0.01601 0.6278 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1135.02 vpr 562.45 MiB 22.59 219980 -1 -1 129 285.93 -1 -1 98564 -1 -1 1779 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 575952 114 102 29578 29304 1 15923 2047 51 51 2601 clb auto 256.8 MiB 331.35 228096 517.1 MiB 35.68 0.30 71.7252 -57053 -71.7252 71.7252 28.05 0.0645233 0.0516104 7.59352 6.18556 106 320548 37 1.52527e+08 1.23161e+08 1.93524e+07 7440.37 309.30 39.8385 32.7078 298707 19 53350 211127 38191281 8324208 81.1088 81.1088 -73213.5 -81.1088 -29.2799 -0.195443 2.43688e+07 9369.00 8.79 13.16 4.05671 3.54125 0.113 0.3956 0.009768 0.5946 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.80 vpr 62.97 MiB 0.04 9616 -1 -1 3 0.21 -1 -1 38472 -1 -1 67 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64484 99 130 363 493 1 263 297 12 12 144 clb auto 24.9 MiB 0.07 691 63.0 MiB 0.12 0.00 2.10061 -200 -2.10061 2.10061 0.27 0.000364931 0.000325416 0.0288805 0.025927 46 1508 24 5.66058e+06 4.1589e+06 410918. 2853.60 0.61 0.128015 0.117505 1441 9 485 628 49459 15296 2.66751 2.66751 -236.181 -2.66751 0 0 527087. 3660.32 0.12 0.03 0.0141824 0.0134498 0.008732 0.2118 0.07063 0.7176 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 9.90 vpr 66.37 MiB 0.03 9668 -1 -1 15 0.37 -1 -1 38884 -1 -1 37 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67964 162 96 999 932 1 698 300 16 16 256 mult_36 auto 28.3 MiB 0.25 5407 66.4 MiB 0.35 0.01 19.9842 -1787.11 -19.9842 19.9842 0.58 0.00130504 0.00116669 0.130779 0.118626 48 12727 42 1.21132e+07 3.97408e+06 822491. 3212.85 4.68 0.571956 0.5251 9951 19 3153 6454 2311146 572660 22.8893 22.8893 -2134.59 -22.8893 0 0 1.05295e+06 4113.10 0.28 0.45 0.089201 0.0842817 0.008249 0.3401 0.01577 0.6441 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1159.56 vpr 506.89 MiB 18.03 219908 -1 -1 129 284.18 -1 -1 98476 -1 -1 1708 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 519056 114 102 29578 29304 1 15102 1976 50 50 2500 clb memory auto 258.6 MiB 429.56 211699 505.2 MiB 29.68 0.24 69.5325 -56561.1 -69.5325 69.5325 26.55 0.0565167 0.0494781 6.99966 5.79697 100 306243 36 1.47946e+08 1.19334e+08 1.76909e+07 7076.35 251.30 25.1671 20.7923 277916 17 49825 205234 36390678 8233272 80.3116 80.3116 -72628.1 -80.3116 -21.8969 -0.293253 2.21802e+07 8872.08 8.08 12.37 3.7406 3.27677 0.1094 0.3706 0.009656 0.6197 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.54 vpr 62.54 MiB 0.03 9632 -1 -1 3 0.24 -1 -1 38380 -1 -1 67 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64040 99 130 363 493 1 257 297 12 12 144 clb auto 24.5 MiB 0.06 669 62.5 MiB 0.11 0.00 2.02694 -203.157 -2.02694 2.02694 0.24 0.000346869 0.000309328 0.0270145 0.02415 44 1481 10 5.66058e+06 4.1589e+06 360780. 2505.42 1.50 0.174688 0.159811 1321 8 583 747 54244 18103 2.45265 2.45265 -235.234 -2.45265 0 0 470765. 3269.20 0.11 0.02 0.0128978 0.0122466 0.00808 0.2223 0.07981 0.6979 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 11.83 vpr 66.53 MiB 0.03 9568 -1 -1 15 0.34 -1 -1 38792 -1 -1 38 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68128 162 96 999 932 1 695 301 16 16 256 mult_36 auto 28.5 MiB 0.23 5223 66.5 MiB 0.32 0.01 19.9004 -1665.66 -19.9004 19.9004 0.51 0.00116876 0.00104973 0.113651 0.102517 52 12148 29 1.21132e+07 4.02797e+06 805949. 3148.24 7.02 0.654196 0.599419 9832 19 3168 6422 1703123 457090 22.3018 22.3018 -1896.64 -22.3018 0 0 1.06067e+06 4143.25 0.26 0.33 0.0835656 0.0788561 0.007899 0.361 0.01741 0.6216 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1014.72 vpr 496.85 MiB 22.41 220016 -1 -1 129 287.78 -1 -1 98544 -1 -1 1956 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 508776 114 102 29578 29304 1 16199 2224 54 54 2916 clb auto 260.3 MiB 151.03 227798 481.6 MiB 39.96 0.29 69.6183 -56969 -69.6183 69.6183 26.76 0.060113 0.0528122 7.72247 6.42618 104 332224 34 1.70873e+08 1.327e+08 1.97479e+07 6772.27 365.93 29.7035 24.562 309111 19 61314 241285 40252488 8185012 80.6948 80.6948 -72282.8 -80.6948 -14.8298 -0.172573 2.50445e+07 8588.64 8.98 13.38 4.00005 3.49664 0.1076 0.4264 0.01074 0.5629 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.62 vpr 62.68 MiB 0.04 9572 -1 -1 3 0.23 -1 -1 38512 -1 -1 67 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64188 99 130 363 493 1 257 297 12 12 144 clb auto 24.6 MiB 0.07 669 62.7 MiB 0.11 0.00 2.02694 -203.157 -2.02694 2.02694 0.24 0.000370532 0.00033136 0.0278795 0.0250187 46 1448 16 5.66058e+06 4.1589e+06 378970. 2631.74 1.51 0.210261 0.192663 1378 11 617 798 57857 19490 2.46726 2.46726 -239.183 -2.46726 0 0 486261. 3376.82 0.11 0.03 0.0156401 0.0147892 0.009156 0.2012 0.07189 0.7269 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 12.74 vpr 66.09 MiB 0.03 9620 -1 -1 15 0.38 -1 -1 38820 -1 -1 38 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67680 162 96 999 932 1 695 301 16 16 256 mult_36 auto 28.0 MiB 0.23 5220 66.1 MiB 0.34 0.01 19.9004 -1661.13 -19.9004 19.9004 0.54 0.00133501 0.00120294 0.127178 0.115559 52 11846 34 1.21132e+07 4.02797e+06 805949. 3148.24 7.74 0.729419 0.669866 9756 21 3340 6908 1850747 492310 22.276 22.276 -1897.98 -22.276 0 0 1.06067e+06 4143.25 0.26 0.37 0.0924007 0.0870573 0.008193 0.3477 0.0168 0.6355 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 996.20 vpr 490.48 MiB 24.63 219832 -1 -1 129 291.02 -1 -1 98636 -1 -1 1879 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 502256 114 102 29578 29304 1 15632 2147 53 53 2809 clb auto 260.8 MiB 179.71 218764 471.0 MiB 35.12 0.30 71.261 -56032.3 -71.261 71.261 25.50 0.0635842 0.0500181 7.52213 6.07216 106 322913 45 1.63647e+08 1.2855e+08 1.92313e+07 6846.31 311.61 31.3162 25.6762 297209 18 58362 230875 55109571 13621924 82.4184 82.4184 -70018.1 -82.4184 -21.1908 -0.293253 2.43532e+07 8669.70 9.59 19.07 3.92923 3.41521 0.1068 0.4172 0.01019 0.5727 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.44 vpr 62.59 MiB 0.04 9660 -1 -1 3 0.23 -1 -1 38432 -1 -1 67 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64088 99 130 363 493 1 263 297 12 12 144 clb auto 24.6 MiB 0.06 656 62.6 MiB 0.11 0.00 2.08915 -202.51 -2.08915 2.08915 0.24 0.000362807 0.000319997 0.028265 0.0253126 50 1476 12 5.66058e+06 4.1589e+06 406292. 2821.48 1.31 0.206132 0.189103 1437 9 584 772 82299 28377 2.65473 2.65473 -238.895 -2.65473 0 0 520805. 3616.70 0.12 0.03 0.0146884 0.0139572 0.007765 0.2378 0.0787 0.6835 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 11.83 vpr 66.50 MiB 0.03 9644 -1 -1 15 0.37 -1 -1 38736 -1 -1 37 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68092 162 96 999 932 1 693 300 16 16 256 mult_36 auto 28.5 MiB 0.27 5471 66.5 MiB 0.38 0.01 19.6487 -1775.32 -19.6487 19.6487 0.53 0.00131876 0.00119297 0.141064 0.128146 50 12117 23 1.21132e+07 3.97408e+06 780512. 3048.87 6.75 0.721836 0.663309 9993 19 3168 6274 2098911 544409 22.2675 22.2675 -2045.3 -22.2675 0 0 1.00276e+06 3917.05 0.25 0.41 0.0899997 0.0851023 0.007967 0.354 0.01625 0.6298 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 973.34 vpr 488.50 MiB 25.50 220016 -1 -1 129 293.64 -1 -1 98580 -1 -1 1929 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 500224 114 102 29578 29304 1 16195 2197 53 53 2809 clb auto 258.4 MiB 167.06 227737 469.1 MiB 36.43 0.29 71.301 -57111.4 -71.301 71.301 25.36 0.0589965 0.0515192 7.41036 6.04549 104 331845 39 1.63647e+08 1.31245e+08 1.89544e+07 6747.73 299.95 29.8618 24.5821 309120 20 61341 240325 48261093 10649367 80.233 80.233 -71585 -80.233 -21.3604 -0.218188 2.40419e+07 8558.89 8.53 16.14 4.2381 3.65764 0.107 0.4188 0.01049 0.5707 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.45 vpr 62.48 MiB 0.04 9712 -1 -1 3 0.23 -1 -1 38472 -1 -1 67 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63984 99 130 363 493 1 263 297 12 12 144 clb auto 24.4 MiB 0.06 656 62.5 MiB 0.11 0.00 2.08915 -202.51 -2.08915 2.08915 0.24 0.00036145 0.00032303 0.0284373 0.0255126 50 1495 9 5.66058e+06 4.1589e+06 406292. 2821.48 1.31 0.200311 0.183509 1478 9 566 740 74406 24834 2.69003 2.69003 -240.574 -2.69003 0 0 520805. 3616.70 0.12 0.03 0.0142864 0.0135762 0.008634 0.212 0.06986 0.7182 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 11.00 vpr 66.45 MiB 0.03 9616 -1 -1 15 0.37 -1 -1 38888 -1 -1 36 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68040 162 96 999 932 1 694 299 16 16 256 mult_36 auto 28.5 MiB 0.22 5411 66.4 MiB 0.34 0.01 19.7594 -1819.62 -19.7594 19.7594 0.53 0.00126378 0.00113608 0.124134 0.112337 48 12460 29 1.21132e+07 3.92018e+06 756778. 2956.16 6.02 0.633822 0.581381 10270 19 3490 7103 2249085 573244 22.1704 22.1704 -2061.79 -22.1704 0 0 968034. 3781.38 0.24 0.42 0.0896985 0.0848082 0.008277 0.3404 0.01598 0.6436 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1012.73 vpr 536.99 MiB 22.62 219988 -1 -1 129 290.29 -1 -1 98560 -1 -1 1844 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 549876 114 102 29578 29304 1 15489 2112 52 52 2704 clb auto 259.9 MiB 196.54 219477 459.3 MiB 34.28 0.26 68.654 -56992 -68.654 68.654 24.04 0.0576305 0.0505179 7.42933 6.11545 104 319830 25 1.58905e+08 1.26664e+08 1.82182e+07 6737.52 322.58 37.3851 30.6115 298716 19 58631 232925 44008842 9732711 79.3579 79.3579 -71244.2 -79.3579 -27.8746 -0.298787 2.31111e+07 8546.99 8.27 14.70 4.07522 3.56062 0.1061 0.4055 0.01052 0.5839 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 5.55 vpr 62.54 MiB 0.06 9268 -1 -1 3 0.35 -1 -1 35776 -1 -1 68 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64044 99 130 363 493 1 258 298 12 12 144 clb auto 24.1 MiB 0.10 730 62.5 MiB 0.43 0.01 1.86328 -196.275 -1.86328 1.86328 0.37 0.000834451 0.000743119 0.0551138 0.0479694 50 1577 12 5.66058e+06 4.21279e+06 406292. 2821.48 2.19 0.282352 0.254425 13526 77840 -1 1496 9 503 612 57866 18952 0 0 57866 18952 612 553 0 0 2619 2490 0 0 2859 2620 0 0 630 575 0 0 23272 6684 0 0 27874 6030 0 0 612 0 0 109 136 166 1313 0 0 2.46581 2.46581 -231.6 -2.46581 0 0 520805. 3616.70 0.14 0.05 0.08 -1 -1 0.14 0.0212174 0.0199449 0.00832 0.2557 0.07901 0.6653 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 15.83 vpr 66.67 MiB 0.05 9236 -1 -1 15 0.43 -1 -1 33840 -1 -1 40 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68272 162 96 999 932 1 694 303 16 16 256 mult_36 auto 28.4 MiB 0.36 5389 66.7 MiB 0.92 0.01 19.7676 -1782.41 -19.7676 19.7676 0.88 0.0017313 0.00156784 0.254738 0.231708 50 12648 42 1.21132e+07 4.13576e+06 780512. 3048.87 8.93 1.20218 1.10805 25484 153448 -1 9978 17 3114 6384 1919594 506731 0 0 1919594 506731 6384 3918 0 0 77963 76627 0 0 80991 78134 0 0 6838 4323 0 0 847617 167989 0 0 899801 175740 0 0 6384 0 0 3304 9373 8940 55487 0 0 22.5564 22.5564 -2004.38 -22.5564 0 0 1.00276e+06 3917.05 0.23 0.43 0.19 -1 -1 0.23 0.0875035 0.0824968 0.007637 0.3619 0.01676 0.6213 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 969.34 vpr 498.31 MiB 17.86 218824 -1 -1 129 257.61 -1 -1 99936 -1 -1 2018 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 510268 114 102 29578 29304 1 16035 2286 54 54 2916 clb auto 261.8 MiB 23.79 231009 484.8 MiB 79.40 0.55 69.6118 -57509.6 -69.6118 69.6118 29.66 0.068697 0.059864 12.6287 9.63498 100 337981 48 1.70873e+08 1.36042e+08 1.90496e+07 6532.79 440.80 39.7555 31.9314 408276 4062182 -1 309689 19 61153 243064 45563750 10348878 0 0 45563750 10348878 235465 77399 0 0 696328 640331 0 0 852314 702439 0 0 244715 93011 0 0 21636056 4363065 0 0 21898872 4472633 0 0 235465 0 0 181010 843167 840258 5564161 8092 12329 80.487 80.487 -72900.8 -80.487 -35.5126 -0.296573 2.40310e+07 8241.08 8.35 18.26 3.93 -1 -1 8.35 4.52454 3.83078 0.1047 0.4234 0.01042 0.5662 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.10 vpr 62.69 MiB 0.05 9436 -1 -1 3 0.20 -1 -1 35884 -1 -1 68 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64196 99 130 363 493 1 258 298 12 12 144 clb auto 24.3 MiB 0.09 730 62.7 MiB 0.33 0.01 1.86328 -196.275 -1.86328 1.86328 0.36 0.000626519 0.000540133 0.0466419 0.0407979 50 1497 11 5.66058e+06 4.21279e+06 406292. 2821.48 1.70 0.168991 0.152296 13526 77840 -1 1469 8 479 583 38459 12674 0 0 38459 12674 583 529 0 0 2252 2123 0 0 2482 2252 0 0 598 555 0 0 15519 3765 0 0 17025 3450 0 0 583 0 0 104 151 171 1303 0 0 2.43721 2.43721 -228.78 -2.43721 0 0 520805. 3616.70 0.15 0.04 0.10 -1 -1 0.15 0.0202434 0.0189885 0.009481 0.2292 0.07014 0.7006 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 19.31 vpr 66.71 MiB 0.05 9220 -1 -1 15 0.46 -1 -1 33972 -1 -1 40 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68316 162 96 999 932 1 694 303 16 16 256 mult_36 auto 28.4 MiB 0.35 5389 66.7 MiB 1.10 0.02 19.7676 -1782.41 -19.7676 19.7676 0.94 0.00348724 0.00320341 0.30784 0.280915 50 11914 30 1.21132e+07 4.13576e+06 780512. 3048.87 11.43 1.61 1.48896 25484 153448 -1 9918 17 3059 6137 1826360 482055 0 0 1826360 482055 6137 3777 0 0 74373 73057 0 0 77157 74512 0 0 6545 4189 0 0 805926 159831 0 0 856222 166689 0 0 6137 0 0 3118 8894 8432 53163 0 0 22.5576 22.5576 -2087.67 -22.5576 0 0 1.00276e+06 3917.05 0.33 0.65 0.16 -1 -1 0.33 0.147642 0.138644 0.007916 0.3475 0.01617 0.6363 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 979.90 vpr 496.06 MiB 21.32 218920 -1 -1 129 291.19 -1 -1 99892 -1 -1 1927 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 507964 114 102 29578 29304 1 15675 2195 53 53 2809 clb auto 262.1 MiB 48.99 223068 473.4 MiB 82.43 0.42 71.983 -55552.3 -71.983 71.983 28.76 0.0645628 0.0559133 11.7076 9.05186 100 334447 48 1.63647e+08 1.31137e+08 1.82848e+07 6509.36 385.07 38.773 31.3807 391934 3893229 -1 300932 19 60610 237999 47520995 10703009 0 0 47520995 10703009 230607 76905 0 0 705182 650136 0 0 857821 711547 0 0 240533 90623 0 0 22603475 4537403 0 0 22883377 4636395 0 0 230607 0 0 176836 815186 822674 5407227 7831 4457 81.379 81.379 -68107.2 -81.379 -38.5828 -0.295467 2.30694e+07 8212.69 7.49 21.91 3.73 -1 -1 7.49 6.01515 5.05843 0.1037 0.4111 0.00996 0.5789 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 5.70 vpr 62.78 MiB 0.06 9192 -1 -1 3 0.35 -1 -1 35832 -1 -1 67 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64284 99 130 363 493 1 257 297 12 12 144 clb auto 24.4 MiB 0.10 643 62.8 MiB 0.40 0.01 1.98361 -198.721 -1.98361 1.98361 0.39 0.000909149 0.000819937 0.0500907 0.0437278 36 1560 18 5.66058e+06 4.1589e+06 320299. 2224.30 2.56 0.324737 0.29686 12728 62292 -1 1388 9 557 739 50798 16925 0 0 50798 16925 739 619 0 0 2889 2653 0 0 3394 2889 0 0 767 643 0 0 19982 5389 0 0 23027 4732 0 0 739 0 0 182 234 140 1741 0 0 2.56234 2.56234 -236.181 -2.56234 0 0 396063. 2750.44 0.09 0.03 0.05 -1 -1 0.09 0.0136783 0.0128614 0.007571 0.2014 0.07451 0.7241 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 14.90 vpr 66.88 MiB 0.05 9208 -1 -1 15 0.49 -1 -1 34068 -1 -1 39 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68480 162 96 999 932 1 695 302 16 16 256 mult_36 auto 28.6 MiB 0.34 5408 66.9 MiB 0.95 0.02 19.8736 -1657.73 -19.8736 19.8736 0.86 0.00284733 0.00261786 0.288065 0.2649 46 12840 49 1.21132e+07 4.08187e+06 761464. 2974.47 7.48 1.13996 1.05892 25952 154797 -1 10191 19 3421 7200 2135800 532613 0 0 2135800 532613 7200 4387 0 0 85759 83202 0 0 90173 85959 0 0 7704 5052 0 0 981134 183341 0 0 963830 170672 0 0 7200 0 0 3812 10433 10438 59921 0 0 22.3795 22.3795 -1918.66 -22.3795 0 0 979054. 3824.43 0.32 0.53 0.19 -1 -1 0.32 0.109091 0.102956 0.007926 0.3478 0.01636 0.6358 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1047.00 vpr 513.52 MiB 22.09 218828 -1 -1 129 248.85 -1 -1 99728 -1 -1 1852 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 525848 114 102 29578 29304 1 15977 2120 53 53 2809 clb auto 258.7 MiB 272.36 223301 508.3 MiB 64.64 0.55 69.0458 -58211 -69.0458 69.0458 34.27 0.080048 0.0582582 9.96313 7.406 102 327157 50 1.63647e+08 1.27095e+08 1.94476e+07 6923.33 289.57 42.9957 34.8455 408308 4233793 -1 295571 17 56813 224539 44333458 9858744 0 0 44333458 9858744 216850 71654 0 0 700393 615690 0 0 856750 707045 0 0 225426 85595 0 0 20897271 4117638 0 0 21436768 4261122 0 0 216850 0 0 166594 735015 751354 5010294 7997 3920 79.1082 79.1082 -72996 -79.1082 -17.2768 -0.293253 2.43065e+07 8653.08 7.10 17.21 3.93 -1 -1 7.10 4.80465 4.13194 0.1089 0.4041 0.01016 0.5858 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.94 vpr 62.92 MiB 0.07 9280 -1 -1 3 0.35 -1 -1 35748 -1 -1 67 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64432 99 130 363 493 1 257 297 12 12 144 clb auto 24.5 MiB 0.10 643 62.9 MiB 0.40 0.01 1.98361 -198.721 -1.98361 1.98361 0.32 0.00100326 0.000905057 0.0533005 0.0467316 38 1629 18 5.66058e+06 4.1589e+06 334530. 2323.13 2.48 0.34861 0.317287 13012 66834 -1 1325 8 511 681 44384 15256 0 0 44384 15256 681 577 0 0 2787 2521 0 0 3376 2790 0 0 714 600 0 0 17105 4610 0 0 19721 4158 0 0 681 0 0 170 221 128 1612 0 0 2.62753 2.62753 -238.832 -2.62753 0 0 424691. 2949.24 0.14 0.05 0.08 -1 -1 0.14 0.0216536 0.0203708 0.008508 0.1882 0.06629 0.7455 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 16.00 vpr 66.66 MiB 0.04 9220 -1 -1 15 0.49 -1 -1 33872 -1 -1 39 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68260 162 96 999 932 1 695 302 16 16 256 mult_36 auto 28.3 MiB 0.41 5408 66.7 MiB 0.99 0.02 19.8736 -1657.73 -19.8736 19.8736 0.95 0.00306442 0.00282942 0.313296 0.287816 48 12476 41 1.21132e+07 4.08187e+06 791884. 3093.30 8.42 1.34931 1.25446 26208 159478 -1 9982 17 3095 6367 1848594 458072 0 0 1848594 458072 6367 3854 0 0 75209 73137 0 0 78596 75416 0 0 6777 4366 0 0 844250 155306 0 0 837395 145993 0 0 6367 0 0 3306 9336 8578 54153 0 0 22.3761 22.3761 -1884.29 -22.3761 0 0 1.01413e+06 3961.44 0.30 0.51 0.17 -1 -1 0.30 0.105299 0.0995052 0.008251 0.3376 0.01596 0.6464 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1184.15 vpr 498.71 MiB 21.10 218884 -1 -1 129 249.42 -1 -1 99928 -1 -1 1780 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 510676 114 102 29578 29304 1 15502 2048 51 51 2601 clb auto 261.7 MiB 290.92 227703 487.5 MiB 67.44 0.52 69.4573 -52576.1 -69.4573 69.4573 26.45 0.0725695 0.0636217 9.56071 7.48007 102 335734 46 1.52527e+08 1.23215e+08 1.80757e+07 6949.52 411.36 37.05 30.0696 380370 3944208 -1 299605 19 56163 223597 44490299 10139310 0 0 44490299 10139310 217234 70847 0 0 722082 637728 0 0 879790 729011 0 0 226528 84153 0 0 21072922 4304160 0 0 21371743 4313411 0 0 217234 0 0 167772 732973 749981 5062565 6875 5883 79.7615 79.7615 -67735.1 -79.7615 -30.4999 -0.198615 2.25881e+07 8684.41 6.90 16.30 3.71 -1 -1 6.90 4.2311 3.66196 0.1072 0.3923 0.009587 0.5981 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 5.75 vpr 63.20 MiB 0.06 9296 -1 -1 3 0.36 -1 -1 35732 -1 -1 67 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64716 99 130 363 493 1 263 297 12 12 144 clb auto 24.7 MiB 0.10 694 63.2 MiB 0.38 0.01 1.98449 -201.695 -1.98449 1.98449 0.42 0.000649741 0.000573037 0.055778 0.0488903 54 1434 10 5.66058e+06 4.1589e+06 470559. 3267.77 2.38 0.302967 0.272291 14864 95944 -1 1350 10 527 698 42700 13461 0 0 42700 13461 698 620 0 0 2467 2151 0 0 3279 2470 0 0 748 666 0 0 16358 3760 0 0 19150 3794 0 0 698 0 0 171 89 187 1541 0 0 2.45041 2.45041 -233.853 -2.45041 0 0 611595. 4247.19 0.12 0.03 0.07 -1 -1 0.12 0.0145611 0.0136908 0.008607 0.2501 0.08417 0.6657 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 17.34 vpr 66.81 MiB 0.03 9228 -1 -1 15 0.53 -1 -1 33884 -1 -1 36 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68416 162 96 999 932 1 700 299 16 16 256 mult_36 auto 28.3 MiB 0.35 5291 66.8 MiB 0.56 0.02 19.625 -1758.31 -19.625 19.625 0.57 0.00306835 0.00278431 0.158418 0.143533 56 12180 45 1.21132e+07 3.92018e+06 945639. 3693.90 10.75 1.18699 1.09748 28324 193488 -1 9603 20 3448 7165 1904288 531194 0 0 1904288 531194 7165 4519 0 0 92551 89452 0 0 97908 92824 0 0 7736 5125 0 0 873200 176702 0 0 825728 162572 0 0 7165 0 0 3748 10606 10678 55735 0 0 21.9438 21.9438 -2034.6 -21.9438 0 0 1.20516e+06 4707.66 0.40 0.75 0.19 -1 -1 0.40 0.179005 0.166532 0.0083 0.362 0.01694 0.6211 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1325.73 vpr 522.96 MiB 21.87 218768 -1 -1 129 257.20 -1 -1 99880 -1 -1 1779 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 535516 114 102 29578 29304 1 15923 2047 51 51 2601 clb auto 254.1 MiB 296.44 231937 510.7 MiB 71.04 0.50 72.2508 -55207.8 -72.2508 72.2508 29.82 0.0700313 0.0612206 10.0568 7.58509 106 335283 38 1.52527e+08 1.23161e+08 1.93524e+07 7440.37 525.65 36.4833 29.7267 399048 4353800 -1 303736 20 53569 213796 61922818 16618105 0 0 61922818 16618105 206289 68279 0 0 743902 639916 0 0 911943 750963 0 0 214991 80062 0 0 29585876 7469786 0 0 30259817 7609099 0 0 206289 0 0 159065 710648 723895 4799023 7878 7772 81.9801 81.9801 -70488.3 -81.9801 -17.1048 -0.292146 2.43688e+07 9369.00 7.42 22.89 3.94 -1 -1 7.42 4.30139 3.7249 0.1129 0.3967 0.0097 0.5936 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.89 vpr 63.18 MiB 0.05 9428 -1 -1 3 0.28 -1 -1 35764 -1 -1 67 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64700 99 130 363 493 1 263 297 12 12 144 clb auto 24.7 MiB 0.09 694 63.2 MiB 0.42 0.01 1.98449 -201.695 -1.98449 1.98449 0.35 0.00046738 0.000407616 0.0605725 0.0527492 48 1476 9 5.66058e+06 4.1589e+06 426931. 2964.80 2.46 0.2254 0.202477 14292 85212 -1 1381 10 542 730 53376 17926 0 0 53376 17926 730 647 0 0 3324 3021 0 0 3997 3324 0 0 789 711 0 0 21151 5000 0 0 23385 5223 0 0 730 0 0 188 118 226 1704 0 0 2.55458 2.55458 -229.387 -2.55458 0 0 545663. 3789.32 0.17 0.05 0.11 -1 -1 0.17 0.0237788 0.0222849 0.009132 0.2148 0.07157 0.7136 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 14.32 vpr 67.09 MiB 0.06 9188 -1 -1 15 0.45 -1 -1 34104 -1 -1 37 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68700 162 96 999 932 1 698 300 16 16 256 mult_36 auto 28.8 MiB 0.38 5307 67.1 MiB 0.83 0.02 19.8992 -1764.08 -19.8992 19.8992 0.59 0.00332617 0.00304274 0.231606 0.21054 48 12349 48 1.21132e+07 3.97408e+06 822491. 3212.85 7.57 0.911045 0.840359 27048 168158 -1 9620 18 2866 5588 1758077 430907 0 0 1758077 430907 5588 3553 0 0 71838 69577 0 0 75069 72084 0 0 6098 4006 0 0 820239 139185 0 0 779245 142502 0 0 5588 0 0 2753 7173 7360 42770 0 0 22.9898 22.9898 -2048.87 -22.9898 0 0 1.05295e+06 4113.10 0.24 0.64 0.12 -1 -1 0.24 0.154404 0.145551 0.008216 0.3391 0.01577 0.6452 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1318.07 vpr 500.67 MiB 19.87 218816 -1 -1 129 288.35 -1 -1 99708 -1 -1 1708 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 512688 114 102 29578 29304 1 15102 1976 50 50 2500 clb memory auto 256.0 MiB 437.81 211092 499.3 MiB 58.54 0.45 70.0651 -57625.8 -70.0651 70.0651 28.85 0.068432 0.0597348 9.35917 7.09541 100 310834 48 1.47946e+08 1.19334e+08 1.76909e+07 7076.35 375.80 34.8526 28.2617 373728 3941812 -1 278086 16 53455 215263 36383346 7583614 0 0 36383346 7583614 208108 69237 0 0 697380 595324 0 0 849635 703292 0 0 217059 82979 0 0 16911111 3028293 0 0 17500053 3104489 0 0 208108 0 0 161228 685668 714731 4816793 7484 9935 82.0167 82.0167 -73568.8 -82.0167 -12.7621 -0.340786 2.21802e+07 8872.08 6.64 13.17 3.57 -1 -1 6.64 3.79896 3.26849 0.109 0.3706 0.009546 0.6198 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 5.08 vpr 62.93 MiB 0.06 9252 -1 -1 3 0.36 -1 -1 35812 -1 -1 67 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64436 99 130 363 493 1 257 297 12 12 144 clb auto 24.5 MiB 0.10 680 62.9 MiB 0.38 0.01 2.11707 -200.924 -2.11707 2.11707 0.30 0.000627965 0.000541912 0.0523564 0.0457158 46 1569 11 5.66058e+06 4.1589e+06 378970. 2631.74 1.98 0.20569 0.185731 13238 73581 -1 1439 10 563 756 52218 16814 0 0 52218 16814 756 642 0 0 2807 2604 0 0 3340 2812 0 0 795 689 0 0 20310 5266 0 0 24210 4801 0 0 756 0 0 193 263 290 2024 0 0 2.56948 2.56948 -237.08 -2.56948 0 0 486261. 3376.82 0.10 0.03 0.06 -1 -1 0.10 0.0142445 0.0134078 0.008019 0.2463 0.07885 0.6748 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.19 vpr 66.54 MiB 0.03 9180 -1 -1 15 0.49 -1 -1 33920 -1 -1 38 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68140 162 96 999 932 1 695 301 16 16 256 mult_36 auto 28.3 MiB 0.36 5319 66.5 MiB 0.89 0.02 19.8398 -1699.1 -19.8398 19.8398 0.88 0.00357059 0.0032594 0.292388 0.270434 52 12242 39 1.21132e+07 4.02797e+06 805949. 3148.24 5.80 0.919209 0.854251 25992 162577 -1 9736 16 3045 6165 1662560 434871 0 0 1662560 434871 6165 3871 0 0 77958 75869 0 0 81498 78202 0 0 6717 4388 0 0 764654 139968 0 0 725568 132573 0 0 6165 0 0 3155 8919 8739 51400 0 0 22.5953 22.5953 -1912.94 -22.5953 0 0 1.06067e+06 4143.25 0.30 0.72 0.13 -1 -1 0.30 0.215835 0.203198 0.00783 0.3607 0.01735 0.6219 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1027.45 vpr 502.55 MiB 18.80 218940 -1 -1 129 289.93 -1 -1 99984 -1 -1 1956 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 514612 114 102 29578 29304 1 16199 2224 54 54 2916 clb auto 260.2 MiB 172.38 231332 483.7 MiB 73.51 0.48 70.7741 -54440.4 -70.7741 70.7741 27.70 0.0671732 0.0585657 10.9532 8.50695 102 338797 27 1.70873e+08 1.327e+08 1.93878e+07 6648.75 328.05 37.1 30.1447 411192 4120304 -1 312382 19 63157 247679 43224112 9192620 0 0 43224112 9192620 239264 81417 0 0 720797 661571 0 0 884528 726701 0 0 249434 95071 0 0 20401254 3765704 0 0 20728835 3862156 0 0 239264 0 0 182680 845570 842470 5518046 8841 6281 81.1812 81.1812 -68545.6 -81.1812 -14.2796 -0.216786 2.43088e+07 8336.34 8.96 17.25 4.44 -1 -1 8.96 4.5148 3.82602 0.1064 0.4211 0.01044 0.5685 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.38 vpr 62.99 MiB 0.06 9264 -1 -1 3 0.34 -1 -1 35828 -1 -1 67 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64500 99 130 363 493 1 257 297 12 12 144 clb auto 24.6 MiB 0.09 680 63.0 MiB 0.31 0.00 2.11707 -200.924 -2.11707 2.11707 0.35 0.000447812 0.000391543 0.0444087 0.0389482 46 1554 9 5.66058e+06 4.1589e+06 378970. 2631.74 0.99 0.192486 0.173882 13238 73581 -1 1399 11 536 702 47667 15199 0 0 47667 15199 702 604 0 0 2590 2406 0 0 3049 2591 0 0 732 645 0 0 18356 4774 0 0 22238 4179 0 0 702 0 0 166 219 249 1754 0 0 2.5726 2.5726 -236.184 -2.5726 0 0 486261. 3376.82 0.14 0.06 0.09 -1 -1 0.14 0.0264707 0.0246842 0.009015 0.2199 0.07006 0.71 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 15.25 vpr 66.60 MiB 0.04 9196 -1 -1 15 0.34 -1 -1 33800 -1 -1 38 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68200 162 96 999 932 1 695 301 16 16 256 mult_36 auto 28.3 MiB 0.38 5319 66.6 MiB 0.87 0.02 19.8398 -1699.1 -19.8398 19.8398 0.81 0.00325251 0.00299341 0.283293 0.261851 52 13089 46 1.21132e+07 4.02797e+06 805949. 3148.24 7.76 1.31 1.21958 25992 162577 -1 9846 18 3212 6746 1832333 479853 0 0 1832333 479853 6746 4130 0 0 83202 81042 0 0 87213 83439 0 0 7287 4717 0 0 845931 157934 0 0 801954 148591 0 0 6746 0 0 3569 10561 10508 60078 0 0 22.6347 22.6347 -1930.29 -22.6347 0 0 1.06067e+06 4143.25 0.33 0.67 0.17 -1 -1 0.33 0.161302 0.150644 0.008112 0.3478 0.01672 0.6355 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 996.40 vpr 494.88 MiB 22.39 218756 -1 -1 129 267.99 -1 -1 99888 -1 -1 1879 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 506760 114 102 29578 29304 1 15632 2147 53 53 2809 clb auto 260.9 MiB 191.57 220634 472.4 MiB 68.42 0.70 71.8738 -53056.4 -71.8738 71.8738 24.54 0.110159 0.0868923 10.02 7.42022 100 325445 25 1.63647e+08 1.2855e+08 1.82848e+07 6509.36 304.35 39.3532 31.5315 391934 3893229 -1 298752 20 59874 234960 40833107 8568320 0 0 40833107 8568320 227764 77072 0 0 686050 631530 0 0 836688 691957 0 0 236797 89234 0 0 19333666 3517691 0 0 19512142 3560836 0 0 227764 0 0 174383 784984 788441 5218106 7842 4774 80.9766 80.9766 -65930.3 -80.9766 -14.9191 -0.29436 2.30694e+07 8212.69 7.94 16.40 3.74 -1 -1 7.94 4.75095 4.05078 0.105 0.4055 0.01009 0.5844 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 5.38 vpr 62.74 MiB 0.05 9264 -1 -1 3 0.36 -1 -1 35792 -1 -1 67 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64244 99 130 363 493 1 263 297 12 12 144 clb auto 24.4 MiB 0.09 649 62.7 MiB 0.33 0.00 2.16091 -202.944 -2.16091 2.16091 0.33 0.000507638 0.000437562 0.048496 0.0422786 44 1463 11 5.66058e+06 4.1589e+06 360780. 2505.42 2.03 0.232524 0.209944 13094 71552 -1 1294 10 540 712 55023 17913 0 0 55023 17913 712 611 0 0 3174 2980 0 0 3910 3174 0 0 748 665 0 0 21386 5802 0 0 25093 4681 0 0 712 0 0 172 218 166 1678 0 0 2.73944 2.73944 -239.112 -2.73944 0 0 470765. 3269.20 0.15 0.06 0.09 -1 -1 0.15 0.0265057 0.024924 0.007342 0.2175 0.07874 0.7037 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 24.74 vpr 66.65 MiB 0.05 9224 -1 -1 15 0.50 -1 -1 33872 -1 -1 37 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68252 162 96 999 932 1 693 300 16 16 256 mult_36 auto 28.4 MiB 0.36 5443 66.7 MiB 0.58 0.01 19.8168 -1845.14 -19.8168 19.8168 0.89 0.00176262 0.00159591 0.168094 0.153411 58 11556 22 1.21132e+07 3.97408e+06 904549. 3533.39 17.33 1.51308 1.40429 27012 180273 -1 9640 16 2906 5793 1979933 492802 0 0 1979933 492802 5793 3688 0 0 71844 70501 0 0 74798 72037 0 0 6258 3907 0 0 900286 171265 0 0 920954 171404 0 0 5793 0 0 2922 8001 7527 46387 0 0 22.5704 22.5704 -2087.7 -22.5704 0 0 1.15318e+06 4504.63 0.37 0.71 0.23 -1 -1 0.37 0.141994 0.134135 0.008124 0.3706 0.01764 0.6117 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1021.59 vpr 548.05 MiB 19.51 218928 -1 -1 129 296.27 -1 -1 99848 -1 -1 1929 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 561200 114 102 29578 29304 1 16195 2197 53 53 2809 clb auto 257.2 MiB 180.75 225731 469.2 MiB 70.57 0.64 71.2051 -56586.2 -71.2051 71.2051 25.48 0.0960329 0.0717734 10.2037 7.65134 106 334601 44 1.63647e+08 1.31245e+08 1.92313e+07 6846.31 314.34 54.1981 43.6121 403166 4123989 -1 305229 20 60619 237108 42635851 9317517 0 0 42635851 9317517 228871 77997 0 0 692955 630216 0 0 858439 699026 0 0 238634 91774 0 0 20118740 3897849 0 0 20498212 3920655 0 0 228871 0 0 174731 804875 783924 5195410 8529 5321 81.4442 81.4442 -70911.6 -81.4442 -29.8706 -0.216786 2.43532e+07 8669.70 10.11 16.33 4.06 -1 -1 10.11 4.47824 3.80781 0.1071 0.4214 0.01039 0.5683 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.99 vpr 62.96 MiB 0.07 9252 -1 -1 3 0.35 -1 -1 35808 -1 -1 67 99 1 0 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64468 99 130 363 493 1 263 297 12 12 144 clb auto 24.5 MiB 0.11 649 63.0 MiB 0.37 0.01 2.16091 -202.944 -2.16091 2.16091 0.38 0.000963701 0.000839925 0.0527135 0.0463543 46 1388 11 5.66058e+06 4.1589e+06 378970. 2631.74 2.54 0.3613 0.326179 13238 73581 -1 1334 9 562 734 40619 13255 0 0 40619 13255 734 613 0 0 2301 2099 0 0 2981 2301 0 0 759 672 0 0 15690 4255 0 0 18154 3315 0 0 734 0 0 172 201 186 1733 0 0 2.65978 2.65978 -238.277 -2.65978 0 0 486261. 3376.82 0.15 0.05 0.10 -1 -1 0.15 0.0219337 0.0205116 0.00853 0.194 0.07164 0.7343 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 20.96 vpr 66.96 MiB 0.03 9100 -1 -1 15 0.48 -1 -1 33900 -1 -1 36 162 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68572 162 96 999 932 1 694 299 16 16 256 mult_36 auto 28.7 MiB 0.31 5501 67.0 MiB 1.05 0.02 19.6423 -1814.6 -19.6423 19.6423 0.91 0.00319343 0.00289598 0.30405 0.277653 50 13469 37 1.21132e+07 3.92018e+06 780512. 3048.87 13.79 1.58619 1.46576 25484 153448 -1 10121 16 3347 6633 2069744 539869 0 0 2069744 539869 6633 4314 0 0 82007 80695 0 0 85259 82141 0 0 7131 4621 0 0 937469 177303 0 0 951245 190795 0 0 6633 0 0 3324 9953 8651 54273 0 0 22.2763 22.2763 -2109.59 -22.2763 0 0 1.00276e+06 3917.05 0.21 0.45 0.12 -1 -1 0.21 0.0841273 0.0794271 0.008259 0.3412 0.01567 0.6432 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 948.67 vpr 487.48 MiB 18.31 218888 -1 -1 129 296.75 -1 -1 99780 -1 -1 1844 114 44 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 499176 114 102 29578 29304 1 15489 2112 52 52 2704 clb auto 258.7 MiB 179.98 216942 459.9 MiB 65.57 0.51 69.6889 -51688.7 -69.6889 69.6889 24.56 0.0827871 0.0603819 9.73272 7.29235 100 317793 47 1.58905e+08 1.26664e+08 1.75747e+07 6499.51 250.38 34.2018 27.4268 377610 3742418 -1 292314 20 59741 234164 42037424 9401953 0 0 42037424 9401953 227168 77940 0 0 656880 602863 0 0 806478 662354 0 0 237048 91006 0 0 19941141 3947182 0 0 20168709 4020608 0 0 227168 0 0 173797 766659 778544 5129032 7569 6429 79.6068 79.6068 -64359.3 -79.6068 -34.6304 -0.295467 2.21759e+07 8201.15 7.51 16.94 3.57 -1 -1 7.51 4.52987 3.85745 0.1044 0.3967 0.0103 0.593 From 2d84f13c7fec52f7067b99b9837c0926fcd1fb57 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 10 Apr 2023 18:05:43 -0400 Subject: [PATCH 50/81] fixed some comments on agent command line option and placement context --- vpr/src/base/clustered_netlist.h | 2 +- vpr/src/base/vpr_context.h | 13 +++++++++---- vpr/src/base/vpr_types.h | 4 ++-- vpr/src/place/RL_agent_util.cpp | 12 ++++++------ vpr/src/place/move_utils.cpp | 10 +++++----- 5 files changed, 23 insertions(+), 18 deletions(-) diff --git a/vpr/src/base/clustered_netlist.h b/vpr/src/base/clustered_netlist.h index 9972cbc84c8..f89d521c98a 100644 --- a/vpr/src/base/clustered_netlist.h +++ b/vpr/src/base/clustered_netlist.h @@ -334,7 +334,7 @@ class ClusteredNetlist : public Netlist block_pbs_; /// block_types_; ///> block_logical_pins_; ///> blocks_per_type_; //Blocks per specific block types + std::unordered_map> blocks_per_type_; /// logical_to_agent_map; - std::unordered_map agent_to_logical_map; + std::unordered_map phys_blk_type_to_agent_blk_type_map; + std::unordered_map agent_blk_type_to_phys_blk_type_map; }; /** diff --git a/vpr/src/base/vpr_types.h b/vpr/src/base/vpr_types.h index a2dfcd641a3..1fc87f71e7c 100644 --- a/vpr/src/base/vpr_types.h +++ b/vpr/src/base/vpr_types.h @@ -984,10 +984,10 @@ enum e_agent_algorithm { }; /** - * @brief Used to determine how large exploration space would be + * @brief Used to determines the dimensionality of the RL agent exploration space * * Agent exploration space can be either based on only move types or - * consider different block types, as well. + * can be based on (block_type, move_type) pair. * */ enum e_agent_space { diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index 44f96b4be3d..0b5c53fbc47 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -52,8 +52,8 @@ void create_move_generators(std::unique_ptr& move_generator, std: continue; auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); if (blk_per_type.size() != 0) { - place_ctx.logical_to_agent_map.insert(std::pair(agent_type_index, itype.index)); - place_ctx.agent_to_logical_map.insert(std::pair(itype.index, agent_type_index)); + place_ctx.phys_blk_type_to_agent_blk_type_map.insert(std::pair(agent_type_index, itype.index)); + place_ctx.agent_blk_type_to_phys_blk_type_map.insert(std::pair(itype.index, agent_type_index)); agent_type_index++; } } @@ -64,7 +64,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, - place_ctx.agent_to_logical_map.size(), + place_ctx.agent_blk_type_to_phys_blk_type_map.size(), placer_opts.place_agent_epsilon); } else { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); @@ -82,7 +82,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, - place_ctx.agent_to_logical_map.size(), + place_ctx.agent_blk_type_to_phys_blk_type_map.size(), placer_opts.place_agent_epsilon); } else { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); @@ -104,7 +104,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, - place_ctx.agent_to_logical_map.size()); + place_ctx.agent_blk_type_to_phys_blk_type_map.size()); } else { VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES); @@ -120,7 +120,7 @@ void create_move_generators(std::unique_ptr& move_generator, std: if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, - place_ctx.agent_to_logical_map.size()); + place_ctx.agent_blk_type_to_phys_blk_type_map.size()); } else { VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES); diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 26b974f576d..a764270c9b6 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -500,8 +500,8 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& int convert_agent_to_logical_block_type(int agent_block_type_index) { auto& place_ctx = g_vpr_ctx.mutable_placement(); - if (place_ctx.logical_to_agent_map.count(agent_block_type_index)) { - return place_ctx.logical_to_agent_map[agent_block_type_index]; + if (place_ctx.phys_blk_type_to_agent_blk_type_map.count(agent_block_type_index)) { + return place_ctx.phys_blk_type_to_agent_blk_type_map[agent_block_type_index]; } //invalid block type return -1; @@ -509,8 +509,8 @@ int convert_agent_to_logical_block_type(int agent_block_type_index) { int convert_logical_to_agent_block_type(int logical_block_type_index) { auto& place_ctx = g_vpr_ctx.mutable_placement(); - if (place_ctx.agent_to_logical_map.count(logical_block_type_index)) { - return place_ctx.agent_to_logical_map[logical_block_type_index]; + if (place_ctx.agent_blk_type_to_phys_blk_type_map.count(logical_block_type_index)) { + return place_ctx.agent_blk_type_to_phys_blk_type_map[logical_block_type_index]; } //invalid block type return -1; @@ -518,7 +518,7 @@ int convert_logical_to_agent_block_type(int logical_block_type_index) { int get_num_agent_types() { auto& place_ctx = g_vpr_ctx.placement(); - return place_ctx.logical_to_agent_map.size(); + return place_ctx.phys_blk_type_to_agent_blk_type_map.size(); } ClusterBlockId propose_block_type(t_logical_block_type& blk_type, bool highly_crit_block, ClusterNetId* net_from, int* pin_from) { From f54725414ffdde67391fda1d215199863e1c3dbc Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 10 Apr 2023 18:29:30 -0400 Subject: [PATCH 51/81] Made a helper function and collapsed some duplicated code to one location --- vpr/src/place/RL_agent_util.cpp | 134 +++++++++++++------------------- vpr/src/place/RL_agent_util.h | 6 ++ 2 files changed, 58 insertions(+), 82 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index 0b5c53fbc47..b403ff4a9f6 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -42,96 +42,48 @@ void create_move_generators(std::unique_ptr& move_generator, std: * only move type. * * This state is activated late in the anneal and in the Quench */ - //Loop through all available logical block types and store the ones that exist in the netlist - auto& device_ctx = g_vpr_ctx.device(); - auto& cluster_ctx = g_vpr_ctx.clustering(); - auto& place_ctx = g_vpr_ctx.mutable_placement(); - int agent_type_index = 0; - for (auto itype : device_ctx.logical_block_types) { - if (itype.index == 0) //ignore empty type - continue; - auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); - if (blk_per_type.size() != 0) { - place_ctx.phys_blk_type_to_agent_blk_type_map.insert(std::pair(agent_type_index, itype.index)); - place_ctx.agent_blk_type_to_phys_blk_type_map.insert(std::pair(itype.index, agent_type_index)); - agent_type_index++; - } - } + //extract available physical block types in the netlist + determine_agent_block_types(); + + auto& place_ctx = g_vpr_ctx.placement(); + int num_states_avail_moves = placer_opts.place_algorithm.is_timing_driven() ? NUM_PL_1ST_STATE_MOVE_TYPES : NUM_PL_NONTIMING_MOVE_TYPES; + if (placer_opts.place_agent_algorithm == E_GREEDY) { std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; - if (placer_opts.place_algorithm.is_timing_driven()) { - //agent's 1st state - if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { - VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, - place_ctx.agent_blk_type_to_phys_blk_type_map.size(), - placer_opts.place_agent_epsilon); - } else { - VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, - placer_opts.place_agent_epsilon); - } - karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator = std::make_unique(karmed_bandit_agent1); - //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES, placer_opts.place_agent_epsilon); - karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator2 = std::make_unique(karmed_bandit_agent2); + //agent's 1st state + if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { + VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); + karmed_bandit_agent1 = std::make_unique(num_states_avail_moves, + place_ctx.agent_blk_type_to_phys_blk_type_map.size(), + placer_opts.place_agent_epsilon); } else { - //agent's 1st state - if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { - VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, - place_ctx.agent_blk_type_to_phys_blk_type_map.size(), - placer_opts.place_agent_epsilon); - } else { - VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, - placer_opts.place_agent_epsilon); - } - karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator = std::make_unique(karmed_bandit_agent1); - //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, placer_opts.place_agent_epsilon); - karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator2 = std::make_unique(karmed_bandit_agent2); + VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); + karmed_bandit_agent1 = std::make_unique(num_states_avail_moves, + placer_opts.place_agent_epsilon); } + karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); + move_generator = std::make_unique(karmed_bandit_agent1); + //agent's 2nd state + karmed_bandit_agent2 = std::make_unique(num_states_avail_moves, placer_opts.place_agent_epsilon); + karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); + move_generator2 = std::make_unique(karmed_bandit_agent2); } else { std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; - - if (placer_opts.place_algorithm.is_timing_driven()) { - //agent's 1st state - if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { - VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES, - place_ctx.agent_blk_type_to_phys_blk_type_map.size()); - } else { - VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); - karmed_bandit_agent1 = std::make_unique(NUM_PL_1ST_STATE_MOVE_TYPES); - } - karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator = std::make_unique(karmed_bandit_agent1); - //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_MOVE_TYPES); - karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator2 = std::make_unique(karmed_bandit_agent2); + //agent's 1st state + if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { + VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); + karmed_bandit_agent1 = std::make_unique(num_states_avail_moves, + place_ctx.agent_blk_type_to_phys_blk_type_map.size()); } else { - //agent's 1st state - if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { - VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES, - place_ctx.agent_blk_type_to_phys_blk_type_map.size()); - } else { - VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); - karmed_bandit_agent1 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES); - } - karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator = std::make_unique(karmed_bandit_agent1); - //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(NUM_PL_NONTIMING_MOVE_TYPES); - karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); - move_generator2 = std::make_unique(karmed_bandit_agent2); + VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); + karmed_bandit_agent1 = std::make_unique(num_states_avail_moves); } + karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); + move_generator = std::make_unique(karmed_bandit_agent1); + //agent's 2nd state + karmed_bandit_agent2 = std::make_unique(num_states_avail_moves); + karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); + move_generator2 = std::make_unique(karmed_bandit_agent2); } } } @@ -163,3 +115,21 @@ void update_move_generator(std::unique_ptr& move_generator, std:: move_generator2 = std::move(current_move_generator); } } + +void determine_agent_block_types(){ + //Loop through all available logical block types and store the ones that exist in the netlist + auto& device_ctx = g_vpr_ctx.device(); + auto& cluster_ctx = g_vpr_ctx.clustering(); + auto& place_ctx = g_vpr_ctx.mutable_placement(); + int agent_type_index = 0; + for (auto itype : device_ctx.logical_block_types) { + if (itype.index == 0) //ignore empty type + continue; + auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); + if (blk_per_type.size() != 0) { + place_ctx.phys_blk_type_to_agent_blk_type_map.insert(std::pair(agent_type_index, itype.index)); + place_ctx.agent_blk_type_to_phys_blk_type_map.insert(std::pair(itype.index, agent_type_index)); + agent_type_index++; + } + } +} \ No newline at end of file diff --git a/vpr/src/place/RL_agent_util.h b/vpr/src/place/RL_agent_util.h index ebfee697850..b7e855b7f82 100644 --- a/vpr/src/place/RL_agent_util.h +++ b/vpr/src/place/RL_agent_util.h @@ -30,4 +30,10 @@ void assign_current_move_generator(std::unique_ptr& move_generato * @ brief move the updated current_move_generator to its original move_Generator structure based on he placer_options and the agent state */ void update_move_generator(std::unique_ptr& move_generator, std::unique_ptr& move_generator2, e_agent_state agent_state, const t_placer_opts& placer_opts, bool in_quench, std::unique_ptr& current_move_generator); + +/** + * @ brief determine which block types used by the netlist and create a map between physical block types and agent block types (the ones that are used in the netlist) + */ +void determine_agent_block_types(); + #endif From a1ca2982f06a24bf7b23f03357f46981e623429b Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 10 Apr 2023 19:55:24 -0400 Subject: [PATCH 52/81] commented simpleRL_move_generator files and fixed some typos and variable names --- vpr/src/place/directed_moves_util.cpp | 4 +- vpr/src/place/move_generator.h | 3 +- vpr/src/place/move_utils.cpp | 18 ++--- vpr/src/place/move_utils.h | 28 ++++---- vpr/src/place/simpleRL_move_generator.cpp | 78 ++++++++++------------ vpr/src/place/simpleRL_move_generator.h | 80 +++++++++++++++++++++-- 6 files changed, 140 insertions(+), 71 deletions(-) diff --git a/vpr/src/place/directed_moves_util.cpp b/vpr/src/place/directed_moves_util.cpp index c18996747a9..bf412386057 100644 --- a/vpr/src/place/directed_moves_util.cpp +++ b/vpr/src/place/directed_moves_util.cpp @@ -50,7 +50,7 @@ void calculate_centroid_loc(ClusterBlockId b_from, bool timing_weights, t_pl_loc if (pin_id == sink_pin_id) continue; ipin = cluster_ctx.clb_nlist.pin_net_index(sink_pin_id); - if (timing_weights && criticalities != NULL) { + if (timing_weights) { weight = criticalities->criticality(net_id, ipin); } else { weight = 1; @@ -67,7 +67,7 @@ void calculate_centroid_loc(ClusterBlockId b_from, bool timing_weights, t_pl_loc //else the pin is sink --> only care about its driver else { ipin = cluster_ctx.clb_nlist.pin_net_index(pin_id); - if (timing_weights && criticalities != NULL) { + if (timing_weights) { weight = criticalities->criticality(net_id, ipin); } else { weight = 1; diff --git a/vpr/src/place/move_generator.h b/vpr/src/place/move_generator.h index 90e0f49fefa..fa4c2e32896 100644 --- a/vpr/src/place/move_generator.h +++ b/vpr/src/place/move_generator.h @@ -59,7 +59,8 @@ class MoveGenerator { * @param rlim: maximum distance a block can move in x or y direction, in the compressed grid space * @param placer_opts: all the placer options * @param criticalities: the placer criticalities, useful for timing directed moves - * @param blk_type: function proposes a move with given block type if specified. + * @param blk_type: function proposes a move with given block type if specified. + * If blk_type index is -1, this function will choose the block randomly from the netlist (regardless of type). */ virtual e_create_move propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) = 0; diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index a764270c9b6..9a352232f49 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -498,19 +498,19 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& return empty_locs; } -int convert_agent_to_logical_block_type(int agent_block_type_index) { +int convert_agent_to_phys_blk_type(int agent_blk_type_index) { auto& place_ctx = g_vpr_ctx.mutable_placement(); - if (place_ctx.phys_blk_type_to_agent_blk_type_map.count(agent_block_type_index)) { - return place_ctx.phys_blk_type_to_agent_blk_type_map[agent_block_type_index]; + if (place_ctx.phys_blk_type_to_agent_blk_type_map.count(agent_blk_type_index)) { + return place_ctx.phys_blk_type_to_agent_blk_type_map[agent_blk_type_index]; } //invalid block type return -1; } -int convert_logical_to_agent_block_type(int logical_block_type_index) { +int convert_phys_to_agent_blk_type(int phys_blk_type_index) { auto& place_ctx = g_vpr_ctx.mutable_placement(); - if (place_ctx.agent_blk_type_to_phys_blk_type_map.count(logical_block_type_index)) { - return place_ctx.agent_blk_type_to_phys_blk_type_map[logical_block_type_index]; + if (place_ctx.agent_blk_type_to_phys_blk_type_map.count(phys_blk_type_index)) { + return place_ctx.agent_blk_type_to_phys_blk_type_map[phys_blk_type_index]; } //invalid block type return -1; @@ -534,7 +534,7 @@ ClusterBlockId propose_block_type(t_logical_block_type& blk_type, bool highly_cr //if a movable block found, set the block type if (b_from) { - blk_type.index = convert_logical_to_agent_block_type(cluster_ctx.clb_nlist.block_type(b_from)->index); + blk_type.index = convert_phys_to_agent_blk_type(cluster_ctx.clb_nlist.block_type(b_from)->index); } } else { //If the block type is specified, choose a random block with blk_type to be swapped with another random block if (highly_crit_block) { @@ -593,7 +593,7 @@ ClusterBlockId pick_from_block(t_logical_block_type blk_type) { auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); t_logical_block_type blk_type_temp; - blk_type_temp.index = convert_agent_to_logical_block_type(blk_type.index); + blk_type_temp.index = convert_agent_to_phys_blk_type(blk_type.index); auto blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(blk_type_temp); //no blocks with this type is available @@ -677,7 +677,7 @@ ClusterBlockId pick_from_highly_critical_block(ClusterNetId& net_from, int& pin_ //Check if picked block type matches with the blk_type specified, and it is not fixed //blk_type from propose move doesn't account for the EMPTY type auto b_from_type = cluster_ctx.clb_nlist.block_type(b_from); - if (b_from_type->index == blk_type.index + 1) { + if (convert_phys_to_agent_blk_type(b_from_type->index) == blk_type.index) { if (place_ctx.block_locs[b_from].is_fixed) { return ClusterBlockId::INVALID(); //Block is fixed, cannot move } diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index f3c3625a1ea..0d3edef0d78 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -39,12 +39,12 @@ enum class e_create_move { /** * @brief Stores KArmedBanditAgent propose_action output to decide which * move_type and which block_type should be chosen for the next action. - * propose_action function can also leave blk_type empty to allow any + * The propose_action function can also leave blk_type empty to allow any * random block type to be chosen to be swapped. */ struct t_propose_action { - e_move_type move_type; //move type that propose_action choose to perform - t_logical_block_type blk_type; //propose_action can choose block type or leave it empty to allow any block type to be chosen + e_move_type move_type; /// determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& * * @param blk_type: the agent type of the moving block. * @param highly_crit_block: block should be chosen from highly critical blocks. - * @param net_from: if block is chosen from highly critical blocks, should store its net id. + * @param net_from: if block is chosen from highly critical blocks, should store the critical net id. * @param pin_from: if block is chosen from highly critical blocks, should save its critical pin id. * * @return block id if any blocks found. ClusterBlockId::INVALID() if no block found. @@ -247,21 +247,27 @@ bool intersect_range_limit_with_floorplan_constraints(t_logical_block_type_ptr t std::string e_move_result_to_string(e_move_result move_outcome); /** - * @brief find the logical block type index associated to the agent block type + * @brief find the physical block type index associated to the agent block type * - * @return logical block type index associated with the agent_block_type_index + * Agent block types are defined as physical block types used by the netlist. + * More information on agent block type can be found on the placement context in "vpr_context.h" + * + * @return physical block type index associated with the agent_blk_type_index */ -int convert_agent_to_logical_block_type(int agent_block_type_index); +int convert_agent_to_phys_blk_type(int agent_blk_type_index); /** - * @brief find the agent block type index associated to the logical block type + * @brief find the agent block type index associated to the physical block type + * + * Agent block types are defined as physical block types used by the netlist. + * More information on agent block type can be found on the placement context in "vpr_context.h" * - * @return agent block type index associated with the logical_block_type_index + * @return agent block type index associated with the phys_blk_type_index */ -int convert_logical_to_agent_block_type(int logical_block_type_index); +int convert_phys_to_agent_blk_type(int phys_blk_type_index); /** - * @brief return number of available block types in the RLplace agent + * @brief return number of available block types in the RLplace agent. */ int get_num_agent_types(); diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 61bd13bc8f9..532de45a65a 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -79,24 +79,28 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ //Update the estimated value of the last action q_[last_action_] += delta_q; - if (agent_info_file_) { - fseek(agent_info_file_, 0, SEEK_END); - fprintf(agent_info_file_, "%zu,", last_action_); - fprintf(agent_info_file_, "%g,", reward); + //write agent internal q-table and actions into a file for debugging purposes + //agent_info_file_ variable is a NULL pointer by default + //info file is not generated unless the agent_info_file_ set to a filename in "init_q_scores" function + if(agent_info_file_) { + write_agent_info(last_action_, reward); + } +} - for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - fprintf(agent_info_file_, "%g,", q_[i]); - } +void KArmedBanditAgent::write_agent_info(int last_action, double reward){ + fseek(agent_info_file_, 0, SEEK_END); + fprintf(agent_info_file_, "%zu,", last_action); + fprintf(agent_info_file_, "%g,", reward); - for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - fprintf(agent_info_file_, "%zu", num_action_chosen_[i]); - if (i != num_available_moves_ * num_available_types_ - 1) { - fprintf(agent_info_file_, ","); - } - } - fprintf(agent_info_file_, "\n"); - fflush(agent_info_file_); + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { + fprintf(agent_info_file_, "%g,", q_[i]); } + + for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { + fprintf(agent_info_file_, "%zu,", num_action_chosen_[i]); + } + fprintf(agent_info_file_, "\n"); + fflush(agent_info_file_); } /* * @@ -128,19 +132,14 @@ void EpsilonGreedyAgent::init_q_scores() { num_action_chosen_ = std::vector(num_available_moves_ * num_available_types_, 0); cumm_epsilon_action_prob_ = std::vector(num_available_moves_ * num_available_types_, 1.0 / (num_available_moves_ * num_available_types_)); - if (agent_info_file_) { - fprintf(agent_info_file_, "action,reward,"); - for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - fprintf(agent_info_file_, "q%zu,", i); - } - for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - fprintf(agent_info_file_, "n%zu,", i); - } - fprintf(agent_info_file_, "\n"); - fflush(agent_info_file_); + //agent_info_file_ = vtr::fopen("agent_info.txt", "w"); + //write agent internal q-table and actions into file for debugging purposes + if(agent_info_file_) { + //we haven't performed any moves yet, hence last_aciton and reward are 0 + write_agent_info(0,0); } + set_epsilon_action_prob(); - // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); } void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { @@ -149,14 +148,14 @@ void EpsilonGreedyAgent::set_step(float gamma, int move_lim) { exp_alpha_ = -1; //Use sample average } else { // - // For an exponentially wieghted average the fraction of total weight applied to - // to moves which occured > K moves ago is: + // For an exponentially weighted average the fraction of total weight applied + // to moves which occurred > K moves ago is: // // gamma = (1 - alpha)^K // // If we treat K as the number of moves per temperature (move_lim) then gamma - // is the fraction of weight applied to moves which occured > move_lim moves ago, - // and given a target gamma we can explicitly calcualte the alpha step-size + // is the fraction of weight applied to moves which occurred > move_lim moves ago, + // and given a target gamma we can explicitly calculate the alpha step-size // required by the agent: // // alpha = 1 - e^(log(gamma) / K) @@ -254,16 +253,11 @@ void SoftmaxAgent::init_q_scores() { block_type_ratio_ = std::vector(num_available_types_, 0.); cumm_action_prob_ = std::vector(num_available_moves_ * num_available_types_); - if (agent_info_file_) { - fprintf(agent_info_file_, "action,reward,"); - for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - fprintf(agent_info_file_, "q%zu,", i); - } - for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { - fprintf(agent_info_file_, "n%zu,", i); - } - fprintf(agent_info_file_, "\n"); - fflush(agent_info_file_); + // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); + //write agent internal q-table and actions into file for debugging purposes + if(agent_info_file_) { + //we haven't performed any moves yet, hence last_aciton and reward are 0 + write_agent_info(0,0); } /* @@ -275,7 +269,7 @@ void SoftmaxAgent::init_q_scores() { set_block_ratio(); } set_action_prob(); - // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); + } t_propose_action SoftmaxAgent::propose_action() { @@ -325,7 +319,7 @@ void SoftmaxAgent::set_block_ratio() { */ for (size_t itype = 0; itype < num_available_types_; itype++) { t_logical_block_type blk_type; - blk_type.index = convert_agent_to_logical_block_type(itype); + blk_type.index = convert_agent_to_phys_blk_type(itype); auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); block_type_ratio_[itype] = (float)num_blocks / num_total_blocks; block_type_ratio_[itype] /= num_available_moves_; diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index ddedfd2f44a..e9c2554e1a5 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -15,13 +15,35 @@ class KArmedBanditAgent { public: virtual ~KArmedBanditAgent() {} + + /** + * @brief Choose a move type to perform and a block type that move should be performed with based on Q-table + * + * @return A move type and a block type as a "t_propose_action" struct + * If the agent is set to only propose move type, then block type index in the struct will be set to -1 + */ virtual t_propose_action propose_action() = 0; + + /** + * @brief Update the agent Q-table based on the reward received by the SA algorithm + * + * @param reward A double value calculated in "place.cpp" file showing how placement cost was affected by the prior action taken + * @param reward_func The reward function used by the agent, detail explanation can be found on "directed_moves_util.h" file + */ void process_outcome(double, e_reward_function); + /** + * @brief write all agent internal information (Q-table, reward for each performed action, ...) to a file (agent_info_file_) + * + * @param last_action Last action performed by the RL-agent + * @param reward A double value calculated in "place.cpp" file showing how placement cost was affected by the prior action taken + */ + void write_agent_info(int last_action, double reward); + protected: float exp_alpha_ = -1; //Step size for q_ updates (< 0 implies use incremental average) - size_t num_available_moves_; //Number of arms of the karmed bandit problem (k) - size_t num_available_types_; //Number of types that each arm of the karmed bandit problem can pull with + size_t num_available_moves_; //Number of move types that agent can choose from to perform + size_t num_available_types_; //Number of block types that agent can choose to perform the move with bool propose_blk_type = false; //Check if agent should propose both move and block type or only move type std::vector num_action_chosen_; //Number of times each arm has been pulled (n) std::vector q_; //Estimated value of each arm (Q) @@ -50,9 +72,32 @@ class EpsilonGreedyAgent : public KArmedBanditAgent { t_propose_action propose_action() override; //Returns the type of the next action as well as the block type the agent wishes to perform public: + + /** + * @brief Set the user-specified epsilon for the E-greedy agent + * + * @param epsilon Epsilon value for the agent, can be specified by the command-line option "--place_agent_epsilon" + * Epsilon default value is 0.3. + */ void set_epsilon(float epsilon); + + /** + * @brief Set equal action probability to all available actions. + */ void set_epsilon_action_prob(); + + /** + * @brief Set step size for q-table updates + * + * @param gamma Controls how quickly the agent's memory decays, can be specified by the command-line option "--place_agent_gamma" + * Gamma default value is 0.05. + * @param move_lim Number of moves per temperature + */ void set_step(float gamma, int move_lim); + + /** + * @brief Initialize agent's Q-table and internal variable to zero (RL-agent learns everything throughout the placement run and has no prior knowledge) + */ void init_q_scores(); private: @@ -63,8 +108,8 @@ class EpsilonGreedyAgent : public KArmedBanditAgent { /** * @brief Softmax agent implementation to address K-armed bandit problems * - * In this class, the RL agent adresses the exploration-exploitation dilemma using Softmax - * where the probability of choosing each action propotional to the estimated Q value of + * In this class, the RL agent addresses the exploration-exploitation dilemma using Softmax + * where the probability of choosing each action proportional to the estimated Q value of * this action. */ class SoftmaxAgent : public KArmedBanditAgent { @@ -77,16 +122,39 @@ class SoftmaxAgent : public KArmedBanditAgent { t_propose_action propose_action() override; //Returns the type of the next action as well as the block type the agent wishes to perform public: - void set_action_prob(); + + /** + * @brief Calculate the fraction of total netlist blocks for each agent block type and will be used by the "set_action_prob" function. + */ void set_block_ratio(); + + + /** + * @brief Set action probability for all available actions. + * If agent only proposes move type, the action probabilities would be equal for all move types at the beginning. + * If agent proposes both move and block type, the action_prob for each action would be based on its block type count in the netlist. + */ + void set_action_prob(); + + /** + * @brief Set step size for q-table updates + * + * @param gamma Controls how quickly the agent's memory decays, can be specified by the command-line option "--place_agent_gamma" + * Gamma default value is 0.05. + * @param move_lim Number of moves per temperature + */ void set_step(float gamma, int move_lim); + + /** + * @brief Initialize agent's Q-table and internal variable to zero (RL-agent learns everything throughout the placement run and has no prior knowledge) + */ void init_q_scores(); private: std::vector exp_q_; //The clipped and scaled exponential of the estimated Q value for each action std::vector action_prob_; //The probability of choosing each action std::vector cumm_action_prob_; //The accumulative probability of choosing each action - std::vector block_type_ratio_; //The probability of choosing each block type depends on its ratio in the netlist + std::vector block_type_ratio_; //Fraction of total netlist blocks for each block type (size: [0..agent_blk_type-1]) }; /** From 272cdaf8eb4086664571dd0893b81e4630db9070 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 11 Apr 2023 15:44:09 -0400 Subject: [PATCH 53/81] changed the information that is printed after the placement run --- vpr/src/place/move_generator.h | 12 +++---- vpr/src/place/place.cpp | 43 +++++++---------------- vpr/src/place/simpleRL_move_generator.cpp | 2 +- 3 files changed, 17 insertions(+), 40 deletions(-) diff --git a/vpr/src/place/move_generator.h b/vpr/src/place/move_generator.h index fa4c2e32896..378d86c8bf1 100644 --- a/vpr/src/place/move_generator.h +++ b/vpr/src/place/move_generator.h @@ -23,18 +23,14 @@ struct MoveOutcomeStats { /** * @brief A Struct to hold statistics about the different move types * - * num_moves: save the number of proposed moves of each move type(e.g. [0..NUM_PL_MOVE_TYPES-1]) - * blk_type_moves: save the block type index of each proposed move (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)]) - * accepted_moves: save the number of accepted moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)] ) - * rejected_moves: save the number of rejected moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)] ) - * aborted_moves: save the number of aborted moves of each move (e.g. [0..NUM_PL_MOVE_TYPES-1] ) - * Moves that are aborted might not have a specific block type + * blk_type_moves: the block type index of each proposed move (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)]) + * accepted_moves: the number of accepted moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)] ) + * rejected_moves: the number of rejected moves of each move and block type (e.g. [0..NUM_PL_MOVE_TYPES * (agent_available_types.size()-1)] ) + * */ struct MoveTypeStat { - std::vector num_moves; std::vector blk_type_moves; std::vector accepted_moves; - std::vector aborted_moves; std::vector rejected_moves; }; diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index e0c7f6230d5..0baea142655 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -749,10 +749,7 @@ void try_place(const Netlist<>& net_list, //allocate move type statistics vectors MoveTypeStat move_type_stat; - move_type_stat.num_moves.resize(placer_opts.place_static_move_prob.size(), 0); move_type_stat.blk_type_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); - - move_type_stat.aborted_moves.resize(placer_opts.place_static_move_prob.size(), 0); move_type_stat.accepted_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); move_type_stat.rejected_moves.resize((get_num_agent_types()) * (placer_opts.place_static_move_prob.size()), 0); @@ -1480,9 +1477,8 @@ static e_move_result try_swap(const t_annealing_state* state, create_move_outcome = move_generator.propose_move(blocks_affected, move_type, move_blk_type, rlim, placer_opts, criticalities); } - ++move_type_stat.num_moves[(int)move_type]; if (move_blk_type.index != -1) { //if the agent proposed the block type, then collect the block type stat - ++move_type_stat.blk_type_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; + ++move_type_stat.blk_type_moves[(move_blk_type.index * (placer_opts.place_static_move_prob.size())) + (int)move_type]; } LOG_MOVE_STATS_PROPOSED(t, blocks_affected); @@ -1496,7 +1492,6 @@ static e_move_result try_swap(const t_annealing_state* state, move_outcome = ABORTED; - ++move_type_stat.aborted_moves[(int)move_type]; } else { VTR_ASSERT(create_move_outcome == e_create_move::VALID); @@ -1618,7 +1613,7 @@ static e_move_result try_swap(const t_annealing_state* state, /* Update clb data structures since we kept the move. */ commit_move_blocks(blocks_affected); - ++move_type_stat.accepted_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; + ++move_type_stat.accepted_moves[(move_blk_type.index * (placer_opts.place_static_move_prob.size())) + (int)move_type]; if (noc_opts.noc) { commit_noc_costs(number_of_affected_noc_traffic_flows); @@ -1675,7 +1670,7 @@ static e_move_result try_swap(const t_annealing_state* state, revert_td_cost(blocks_affected); } - ++move_type_stat.rejected_moves[(move_blk_type.index * (move_type_stat.num_moves.size())) + (int)move_type]; + ++move_type_stat.rejected_moves[(move_blk_type.index * (placer_opts.place_static_move_prob.size())) + (int)move_type]; /* Revert the traffic flow routes within the NoC*/ if (noc_opts.noc) { @@ -3228,13 +3223,16 @@ static void print_placement_move_types_stats( const MoveTypeStat& move_type_stat) { float moves, accepted, rejected, aborted; - float total_moves = std::accumulate(move_type_stat.num_moves.begin(), - move_type_stat.num_moves.end(), 0.0); + float total_moves = 0; + for(size_t iaction = 0; iaction < move_type_stat.blk_type_moves.size(); iaction++){ + total_moves += move_type_stat.blk_type_moves[iaction]; + } auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); std::string move_name; int agent_type = 0; + int num_of_avail_moves = move_type_stat.blk_type_moves.size() / get_num_agent_types(); VTR_LOG("\n\nPercentage of different move types and block types:\n"); //Print placement information for each block type @@ -3243,12 +3241,12 @@ static void print_placement_move_types_stats( if (itype.index == 0 || cluster_ctx.clb_nlist.blocks_per_type(itype).size() == 0) { continue; } - for (size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++) { + for (int imove = 0; imove < num_of_avail_moves; imove++) { move_name = move_type_to_string(e_move_type(imove)); - moves = move_type_stat.blk_type_moves[agent_type * move_type_stat.num_moves.size() + imove]; + moves = move_type_stat.blk_type_moves[agent_type * num_of_avail_moves + imove]; if (moves != 0) { - accepted = move_type_stat.accepted_moves[agent_type * move_type_stat.num_moves.size() + imove]; - rejected = move_type_stat.rejected_moves[agent_type * move_type_stat.num_moves.size() + imove]; + accepted = move_type_stat.accepted_moves[agent_type * num_of_avail_moves + imove]; + rejected = move_type_stat.rejected_moves[agent_type * num_of_avail_moves + imove]; aborted = moves - (accepted + rejected); VTR_LOG( "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", @@ -3260,23 +3258,6 @@ static void print_placement_move_types_stats( agent_type++; VTR_LOG("\n"); } - VTR_LOG("\n"); - - //Print the abortion rate for each move type (Meaning that no specific block type has been found by the agent) - VTR_LOG("Percentage of different move types that was aborted:\n"); - for (size_t imove = 0; imove < move_type_stat.num_moves.size(); imove++) { - if (move_type_stat.num_moves[imove] == 0) { - continue; - } - move_name = move_type_to_string(e_move_type(imove)); - float num_of_move_proposed = move_type_stat.num_moves[imove]; - float num_of_aborted_moves = move_type_stat.aborted_moves[imove]; - VTR_LOG( - "\t%.17s move: %2.6f %% (aborted=%2.2f %%)\n", - move_name.c_str(), 100 * num_of_move_proposed / total_moves, - 100 * num_of_aborted_moves / num_of_move_proposed); - } - VTR_LOG("\n"); } static void calculate_reward_and_process_outcome( diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 532de45a65a..79d10f163fa 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -89,7 +89,7 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ void KArmedBanditAgent::write_agent_info(int last_action, double reward){ fseek(agent_info_file_, 0, SEEK_END); - fprintf(agent_info_file_, "%zu,", last_action); + fprintf(agent_info_file_, "%d,", last_action); fprintf(agent_info_file_, "%g,", reward); for (size_t i = 0; i < num_available_moves_ * num_available_types_; ++i) { From bb70317f4fcc0a189a5b6ab3816926ff91401248 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 11 Apr 2023 15:50:35 -0400 Subject: [PATCH 54/81] rename a function that is used by different move type --- vpr/src/place/centroid_move_generator.cpp | 2 +- vpr/src/place/critical_uniform_move_generator.cpp | 2 +- vpr/src/place/feasible_region_move_generator.cpp | 2 +- vpr/src/place/median_move_generator.cpp | 2 +- vpr/src/place/move_utils.cpp | 8 +++++--- vpr/src/place/move_utils.h | 2 +- vpr/src/place/uniform_move_generator.cpp | 2 +- vpr/src/place/weighted_centroid_move_generator.cpp | 2 +- vpr/src/place/weighted_median_move_generator.cpp | 2 +- 9 files changed, 13 insertions(+), 11 deletions(-) diff --git a/vpr/src/place/centroid_move_generator.cpp b/vpr/src/place/centroid_move_generator.cpp index 3ec0b216934..56e62d9302b 100644 --- a/vpr/src/place/centroid_move_generator.cpp +++ b/vpr/src/place/centroid_move_generator.cpp @@ -7,7 +7,7 @@ e_create_move CentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { //Find a movable block based on blk_type - ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); + ClusterBlockId b_from = propose_block_to_move(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; diff --git a/vpr/src/place/critical_uniform_move_generator.cpp b/vpr/src/place/critical_uniform_move_generator.cpp index dee0f0a4196..fe6f290b5e5 100644 --- a/vpr/src/place/critical_uniform_move_generator.cpp +++ b/vpr/src/place/critical_uniform_move_generator.cpp @@ -7,7 +7,7 @@ e_create_move CriticalUniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved ClusterNetId net_from; int pin_from; //Find a movable block based on blk_type - ClusterBlockId b_from = propose_block_type(blk_type, true, &net_from, &pin_from); + ClusterBlockId b_from = propose_block_to_move(blk_type, true, &net_from, &pin_from); auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); diff --git a/vpr/src/place/feasible_region_move_generator.cpp b/vpr/src/place/feasible_region_move_generator.cpp index a48a9a311ab..03e966fcd4c 100644 --- a/vpr/src/place/feasible_region_move_generator.cpp +++ b/vpr/src/place/feasible_region_move_generator.cpp @@ -9,7 +9,7 @@ e_create_move FeasibleRegionMoveGenerator::propose_move(t_pl_blocks_to_be_moved& ClusterNetId net_from; int pin_from; //Find a movable block based on blk_type - ClusterBlockId b_from = propose_block_type(blk_type, true, &net_from, &pin_from); + ClusterBlockId b_from = propose_block_to_move(blk_type, true, &net_from, &pin_from); if (!b_from) { //No movable block found return e_create_move::ABORT; diff --git a/vpr/src/place/median_move_generator.cpp b/vpr/src/place/median_move_generator.cpp index 36769350268..b800f146709 100644 --- a/vpr/src/place/median_move_generator.cpp +++ b/vpr/src/place/median_move_generator.cpp @@ -11,7 +11,7 @@ static void get_bb_from_scratch_excluding_block(ClusterNetId net_id, t_bb* bb_co e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* /*criticalities*/) { //Find a movable block based on blk_type - ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); + ClusterBlockId b_from = propose_block_to_move(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 9a352232f49..d50f3e110cf 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -521,7 +521,7 @@ int get_num_agent_types() { return place_ctx.phys_blk_type_to_agent_blk_type_map.size(); } -ClusterBlockId propose_block_type(t_logical_block_type& blk_type, bool highly_crit_block, ClusterNetId* net_from, int* pin_from) { +ClusterBlockId propose_block_to_move(t_logical_block_type& blk_type, bool highly_crit_block, ClusterNetId* net_from, int* pin_from) { ClusterBlockId b_from = ClusterBlockId::INVALID(); auto& cluster_ctx = g_vpr_ctx.clustering(); @@ -561,7 +561,8 @@ ClusterBlockId pick_from_block() { std::unordered_set tried_from_blocks; - //So long as untried blocks remain + //Keep selecting random blocks as long as there are any untried blocks + //Can get slow if there are many blocks but only a few (or none) can move while (tried_from_blocks.size() < cluster_ctx.clb_nlist.blocks().size()) { //Pick a block at random ClusterBlockId b_from = ClusterBlockId(vtr::irand((int)cluster_ctx.clb_nlist.blocks().size() - 1)); @@ -603,7 +604,8 @@ ClusterBlockId pick_from_block(t_logical_block_type blk_type) { std::unordered_set tried_from_blocks; - //So long as untried blocks remain + //Keep selecting random blocks as long as there are any untried blocks with type "blk_type" + //Can get slow if there are many blocks but only a few (or none) can move while (tried_from_blocks.size() < blocks_per_type.size()) { //Pick a block at random ClusterBlockId b_from = ClusterBlockId(blocks_per_type[vtr::irand((int)blocks_per_type.size() - 1)]); diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 0d3edef0d78..36733624eed 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -119,7 +119,7 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& * * @return block id if any blocks found. ClusterBlockId::INVALID() if no block found. */ -ClusterBlockId propose_block_type(t_logical_block_type& blk_type, bool highly_crit_block, ClusterNetId* net_from, int* pin_from); +ClusterBlockId propose_block_to_move(t_logical_block_type& blk_type, bool highly_crit_block, ClusterNetId* net_from, int* pin_from); /** * @brief Select a random block to be swapped with another block diff --git a/vpr/src/place/uniform_move_generator.cpp b/vpr/src/place/uniform_move_generator.cpp index b4d2011b31c..dd7a42bf721 100644 --- a/vpr/src/place/uniform_move_generator.cpp +++ b/vpr/src/place/uniform_move_generator.cpp @@ -5,7 +5,7 @@ e_create_move UniformMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& /*placer_opts*/, const PlacerCriticalities* /*criticalities*/) { //Find a movable block based on blk_type - ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); + ClusterBlockId b_from = propose_block_to_move(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; diff --git a/vpr/src/place/weighted_centroid_move_generator.cpp b/vpr/src/place/weighted_centroid_move_generator.cpp index 01a668c2884..d00eaed2ced 100644 --- a/vpr/src/place/weighted_centroid_move_generator.cpp +++ b/vpr/src/place/weighted_centroid_move_generator.cpp @@ -6,7 +6,7 @@ e_create_move WeightedCentroidMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { //Find a movable block based on blk_type - ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); + ClusterBlockId b_from = propose_block_to_move(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; diff --git a/vpr/src/place/weighted_median_move_generator.cpp b/vpr/src/place/weighted_median_move_generator.cpp index d719612fc5b..17f85419cd3 100644 --- a/vpr/src/place/weighted_median_move_generator.cpp +++ b/vpr/src/place/weighted_median_move_generator.cpp @@ -11,7 +11,7 @@ static void get_bb_cost_for_net_excluding_block(ClusterNetId net_id, ClusterBloc e_create_move WeightedMedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_affected, e_move_type& /*move_type*/, t_logical_block_type& blk_type, float rlim, const t_placer_opts& placer_opts, const PlacerCriticalities* criticalities) { //Find a movable block based on blk_type - ClusterBlockId b_from = propose_block_type(blk_type, false, NULL, NULL); + ClusterBlockId b_from = propose_block_to_move(blk_type, false, NULL, NULL); if (!b_from) { //No movable block found return e_create_move::ABORT; From 1a934aac12f9ffb4d4c1fc5c1759f1825c1b305c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 12 Apr 2023 10:34:53 -0400 Subject: [PATCH 55/81] debug: second agent number of available moves was passing incorrectly --- vpr/src/place/RL_agent_util.cpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index b403ff4a9f6..a63fbb824d9 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -46,25 +46,26 @@ void create_move_generators(std::unique_ptr& move_generator, std: determine_agent_block_types(); auto& place_ctx = g_vpr_ctx.placement(); - int num_states_avail_moves = placer_opts.place_algorithm.is_timing_driven() ? NUM_PL_1ST_STATE_MOVE_TYPES : NUM_PL_NONTIMING_MOVE_TYPES; + int num_1st_state_avail_moves = placer_opts.place_algorithm.is_timing_driven() ? NUM_PL_1ST_STATE_MOVE_TYPES : NUM_PL_NONTIMING_MOVE_TYPES; + int num_2nd_state_avail_moves = placer_opts.place_algorithm.is_timing_driven() ? NUM_PL_MOVE_TYPES : NUM_PL_NONTIMING_MOVE_TYPES; if (placer_opts.place_agent_algorithm == E_GREEDY) { std::unique_ptr karmed_bandit_agent1, karmed_bandit_agent2; //agent's 1st state if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move and block types\n"); - karmed_bandit_agent1 = std::make_unique(num_states_avail_moves, + karmed_bandit_agent1 = std::make_unique(num_1st_state_avail_moves, place_ctx.agent_blk_type_to_phys_blk_type_map.size(), placer_opts.place_agent_epsilon); } else { VTR_LOG("Using simple RL 'Epsilon Greedy agent' for choosing move types\n"); - karmed_bandit_agent1 = std::make_unique(num_states_avail_moves, + karmed_bandit_agent1 = std::make_unique(num_1st_state_avail_moves, placer_opts.place_agent_epsilon); } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(num_states_avail_moves, placer_opts.place_agent_epsilon); + karmed_bandit_agent2 = std::make_unique(num_2nd_state_avail_moves, placer_opts.place_agent_epsilon); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } else { @@ -72,16 +73,16 @@ void create_move_generators(std::unique_ptr& move_generator, std: //agent's 1st state if (placer_opts.place_agent_space == e_agent_space::MOVE_BLOCK_TYPE) { VTR_LOG("Using simple RL 'Softmax agent' for choosing move and block types\n"); - karmed_bandit_agent1 = std::make_unique(num_states_avail_moves, + karmed_bandit_agent1 = std::make_unique(num_1st_state_avail_moves, place_ctx.agent_blk_type_to_phys_blk_type_map.size()); } else { VTR_LOG("Using simple RL 'Softmax agent' for choosing move types\n"); - karmed_bandit_agent1 = std::make_unique(num_states_avail_moves); + karmed_bandit_agent1 = std::make_unique(num_1st_state_avail_moves); } karmed_bandit_agent1->set_step(placer_opts.place_agent_gamma, move_lim); move_generator = std::make_unique(karmed_bandit_agent1); //agent's 2nd state - karmed_bandit_agent2 = std::make_unique(num_states_avail_moves); + karmed_bandit_agent2 = std::make_unique(num_2nd_state_avail_moves); karmed_bandit_agent2->set_step(placer_opts.place_agent_gamma, move_lim); move_generator2 = std::make_unique(karmed_bandit_agent2); } From 490538a76d2c97da20428eedaf4c6879a962c918 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 17 Apr 2023 15:21:05 -0400 Subject: [PATCH 56/81] temp commit - just to double check noc tests --- vpr/src/place/simpleRL_move_generator.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 79d10f163fa..9a9084600ac 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -302,6 +302,11 @@ t_propose_action SoftmaxAgent::propose_action() { //Mark the q_table location that agent used to update its value after processing the move outcome last_action_ = (!propose_blk_type) ? move_type : move_type + (blk_type.index * num_available_moves_); + if(convert_agent_to_phys_blk_type(blk_type.index) == 7){ //temp change to see if NoC problem will go away + move_type = (int) e_move_type::UNIFORM; + last_action_ = move_type + (blk_type.index * num_available_moves_); + } + t_propose_action propose_action; propose_action.move_type = (e_move_type)move_type; propose_action.blk_type = blk_type; From ce97b2d2e7803951bb13606f8b7dfce7c63c5cd2 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 19 Apr 2023 10:51:29 -0400 Subject: [PATCH 57/81] temp commit - initialize NoCLink BW --- vpr/src/noc/noc_link.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/noc/noc_link.h b/vpr/src/noc/noc_link.h index b1b60d0858c..51a232d5734 100644 --- a/vpr/src/noc/noc_link.h +++ b/vpr/src/noc/noc_link.h @@ -47,7 +47,7 @@ class NocLink { NocRouterId source_router; /*!< The router which has this link as an outgoing edge*/ NocRouterId sink_router; /*!< The router which uses this link as an incoming edge*/ - double bandwidth_usage; /*!< Represents the bandwidth of the data being transmitted on the link. Units in bps*/ + double bandwidth_usage = 0.0; /*!< Represents the bandwidth of the data being transmitted on the link. Units in bps*/ public: NocLink(NocRouterId source_router, NocRouterId sink_router); From a112c1424d4c0274d47b573cb2e0155317b2257e Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Wed, 19 Apr 2023 15:25:55 -0400 Subject: [PATCH 58/81] temp commit : few changes to noc config files to see if that is gonna pass the testcases --- vpr/src/noc/noc_link.h | 2 +- .../vpr_noc_clique_topology/config/config.txt | 2 +- .../vpr_noc_nearest_neighbor_topology/config/config.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/vpr/src/noc/noc_link.h b/vpr/src/noc/noc_link.h index 51a232d5734..b1b60d0858c 100644 --- a/vpr/src/noc/noc_link.h +++ b/vpr/src/noc/noc_link.h @@ -47,7 +47,7 @@ class NocLink { NocRouterId source_router; /*!< The router which has this link as an outgoing edge*/ NocRouterId sink_router; /*!< The router which uses this link as an incoming edge*/ - double bandwidth_usage = 0.0; /*!< Represents the bandwidth of the data being transmitted on the link. Units in bps*/ + double bandwidth_usage; /*!< Represents the bandwidth of the data being transmitted on the link. Units in bps*/ public: NocLink(NocRouterId source_router, NocRouterId sink_router); diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology/config/config.txt index 8e3fbece146..4195ab566d4 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology/config/config.txt @@ -30,5 +30,5 @@ qor_parse_file=qor_noc_spec.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" +script_params =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" --noc_swap_percentage 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt index c35f137dad2..1d77d75c72d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt @@ -18,7 +18,7 @@ circuit_list_add=complex_64_noc_nearest_neighbor.blif arch_list_add=stratixiv_arch.timing_with_a_embedded_10X10_mesh_noc_topology.xml # Add NoC Traffic Patterns to list to sweep -noc_traffic_list_add=complex_64_noc_nearest_neighbor +noc_traffic_list_add=complex_64_noc_nearest_neighbor.flows # Parse info and how to parse parse_file=vpr_noc.txt From 8091ebacdf8247aa48dd2fa7cbaa46a91158ac7f Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 20 Apr 2023 13:40:55 -0400 Subject: [PATCH 59/81] changed placement statistic to print the noc_router_adapter properly --- vpr/src/place/place.cpp | 2 +- .../vpr_noc_nearest_neighbor_topology/config/config.txt | 2 +- .../vpr_noc_star_topology/config/config.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 0baea142655..599fcb2b869 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -3249,7 +3249,7 @@ static void print_placement_move_types_stats( rejected = move_type_stat.rejected_moves[agent_type * num_of_avail_moves + imove]; aborted = moves - (accepted + rejected); VTR_LOG( - "\t%.17s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", + "\t%.20s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", move_name.c_str(), itype.name, 100 * moves / total_moves, 100 * accepted / moves, 100 * rejected / moves, 100 * aborted / moves); diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt index 1d77d75c72d..779a4bff628 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt @@ -30,5 +30,5 @@ qor_parse_file=qor_noc_spec.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" +script_params =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" --noc_swap_percentage 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology/config/config.txt index 88d43dd7332..3408c3c4719 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology/config/config.txt @@ -35,4 +35,4 @@ qor_parse_file=qor_noc_spec.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params_common =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" \ No newline at end of file +script_params_common =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" --noc_swap_percentage 0 \ No newline at end of file From 3eb9a4ead461d0c59c32e58b6fc5ffaecd371312 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 20 Apr 2023 17:35:11 -0400 Subject: [PATCH 60/81] updated golden result for vtr_reg_basic --- .../basic_timing/config/golden_results.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt index 513c69a4dca..91bf05bb559 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_timing/config/golden_results.txt @@ -1,9 +1,9 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 2.99 vpr 63.55 MiB -1 -1 0.22 21924 3 0.06 -1 -1 36616 -1 -1 69 99 1 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65072 99 130 343 473 1 230 299 12 12 144 clb auto 24.9 MiB 0.06 592 63.5 MiB 0.13 0.00 1.64429 -113.766 -1.64429 1.64429 0.25 0.000392271 0.000354946 0.0340312 0.0307792 42 1253 12 5.66058e+06 4.26669e+06 330626. 2296.01 1.25 0.188855 0.173963 1081 56 674 909 69958 18408 1.93469 1.93469 -131.89 -1.93469 -0.435251 -0.221714 415849. 2887.84 0.10 0.07 0.0503087 0.0468697 - k6_N10_mem32K_40nm.xml ch_intrinsics.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 3.08 vpr 63.63 MiB -1 -1 0.22 22000 3 0.06 -1 -1 36936 -1 -1 69 99 1 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65156 99 130 343 473 1 230 299 12 12 144 clb auto 25.1 MiB 0.06 592 63.6 MiB 0.13 0.00 1.64429 -113.766 -1.64429 1.64429 0.25 0.000388017 0.000350874 0.0342309 0.030956 42 1253 12 5.66058e+06 4.26669e+06 330626. 2296.01 1.28 0.187551 0.172575 1081 56 674 909 69958 18408 1.93469 1.93469 -131.89 -1.93469 -0.435251 -0.221714 415849. 2887.84 0.11 0.07 0.051059 0.0474976 - k6_N10_mem32K_40nm.xml diffeq1.v common 6.59 vpr 66.95 MiB -1 -1 0.35 26760 15 0.34 -1 -1 37888 -1 -1 49 162 0 5 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68556 162 96 993 934 1 713 312 16 16 256 mult_36 auto 28.9 MiB 0.19 5824 66.9 MiB 0.36 0.01 19.9533 -1677 -19.9533 19.9533 0.54 0.00150749 0.00137729 0.126685 0.114987 44 11808 35 1.21132e+07 4.62081e+06 665287. 2598.78 2.75 0.527852 0.484329 9456 25 3776 8119 2549621 620254 22.1509 22.1509 -1847.63 -22.1509 0 0 864808. 3378.16 0.22 0.43 0.0904537 0.0845469 - k6_N10_mem32K_40nm.xml diffeq1.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 6.85 vpr 67.08 MiB -1 -1 0.35 26964 15 0.33 -1 -1 38160 -1 -1 49 162 0 5 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68692 162 96 993 934 1 713 312 16 16 256 mult_36 auto 29.2 MiB 0.18 5824 67.1 MiB 0.35 0.01 19.9533 -1677 -19.9533 19.9533 0.58 0.00129807 0.00118085 0.126765 0.115609 44 11808 35 1.21132e+07 4.62081e+06 665287. 2598.78 2.91 0.535784 0.490731 9456 25 3776 8119 2549621 620254 22.1509 22.1509 -1847.63 -22.1509 0 0 864808. 3378.16 0.23 0.45 0.0876223 0.0820475 - k6_N10_mem32K_40nm.xml single_wire.v common 0.41 vpr 60.95 MiB -1 -1 0.06 20084 1 0.01 -1 -1 33524 -1 -1 0 1 0 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62408 1 1 1 2 0 1 2 3 3 9 -1 auto 22.3 MiB 0.00 2 60.9 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.00 6.808e-06 3.745e-06 4.0481e-05 2.3163e-05 2 1 1 53894 0 1165.58 129.509 0.00 0.000108733 6.4027e-05 1 1 1 1 17 8 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 5.278e-05 3.4056e-05 - k6_N10_mem32K_40nm.xml single_wire.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.38 vpr 60.30 MiB -1 -1 0.05 20016 1 0.00 -1 -1 33240 -1 -1 0 1 0 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 61752 1 1 1 2 0 1 2 3 3 9 -1 auto 21.5 MiB 0.00 2 60.3 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.00 9.054e-06 5.79e-06 5.0911e-05 3.1993e-05 2 1 1 53894 0 1165.58 129.509 0.00 0.000111481 6.9604e-05 1 1 1 1 17 8 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 5.3017e-05 3.5193e-05 - k6_N10_mem32K_40nm.xml single_ff.v common 0.39 vpr 60.39 MiB -1 -1 0.06 20300 1 0.00 -1 -1 33196 -1 -1 1 2 0 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 61836 2 1 3 4 1 3 4 3 3 9 -1 auto 21.7 MiB 0.00 4 60.4 MiB 0.00 0.00 0.570641 -0.944653 -0.570641 0.570641 0.00 9.554e-06 6.487e-06 5.8342e-05 4.1234e-05 2 2 2 53894 53894 1165.58 129.509 0.00 0.000160228 0.00011508 2 2 3 3 69 44 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.000105653 7.9824e-05 - k6_N10_mem32K_40nm.xml single_ff.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.40 vpr 60.87 MiB -1 -1 0.06 20320 1 0.01 -1 -1 33148 -1 -1 1 2 0 0 success v8.0.0-6956-gf669015f3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-01-27T02:28:44 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62328 2 1 3 4 1 3 4 3 3 9 -1 auto 22.2 MiB 0.00 4 60.9 MiB 0.00 0.00 0.570641 -0.944653 -0.570641 0.570641 0.00 7.656e-06 4.691e-06 5.6694e-05 3.8634e-05 2 2 2 53894 53894 1165.58 129.509 0.00 0.000166638 0.00011646 2 2 3 3 69 44 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 9.508e-05 7.0189e-05 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 4.12 vpr 64.05 MiB -1 -1 0.40 22828 3 0.10 -1 -1 35680 -1 -1 69 99 1 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 65592 99 130 343 473 1 230 299 12 12 144 clb auto 25.2 MiB 0.08 549 64.1 MiB 0.29 0.00 1.50234 -115.736 -1.50234 1.50234 0.36 0.000528173 0.000468779 0.0446154 0.0396412 38 1131 13 5.66058e+06 4.26669e+06 306247. 2126.71 1.60 0.287927 0.261936 10492 58364 -1 987 12 590 807 47353 14609 0 0 47353 14609 807 676 0 0 2367 2185 0 0 2871 2373 0 0 3489 1937 0 0 17526 3976 0 0 20293 3462 0 0 807 0 0 217 364 301 2591 0 0 2.0266 2.0266 -132.636 -2.0266 -0.822662 -0.224738 388532. 2698.14 0.16 0.04 0.06 -1 -1 0.16 0.0236207 0.0221146 +k6_N10_mem32K_40nm.xml ch_intrinsics.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 4.01 vpr 64.07 MiB -1 -1 0.39 22244 3 0.10 -1 -1 35692 -1 -1 69 99 1 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 65612 99 130 343 473 1 230 299 12 12 144 clb auto 25.2 MiB 0.07 549 64.1 MiB 0.29 0.00 1.50234 -115.736 -1.50234 1.50234 0.36 0.000540195 0.000479551 0.0448647 0.0397297 38 1131 13 5.66058e+06 4.26669e+06 306247. 2126.71 1.59 0.287235 0.260905 10492 58364 -1 987 12 590 807 47353 14609 0 0 47353 14609 807 676 0 0 2367 2185 0 0 2871 2373 0 0 3489 1937 0 0 17526 3976 0 0 20293 3462 0 0 807 0 0 217 364 301 2591 0 0 2.0266 2.0266 -132.636 -2.0266 -0.822662 -0.224738 388532. 2698.14 0.16 0.04 0.06 -1 -1 0.16 0.0235992 0.0221462 +k6_N10_mem32K_40nm.xml diffeq1.v common 13.81 vpr 67.15 MiB -1 -1 0.51 27032 15 0.43 -1 -1 36828 -1 -1 49 162 0 5 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 68760 162 96 993 934 1 713 312 16 16 256 mult_36 auto 28.9 MiB 0.25 5746 67.1 MiB 0.79 0.01 20.3951 -1668.77 -20.3951 20.3951 0.75 0.00150327 0.00133516 0.153223 0.136061 46 11561 48 1.21132e+07 4.62081e+06 696785. 2721.82 8.19 0.911932 0.824514 20912 135057 -1 9601 22 4023 8415 2463394 631001 0 0 2463394 631001 8415 5123 0 0 97767 95649 0 0 102378 98023 0 0 36495 18990 0 0 1074861 208603 0 0 1143478 204613 0 0 8415 0 0 4694 13491 11952 82900 0 0 22.3597 22.3597 -1812.79 -22.3597 0 0 894618. 3494.60 0.34 0.57 0.14 -1 -1 0.34 0.0929882 0.0866082 +k6_N10_mem32K_40nm.xml diffeq1.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 13.64 vpr 67.22 MiB -1 -1 0.52 26884 15 0.44 -1 -1 36692 -1 -1 49 162 0 5 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 68832 162 96 993 934 1 713 312 16 16 256 mult_36 auto 28.9 MiB 0.28 5746 67.2 MiB 0.81 0.01 20.3951 -1668.77 -20.3951 20.3951 0.72 0.00154782 0.00135789 0.155453 0.138243 46 11561 48 1.21132e+07 4.62081e+06 696785. 2721.82 8.00 0.901464 0.815455 20912 135057 -1 9601 22 4023 8415 2463394 631001 0 0 2463394 631001 8415 5123 0 0 97767 95649 0 0 102378 98023 0 0 36495 18990 0 0 1074861 208603 0 0 1143478 204613 0 0 8415 0 0 4694 13491 11952 82900 0 0 22.3597 22.3597 -1812.79 -22.3597 0 0 894618. 3494.60 0.34 0.57 0.14 -1 -1 0.34 0.0935784 0.0870901 +k6_N10_mem32K_40nm.xml single_wire.v common 0.53 vpr 60.99 MiB -1 -1 0.10 19712 1 0.01 -1 -1 32156 -1 -1 0 1 0 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62452 1 1 1 2 0 1 2 3 3 9 -1 auto 22.2 MiB 0.00 2 61.0 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.01 6.508e-06 4.21e-06 4.7302e-05 3.2578e-05 2 1 1 53894 0 1165.58 129.509 0.00 0.000133792 9.5007e-05 254 297 -1 1 1 1 1 17 8 0 0 17 8 1 1 0 0 4 1 0 0 8 4 0 0 1 1 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 6.1111e-05 4.4458e-05 +k6_N10_mem32K_40nm.xml single_wire.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.58 vpr 61.23 MiB -1 -1 0.13 19728 1 0.00 -1 -1 32200 -1 -1 0 1 0 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62696 1 1 1 2 0 1 2 3 3 9 -1 auto 22.4 MiB 0.00 2 61.2 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.01 6.184e-06 3.993e-06 4.3641e-05 2.9251e-05 2 1 1 53894 0 1165.58 129.509 0.00 0.000125688 8.6197e-05 254 297 -1 1 1 1 1 17 8 0 0 17 8 1 1 0 0 4 1 0 0 8 4 0 0 1 1 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 6.1706e-05 4.4581e-05 +k6_N10_mem32K_40nm.xml single_ff.v common 0.58 vpr 61.16 MiB -1 -1 0.15 20380 1 0.00 -1 -1 32344 -1 -1 1 2 0 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62628 2 1 3 4 1 3 4 3 3 9 -1 auto 22.3 MiB 0.00 4 61.2 MiB 0.00 0.00 0.570641 -0.944653 -0.570641 0.570641 0.01 8.111e-06 5.609e-06 6.9436e-05 5.2818e-05 2 4 2 53894 53894 1165.58 129.509 0.00 0.000214692 0.000163548 254 297 -1 4 2 3 3 75 50 0 0 75 50 3 3 0 0 18 17 0 0 18 18 0 0 21 3 0 0 7 6 0 0 8 3 0 0 3 0 0 0 0 0 3 0 0 0.577715 0.577715 -1.12352 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000126735 9.9717e-05 +k6_N10_mem32K_40nm.xml single_ff.v common_--reorder_rr_graph_nodes_algorithm_random_shuffle 0.53 vpr 61.28 MiB -1 -1 0.10 20236 1 0.00 -1 -1 32312 -1 -1 1 2 0 0 success v8.0.0-7648-g96837b3-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:14:09 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62752 2 1 3 4 1 3 4 3 3 9 -1 auto 22.4 MiB 0.00 4 61.3 MiB 0.00 0.00 0.570641 -0.944653 -0.570641 0.570641 0.01 8.326e-06 5.482e-06 6.6158e-05 4.802e-05 2 4 2 53894 53894 1165.58 129.509 0.00 0.000213451 0.000160083 254 297 -1 4 2 3 3 75 50 0 0 75 50 3 3 0 0 18 17 0 0 18 18 0 0 21 3 0 0 7 6 0 0 8 3 0 0 3 0 0 0 0 0 3 0 0 0.577715 0.577715 -1.12352 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 0.000106785 8.5521e-05 From 2ac673c275f0be9f4c7978ecbd3a73bc33702782 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 20 Apr 2023 17:53:35 -0400 Subject: [PATCH 61/81] updated golden result for vtr_reg_strong --- .../config/golden_results.txt | 4 +- .../config/golden_results.txt | 42 +++++++++---------- .../strong_sdc/config/config.txt | 2 +- .../strong_sdc/config/golden_results.txt | 14 +++---- 4 files changed, 31 insertions(+), 31 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_multiclock/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_multiclock/config/golden_results.txt index eca3cb644ca..a939a6842c7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_multiclock/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_multiclock/config/golden_results.txt @@ -1,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.xml multiclock.blif common 1.33433 0.595 0.839813 -1 -1 0.57 0.814813 -1 1.33433 -1 1.07141 -1 2.12256 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71781 -1 -1 0.268 3.24281 -1 1.18296 -1 3.30941 -1 -1.12381 -1 -1 -1 -1 +arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack +k6_frac_N10_mem32K_40nm.xml multiclock.blif common 1.31564 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.31564 -1 1.07053 -1 1.76203 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.16427 -1 3.30853 -1 -1.48434 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt index fc643d89310..1e16c1aa5e5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.54 vpr 58.74 MiB -1 -1 -1 -1 0 0.00 -1 -1 32724 -1 -1 1 0 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60152 -1 1 1 2 0 1 2 3 3 9 -1 auto 20.0 MiB 0.00 0 58.7 MiB 0.00 0.00 nan 0 0 nan 0.00 7.35e-06 3.847e-06 3.9643e-05 2.3444e-05 2 0 1 3900 3900 966.985 107.443 0.01 0.000111391 7.1788e-05 0 1 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 5.0522e-05 3.4292e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.49 vpr 58.64 MiB -1 -1 -1 -1 0 0.01 -1 -1 32820 -1 -1 1 0 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60048 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.9 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 7.145e-06 3.657e-06 4.0496e-05 2.3941e-05 2 0 1 3900 3900 966.985 107.443 0.01 0.000103753 6.5013e-05 0 1 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 5.7549e-05 3.9389e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.75 vpr 58.82 MiB -1 -1 -1 -1 0 0.00 -1 -1 32740 -1 -1 1 0 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60236 6 1 1 8 0 1 8 3 3 9 -1 auto 19.8 MiB 0.00 0 58.8 MiB 0.00 0.00 nan 0 0 nan 0.00 1.0249e-05 6.009e-06 4.4139e-05 2.667e-05 2 0 1 3900 3900 966.985 107.443 0.01 0.000108176 6.7928e-05 0 1 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 5.1631e-05 3.5245e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.40 vpr 58.59 MiB -1 -1 -1 -1 0 0.01 -1 -1 33008 -1 -1 1 0 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 59996 6 1 1 8 0 1 8 3 3 9 -1 auto 19.7 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.00 7.11e-06 3.592e-06 3.9362e-05 2.2525e-05 2 0 1 3900 3900 966.985 107.443 0.00 9.5551e-05 5.7946e-05 0 1 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 5.4351e-05 3.7104e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.50 vpr 58.81 MiB -1 -1 -1 -1 1 0.01 -1 -1 33048 -1 -1 1 2 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60224 2 1 3 4 0 3 4 3 3 9 -1 auto 19.9 MiB 0.00 6 58.8 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.00 7.848e-06 4.471e-06 5.2375e-05 3.4064e-05 16 10 1 3900 3900 3970.02 441.113 0.01 0.000165562 0.000115241 7 1 3 3 76 61 0.656238 nan -0.656238 -0.656238 0 0 4445.42 493.935 0.00 0.00 7.2129e-05 5.4427e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.64 vpr 58.65 MiB -1 -1 -1 -1 2 0.03 -1 -1 34888 -1 -1 1 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60056 5 1 7 8 0 7 7 3 3 9 -1 auto 19.8 MiB 0.00 14 58.6 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.00 1.0966e-05 6.33e-06 7.0321e-05 5.0776e-05 16 33 25 3900 3900 3970.02 441.113 0.03 0.0011765 0.000807652 13 8 20 20 570 442 0.856453 nan -0.856453 -0.856453 0 0 4445.42 493.935 0.01 0.00 0.000186362 0.000140641 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.64 vpr 58.73 MiB -1 -1 -1 -1 2 0.03 -1 -1 35204 -1 -1 1 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60144 5 1 7 8 0 7 7 3 3 9 -1 auto 19.8 MiB 0.00 14 58.7 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.00 1.1758e-05 6.892e-06 8.3741e-05 5.9872e-05 16 24 16 3900 3900 3970.02 441.113 0.02 0.00100118 0.000683086 19 9 26 26 721 563 1.22966 nan -1.22966 -1.22966 0 0 4445.42 493.935 0.00 0.00 0.000194057 0.000146104 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.48 vpr 58.74 MiB -1 -1 -1 -1 1 0.01 -1 -1 34272 -1 -1 1 3 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60152 3 1 5 6 1 4 5 3 3 9 -1 auto 19.9 MiB 0.00 6 58.7 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.01 1.0623e-05 6.879e-06 7.288e-05 5.0897e-05 14 4 1 3900 3900 2841.42 315.713 0.01 0.000236918 0.000175153 9 1 3 3 67 52 0.532011 0.532011 -0.86673 -0.532011 0 0 4264.82 473.869 0.00 0.00 9.0527e-05 7.0147e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.71 vpr 58.82 MiB -1 -1 -1 -1 1 0.04 -1 -1 34884 -1 -1 1 3 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60232 4 1 4 6 0 4 6 3 3 9 -1 auto 19.9 MiB 0.00 8 58.8 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.00 8.791e-06 5.42e-06 5.7075e-05 3.7562e-05 14 17 12 3900 3900 2841.42 315.713 0.01 0.000279086 0.000191767 12 12 25 25 797 638 0.903756 nan -0.903756 -0.903756 0 0 4264.82 473.869 0.00 0.00 0.000177516 0.000122515 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.42 vpr 58.52 MiB -1 -1 -1 -1 1 0.03 -1 -1 34744 -1 -1 1 4 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 59928 4 4 8 12 0 8 9 3 3 9 -1 auto 19.7 MiB 0.00 17 58.5 MiB 0.00 0.00 0.461147 -1.8388 -0.461147 nan 0.00 1.1527e-05 7.585e-06 0.000121978 8.0119e-05 28 40 26 3900 3900 5935.82 659.535 0.02 0.00165128 0.0012087 37 8 26 79 2373 1678 0.94521 nan -3.00059 -0.94521 0 0 6854.42 761.602 0.00 0.00 0.000339554 0.000278727 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.82 vpr 58.95 MiB -1 -1 -1 -1 3 0.03 -1 -1 35480 -1 -1 3 6 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60364 6 6 28 34 0 28 15 5 5 25 clb auto 20.5 MiB 0.01 103 58.9 MiB 0.00 0.00 1.28477 -5.86383 -1.28477 nan 0.06 2.8174e-05 2.087e-05 0.000307264 0.000271434 24 230 15 23400 11700 20975.0 838.999 0.19 0.00546385 0.00453943 208 19 241 990 55771 25029 1.63173 nan -7.5813 -1.63173 0 0 27052.1 1082.08 0.01 0.01 0.00153033 0.0013179 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.88 vpr 59.04 MiB -1 -1 -1 -1 4 0.05 -1 -1 35364 -1 -1 5 7 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60452 7 8 39 47 0 39 20 5 5 25 clb auto 20.5 MiB 0.01 154 59.0 MiB 0.00 0.00 1.50544 -7.62486 -1.50544 nan 0.03 3.341e-05 2.5087e-05 0.00064672 0.00055128 30 357 20 23400 19500 26626.2 1065.05 0.11 0.00634993 0.00527747 323 16 297 1143 75290 32348 1.8297 nan -10.0168 -1.8297 0 0 33739.5 1349.58 0.01 0.02 0.00201047 0.00176808 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 1.02 vpr 59.08 MiB -1 -1 -1 -1 8 0.05 -1 -1 35452 -1 -1 7 8 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60496 8 8 51 59 0 51 23 6 6 36 clb auto 20.5 MiB 0.01 201 59.1 MiB 0.01 0.00 2.43674 -11.6517 -2.43674 nan 0.05 4.2594e-05 3.2435e-05 0.00859865 0.00847405 30 501 23 165600 27300 47960.3 1332.23 0.29 0.0177674 0.0162629 453 24 530 2278 164447 63508 3.38247 nan -17.703 -3.38247 0 0 61410.5 1705.85 0.01 0.03 0.00329641 0.00288021 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 1.41 vpr 59.50 MiB -1 -1 -1 -1 7 0.07 -1 -1 35860 -1 -1 11 10 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60924 10 10 95 105 0 95 31 6 6 36 clb auto 21.1 MiB 0.01 414 59.5 MiB 0.01 0.00 2.48751 -17.3586 -2.48751 nan 0.05 7.4099e-05 5.8176e-05 0.00182602 0.00155827 38 1105 50 165600 42900 55946.4 1554.07 0.48 0.0311369 0.0264233 854 19 815 3390 240925 85756 3.31375 nan -23.0292 -3.31375 0 0 73011.6 2028.10 0.02 0.05 0.0053918 0.0048088 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.47 vpr 59.54 MiB -1 -1 -1 -1 8 0.07 -1 -1 36476 -1 -1 11 11 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60968 11 11 94 105 0 94 33 6 6 36 clb auto 21.0 MiB 0.01 410 59.5 MiB 0.01 0.00 2.76264 -20.7478 -2.76264 nan 0.05 7.1869e-05 5.6915e-05 0.0016173 0.0013867 40 959 25 165600 42900 61410.5 1705.85 0.62 0.0501897 0.0462337 858 19 924 3788 271625 96455 3.26496 nan -25.0498 -3.26496 0 0 78756.9 2187.69 0.02 0.05 0.00579534 0.00521968 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.58 vpr 58.48 MiB -1 -1 -1 -1 1 0.03 -1 -1 34136 -1 -1 1 3 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 59888 3 2 5 7 0 5 6 3 3 9 -1 auto 19.6 MiB 0.00 10 58.5 MiB 0.00 0.00 0.461147 -0.920363 -0.461147 nan 0.00 1.1958e-05 6.891e-06 7.4008e-05 5.3209e-05 16 29 7 3900 3900 3970.02 441.113 0.01 0.000328675 0.000249242 16 2 8 14 311 228 0.890032 nan -1.41661 -0.890032 0 0 4445.42 493.935 0.00 0.00 0.000142463 0.000115225 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.51 vpr 58.58 MiB -1 -1 -1 -1 2 0.03 -1 -1 34880 -1 -1 1 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 59984 5 3 9 12 0 9 9 3 3 9 -1 auto 19.7 MiB 0.00 18 58.6 MiB 0.00 0.00 0.72619 -1.91353 -0.72619 nan 0.00 1.2943e-05 8.827e-06 0.000107386 8.3078e-05 18 36 16 3900 3900 4264.82 473.869 0.02 0.00142703 0.00102858 37 12 61 115 3991 3042 1.33716 nan -3.06677 -1.33716 0 0 5011.22 556.802 0.00 0.00 0.000348607 0.00027571 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.70 vpr 58.68 MiB -1 -1 -1 -1 3 0.03 -1 -1 35084 -1 -1 1 7 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60084 7 4 13 17 0 13 12 3 3 9 -1 auto 19.8 MiB 0.00 26 58.7 MiB 0.00 0.00 0.993163 -3.17366 -0.993163 nan 0.00 1.6906e-05 1.0911e-05 0.000131901 0.000108113 26 56 13 3900 3900 5185.22 576.135 0.02 0.00180538 0.0013891 40 5 29 53 1518 1093 1.39187 nan -4.24817 -1.39187 0 0 6645.42 738.380 0.00 0.00 0.000337079 0.000290795 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.58 vpr 58.82 MiB -1 -1 -1 -1 4 0.04 -1 -1 35356 -1 -1 1 9 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60232 9 5 17 22 0 17 15 3 3 9 -1 auto 19.8 MiB 0.01 34 58.8 MiB 0.00 0.00 1.26014 -4.7027 -1.26014 nan 0.00 1.6768e-05 1.1759e-05 0.000166237 0.000138742 28 61 20 3900 3900 5935.82 659.535 0.02 0.00237329 0.00188119 54 12 75 142 3802 2478 1.8141 nan -6.12756 -1.8141 0 0 6854.42 761.602 0.00 0.00 0.000601579 0.000511668 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.60 vpr 58.71 MiB -1 -1 -1 -1 4 0.03 -1 -1 35260 -1 -1 2 11 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 60116 11 6 24 30 0 24 19 4 4 16 clb auto 20.2 MiB 0.00 68 58.7 MiB 0.00 0.00 1.37681 -6.55159 -1.37681 nan 0.01 2.2864e-05 1.7059e-05 0.000248509 0.000216084 28 175 16 7800 7800 12557.4 784.840 0.04 0.00339649 0.00276943 143 20 195 455 20346 11170 1.72113 nan -8.19368 -1.72113 0 0 14986.4 936.652 0.00 0.01 0.00118432 0.000974395 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.49 vpr 58.74 MiB -1 -1 -1 -1 0 0.00 -1 -1 32172 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60152 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.6 MiB 0.00 0 58.7 MiB 0.00 0.00 nan 0 0 nan 0.01 5.028e-06 2.978e-06 4.4148e-05 2.6217e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000110429 7.0189e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.9696e-05 4.4014e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.45 vpr 58.61 MiB -1 -1 -1 -1 0 0.01 -1 -1 32232 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60020 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.5 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 5.209e-06 3.154e-06 4.0797e-05 2.8488e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000111421 7.9176e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.5972e-05 4.1397e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.50 vpr 58.83 MiB -1 -1 -1 -1 0 0.01 -1 -1 32320 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60244 6 1 1 8 0 1 8 3 3 9 -1 auto 19.7 MiB 0.00 0 58.8 MiB 0.00 0.00 nan 0 0 nan 0.01 5.525e-06 3.366e-06 3.7737e-05 2.5329e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000104691 7.2474e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.4633e-05 4.0922e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.50 vpr 58.58 MiB -1 -1 -1 -1 0 0.01 -1 -1 32216 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59984 6 1 1 8 0 1 8 3 3 9 -1 auto 19.4 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 6.04e-06 3.649e-06 4.0076e-05 2.6534e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000108211 7.5055e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 6.0071e-05 4.46e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.53 vpr 58.64 MiB -1 -1 -1 -1 1 0.01 -1 -1 32292 -1 -1 1 2 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60044 2 1 3 4 0 3 4 3 3 9 -1 auto 19.5 MiB 0.00 6 58.6 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.735e-06 5.211e-06 5.5916e-05 4.0275e-05 12 5 1 3900 3900 2582.62 286.957 0.02 0.000406279 0.000295445 314 651 -1 5 18 36 36 767 524 0 0 767 524 36 36 0 0 149 149 0 0 199 175 0 0 36 36 0 0 113 21 0 0 234 107 0 0 36 0 0 0 0 0 36 0 0 0.592443 nan -0.592443 -0.592443 0 0 3970.02 441.113 0.00 0.00 0.00 -1 -1 0.00 0.000230822 0.000165829 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.63 vpr 58.69 MiB -1 -1 -1 -1 2 0.04 -1 -1 34128 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60100 5 1 7 8 0 7 7 3 3 9 -1 auto 19.5 MiB 0.00 14 58.7 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.1011e-05 6.789e-06 8.0004e-05 6.1862e-05 18 17 8 3900 3900 4264.82 473.869 0.03 0.00149389 0.00107187 346 735 -1 14 4 12 12 320 251 0 0 320 251 12 12 0 0 70 70 0 0 81 80 0 0 12 12 0 0 54 27 0 0 91 50 0 0 12 0 0 0 0 0 12 0 0 1.03782 nan -1.03782 -1.03782 0 0 5011.22 556.802 0.00 0.00 0.00 -1 -1 0.00 0.000190951 0.000158074 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.65 vpr 58.74 MiB -1 -1 -1 -1 2 0.07 -1 -1 34372 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60152 5 1 7 8 0 7 7 3 3 9 -1 auto 19.5 MiB 0.00 14 58.7 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.1299e-05 6.9e-06 7.9734e-05 6.1219e-05 16 26 17 3900 3900 3970.02 441.113 0.01 0.000464013 0.000354885 330 691 -1 25 9 27 27 973 789 0 0 973 789 27 27 0 0 179 179 0 0 284 280 0 0 27 27 0 0 188 126 0 0 268 150 0 0 27 0 0 0 0 0 27 0 0 1.58285 nan -1.58285 -1.58285 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000219865 0.000176192 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.43 vpr 58.88 MiB -1 -1 -1 -1 1 0.01 -1 -1 32496 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60296 3 1 5 6 1 4 5 3 3 9 -1 auto 19.7 MiB 0.00 6 58.9 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.01 1.117e-05 6.751e-06 7.0131e-05 5.176e-05 16 8 1 3900 3900 3970.02 441.113 0.02 0.000353587 0.000268191 330 691 -1 14 4 8 8 303 249 0 0 303 249 8 8 0 0 56 56 0 0 84 83 0 0 8 8 0 0 58 45 0 0 89 49 0 0 8 0 0 0 0 0 8 0 0 0.776991 0.776991 -1.16292 -0.776991 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000160575 0.000127124 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.66 vpr 58.67 MiB -1 -1 -1 -1 1 0.05 -1 -1 34764 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60080 4 1 4 6 0 4 6 3 3 9 -1 auto 19.5 MiB 0.00 8 58.7 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 9.163e-06 6.305e-06 6.3279e-05 4.6054e-05 16 11 1 3900 3900 3970.02 441.113 0.03 0.00110992 0.000778941 330 691 -1 14 16 33 33 1258 1025 0 0 1258 1025 33 33 0 0 219 219 0 0 397 396 0 0 33 33 0 0 213 169 0 0 363 175 0 0 33 0 0 0 0 0 33 0 0 0.959435 nan -0.959435 -0.959435 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000237248 0.000176198 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.64 vpr 58.83 MiB -1 -1 -1 -1 1 0.05 -1 -1 34452 -1 -1 1 4 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60244 4 4 8 12 0 8 9 3 3 9 -1 auto 19.6 MiB 0.00 17 58.8 MiB 0.00 0.00 0.461147 -1.8388 -0.461147 nan 0.01 1.5206e-05 1.0131e-05 0.000131359 0.000107994 20 43 15 3900 3900 4445.42 493.935 0.04 0.002683 0.00209774 354 763 -1 45 9 34 109 4430 3406 0 0 4430 3406 109 108 0 0 702 699 0 0 1202 1152 0 0 147 140 0 0 997 495 0 0 1273 812 0 0 109 0 0 75 130 180 764 0 0 1.10339 nan -3.31095 -1.10339 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000432919 0.000365875 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.90 vpr 58.87 MiB -1 -1 -1 -1 3 0.05 -1 -1 34868 -1 -1 3 6 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60280 6 6 28 34 0 28 15 5 5 25 clb auto 20.3 MiB 0.01 85 58.9 MiB 0.00 0.00 1.13809 -5.17443 -1.13809 nan 0.04 3.1379e-05 2.3316e-05 0.000715388 0.000590881 24 250 29 23400 11700 20975.0 838.999 0.14 0.00679403 0.00561013 1420 4462 -1 209 22 312 1254 72764 32181 0 0 72764 32181 1254 998 0 0 5724 5661 0 0 10979 7934 0 0 1663 1365 0 0 25640 7137 0 0 27504 9086 0 0 1254 0 0 942 2362 3422 14798 0 0 1.67956 nan -7.17912 -1.67956 0 0 27052.1 1082.08 0.01 0.03 0.01 -1 -1 0.01 0.00236783 0.00203636 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 1.38 vpr 59.22 MiB -1 -1 -1 -1 4 0.05 -1 -1 34696 -1 -1 5 7 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60640 7 8 39 47 0 39 20 5 5 25 clb auto 20.5 MiB 0.01 140 59.2 MiB 0.01 0.00 1.44727 -7.37047 -1.44727 nan 0.04 4.6542e-05 3.566e-05 0.000999887 0.000835008 28 440 32 23400 19500 25328.9 1013.15 0.57 0.0230039 0.0190075 1476 4870 -1 337 21 446 1763 102447 42880 0 0 102447 42880 1763 1271 0 0 7872 7774 0 0 16086 10593 0 0 2128 1781 0 0 38398 11681 0 0 36200 9780 0 0 1763 0 0 1317 5511 4414 24433 0 0 1.95499 nan -9.51805 -1.95499 0 0 29680.9 1187.23 0.01 0.03 0.01 -1 -1 0.01 0.00318564 0.00277883 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 1.31 vpr 58.95 MiB -1 -1 -1 -1 8 0.07 -1 -1 34724 -1 -1 7 8 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60360 8 8 51 59 0 51 23 6 6 36 clb auto 20.3 MiB 0.02 181 58.9 MiB 0.01 0.00 2.52719 -11.7505 -2.52719 nan 0.08 5.6457e-05 4.4459e-05 0.00144861 0.00120813 30 549 40 165600 27300 47960.3 1332.23 0.34 0.0132968 0.0111277 2708 10880 -1 439 17 415 1603 108179 43197 0 0 108179 43197 1603 1260 0 0 8154 7984 0 0 15282 11548 0 0 1991 1524 0 0 41349 10374 0 0 39800 10507 0 0 1603 0 0 1188 3751 3730 19776 0 0 3.08327 nan -16.4287 -3.08327 0 0 61410.5 1705.85 0.02 0.04 0.02 -1 -1 0.02 0.00352924 0.00312766 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 2.26 vpr 59.27 MiB -1 -1 -1 -1 7 0.09 -1 -1 35024 -1 -1 11 10 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60696 10 10 95 105 0 95 31 6 6 36 clb auto 20.7 MiB 0.02 415 59.3 MiB 0.01 0.00 2.50191 -17.529 -2.50191 nan 0.08 0.000101472 7.9062e-05 0.00215906 0.00185441 42 1012 33 165600 42900 62990.9 1749.75 1.25 0.0477255 0.0396321 3040 14182 -1 864 21 940 3844 276923 97259 0 0 276923 97259 3844 3089 0 0 18188 17856 0 0 34065 23794 0 0 4979 4035 0 0 114052 25508 0 0 101795 22977 0 0 3844 0 0 2904 12730 11397 58421 0 0 2.92458 nan -21.4183 -2.92458 0 0 81938.5 2276.07 0.02 0.07 0.02 -1 -1 0.02 0.00661187 0.00581693 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.70 vpr 59.14 MiB -1 -1 -1 -1 8 0.10 -1 -1 34936 -1 -1 11 11 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60556 11 11 94 105 0 94 33 6 6 36 clb auto 20.6 MiB 0.02 412 59.1 MiB 0.01 0.00 2.74146 -20.0164 -2.74146 nan 0.08 9.8729e-05 7.8083e-05 0.00217161 0.00186476 40 1012 28 165600 42900 61410.5 1705.85 0.62 0.0289434 0.0242465 2992 13730 -1 851 21 1039 4043 271520 96369 0 0 271520 96369 4043 3331 0 0 18219 17934 0 0 35878 23744 0 0 5441 4449 0 0 102307 22959 0 0 105632 23952 0 0 4043 0 0 3004 9770 10667 53416 0 0 3.38814 nan -25.0082 -3.38814 0 0 78756.9 2187.69 0.02 0.07 0.02 -1 -1 0.02 0.0066121 0.00583289 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.74 vpr 58.86 MiB -1 -1 -1 -1 1 0.06 -1 -1 33656 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60268 3 2 5 7 0 5 6 3 3 9 -1 auto 19.7 MiB 0.00 10 58.9 MiB 0.00 0.00 0.459217 -0.918433 -0.459217 nan 0.01 1.0374e-05 7.236e-06 8.1103e-05 6.2696e-05 14 30 14 3900 3900 2841.42 315.713 0.02 0.000510842 0.000394592 322 679 -1 19 5 13 24 655 507 0 0 655 507 24 23 0 0 124 123 0 0 185 183 0 0 34 31 0 0 112 42 0 0 176 105 0 0 24 0 0 11 1 11 69 0 0 0.958112 nan -1.5482 -0.958112 0 0 4264.82 473.869 0.00 0.00 0.00 -1 -1 0.00 0.000209086 0.000170203 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.72 vpr 58.52 MiB -1 -1 -1 -1 2 0.05 -1 -1 34732 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59928 5 3 9 12 0 9 9 3 3 9 -1 auto 19.4 MiB 0.00 18 58.5 MiB 0.00 0.00 0.72619 -1.9116 -0.72619 nan 0.01 2.2148e-05 1.4456e-05 0.000146857 0.000116571 16 40 11 3900 3900 3970.02 441.113 0.02 0.00102511 0.000819356 330 691 -1 39 10 43 77 2536 1966 0 0 2536 1966 77 64 0 0 409 405 0 0 713 662 0 0 82 71 0 0 566 341 0 0 689 423 0 0 77 0 0 34 35 41 255 0 0 1.22255 nan -3.15061 -1.22255 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000440645 0.000368694 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.77 vpr 58.70 MiB -1 -1 -1 -1 3 0.07 -1 -1 34448 -1 -1 1 7 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60108 7 4 13 17 0 13 12 3 3 9 -1 auto 19.5 MiB 0.00 26 58.7 MiB 0.00 0.00 0.995093 -3.17945 -0.995093 nan 0.01 1.5292e-05 1.1406e-05 0.000149696 0.000128387 20 49 15 3900 3900 4445.42 493.935 0.04 0.00311924 0.00246749 354 763 -1 43 10 51 94 3051 2352 0 0 3051 2352 94 83 0 0 484 469 0 0 762 694 0 0 111 98 0 0 751 457 0 0 849 551 0 0 94 0 0 43 45 42 310 0 0 1.28583 nan -4.33186 -1.28583 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000570299 0.000487672 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.71 vpr 58.78 MiB -1 -1 -1 -1 4 0.04 -1 -1 34472 -1 -1 1 9 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60192 9 5 17 22 0 17 15 3 3 9 -1 auto 19.5 MiB 0.00 34 58.8 MiB 0.00 0.00 1.26014 -4.70077 -1.26014 nan 0.01 2.116e-05 1.5432e-05 0.000219309 0.000188744 28 69 22 3900 3900 5935.82 659.535 0.03 0.00325443 0.00263405 394 1003 -1 45 19 77 148 4685 3220 0 0 4685 3220 148 120 0 0 771 758 0 0 1191 1038 0 0 171 150 0 0 939 434 0 0 1465 720 0 0 148 0 0 71 54 70 485 0 0 1.5529 nan -5.72555 -1.5529 0 0 6854.42 761.602 0.00 0.00 0.00 -1 -1 0.00 0.0010219 0.000867331 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.84 vpr 58.78 MiB -1 -1 -1 -1 4 0.05 -1 -1 34488 -1 -1 2 11 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60188 11 6 24 30 0 24 19 4 4 16 clb auto 20.3 MiB 0.01 64 58.8 MiB 0.00 0.00 1.27336 -6.16074 -1.27336 nan 0.02 3.461e-05 2.7172e-05 0.000354166 0.00030184 28 165 19 7800 7800 12557.4 784.840 0.06 0.00471169 0.00391057 812 2356 -1 155 20 212 472 19934 10736 0 0 19934 10736 472 410 0 0 2141 2109 0 0 3808 2878 0 0 582 468 0 0 6537 2381 0 0 6394 2490 0 0 472 0 0 260 223 360 2001 0 0 1.80913 nan -8.18884 -1.80913 0 0 14986.4 936.652 0.00 0.01 0.00 -1 -1 0.00 0.0015784 0.00135753 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/config.txt index 538d17ad6f3..3aafacaeaa9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/config.txt @@ -24,7 +24,7 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params_common = -starting_stage vpr --seed 2 +script_params_common = -starting_stage vpr --seed 1 script_params_list_add = -sdc_file sdc/samples/A.sdc script_params_list_add = -sdc_file sdc/samples/B.sdc script_params_list_add = -sdc_file sdc/samples/C.sdc diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt index 1f13f6b34cc..2b632d58b79 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.38 vpr 61.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62680 5 3 11 14 2 9 10 4 4 16 clb auto 22.3 MiB 0.01 17 61.2 MiB 0.00 0.00 0.738757 -2.61951 -0.738757 0.571 0.01 1.3051e-05 8.284e-06 9.6993e-05 6.9694e-05 8 28 7 107788 107788 4794.78 299.674 0.01 0.000494426 0.000372532 30 4 15 15 578 388 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.000254119 0.000199464 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.25 vpr 61.24 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62708 5 3 11 14 2 9 10 4 4 16 clb auto 22.4 MiB 0.00 19 61.2 MiB 0.00 0.00 0.571 0 0 0.571 0.01 1.293e-05 8.719e-06 9.1787e-05 7.0115e-05 8 31 3 107788 107788 4794.78 299.674 0.01 0.000329838 0.000257939 25 3 12 12 320 148 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00021452 0.00017527 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.26 vpr 61.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62504 5 3 11 14 2 9 10 4 4 16 clb auto 22.1 MiB 0.00 16 61.0 MiB 0.00 0.00 0.570641 -1.88842 -0.570641 0.571 0.01 1.609e-05 9.495e-06 0.000116647 7.8322e-05 8 24 8 107788 107788 4794.78 299.674 0.01 0.000511592 0.000363643 15 3 12 12 257 110 0.57241 0.571 -1.91337 -0.57241 0 0 5401.54 337.596 0.00 0.00 0.000240838 0.00018636 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.28 vpr 61.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62644 5 3 11 14 2 9 10 4 4 16 clb auto 22.2 MiB 0.00 16 61.2 MiB 0.00 0.00 1.57064 -4.87718 -1.57064 0.571 0.01 1.8645e-05 1.0637e-05 0.000128017 8.3587e-05 8 24 12 107788 107788 4794.78 299.674 0.01 0.000694543 0.000483357 14 3 11 11 234 105 1.57153 0.571 -4.90301 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.000322052 0.000250581 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.26 vpr 60.72 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62180 5 3 11 14 2 9 10 4 4 16 clb auto 21.9 MiB 0.00 16 60.7 MiB 0.00 0.00 1.37313 -2.68164 -1.37313 0.571 0.01 1.3351e-05 8.015e-06 0.000258464 0.000161055 8 20 13 107788 107788 4794.78 299.674 0.01 0.000819713 0.000564812 21 4 17 17 434 224 1.39263 0.571 -2.70468 -1.39263 0 0 5401.54 337.596 0.00 0.00 0.00030841 0.000240646 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.27 vpr 60.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62316 5 3 11 14 2 9 10 4 4 16 clb auto 22.1 MiB 0.00 16 60.9 MiB 0.00 0.00 0.0706414 0 0 0.571 0.01 1.0142e-05 6.638e-06 0.000243421 0.000168069 12 24 3 107788 107788 6174.55 385.909 0.01 0.00161908 0.00115546 32 4 15 15 902 574 0.0724097 0.571 0 0 0 0 7809.43 488.089 0.00 0.00 0.00032386 0.000257362 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.35 vpr 61.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62988 5 3 11 14 2 9 10 4 4 16 clb auto 22.5 MiB 0.00 16 61.5 MiB 0.00 0.00 0.738757 -2.61951 -0.738757 0.571 0.01 1.5771e-05 1.0734e-05 0.000129746 9.8401e-05 8 18 7 107788 107788 4794.78 299.674 0.01 0.000576056 0.000440409 564 862 -1 26 3 10 10 358 216 0 0 358 216 10 10 0 0 29 28 0 0 29 29 0 0 73 29 0 0 108 63 0 0 109 57 0 0 10 0 0 0 0 0 10 0 0 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00028094 0.000227481 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.37 vpr 61.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62792 5 3 11 14 2 9 10 4 4 16 clb auto 22.3 MiB 0.01 19 61.3 MiB 0.00 0.00 0.571 0 0 0.571 0.01 1.3959e-05 1.0115e-05 0.000109915 8.7759e-05 8 26 3 107788 107788 4794.78 299.674 0.01 0.000425384 0.0003425 564 862 -1 25 4 13 13 444 252 0 0 444 252 13 13 0 0 34 30 0 0 34 34 0 0 103 39 0 0 132 65 0 0 128 71 0 0 13 0 0 0 0 0 13 0 0 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000310395 0.000257889 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.35 vpr 61.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 63048 5 3 11 14 2 9 10 4 4 16 clb auto 22.5 MiB 0.01 16 61.6 MiB 0.00 0.00 0.570641 -1.88754 -0.570641 0.571 0.01 1.4666e-05 9.134e-06 0.000234489 0.000159302 8 18 8 107788 107788 4794.78 299.674 0.01 0.000804311 0.000583904 564 862 -1 20 9 27 27 591 285 0 0 591 285 27 27 0 0 57 52 0 0 58 57 0 0 180 72 0 0 136 35 0 0 133 42 0 0 27 0 0 0 0 0 27 0 0 0.591173 0.571 -2.00632 -0.591173 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000470255 0.000361743 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.40 vpr 61.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 63004 5 3 11 14 2 9 10 4 4 16 clb auto 22.5 MiB 0.01 16 61.5 MiB 0.00 0.00 1.56976 -4.87453 -1.56976 0.571 0.02 3.3878e-05 2.1229e-05 0.000287861 0.000194853 8 17 8 107788 107788 4794.78 299.674 0.02 0.00118588 0.00086732 564 862 -1 14 8 24 24 436 195 0 0 436 195 24 24 0 0 46 31 0 0 46 46 0 0 150 56 0 0 98 29 0 0 72 9 0 0 24 0 0 0 0 0 24 0 0 1.57153 0.571 -4.90301 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000470397 0.000355054 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.38 vpr 61.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62580 5 3 11 14 2 9 10 4 4 16 clb auto 22.2 MiB 0.01 16 61.1 MiB 0.00 0.00 1.37313 -2.68253 -1.37313 0.571 0.01 1.6289e-05 1.0267e-05 0.000278384 0.000184666 8 12 2 107788 107788 4794.78 299.674 0.02 0.00226003 0.00156303 564 862 -1 26 3 10 10 336 199 0 0 336 199 10 10 0 0 28 23 0 0 28 28 0 0 73 31 0 0 98 53 0 0 99 54 0 0 10 0 0 0 0 0 10 0 0 1.75699 0.571 -3.06727 -1.75699 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000349996 0.000279518 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.39 vpr 61.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62748 5 3 11 14 2 9 10 4 4 16 clb auto 22.3 MiB 0.01 17 61.3 MiB 0.00 0.00 0.0697572 0 0 0.571 0.01 2.3427e-05 1.4198e-05 0.00015993 0.000113528 8 21 4 107788 107788 4794.78 299.674 0.02 0.00103181 0.000778019 564 862 -1 27 4 13 13 421 237 0 0 421 237 13 13 0 0 32 28 0 0 32 32 0 0 103 38 0 0 128 62 0 0 113 64 0 0 13 0 0 0 0 0 13 0 0 0.0724097 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000357344 0.000289304 From 31aa645b36a960409e2dc4d4f2dd7e0c02fc7088 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 20 Apr 2023 18:18:30 -0400 Subject: [PATCH 62/81] updated golden result for vtr_reg_strong_odin --- .../config/config.txt | 2 +- .../strong_clock_aliases/config/config.txt | 2 +- .../config/golden_results.txt | 18 ++++---- .../strong_eblif_vpr/config/config.txt | 2 +- .../config/golden_results.txt | 4 +- .../config/golden_results.txt | 42 +++++++++---------- .../strong_power/config/golden_results.txt | 6 +-- .../strong_sdc/config/golden_results.txt | 14 +++---- .../config/config.txt | 2 +- 9 files changed, 46 insertions(+), 46 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_blocks_with_no_inputs/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_blocks_with_no_inputs/config/config.txt index b618cb3ccfb..ecf8c6f3ba2 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_blocks_with_no_inputs/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_blocks_with_no_inputs/config/config.txt @@ -28,4 +28,4 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params_common = -start odin -track_memory_usage +script_params_common = -start odin -track_memory_usage -seed 3 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases/config/config.txt index 545b20e726d..2781f96f165 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases/config/config.txt @@ -24,7 +24,7 @@ qor_parse_file=qor_standard.txt # Pass requirements pass_requirements_file=pass_requirements.txt -script_params_common =-starting_stage vpr --absorb_buffer_luts on +script_params_common =-starting_stage vpr --absorb_buffer_luts on --seed 3 script_params_list_add = -sdc_file sdc/samples/clock_aliases/clk.sdc script_params_list_add = -sdc_file sdc/samples/clock_aliases/clk_assign.sdc script_params_list_add = -sdc_file sdc/samples/clock_aliases/counter_clk.sdc diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt index 11e321f5149..b8c6939d726 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt @@ -1,9 +1,9 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets -timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.23 vpr 56.07 MiB 0.00 5668 -1 -1 1 0.01 -1 -1 32516 -1 -1 1 2 -1 -1 success v8.0.0-6988-ga15a5f977 release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:04:00 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 57412 2 1 3 4 1 3 4 3 3 9 -1 auto 17.5 MiB 0.00 4 56.1 MiB 0.00 0.00 0.571526 -0.946421 -0.571526 0.571526 0.00 7.75e-06 4.684e-06 5.3726e-05 3.5642e-05 -1 2 2 53894 53894 12370.0 1374.45 0.00 0.000152651 0.000105933 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 -timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.25 vpr 56.20 MiB 0.00 5608 -1 -1 1 0.00 -1 -1 32696 -1 -1 1 2 -1 -1 success v8.0.0-6988-ga15a5f977 release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:04:00 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 57544 2 1 3 4 1 3 4 3 3 9 -1 auto 17.6 MiB 0.00 6 56.2 MiB 0.00 0.00 0.526189 -0.94819 -0.526189 0.526189 0.00 7.781e-06 4.78e-06 5.8181e-05 4.0772e-05 -1 5 3 53894 53894 14028.3 1558.70 0.00 0.000190432 0.000133028 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 -timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 3.73 vpr 58.23 MiB 0.26 59496 -1 -1 2 1.31 -1 -1 53692 -1 -1 155 5 -1 -1 success v8.0.0-6988-ga15a5f977 release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:04:00 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 59628 5 156 191 347 1 163 316 15 15 225 clb auto 20.0 MiB 0.03 22 58.2 MiB 0.11 0.00 1.10153 -11.4005 -1.10153 1.10153 0.02 0.000161336 0.000142715 0.0193365 0.0178275 -1 21 4 9.10809e+06 8.35357e+06 828754. 3683.35 0.01 0.0226428 0.0209381 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 -timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 3.56 vpr 58.25 MiB 0.26 59468 -1 -1 2 1.28 -1 -1 53632 -1 -1 155 5 -1 -1 success v8.0.0-6988-ga15a5f977 release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:04:00 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 59644 5 156 191 347 1 163 316 15 15 225 clb auto 19.9 MiB 0.03 25 58.2 MiB 0.09 0.00 1.12309 -11.8205 -1.12309 1.12309 0.02 0.000181197 0.000162005 0.013052 0.0115952 -1 58 4 9.10809e+06 8.35357e+06 858153. 3814.01 0.01 0.0167465 0.0150866 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 153 10 -timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.19 vpr 60.85 MiB 0.01 6176 -1 -1 1 0.01 -1 -1 32848 -1 -1 1 2 0 0 success v8.0.0-6988-ga15a5f977 release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:04:00 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62312 2 1 3 4 1 3 4 3 3 9 -1 auto 22.2 MiB 0.00 4 60.9 MiB 0.00 0.00 0.571526 -0.946421 -0.571526 0.571526 0.00 7.377e-06 4.359e-06 5.0223e-05 3.3694e-05 -1 2 2 53894 53894 12370.0 1374.45 0.00 0.000155041 0.000108466 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 -timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.20 vpr 61.05 MiB 0.01 6084 -1 -1 1 0.01 -1 -1 32644 -1 -1 1 2 0 0 success v8.0.0-6988-ga15a5f977 release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:04:00 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62520 2 1 3 4 1 3 4 3 3 9 -1 auto 22.4 MiB 0.00 6 61.1 MiB 0.00 0.00 0.526189 -0.94819 -0.526189 0.526189 0.00 7.434e-06 4.232e-06 5.7898e-05 3.9294e-05 -1 5 3 53894 53894 14028.3 1558.70 0.00 0.00017279 0.000121766 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 -timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 4.87 vpr 69.10 MiB 0.11 16696 -1 -1 2 0.10 -1 -1 37888 -1 -1 32 311 15 0 success v8.0.0-6988-ga15a5f977 release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:04:00 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 70756 311 156 972 1128 1 953 514 28 28 784 memory auto 31.0 MiB 0.40 8012 69.1 MiB 0.90 0.02 3.98268 -4087.16 -3.98268 3.98268 0.15 0.00384392 0.00339658 0.30978 0.262621 -1 12479 15 4.25198e+07 9.94461e+06 2.96205e+06 3778.13 1.23 0.481906 0.424185 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 938 -timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 4.84 vpr 69.05 MiB 0.11 16580 -1 -1 2 0.10 -1 -1 37764 -1 -1 32 311 15 0 success v8.0.0-6988-ga15a5f977 release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:04:00 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 70708 311 156 972 1128 1 953 514 28 28 784 memory auto 30.9 MiB 0.40 8600 69.1 MiB 0.99 0.03 3.83497 -3418.95 -3.83497 3.83497 0.15 0.00369043 0.0032872 0.332934 0.281985 -1 13381 15 4.25198e+07 9.94461e+06 3.02951e+06 3864.17 1.04 0.46931 0.40859 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 939 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_global_nets num_routed_nets +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.24 vpr 55.66 MiB 0.00 5216 -1 -1 1 0.00 -1 -1 32328 -1 -1 1 2 -1 -1 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 56996 2 1 3 4 1 3 4 3 3 9 -1 auto 16.5 MiB 0.00 4 55.7 MiB 0.00 0.00 0.571526 -0.946421 -0.571526 0.571526 0.00 7.621e-06 5.224e-06 6.7874e-05 5.0802e-05 -1 2 2 53894 53894 12370.0 1374.45 0.00 0.000205736 0.000155947 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.23 vpr 55.70 MiB 0.00 5212 -1 -1 1 0.01 -1 -1 32344 -1 -1 1 2 -1 -1 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 57032 2 1 3 4 1 3 4 3 3 9 -1 auto 16.6 MiB 0.00 6 55.7 MiB 0.00 0.00 0.526189 -0.94819 -0.526189 0.526189 0.00 7.761e-06 5.265e-06 6.7961e-05 5.0472e-05 -1 4 1 53894 53894 14028.3 1558.70 0.00 0.000187922 0.00014281 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 +timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 4.64 vpr 58.30 MiB 0.36 58984 -1 -1 2 1.50 -1 -1 48756 -1 -1 155 5 -1 -1 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59700 5 156 191 347 1 163 316 15 15 225 clb auto 19.7 MiB 0.05 22 58.3 MiB 0.20 0.00 1.10064 -11.4028 -1.10064 1.10064 0.02 0.000207655 0.000184614 0.0172662 0.0153484 -1 34 4 9.10809e+06 8.35357e+06 828754. 3683.35 0.01 0.0215404 0.0193498 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 +timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 4.63 vpr 57.95 MiB 0.36 59028 -1 -1 2 1.45 -1 -1 48796 -1 -1 155 5 -1 -1 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59344 5 156 191 347 1 163 316 15 15 225 clb auto 19.5 MiB 0.05 25 58.0 MiB 0.20 0.00 1.08173 -11.7171 -1.08173 1.08173 0.02 0.000210434 0.000187171 0.0177434 0.0157333 -1 56 4 9.10809e+06 8.35357e+06 858153. 3814.01 0.01 0.0220048 0.0197235 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 153 10 +timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.30 vpr 60.97 MiB 0.03 5868 -1 -1 1 0.00 -1 -1 32324 -1 -1 1 2 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62436 2 1 3 4 1 3 4 3 3 9 -1 auto 22.2 MiB 0.00 4 61.0 MiB 0.00 0.00 0.571526 -0.946421 -0.571526 0.571526 0.00 7.366e-06 4.962e-06 6.4942e-05 4.834e-05 -1 2 2 53894 53894 12370.0 1374.45 0.00 0.000199931 0.000152012 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 +timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.29 vpr 61.36 MiB 0.02 5840 -1 -1 1 0.01 -1 -1 32312 -1 -1 1 2 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62828 2 1 3 4 1 3 4 3 3 9 -1 auto 22.4 MiB 0.00 6 61.4 MiB 0.00 0.00 0.526189 -0.94819 -0.526189 0.526189 0.00 7.761e-06 5.205e-06 6.9109e-05 5.2607e-05 -1 4 1 53894 53894 14028.3 1558.70 0.00 0.000190744 0.000146909 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 +timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 6.17 vpr 69.56 MiB 0.21 16208 -1 -1 2 0.15 -1 -1 37780 -1 -1 32 311 15 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 71228 311 156 972 1128 1 953 514 28 28 784 memory auto 31.1 MiB 0.57 8510 69.6 MiB 1.42 0.02 3.82722 -4064.49 -3.82722 3.82722 0.26 0.00342284 0.00289929 0.387553 0.329277 -1 13023 14 4.25198e+07 9.94461e+06 2.96205e+06 3778.13 1.10 0.5346 0.464391 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 938 +timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 6.41 vpr 69.44 MiB 0.18 16292 -1 -1 2 0.13 -1 -1 37668 -1 -1 32 311 15 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 71104 311 156 972 1128 1 953 514 28 28 784 memory auto 30.9 MiB 0.58 8543 69.4 MiB 1.40 0.02 4.32962 -3179.64 -4.32962 4.32962 0.21 0.00343224 0.00290294 0.37301 0.318522 -1 13270 16 4.25198e+07 9.94461e+06 3.02951e+06 3864.17 1.34 0.531097 0.463938 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 939 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr/config/config.txt index 173b38d6e6f..0d4729050dc 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_eblif_vpr/config/config.txt @@ -26,4 +26,4 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt #Script parameters -script_params=-starting_stage vpr -track_memory_usage +script_params=-starting_stage vpr -track_memory_usage -seed 2 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_multiclock/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_multiclock/config/golden_results.txt index eca3cb644ca..a939a6842c7 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_multiclock/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_multiclock/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.xml multiclock.blif common 1.33433 0.595 0.839813 -1 -1 0.57 0.814813 -1 1.33433 -1 1.07141 -1 2.12256 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71781 -1 -1 0.268 3.24281 -1 1.18296 -1 3.30941 -1 -1.12381 -1 -1 -1 -1 +arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack +k6_frac_N10_mem32K_40nm.xml multiclock.blif common 1.31564 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.31564 -1 1.07053 -1 1.76203 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.16427 -1 3.30853 -1 -1.48434 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt index 82db0266f00..742df99b517 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt @@ -1,21 +1,21 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 1.03 vpr 56.49 MiB -1 -1 -1 -1 0 0.00 -1 -1 29704 -1 -1 1 0 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57848 -1 1 1 2 0 1 2 3 3 9 -1 auto 17.8 MiB 0.02 0 56.5 MiB 0.03 0.00 nan 0 0 nan 0.02 2.4843e-05 1.2638e-05 0.000112993 6.7246e-05 2 0 1 3900 3900 966.985 107.443 0.04 0.000226792 0.000144763 0 1 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.02 9.934e-05 6.9178e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 1.07 vpr 56.43 MiB -1 -1 -1 -1 0 0.01 -1 -1 29848 -1 -1 1 0 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57784 -1 1 1 2 0 1 2 3 3 9 -1 auto 17.8 MiB 0.02 0 56.4 MiB 0.03 0.00 nan 0 0 nan 0.02 1.5617e-05 9.011e-06 0.000109352 7.0863e-05 2 0 1 3900 3900 966.985 107.443 0.07 0.000218385 0.000143501 0 1 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.01 0.01 9.5519e-05 6.4039e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 1.03 vpr 56.59 MiB -1 -1 -1 -1 0 0.01 -1 -1 29904 -1 -1 1 0 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57948 6 1 1 8 0 1 8 3 3 9 -1 auto 17.7 MiB 0.02 0 56.6 MiB 0.02 0.00 nan 0 0 nan 0.01 1.5501e-05 9.668e-06 0.000109242 6.6761e-05 2 0 1 3900 3900 966.985 107.443 0.05 0.000223346 0.000143507 0 1 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.02 9.8993e-05 6.6029e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 1.07 vpr 56.64 MiB -1 -1 -1 -1 0 0.01 -1 -1 29896 -1 -1 1 0 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58004 6 1 1 8 0 1 8 3 3 9 -1 auto 17.9 MiB 0.02 0 56.6 MiB 0.03 0.00 nan 0 0 nan 0.01 1.1694e-05 6.836e-06 6.6687e-05 4.3736e-05 2 0 1 3900 3900 966.985 107.443 0.04 0.000169428 0.000112472 0 1 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.01 0.01 9.7785e-05 6.6619e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 1.10 vpr 56.73 MiB -1 -1 -1 -1 1 0.01 -1 -1 29880 -1 -1 1 2 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58088 2 1 3 4 0 3 4 3 3 9 -1 auto 17.9 MiB 0.02 6 56.7 MiB 0.03 0.00 0.459217 -0.459217 -0.459217 nan 0.02 8.434e-06 4.693e-06 0.000138674 9.1911e-05 16 10 1 3900 3900 3970.02 441.113 0.06 0.000316456 0.000220432 7 1 3 3 76 61 0.656238 nan -0.656238 -0.656238 0 0 4445.42 493.935 0.00 0.02 0.000120302 9.4218e-05 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 1.57 vpr 56.57 MiB -1 -1 -1 -1 2 0.03 -1 -1 31528 -1 -1 1 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57928 5 1 7 8 0 7 7 3 3 9 -1 auto 17.8 MiB 0.02 14 56.6 MiB 0.03 0.00 0.72619 -0.72619 -0.72619 nan 0.02 4.2307e-05 2.7483e-05 0.000217579 0.000162671 16 33 25 3900 3900 3970.02 441.113 0.56 0.00317281 0.00235514 13 8 20 20 570 442 0.856453 nan -0.856453 -0.856453 0 0 4445.42 493.935 0.00 0.06 0.000491122 0.000391617 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 1.63 vpr 56.59 MiB -1 -1 -1 -1 2 0.03 -1 -1 31732 -1 -1 1 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57952 5 1 7 8 0 7 7 3 3 9 -1 auto 17.8 MiB 0.02 14 56.6 MiB 0.03 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.238e-05 7.192e-06 0.000124722 9.2531e-05 16 24 16 3900 3900 3970.02 441.113 0.54 0.00289709 0.00213578 19 9 26 26 721 563 1.22966 nan -1.22966 -1.22966 0 0 4445.42 493.935 0.00 0.06 0.000429931 0.000337731 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 1.00 vpr 56.82 MiB -1 -1 -1 -1 1 0.01 -1 -1 29816 -1 -1 1 3 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58180 3 1 5 6 1 4 5 3 3 9 -1 auto 18.1 MiB 0.02 6 56.8 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.00 1.3113e-05 8.532e-06 6.9634e-05 4.905e-05 14 4 1 3900 3900 2841.42 315.713 0.03 0.000302691 0.000223931 9 1 3 3 67 52 0.532011 0.532011 -0.86673 -0.532011 0 0 4264.82 473.869 0.00 0.02 0.000178139 0.000140219 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 1.14 vpr 56.53 MiB -1 -1 -1 -1 1 0.03 -1 -1 32012 -1 -1 1 3 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57884 4 1 4 6 0 4 6 3 3 9 -1 auto 17.7 MiB 0.03 8 56.5 MiB 0.01 0.00 0.459217 -0.459217 -0.459217 nan 0.01 2.3799e-05 1.6904e-05 0.00010502 7.6192e-05 14 17 12 3900 3900 2841.42 315.713 0.08 0.000666924 0.000479437 12 12 25 25 797 638 0.903756 nan -0.903756 -0.903756 0 0 4264.82 473.869 0.01 0.08 0.000533985 0.000390063 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 1.41 vpr 56.86 MiB -1 -1 -1 -1 1 0.03 -1 -1 31424 -1 -1 1 4 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58220 4 4 8 12 0 8 9 3 3 9 -1 auto 18.1 MiB 0.03 17 56.9 MiB 0.00 0.00 0.461147 -1.8388 -0.461147 nan 0.00 1.1058e-05 7.063e-06 9.941e-05 7.6231e-05 28 40 26 3900 3900 5935.82 659.535 0.30 0.00363931 0.00283595 37 8 26 79 2373 1678 0.94521 nan -3.00059 -0.94521 0 0 6854.42 761.602 0.00 0.06 0.000867279 0.000714245 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 2.10 vpr 56.83 MiB -1 -1 -1 -1 3 0.04 -1 -1 32144 -1 -1 3 6 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58196 6 6 28 34 0 28 15 5 5 25 clb auto 18.3 MiB 0.06 103 56.8 MiB 0.02 0.00 1.28477 -5.86383 -1.28477 nan 0.06 5.1759e-05 3.9247e-05 0.000488206 0.000428436 24 230 15 23400 11700 20975.0 838.999 0.60 0.0107729 0.00913172 208 19 241 990 55771 25029 1.63173 nan -7.5813 -1.63173 0 0 27052.1 1082.08 0.02 0.16 0.00341857 0.00300844 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 2.15 vpr 57.12 MiB -1 -1 -1 -1 4 0.04 -1 -1 32200 -1 -1 5 7 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58496 7 8 39 47 0 39 20 5 5 25 clb auto 18.6 MiB 0.06 154 57.1 MiB 0.05 0.00 1.50544 -7.62486 -1.50544 nan 0.04 0.000111837 9.4057e-05 0.00126614 0.00110466 30 357 20 23400 19500 26626.2 1065.05 0.71 0.0147861 0.0126998 323 16 297 1143 75290 32348 1.8297 nan -10.0168 -1.8297 0 0 33739.5 1349.58 0.01 0.14 0.00383485 0.00340332 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 2.34 vpr 57.06 MiB -1 -1 -1 -1 8 0.05 -1 -1 32104 -1 -1 7 8 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58428 8 8 51 59 0 51 23 6 6 36 clb auto 18.6 MiB 0.06 201 57.1 MiB 0.04 0.00 2.43674 -11.6517 -2.43674 nan 0.06 8.9679e-05 7.2591e-05 0.0013537 0.00117164 30 501 23 165600 27300 47960.3 1332.23 0.89 0.0194668 0.0167398 453 24 530 2278 164447 63508 3.38247 nan -17.703 -3.38247 0 0 61410.5 1705.85 0.02 0.16 0.00563771 0.00497258 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 2.95 vpr 57.42 MiB -1 -1 -1 -1 7 0.07 -1 -1 32436 -1 -1 11 10 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58800 10 10 95 105 0 95 31 6 6 36 clb auto 19.0 MiB 0.06 414 57.4 MiB 0.06 0.00 2.48751 -17.3586 -2.48751 nan 0.08 0.00015461 0.000127576 0.00347553 0.0029984 38 1105 50 165600 42900 55946.4 1554.07 1.49 0.0592423 0.0514865 854 19 815 3390 240925 85756 3.31375 nan -23.0292 -3.31375 0 0 73011.6 2028.10 0.02 0.09 0.0111995 0.01015 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 3.17 vpr 57.26 MiB -1 -1 -1 -1 8 0.07 -1 -1 33016 -1 -1 11 11 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58632 11 11 94 105 0 94 33 6 6 36 clb auto 18.7 MiB 0.07 410 57.3 MiB 0.05 0.00 2.76264 -20.7478 -2.76264 nan 0.11 0.0002064 0.000181368 0.00402334 0.00357658 40 959 25 165600 42900 61410.5 1705.85 1.43 0.0524892 0.0457704 858 19 924 3788 271625 96455 3.26496 nan -25.0498 -3.26496 0 0 78756.9 2187.69 0.02 0.11 0.00988749 0.00892078 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 1.35 vpr 56.60 MiB -1 -1 -1 -1 1 0.04 -1 -1 30808 -1 -1 1 3 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57956 3 2 5 7 0 5 6 3 3 9 -1 auto 17.8 MiB 0.04 10 56.6 MiB 0.03 0.00 0.461147 -0.920363 -0.461147 nan 0.02 1.63e-05 1.0774e-05 0.00014075 0.000102005 16 29 7 3900 3900 3970.02 441.113 0.08 0.000686698 0.000527245 16 2 8 14 311 228 0.890032 nan -1.41661 -0.890032 0 0 4445.42 493.935 0.00 0.02 0.000221367 0.000182133 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 1.48 vpr 56.62 MiB -1 -1 -1 -1 2 0.04 -1 -1 31784 -1 -1 1 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57984 5 3 9 12 0 9 9 3 3 9 -1 auto 17.8 MiB 0.02 18 56.6 MiB 0.05 0.00 0.72619 -1.91353 -0.72619 nan 0.17 3.2785e-05 2.4881e-05 0.000202445 0.000164008 18 36 16 3900 3900 4264.82 473.869 0.28 0.00351692 0.0027414 37 12 61 115 3991 3042 1.33716 nan -3.06677 -1.33716 0 0 5011.22 556.802 0.00 0.07 0.00101683 0.000812394 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 1.51 vpr 56.73 MiB -1 -1 -1 -1 3 0.03 -1 -1 32100 -1 -1 1 7 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 58092 7 4 13 17 0 13 12 3 3 9 -1 auto 17.9 MiB 0.03 26 56.7 MiB 0.05 0.00 0.993163 -3.17366 -0.993163 nan 0.05 4.1025e-05 3.067e-05 0.000222563 0.00018404 26 56 13 3900 3900 5185.22 576.135 0.27 0.00407325 0.00324332 40 5 29 53 1518 1093 1.39187 nan -4.24817 -1.39187 0 0 6645.42 738.380 0.00 0.04 0.000621338 0.000536981 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 1.38 vpr 56.63 MiB -1 -1 -1 -1 4 0.03 -1 -1 31992 -1 -1 1 9 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57988 9 5 17 22 0 17 15 3 3 9 -1 auto 17.7 MiB 0.02 34 56.6 MiB 0.00 0.00 1.26014 -4.7027 -1.26014 nan 0.01 2.3193e-05 1.727e-05 0.000218134 0.000184777 28 61 20 3900 3900 5935.82 659.535 0.33 0.00423131 0.00345842 54 12 75 142 3802 2478 1.8141 nan -6.12756 -1.8141 0 0 6854.42 761.602 0.00 0.16 0.00149209 0.00129715 - k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 1.90 vpr 56.62 MiB -1 -1 -1 -1 4 0.03 -1 -1 31864 -1 -1 2 11 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 57984 11 6 24 30 0 24 19 4 4 16 clb auto 18.2 MiB 0.05 68 56.6 MiB 0.04 0.00 1.37681 -6.55159 -1.37681 nan 0.03 4.281e-05 3.3099e-05 0.000330124 0.000284761 28 175 16 7800 7800 12557.4 784.840 0.32 0.00683423 0.00571044 143 20 195 455 20346 11170 1.72113 nan -8.19368 -1.72113 0 0 14986.4 936.652 0.01 0.12 0.00254398 0.00221381 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.46 vpr 58.79 MiB -1 -1 -1 -1 0 0.01 -1 -1 32156 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60196 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.6 MiB 0.00 0 58.8 MiB 0.00 0.00 nan 0 0 nan 0.01 7.142e-06 4.117e-06 4.0501e-05 2.7138e-05 2 0 1 3900 3900 966.985 107.443 0.00 9.9989e-05 6.8998e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.8508e-05 3.5682e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.52 vpr 58.64 MiB -1 -1 -1 -1 0 0.01 -1 -1 32148 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60048 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.5 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 5.468e-06 3.39e-06 3.6409e-05 2.4902e-05 2 0 1 3900 3900 966.985 107.443 0.00 9.9619e-05 7.0611e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.9679e-05 3.6722e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.48 vpr 58.94 MiB -1 -1 -1 -1 0 0.00 -1 -1 32240 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60356 6 1 1 8 0 1 8 3 3 9 -1 auto 19.7 MiB 0.00 0 58.9 MiB 0.00 0.00 nan 0 0 nan 0.01 5.557e-06 3.265e-06 4.6598e-05 2.4956e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000112553 7.1603e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.8803e-05 3.6142e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.50 vpr 58.71 MiB -1 -1 -1 -1 0 0.00 -1 -1 32212 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60120 6 1 1 8 0 1 8 3 3 9 -1 auto 19.5 MiB 0.00 0 58.7 MiB 0.00 0.00 nan 0 0 nan 0.01 5.281e-06 3.157e-06 3.5472e-05 2.3665e-05 2 0 1 3900 3900 966.985 107.443 0.00 9.921e-05 6.8428e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.366e-05 4.0573e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.62 vpr 58.42 MiB -1 -1 -1 -1 1 0.01 -1 -1 32352 -1 -1 1 2 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59824 2 1 3 4 0 3 4 3 3 9 -1 auto 19.4 MiB 0.00 6 58.4 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.751e-06 4.947e-06 6.243e-05 4.5426e-05 12 5 1 3900 3900 2582.62 286.957 0.02 0.000450611 0.000328357 314 651 -1 5 18 36 36 767 524 0 0 767 524 36 36 0 0 149 149 0 0 199 175 0 0 36 36 0 0 113 21 0 0 234 107 0 0 36 0 0 0 0 0 36 0 0 0.592443 nan -0.592443 -0.592443 0 0 3970.02 441.113 0.00 0.00 0.00 -1 -1 0.00 0.000357651 0.000260177 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.80 vpr 58.53 MiB -1 -1 -1 -1 2 0.07 -1 -1 34168 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59936 5 1 7 8 0 7 7 3 3 9 -1 auto 19.4 MiB 0.00 14 58.5 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.7654e-05 1.1368e-05 0.000121641 9.4402e-05 18 17 8 3900 3900 4264.82 473.869 0.05 0.00241939 0.00183198 346 735 -1 14 4 12 12 320 251 0 0 320 251 12 12 0 0 70 70 0 0 81 80 0 0 12 12 0 0 54 27 0 0 91 50 0 0 12 0 0 0 0 0 12 0 0 1.03782 nan -1.03782 -1.03782 0 0 5011.22 556.802 0.00 0.00 0.00 -1 -1 0.00 0.000182112 0.000150951 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.74 vpr 58.59 MiB -1 -1 -1 -1 2 0.05 -1 -1 34464 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59992 5 1 7 8 0 7 7 3 3 9 -1 auto 19.4 MiB 0.00 14 58.6 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.8722e-05 1.2131e-05 0.000124901 9.647e-05 16 26 17 3900 3900 3970.02 441.113 0.02 0.000833017 0.000656104 330 691 -1 25 9 27 27 973 789 0 0 973 789 27 27 0 0 179 179 0 0 284 280 0 0 27 27 0 0 188 126 0 0 268 150 0 0 27 0 0 0 0 0 27 0 0 1.58285 nan -1.58285 -1.58285 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000247045 0.000197699 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.64 vpr 58.94 MiB -1 -1 -1 -1 1 0.01 -1 -1 32504 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60352 3 1 5 6 1 4 5 3 3 9 -1 auto 19.7 MiB 0.00 6 58.9 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.01 1.6152e-05 9.981e-06 0.000104284 7.7207e-05 16 8 1 3900 3900 3970.02 441.113 0.03 0.000568862 0.000438625 330 691 -1 14 4 8 8 303 249 0 0 303 249 8 8 0 0 56 56 0 0 84 83 0 0 8 8 0 0 58 45 0 0 89 49 0 0 8 0 0 0 0 0 8 0 0 0.776991 0.776991 -1.16292 -0.776991 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000235911 0.000187785 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.89 vpr 58.59 MiB -1 -1 -1 -1 1 0.07 -1 -1 34652 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59992 4 1 4 6 0 4 6 3 3 9 -1 auto 19.5 MiB 0.00 8 58.6 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.497e-06 5.767e-06 5.9771e-05 4.3696e-05 16 11 1 3900 3900 3970.02 441.113 0.03 0.00107666 0.00074632 330 691 -1 14 16 33 33 1258 1025 0 0 1258 1025 33 33 0 0 219 219 0 0 397 396 0 0 33 33 0 0 213 169 0 0 363 175 0 0 33 0 0 0 0 0 33 0 0 0.959435 nan -0.959435 -0.959435 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000333781 0.000250592 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.76 vpr 58.57 MiB -1 -1 -1 -1 1 0.05 -1 -1 34484 -1 -1 1 4 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59980 4 4 8 12 0 8 9 3 3 9 -1 auto 19.5 MiB 0.00 17 58.6 MiB 0.00 0.00 0.461147 -1.8388 -0.461147 nan 0.01 2.3243e-05 1.5972e-05 0.000190835 0.000156355 20 43 15 3900 3900 4445.42 493.935 0.07 0.00431668 0.00339174 354 763 -1 45 9 34 109 4430 3406 0 0 4430 3406 109 108 0 0 702 699 0 0 1202 1152 0 0 147 140 0 0 997 495 0 0 1273 812 0 0 109 0 0 75 130 180 764 0 0 1.10339 nan -3.31095 -1.10339 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.00071114 0.000604492 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 1.10 vpr 58.84 MiB -1 -1 -1 -1 3 0.09 -1 -1 34832 -1 -1 3 6 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60256 6 6 28 34 0 28 15 5 5 25 clb auto 20.3 MiB 0.01 85 58.8 MiB 0.01 0.00 1.13809 -5.17443 -1.13809 nan 0.07 5.2425e-05 3.9671e-05 0.0011297 0.000934061 24 250 29 23400 11700 20975.0 838.999 0.16 0.00841733 0.00699967 1420 4462 -1 209 22 312 1254 72764 32181 0 0 72764 32181 1254 998 0 0 5724 5661 0 0 10979 7934 0 0 1663 1365 0 0 25640 7137 0 0 27504 9086 0 0 1254 0 0 942 2362 3422 14798 0 0 1.67956 nan -7.17912 -1.67956 0 0 27052.1 1082.08 0.01 0.04 0.01 -1 -1 0.01 0.00349747 0.00305678 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 1.48 vpr 58.78 MiB -1 -1 -1 -1 4 0.05 -1 -1 34748 -1 -1 5 7 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60188 7 8 39 47 0 39 20 5 5 25 clb auto 20.2 MiB 0.02 140 58.8 MiB 0.01 0.00 1.44727 -7.37047 -1.44727 nan 0.04 8.585e-05 6.6854e-05 0.00172359 0.00144028 28 440 32 23400 19500 25328.9 1013.15 0.63 0.0271337 0.0225112 1476 4870 -1 337 21 446 1763 102447 42880 0 0 102447 42880 1763 1271 0 0 7872 7774 0 0 16086 10593 0 0 2128 1781 0 0 38398 11681 0 0 36200 9780 0 0 1763 0 0 1317 5511 4414 24433 0 0 1.95499 nan -9.51805 -1.95499 0 0 29680.9 1187.23 0.01 0.03 0.01 -1 -1 0.01 0.00282231 0.00247277 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 1.37 vpr 58.86 MiB -1 -1 -1 -1 8 0.11 -1 -1 34748 -1 -1 7 8 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60272 8 8 51 59 0 51 23 6 6 36 clb auto 20.2 MiB 0.02 181 58.9 MiB 0.01 0.00 2.52719 -11.7505 -2.52719 nan 0.11 4.8409e-05 3.8024e-05 0.00125219 0.00104646 30 549 40 165600 27300 47960.3 1332.23 0.31 0.0128422 0.0107871 2708 10880 -1 439 17 415 1603 108179 43197 0 0 108179 43197 1603 1260 0 0 8154 7984 0 0 15282 11548 0 0 1991 1524 0 0 41349 10374 0 0 39800 10507 0 0 1603 0 0 1188 3751 3730 19776 0 0 3.08327 nan -16.4287 -3.08327 0 0 61410.5 1705.85 0.02 0.03 0.01 -1 -1 0.02 0.00309945 0.0027415 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 2.49 vpr 59.42 MiB -1 -1 -1 -1 7 0.10 -1 -1 34968 -1 -1 11 10 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60848 10 10 95 105 0 95 31 6 6 36 clb auto 20.8 MiB 0.02 415 59.4 MiB 0.01 0.00 2.50191 -17.529 -2.50191 nan 0.09 9.189e-05 7.2177e-05 0.0019266 0.00165487 42 1012 33 165600 42900 62990.9 1749.75 1.32 0.050288 0.0420523 3040 14182 -1 864 21 940 3844 276923 97259 0 0 276923 97259 3844 3089 0 0 18188 17856 0 0 34065 23794 0 0 4979 4035 0 0 114052 25508 0 0 101795 22977 0 0 3844 0 0 2904 12730 11397 58421 0 0 2.92458 nan -21.4183 -2.92458 0 0 81938.5 2276.07 0.02 0.07 0.02 -1 -1 0.02 0.00571162 0.00499518 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.89 vpr 59.37 MiB -1 -1 -1 -1 8 0.12 -1 -1 34932 -1 -1 11 11 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60792 11 11 94 105 0 94 33 6 6 36 clb auto 20.8 MiB 0.03 412 59.4 MiB 0.02 0.00 2.74146 -20.0164 -2.74146 nan 0.08 0.000159884 0.000126501 0.00329751 0.00282927 40 1012 28 165600 42900 61410.5 1705.85 0.68 0.0338077 0.0286385 2992 13730 -1 851 21 1039 4043 271520 96369 0 0 271520 96369 4043 3331 0 0 18219 17934 0 0 35878 23744 0 0 5441 4449 0 0 102307 22959 0 0 105632 23952 0 0 4043 0 0 3004 9770 10667 53416 0 0 3.38814 nan -25.0082 -3.38814 0 0 78756.9 2187.69 0.02 0.07 0.02 -1 -1 0.02 0.0064705 0.00573254 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.79 vpr 58.53 MiB -1 -1 -1 -1 1 0.05 -1 -1 33620 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59932 3 2 5 7 0 5 6 3 3 9 -1 auto 19.4 MiB 0.00 10 58.5 MiB 0.00 0.00 0.459217 -0.918433 -0.459217 nan 0.01 1.0711e-05 7.389e-06 8.1735e-05 6.3356e-05 14 30 14 3900 3900 2841.42 315.713 0.02 0.000557086 0.000432266 322 679 -1 19 5 13 24 655 507 0 0 655 507 24 23 0 0 124 123 0 0 185 183 0 0 34 31 0 0 112 42 0 0 176 105 0 0 24 0 0 11 1 11 69 0 0 0.958112 nan -1.5482 -0.958112 0 0 4264.82 473.869 0.00 0.00 0.00 -1 -1 0.00 0.000283081 0.000232572 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.92 vpr 58.89 MiB -1 -1 -1 -1 2 0.08 -1 -1 34656 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60300 5 3 9 12 0 9 9 3 3 9 -1 auto 19.6 MiB 0.00 18 58.9 MiB 0.00 0.00 0.72619 -1.9116 -0.72619 nan 0.01 2.209e-05 1.4827e-05 0.000164718 0.000133042 16 40 11 3900 3900 3970.02 441.113 0.03 0.00141417 0.0011521 330 691 -1 39 10 43 77 2536 1966 0 0 2536 1966 77 64 0 0 409 405 0 0 713 662 0 0 82 71 0 0 566 341 0 0 689 423 0 0 77 0 0 34 35 41 255 0 0 1.22255 nan -3.15061 -1.22255 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000673578 0.000569654 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.86 vpr 58.73 MiB -1 -1 -1 -1 3 0.10 -1 -1 34500 -1 -1 1 7 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60140 7 4 13 17 0 13 12 3 3 9 -1 auto 19.5 MiB 0.01 26 58.7 MiB 0.00 0.00 0.995093 -3.17945 -0.995093 nan 0.01 2.2799e-05 1.6995e-05 0.000215711 0.00018184 20 49 15 3900 3900 4445.42 493.935 0.06 0.00473445 0.00378457 354 763 -1 43 10 51 94 3051 2352 0 0 3051 2352 94 83 0 0 484 469 0 0 762 694 0 0 111 98 0 0 751 457 0 0 849 551 0 0 94 0 0 43 45 42 310 0 0 1.28583 nan -4.33186 -1.28583 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000505661 0.000433655 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.70 vpr 58.59 MiB -1 -1 -1 -1 4 0.05 -1 -1 34496 -1 -1 1 9 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59992 9 5 17 22 0 17 15 3 3 9 -1 auto 19.4 MiB 0.01 34 58.6 MiB 0.00 0.00 1.26014 -4.70077 -1.26014 nan 0.01 2.1467e-05 1.5718e-05 0.000221632 0.000190952 28 69 22 3900 3900 5935.82 659.535 0.03 0.00334066 0.00270872 394 1003 -1 45 19 77 148 4685 3220 0 0 4685 3220 148 120 0 0 771 758 0 0 1191 1038 0 0 171 150 0 0 939 434 0 0 1465 720 0 0 148 0 0 71 54 70 485 0 0 1.5529 nan -5.72555 -1.5529 0 0 6854.42 761.602 0.00 0.00 0.00 -1 -1 0.00 0.00119531 0.00101728 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.90 vpr 58.71 MiB -1 -1 -1 -1 4 0.06 -1 -1 34484 -1 -1 2 11 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60124 11 6 24 30 0 24 19 4 4 16 clb auto 20.2 MiB 0.01 64 58.7 MiB 0.00 0.00 1.27336 -6.16074 -1.27336 nan 0.02 2.2287e-05 1.6351e-05 0.000320634 0.000274276 28 165 19 7800 7800 12557.4 784.840 0.07 0.00544905 0.0045356 812 2356 -1 155 20 212 472 19934 10736 0 0 19934 10736 472 410 0 0 2141 2109 0 0 3808 2878 0 0 582 468 0 0 6537 2381 0 0 6394 2490 0 0 472 0 0 260 223 360 2001 0 0 1.80913 nan -8.18884 -1.80913 0 0 14986.4 936.652 0.01 0.02 0.01 -1 -1 0.01 0.00240408 0.00208579 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt index 8d3139db371..e4756f04eed 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt @@ -1,3 +1,3 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc - k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 4.97 vpr 62.36 MiB 0.16 9312 -1 -1 3 0.27 -1 -1 36372 -1 -1 65 99 1 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 63860 99 130 363 493 1 251 295 12 12 144 clb auto 24.2 MiB 0.30 668 62.4 MiB 0.34 0.00 1.94366 -196.889 -1.94366 1.94366 0.32 0.00044239 0.000397662 0.0550588 0.0493089 42 1716 11 5.66058e+06 4.05111e+06 345702. 2400.71 0.99 0.20406 0.186035 1502 9 513 637 55270 17977 2.52129 2.52129 -232.416 -2.52129 0 0 434679. 3018.61 0.13 0.08 0.0247509 0.023265 0.009022 0.2149 0.06825 0.7169 - k6_frac_N10_mem32K_40nm.xml diffeq1.v common 16.07 vpr 66.16 MiB 0.13 9572 -1 -1 15 0.41 -1 -1 34860 -1 -1 36 162 0 5 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 67744 162 96 999 932 1 693 299 16 16 256 mult_36 auto 28.2 MiB 0.47 5462 66.2 MiB 0.91 0.01 19.9915 -1802.68 -19.9915 19.9915 0.80 0.00318405 0.00292705 0.326061 0.302537 46 13173 47 1.21132e+07 3.92018e+06 727248. 2840.81 7.11 1.14243 1.06683 9917 16 3277 6579 2107351 521153 22.182 22.182 -2048.62 -22.182 0 0 934704. 3651.19 0.31 0.91 0.151866 0.144798 0.007884 0.3439 0.01652 0.6396 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 5.18 vpr 64.90 MiB 0.07 9156 -1 -1 3 0.39 -1 -1 37008 -1 -1 65 99 1 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 66456 99 130 363 493 1 251 295 12 12 144 clb auto 26.4 MiB 0.14 716 64.9 MiB 0.33 0.01 1.90626 -194.539 -1.90626 1.90626 0.31 0.000604703 0.000530122 0.0515231 0.0453894 54 1587 13 5.66058e+06 4.05111e+06 434679. 3018.61 1.70 0.253791 0.231502 13954 85374 -1 1437 8 553 729 56439 17785 0 0 56439 17785 729 650 0 0 3121 2933 0 0 4058 3129 0 0 782 738 0 0 24058 5531 0 0 23691 4804 0 0 729 0 0 176 202 126 1613 0 0 2.40865 2.40865 -228.021 -2.40865 0 0 565229. 3925.20 0.21 0.04 0.09 -1 -1 0.21 0.0207778 0.0197602 0.009639 0.2257 0.07523 0.699 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 16.40 vpr 69.00 MiB 0.05 9192 -1 -1 15 0.48 -1 -1 36976 -1 -1 36 162 0 5 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 70656 162 96 999 932 1 693 299 16 16 256 mult_36 auto 30.6 MiB 0.44 5330 69.0 MiB 0.67 0.01 19.9673 -1772.48 -19.9673 19.9673 0.66 0.00152488 0.00136724 0.150821 0.135746 58 12269 42 1.21132e+07 3.92018e+06 904549. 3533.39 9.47 0.786766 0.718303 27012 180273 -1 9297 18 3060 6039 1647819 468987 0 0 1647819 468987 6039 3809 0 0 77932 76600 0 0 80649 78124 0 0 6383 4237 0 0 750165 154190 0 0 726651 152027 0 0 6039 0 0 3011 8536 8247 50331 0 0 22.3411 22.3411 -2046.61 -22.3411 0 0 1.15318e+06 4504.63 0.39 0.41 0.19 -1 -1 0.39 0.090292 0.0850759 0.008084 0.3612 0.0179 0.6209 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt index b03940551ed..2bd9821e3f9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.78 vpr 58.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 60064 5 3 11 14 2 9 10 4 4 16 clb auto 20.0 MiB 0.02 17 58.7 MiB 0.01 0.00 0.738757 -2.61951 -0.738757 0.571 0.01 2.3918e-05 1.6342e-05 0.000161356 0.00012016 8 28 7 107788 107788 4794.78 299.674 0.03 0.000652815 0.000493847 30 4 15 15 578 388 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.01 0.06 0.000439686 0.000354955 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.96 vpr 58.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 60216 5 3 11 14 2 9 10 4 4 16 clb auto 20.2 MiB 0.03 19 58.8 MiB 0.05 0.00 0.571 0 0 0.571 0.03 4.3708e-05 3.2152e-05 0.000179303 0.000137108 8 31 3 107788 107788 4794.78 299.674 0.08 0.000687155 0.00054482 25 3 12 12 320 148 0.571 0.571 0 0 0 0 5401.54 337.596 0.01 0.04 0.000365911 0.000292909 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 1.14 vpr 58.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 60228 5 3 11 14 2 9 10 4 4 16 clb auto 20.3 MiB 0.05 16 58.8 MiB 0.05 0.00 0.570641 -1.88842 -0.570641 0.571 0.03 2.2333e-05 1.4432e-05 0.000190973 0.000139551 8 24 8 107788 107788 4794.78 299.674 0.15 0.00120113 0.000892211 15 3 12 12 257 110 0.57241 0.571 -1.91337 -0.57241 0 0 5401.54 337.596 0.00 0.02 0.000394509 0.000312899 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.92 vpr 58.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 60024 5 3 11 14 2 9 10 4 4 16 clb auto 20.0 MiB 0.03 16 58.6 MiB 0.04 0.00 1.57064 -4.87718 -1.57064 0.571 0.02 2.727e-05 1.8414e-05 0.000205768 0.000143087 8 24 12 107788 107788 4794.78 299.674 0.11 0.0013976 0.0010115 14 3 11 11 234 105 1.57153 0.571 -4.90301 -1.57153 0 0 5401.54 337.596 0.00 0.03 0.00175681 0.00163359 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.83 vpr 58.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 60304 5 3 11 14 2 9 10 4 4 16 clb auto 20.4 MiB 0.01 16 58.9 MiB 0.08 0.00 1.37313 -2.68164 -1.37313 0.571 0.03 3.7773e-05 2.643e-05 0.000691139 0.000473677 8 20 13 107788 107788 4794.78 299.674 0.11 0.00191466 0.00139023 21 4 17 17 434 224 1.39263 0.571 -2.70468 -1.39263 0 0 5401.54 337.596 0.00 0.02 0.000443149 0.000352397 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 1.23 vpr 58.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 60228 5 3 11 14 2 9 10 4 4 16 clb auto 20.3 MiB 0.03 16 58.8 MiB 0.08 0.00 0.0706414 0 0 0.571 0.02 4.0324e-05 2.9752e-05 0.000806911 0.000610589 12 24 3 107788 107788 6174.55 385.909 0.33 0.00434011 0.00335436 32 4 15 15 902 574 0.0724097 0.571 0 0 0 0 7809.43 488.089 0.00 0.03 0.000471203 0.000383952 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.37 vpr 61.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62748 5 3 11 14 2 9 10 4 4 16 clb auto 22.3 MiB 0.01 16 61.3 MiB 0.00 0.00 0.738757 -2.61951 -0.738757 0.571 0.01 1.584e-05 1.1003e-05 0.000128047 9.6972e-05 8 18 7 107788 107788 4794.78 299.674 0.01 0.000585615 0.000443875 564 862 -1 26 3 10 10 358 216 0 0 358 216 10 10 0 0 29 28 0 0 29 29 0 0 73 29 0 0 108 63 0 0 109 57 0 0 10 0 0 0 0 0 10 0 0 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000300131 0.000243476 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.36 vpr 61.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62836 5 3 11 14 2 9 10 4 4 16 clb auto 22.3 MiB 0.00 19 61.4 MiB 0.00 0.00 0.571 0 0 0.571 0.01 1.329e-05 9.488e-06 0.000109422 8.706e-05 8 26 3 107788 107788 4794.78 299.674 0.01 0.000426324 0.000343803 564 862 -1 25 4 13 13 444 252 0 0 444 252 13 13 0 0 34 30 0 0 34 34 0 0 103 39 0 0 132 65 0 0 128 71 0 0 13 0 0 0 0 0 13 0 0 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00028726 0.000239596 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.37 vpr 61.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62588 5 3 11 14 2 9 10 4 4 16 clb auto 22.2 MiB 0.01 16 61.1 MiB 0.00 0.00 0.570641 -1.88754 -0.570641 0.571 0.01 1.4999e-05 9.45e-06 0.000235372 0.000159502 8 18 8 107788 107788 4794.78 299.674 0.01 0.000822286 0.000603795 564 862 -1 20 9 27 27 591 285 0 0 591 285 27 27 0 0 57 52 0 0 58 57 0 0 180 72 0 0 136 35 0 0 133 42 0 0 27 0 0 0 0 0 27 0 0 0.591173 0.571 -2.00632 -0.591173 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000462293 0.000357238 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.35 vpr 61.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62740 5 3 11 14 2 9 10 4 4 16 clb auto 22.3 MiB 0.01 16 61.3 MiB 0.00 0.00 1.56976 -4.87453 -1.56976 0.571 0.01 2.1184e-05 1.2117e-05 0.00019856 0.000134496 8 17 8 107788 107788 4794.78 299.674 0.01 0.000798253 0.000568712 564 862 -1 14 8 24 24 436 195 0 0 436 195 24 24 0 0 46 31 0 0 46 46 0 0 150 56 0 0 98 29 0 0 72 9 0 0 24 0 0 0 0 0 24 0 0 1.57153 0.571 -4.90301 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000498531 0.000377836 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.42 vpr 61.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62572 5 3 11 14 2 9 10 4 4 16 clb auto 22.2 MiB 0.01 16 61.1 MiB 0.00 0.00 1.37313 -2.68253 -1.37313 0.571 0.01 2.6601e-05 1.8216e-05 0.000356964 0.000248655 8 12 2 107788 107788 4794.78 299.674 0.02 0.00253563 0.00175624 564 862 -1 26 3 10 10 336 199 0 0 336 199 10 10 0 0 28 23 0 0 28 28 0 0 73 31 0 0 98 53 0 0 99 54 0 0 10 0 0 0 0 0 10 0 0 1.75699 0.571 -3.06727 -1.75699 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000371496 0.000298308 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.37 vpr 61.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 62588 5 3 11 14 2 9 10 4 4 16 clb auto 22.2 MiB 0.01 17 61.1 MiB 0.00 0.00 0.0697572 0 0 0.571 0.01 2.2021e-05 1.3314e-05 0.000148875 0.000113394 8 21 4 107788 107788 4794.78 299.674 0.02 0.00101322 0.0007761 564 862 -1 27 4 13 13 421 237 0 0 421 237 13 13 0 0 32 28 0 0 32 32 0 0 103 38 0 0 128 62 0 0 113 64 0 0 13 0 0 0 0 0 13 0 0 0.0724097 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000367859 0.000299517 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/config.txt index 855aa3e9e39..58e75548839 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/config.txt @@ -24,4 +24,4 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params = -start odin --sweep_constant_primary_outputs on +script_params = -start odin --sweep_constant_primary_outputs on --seed 3 From ea38ef74e41c3eb58009f4c9a631803082915b16 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 21 Apr 2023 13:33:26 -0400 Subject: [PATCH 63/81] changed the seed for vtr_basic_odin config file --- .../vtr_reg_basic_odin/basic_timing/config/config.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing/config/config.txt index 2e4742aa957..dc33b63b957 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_timing/config/config.txt @@ -27,6 +27,6 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params_common = -track_memory_usage -start odin +script_params_common = -track_memory_usage -start odin -seed 3 script_params_list_add = script_params_list_add = --reorder_rr_graph_nodes_algorithm random_shuffle From 7c8f300f4f03540ec6d2988d7008166e88191636 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 21 Apr 2023 13:45:38 -0400 Subject: [PATCH 64/81] updated vtr_reg_strong_oding golden results --- .../config/golden_results.txt | 40 +++++++++---------- .../config/golden_results.txt | 4 +- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt index 742df99b517..cb165f7e94b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt @@ -1,21 +1,21 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.46 vpr 58.79 MiB -1 -1 -1 -1 0 0.01 -1 -1 32156 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60196 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.6 MiB 0.00 0 58.8 MiB 0.00 0.00 nan 0 0 nan 0.01 7.142e-06 4.117e-06 4.0501e-05 2.7138e-05 2 0 1 3900 3900 966.985 107.443 0.00 9.9989e-05 6.8998e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.8508e-05 3.5682e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.52 vpr 58.64 MiB -1 -1 -1 -1 0 0.01 -1 -1 32148 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60048 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.5 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 5.468e-06 3.39e-06 3.6409e-05 2.4902e-05 2 0 1 3900 3900 966.985 107.443 0.00 9.9619e-05 7.0611e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.9679e-05 3.6722e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.48 vpr 58.94 MiB -1 -1 -1 -1 0 0.00 -1 -1 32240 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60356 6 1 1 8 0 1 8 3 3 9 -1 auto 19.7 MiB 0.00 0 58.9 MiB 0.00 0.00 nan 0 0 nan 0.01 5.557e-06 3.265e-06 4.6598e-05 2.4956e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000112553 7.1603e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.8803e-05 3.6142e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.50 vpr 58.71 MiB -1 -1 -1 -1 0 0.00 -1 -1 32212 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60120 6 1 1 8 0 1 8 3 3 9 -1 auto 19.5 MiB 0.00 0 58.7 MiB 0.00 0.00 nan 0 0 nan 0.01 5.281e-06 3.157e-06 3.5472e-05 2.3665e-05 2 0 1 3900 3900 966.985 107.443 0.00 9.921e-05 6.8428e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.366e-05 4.0573e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.62 vpr 58.42 MiB -1 -1 -1 -1 1 0.01 -1 -1 32352 -1 -1 1 2 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59824 2 1 3 4 0 3 4 3 3 9 -1 auto 19.4 MiB 0.00 6 58.4 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.751e-06 4.947e-06 6.243e-05 4.5426e-05 12 5 1 3900 3900 2582.62 286.957 0.02 0.000450611 0.000328357 314 651 -1 5 18 36 36 767 524 0 0 767 524 36 36 0 0 149 149 0 0 199 175 0 0 36 36 0 0 113 21 0 0 234 107 0 0 36 0 0 0 0 0 36 0 0 0.592443 nan -0.592443 -0.592443 0 0 3970.02 441.113 0.00 0.00 0.00 -1 -1 0.00 0.000357651 0.000260177 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.80 vpr 58.53 MiB -1 -1 -1 -1 2 0.07 -1 -1 34168 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59936 5 1 7 8 0 7 7 3 3 9 -1 auto 19.4 MiB 0.00 14 58.5 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.7654e-05 1.1368e-05 0.000121641 9.4402e-05 18 17 8 3900 3900 4264.82 473.869 0.05 0.00241939 0.00183198 346 735 -1 14 4 12 12 320 251 0 0 320 251 12 12 0 0 70 70 0 0 81 80 0 0 12 12 0 0 54 27 0 0 91 50 0 0 12 0 0 0 0 0 12 0 0 1.03782 nan -1.03782 -1.03782 0 0 5011.22 556.802 0.00 0.00 0.00 -1 -1 0.00 0.000182112 0.000150951 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.74 vpr 58.59 MiB -1 -1 -1 -1 2 0.05 -1 -1 34464 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59992 5 1 7 8 0 7 7 3 3 9 -1 auto 19.4 MiB 0.00 14 58.6 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.8722e-05 1.2131e-05 0.000124901 9.647e-05 16 26 17 3900 3900 3970.02 441.113 0.02 0.000833017 0.000656104 330 691 -1 25 9 27 27 973 789 0 0 973 789 27 27 0 0 179 179 0 0 284 280 0 0 27 27 0 0 188 126 0 0 268 150 0 0 27 0 0 0 0 0 27 0 0 1.58285 nan -1.58285 -1.58285 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000247045 0.000197699 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.64 vpr 58.94 MiB -1 -1 -1 -1 1 0.01 -1 -1 32504 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60352 3 1 5 6 1 4 5 3 3 9 -1 auto 19.7 MiB 0.00 6 58.9 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.01 1.6152e-05 9.981e-06 0.000104284 7.7207e-05 16 8 1 3900 3900 3970.02 441.113 0.03 0.000568862 0.000438625 330 691 -1 14 4 8 8 303 249 0 0 303 249 8 8 0 0 56 56 0 0 84 83 0 0 8 8 0 0 58 45 0 0 89 49 0 0 8 0 0 0 0 0 8 0 0 0.776991 0.776991 -1.16292 -0.776991 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000235911 0.000187785 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.89 vpr 58.59 MiB -1 -1 -1 -1 1 0.07 -1 -1 34652 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59992 4 1 4 6 0 4 6 3 3 9 -1 auto 19.5 MiB 0.00 8 58.6 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.497e-06 5.767e-06 5.9771e-05 4.3696e-05 16 11 1 3900 3900 3970.02 441.113 0.03 0.00107666 0.00074632 330 691 -1 14 16 33 33 1258 1025 0 0 1258 1025 33 33 0 0 219 219 0 0 397 396 0 0 33 33 0 0 213 169 0 0 363 175 0 0 33 0 0 0 0 0 33 0 0 0.959435 nan -0.959435 -0.959435 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000333781 0.000250592 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.76 vpr 58.57 MiB -1 -1 -1 -1 1 0.05 -1 -1 34484 -1 -1 1 4 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59980 4 4 8 12 0 8 9 3 3 9 -1 auto 19.5 MiB 0.00 17 58.6 MiB 0.00 0.00 0.461147 -1.8388 -0.461147 nan 0.01 2.3243e-05 1.5972e-05 0.000190835 0.000156355 20 43 15 3900 3900 4445.42 493.935 0.07 0.00431668 0.00339174 354 763 -1 45 9 34 109 4430 3406 0 0 4430 3406 109 108 0 0 702 699 0 0 1202 1152 0 0 147 140 0 0 997 495 0 0 1273 812 0 0 109 0 0 75 130 180 764 0 0 1.10339 nan -3.31095 -1.10339 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.00071114 0.000604492 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 1.10 vpr 58.84 MiB -1 -1 -1 -1 3 0.09 -1 -1 34832 -1 -1 3 6 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60256 6 6 28 34 0 28 15 5 5 25 clb auto 20.3 MiB 0.01 85 58.8 MiB 0.01 0.00 1.13809 -5.17443 -1.13809 nan 0.07 5.2425e-05 3.9671e-05 0.0011297 0.000934061 24 250 29 23400 11700 20975.0 838.999 0.16 0.00841733 0.00699967 1420 4462 -1 209 22 312 1254 72764 32181 0 0 72764 32181 1254 998 0 0 5724 5661 0 0 10979 7934 0 0 1663 1365 0 0 25640 7137 0 0 27504 9086 0 0 1254 0 0 942 2362 3422 14798 0 0 1.67956 nan -7.17912 -1.67956 0 0 27052.1 1082.08 0.01 0.04 0.01 -1 -1 0.01 0.00349747 0.00305678 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 1.48 vpr 58.78 MiB -1 -1 -1 -1 4 0.05 -1 -1 34748 -1 -1 5 7 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60188 7 8 39 47 0 39 20 5 5 25 clb auto 20.2 MiB 0.02 140 58.8 MiB 0.01 0.00 1.44727 -7.37047 -1.44727 nan 0.04 8.585e-05 6.6854e-05 0.00172359 0.00144028 28 440 32 23400 19500 25328.9 1013.15 0.63 0.0271337 0.0225112 1476 4870 -1 337 21 446 1763 102447 42880 0 0 102447 42880 1763 1271 0 0 7872 7774 0 0 16086 10593 0 0 2128 1781 0 0 38398 11681 0 0 36200 9780 0 0 1763 0 0 1317 5511 4414 24433 0 0 1.95499 nan -9.51805 -1.95499 0 0 29680.9 1187.23 0.01 0.03 0.01 -1 -1 0.01 0.00282231 0.00247277 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 1.37 vpr 58.86 MiB -1 -1 -1 -1 8 0.11 -1 -1 34748 -1 -1 7 8 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60272 8 8 51 59 0 51 23 6 6 36 clb auto 20.2 MiB 0.02 181 58.9 MiB 0.01 0.00 2.52719 -11.7505 -2.52719 nan 0.11 4.8409e-05 3.8024e-05 0.00125219 0.00104646 30 549 40 165600 27300 47960.3 1332.23 0.31 0.0128422 0.0107871 2708 10880 -1 439 17 415 1603 108179 43197 0 0 108179 43197 1603 1260 0 0 8154 7984 0 0 15282 11548 0 0 1991 1524 0 0 41349 10374 0 0 39800 10507 0 0 1603 0 0 1188 3751 3730 19776 0 0 3.08327 nan -16.4287 -3.08327 0 0 61410.5 1705.85 0.02 0.03 0.01 -1 -1 0.02 0.00309945 0.0027415 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 2.49 vpr 59.42 MiB -1 -1 -1 -1 7 0.10 -1 -1 34968 -1 -1 11 10 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60848 10 10 95 105 0 95 31 6 6 36 clb auto 20.8 MiB 0.02 415 59.4 MiB 0.01 0.00 2.50191 -17.529 -2.50191 nan 0.09 9.189e-05 7.2177e-05 0.0019266 0.00165487 42 1012 33 165600 42900 62990.9 1749.75 1.32 0.050288 0.0420523 3040 14182 -1 864 21 940 3844 276923 97259 0 0 276923 97259 3844 3089 0 0 18188 17856 0 0 34065 23794 0 0 4979 4035 0 0 114052 25508 0 0 101795 22977 0 0 3844 0 0 2904 12730 11397 58421 0 0 2.92458 nan -21.4183 -2.92458 0 0 81938.5 2276.07 0.02 0.07 0.02 -1 -1 0.02 0.00571162 0.00499518 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.89 vpr 59.37 MiB -1 -1 -1 -1 8 0.12 -1 -1 34932 -1 -1 11 11 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60792 11 11 94 105 0 94 33 6 6 36 clb auto 20.8 MiB 0.03 412 59.4 MiB 0.02 0.00 2.74146 -20.0164 -2.74146 nan 0.08 0.000159884 0.000126501 0.00329751 0.00282927 40 1012 28 165600 42900 61410.5 1705.85 0.68 0.0338077 0.0286385 2992 13730 -1 851 21 1039 4043 271520 96369 0 0 271520 96369 4043 3331 0 0 18219 17934 0 0 35878 23744 0 0 5441 4449 0 0 102307 22959 0 0 105632 23952 0 0 4043 0 0 3004 9770 10667 53416 0 0 3.38814 nan -25.0082 -3.38814 0 0 78756.9 2187.69 0.02 0.07 0.02 -1 -1 0.02 0.0064705 0.00573254 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.79 vpr 58.53 MiB -1 -1 -1 -1 1 0.05 -1 -1 33620 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59932 3 2 5 7 0 5 6 3 3 9 -1 auto 19.4 MiB 0.00 10 58.5 MiB 0.00 0.00 0.459217 -0.918433 -0.459217 nan 0.01 1.0711e-05 7.389e-06 8.1735e-05 6.3356e-05 14 30 14 3900 3900 2841.42 315.713 0.02 0.000557086 0.000432266 322 679 -1 19 5 13 24 655 507 0 0 655 507 24 23 0 0 124 123 0 0 185 183 0 0 34 31 0 0 112 42 0 0 176 105 0 0 24 0 0 11 1 11 69 0 0 0.958112 nan -1.5482 -0.958112 0 0 4264.82 473.869 0.00 0.00 0.00 -1 -1 0.00 0.000283081 0.000232572 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.92 vpr 58.89 MiB -1 -1 -1 -1 2 0.08 -1 -1 34656 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60300 5 3 9 12 0 9 9 3 3 9 -1 auto 19.6 MiB 0.00 18 58.9 MiB 0.00 0.00 0.72619 -1.9116 -0.72619 nan 0.01 2.209e-05 1.4827e-05 0.000164718 0.000133042 16 40 11 3900 3900 3970.02 441.113 0.03 0.00141417 0.0011521 330 691 -1 39 10 43 77 2536 1966 0 0 2536 1966 77 64 0 0 409 405 0 0 713 662 0 0 82 71 0 0 566 341 0 0 689 423 0 0 77 0 0 34 35 41 255 0 0 1.22255 nan -3.15061 -1.22255 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000673578 0.000569654 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.86 vpr 58.73 MiB -1 -1 -1 -1 3 0.10 -1 -1 34500 -1 -1 1 7 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60140 7 4 13 17 0 13 12 3 3 9 -1 auto 19.5 MiB 0.01 26 58.7 MiB 0.00 0.00 0.995093 -3.17945 -0.995093 nan 0.01 2.2799e-05 1.6995e-05 0.000215711 0.00018184 20 49 15 3900 3900 4445.42 493.935 0.06 0.00473445 0.00378457 354 763 -1 43 10 51 94 3051 2352 0 0 3051 2352 94 83 0 0 484 469 0 0 762 694 0 0 111 98 0 0 751 457 0 0 849 551 0 0 94 0 0 43 45 42 310 0 0 1.28583 nan -4.33186 -1.28583 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000505661 0.000433655 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.70 vpr 58.59 MiB -1 -1 -1 -1 4 0.05 -1 -1 34496 -1 -1 1 9 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59992 9 5 17 22 0 17 15 3 3 9 -1 auto 19.4 MiB 0.01 34 58.6 MiB 0.00 0.00 1.26014 -4.70077 -1.26014 nan 0.01 2.1467e-05 1.5718e-05 0.000221632 0.000190952 28 69 22 3900 3900 5935.82 659.535 0.03 0.00334066 0.00270872 394 1003 -1 45 19 77 148 4685 3220 0 0 4685 3220 148 120 0 0 771 758 0 0 1191 1038 0 0 171 150 0 0 939 434 0 0 1465 720 0 0 148 0 0 71 54 70 485 0 0 1.5529 nan -5.72555 -1.5529 0 0 6854.42 761.602 0.00 0.00 0.00 -1 -1 0.00 0.00119531 0.00101728 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.90 vpr 58.71 MiB -1 -1 -1 -1 4 0.06 -1 -1 34484 -1 -1 2 11 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60124 11 6 24 30 0 24 19 4 4 16 clb auto 20.2 MiB 0.01 64 58.7 MiB 0.00 0.00 1.27336 -6.16074 -1.27336 nan 0.02 2.2287e-05 1.6351e-05 0.000320634 0.000274276 28 165 19 7800 7800 12557.4 784.840 0.07 0.00544905 0.0045356 812 2356 -1 155 20 212 472 19934 10736 0 0 19934 10736 472 410 0 0 2141 2109 0 0 3808 2878 0 0 582 468 0 0 6537 2381 0 0 6394 2490 0 0 472 0 0 260 223 360 2001 0 0 1.80913 nan -8.18884 -1.80913 0 0 14986.4 936.652 0.01 0.02 0.01 -1 -1 0.01 0.00240408 0.00208579 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.56 vpr 58.45 MiB -1 -1 -1 -1 0 0.01 -1 -1 32152 -1 -1 1 0 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59848 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.4 MiB 0.00 0 58.4 MiB 0.00 0.00 nan 0 0 nan 0.01 5.622e-06 3.328e-06 4.5376e-05 3.1208e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000120033 8.4071e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 6.1556e-05 4.5553e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.50 vpr 58.56 MiB -1 -1 -1 -1 0 0.00 -1 -1 32228 -1 -1 1 0 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59968 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.5 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 5.96e-06 3.691e-06 3.9067e-05 2.6584e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000111544 7.8417e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 6.2779e-05 4.6126e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.54 vpr 58.60 MiB -1 -1 -1 -1 0 0.00 -1 -1 32224 -1 -1 1 0 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60008 6 1 1 8 0 1 8 3 3 9 -1 auto 19.5 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 6.123e-06 3.654e-06 4.5082e-05 3.0968e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000123222 8.6919e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.5854e-05 4.1047e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.54 vpr 58.83 MiB -1 -1 -1 -1 0 0.01 -1 -1 32276 -1 -1 1 0 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60244 6 1 1 8 0 1 8 3 3 9 -1 auto 19.7 MiB 0.00 0 58.8 MiB 0.00 0.00 nan 0 0 nan 0.01 5.878e-06 3.516e-06 3.9925e-05 2.7002e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000111602 7.7955e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.807e-05 4.3187e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.46 vpr 58.45 MiB -1 -1 -1 -1 1 0.00 -1 -1 32344 -1 -1 1 2 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59852 2 1 3 4 0 3 4 3 3 9 -1 auto 19.4 MiB 0.00 6 58.4 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.414e-06 5.021e-06 5.4643e-05 3.9308e-05 12 5 1 3900 3900 2582.62 286.957 0.01 0.000176266 0.000133039 314 651 -1 5 18 36 36 767 524 0 0 767 524 36 36 0 0 149 149 0 0 199 175 0 0 36 36 0 0 113 21 0 0 234 107 0 0 36 0 0 0 0 0 36 0 0 0.592443 nan -0.592443 -0.592443 0 0 3970.02 441.113 0.00 0.00 0.00 -1 -1 0.00 0.000273621 0.000195863 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.72 vpr 58.53 MiB -1 -1 -1 -1 2 0.06 -1 -1 34120 -1 -1 1 5 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59932 5 1 7 8 0 7 7 3 3 9 -1 auto 19.4 MiB 0.00 14 58.5 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.6638e-05 1.0329e-05 9.6611e-05 7.3495e-05 18 17 8 3900 3900 4264.82 473.869 0.02 0.00110492 0.000819001 346 735 -1 14 4 12 12 320 251 0 0 320 251 12 12 0 0 70 70 0 0 81 80 0 0 12 12 0 0 54 27 0 0 91 50 0 0 12 0 0 0 0 0 12 0 0 1.03782 nan -1.03782 -1.03782 0 0 5011.22 556.802 0.00 0.00 0.00 -1 -1 0.00 0.000191686 0.00015815 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.70 vpr 58.50 MiB -1 -1 -1 -1 2 0.07 -1 -1 34424 -1 -1 1 5 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59900 5 1 7 8 0 7 7 3 3 9 -1 auto 19.4 MiB 0.00 14 58.5 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.0314e-05 6.471e-06 7.2386e-05 5.6199e-05 16 26 17 3900 3900 3970.02 441.113 0.01 0.000425601 0.000326398 330 691 -1 25 9 27 27 973 789 0 0 973 789 27 27 0 0 179 179 0 0 284 280 0 0 27 27 0 0 188 126 0 0 268 150 0 0 27 0 0 0 0 0 27 0 0 1.58285 nan -1.58285 -1.58285 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000239846 0.000191629 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.45 vpr 58.86 MiB -1 -1 -1 -1 1 0.01 -1 -1 32524 -1 -1 1 3 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60276 3 1 5 6 1 4 5 3 3 9 -1 auto 19.7 MiB 0.00 6 58.9 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.01 1.0548e-05 6.193e-06 6.8482e-05 5.0309e-05 16 8 1 3900 3900 3970.02 441.113 0.01 0.000250569 0.000193279 330 691 -1 14 4 8 8 303 249 0 0 303 249 8 8 0 0 56 56 0 0 84 83 0 0 8 8 0 0 58 45 0 0 89 49 0 0 8 0 0 0 0 0 8 0 0 0.776991 0.776991 -1.16292 -0.776991 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000159369 0.000125563 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.59 vpr 58.76 MiB -1 -1 -1 -1 1 0.04 -1 -1 34648 -1 -1 1 3 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60168 4 1 4 6 0 4 6 3 3 9 -1 auto 19.6 MiB 0.00 8 58.8 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.423e-06 5.796e-06 6.2863e-05 4.6387e-05 16 11 1 3900 3900 3970.02 441.113 0.01 0.000705248 0.000494487 330 691 -1 14 16 33 33 1258 1025 0 0 1258 1025 33 33 0 0 219 219 0 0 397 396 0 0 33 33 0 0 213 169 0 0 363 175 0 0 33 0 0 0 0 0 33 0 0 0.959435 nan -0.959435 -0.959435 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000251865 0.000185503 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.69 vpr 58.69 MiB -1 -1 -1 -1 1 0.05 -1 -1 34400 -1 -1 1 4 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60096 4 4 8 12 0 8 9 3 3 9 -1 auto 19.5 MiB 0.00 17 58.7 MiB 0.00 0.00 0.461147 -1.8388 -0.461147 nan 0.01 1.5485e-05 1.0423e-05 0.000129146 0.00010589 20 43 15 3900 3900 4445.42 493.935 0.02 0.0018938 0.00148487 354 763 -1 45 9 34 109 4430 3406 0 0 4430 3406 109 108 0 0 702 699 0 0 1202 1152 0 0 147 140 0 0 997 495 0 0 1273 812 0 0 109 0 0 75 130 180 764 0 0 1.10339 nan -3.31095 -1.10339 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000432625 0.000365595 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.98 vpr 59.00 MiB -1 -1 -1 -1 3 0.05 -1 -1 34872 -1 -1 3 6 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60420 6 6 28 34 0 28 15 5 5 25 clb auto 20.4 MiB 0.01 85 59.0 MiB 0.00 0.00 1.13809 -5.17443 -1.13809 nan 0.04 3.1713e-05 2.3709e-05 0.000726715 0.000602491 24 250 29 23400 11700 20975.0 838.999 0.14 0.00695428 0.00574382 1420 4462 -1 209 22 312 1254 72764 32181 0 0 72764 32181 1254 998 0 0 5724 5661 0 0 10979 7934 0 0 1663 1365 0 0 25640 7137 0 0 27504 9086 0 0 1254 0 0 942 2362 3422 14798 0 0 1.67956 nan -7.17912 -1.67956 0 0 27052.1 1082.08 0.01 0.03 0.01 -1 -1 0.01 0.0023645 0.00204062 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 1.03 vpr 59.22 MiB -1 -1 -1 -1 4 0.07 -1 -1 34692 -1 -1 5 7 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60640 7 8 39 47 0 39 20 5 5 25 clb auto 20.5 MiB 0.01 140 59.2 MiB 0.01 0.00 1.44727 -7.37047 -1.44727 nan 0.04 4.5272e-05 3.4556e-05 0.000998962 0.000833953 28 440 32 23400 19500 25328.9 1013.15 0.20 0.00984764 0.0082002 1476 4870 -1 337 21 446 1763 102447 42880 0 0 102447 42880 1763 1271 0 0 7872 7774 0 0 16086 10593 0 0 2128 1781 0 0 38398 11681 0 0 36200 9780 0 0 1763 0 0 1317 5511 4414 24433 0 0 1.95499 nan -9.51805 -1.95499 0 0 29680.9 1187.23 0.01 0.03 0.01 -1 -1 0.01 0.00321658 0.00281366 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 1.33 vpr 58.95 MiB -1 -1 -1 -1 8 0.05 -1 -1 34740 -1 -1 7 8 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60364 8 8 51 59 0 51 23 6 6 36 clb auto 20.3 MiB 0.02 181 58.9 MiB 0.01 0.00 2.52719 -11.7505 -2.52719 nan 0.09 0.000100059 8.0085e-05 0.00238541 0.00199648 30 549 40 165600 27300 47960.3 1332.23 0.34 0.0143309 0.0119825 2708 10880 -1 439 17 415 1603 108179 43197 0 0 108179 43197 1603 1260 0 0 8154 7984 0 0 15282 11548 0 0 1991 1524 0 0 41349 10374 0 0 39800 10507 0 0 1603 0 0 1188 3751 3730 19776 0 0 3.08327 nan -16.4287 -3.08327 0 0 61410.5 1705.85 0.02 0.04 0.02 -1 -1 0.02 0.00358083 0.00317154 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 1.87 vpr 59.40 MiB -1 -1 -1 -1 7 0.10 -1 -1 34932 -1 -1 11 10 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60828 10 10 95 105 0 95 31 6 6 36 clb auto 20.8 MiB 0.02 415 59.4 MiB 0.01 0.00 2.50191 -17.529 -2.50191 nan 0.08 0.000103954 8.1363e-05 0.00219719 0.00189049 42 1012 33 165600 42900 62990.9 1749.75 0.75 0.0324456 0.0272182 3040 14182 -1 864 21 940 3844 276923 97259 0 0 276923 97259 3844 3089 0 0 18188 17856 0 0 34065 23794 0 0 4979 4035 0 0 114052 25508 0 0 101795 22977 0 0 3844 0 0 2904 12730 11397 58421 0 0 2.92458 nan -21.4183 -2.92458 0 0 81938.5 2276.07 0.03 0.09 0.02 -1 -1 0.03 0.0078567 0.00689681 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.81 vpr 59.38 MiB -1 -1 -1 -1 8 0.12 -1 -1 34980 -1 -1 11 11 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60808 11 11 94 105 0 94 33 6 6 36 clb auto 20.8 MiB 0.02 412 59.4 MiB 0.01 0.00 2.74146 -20.0164 -2.74146 nan 0.08 0.000104348 8.1023e-05 0.0022853 0.0019557 40 1012 28 165600 42900 61410.5 1705.85 0.64 0.0306039 0.025714 2992 13730 -1 851 21 1039 4043 271520 96369 0 0 271520 96369 4043 3331 0 0 18219 17934 0 0 35878 23744 0 0 5441 4449 0 0 102307 22959 0 0 105632 23952 0 0 4043 0 0 3004 9770 10667 53416 0 0 3.38814 nan -25.0082 -3.38814 0 0 78756.9 2187.69 0.03 0.07 0.02 -1 -1 0.03 0.00678174 0.00598285 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.69 vpr 58.80 MiB -1 -1 -1 -1 1 0.05 -1 -1 33624 -1 -1 1 3 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60212 3 2 5 7 0 5 6 3 3 9 -1 auto 19.6 MiB 0.00 10 58.8 MiB 0.00 0.00 0.459217 -0.918433 -0.459217 nan 0.01 1.062e-05 7.34e-06 8.3038e-05 6.4979e-05 14 30 14 3900 3900 2841.42 315.713 0.01 0.000473547 0.000367979 322 679 -1 19 5 13 24 655 507 0 0 655 507 24 23 0 0 124 123 0 0 185 183 0 0 34 31 0 0 112 42 0 0 176 105 0 0 24 0 0 11 1 11 69 0 0 0.958112 nan -1.5482 -0.958112 0 0 4264.82 473.869 0.00 0.00 0.00 -1 -1 0.00 0.000209883 0.000170704 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.68 vpr 58.90 MiB -1 -1 -1 -1 2 0.05 -1 -1 34744 -1 -1 1 5 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60316 5 3 9 12 0 9 9 3 3 9 -1 auto 19.7 MiB 0.00 18 58.9 MiB 0.00 0.00 0.72619 -1.9116 -0.72619 nan 0.01 1.5553e-05 1.01e-05 0.000127932 0.000103278 16 40 11 3900 3900 3970.02 441.113 0.01 0.000653624 0.000531515 330 691 -1 39 10 43 77 2536 1966 0 0 2536 1966 77 64 0 0 409 405 0 0 713 662 0 0 82 71 0 0 566 341 0 0 689 423 0 0 77 0 0 34 35 41 255 0 0 1.22255 nan -3.15061 -1.22255 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000424281 0.000354693 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.70 vpr 58.70 MiB -1 -1 -1 -1 3 0.04 -1 -1 34512 -1 -1 1 7 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60112 7 4 13 17 0 13 12 3 3 9 -1 auto 19.5 MiB 0.00 26 58.7 MiB 0.00 0.00 0.995093 -3.17945 -0.995093 nan 0.01 1.7119e-05 1.2573e-05 0.000163789 0.000139165 20 49 15 3900 3900 4445.42 493.935 0.03 0.00234931 0.00187501 354 763 -1 43 10 51 94 3051 2352 0 0 3051 2352 94 83 0 0 484 469 0 0 762 694 0 0 111 98 0 0 751 457 0 0 849 551 0 0 94 0 0 43 45 42 310 0 0 1.28583 nan -4.33186 -1.28583 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000592175 0.000507354 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.72 vpr 58.70 MiB -1 -1 -1 -1 4 0.06 -1 -1 34520 -1 -1 1 9 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60104 9 5 17 22 0 17 15 3 3 9 -1 auto 19.5 MiB 0.00 34 58.7 MiB 0.00 0.00 1.26014 -4.70077 -1.26014 nan 0.01 2.1446e-05 1.5739e-05 0.000227348 0.000191779 28 69 22 3900 3900 5935.82 659.535 0.03 0.00355682 0.00288173 394 1003 -1 45 19 77 148 4685 3220 0 0 4685 3220 148 120 0 0 771 758 0 0 1191 1038 0 0 171 150 0 0 939 434 0 0 1465 720 0 0 148 0 0 71 54 70 485 0 0 1.5529 nan -5.72555 -1.5529 0 0 6854.42 761.602 0.00 0.00 0.00 -1 -1 0.00 0.000998947 0.000845945 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.82 vpr 59.01 MiB -1 -1 -1 -1 4 0.05 -1 -1 34512 -1 -1 2 11 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60424 11 6 24 30 0 24 19 4 4 16 clb auto 20.5 MiB 0.01 64 59.0 MiB 0.00 0.00 1.27336 -6.16074 -1.27336 nan 0.02 3.3735e-05 2.6524e-05 0.000402897 0.000345448 28 165 19 7800 7800 12557.4 784.840 0.06 0.00487552 0.00403515 812 2356 -1 155 20 212 472 19934 10736 0 0 19934 10736 472 410 0 0 2141 2109 0 0 3808 2878 0 0 582 468 0 0 6537 2381 0 0 6394 2490 0 0 472 0 0 260 223 360 2001 0 0 1.80913 nan -8.18884 -1.80913 0 0 14986.4 936.652 0.00 0.01 0.00 -1 -1 0.00 0.00159108 0.00136506 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/golden_results.txt index 6a40c367957..c0fef449a49 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sweep_constant_outputs/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 4.67 vpr 60.80 MiB 0.15 9228 -1 -1 3 0.30 -1 -1 36308 -1 -1 14 99 1 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 62260 99 74 307 381 1 199 188 8 8 64 io memory auto 22.3 MiB 0.18 634 60.8 MiB 0.23 0.00 1.93566 -200.413 -1.93566 1.93566 0.13 0.000545206 0.000478141 0.0343436 0.0301688 48 1052 42 2.23746e+06 1.30252e+06 149669. 2338.58 1.84 0.253444 0.227953 996 13 823 1210 103391 33386 2.24453 2.24453 -219.839 -2.24453 0 0 190856. 2982.13 0.04 0.27 0.0282812 0.0268084 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 3.09 vpr 63.72 MiB 0.07 9152 -1 -1 3 0.38 -1 -1 36988 -1 -1 14 99 1 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 65252 99 74 307 381 1 199 188 8 8 64 io memory auto 24.9 MiB 0.07 644 63.7 MiB 0.17 0.00 1.98017 -195.698 -1.98017 1.98017 0.14 0.000334875 0.000286206 0.0291975 0.0252332 34 1451 25 2.23746e+06 1.30252e+06 111309. 1739.21 1.21 0.18456 0.163977 4442 19988 -1 1153 18 884 1337 115477 39941 0 0 115477 39941 1337 1162 0 0 7075 6648 0 0 7731 7085 0 0 7083 4324 0 0 46230 10104 0 0 46021 10618 0 0 1337 0 0 542 584 487 4390 0 0 2.25308 2.25308 -221.643 -2.25308 0 0 136889. 2138.88 0.05 0.06 0.02 -1 -1 0.05 0.0248708 0.0229926 From 526179afe8689f3720bce96c26bf44e8a15c81b6 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 21 Apr 2023 14:27:53 -0400 Subject: [PATCH 65/81] updated golden_results for odin-ii --- .../func_multiclock/blanket/config/golden_results.txt | 8 ++++---- .../func_multiclock/iterative/config/golden_results.txt | 8 ++++---- .../func_multiclock/once/config/golden_results.txt | 8 ++++---- .../func_multiclock/vanilla/config/golden_results.txt | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/blanket/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/blanket/config/golden_results.txt index cc6731fd1dd..9077f9965e9 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/blanket/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/blanket/config/golden_results.txt @@ -1,4 +1,4 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_mem32K_40nm.xml multiclock_output_and_latch.v common 7.97 vpr 615.86 MiB 0.02 5768 -1 -1 1 0.01 -1 -1 31516 -1 -1 2 6 0 0 success v8.0.0-6592-g77b21b20f-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-10-31T15:28:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/centroid_placement_final/vtr-verilog-to-routing/vtr_flow/tasks 504508 6 1 13 14 2 8 9 4 4 16 clb auto 448.7 MiB 0.08 13 599.5 MiB 0.02 0 0.876768 -3.21829 -0.876768 0.545 0.25 0.000372037 0.000194389 0.0028636 0.00177844 20 14 8 107788 107788 10441.3 652.579 0.25 0.00857718 0.0059875 11 10 26 26 268 149 1.07194 0.545 -3.60945 -1.07194 0 0 13748.8 859.301 0.01 0.03 0.00524921 0.00417586 -k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 8.64 vpr 622.67 MiB 0.02 6256 -1 -1 1 0.03 -1 -1 31828 -1 -1 2 3 0 0 success v8.0.0-6592-g77b21b20f-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-10-31T15:28:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/centroid_placement_final/vtr-verilog-to-routing/vtr_flow/tasks 510092 3 1 25 26 2 8 6 4 4 16 clb auto 454.9 MiB 0.59 16 606.0 MiB 0.02 0 0.571 -8.56916 -0.571 0.557849 0.26 0.000606497 0.000385789 0.00343997 0.00238331 20 13 1 107788 107788 10441.3 652.579 0.25 0.0114749 0.00872908 21 2 7 7 165 102 0.829178 0.557849 -9.03228 -0.829178 0 0 13748.8 859.301 0.01 0.03 0.00676045 0.00564129 -k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 7.85 vpr 615.44 MiB 0.02 5756 -1 -1 1 0.01 -1 -1 29576 -1 -1 2 6 0 0 success v8.0.0-6592-g77b21b20f-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-10-31T15:28:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/centroid_placement_final/vtr-verilog-to-routing/vtr_flow/tasks 504166 6 2 10 12 2 8 10 4 4 16 clb auto 448.5 MiB 0.04 12 599.1 MiB 0.01 0 0.544641 -1.83554 -0.544641 nan 0.25 0.000188207 0.000165018 0.00177585 0.000958418 20 18 8 107788 107788 10441.3 652.579 0.24 0.00637001 0.00429189 19 2 7 7 168 108 0.734392 nan -2.53783 -0.734392 0 0 13748.8 859.301 0.01 0.01 0.00212226 0.00138416 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml multiclock_output_and_latch.v common 11.99 vpr 255.45 MiB 0.11 36912 -1 -1 1 0.05 -1 -1 34700 -1 -1 2 6 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 261584 6 1 13 14 2 8 9 4 4 16 clb auto 101.0 MiB 0.11 13 244.4 MiB 0.04 0.00 0.875884 -3.21653 -0.875884 0.545 0.47 0.000264546 0.000241337 0.00754986 0.00454282 20 15 7 107788 107788 10441.3 652.579 0.66 0.0136677 0.00891098 742 1670 -1 15 14 32 32 476 268 0 0 476 268 32 32 0 0 45 42 0 0 51 45 0 0 32 32 0 0 205 79 0 0 111 38 0 0 32 0 0 0 0 0 32 0 0 1.31811 0.545 -4.12048 -1.31811 0 0 13748.8 859.301 0.01 0.04 0.18 -1 -1 0.01 0.00722654 0.00593545 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 12.96 vpr 261.56 MiB 0.15 45980 -1 -1 1 0.06 -1 -1 34932 -1 -1 2 3 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 267836 3 1 25 26 2 8 6 4 4 16 clb auto 106.4 MiB 0.87 17 249.9 MiB 0.03 0.00 0.571 -8.64803 -0.571 0.557849 0.47 0.000543454 0.000488368 0.00346482 0.00253954 20 19 1 107788 107788 10441.3 652.579 0.67 0.0113116 0.00855232 742 1670 -1 15 1 6 6 63 36 0 0 63 36 6 6 0 0 9 6 0 0 9 9 0 0 6 6 0 0 18 3 0 0 15 6 0 0 6 0 0 0 0 0 6 0 0 0.571 0.557849 -8.82275 -0.571 0 0 13748.8 859.301 0.01 0.04 0.17 -1 -1 0.01 0.00501901 0.00409753 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 11.88 vpr 254.22 MiB 0.15 35980 -1 -1 1 0.00 -1 -1 32420 -1 -1 2 6 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 260320 6 2 10 12 2 8 10 4 4 16 clb auto 100.4 MiB 0.06 12 243.6 MiB 0.03 0.00 0.544641 -1.83465 -0.544641 nan 0.47 0.000504445 0.000240584 0.00477542 0.00228264 20 21 1 107788 107788 10441.3 652.579 0.64 0.00804976 0.00416003 742 1670 -1 19 1 6 6 148 96 0 0 148 96 6 6 0 0 18 16 0 0 18 18 0 0 6 6 0 0 53 27 0 0 47 23 0 0 6 0 0 0 0 0 6 0 0 0.81248 nan -2.54321 -0.81248 0 0 13748.8 859.301 0.01 0.02 0.18 -1 -1 0.01 0.00215701 0.00121245 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/iterative/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/iterative/config/golden_results.txt index de4cb916977..8dbe9183936 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/iterative/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/iterative/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time error odin_synth_time max_odin_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_time placed_wirelength_est place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml multiclock_output_and_latch.v common 0.32 0.01 6736 1 0.02 -1 -1 35432 -1 -1 2 6 0 0 success v8.0.0-3544-g00617ff76 Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-53-generic x86_64 2021-05-24T22:53:36 CASA44 /home/casauser/Desktop/Repos/sdamghan 350784 6 1 13 14 2 8 9 4 4 16 clb auto 0 13 0 0 0.875884 -3.21829 -0.875884 0.545 0.01 9.133E-06 6.332E-06 0.00137103 0.000893379 20 13 2 107788 107788 10441.3 652.579 0.02 0.00202846 0.00140832 13 11 27 27 298 166 1.17974 0.545 -3.80732 -1.17974 0 0 13748.8 859.301 0 0 0.000363437 0.000297087 - k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.44 0.02 7156 1 0.02 -1 -1 35752 -1 -1 2 3 0 0 success v8.0.0-3544-g00617ff76 Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-53-generic x86_64 2021-05-24T22:53:36 CASA44 /home/casauser/Desktop/Repos/sdamghan 353248 3 1 23 24 2 8 6 4 4 16 clb auto 0.01 16 0 0 0.571 -8.02416 -0.571 0.557849 0.01 2.6392E-05 1.8474E-05 0.000392837 0.000356428 20 11 4 107788 107788 10441.3 652.579 0.02 0.00161969 0.00141089 14 2 7 7 87 53 0.639606 0.557849 -8.29417 -0.639606 0 0 13748.8 859.301 0 0 0.000617072 0.000570262 - k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.29 0.01 6724 1 0.01 -1 -1 33208 -1 -1 2 6 0 0 success v8.0.0-3544-g00617ff76 Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-53-generic x86_64 2021-05-24T22:53:36 CASA44 /home/casauser/Desktop/Repos/sdamghan 347368 6 2 10 12 2 8 10 4 4 16 clb auto 0 12 0 0 0.543757 -1.83465 -0.543757 nan 0.01 9.515E-06 6.506E-06 0.000866896 0.000551504 20 16 8 107788 107788 10441.3 652.579 0.02 0.00144256 0.000972468 21 4 13 13 358 237 0.81248 nan -2.64176 -0.81248 0 0 13748.8 859.301 0 0 0.000169618 0.000131886 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml multiclock_output_and_latch.v common 12.30 vpr 255.23 MiB 0.10 37032 -1 -1 1 0.05 -1 -1 34904 -1 -1 2 6 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 261360 6 1 13 14 2 8 9 4 4 16 clb auto 100.9 MiB 0.11 13 244.1 MiB 0.04 0.00 0.875884 -3.21653 -0.875884 0.545 0.47 0.000265884 0.000243239 0.00748601 0.00452291 20 15 7 107788 107788 10441.3 652.579 0.66 0.0136031 0.00885329 742 1670 -1 15 14 32 32 476 268 0 0 476 268 32 32 0 0 45 42 0 0 51 45 0 0 32 32 0 0 205 79 0 0 111 38 0 0 32 0 0 0 0 0 32 0 0 1.31811 0.545 -4.12048 -1.31811 0 0 13748.8 859.301 0.01 0.04 0.18 -1 -1 0.01 0.00736034 0.00605214 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 13.17 vpr 257.73 MiB 0.11 45924 -1 -1 1 0.05 -1 -1 34916 -1 -1 2 3 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 263920 3 1 23 24 2 8 6 4 4 16 clb auto 102.9 MiB 0.41 17 246.4 MiB 0.03 0.00 0.571 -8.10303 -0.571 0.557849 0.47 0.000537036 0.000469297 0.00334227 0.00240417 20 19 1 107788 107788 10441.3 652.579 0.66 0.0107944 0.00802791 742 1670 -1 16 1 6 6 65 37 0 0 65 37 6 6 0 0 8 6 0 0 8 8 0 0 6 6 0 0 16 4 0 0 21 7 0 0 6 0 0 0 0 0 6 0 0 0.571 0.557849 -8.27775 -0.571 0 0 13748.8 859.301 0.01 0.03 0.17 -1 -1 0.01 0.00471694 0.00381784 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 12.06 vpr 254.61 MiB 0.11 36040 -1 -1 1 0.01 -1 -1 32628 -1 -1 2 6 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 260720 6 2 10 12 2 8 10 4 4 16 clb auto 100.6 MiB 0.06 13 243.8 MiB 0.02 0.00 0.544641 -1.98049 -0.544641 nan 0.47 0.000492001 0.000225939 0.00246091 0.00127477 20 16 1 107788 107788 10441.3 652.579 0.64 0.00559049 0.00306652 742 1670 -1 15 2 7 7 97 57 0 0 97 57 7 7 0 0 12 9 0 0 12 12 0 0 7 7 0 0 35 12 0 0 24 10 0 0 7 0 0 0 0 0 7 0 0 0.640564 nan -2.29328 -0.640564 0 0 13748.8 859.301 0.01 0.02 0.18 -1 -1 0.01 0.00247934 0.00153705 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/once/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/once/config/golden_results.txt index 0cbcdc11e88..ac8b192b56d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/once/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/once/config/golden_results.txt @@ -1,4 +1,4 @@ -arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_mem32K_40nm.xml multiclock_output_and_latch.v common 7.91 vpr 615.62 MiB 0.02 5836 -1 -1 1 0.02 -1 -1 31584 -1 -1 2 6 0 0 success v8.0.0-6592-g77b21b20f-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-10-31T15:28:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/centroid_placement_final/vtr-verilog-to-routing/vtr_flow/tasks 504313 6 1 13 14 2 8 9 4 4 16 clb auto 448.6 MiB 0.08 13 599.3 MiB 0.02 0 0.876768 -3.21829 -0.876768 0.545 0.25 0.000366254 0.000187223 0.00288012 0.00179067 20 14 8 107788 107788 10441.3 652.579 0.25 0.00863599 0.00605197 11 10 26 26 268 149 1.07194 0.545 -3.60945 -1.07194 0 0 13748.8 859.301 0.01 0.02 0.00513272 0.00407596 -k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 8.39 vpr 622.46 MiB 0.02 6352 -1 -1 1 0.02 -1 -1 31536 -1 -1 2 3 0 0 success v8.0.0-6592-g77b21b20f-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-10-31T15:28:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/centroid_placement_final/vtr-verilog-to-routing/vtr_flow/tasks 509923 3 1 25 26 2 8 6 4 4 16 clb auto 455.0 MiB 0.59 16 606.2 MiB 0.02 0 0.571 -8.56916 -0.571 0.557849 0.25 0.000642726 0.000420617 0.00344204 0.00239531 20 13 1 107788 107788 10441.3 652.579 0.25 0.0113342 0.00860936 21 2 7 7 165 102 0.829178 0.557849 -9.03228 -0.829178 0 0 13748.8 859.301 0.01 0.03 0.00662939 0.00554672 -k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 7.96 vpr 615.12 MiB 0.01 5708 -1 -1 1 0 -1 -1 29744 -1 -1 2 6 0 0 success v8.0.0-6592-g77b21b20f-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-10-31T15:28:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/centroid_placement_final/vtr-verilog-to-routing/vtr_flow/tasks 503907 6 2 10 12 2 8 10 4 4 16 clb auto 448.3 MiB 0.04 12 599.1 MiB 0.01 0 0.544641 -1.83554 -0.544641 nan 0.25 0.000192898 0.00016899 0.00180465 0.000976844 20 18 8 107788 107788 10441.3 652.579 0.24 0.00631058 0.00424749 19 2 7 7 168 108 0.734392 nan -2.53783 -0.734392 0 0 13748.8 859.301 0.01 0.01 0.00215621 0.00141316 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml multiclock_output_and_latch.v common 12.22 vpr 254.93 MiB 0.10 37000 -1 -1 1 0.05 -1 -1 34808 -1 -1 2 6 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 261052 6 1 13 14 2 8 9 4 4 16 clb auto 100.7 MiB 0.11 13 244.1 MiB 0.04 0.00 0.875884 -3.21653 -0.875884 0.545 0.47 0.000263443 0.000240838 0.00748415 0.00450484 20 15 7 107788 107788 10441.3 652.579 0.66 0.0136082 0.00886525 742 1670 -1 15 14 32 32 476 268 0 0 476 268 32 32 0 0 45 42 0 0 51 45 0 0 32 32 0 0 205 79 0 0 111 38 0 0 32 0 0 0 0 0 32 0 0 1.31811 0.545 -4.12048 -1.31811 0 0 13748.8 859.301 0.01 0.04 0.18 -1 -1 0.01 0.00739705 0.00603502 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 14.79 vpr 261.44 MiB 0.12 46076 -1 -1 1 0.05 -1 -1 34892 -1 -1 2 3 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 267712 3 1 25 26 2 8 6 4 4 16 clb auto 106.3 MiB 1.00 17 250.0 MiB 0.04 0.00 0.571 -8.64803 -0.571 0.557849 0.53 0.000560438 0.000505834 0.00360459 0.00262507 20 19 1 107788 107788 10441.3 652.579 0.76 0.0119539 0.00893362 742 1670 -1 15 1 6 6 63 36 0 0 63 36 6 6 0 0 9 6 0 0 9 9 0 0 6 6 0 0 18 3 0 0 15 6 0 0 6 0 0 0 0 0 6 0 0 0.571 0.557849 -8.82275 -0.571 0 0 13748.8 859.301 0.01 0.03 0.17 -1 -1 0.01 0.00502268 0.00406987 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 12.05 vpr 254.23 MiB 0.11 35864 -1 -1 1 0.01 -1 -1 32648 -1 -1 2 6 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 260328 6 2 10 12 2 8 10 4 4 16 clb auto 100.4 MiB 0.06 12 243.6 MiB 0.03 0.00 0.544641 -1.83465 -0.544641 nan 0.47 0.000489919 0.000226814 0.00463432 0.00218307 20 21 1 107788 107788 10441.3 652.579 0.64 0.00773058 0.00396899 742 1670 -1 19 1 6 6 148 96 0 0 148 96 6 6 0 0 18 16 0 0 18 18 0 0 6 6 0 0 53 27 0 0 47 23 0 0 6 0 0 0 0 0 6 0 0 0.81248 nan -2.54321 -0.81248 0 0 13748.8 859.301 0.01 0.02 0.18 -1 -1 0.01 0.00224126 0.00124363 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/vanilla/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/vanilla/config/golden_results.txt index 6bd23b402c0..86123f6f8f1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/vanilla/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/vanilla/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time error odin_synth_time max_odin_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_time placed_wirelength_est place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_mem32K_40nm.xml multiclock_output_and_latch.v common 0.31 0.01 6784 1 0.02 -1 -1 35732 -1 -1 2 6 0 0 success v8.0.0-3544-g00617ff76 Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-53-generic x86_64 2021-05-24T22:53:36 CASA44 /home/casauser/Desktop/Repos/sdamghan 350952 6 1 13 14 2 8 9 4 4 16 clb auto 0 13 0 0 0.875884 -3.21829 -0.875884 0.545 0.01 9.095E-06 6.307E-06 0.00129288 0.000842011 20 13 2 107788 107788 10441.3 652.579 0.02 0.00191938 0.00132537 13 11 27 27 298 166 1.17974 0.545 -3.80732 -1.17974 0 0 13748.8 859.301 0 0 0.000353606 0.000288916 - k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.44 0.02 7184 1 0.02 -1 -1 35612 -1 -1 2 3 0 0 success v8.0.0-3544-g00617ff76 Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-53-generic x86_64 2021-05-24T22:53:36 CASA44 /home/casauser/Desktop/Repos/sdamghan 350112 3 1 23 24 2 8 6 4 4 16 clb auto 0.01 16 0 0 0.571 -8.02416 -0.571 0.557849 0.01 2.6001E-05 1.8594E-05 0.000265426 0.000230778 20 11 4 107788 107788 10441.3 652.579 0.02 0.00142645 0.00123292 14 2 7 7 87 53 0.639606 0.557849 -8.29417 -0.639606 0 0 13748.8 859.301 0 0 0.000632038 0.000584601 - k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.28 0.01 6560 1 0.01 -1 -1 33160 -1 -1 2 6 0 0 success v8.0.0-3544-g00617ff76 Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-53-generic x86_64 2021-05-24T22:53:36 CASA44 /home/casauser/Desktop/Repos/sdamghan 351176 6 2 10 12 2 8 10 4 4 16 clb auto 0 12 0 0 0.543757 -1.83465 -0.543757 nan 0.01 7.409E-06 4.867E-06 0.000791344 0.000475707 20 16 8 107788 107788 10441.3 652.579 0.02 0.00133053 0.000866155 21 4 13 13 358 237 0.81248 nan -2.64176 -0.81248 0 0 13748.8 859.301 0 0 0.000176087 0.000137856 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_mem32K_40nm.xml multiclock_output_and_latch.v common 12.42 vpr 255.39 MiB 0.11 37100 -1 -1 1 0.05 -1 -1 34836 -1 -1 2 6 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 261516 6 1 13 14 2 8 9 4 4 16 clb auto 100.9 MiB 0.11 13 244.2 MiB 0.04 0.00 0.875884 -3.21653 -0.875884 0.545 0.47 0.000271285 0.00024783 0.00755294 0.00457495 20 15 7 107788 107788 10441.3 652.579 0.66 0.0137643 0.00901687 742 1670 -1 15 14 32 32 476 268 0 0 476 268 32 32 0 0 45 42 0 0 51 45 0 0 32 32 0 0 205 79 0 0 111 38 0 0 32 0 0 0 0 0 32 0 0 1.31811 0.545 -4.12048 -1.31811 0 0 13748.8 859.301 0.01 0.04 0.18 -1 -1 0.01 0.00730106 0.00594924 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 13.23 vpr 258.31 MiB 0.12 45996 -1 -1 1 0.06 -1 -1 34908 -1 -1 2 3 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 264512 3 1 23 24 2 8 6 4 4 16 clb auto 103.2 MiB 0.41 17 246.6 MiB 0.03 0.00 0.571 -8.10303 -0.571 0.557849 0.47 0.00052053 0.00046898 0.00343969 0.00250359 20 19 1 107788 107788 10441.3 652.579 0.67 0.0108999 0.00814426 742 1670 -1 16 1 6 6 65 37 0 0 65 37 6 6 0 0 8 6 0 0 8 8 0 0 6 6 0 0 16 4 0 0 21 7 0 0 6 0 0 0 0 0 6 0 0 0.571 0.557849 -8.27775 -0.571 0 0 13748.8 859.301 0.01 0.03 0.17 -1 -1 0.01 0.00471607 0.00381108 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 12.08 vpr 254.57 MiB 0.11 35828 -1 -1 1 0.00 -1 -1 32584 -1 -1 2 6 0 0 success v8.0.0-7653-g7c8f300-dirty release VTR_ASSERT_LEVEL=3 sanitizers GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T14:13:39 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 260676 6 2 10 12 2 8 10 4 4 16 clb auto 100.7 MiB 0.06 13 243.8 MiB 0.02 0.00 0.544641 -1.98049 -0.544641 nan 0.47 0.000490217 0.000225774 0.00246486 0.00125809 20 16 1 107788 107788 10441.3 652.579 0.64 0.00562004 0.00308942 742 1670 -1 15 2 7 7 97 57 0 0 97 57 7 7 0 0 12 9 0 0 12 12 0 0 7 7 0 0 35 12 0 0 24 10 0 0 7 0 0 0 0 0 7 0 0 0.640564 nan -2.29328 -0.640564 0 0 13748.8 859.301 0.01 0.02 0.18 -1 -1 0.01 0.00259444 0.00157979 From 4e5873a50a1c613519d062d7824e2e5027bcdd86 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 21 Apr 2023 16:14:18 -0400 Subject: [PATCH 66/81] Revert "temp commit - just to double check noc tests" This reverts commit 490538a76d2c97da20428eedaf4c6879a962c918. --- vpr/src/place/simpleRL_move_generator.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 9a9084600ac..79d10f163fa 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -302,11 +302,6 @@ t_propose_action SoftmaxAgent::propose_action() { //Mark the q_table location that agent used to update its value after processing the move outcome last_action_ = (!propose_blk_type) ? move_type : move_type + (blk_type.index * num_available_moves_); - if(convert_agent_to_phys_blk_type(blk_type.index) == 7){ //temp change to see if NoC problem will go away - move_type = (int) e_move_type::UNIFORM; - last_action_ = move_type + (blk_type.index * num_available_moves_); - } - t_propose_action propose_action; propose_action.move_type = (e_move_type)move_type; propose_action.blk_type = blk_type; From 5170e92925266dc44942aa9ddc78966d20e014fd Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 10:30:32 -0400 Subject: [PATCH 67/81] update printing options to account for block types with longer names --- vpr/src/place/place.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 599fcb2b869..a31a71bcff3 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -3249,7 +3249,7 @@ static void print_placement_move_types_stats( rejected = move_type_stat.rejected_moves[agent_type * num_of_avail_moves + imove]; aborted = moves - (accepted + rejected); VTR_LOG( - "\t%.20s move with type %.17s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", + "\t%.20s move with type %.20s: %2.6f %% (acc=%2.2f %%, rej=%2.2f %%, aborted=%2.2f %%)\n", move_name.c_str(), itype.name, 100 * moves / total_moves, 100 * accepted / moves, 100 * rejected / moves, 100 * aborted / moves); From d563ffd8a32ac5a64b62f361868a0311a3ec779d Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 16:09:35 -0400 Subject: [PATCH 68/81] check if the choosen cluster is fixed before create_move function in router_propose_move --- vpr/src/place/noc_place_utils.cpp | 9 +++++++-- .../vpr_noc_clique_topology/config/config.txt | 2 +- .../vpr_noc_nearest_neighbor_topology/config/config.txt | 2 +- .../vpr_noc_star_topology/config/config.txt | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/vpr/src/place/noc_place_utils.cpp b/vpr/src/place/noc_place_utils.cpp index 17d88cda36f..efcdf3a29b4 100644 --- a/vpr/src/place/noc_place_utils.cpp +++ b/vpr/src/place/noc_place_utils.cpp @@ -515,16 +515,21 @@ e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, floa ClusterBlockId b_from = *router_cluster_block_to_swap_ref; - // now choose a compatible block to swap with - + auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); + //check if the block is movable + if(place_ctx.block_locs[b_from].is_fixed){ + return e_create_move::ABORT; + } + t_pl_loc from = place_ctx.block_locs[b_from].loc; auto cluster_from_type = cluster_ctx.clb_nlist.block_type(b_from); auto grid_from_type = g_vpr_ctx.device().grid[from.x][from.y].type; VTR_ASSERT(is_tile_compatible(grid_from_type, cluster_from_type)); + // now choose a compatible block to swap with t_pl_loc to; if (!find_to_loc_uniform(cluster_from_type, rlim, from, to, b_from)) { diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology/config/config.txt index 4195ab566d4..8e3fbece146 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_clique_topology/config/config.txt @@ -30,5 +30,5 @@ qor_parse_file=qor_noc_spec.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" --noc_swap_percentage 0 +script_params =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt index 779a4bff628..1d77d75c72d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_nearest_neighbor_topology/config/config.txt @@ -30,5 +30,5 @@ qor_parse_file=qor_noc_spec.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" --noc_swap_percentage 0 +script_params =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology/config/config.txt index 3408c3c4719..88d43dd7332 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test5/vpr_noc_star_topology/config/config.txt @@ -35,4 +35,4 @@ qor_parse_file=qor_noc_spec.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params_common =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" --noc_swap_percentage 0 \ No newline at end of file +script_params_common =-starting_stage vpr --noc on --noc_routing_algorithm xy_routing --device "EP4SE820" \ No newline at end of file From 35e39aa4d462250513cbb65e62a1b13efc73a108 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 16:59:10 -0400 Subject: [PATCH 69/81] golden result updated for strong testcases, changing seed solved most of them --- .../config/golden_results.txt | 18 ++++----- .../strong_cin_tie_off/config/config.txt | 2 +- .../strong_clock_aliases/config/config.txt | 2 +- .../strong_eblif_vpr/config/config.txt | 2 +- .../config/config.txt | 2 +- .../config/golden_results.txt | 8 ++-- .../config/config.txt | 2 +- .../config/golden_results.txt | 10 ++--- .../config/golden_results.txt | 40 +++++++++---------- 9 files changed, 43 insertions(+), 43 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_blocks_with_no_inputs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_blocks_with_no_inputs/config/golden_results.txt index 4602e73c6e5..3bcabf4c9be 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_blocks_with_no_inputs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_blocks_with_no_inputs/config/golden_results.txt @@ -1,9 +1,9 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_N10_mem32K_40nm.xml ch_intrinsics.v common 3.32 vpr 63.57 MiB -1 -1 0.23 22124 3 0.07 -1 -1 36392 -1 -1 69 99 1 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65092 99 130 343 473 1 230 299 12 12 144 clb auto 25.1 MiB 0.05 592 63.6 MiB 0.16 0.00 1.64429 -113.766 -1.64429 1.64429 0.26 0.000440804 0.000396822 0.0363121 0.032602 42 1253 12 5.66058e+06 4.26669e+06 330626. 2296.01 1.46 0.214071 0.195195 1081 56 674 909 69958 18408 1.93469 1.93469 -131.89 -1.93469 -0.435251 -0.221714 415849. 2887.84 0.12 0.16 0.063732 0.0596772 - k6_N10_mem32K_40nm.xml diffeq1.v common 9.54 vpr 66.79 MiB -1 -1 0.34 26968 15 0.34 -1 -1 37896 -1 -1 49 162 0 5 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 68392 162 96 993 934 1 713 312 16 16 256 mult_36 auto 28.7 MiB 0.19 5824 66.8 MiB 0.53 0.01 19.9533 -1677 -19.9533 19.9533 0.57 0.00155046 0.00139606 0.141954 0.128082 44 11808 35 1.21132e+07 4.62081e+06 665287. 2598.78 5.37 0.717697 0.658362 9456 25 3776 8119 2549621 620254 22.1509 22.1509 -1847.63 -22.1509 0 0 864808. 3378.16 0.23 0.51 0.104265 0.0973036 - k6_N10_mem32K_40nm.xml single_wire.v common 0.64 vpr 61.07 MiB -1 -1 0.07 20044 1 0.01 -1 -1 32912 -1 -1 0 1 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62532 1 1 1 2 0 1 2 3 3 9 -1 auto 22.4 MiB 0.00 2 61.1 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.01 8.583e-06 4.956e-06 5.0716e-05 2.9415e-05 2 1 1 53894 0 1165.58 129.509 0.01 0.000142688 8.7016e-05 1 1 1 1 17 8 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 5.9098e-05 3.9263e-05 - k6_N10_mem32K_40nm.xml single_ff.v common 0.58 vpr 60.93 MiB -1 -1 0.06 20332 1 0.00 -1 -1 33032 -1 -1 1 2 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62392 2 1 3 4 1 3 4 3 3 9 -1 auto 22.3 MiB 0.00 4 60.9 MiB 0.01 0.00 0.570641 -0.944653 -0.570641 0.570641 0.01 9.392e-06 5.952e-06 6.3613e-05 4.3771e-05 2 2 2 53894 53894 1165.58 129.509 0.01 0.000217441 0.000157766 2 2 3 3 69 44 0.577715 0.577715 -0.9588 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.000105599 7.8727e-05 - k6_N10_mem32K_40nm_i_or_o.xml ch_intrinsics.v common 6.89 vpr 63.74 MiB -1 -1 0.23 21912 3 0.06 -1 -1 36524 -1 -1 69 99 1 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 65272 99 130 343 473 1 230 299 19 19 361 o auto 25.2 MiB 0.06 871 63.7 MiB 0.16 0.00 1.85013 -119.902 -1.85013 1.85013 2.10 0.000404836 0.000357036 0.0378469 0.0338564 36 1342 12 1.79173e+07 4.26669e+06 833707. 2309.44 2.40 0.203377 0.185821 1248 13 613 864 88056 20383 2.13238 2.13238 -138.073 -2.13238 0 0 1.02328e+06 2834.56 0.30 0.04 0.0169511 0.0158875 - k6_N10_mem32K_40nm_i_or_o.xml diffeq1.v common 18.58 vpr 73.35 MiB -1 -1 0.29 26840 15 0.31 -1 -1 37808 -1 -1 49 162 0 5 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 75108 162 96 993 934 1 713 312 24 24 576 i auto 29.2 MiB 0.19 7026 73.3 MiB 0.43 0.01 21.0705 -1740.73 -21.0705 21.0705 3.95 0.00146073 0.001321 0.116129 0.105136 42 12895 28 3.08128e+07 4.62081e+06 1.54255e+06 2678.04 9.99 0.838199 0.776557 11278 21 4294 9108 3076519 648661 22.4984 22.4984 -1900.89 -22.4984 0 0 1.92788e+06 3347.02 0.52 0.50 0.0812305 0.076109 - k6_N10_mem32K_40nm_i_or_o.xml single_wire.v common 0.45 vpr 60.87 MiB -1 -1 0.06 19992 1 0.01 -1 -1 32776 -1 -1 0 1 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62328 1 1 1 2 0 1 2 4 4 16 i auto 22.2 MiB 0.00 3 60.9 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.00 5.996e-06 3.314e-06 3.7167e-05 2.1627e-05 4 2 1 215576 0 2092.17 130.760 0.01 0.000118648 7.4673e-05 2 1 1 1 18 8 0.229376 nan -0.229376 -0.229376 0 0 3281.68 205.105 0.00 0.00 4.647e-05 2.8761e-05 - k6_N10_mem32K_40nm_i_or_o.xml single_ff.v common 0.36 vpr 60.75 MiB -1 -1 0.06 20356 1 0.01 -1 -1 32812 -1 -1 1 2 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 62208 2 1 3 4 1 3 4 4 4 16 i auto 22.1 MiB 0.00 5 60.8 MiB 0.00 0.00 0.669261 -1.04327 -0.669261 0.669261 0.00 7.947e-06 4.792e-06 5.247e-05 3.5286e-05 6 3 1 215576 53894 3281.68 205.105 0.00 0.000152868 0.000105152 4 2 4 4 89 48 0.652118 0.652118 -1.05145 -0.652118 0 0 4601.64 287.602 0.00 0.00 8.9451e-05 6.5782e-05 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_N10_mem32K_40nm.xml ch_intrinsics.v common 2.58 vpr 54.46 MiB -1 -1 0.18 18404 3 0.06 -1 -1 32768 -1 -1 69 99 1 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55764 99 130 343 473 1 230 299 12 12 144 clb auto 15.6 MiB 0.05 549 54.5 MiB 0.16 0.00 1.50234 -115.736 -1.50234 1.50234 0.22 0.000352682 0.000313489 0.0299607 0.0266762 38 1144 17 5.66058e+06 4.26669e+06 306247. 2126.71 0.99 0.19216 0.17528 10492 58364 -1 977 11 593 793 49801 15607 0 0 49801 15607 793 685 0 0 2720 2548 0 0 3251 2722 0 0 3451 1957 0 0 18818 4205 0 0 20768 3490 0 0 793 0 0 200 322 186 2231 0 0 1.91556 1.91556 -133.023 -1.91556 -1.00753 -0.29768 388532. 2698.14 0.09 0.03 0.04 -1 -1 0.09 0.013453 0.012666 +k6_N10_mem32K_40nm.xml diffeq1.v common 9.30 vpr 57.83 MiB -1 -1 0.25 22800 15 0.28 -1 -1 34144 -1 -1 49 162 0 5 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59220 162 96 993 934 1 713 312 16 16 256 mult_36 auto 19.7 MiB 0.15 5746 57.8 MiB 0.45 0.01 20.3951 -1668.77 -20.3951 20.3951 0.46 0.000947149 0.000833483 0.0952888 0.0842086 48 10960 44 1.21132e+07 4.62081e+06 721839. 2819.68 5.65 0.60919 0.550741 21168 139178 -1 9404 24 4280 9297 2583405 664381 0 0 2583405 664381 9297 5531 0 0 101540 99578 0 0 106882 101857 0 0 38571 18904 0 0 1143445 220795 0 0 1183670 217716 0 0 9297 0 0 5449 14910 13326 92646 0 0 22.1699 22.1699 -1801.22 -22.1699 0 0 926152. 3617.78 0.21 0.44 0.09 -1 -1 0.21 0.0716511 0.0668162 +k6_N10_mem32K_40nm.xml single_wire.v common 0.52 vpr 50.72 MiB -1 -1 0.06 15616 1 0.00 -1 -1 29132 -1 -1 0 1 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 51936 1 1 1 2 0 1 2 3 3 9 -1 auto 11.7 MiB 0.00 2 50.7 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.00 4.145e-06 1.863e-06 3.2805e-05 1.9748e-05 2 1 1 53894 0 1165.58 129.509 0.00 9.0645e-05 5.4355e-05 254 297 -1 1 1 1 1 17 8 0 0 17 8 1 1 0 0 4 1 0 0 8 4 0 0 1 1 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0.211201 nan -0.211201 -0.211201 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 4.4451e-05 2.9069e-05 +k6_N10_mem32K_40nm.xml single_ff.v common 0.53 vpr 50.72 MiB -1 -1 0.05 16304 1 0.00 -1 -1 29220 -1 -1 1 2 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 51936 2 1 3 4 1 3 4 3 3 9 -1 auto 12.1 MiB 0.00 4 50.7 MiB 0.00 0.00 0.570641 -0.944653 -0.570641 0.570641 0.00 5.441e-06 2.911e-06 6.5253e-05 5.0063e-05 2 4 2 53894 53894 1165.58 129.509 0.00 0.000246213 0.000179198 254 297 -1 4 2 3 3 75 50 0 0 75 50 3 3 0 0 18 17 0 0 18 18 0 0 21 3 0 0 7 6 0 0 8 3 0 0 3 0 0 0 0 0 3 0 0 0.577715 0.577715 -1.12352 -0.577715 0 0 1165.58 129.509 0.00 0.00 0.00 -1 -1 0.00 7.6239e-05 5.7137e-05 +k6_N10_mem32K_40nm_i_or_o.xml ch_intrinsics.v common 4.65 vpr 54.40 MiB -1 -1 0.18 18588 3 0.06 -1 -1 32852 -1 -1 69 99 1 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55704 99 130 343 473 1 230 299 19 19 361 o auto 15.6 MiB 0.05 656 54.4 MiB 0.17 0.00 1.56502 -127.887 -1.56502 1.56502 1.47 0.000329783 0.000292439 0.0303049 0.0268464 36 1081 33 1.79173e+07 4.26669e+06 833707. 2309.44 1.10 0.125636 0.114063 24998 161561 -1 1010 10 604 865 61403 18613 0 0 61403 18613 865 636 0 0 3439 3111 0 0 5007 3439 0 0 3440 1950 0 0 22020 5256 0 0 26632 4221 0 0 865 0 0 261 448 494 3238 0 0 1.86352 1.86352 -140.953 -1.86352 -0.308417 -0.217955 1.02328e+06 2834.56 0.26 0.03 0.09 -1 -1 0.26 0.0127518 0.0120232 +k6_N10_mem32K_40nm_i_or_o.xml diffeq1.v common 14.10 vpr 64.05 MiB -1 -1 0.27 23088 15 0.28 -1 -1 34052 -1 -1 49 162 0 5 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65592 162 96 993 934 1 713 312 24 24 576 i auto 19.4 MiB 0.16 6810 64.1 MiB 0.40 0.01 21.0365 -1717.91 -21.0365 21.0365 2.44 0.000922333 0.000807313 0.0846212 0.074377 48 11296 30 3.08128e+07 4.62081e+06 1.73314e+06 3008.92 7.32 0.528591 0.477725 45726 346985 -1 10253 48 3591 7179 2410640 546998 0 0 2410640 546998 7179 4596 0 0 78686 76792 0 0 84765 78939 0 0 32042 17255 0 0 1102364 178740 0 0 1105604 190676 0 0 7179 0 0 3768 9681 9301 63545 0 0 22.573 22.573 -1845.72 -22.573 0 0 2.23250e+06 3875.87 0.54 0.47 0.20 -1 -1 0.54 0.114137 0.105243 +k6_N10_mem32K_40nm_i_or_o.xml single_wire.v common 0.53 vpr 50.77 MiB -1 -1 0.04 15896 1 0.01 -1 -1 29060 -1 -1 0 1 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 51988 1 1 1 2 0 1 2 4 4 16 i auto 11.8 MiB 0.00 3 50.8 MiB 0.00 0.00 0.205011 -0.205011 -0.205011 nan 0.00 5.183e-06 2.628e-06 3.447e-05 2.077e-05 4 2 1 215576 0 2092.17 130.760 0.01 9.8886e-05 6.272e-05 324 600 -1 2 1 1 1 18 8 0 0 18 8 1 1 0 0 4 1 0 0 8 4 0 0 1 1 0 0 2 1 0 0 2 0 0 0 1 0 0 0 0 0 1 0 0 0.229376 nan -0.229376 -0.229376 0 0 3281.68 205.105 0.00 0.00 0.00 -1 -1 0.00 4.0528e-05 2.5764e-05 +k6_N10_mem32K_40nm_i_or_o.xml single_ff.v common 0.53 vpr 50.80 MiB -1 -1 0.07 16172 1 0.01 -1 -1 29280 -1 -1 1 2 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 52020 2 1 3 4 1 3 4 4 4 16 i auto 12.4 MiB 0.00 5 50.8 MiB 0.00 0.00 0.669261 -1.04327 -0.669261 0.669261 0.00 6.502e-06 3.474e-06 5.1048e-05 3.5982e-05 6 3 1 215576 53894 3281.68 205.105 0.01 0.000150699 0.000106145 340 760 -1 4 2 4 4 89 48 0 0 89 48 4 4 0 0 14 12 0 0 18 14 0 0 22 8 0 0 16 8 0 0 15 2 0 0 4 0 0 0 0 0 4 0 0 0.652118 0.652118 -1.05145 -0.652118 0 0 4601.64 287.602 0.00 0.00 0.00 -1 -1 0.00 7.6869e-05 5.7853e-05 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/config.txt index 93d8f260815..ceb67a2a79a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_cin_tie_off/config/config.txt @@ -25,4 +25,4 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements_chain.txt # Script parameters -script_params=-adder_cin_global -min_hard_mult_size 10 +script_params=-adder_cin_global -min_hard_mult_size 10 --seed 3 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases/config/config.txt index 545b20e726d..2781f96f165 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases/config/config.txt @@ -24,7 +24,7 @@ qor_parse_file=qor_standard.txt # Pass requirements pass_requirements_file=pass_requirements.txt -script_params_common =-starting_stage vpr --absorb_buffer_luts on +script_params_common =-starting_stage vpr --absorb_buffer_luts on --seed 3 script_params_list_add = -sdc_file sdc/samples/clock_aliases/clk.sdc script_params_list_add = -sdc_file sdc/samples/clock_aliases/clk_assign.sdc script_params_list_add = -sdc_file sdc/samples/clock_aliases/counter_clk.sdc diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr/config/config.txt index 173b38d6e6f..255c0d21670 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_eblif_vpr/config/config.txt @@ -26,4 +26,4 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt #Script parameters -script_params=-starting_stage vpr -track_memory_usage +script_params=-starting_stage vpr -track_memory_usage --seed 2 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_nonuniform/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_nonuniform/config/config.txt index 9cf6b5d516f..065997068f8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_nonuniform/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_nonuniform/config/config.txt @@ -29,4 +29,4 @@ qor_parse_file=qor_standard.txt pass_requirements_file=pass_requirements.txt # Script parameters -script_params = --route_type global +script_params = --route_type global --seed 2 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_routing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_routing/config/golden_results.txt index 44f3fc3d003..535c314b124 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_routing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_global_routing/config/golden_results.txt @@ -1,4 +1,4 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - timing/k6_N10_mem32K_40nm.xml stereovision3.v common 1.46 vpr 62.11 MiB -1 -1 0.44 25572 5 0.13 -1 -1 35932 -1 -1 12 10 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63596 10 2 181 183 1 40 24 6 6 36 clb auto 23.6 MiB 0.03 156 62.1 MiB 0.01 0.00 1.83894 -74.8977 -1.83894 1.83894 0.01 0.000103129 8.0083e-05 0.00287861 0.00249411 6 118 20 646728 646728 -1 -1 0.10 0.0257241 0.0218737 106 17 160 308 13698 4799 1.83894 1.83894 -74.8977 -1.83894 0 0 -1 -1 0.00 0.02 0.00742225 0.00670281 - nonuniform_chan_width/k6_N10_mem32K_40nm_nonuniform.xml stereovision3.v common 1.36 vpr 62.00 MiB -1 -1 0.44 25720 5 0.13 -1 -1 35948 -1 -1 12 10 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63488 10 2 181 183 1 40 24 6 6 36 clb auto 23.4 MiB 0.03 157 62.0 MiB 0.01 0.00 1.83894 -74.8977 -1.83894 1.83894 0.01 0.000105074 8.193e-05 0.00233798 0.00206296 10 120 16 646728 646728 -1 -1 0.15 0.034301 0.0289071 111 16 181 329 14815 5269 1.83894 1.83894 -74.8977 -1.83894 0 0 -1 -1 0.00 0.02 0.00749261 0.00679881 - nonuniform_chan_width/k6_N10_mem32K_40nm_pulse.xml stereovision3.v common 1.31 vpr 61.96 MiB -1 -1 0.43 25408 5 0.12 -1 -1 35868 -1 -1 12 10 0 0 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 63444 10 2 181 183 1 40 24 6 6 36 clb auto 23.3 MiB 0.03 153 62.0 MiB 0.01 0.00 1.83894 -74.8977 -1.83894 1.83894 0.01 0.000103455 8.0382e-05 0.00271593 0.00234971 6 121 20 646728 646728 -1 -1 0.11 0.0295068 0.0249644 112 18 178 330 14305 4888 1.83894 1.83894 -74.8977 -1.83894 0 0 -1 -1 0.00 0.02 0.00782185 0.0070414 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +timing/k6_N10_mem32K_40nm.xml stereovision3.v common 1.25 vpr 52.67 MiB -1 -1 0.35 23016 5 0.11 -1 -1 32828 -1 -1 12 10 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53936 10 2 181 183 1 40 24 6 6 36 clb auto 14.1 MiB 0.03 152 52.7 MiB 0.01 0.00 1.83894 -74.8977 -1.83894 1.83894 0.00 7.8957e-05 5.8169e-05 0.00193971 0.00168061 6 114 17 646728 646728 -1 -1 0.07 0.0158992 0.0133697 1456 2040 -1 107 18 187 363 16090 5667 0 0 16090 5667 363 279 0 0 1816 363 0 0 3630 1816 0 0 2713 1623 0 0 4018 544 0 0 3550 1042 0 0 363 0 0 177 401 268 1921 0 0 1.83894 1.83894 -74.8977 -1.83894 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.00611121 0.00545987 +nonuniform_chan_width/k6_N10_mem32K_40nm_nonuniform.xml stereovision3.v common 1.30 vpr 52.59 MiB -1 -1 0.37 22912 5 0.10 -1 -1 33016 -1 -1 12 10 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53852 10 2 181 183 1 40 24 6 6 36 clb auto 14.0 MiB 0.03 173 52.6 MiB 0.01 0.00 1.83894 -74.8977 -1.83894 1.83894 0.00 7.9891e-05 5.9037e-05 0.00127805 0.00118698 8 141 21 646728 646728 -1 -1 0.09 0.0207869 0.0172898 1456 2040 -1 141 29 225 432 22947 8049 0 0 22947 8049 432 306 0 0 2180 432 0 0 4320 2180 0 0 3016 1940 0 0 6285 1640 0 0 6714 1551 0 0 432 0 0 212 633 266 2355 0 0 1.83894 1.83894 -74.8977 -1.83894 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0077112 0.00673112 +nonuniform_chan_width/k6_N10_mem32K_40nm_pulse.xml stereovision3.v common 1.26 vpr 52.59 MiB -1 -1 0.34 22876 5 0.11 -1 -1 32796 -1 -1 12 10 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53856 10 2 181 183 1 40 24 6 6 36 clb auto 14.0 MiB 0.03 147 52.6 MiB 0.01 0.00 1.83894 -74.8977 -1.83894 1.83894 0.00 7.8811e-05 5.7898e-05 0.00248099 0.00207189 10 100 16 646728 646728 -1 -1 0.09 0.0266821 0.0218872 1456 2040 -1 100 16 168 333 14392 4909 0 0 14392 4909 333 199 0 0 1573 333 0 0 3330 1573 0 0 2028 1300 0 0 3910 707 0 0 3218 797 0 0 333 0 0 185 335 289 1796 0 0 1.83894 1.83894 -74.8977 -1.83894 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.00580383 0.00521834 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/config.txt index 314ba34cc21..a5c0a32d380 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/config.txt @@ -24,7 +24,7 @@ qor_parse_file=qor_standard.txt # Pass requirements pass_requirements_file=pass_requirements.txt -script_params_common=-starting_stage vpr -track_memory_usage +script_params_common=-starting_stage vpr -track_memory_usage -seed 2 script_params_list_add=--place_delay_model delta --place_delta_delay_matrix_calculation_method astar script_params_list_add=--place_delay_model delta_override --place_delta_delay_matrix_calculation_method astar script_params_list_add=--place_delay_model delta --place_delta_delay_matrix_calculation_method dijkstra diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt index 5a83df39796..8ea2ab87109 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt @@ -1,5 +1,5 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 30.41 vpr 937.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 960076 10 10 168 178 1 62 30 11 8 88 io auto 914.4 MiB 0.54 362 937.6 MiB 0.04 0.00 6.36466 -69.0007 -6.36466 6.36466 2.16 0.000171636 0.000141407 0.00697347 0.00627985 20 944 26 0 0 100248. 1139.18 0.47 0.0508384 0.0452503 676 14 301 1085 104267 42354 6.94928 6.94928 -76.3954 -6.94928 0 0 125464. 1425.72 0.02 0.04 0.0156907 0.0147981 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 30.42 vpr 937.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 960056 10 10 168 178 1 62 30 11 8 88 io auto 914.4 MiB 0.54 343 937.6 MiB 0.04 0.00 6.4007 -69.1003 -6.4007 6.4007 2.19 0.000204316 0.000167846 0.00750724 0.00682679 22 746 17 0 0 110609. 1256.92 0.41 0.0453503 0.0405329 701 13 294 1183 107132 43375 6.82899 6.82899 -76.2234 -6.82899 0 0 134428. 1527.59 0.02 0.04 0.0158884 0.0149852 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 31.24 vpr 937.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 960308 10 10 168 178 1 62 30 11 8 88 io auto 914.6 MiB 0.55 339 937.8 MiB 0.06 0.00 6.41831 -68.7664 -6.41831 6.41831 2.77 0.000195584 0.000162283 0.00887919 0.00794391 18 889 49 0 0 88979.3 1011.13 0.60 0.0597047 0.0528785 712 16 365 1444 125807 52826 6.72886 6.72886 -75.8629 -6.72886 0 0 114778. 1304.29 0.02 0.07 0.0263486 0.0252567 - stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 31.22 vpr 937.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-6989-g4a9293e1e-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 11.3.0 on Linux-5.15.0-58-generic x86_64 2023-02-04T01:37:29 dev /home/dev/Desktop/CAS-Atlantic/vtr-verilog-to-routing 960184 10 10 168 178 1 62 30 11 8 88 io auto 914.6 MiB 0.53 339 937.7 MiB 0.06 0.00 6.41831 -68.8414 -6.41831 6.41831 2.74 0.000177106 0.000146286 0.00994015 0.00924853 18 889 49 0 0 88979.3 1011.13 0.55 0.0603132 0.0538362 712 16 365 1444 125807 52826 6.72886 6.72886 -75.8629 -6.72886 0 0 114778. 1304.29 0.02 0.05 0.0171723 0.0161395 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 22.09 vpr 967.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 990588 10 10 168 178 1 62 30 11 8 88 io auto 944.4 MiB 0.36 400 967.4 MiB 0.06 0.00 6.23109 -69.4028 -6.23109 6.23109 1.73 0.000125117 9.7649e-05 0.00513799 0.00457023 28 717 20 0 0 134428. 1527.59 0.83 0.054498 0.0467065 11590 29630 -1 680 15 250 1016 112270 40144 0 0 112270 40144 1016 951 0 0 2513 1716 0 0 3088 2514 0 0 24256 22912 0 0 41354 5449 0 0 40043 6602 0 0 1016 0 0 1330 1714 1977 12419 0 0 6.55428 6.55428 -73.5727 -6.55428 0 0 173354. 1969.93 0.03 0.05 0.06 -1 -1 0.03 0.0129234 0.012125 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 22.02 vpr 967.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 990688 10 10 168 178 1 62 30 11 8 88 io auto 944.4 MiB 0.36 358 967.5 MiB 0.06 0.00 6.36047 -68.6561 -6.36047 6.36047 1.75 0.000140811 0.000105328 0.00528603 0.00468716 30 677 12 0 0 144567. 1642.81 0.94 0.0553727 0.0474823 11730 32605 -1 551 10 214 844 90669 29543 0 0 90669 29543 844 799 0 0 1794 1100 0 0 2220 1794 0 0 18477 17311 0 0 34431 3438 0 0 32903 5101 0 0 844 0 0 907 1024 1731 9788 0 0 6.58673 6.58673 -72.6453 -6.58673 0 0 194014. 2204.70 0.03 0.05 0.06 -1 -1 0.03 0.0119797 0.0114025 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 23.13 vpr 967.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 990544 10 10 168 178 1 62 30 11 8 88 io auto 944.4 MiB 0.36 337 967.3 MiB 0.06 0.00 6.33071 -68.9568 -6.33071 6.33071 2.19 0.000132944 9.895e-05 0.00528385 0.00470496 20 756 39 0 0 100248. 1139.18 1.01 0.0568882 0.0487746 11180 23751 -1 678 14 362 1534 140287 57829 0 0 140287 57829 1534 1492 0 0 3453 2435 0 0 4415 3453 0 0 34273 30641 0 0 48084 10312 0 0 48528 9496 0 0 1534 0 0 1844 2572 3419 19097 0 0 6.64819 6.64819 -75.4843 -6.64819 0 0 125464. 1425.72 0.02 0.06 0.05 -1 -1 0.02 0.0127276 0.0119465 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 23.09 vpr 967.27 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 990484 10 10 168 178 1 62 30 11 8 88 io auto 944.2 MiB 0.35 400 967.3 MiB 0.06 0.00 6.43758 -70.503 -6.43758 6.43758 2.19 0.000124847 9.807e-05 0.00513447 0.00458131 20 906 20 0 0 100248. 1139.18 0.95 0.0570742 0.0446688 11180 23751 -1 723 13 290 1078 105150 42069 0 0 105150 42069 1078 1048 0 0 2545 1830 0 0 3207 2545 0 0 24658 22537 0 0 36984 6838 0 0 36678 7271 0 0 1078 0 0 1021 1632 2019 12222 0 0 6.86697 6.86697 -75.2952 -6.86697 0 0 125464. 1425.72 0.02 0.05 0.05 -1 -1 0.02 0.0124653 0.0117323 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt index 1e16c1aa5e5..309c04befae 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt @@ -1,21 +1,21 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.49 vpr 58.74 MiB -1 -1 -1 -1 0 0.00 -1 -1 32172 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60152 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.6 MiB 0.00 0 58.7 MiB 0.00 0.00 nan 0 0 nan 0.01 5.028e-06 2.978e-06 4.4148e-05 2.6217e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000110429 7.0189e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.9696e-05 4.4014e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.45 vpr 58.61 MiB -1 -1 -1 -1 0 0.01 -1 -1 32232 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60020 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.5 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 5.209e-06 3.154e-06 4.0797e-05 2.8488e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000111421 7.9176e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.5972e-05 4.1397e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.50 vpr 58.83 MiB -1 -1 -1 -1 0 0.01 -1 -1 32320 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60244 6 1 1 8 0 1 8 3 3 9 -1 auto 19.7 MiB 0.00 0 58.8 MiB 0.00 0.00 nan 0 0 nan 0.01 5.525e-06 3.366e-06 3.7737e-05 2.5329e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000104691 7.2474e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.4633e-05 4.0922e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.50 vpr 58.58 MiB -1 -1 -1 -1 0 0.01 -1 -1 32216 -1 -1 1 0 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59984 6 1 1 8 0 1 8 3 3 9 -1 auto 19.4 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 6.04e-06 3.649e-06 4.0076e-05 2.6534e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000108211 7.5055e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 6.0071e-05 4.46e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.53 vpr 58.64 MiB -1 -1 -1 -1 1 0.01 -1 -1 32292 -1 -1 1 2 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60044 2 1 3 4 0 3 4 3 3 9 -1 auto 19.5 MiB 0.00 6 58.6 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.735e-06 5.211e-06 5.5916e-05 4.0275e-05 12 5 1 3900 3900 2582.62 286.957 0.02 0.000406279 0.000295445 314 651 -1 5 18 36 36 767 524 0 0 767 524 36 36 0 0 149 149 0 0 199 175 0 0 36 36 0 0 113 21 0 0 234 107 0 0 36 0 0 0 0 0 36 0 0 0.592443 nan -0.592443 -0.592443 0 0 3970.02 441.113 0.00 0.00 0.00 -1 -1 0.00 0.000230822 0.000165829 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.63 vpr 58.69 MiB -1 -1 -1 -1 2 0.04 -1 -1 34128 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60100 5 1 7 8 0 7 7 3 3 9 -1 auto 19.5 MiB 0.00 14 58.7 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.1011e-05 6.789e-06 8.0004e-05 6.1862e-05 18 17 8 3900 3900 4264.82 473.869 0.03 0.00149389 0.00107187 346 735 -1 14 4 12 12 320 251 0 0 320 251 12 12 0 0 70 70 0 0 81 80 0 0 12 12 0 0 54 27 0 0 91 50 0 0 12 0 0 0 0 0 12 0 0 1.03782 nan -1.03782 -1.03782 0 0 5011.22 556.802 0.00 0.00 0.00 -1 -1 0.00 0.000190951 0.000158074 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.65 vpr 58.74 MiB -1 -1 -1 -1 2 0.07 -1 -1 34372 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60152 5 1 7 8 0 7 7 3 3 9 -1 auto 19.5 MiB 0.00 14 58.7 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.1299e-05 6.9e-06 7.9734e-05 6.1219e-05 16 26 17 3900 3900 3970.02 441.113 0.01 0.000464013 0.000354885 330 691 -1 25 9 27 27 973 789 0 0 973 789 27 27 0 0 179 179 0 0 284 280 0 0 27 27 0 0 188 126 0 0 268 150 0 0 27 0 0 0 0 0 27 0 0 1.58285 nan -1.58285 -1.58285 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000219865 0.000176192 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.43 vpr 58.88 MiB -1 -1 -1 -1 1 0.01 -1 -1 32496 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60296 3 1 5 6 1 4 5 3 3 9 -1 auto 19.7 MiB 0.00 6 58.9 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.01 1.117e-05 6.751e-06 7.0131e-05 5.176e-05 16 8 1 3900 3900 3970.02 441.113 0.02 0.000353587 0.000268191 330 691 -1 14 4 8 8 303 249 0 0 303 249 8 8 0 0 56 56 0 0 84 83 0 0 8 8 0 0 58 45 0 0 89 49 0 0 8 0 0 0 0 0 8 0 0 0.776991 0.776991 -1.16292 -0.776991 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000160575 0.000127124 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.66 vpr 58.67 MiB -1 -1 -1 -1 1 0.05 -1 -1 34764 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60080 4 1 4 6 0 4 6 3 3 9 -1 auto 19.5 MiB 0.00 8 58.7 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 9.163e-06 6.305e-06 6.3279e-05 4.6054e-05 16 11 1 3900 3900 3970.02 441.113 0.03 0.00110992 0.000778941 330 691 -1 14 16 33 33 1258 1025 0 0 1258 1025 33 33 0 0 219 219 0 0 397 396 0 0 33 33 0 0 213 169 0 0 363 175 0 0 33 0 0 0 0 0 33 0 0 0.959435 nan -0.959435 -0.959435 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000237248 0.000176198 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.64 vpr 58.83 MiB -1 -1 -1 -1 1 0.05 -1 -1 34452 -1 -1 1 4 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60244 4 4 8 12 0 8 9 3 3 9 -1 auto 19.6 MiB 0.00 17 58.8 MiB 0.00 0.00 0.461147 -1.8388 -0.461147 nan 0.01 1.5206e-05 1.0131e-05 0.000131359 0.000107994 20 43 15 3900 3900 4445.42 493.935 0.04 0.002683 0.00209774 354 763 -1 45 9 34 109 4430 3406 0 0 4430 3406 109 108 0 0 702 699 0 0 1202 1152 0 0 147 140 0 0 997 495 0 0 1273 812 0 0 109 0 0 75 130 180 764 0 0 1.10339 nan -3.31095 -1.10339 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000432919 0.000365875 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.90 vpr 58.87 MiB -1 -1 -1 -1 3 0.05 -1 -1 34868 -1 -1 3 6 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60280 6 6 28 34 0 28 15 5 5 25 clb auto 20.3 MiB 0.01 85 58.9 MiB 0.00 0.00 1.13809 -5.17443 -1.13809 nan 0.04 3.1379e-05 2.3316e-05 0.000715388 0.000590881 24 250 29 23400 11700 20975.0 838.999 0.14 0.00679403 0.00561013 1420 4462 -1 209 22 312 1254 72764 32181 0 0 72764 32181 1254 998 0 0 5724 5661 0 0 10979 7934 0 0 1663 1365 0 0 25640 7137 0 0 27504 9086 0 0 1254 0 0 942 2362 3422 14798 0 0 1.67956 nan -7.17912 -1.67956 0 0 27052.1 1082.08 0.01 0.03 0.01 -1 -1 0.01 0.00236783 0.00203636 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 1.38 vpr 59.22 MiB -1 -1 -1 -1 4 0.05 -1 -1 34696 -1 -1 5 7 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60640 7 8 39 47 0 39 20 5 5 25 clb auto 20.5 MiB 0.01 140 59.2 MiB 0.01 0.00 1.44727 -7.37047 -1.44727 nan 0.04 4.6542e-05 3.566e-05 0.000999887 0.000835008 28 440 32 23400 19500 25328.9 1013.15 0.57 0.0230039 0.0190075 1476 4870 -1 337 21 446 1763 102447 42880 0 0 102447 42880 1763 1271 0 0 7872 7774 0 0 16086 10593 0 0 2128 1781 0 0 38398 11681 0 0 36200 9780 0 0 1763 0 0 1317 5511 4414 24433 0 0 1.95499 nan -9.51805 -1.95499 0 0 29680.9 1187.23 0.01 0.03 0.01 -1 -1 0.01 0.00318564 0.00277883 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 1.31 vpr 58.95 MiB -1 -1 -1 -1 8 0.07 -1 -1 34724 -1 -1 7 8 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60360 8 8 51 59 0 51 23 6 6 36 clb auto 20.3 MiB 0.02 181 58.9 MiB 0.01 0.00 2.52719 -11.7505 -2.52719 nan 0.08 5.6457e-05 4.4459e-05 0.00144861 0.00120813 30 549 40 165600 27300 47960.3 1332.23 0.34 0.0132968 0.0111277 2708 10880 -1 439 17 415 1603 108179 43197 0 0 108179 43197 1603 1260 0 0 8154 7984 0 0 15282 11548 0 0 1991 1524 0 0 41349 10374 0 0 39800 10507 0 0 1603 0 0 1188 3751 3730 19776 0 0 3.08327 nan -16.4287 -3.08327 0 0 61410.5 1705.85 0.02 0.04 0.02 -1 -1 0.02 0.00352924 0.00312766 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 2.26 vpr 59.27 MiB -1 -1 -1 -1 7 0.09 -1 -1 35024 -1 -1 11 10 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60696 10 10 95 105 0 95 31 6 6 36 clb auto 20.7 MiB 0.02 415 59.3 MiB 0.01 0.00 2.50191 -17.529 -2.50191 nan 0.08 0.000101472 7.9062e-05 0.00215906 0.00185441 42 1012 33 165600 42900 62990.9 1749.75 1.25 0.0477255 0.0396321 3040 14182 -1 864 21 940 3844 276923 97259 0 0 276923 97259 3844 3089 0 0 18188 17856 0 0 34065 23794 0 0 4979 4035 0 0 114052 25508 0 0 101795 22977 0 0 3844 0 0 2904 12730 11397 58421 0 0 2.92458 nan -21.4183 -2.92458 0 0 81938.5 2276.07 0.02 0.07 0.02 -1 -1 0.02 0.00661187 0.00581693 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.70 vpr 59.14 MiB -1 -1 -1 -1 8 0.10 -1 -1 34936 -1 -1 11 11 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60556 11 11 94 105 0 94 33 6 6 36 clb auto 20.6 MiB 0.02 412 59.1 MiB 0.01 0.00 2.74146 -20.0164 -2.74146 nan 0.08 9.8729e-05 7.8083e-05 0.00217161 0.00186476 40 1012 28 165600 42900 61410.5 1705.85 0.62 0.0289434 0.0242465 2992 13730 -1 851 21 1039 4043 271520 96369 0 0 271520 96369 4043 3331 0 0 18219 17934 0 0 35878 23744 0 0 5441 4449 0 0 102307 22959 0 0 105632 23952 0 0 4043 0 0 3004 9770 10667 53416 0 0 3.38814 nan -25.0082 -3.38814 0 0 78756.9 2187.69 0.02 0.07 0.02 -1 -1 0.02 0.0066121 0.00583289 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.74 vpr 58.86 MiB -1 -1 -1 -1 1 0.06 -1 -1 33656 -1 -1 1 3 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60268 3 2 5 7 0 5 6 3 3 9 -1 auto 19.7 MiB 0.00 10 58.9 MiB 0.00 0.00 0.459217 -0.918433 -0.459217 nan 0.01 1.0374e-05 7.236e-06 8.1103e-05 6.2696e-05 14 30 14 3900 3900 2841.42 315.713 0.02 0.000510842 0.000394592 322 679 -1 19 5 13 24 655 507 0 0 655 507 24 23 0 0 124 123 0 0 185 183 0 0 34 31 0 0 112 42 0 0 176 105 0 0 24 0 0 11 1 11 69 0 0 0.958112 nan -1.5482 -0.958112 0 0 4264.82 473.869 0.00 0.00 0.00 -1 -1 0.00 0.000209086 0.000170203 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.72 vpr 58.52 MiB -1 -1 -1 -1 2 0.05 -1 -1 34732 -1 -1 1 5 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59928 5 3 9 12 0 9 9 3 3 9 -1 auto 19.4 MiB 0.00 18 58.5 MiB 0.00 0.00 0.72619 -1.9116 -0.72619 nan 0.01 2.2148e-05 1.4456e-05 0.000146857 0.000116571 16 40 11 3900 3900 3970.02 441.113 0.02 0.00102511 0.000819356 330 691 -1 39 10 43 77 2536 1966 0 0 2536 1966 77 64 0 0 409 405 0 0 713 662 0 0 82 71 0 0 566 341 0 0 689 423 0 0 77 0 0 34 35 41 255 0 0 1.22255 nan -3.15061 -1.22255 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000440645 0.000368694 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.77 vpr 58.70 MiB -1 -1 -1 -1 3 0.07 -1 -1 34448 -1 -1 1 7 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60108 7 4 13 17 0 13 12 3 3 9 -1 auto 19.5 MiB 0.00 26 58.7 MiB 0.00 0.00 0.995093 -3.17945 -0.995093 nan 0.01 1.5292e-05 1.1406e-05 0.000149696 0.000128387 20 49 15 3900 3900 4445.42 493.935 0.04 0.00311924 0.00246749 354 763 -1 43 10 51 94 3051 2352 0 0 3051 2352 94 83 0 0 484 469 0 0 762 694 0 0 111 98 0 0 751 457 0 0 849 551 0 0 94 0 0 43 45 42 310 0 0 1.28583 nan -4.33186 -1.28583 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000570299 0.000487672 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.71 vpr 58.78 MiB -1 -1 -1 -1 4 0.04 -1 -1 34472 -1 -1 1 9 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60192 9 5 17 22 0 17 15 3 3 9 -1 auto 19.5 MiB 0.00 34 58.8 MiB 0.00 0.00 1.26014 -4.70077 -1.26014 nan 0.01 2.116e-05 1.5432e-05 0.000219309 0.000188744 28 69 22 3900 3900 5935.82 659.535 0.03 0.00325443 0.00263405 394 1003 -1 45 19 77 148 4685 3220 0 0 4685 3220 148 120 0 0 771 758 0 0 1191 1038 0 0 171 150 0 0 939 434 0 0 1465 720 0 0 148 0 0 71 54 70 485 0 0 1.5529 nan -5.72555 -1.5529 0 0 6854.42 761.602 0.00 0.00 0.00 -1 -1 0.00 0.0010219 0.000867331 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.84 vpr 58.78 MiB -1 -1 -1 -1 4 0.05 -1 -1 34488 -1 -1 2 11 0 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:39:13 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60188 11 6 24 30 0 24 19 4 4 16 clb auto 20.3 MiB 0.01 64 58.8 MiB 0.00 0.00 1.27336 -6.16074 -1.27336 nan 0.02 3.461e-05 2.7172e-05 0.000354166 0.00030184 28 165 19 7800 7800 12557.4 784.840 0.06 0.00471169 0.00391057 812 2356 -1 155 20 212 472 19934 10736 0 0 19934 10736 472 410 0 0 2141 2109 0 0 3808 2878 0 0 582 468 0 0 6537 2381 0 0 6394 2490 0 0 472 0 0 260 223 360 2001 0 0 1.80913 nan -8.18884 -1.80913 0 0 14986.4 936.652 0.00 0.01 0.00 -1 -1 0.00 0.0015784 0.00135753 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.46 vpr 49.00 MiB -1 -1 -1 -1 0 0.00 -1 -1 29452 -1 -1 1 0 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50180 -1 1 1 2 0 1 2 3 3 9 -1 auto 10.3 MiB 0.00 0 49.0 MiB 0.00 0.00 nan 0 0 nan 0.00 4.578e-06 1.843e-06 3.3103e-05 1.902e-05 2 0 1 3900 3900 966.985 107.443 0.00 8.5007e-05 5.0763e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 3.5577e-05 2.2867e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.44 vpr 49.04 MiB -1 -1 -1 -1 0 0.01 -1 -1 29496 -1 -1 1 0 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50216 -1 1 1 2 0 1 2 3 3 9 -1 auto 10.4 MiB 0.00 0 49.0 MiB 0.00 0.00 nan 0 0 nan 0.00 4.356e-06 1.672e-06 2.9416e-05 1.5983e-05 2 0 1 3900 3900 966.985 107.443 0.00 8.0063e-05 4.7006e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.1902e-05 2.7478e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.41 vpr 49.05 MiB -1 -1 -1 -1 0 0.00 -1 -1 29560 -1 -1 1 0 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50232 6 1 1 8 0 1 8 3 3 9 -1 auto 10.3 MiB 0.00 0 49.1 MiB 0.00 0.00 nan 0 0 nan 0.00 4.593e-06 1.809e-06 3.0099e-05 1.6438e-05 2 0 1 3900 3900 966.985 107.443 0.00 7.6929e-05 4.5134e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.4812e-05 3.0424e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.40 vpr 49.12 MiB -1 -1 -1 -1 0 0.01 -1 -1 29380 -1 -1 1 0 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50304 6 1 1 8 0 1 8 3 3 9 -1 auto 10.4 MiB 0.00 0 49.1 MiB 0.00 0.00 nan 0 0 nan 0.00 4.325e-06 1.626e-06 2.9047e-05 1.5802e-05 2 0 1 3900 3900 966.985 107.443 0.00 7.7586e-05 4.5643e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 3.8519e-05 2.5655e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.52 vpr 49.00 MiB -1 -1 -1 -1 1 0.01 -1 -1 29544 -1 -1 1 2 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50172 2 1 3 4 0 3 4 3 3 9 -1 auto 10.3 MiB 0.00 6 49.0 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.00 6.298e-06 2.757e-06 4.1662e-05 2.6932e-05 12 5 1 3900 3900 2582.62 286.957 0.01 0.00013751 9.5098e-05 314 651 -1 5 18 36 36 767 524 0 0 767 524 36 36 0 0 149 149 0 0 199 175 0 0 36 36 0 0 113 21 0 0 234 107 0 0 36 0 0 0 0 0 36 0 0 0.592443 nan -0.592443 -0.592443 0 0 3970.02 441.113 0.00 0.01 0.00 -1 -1 0.00 0.000274525 0.000181649 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.54 vpr 49.03 MiB -1 -1 -1 -1 2 0.02 -1 -1 31188 -1 -1 1 5 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50208 5 1 7 8 0 7 7 3 3 9 -1 auto 10.3 MiB 0.00 14 49.0 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.00 7.37e-06 3.458e-06 6.1488e-05 4.4733e-05 18 17 8 3900 3900 4264.82 473.869 0.02 0.00063997 0.000423217 346 735 -1 14 4 12 12 320 251 0 0 320 251 12 12 0 0 70 70 0 0 81 80 0 0 12 12 0 0 54 27 0 0 91 50 0 0 12 0 0 0 0 0 12 0 0 1.03782 nan -1.03782 -1.03782 0 0 5011.22 556.802 0.00 0.01 0.00 -1 -1 0.00 0.000133173 0.000105866 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.57 vpr 49.12 MiB -1 -1 -1 -1 2 0.03 -1 -1 31404 -1 -1 1 5 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50304 5 1 7 8 0 7 7 3 3 9 -1 auto 10.3 MiB 0.00 14 49.1 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.00 7.318e-06 3.395e-06 6.2941e-05 4.5601e-05 16 26 17 3900 3900 3970.02 441.113 0.01 0.000459578 0.000333885 330 691 -1 25 9 27 27 973 789 0 0 973 789 27 27 0 0 179 179 0 0 284 280 0 0 27 27 0 0 188 126 0 0 268 150 0 0 27 0 0 0 0 0 27 0 0 1.58285 nan -1.58285 -1.58285 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000171382 0.000129432 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.44 vpr 49.03 MiB -1 -1 -1 -1 1 0.01 -1 -1 29496 -1 -1 1 3 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50208 3 1 5 6 1 4 5 3 3 9 -1 auto 10.3 MiB 0.00 6 49.0 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.00 7.17e-06 3.35e-06 5.4394e-05 3.7358e-05 16 8 1 3900 3900 3970.02 441.113 0.01 0.000169748 0.000122313 330 691 -1 14 4 8 8 303 249 0 0 303 249 8 8 0 0 56 56 0 0 84 83 0 0 8 8 0 0 58 45 0 0 89 49 0 0 8 0 0 0 0 0 8 0 0 0.776991 0.776991 -1.16292 -0.776991 0 0 4445.42 493.935 0.00 0.01 0.00 -1 -1 0.00 0.000155213 0.000116589 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.62 vpr 49.16 MiB -1 -1 -1 -1 1 0.04 -1 -1 31360 -1 -1 1 3 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50344 4 1 4 6 0 4 6 3 3 9 -1 auto 10.4 MiB 0.00 8 49.2 MiB 0.01 0.00 0.459217 -0.459217 -0.459217 nan 0.00 6.403e-06 3.635e-06 5.2545e-05 3.5597e-05 16 11 1 3900 3900 3970.02 441.113 0.05 0.000536147 0.000329463 330 691 -1 14 16 33 33 1258 1025 0 0 1258 1025 33 33 0 0 219 219 0 0 397 396 0 0 33 33 0 0 213 169 0 0 363 175 0 0 33 0 0 0 0 0 33 0 0 0.959435 nan -0.959435 -0.959435 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000158229 0.000102782 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.69 vpr 49.18 MiB -1 -1 -1 -1 1 0.05 -1 -1 31204 -1 -1 1 4 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50364 4 4 8 12 0 8 9 3 3 9 -1 auto 10.4 MiB 0.00 17 49.2 MiB 0.01 0.00 0.461147 -1.8388 -0.461147 nan 0.00 9.655e-06 5.368e-06 9.1128e-05 7.1277e-05 20 29 10 3900 3900 4445.42 493.935 0.08 0.00152487 0.00110783 354 763 -1 46 6 24 67 2263 1743 0 0 2263 1743 67 61 0 0 380 376 0 0 571 552 0 0 91 82 0 0 496 273 0 0 658 399 0 0 67 0 0 43 56 101 429 0 0 1.10339 nan -3.27084 -1.10339 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.00023557 0.000196066 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 1.06 vpr 49.11 MiB -1 -1 -1 -1 3 0.05 -1 -1 31884 -1 -1 3 6 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50288 6 6 28 34 0 28 15 5 5 25 clb auto 10.6 MiB 0.01 85 49.1 MiB 0.00 0.00 1.13809 -5.17443 -1.13809 nan 0.03 1.7757e-05 1.2133e-05 0.000436012 0.000349064 22 344 47 23400 11700 19999.4 799.975 0.36 0.011089 0.00872338 1356 4234 -1 261 20 318 1191 81579 38647 0 0 81579 38647 1191 1034 0 0 5885 5748 0 0 11693 8726 0 0 1626 1389 0 0 29584 10263 0 0 31600 11487 0 0 1191 0 0 873 2544 3291 14207 0 0 1.7409 nan -8.48728 -1.7409 0 0 25328.9 1013.15 0.00 0.02 0.00 -1 -1 0.00 0.00130763 0.00111796 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 1.04 vpr 49.38 MiB -1 -1 -1 -1 4 0.03 -1 -1 31596 -1 -1 5 7 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50564 7 8 39 47 0 39 20 5 5 25 clb auto 10.8 MiB 0.01 140 49.4 MiB 0.01 0.00 1.44727 -7.37047 -1.44727 nan 0.03 2.4921e-05 1.7678e-05 0.000605555 0.000492996 26 422 44 23400 19500 22221.8 888.871 0.37 0.0127758 0.0100506 1444 4608 -1 358 24 423 1785 100184 41444 0 0 100184 41444 1785 1218 0 0 7670 7578 0 0 16168 10250 0 0 2157 1657 0 0 37685 11072 0 0 34719 9669 0 0 1785 0 0 1362 5638 4343 24844 0 0 2.24659 nan -10.5943 -2.24659 0 0 28048.1 1121.92 0.01 0.02 0.00 -1 -1 0.01 0.00203147 0.0017334 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.98 vpr 49.45 MiB -1 -1 -1 -1 8 0.05 -1 -1 31684 -1 -1 7 8 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50636 8 8 51 59 0 51 23 6 6 36 clb auto 10.8 MiB 0.01 181 49.4 MiB 0.01 0.00 2.52719 -11.7697 -2.52719 nan 0.05 4.1303e-05 2.5696e-05 0.00117429 0.000941932 30 541 23 165600 27300 47960.3 1332.23 0.25 0.00931228 0.00767339 2708 10880 -1 481 17 490 1801 127106 51154 0 0 127106 51154 1801 1511 0 0 8807 8644 0 0 16256 11897 0 0 2348 1809 0 0 50154 13428 0 0 47740 13865 0 0 1801 0 0 1311 4125 4292 22163 0 0 3.12538 nan -15.762 -3.12538 0 0 61410.5 1705.85 0.01 0.03 0.01 -1 -1 0.01 0.00209658 0.00184963 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 1.38 vpr 49.73 MiB -1 -1 -1 -1 7 0.08 -1 -1 31972 -1 -1 11 10 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50924 10 10 95 105 0 95 31 6 6 36 clb auto 11.3 MiB 0.02 415 49.7 MiB 0.01 0.00 2.50191 -17.6238 -2.50191 nan 0.08 0.000105137 8.1451e-05 0.0021849 0.0018377 40 1108 46 165600 42900 61410.5 1705.85 0.51 0.0183474 0.0152034 2992 13730 -1 879 21 876 3623 250060 88042 0 0 250060 88042 3623 2848 0 0 16677 16475 0 0 30504 21776 0 0 4728 3873 0 0 101815 22121 0 0 92713 20949 0 0 3623 0 0 2747 11046 11647 54395 0 0 3.00198 nan -22.5565 -3.00198 0 0 78756.9 2187.69 0.02 0.05 0.01 -1 -1 0.02 0.00420827 0.00369911 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.23 vpr 49.77 MiB -1 -1 -1 -1 8 0.07 -1 -1 32668 -1 -1 11 11 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50968 11 11 94 105 0 94 33 6 6 36 clb auto 11.3 MiB 0.01 412 49.8 MiB 0.01 0.00 2.74146 -20.0164 -2.74146 nan 0.05 5.4359e-05 4.083e-05 0.00137323 0.00115999 38 994 33 165600 42900 55946.4 1554.07 0.35 0.0158178 0.013102 2940 12782 -1 857 20 900 3818 268810 96032 0 0 268810 96032 3818 3109 0 0 17131 16867 0 0 34234 22948 0 0 5098 4213 0 0 103551 23837 0 0 104978 25058 0 0 3818 0 0 2918 11555 11757 56290 0 0 3.46848 nan -26.2805 -3.46848 0 0 73011.6 2028.10 0.02 0.05 0.01 -1 -1 0.02 0.00415193 0.00365158 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.69 vpr 49.00 MiB -1 -1 -1 -1 1 0.04 -1 -1 30336 -1 -1 1 3 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50172 3 2 5 7 0 5 6 3 3 9 -1 auto 10.2 MiB 0.00 10 49.0 MiB 0.00 0.00 0.459217 -0.918433 -0.459217 nan 0.01 6.435e-06 3.72e-06 5.6144e-05 4.0302e-05 14 30 14 3900 3900 2841.42 315.713 0.03 0.000316814 0.000226049 322 679 -1 19 5 13 24 655 507 0 0 655 507 24 23 0 0 124 123 0 0 185 183 0 0 34 31 0 0 112 42 0 0 176 105 0 0 24 0 0 11 1 11 69 0 0 0.958112 nan -1.5482 -0.958112 0 0 4264.82 473.869 0.00 0.00 0.00 -1 -1 0.00 0.000193295 0.000154074 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.63 vpr 49.03 MiB -1 -1 -1 -1 2 0.04 -1 -1 31468 -1 -1 1 5 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50208 5 3 9 12 0 9 9 3 3 9 -1 auto 10.2 MiB 0.00 18 49.0 MiB 0.00 0.00 0.72619 -1.9116 -0.72619 nan 0.00 9.628e-06 5.171e-06 8.5249e-05 6.6532e-05 26 34 14 3900 3900 5185.22 576.135 0.09 0.00218189 0.00154932 386 977 -1 45 12 59 99 3925 3062 0 0 3925 3062 99 75 0 0 565 564 0 0 859 794 0 0 106 102 0 0 1144 754 0 0 1152 773 0 0 99 0 0 40 46 34 299 0 0 1.58803 nan -3.57614 -1.58803 0 0 6645.42 738.380 0.00 0.00 0.00 -1 -1 0.00 0.000286846 0.00022755 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.72 vpr 49.17 MiB -1 -1 -1 -1 3 0.05 -1 -1 31324 -1 -1 1 7 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50352 7 4 13 17 0 13 12 3 3 9 -1 auto 10.3 MiB 0.00 26 49.2 MiB 0.01 0.00 0.995093 -3.17945 -0.995093 nan 0.00 1.0051e-05 6.675e-06 0.000114859 9.522e-05 22 50 25 3900 3900 4723.42 524.824 0.13 0.00446139 0.0033836 362 917 -1 51 16 85 138 4742 3760 0 0 4742 3760 138 96 0 0 792 768 0 0 1168 1097 0 0 141 124 0 0 1157 739 0 0 1346 936 0 0 138 0 0 53 53 63 413 0 0 1.81741 nan -5.56075 -1.81741 0 0 5935.82 659.535 0.00 0.01 0.00 -1 -1 0.00 0.000521415 0.000422642 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.68 vpr 49.11 MiB -1 -1 -1 -1 4 0.02 -1 -1 31660 -1 -1 1 9 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50288 9 5 17 22 0 17 15 3 3 9 -1 auto 10.3 MiB 0.00 34 49.1 MiB 0.00 0.00 1.26014 -4.7027 -1.26014 nan 0.01 2.1106e-05 1.4309e-05 0.000214778 0.000180367 28 48 11 3900 3900 5935.82 659.535 0.09 0.00278234 0.00214881 394 1003 -1 49 17 80 154 4129 2599 0 0 4129 2599 154 136 0 0 630 619 0 0 1025 761 0 0 171 157 0 0 806 322 0 0 1343 604 0 0 154 0 0 74 19 69 464 0 0 1.5614 nan -5.82236 -1.5614 0 0 6854.42 761.602 0.00 0.01 0.00 -1 -1 0.00 0.000929195 0.000782717 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.64 vpr 49.20 MiB -1 -1 -1 -1 4 0.03 -1 -1 31696 -1 -1 2 11 0 0 success v8.0.0-7662-gd563ffd8a Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T16:35:56 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50380 11 6 24 30 0 24 19 4 4 16 clb auto 10.8 MiB 0.00 64 49.2 MiB 0.00 0.00 1.27336 -6.16074 -1.27336 nan 0.01 1.524e-05 9.994e-06 0.000230422 0.000192991 28 165 26 7800 7800 12557.4 784.840 0.07 0.00288003 0.00228571 812 2356 -1 149 19 227 495 22652 12424 0 0 22652 12424 495 441 0 0 2423 2401 0 0 4542 3439 0 0 601 529 0 0 7129 2579 0 0 7462 3035 0 0 495 0 0 268 214 345 2026 0 0 1.76713 nan -7.76249 -1.76713 0 0 14986.4 936.652 0.00 0.01 0.00 -1 -1 0.00 0.000944624 0.000802484 From 40e3ed3244bc22980043967a7114de3f9759d2d5 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 17:04:58 -0400 Subject: [PATCH 70/81] golden result updated for strong_odin testcases --- .../config/golden_results.txt | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt index cb165f7e94b..1877ba0de33 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt @@ -1,21 +1,21 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.56 vpr 58.45 MiB -1 -1 -1 -1 0 0.01 -1 -1 32152 -1 -1 1 0 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59848 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.4 MiB 0.00 0 58.4 MiB 0.00 0.00 nan 0 0 nan 0.01 5.622e-06 3.328e-06 4.5376e-05 3.1208e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000120033 8.4071e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 6.1556e-05 4.5553e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.50 vpr 58.56 MiB -1 -1 -1 -1 0 0.00 -1 -1 32228 -1 -1 1 0 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59968 -1 1 1 2 0 1 2 3 3 9 -1 auto 19.5 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 5.96e-06 3.691e-06 3.9067e-05 2.6584e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000111544 7.8417e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 6.2779e-05 4.6126e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.54 vpr 58.60 MiB -1 -1 -1 -1 0 0.00 -1 -1 32224 -1 -1 1 0 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60008 6 1 1 8 0 1 8 3 3 9 -1 auto 19.5 MiB 0.00 0 58.6 MiB 0.00 0.00 nan 0 0 nan 0.01 6.123e-06 3.654e-06 4.5082e-05 3.0968e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000123222 8.6919e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.5854e-05 4.1047e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.54 vpr 58.83 MiB -1 -1 -1 -1 0 0.01 -1 -1 32276 -1 -1 1 0 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60244 6 1 1 8 0 1 8 3 3 9 -1 auto 19.7 MiB 0.00 0 58.8 MiB 0.00 0.00 nan 0 0 nan 0.01 5.878e-06 3.516e-06 3.9925e-05 2.7002e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.000111602 7.7955e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 5.807e-05 4.3187e-05 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.46 vpr 58.45 MiB -1 -1 -1 -1 1 0.00 -1 -1 32344 -1 -1 1 2 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59852 2 1 3 4 0 3 4 3 3 9 -1 auto 19.4 MiB 0.00 6 58.4 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.414e-06 5.021e-06 5.4643e-05 3.9308e-05 12 5 1 3900 3900 2582.62 286.957 0.01 0.000176266 0.000133039 314 651 -1 5 18 36 36 767 524 0 0 767 524 36 36 0 0 149 149 0 0 199 175 0 0 36 36 0 0 113 21 0 0 234 107 0 0 36 0 0 0 0 0 36 0 0 0.592443 nan -0.592443 -0.592443 0 0 3970.02 441.113 0.00 0.00 0.00 -1 -1 0.00 0.000273621 0.000195863 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.72 vpr 58.53 MiB -1 -1 -1 -1 2 0.06 -1 -1 34120 -1 -1 1 5 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59932 5 1 7 8 0 7 7 3 3 9 -1 auto 19.4 MiB 0.00 14 58.5 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.6638e-05 1.0329e-05 9.6611e-05 7.3495e-05 18 17 8 3900 3900 4264.82 473.869 0.02 0.00110492 0.000819001 346 735 -1 14 4 12 12 320 251 0 0 320 251 12 12 0 0 70 70 0 0 81 80 0 0 12 12 0 0 54 27 0 0 91 50 0 0 12 0 0 0 0 0 12 0 0 1.03782 nan -1.03782 -1.03782 0 0 5011.22 556.802 0.00 0.00 0.00 -1 -1 0.00 0.000191686 0.00015815 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.70 vpr 58.50 MiB -1 -1 -1 -1 2 0.07 -1 -1 34424 -1 -1 1 5 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 59900 5 1 7 8 0 7 7 3 3 9 -1 auto 19.4 MiB 0.00 14 58.5 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 1.0314e-05 6.471e-06 7.2386e-05 5.6199e-05 16 26 17 3900 3900 3970.02 441.113 0.01 0.000425601 0.000326398 330 691 -1 25 9 27 27 973 789 0 0 973 789 27 27 0 0 179 179 0 0 284 280 0 0 27 27 0 0 188 126 0 0 268 150 0 0 27 0 0 0 0 0 27 0 0 1.58285 nan -1.58285 -1.58285 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000239846 0.000191629 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.45 vpr 58.86 MiB -1 -1 -1 -1 1 0.01 -1 -1 32524 -1 -1 1 3 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60276 3 1 5 6 1 4 5 3 3 9 -1 auto 19.7 MiB 0.00 6 58.9 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.01 1.0548e-05 6.193e-06 6.8482e-05 5.0309e-05 16 8 1 3900 3900 3970.02 441.113 0.01 0.000250569 0.000193279 330 691 -1 14 4 8 8 303 249 0 0 303 249 8 8 0 0 56 56 0 0 84 83 0 0 8 8 0 0 58 45 0 0 89 49 0 0 8 0 0 0 0 0 8 0 0 0.776991 0.776991 -1.16292 -0.776991 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000159369 0.000125563 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.59 vpr 58.76 MiB -1 -1 -1 -1 1 0.04 -1 -1 34648 -1 -1 1 3 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60168 4 1 4 6 0 4 6 3 3 9 -1 auto 19.6 MiB 0.00 8 58.8 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.01 8.423e-06 5.796e-06 6.2863e-05 4.6387e-05 16 11 1 3900 3900 3970.02 441.113 0.01 0.000705248 0.000494487 330 691 -1 14 16 33 33 1258 1025 0 0 1258 1025 33 33 0 0 219 219 0 0 397 396 0 0 33 33 0 0 213 169 0 0 363 175 0 0 33 0 0 0 0 0 33 0 0 0.959435 nan -0.959435 -0.959435 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000251865 0.000185503 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.69 vpr 58.69 MiB -1 -1 -1 -1 1 0.05 -1 -1 34400 -1 -1 1 4 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60096 4 4 8 12 0 8 9 3 3 9 -1 auto 19.5 MiB 0.00 17 58.7 MiB 0.00 0.00 0.461147 -1.8388 -0.461147 nan 0.01 1.5485e-05 1.0423e-05 0.000129146 0.00010589 20 43 15 3900 3900 4445.42 493.935 0.02 0.0018938 0.00148487 354 763 -1 45 9 34 109 4430 3406 0 0 4430 3406 109 108 0 0 702 699 0 0 1202 1152 0 0 147 140 0 0 997 495 0 0 1273 812 0 0 109 0 0 75 130 180 764 0 0 1.10339 nan -3.31095 -1.10339 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000432625 0.000365595 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.98 vpr 59.00 MiB -1 -1 -1 -1 3 0.05 -1 -1 34872 -1 -1 3 6 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60420 6 6 28 34 0 28 15 5 5 25 clb auto 20.4 MiB 0.01 85 59.0 MiB 0.00 0.00 1.13809 -5.17443 -1.13809 nan 0.04 3.1713e-05 2.3709e-05 0.000726715 0.000602491 24 250 29 23400 11700 20975.0 838.999 0.14 0.00695428 0.00574382 1420 4462 -1 209 22 312 1254 72764 32181 0 0 72764 32181 1254 998 0 0 5724 5661 0 0 10979 7934 0 0 1663 1365 0 0 25640 7137 0 0 27504 9086 0 0 1254 0 0 942 2362 3422 14798 0 0 1.67956 nan -7.17912 -1.67956 0 0 27052.1 1082.08 0.01 0.03 0.01 -1 -1 0.01 0.0023645 0.00204062 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 1.03 vpr 59.22 MiB -1 -1 -1 -1 4 0.07 -1 -1 34692 -1 -1 5 7 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60640 7 8 39 47 0 39 20 5 5 25 clb auto 20.5 MiB 0.01 140 59.2 MiB 0.01 0.00 1.44727 -7.37047 -1.44727 nan 0.04 4.5272e-05 3.4556e-05 0.000998962 0.000833953 28 440 32 23400 19500 25328.9 1013.15 0.20 0.00984764 0.0082002 1476 4870 -1 337 21 446 1763 102447 42880 0 0 102447 42880 1763 1271 0 0 7872 7774 0 0 16086 10593 0 0 2128 1781 0 0 38398 11681 0 0 36200 9780 0 0 1763 0 0 1317 5511 4414 24433 0 0 1.95499 nan -9.51805 -1.95499 0 0 29680.9 1187.23 0.01 0.03 0.01 -1 -1 0.01 0.00321658 0.00281366 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 1.33 vpr 58.95 MiB -1 -1 -1 -1 8 0.05 -1 -1 34740 -1 -1 7 8 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60364 8 8 51 59 0 51 23 6 6 36 clb auto 20.3 MiB 0.02 181 58.9 MiB 0.01 0.00 2.52719 -11.7505 -2.52719 nan 0.09 0.000100059 8.0085e-05 0.00238541 0.00199648 30 549 40 165600 27300 47960.3 1332.23 0.34 0.0143309 0.0119825 2708 10880 -1 439 17 415 1603 108179 43197 0 0 108179 43197 1603 1260 0 0 8154 7984 0 0 15282 11548 0 0 1991 1524 0 0 41349 10374 0 0 39800 10507 0 0 1603 0 0 1188 3751 3730 19776 0 0 3.08327 nan -16.4287 -3.08327 0 0 61410.5 1705.85 0.02 0.04 0.02 -1 -1 0.02 0.00358083 0.00317154 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 1.87 vpr 59.40 MiB -1 -1 -1 -1 7 0.10 -1 -1 34932 -1 -1 11 10 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60828 10 10 95 105 0 95 31 6 6 36 clb auto 20.8 MiB 0.02 415 59.4 MiB 0.01 0.00 2.50191 -17.529 -2.50191 nan 0.08 0.000103954 8.1363e-05 0.00219719 0.00189049 42 1012 33 165600 42900 62990.9 1749.75 0.75 0.0324456 0.0272182 3040 14182 -1 864 21 940 3844 276923 97259 0 0 276923 97259 3844 3089 0 0 18188 17856 0 0 34065 23794 0 0 4979 4035 0 0 114052 25508 0 0 101795 22977 0 0 3844 0 0 2904 12730 11397 58421 0 0 2.92458 nan -21.4183 -2.92458 0 0 81938.5 2276.07 0.03 0.09 0.02 -1 -1 0.03 0.0078567 0.00689681 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.81 vpr 59.38 MiB -1 -1 -1 -1 8 0.12 -1 -1 34980 -1 -1 11 11 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60808 11 11 94 105 0 94 33 6 6 36 clb auto 20.8 MiB 0.02 412 59.4 MiB 0.01 0.00 2.74146 -20.0164 -2.74146 nan 0.08 0.000104348 8.1023e-05 0.0022853 0.0019557 40 1012 28 165600 42900 61410.5 1705.85 0.64 0.0306039 0.025714 2992 13730 -1 851 21 1039 4043 271520 96369 0 0 271520 96369 4043 3331 0 0 18219 17934 0 0 35878 23744 0 0 5441 4449 0 0 102307 22959 0 0 105632 23952 0 0 4043 0 0 3004 9770 10667 53416 0 0 3.38814 nan -25.0082 -3.38814 0 0 78756.9 2187.69 0.03 0.07 0.02 -1 -1 0.03 0.00678174 0.00598285 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.69 vpr 58.80 MiB -1 -1 -1 -1 1 0.05 -1 -1 33624 -1 -1 1 3 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60212 3 2 5 7 0 5 6 3 3 9 -1 auto 19.6 MiB 0.00 10 58.8 MiB 0.00 0.00 0.459217 -0.918433 -0.459217 nan 0.01 1.062e-05 7.34e-06 8.3038e-05 6.4979e-05 14 30 14 3900 3900 2841.42 315.713 0.01 0.000473547 0.000367979 322 679 -1 19 5 13 24 655 507 0 0 655 507 24 23 0 0 124 123 0 0 185 183 0 0 34 31 0 0 112 42 0 0 176 105 0 0 24 0 0 11 1 11 69 0 0 0.958112 nan -1.5482 -0.958112 0 0 4264.82 473.869 0.00 0.00 0.00 -1 -1 0.00 0.000209883 0.000170704 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.68 vpr 58.90 MiB -1 -1 -1 -1 2 0.05 -1 -1 34744 -1 -1 1 5 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60316 5 3 9 12 0 9 9 3 3 9 -1 auto 19.7 MiB 0.00 18 58.9 MiB 0.00 0.00 0.72619 -1.9116 -0.72619 nan 0.01 1.5553e-05 1.01e-05 0.000127932 0.000103278 16 40 11 3900 3900 3970.02 441.113 0.01 0.000653624 0.000531515 330 691 -1 39 10 43 77 2536 1966 0 0 2536 1966 77 64 0 0 409 405 0 0 713 662 0 0 82 71 0 0 566 341 0 0 689 423 0 0 77 0 0 34 35 41 255 0 0 1.22255 nan -3.15061 -1.22255 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000424281 0.000354693 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.70 vpr 58.70 MiB -1 -1 -1 -1 3 0.04 -1 -1 34512 -1 -1 1 7 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60112 7 4 13 17 0 13 12 3 3 9 -1 auto 19.5 MiB 0.00 26 58.7 MiB 0.00 0.00 0.995093 -3.17945 -0.995093 nan 0.01 1.7119e-05 1.2573e-05 0.000163789 0.000139165 20 49 15 3900 3900 4445.42 493.935 0.03 0.00234931 0.00187501 354 763 -1 43 10 51 94 3051 2352 0 0 3051 2352 94 83 0 0 484 469 0 0 762 694 0 0 111 98 0 0 751 457 0 0 849 551 0 0 94 0 0 43 45 42 310 0 0 1.28583 nan -4.33186 -1.28583 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000592175 0.000507354 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.72 vpr 58.70 MiB -1 -1 -1 -1 4 0.06 -1 -1 34520 -1 -1 1 9 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60104 9 5 17 22 0 17 15 3 3 9 -1 auto 19.5 MiB 0.00 34 58.7 MiB 0.00 0.00 1.26014 -4.70077 -1.26014 nan 0.01 2.1446e-05 1.5739e-05 0.000227348 0.000191779 28 69 22 3900 3900 5935.82 659.535 0.03 0.00355682 0.00288173 394 1003 -1 45 19 77 148 4685 3220 0 0 4685 3220 148 120 0 0 771 758 0 0 1191 1038 0 0 171 150 0 0 939 434 0 0 1465 720 0 0 148 0 0 71 54 70 485 0 0 1.5529 nan -5.72555 -1.5529 0 0 6854.42 761.602 0.00 0.00 0.00 -1 -1 0.00 0.000998947 0.000845945 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.82 vpr 59.01 MiB -1 -1 -1 -1 4 0.05 -1 -1 34512 -1 -1 2 11 0 0 success v8.0.0-7652-gea38ef7-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-21T13:35:55 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 60424 11 6 24 30 0 24 19 4 4 16 clb auto 20.5 MiB 0.01 64 59.0 MiB 0.00 0.00 1.27336 -6.16074 -1.27336 nan 0.02 3.3735e-05 2.6524e-05 0.000402897 0.000345448 28 165 19 7800 7800 12557.4 784.840 0.06 0.00487552 0.00403515 812 2356 -1 155 20 212 472 19934 10736 0 0 19934 10736 472 410 0 0 2141 2109 0 0 3808 2878 0 0 582 468 0 0 6537 2381 0 0 6394 2490 0 0 472 0 0 260 223 360 2001 0 0 1.80913 nan -8.18884 -1.80913 0 0 14986.4 936.652 0.00 0.01 0.00 -1 -1 0.00 0.00159108 0.00136506 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.43 vpr 48.98 MiB -1 -1 -1 -1 0 0.00 -1 -1 29452 -1 -1 1 0 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50156 -1 1 1 2 0 1 2 3 3 9 -1 auto 10.4 MiB 0.00 0 49.0 MiB 0.00 0.00 nan 0 0 nan 0.01 1.2917e-05 5.161e-06 7.9169e-05 4.2572e-05 2 0 1 3900 3900 966.985 107.443 0.01 0.000160509 9.4136e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.2764e-05 2.8423e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.42 vpr 48.92 MiB -1 -1 -1 -1 0 0.00 -1 -1 29564 -1 -1 1 0 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50092 -1 1 1 2 0 1 2 3 3 9 -1 auto 10.2 MiB 0.00 0 48.9 MiB 0.00 0.00 nan 0 0 nan 0.00 4.47e-06 1.803e-06 3.2499e-05 1.7959e-05 2 0 1 3900 3900 966.985 107.443 0.00 8.1609e-05 4.8161e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.2141e-05 2.8064e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.40 vpr 48.93 MiB -1 -1 -1 -1 0 0.00 -1 -1 29380 -1 -1 1 0 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50108 6 1 1 8 0 1 8 3 3 9 -1 auto 10.2 MiB 0.00 0 48.9 MiB 0.00 0.00 nan 0 0 nan 0.01 7.096e-06 2.773e-06 4.4319e-05 2.4741e-05 2 0 1 3900 3900 966.985 107.443 0.00 0.0001044 6.2097e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.1462e-05 2.7821e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.43 vpr 48.93 MiB -1 -1 -1 -1 0 0.01 -1 -1 29344 -1 -1 1 0 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50108 6 1 1 8 0 1 8 3 3 9 -1 auto 10.3 MiB 0.00 0 48.9 MiB 0.00 0.00 nan 0 0 nan 0.00 4.652e-06 1.835e-06 3.0794e-05 1.7032e-05 2 0 1 3900 3900 966.985 107.443 0.00 8.1801e-05 4.8476e-05 258 293 -1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 nan nan 0 0 0 0 966.985 107.443 0.00 0.00 0.00 -1 -1 0.00 4.5683e-05 3.1497e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.62 vpr 48.21 MiB -1 -1 -1 -1 1 0.01 -1 -1 29180 -1 -1 1 2 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49364 2 1 3 4 0 3 4 3 3 9 -1 auto 9.0 MiB 0.00 6 48.2 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.00 6.066e-06 2.654e-06 4.5641e-05 3.0996e-05 12 5 1 3900 3900 2582.62 286.957 0.01 0.000204955 0.00015008 314 651 -1 5 18 36 36 767 524 0 0 767 524 36 36 0 0 149 149 0 0 199 175 0 0 36 36 0 0 113 21 0 0 234 107 0 0 36 0 0 0 0 0 36 0 0 0.592443 nan -0.592443 -0.592443 0 0 3970.02 441.113 0.00 0.03 0.00 -1 -1 0.00 0.000218033 0.000137579 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.74 vpr 48.06 MiB -1 -1 -1 -1 2 0.04 -1 -1 30944 -1 -1 1 5 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49212 5 1 7 8 0 7 7 3 3 9 -1 auto 9.4 MiB 0.00 14 48.1 MiB 0.00 0.00 0.72619 -0.72619 -0.72619 nan 0.01 9.256e-06 4.723e-06 5.9553e-05 4.2394e-05 18 17 8 3900 3900 4264.82 473.869 0.13 0.00154477 0.00102731 346 735 -1 14 4 12 12 320 251 0 0 320 251 12 12 0 0 70 70 0 0 81 80 0 0 12 12 0 0 54 27 0 0 91 50 0 0 12 0 0 0 0 0 12 0 0 1.03782 nan -1.03782 -1.03782 0 0 5011.22 556.802 0.00 0.00 0.00 -1 -1 0.00 0.00012577 9.9285e-05 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.72 vpr 48.20 MiB -1 -1 -1 -1 2 0.02 -1 -1 31048 -1 -1 1 5 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49356 5 1 7 8 0 7 7 3 3 9 -1 auto 9.0 MiB 0.00 14 48.2 MiB 0.01 0.00 0.72619 -0.72619 -0.72619 nan 0.01 7.602e-06 3.737e-06 7.0961e-05 5.4333e-05 16 26 17 3900 3900 3970.02 441.113 0.05 0.000478128 0.000351364 330 691 -1 25 9 27 27 973 789 0 0 973 789 27 27 0 0 179 179 0 0 284 280 0 0 27 27 0 0 188 126 0 0 268 150 0 0 27 0 0 0 0 0 27 0 0 1.58285 nan -1.58285 -1.58285 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000153704 0.000113038 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.58 vpr 48.15 MiB -1 -1 -1 -1 1 0.01 -1 -1 29272 -1 -1 1 3 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49308 3 1 5 6 1 4 5 3 3 9 -1 auto 9.6 MiB 0.00 6 48.2 MiB 0.00 0.00 0.282563 -0.551847 -0.282563 0.282563 0.00 7.168e-06 3.234e-06 5.8959e-05 4.095e-05 16 8 1 3900 3900 3970.02 441.113 0.01 0.000189562 0.000132958 330 691 -1 14 4 8 8 303 249 0 0 303 249 8 8 0 0 56 56 0 0 84 83 0 0 8 8 0 0 58 45 0 0 89 49 0 0 8 0 0 0 0 0 8 0 0 0.776991 0.776991 -1.16292 -0.776991 0 0 4445.42 493.935 0.00 0.01 0.00 -1 -1 0.00 0.000135506 0.00010201 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.74 vpr 48.20 MiB -1 -1 -1 -1 1 0.05 -1 -1 31012 -1 -1 1 3 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49356 4 1 4 6 0 4 6 3 3 9 -1 auto 9.0 MiB 0.00 8 48.2 MiB 0.00 0.00 0.459217 -0.459217 -0.459217 nan 0.00 5.665e-06 3.123e-06 4.3216e-05 2.8555e-05 16 11 1 3900 3900 3970.02 441.113 0.11 0.000942863 0.000581896 330 691 -1 14 16 33 33 1258 1025 0 0 1258 1025 33 33 0 0 219 219 0 0 397 396 0 0 33 33 0 0 213 169 0 0 363 175 0 0 33 0 0 0 0 0 33 0 0 0.959435 nan -0.959435 -0.959435 0 0 4445.42 493.935 0.00 0.00 0.00 -1 -1 0.00 0.000158983 0.000104809 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.84 vpr 48.28 MiB -1 -1 -1 -1 1 0.03 -1 -1 30812 -1 -1 1 4 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49440 4 4 8 12 0 8 9 3 3 9 -1 auto 9.6 MiB 0.00 17 48.3 MiB 0.01 0.00 0.461147 -1.8388 -0.461147 nan 0.01 9.93e-06 5.504e-06 9.3359e-05 7.3598e-05 20 29 10 3900 3900 4445.42 493.935 0.14 0.00238587 0.00171638 354 763 -1 46 6 24 67 2263 1743 0 0 2263 1743 67 61 0 0 380 376 0 0 571 552 0 0 91 82 0 0 496 273 0 0 658 399 0 0 67 0 0 43 56 101 429 0 0 1.10339 nan -3.27084 -1.10339 0 0 5185.22 576.135 0.00 0.00 0.00 -1 -1 0.00 0.000363255 0.000302446 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 1.13 vpr 48.36 MiB -1 -1 -1 -1 3 0.05 -1 -1 31504 -1 -1 3 6 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49520 6 6 28 34 0 28 15 5 5 25 clb auto 9.9 MiB 0.01 85 48.4 MiB 0.02 0.00 1.13809 -5.17443 -1.13809 nan 0.03 3.0698e-05 2.2529e-05 0.000656929 0.000513309 22 344 47 23400 11700 19999.4 799.975 0.37 0.0110604 0.00869224 1356 4234 -1 261 20 318 1191 81579 38647 0 0 81579 38647 1191 1034 0 0 5885 5748 0 0 11693 8726 0 0 1626 1389 0 0 29584 10263 0 0 31600 11487 0 0 1191 0 0 873 2544 3291 14207 0 0 1.7409 nan -8.48728 -1.7409 0 0 25328.9 1013.15 0.01 0.02 0.00 -1 -1 0.01 0.00134114 0.00114021 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 1.19 vpr 48.53 MiB -1 -1 -1 -1 4 0.03 -1 -1 31296 -1 -1 5 7 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49696 7 8 39 47 0 39 20 5 5 25 clb auto 9.9 MiB 0.01 140 48.5 MiB 0.02 0.00 1.44727 -7.37047 -1.44727 nan 0.03 2.4648e-05 1.7433e-05 0.00061007 0.000497602 26 422 44 23400 19500 22221.8 888.871 0.42 0.014444 0.011422 1444 4608 -1 358 24 423 1785 100184 41444 0 0 100184 41444 1785 1218 0 0 7670 7578 0 0 16168 10250 0 0 2157 1657 0 0 37685 11072 0 0 34719 9669 0 0 1785 0 0 1362 5638 4343 24844 0 0 2.24659 nan -10.5943 -2.24659 0 0 28048.1 1121.92 0.01 0.02 0.00 -1 -1 0.01 0.00202436 0.0017317 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 1.05 vpr 48.59 MiB -1 -1 -1 -1 8 0.05 -1 -1 31540 -1 -1 7 8 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49752 8 8 51 59 0 51 23 6 6 36 clb auto 9.9 MiB 0.01 181 48.6 MiB 0.01 0.00 2.52719 -11.7697 -2.52719 nan 0.05 3.0366e-05 2.1979e-05 0.000843671 0.000687769 30 541 23 165600 27300 47960.3 1332.23 0.22 0.00734751 0.00602518 2708 10880 -1 481 17 490 1801 127106 51154 0 0 127106 51154 1801 1511 0 0 8807 8644 0 0 16256 11897 0 0 2348 1809 0 0 50154 13428 0 0 47740 13865 0 0 1801 0 0 1311 4125 4292 22163 0 0 3.12538 nan -15.762 -3.12538 0 0 61410.5 1705.85 0.01 0.03 0.01 -1 -1 0.01 0.00211466 0.00186717 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 1.54 vpr 48.94 MiB -1 -1 -1 -1 7 0.06 -1 -1 31872 -1 -1 11 10 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50112 10 10 95 105 0 95 31 6 6 36 clb auto 10.5 MiB 0.01 415 48.9 MiB 0.02 0.00 2.50191 -17.6238 -2.50191 nan 0.07 5.2276e-05 4.0335e-05 0.00132316 0.00113703 40 1108 46 165600 42900 61410.5 1705.85 0.63 0.0249773 0.0210679 2992 13730 -1 879 21 876 3623 250060 88042 0 0 250060 88042 3623 2848 0 0 16677 16475 0 0 30504 21776 0 0 4728 3873 0 0 101815 22121 0 0 92713 20949 0 0 3623 0 0 2747 11046 11647 54395 0 0 3.00198 nan -22.5565 -3.00198 0 0 78756.9 2187.69 0.02 0.05 0.01 -1 -1 0.02 0.00458762 0.00402734 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 1.31 vpr 49.04 MiB -1 -1 -1 -1 8 0.07 -1 -1 32300 -1 -1 11 11 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 50216 11 11 94 105 0 94 33 6 6 36 clb auto 10.5 MiB 0.01 412 49.0 MiB 0.02 0.00 2.74146 -20.0164 -2.74146 nan 0.05 5.4865e-05 4.1471e-05 0.0013933 0.00117983 38 994 33 165600 42900 55946.4 1554.07 0.35 0.0163362 0.0136428 2940 12782 -1 857 20 900 3818 268810 96032 0 0 268810 96032 3818 3109 0 0 17131 16867 0 0 34234 22948 0 0 5098 4213 0 0 103551 23837 0 0 104978 25058 0 0 3818 0 0 2918 11555 11757 56290 0 0 3.46848 nan -26.2805 -3.46848 0 0 73011.6 2028.10 0.02 0.07 0.01 -1 -1 0.02 0.00590504 0.00521047 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.73 vpr 48.15 MiB -1 -1 -1 -1 1 0.03 -1 -1 30072 -1 -1 1 3 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49304 3 2 5 7 0 5 6 3 3 9 -1 auto 9.7 MiB 0.00 10 48.1 MiB 0.01 0.00 0.459217 -0.918433 -0.459217 nan 0.01 7.462e-06 4.356e-06 6.8426e-05 5.0541e-05 14 30 14 3900 3900 2841.42 315.713 0.05 0.000483681 0.00035142 322 679 -1 19 5 13 24 655 507 0 0 655 507 24 23 0 0 124 123 0 0 185 183 0 0 34 31 0 0 112 42 0 0 176 105 0 0 24 0 0 11 1 11 69 0 0 0.958112 nan -1.5482 -0.958112 0 0 4264.82 473.869 0.00 0.00 0.00 -1 -1 0.00 0.000143398 0.0001103 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.82 vpr 48.20 MiB -1 -1 -1 -1 2 0.03 -1 -1 30976 -1 -1 1 5 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49352 5 3 9 12 0 9 9 3 3 9 -1 auto 9.5 MiB 0.00 18 48.2 MiB 0.00 0.00 0.72619 -1.9116 -0.72619 nan 0.00 9.388e-06 4.901e-06 0.000104183 8.4255e-05 26 34 14 3900 3900 5185.22 576.135 0.21 0.00445849 0.00313304 386 977 -1 45 12 59 99 3925 3062 0 0 3925 3062 99 75 0 0 565 564 0 0 859 794 0 0 106 102 0 0 1144 754 0 0 1152 773 0 0 99 0 0 40 46 34 299 0 0 1.58803 nan -3.57614 -1.58803 0 0 6645.42 738.380 0.00 0.00 0.00 -1 -1 0.00 0.000444151 0.000358103 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.79 vpr 48.29 MiB -1 -1 -1 -1 3 0.03 -1 -1 31348 -1 -1 1 7 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49448 7 4 13 17 0 13 12 3 3 9 -1 auto 9.7 MiB 0.00 26 48.3 MiB 0.00 0.00 0.995093 -3.17945 -0.995093 nan 0.00 9.905e-06 6.466e-06 0.000111637 9.2465e-05 22 50 25 3900 3900 4723.42 524.824 0.23 0.00513524 0.00378691 362 917 -1 51 16 85 138 4742 3760 0 0 4742 3760 138 96 0 0 792 768 0 0 1168 1097 0 0 141 124 0 0 1157 739 0 0 1346 936 0 0 138 0 0 53 53 63 413 0 0 1.81741 nan -5.56075 -1.81741 0 0 5935.82 659.535 0.00 0.00 0.00 -1 -1 0.00 0.000434333 0.000352209 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.76 vpr 48.22 MiB -1 -1 -1 -1 4 0.03 -1 -1 31480 -1 -1 1 9 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49380 9 5 17 22 0 17 15 3 3 9 -1 auto 9.7 MiB 0.00 34 48.2 MiB 0.00 0.00 1.26014 -4.7027 -1.26014 nan 0.00 1.1636e-05 7.485e-06 0.000142262 0.000120639 28 48 11 3900 3900 5935.82 659.535 0.13 0.00248756 0.00191514 394 1003 -1 49 17 80 154 4129 2599 0 0 4129 2599 154 136 0 0 630 619 0 0 1025 761 0 0 171 157 0 0 806 322 0 0 1343 604 0 0 154 0 0 74 19 69 464 0 0 1.5614 nan -5.82236 -1.5614 0 0 6854.42 761.602 0.00 0.00 0.00 -1 -1 0.00 0.000594056 0.000497226 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.84 vpr 48.36 MiB -1 -1 -1 -1 4 0.03 -1 -1 31412 -1 -1 2 11 0 0 success v8.0.0-7663-g35e39aa4d Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:00:40 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 49516 11 6 24 30 0 24 19 4 4 16 clb auto 9.8 MiB 0.00 64 48.4 MiB 0.01 0.00 1.27336 -6.16074 -1.27336 nan 0.02 1.4931e-05 9.83e-06 0.000227057 0.00018986 28 165 26 7800 7800 12557.4 784.840 0.17 0.00471941 0.00371465 812 2356 -1 149 19 227 495 22652 12424 0 0 22652 12424 495 441 0 0 2423 2401 0 0 4542 3439 0 0 601 529 0 0 7129 2579 0 0 7462 3035 0 0 495 0 0 268 214 345 2026 0 0 1.76713 nan -7.76249 -1.76713 0 0 14986.4 936.652 0.00 0.01 0.00 -1 -1 0.00 0.000976589 0.000832532 From b6a96700f7996ad192127102c0699da29e126e81 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 17:32:39 -0400 Subject: [PATCH 71/81] vtr_reg_system_verilog golden result updated --- .../f4pga_pulse_width_led/config/golden_results.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 vtr_flow/tasks/regression_tests/vtr_reg_system_verilog/f4pga_pulse_width_led/config/golden_results.txt diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_system_verilog/f4pga_pulse_width_led/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_system_verilog/f4pga_pulse_width_led/config/golden_results.txt old mode 100755 new mode 100644 index e7906b70b58..0959d721be9 --- a/vtr_flow/tasks/regression_tests/vtr_reg_system_verilog/f4pga_pulse_width_led/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_system_verilog/f4pga_pulse_width_led/config/golden_results.txt @@ -1,2 +1,2 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml pulse_led.v common 0.88 vpr 63.31 MiB -1 -1 0.33 46544 2 0.01 -1 -1 34388 -1 -1 3 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:44 gh-actions-runner-vtr-auto-spawned46 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64828 9 3 145 109 1 14 15 5 5 25 clb auto 24.9 MiB 0.02 24 63.3 MiB 0.01 0.00 1.225 -51.3496 -1.225 1.225 0.01 3.7934e-05 2.7993e-05 0.00117204 0.00102191 18 38 5 323364 161682 19301.3 772.054 0.04 0.0045285 0.00405377 1386 3298 -1 23 2 12 12 145 89 0 0 145 89 12 12 0 0 22 17 0 0 23 22 0 0 12 12 0 0 40 10 0 0 36 16 0 0 12 0 0 0 0 0 12 0 0 1.225 1.225 -51.7549 -1.225 0 0 24611.1 984.442 0.00 0.00 0.00 -1 -1 0.00 0.00205328 0.00195855 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml pulse_led.v common 1.73 vpr 71.07 MiB -1 -1 0.40 40760 2 0.04 -1 -1 30548 -1 -1 3 9 0 0 success v8.0.0-7662-gd563ffd8a release VTR_ASSERT_LEVEL=2 gprof GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:25:06 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 72776 9 3 145 109 1 14 15 5 5 25 clb auto 32.4 MiB 0.04 24 71.1 MiB 0.01 0.00 1.225 -51.3496 -1.225 1.225 0.05 0.000294908 0.00023425 0.00318007 0.00267849 18 45 2 323364 161682 19301.3 772.054 0.04 0.00899526 0.00789011 1386 3298 -1 35 3 17 17 295 163 0 0 295 163 17 17 0 0 33 24 0 0 34 33 0 0 17 17 0 0 109 37 0 0 85 35 0 0 17 0 0 0 0 0 17 0 0 1.225 1.225 -52.1608 -1.225 0 0 24611.1 984.442 0.00 0.01 0.01 -1 -1 0.00 0.00521159 0.00472024 From 95448cfca1d77db37eec6554308644f395d6c7de Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 18:26:20 -0400 Subject: [PATCH 72/81] updated golden result for vtr_reg_nightly_test1 using parmys --- .../figure_8/config/golden_results.txt | 442 ++-- .../multless_consts/config/golden_results.txt | 2050 ++++++++--------- .../config/golden_results.txt | 62 +- 3 files changed, 1277 insertions(+), 1277 deletions(-) mode change 100755 => 100644 vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt old mode 100755 new mode 100644 index 33e10a3db53..409b54bfb50 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,221 +1,221 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.09 vpr 60.10 MiB -1 -1 0.09 19948 1 0.05 -1 -1 35156 -1 -1 2 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61544 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 21.6 MiB 0.00 62 60.1 MiB 0.00 0.00 0.701248 -6.14693 -0.701248 0.701248 0.88 1.6799e-05 1.1937e-05 0.000353867 0.000276153 20 145 6 6.55708e+06 24110 394039. 1363.46 0.50 0.00120615 0.00101149 19870 87366 -1 127 7 38 38 1982 630 0 0 1982 630 38 38 0 0 163 134 0 0 211 181 0 0 38 38 0 0 765 137 0 0 767 102 0 0 38 0 0 0 0 0 38 0 0 0.782248 0.782248 -7.63113 -0.782248 0 0 477104. 1650.88 0.20 0.00 0.07 -1 -1 0.20 0.000723148 0.000625066 10 4 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.11 vpr 60.03 MiB -1 -1 0.09 19764 2 0.04 -1 -1 35316 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61468 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 21.5 MiB 0.01 77 60.0 MiB 0.00 0.00 0.819447 -7.75041 -0.819447 0.819447 0.89 2.234e-05 1.6076e-05 0.000615078 0.000474918 20 195 11 6.55708e+06 24110 394039. 1363.46 0.50 0.00189936 0.00157552 19870 87366 -1 171 7 69 74 3841 1162 0 0 3841 1162 74 69 0 0 301 228 0 0 378 320 0 0 74 73 0 0 1508 253 0 0 1506 219 0 0 74 0 0 5 5 0 94 0 0 0.819447 0.819447 -10.3556 -0.819447 0 0 477104. 1650.88 0.20 0.01 0.07 -1 -1 0.20 0.000882095 0.000768159 13 6 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.25 vpr 60.25 MiB -1 -1 0.09 19952 2 0.05 -1 -1 35116 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61696 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 21.7 MiB 0.01 57 60.2 MiB 0.00 0.00 0.819447 -9.62584 -0.819447 0.819447 0.90 2.6923e-05 1.9545e-05 0.000877546 0.000671064 22 234 22 6.55708e+06 24110 420624. 1455.45 0.57 0.005923 0.00475409 20158 92377 -1 215 23 177 187 8018 3167 0 0 8018 3167 187 179 0 0 690 578 0 0 1304 1058 0 0 187 180 0 0 2527 600 0 0 3123 572 0 0 187 0 0 10 5 5 227 0 0 0.902448 0.902448 -13.3938 -0.902448 0 0 500653. 1732.36 0.23 0.01 0.08 -1 -1 0.23 0.00207891 0.0017396 16 7 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.98 vpr 60.23 MiB -1 -1 0.09 19884 3 0.04 -1 -1 35124 -1 -1 3 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61676 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 21.7 MiB 0.01 111 60.2 MiB 0.01 0.00 1.50711 -14.1678 -1.50711 1.50711 0.88 3.2537e-05 2.3802e-05 0.00110989 0.00086918 20 317 12 6.55708e+06 36165 394039. 1363.46 0.53 0.00301267 0.0025283 19870 87366 -1 261 10 108 136 7792 2259 0 0 7792 2259 136 127 0 0 544 434 0 0 776 628 0 0 136 129 0 0 2905 495 0 0 3295 446 0 0 136 0 0 28 10 18 248 0 0 1.50711 1.50711 -17.5334 -1.50711 0 0 477104. 1650.88 0.21 0.01 0.07 -1 -1 0.21 0.00144455 0.00126839 19 9 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.14 vpr 60.23 MiB -1 -1 0.09 19808 3 0.03 -1 -1 35432 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61680 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 21.6 MiB 0.01 228 60.2 MiB 0.01 0.00 1.05785 -17.9576 -1.05785 1.05785 0.89 3.8235e-05 2.8999e-05 0.000930316 0.000748645 26 417 13 6.55708e+06 36165 477104. 1650.88 0.66 0.00717304 0.00590633 21022 109990 -1 418 13 156 174 12676 3124 0 0 12676 3124 174 162 0 0 677 580 0 0 1069 878 0 0 174 167 0 0 5480 692 0 0 5102 645 0 0 174 0 0 18 2 17 247 0 0 1.13885 1.13885 -21.7282 -1.13885 0 0 585099. 2024.56 0.25 0.01 0.09 -1 -1 0.25 0.00180272 0.00156483 23 10 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.23 vpr 60.17 MiB -1 -1 0.09 19716 3 0.04 -1 -1 35108 -1 -1 4 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61612 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 21.4 MiB 0.06 229 60.2 MiB 0.01 0.00 1.46791 -20.5096 -1.46791 1.46791 0.90 5.0642e-05 4.0124e-05 0.00118205 0.000968731 20 454 18 6.55708e+06 48220 394039. 1363.46 0.52 0.00424568 0.00361347 19870 87366 -1 435 12 158 168 11796 2970 0 0 11796 2970 168 164 0 0 676 529 0 0 894 760 0 0 168 164 0 0 5085 669 0 0 4805 684 0 0 168 0 0 10 8 5 211 0 0 1.70831 1.70831 -25.558 -1.70831 0 0 477104. 1650.88 0.21 0.01 0.07 -1 -1 0.21 0.00232817 0.00205037 25 14 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.25 vpr 60.13 MiB -1 -1 0.08 19876 4 0.04 -1 -1 34844 -1 -1 4 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61576 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 21.6 MiB 0.01 260 60.1 MiB 0.01 0.00 1.50711 -24.0312 -1.50711 1.50711 0.85 4.0024e-05 3.0007e-05 0.00184578 0.00143679 26 541 14 6.55708e+06 48220 477104. 1650.88 0.65 0.00942877 0.00771541 21022 109990 -1 481 13 176 214 15325 3777 0 0 15325 3777 214 191 0 0 831 705 0 0 1241 1046 0 0 214 193 0 0 6384 856 0 0 6441 786 0 0 214 0 0 38 38 39 427 0 0 1.58811 1.58811 -28.5648 -1.58811 0 0 585099. 2024.56 0.24 0.01 0.08 -1 -1 0.24 0.00232629 0.0020354 29 13 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.42 vpr 60.33 MiB -1 -1 0.10 19800 4 0.04 -1 -1 35124 -1 -1 5 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61780 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 21.8 MiB 0.03 349 60.3 MiB 0.01 0.00 1.46791 -28.5878 -1.46791 1.46791 0.90 5.5345e-05 4.2166e-05 0.00176857 0.0014422 26 639 13 6.55708e+06 60275 477104. 1650.88 0.66 0.0106212 0.00887374 21022 109990 -1 599 11 207 266 21440 5149 0 0 21440 5149 266 218 0 0 1080 857 0 0 1738 1427 0 0 266 218 0 0 9136 1243 0 0 8954 1186 0 0 266 0 0 59 58 26 539 0 0 1.46791 1.46791 -32.395 -1.46791 0 0 585099. 2024.56 0.25 0.01 0.09 -1 -1 0.25 0.0026026 0.00231285 33 17 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.21 vpr 60.47 MiB -1 -1 0.09 19716 5 0.06 -1 -1 35196 -1 -1 6 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61924 23 12 76 88 1 61 41 17 17 289 -1 unnamed_device 21.9 MiB 0.02 303 60.5 MiB 0.02 0.00 1.7455 -30.0058 -1.7455 1.7455 0.87 6.0967e-05 4.6316e-05 0.00406338 0.00318098 26 650 10 6.55708e+06 72330 477104. 1650.88 0.65 0.013315 0.0109278 21022 109990 -1 584 14 242 313 19097 4918 0 0 19097 4918 313 250 0 0 1176 953 0 0 1766 1365 0 0 313 271 0 0 7926 1033 0 0 7603 1046 0 0 313 0 0 71 41 64 657 0 0 1.7455 1.7455 -34.8974 -1.7455 0 0 585099. 2024.56 0.25 0.01 0.09 -1 -1 0.25 0.00329826 0.00291375 37 19 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.50 vpr 60.40 MiB -1 -1 0.09 19724 5 0.05 -1 -1 35488 -1 -1 6 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61852 25 13 83 96 1 66 44 17 17 289 -1 unnamed_device 21.8 MiB 0.02 415 60.4 MiB 0.01 0.00 1.53464 -33.964 -1.53464 1.53464 0.85 7.4608e-05 5.9616e-05 0.00229931 0.00185 26 869 26 6.55708e+06 72330 477104. 1650.88 0.86 0.0176571 0.0150235 21022 109990 -1 809 16 274 390 29828 6909 0 0 29828 6909 390 295 0 0 1531 1217 0 0 2312 1792 0 0 390 332 0 0 13476 1548 0 0 11729 1725 0 0 390 0 0 116 67 110 943 0 0 1.61765 1.61765 -41.4383 -1.61765 0 0 585099. 2024.56 0.24 0.01 0.08 -1 -1 0.24 0.00352012 0.00308231 40 21 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.49 vpr 60.66 MiB -1 -1 0.11 20248 5 0.05 -1 -1 35084 -1 -1 7 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62120 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 22.0 MiB 0.02 316 60.7 MiB 0.02 0.00 1.61564 -32.4063 -1.61564 1.61564 0.90 7.8371e-05 6.1342e-05 0.0043214 0.00346615 26 820 23 6.55708e+06 84385 477104. 1650.88 0.71 0.0180409 0.0150885 21022 109990 -1 670 11 251 356 21787 5653 0 0 21787 5653 356 298 0 0 1334 1029 0 0 2078 1610 0 0 356 308 0 0 8338 1290 0 0 9325 1118 0 0 356 0 0 105 109 111 977 0 0 1.73584 1.73584 -39.8215 -1.73584 0 0 585099. 2024.56 0.24 0.01 0.09 -1 -1 0.24 0.00351669 0.00314697 42 24 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.34 vpr 60.50 MiB -1 -1 0.10 20284 6 0.05 -1 -1 34928 -1 -1 7 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61956 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 21.9 MiB 0.04 424 60.5 MiB 0.02 0.00 2.15556 -40.406 -2.15556 2.15556 0.84 7.0722e-05 5.4446e-05 0.004249 0.00337658 28 843 12 6.55708e+06 84385 500653. 1732.36 0.66 0.0153461 0.0126943 21310 115450 -1 768 12 245 347 19546 5006 0 0 19546 5006 347 261 0 0 1270 987 0 0 1822 1418 0 0 347 265 0 0 8212 993 0 0 7548 1082 0 0 347 0 0 102 30 101 838 0 0 2.15556 2.15556 -46.8968 -2.15556 0 0 612192. 2118.31 0.25 0.01 0.09 -1 -1 0.25 0.00366785 0.00325989 45 23 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.65 vpr 60.58 MiB -1 -1 0.10 20028 6 0.05 -1 -1 35376 -1 -1 10 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62032 31 16 104 120 1 81 57 17 17 289 -1 unnamed_device 21.9 MiB 0.06 310 60.6 MiB 0.02 0.00 1.73384 -36.2517 -1.73384 1.73384 0.90 8.4112e-05 6.5958e-05 0.00556625 0.00439099 30 751 12 6.55708e+06 120550 526063. 1820.29 0.75 0.0183953 0.015237 21886 126133 -1 612 11 270 430 18135 5315 0 0 18135 5315 430 302 0 0 1490 1115 0 0 1964 1600 0 0 430 320 0 0 6466 1044 0 0 7355 934 0 0 430 0 0 160 144 119 1357 0 0 1.85404 1.85404 -44.6657 -1.85404 0 0 666494. 2306.21 0.29 0.01 0.10 -1 -1 0.29 0.00377778 0.00337843 50 27 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.54 vpr 60.39 MiB -1 -1 0.10 20216 7 0.06 -1 -1 35208 -1 -1 7 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61836 33 17 112 129 1 86 57 17 17 289 -1 unnamed_device 21.9 MiB 0.05 534 60.4 MiB 0.03 0.00 2.2223 -50.3968 -2.2223 2.2223 0.89 0.000100532 7.5333e-05 0.00634842 0.0051111 28 1033 16 6.55708e+06 84385 500653. 1732.36 0.71 0.0209514 0.0175156 21310 115450 -1 992 11 309 420 27514 6795 0 0 27514 6795 420 358 0 0 1578 1229 0 0 2291 1853 0 0 420 366 0 0 11943 1465 0 0 10862 1524 0 0 420 0 0 111 29 108 910 0 0 2.2223 2.2223 -58.1314 -2.2223 0 0 612192. 2118.31 0.25 0.02 0.09 -1 -1 0.25 0.00425114 0.003823 52 30 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.61 vpr 60.71 MiB -1 -1 0.09 20176 7 0.05 -1 -1 35484 -1 -1 10 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62164 37 19 127 146 1 99 66 17 17 289 -1 unnamed_device 22.1 MiB 0.02 637 60.7 MiB 0.03 0.00 2.63236 -62.8496 -2.63236 2.63236 0.89 0.000114356 9.1876e-05 0.00699058 0.00566966 30 1120 10 6.55708e+06 120550 526063. 1820.29 0.74 0.0225806 0.0190372 21886 126133 -1 1039 9 266 375 19618 4924 0 0 19618 4924 375 292 0 0 1288 958 0 0 1708 1379 0 0 375 313 0 0 8067 1014 0 0 7805 968 0 0 375 0 0 109 90 76 938 0 0 2.72502 2.72502 -71.5066 -2.72502 0 0 666494. 2306.21 0.29 0.01 0.10 -1 -1 0.29 0.00448972 0.00406511 59 35 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.72 vpr 60.79 MiB -1 -1 0.10 20164 8 0.06 -1 -1 35308 -1 -1 11 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62252 41 21 139 160 1 110 73 17 17 289 -1 unnamed_device 22.0 MiB 0.04 365 60.8 MiB 0.04 0.00 2.4215 -56.6808 -2.4215 2.4215 0.88 0.000121903 9.7416e-05 0.00816134 0.00659099 30 1005 21 6.55708e+06 132605 526063. 1820.29 0.83 0.0286034 0.024043 21886 126133 -1 791 13 483 642 26521 8503 0 0 26521 8503 642 532 0 0 2284 1813 0 0 3286 2654 0 0 642 549 0 0 9068 1587 0 0 10599 1368 0 0 642 0 0 159 134 124 1429 0 0 2.5417 2.5417 -66.1766 -2.5417 0 0 666494. 2306.21 0.27 0.02 0.10 -1 -1 0.27 0.00578927 0.00518455 67 37 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.79 vpr 60.89 MiB -1 -1 0.12 20164 9 0.06 -1 -1 35332 -1 -1 13 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62356 45 23 153 176 1 123 81 17 17 289 -1 unnamed_device 22.3 MiB 0.24 522 60.9 MiB 0.04 0.00 3.02956 -71.3023 -3.02956 3.02956 0.90 0.00012752 0.000101148 0.00995258 0.00808882 26 1329 18 6.55708e+06 156715 477104. 1650.88 0.71 0.0305439 0.0257176 21022 109990 -1 1172 11 471 593 37075 10132 0 0 37075 10132 593 512 0 0 2364 1891 0 0 3406 2811 0 0 593 525 0 0 15074 2229 0 0 15045 2164 0 0 593 0 0 122 72 139 1170 0 0 3.26996 3.26996 -86.6879 -3.26996 0 0 585099. 2024.56 0.23 0.02 0.09 -1 -1 0.23 0.00570685 0.00512734 74 41 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.72 vpr 60.94 MiB -1 -1 0.11 20196 10 0.07 -1 -1 35480 -1 -1 12 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62400 49 25 166 191 1 129 86 17 17 289 -1 unnamed_device 22.4 MiB 0.06 655 60.9 MiB 0.04 0.00 3.51862 -85.1464 -3.51862 3.51862 0.90 0.000147577 0.000118265 0.0100204 0.00814382 28 1398 14 6.55708e+06 144660 500653. 1732.36 0.75 0.0319502 0.0270389 21310 115450 -1 1258 14 463 663 39527 10189 0 0 39527 10189 663 517 0 0 2429 1875 0 0 3520 2772 0 0 663 549 0 0 16286 2253 0 0 15966 2223 0 0 663 0 0 200 150 237 1708 0 0 3.75902 3.75902 -100.051 -3.75902 0 0 612192. 2118.31 0.27 0.02 0.09 -1 -1 0.27 0.0074062 0.0066661 79 44 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.91 vpr 61.09 MiB -1 -1 0.12 20176 11 0.07 -1 -1 35352 -1 -1 14 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62556 57 29 198 227 1 159 100 17 17 289 -1 unnamed_device 22.6 MiB 0.21 585 61.1 MiB 0.03 0.00 4.00908 -101.893 -4.00908 4.00908 0.89 0.00017397 0.000140862 0.00753683 0.00626419 30 1386 17 6.55708e+06 168770 526063. 1820.29 0.79 0.0347058 0.0296371 21886 126133 -1 1189 14 560 713 31956 9824 0 0 31956 9824 713 604 0 0 2530 1988 0 0 3512 2830 0 0 713 616 0 0 12900 1890 0 0 11588 1896 0 0 713 0 0 153 110 157 1457 0 0 4.12928 4.12928 -115.235 -4.12928 0 0 666494. 2306.21 0.27 0.02 0.10 -1 -1 0.27 0.00847749 0.0075748 93 56 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 4.03 vpr 61.41 MiB -1 -1 0.12 20428 13 0.08 -1 -1 35212 -1 -1 16 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62880 65 33 224 257 1 180 114 17 17 289 -1 unnamed_device 22.7 MiB 0.26 957 61.4 MiB 0.06 0.00 4.30256 -132.78 -4.30256 4.30256 0.89 0.000203628 0.000166273 0.0147986 0.0121682 30 1896 12 6.55708e+06 192880 526063. 1820.29 0.84 0.0447706 0.0381846 21886 126133 -1 1707 18 625 820 47274 12050 0 0 47274 12050 820 678 0 0 2926 2267 0 0 4159 3397 0 0 820 708 0 0 19312 2564 0 0 19237 2436 0 0 820 0 0 195 143 196 1758 0 0 4.42276 4.42276 -150.57 -4.42276 0 0 666494. 2306.21 0.26 0.02 0.10 -1 -1 0.26 0.00824533 0.00737008 107 62 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.46 vpr 62.30 MiB -1 -1 0.15 20716 19 0.10 -1 -1 35476 -1 -1 24 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63796 97 49 340 389 1 266 170 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1461 62.3 MiB 0.11 0.00 6.37519 -246.782 -6.37519 6.37519 0.90 0.000340924 0.000285012 0.0268992 0.0225756 32 3206 32 6.55708e+06 289320 554710. 1919.41 0.99 0.091489 0.0795337 22174 131602 -1 2742 26 903 1318 237827 112730 0 0 237827 112730 1318 1060 0 0 4901 3799 0 0 9608 6877 0 0 1318 1114 0 0 107335 49497 0 0 113347 50383 0 0 1318 0 0 415 364 459 3564 0 0 6.61559 6.61559 -275.193 -6.61559 0 0 701300. 2426.64 0.28 0.10 0.10 -1 -1 0.28 0.0245713 0.0220719 161 98 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.63 vpr 62.70 MiB -1 -1 0.17 21036 26 0.12 -1 -1 35548 -1 -1 35 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64208 129 65 453 518 1 353 229 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1846 62.7 MiB 0.14 0.00 9.15536 -422.396 -9.15536 9.15536 0.91 0.000467165 0.00039398 0.0328585 0.0281117 32 4126 41 6.55708e+06 421925 554710. 1919.41 1.11 0.13192 0.116145 22174 131602 -1 3623 14 1271 1766 126493 31414 0 0 126493 31414 1766 1448 0 0 6939 5558 0 0 11209 8581 0 0 1766 1503 0 0 52983 7122 0 0 51830 7202 0 0 1766 0 0 495 349 446 4138 0 0 9.63616 9.63616 -475.164 -9.63616 0 0 701300. 2426.64 0.28 0.06 0.11 -1 -1 0.28 0.0220275 0.0200728 213 131 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.26 abc 32.12 MiB -1 -1 0.09 19796 1 0.00 -1 -1 32892 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22532 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.27 abc 32.16 MiB -1 -1 0.09 19776 1 0.01 -1 -1 32932 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22496 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.25 abc 32.13 MiB -1 -1 0.08 19888 1 0.01 -1 -1 32900 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22568 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.26 abc 32.18 MiB -1 -1 0.09 19912 1 0.01 -1 -1 32948 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22432 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.26 abc 32.16 MiB -1 -1 0.08 19800 1 0.01 -1 -1 32932 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22424 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.26 abc 32.20 MiB -1 -1 0.08 19888 1 0.00 -1 -1 32972 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22100 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.27 abc 32.21 MiB -1 -1 0.10 19888 1 0.02 -1 -1 32980 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22652 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.26 abc 32.10 MiB -1 -1 0.09 19852 1 0.01 -1 -1 32868 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22460 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.27 abc 32.27 MiB -1 -1 0.08 19756 1 0.01 -1 -1 33044 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22608 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.27 abc 32.27 MiB -1 -1 0.10 19912 1 0.02 -1 -1 33044 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22496 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.27 abc 32.21 MiB -1 -1 0.09 19800 1 0.01 -1 -1 32980 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22552 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.27 abc 32.23 MiB -1 -1 0.10 19980 1 0.00 -1 -1 33004 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22720 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.27 abc 32.07 MiB -1 -1 0.09 19748 1 0.00 -1 -1 32836 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22616 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.27 abc 32.19 MiB -1 -1 0.09 19916 1 0.01 -1 -1 32964 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22764 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.28 abc 32.22 MiB -1 -1 0.09 19796 1 0.01 -1 -1 32992 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22640 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.28 abc 32.20 MiB -1 -1 0.09 20484 1 0.01 -1 -1 32968 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22552 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.29 abc 32.23 MiB -1 -1 0.10 20068 1 0.01 -1 -1 33000 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22420 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.27 abc 32.22 MiB -1 -1 0.09 20116 1 0.01 -1 -1 32992 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22884 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.29 abc 32.26 MiB -1 -1 0.11 20116 1 0.00 -1 -1 33032 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22936 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.29 abc 32.29 MiB -1 -1 0.11 20152 1 0.01 -1 -1 33064 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22864 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.30 abc 32.34 MiB -1 -1 0.09 20512 1 0.01 -1 -1 33112 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22740 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.33 abc 32.58 MiB -1 -1 0.11 20516 1 0.01 -1 -1 33364 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 23404 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.26 abc 31.99 MiB -1 -1 0.10 19816 1 0.01 -1 -1 32756 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22140 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.27 abc 32.04 MiB -1 -1 0.08 19984 1 0.01 -1 -1 32804 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22316 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.26 abc 32.11 MiB -1 -1 0.09 19888 1 0.00 -1 -1 32876 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22264 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.26 abc 32.07 MiB -1 -1 0.09 19760 1 0.00 -1 -1 32836 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22220 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.26 abc 32.14 MiB -1 -1 0.09 19836 1 0.00 -1 -1 32908 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22376 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.27 abc 32.05 MiB -1 -1 0.08 19892 1 0.01 -1 -1 32824 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22008 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.27 abc 32.13 MiB -1 -1 0.09 19888 1 0.01 -1 -1 32904 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22236 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.27 abc 32.05 MiB -1 -1 0.09 19984 1 0.00 -1 -1 32820 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22252 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.26 abc 32.22 MiB -1 -1 0.08 19908 1 0.01 -1 -1 32996 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22120 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.27 abc 32.05 MiB -1 -1 0.10 19888 1 0.00 -1 -1 32820 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22252 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.26 abc 32.13 MiB -1 -1 0.10 19932 1 0.01 -1 -1 32900 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22328 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.29 abc 32.07 MiB -1 -1 0.09 19940 1 0.01 -1 -1 32844 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 21964 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.27 abc 32.17 MiB -1 -1 0.09 19972 1 0.01 -1 -1 32944 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22452 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.27 abc 32.19 MiB -1 -1 0.10 19800 1 0.01 -1 -1 32964 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22336 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.26 abc 32.21 MiB -1 -1 0.08 19796 1 0.01 -1 -1 32988 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22160 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.27 abc 32.22 MiB -1 -1 0.10 20292 1 0.01 -1 -1 32992 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22420 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.28 abc 32.18 MiB -1 -1 0.10 20220 1 0.01 -1 -1 32952 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22124 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.28 abc 32.13 MiB -1 -1 0.10 20012 1 0.01 -1 -1 32904 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22572 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.27 abc 32.20 MiB -1 -1 0.10 20020 1 0.01 -1 -1 32968 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22692 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.29 abc 32.20 MiB -1 -1 0.11 20208 1 0.01 -1 -1 32968 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22596 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.31 abc 32.42 MiB -1 -1 0.11 20416 1 0.01 -1 -1 33196 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22796 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.32 abc 32.56 MiB -1 -1 0.11 20476 1 0.02 -1 -1 33340 -1 -1 -1 -1 -1 -1 exited with return code 134 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 22996 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.85 vpr 60.09 MiB -1 -1 0.08 19876 1 0.01 -1 -1 32756 -1 -1 2 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61536 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 21.6 MiB 0.01 57 60.1 MiB 0.00 0.00 0.669135 -6.21193 -0.669135 0.669135 0.87 1.4771e-05 1.038e-05 0.000391684 0.00030716 14 125 7 6.64007e+06 25116 279208. 966.117 0.42 0.0034594 0.00276849 19378 63921 -1 124 3 19 19 1064 301 0 0 1064 301 19 19 0 0 80 52 0 0 89 81 0 0 19 19 0 0 414 73 0 0 443 57 0 0 19 0 0 0 0 0 19 0 0 0.789335 0.789335 -8.01493 -0.789335 0 0 355633. 1230.56 0.16 0.00 0.05 -1 -1 0.16 0.00061403 0.000548946 10 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.21 vpr 60.26 MiB -1 -1 0.10 19864 1 0.01 -1 -1 32912 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61704 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 21.7 MiB 0.01 42 60.3 MiB 0.00 0.00 0.671848 -7.44342 -0.671848 0.671848 0.85 2.6776e-05 2.0206e-05 0.000811858 0.00062208 26 150 9 6.64007e+06 25116 477104. 1650.88 0.63 0.00437425 0.00351182 21682 110474 -1 121 10 56 56 2893 851 0 0 2893 851 56 56 0 0 191 158 0 0 270 206 0 0 56 56 0 0 1033 175 0 0 1287 200 0 0 56 0 0 0 0 0 56 0 0 0.770048 0.770048 -9.69122 -0.770048 0 0 585099. 2024.56 0.23 0.01 0.09 -1 -1 0.23 0.00101246 0.000873354 13 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.33 vpr 60.64 MiB -1 -1 0.09 19768 1 0.00 -1 -1 32992 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62100 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.1 MiB 0.01 65 60.6 MiB 0.01 0.00 0.682848 -9.22145 -0.682848 0.682848 0.85 2.7563e-05 2.0108e-05 0.00088088 0.000687363 30 197 12 6.64007e+06 25116 526063. 1820.29 0.68 0.00516529 0.00417599 22546 126617 -1 166 12 115 115 4465 1410 0 0 4465 1410 115 115 0 0 389 277 0 0 493 405 0 0 115 115 0 0 1420 303 0 0 1933 195 0 0 115 0 0 0 0 0 115 0 0 0.923248 0.923248 -12.9476 -0.923248 0 0 666494. 2306.21 0.26 0.01 0.10 -1 -1 0.26 0.00134407 0.00115851 16 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.12 vpr 60.69 MiB -1 -1 0.08 19900 1 0.01 -1 -1 32908 -1 -1 4 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62144 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 22.1 MiB 0.01 213 60.7 MiB 0.00 0.00 0.814048 -15.4283 -0.814048 0.814048 0.90 3.1883e-05 2.3535e-05 0.000514808 0.000438843 20 354 11 6.64007e+06 50232 394039. 1363.46 0.52 0.00230274 0.00194794 20530 87850 -1 346 7 96 96 7937 1909 0 0 7937 1909 96 96 0 0 411 325 0 0 489 434 0 0 96 96 0 0 3712 488 0 0 3133 470 0 0 96 0 0 0 0 0 96 0 0 0.945248 0.945248 -18.0105 -0.945248 0 0 477104. 1650.88 0.19 0.01 0.07 -1 -1 0.19 0.00118929 0.0010587 20 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.27 vpr 60.56 MiB -1 -1 0.09 19880 1 0.01 -1 -1 32884 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62012 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 22.0 MiB 0.02 115 60.6 MiB 0.01 0.00 0.944958 -13.8003 -0.944958 0.944958 0.87 3.8177e-05 2.8948e-05 0.00114984 0.000912925 26 300 15 6.64007e+06 37674 477104. 1650.88 0.61 0.00723329 0.00593218 21682 110474 -1 264 15 191 191 10272 3385 0 0 10272 3385 191 191 0 0 729 630 0 0 1121 887 0 0 191 191 0 0 4589 784 0 0 3451 702 0 0 191 0 0 0 0 0 191 0 0 0.954248 0.954248 -19.1136 -0.954248 0 0 585099. 2024.56 0.25 0.01 0.09 -1 -1 0.25 0.00199079 0.00171327 22 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.33 vpr 60.73 MiB -1 -1 0.09 19848 1 0.01 -1 -1 32904 -1 -1 4 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62188 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 22.1 MiB 0.02 100 60.7 MiB 0.01 0.00 0.955958 -15.1302 -0.955958 0.955958 0.90 3.8533e-05 2.9017e-05 0.00156687 0.00123551 26 323 18 6.64007e+06 50232 477104. 1650.88 0.66 0.00858137 0.00700807 21682 110474 -1 287 12 191 191 10131 3307 0 0 10131 3307 191 191 0 0 715 592 0 0 1115 917 0 0 191 191 0 0 4383 732 0 0 3536 684 0 0 191 0 0 0 0 0 191 0 0 0.987248 0.987248 -21.924 -0.987248 0 0 585099. 2024.56 0.23 0.01 0.09 -1 -1 0.23 0.00217985 0.00191424 25 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.31 vpr 60.85 MiB -1 -1 0.10 19768 1 0.01 -1 -1 32920 -1 -1 4 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62308 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.4 MiB 0.02 182 60.8 MiB 0.01 0.00 0.966958 -18.755 -0.966958 0.966958 0.89 4.55e-05 3.4635e-05 0.00158043 0.0012627 26 402 15 6.64007e+06 50232 477104. 1650.88 0.63 0.00897756 0.0073898 21682 110474 -1 375 11 172 172 12029 3324 0 0 12029 3324 172 172 0 0 694 546 0 0 965 802 0 0 172 172 0 0 4645 919 0 0 5381 713 0 0 172 0 0 0 0 0 172 0 0 0.856048 0.856048 -23.7292 -0.856048 0 0 585099. 2024.56 0.23 0.01 0.09 -1 -1 0.23 0.00212531 0.00186394 28 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.35 vpr 60.75 MiB -1 -1 0.10 19880 1 0.01 -1 -1 32764 -1 -1 5 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62204 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.3 MiB 0.03 145 60.7 MiB 0.01 0.00 0.977958 -19.3857 -0.977958 0.977958 0.89 5.0553e-05 3.8923e-05 0.00176111 0.00141974 26 381 16 6.64007e+06 62790 477104. 1650.88 0.66 0.010074 0.00832825 21682 110474 -1 365 14 212 212 12086 3939 0 0 12086 3939 212 212 0 0 829 683 0 0 1165 953 0 0 212 212 0 0 5617 962 0 0 4051 917 0 0 212 0 0 0 0 0 212 0 0 1.11845 1.11845 -28.0633 -1.11845 0 0 585099. 2024.56 0.24 0.01 0.09 -1 -1 0.24 0.00268153 0.00236122 31 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.46 vpr 60.89 MiB -1 -1 0.10 19880 1 0.01 -1 -1 32748 -1 -1 5 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62356 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.4 MiB 0.03 177 60.9 MiB 0.01 0.00 0.988958 -22.0708 -0.988958 0.988958 0.89 5.5408e-05 4.3004e-05 0.00200301 0.00161182 30 449 14 6.64007e+06 62790 526063. 1820.29 0.74 0.0106896 0.0088679 22546 126617 -1 394 11 147 147 8216 2492 0 0 8216 2492 147 147 0 0 565 427 0 0 668 589 0 0 147 147 0 0 3836 568 0 0 2853 614 0 0 147 0 0 0 0 0 147 0 0 0.998248 0.998248 -28.9869 -0.998248 0 0 666494. 2306.21 0.27 0.01 0.10 -1 -1 0.27 0.00245045 0.00216261 34 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.39 vpr 60.85 MiB -1 -1 0.10 19768 1 0.00 -1 -1 32924 -1 -1 5 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62312 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.3 MiB 0.03 200 60.9 MiB 0.01 0.00 0.999958 -24.6468 -0.999958 0.999958 0.85 5.8414e-05 4.4391e-05 0.00190965 0.00153037 26 525 19 6.64007e+06 62790 477104. 1650.88 0.73 0.0124226 0.010276 21682 110474 -1 524 9 221 221 14964 4393 0 0 14964 4393 221 221 0 0 843 671 0 0 1110 936 0 0 221 221 0 0 6615 1263 0 0 5954 1081 0 0 221 0 0 0 0 0 221 0 0 1.03125 1.03125 -33.4889 -1.03125 0 0 585099. 2024.56 0.26 0.01 0.09 -1 -1 0.26 0.00243105 0.00216745 37 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.43 vpr 60.79 MiB -1 -1 0.09 19764 1 0.00 -1 -1 32912 -1 -1 6 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62244 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 22.2 MiB 0.02 188 60.8 MiB 0.01 0.00 1.01096 -25.5509 -1.01096 1.01096 0.87 6.2426e-05 4.8116e-05 0.00216195 0.00175183 28 541 15 6.64007e+06 75348 500653. 1732.36 0.69 0.0122517 0.0101528 21970 115934 -1 499 15 311 311 17653 5724 0 0 17653 5724 311 311 0 0 1194 996 0 0 1652 1371 0 0 311 311 0 0 8091 1362 0 0 6094 1373 0 0 311 0 0 0 0 0 311 0 0 1.03125 1.03125 -34.8903 -1.03125 0 0 612192. 2118.31 0.27 0.01 0.10 -1 -1 0.27 0.00342111 0.00298482 40 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.44 vpr 60.81 MiB -1 -1 0.10 19772 1 0.01 -1 -1 32748 -1 -1 7 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62272 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 22.2 MiB 0.02 214 60.8 MiB 0.01 0.00 1.02196 -27.7882 -1.02196 1.02196 0.88 6.4408e-05 4.9264e-05 0.00250949 0.00202211 28 652 19 6.64007e+06 87906 500653. 1732.36 0.70 0.0142011 0.011782 21970 115934 -1 538 10 271 271 13787 4448 0 0 13787 4448 271 271 0 0 1027 828 0 0 1421 1188 0 0 271 271 0 0 5995 938 0 0 4802 952 0 0 271 0 0 0 0 0 271 0 0 1.02025 1.02025 -37.0122 -1.02025 0 0 612192. 2118.31 0.26 0.01 0.10 -1 -1 0.26 0.00284387 0.00253065 44 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.29 vpr 60.97 MiB -1 -1 0.09 20348 1 0.01 -1 -1 32760 -1 -1 7 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62432 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.3 MiB 0.02 366 61.0 MiB 0.02 0.00 1.26207 -33.5111 -1.26207 1.26207 0.86 7.3393e-05 5.7299e-05 0.00297004 0.0024035 26 863 13 6.64007e+06 87906 477104. 1650.88 0.67 0.0144463 0.0121112 21682 110474 -1 737 14 410 410 26552 6966 0 0 26552 6966 410 410 0 0 1523 1230 0 0 2230 1758 0 0 410 410 0 0 10937 1576 0 0 11042 1582 0 0 410 0 0 0 0 0 410 0 0 1.18245 1.18245 -43.4976 -1.18245 0 0 585099. 2024.56 0.24 0.02 0.08 -1 -1 0.24 0.00367585 0.00322763 46 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.40 vpr 61.09 MiB -1 -1 0.10 20140 1 0.01 -1 -1 32936 -1 -1 7 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.7 MiB 0.03 253 61.1 MiB 0.02 0.00 1.27307 -32.1531 -1.27307 1.27307 0.86 8.9002e-05 6.9496e-05 0.00279054 0.00228021 30 643 13 6.64007e+06 87906 526063. 1820.29 0.71 0.0145682 0.0121873 22546 126617 -1 483 11 194 194 9214 2858 0 0 9214 2858 194 194 0 0 662 491 0 0 798 676 0 0 194 194 0 0 3658 684 0 0 3708 619 0 0 194 0 0 0 0 0 194 0 0 1.05125 1.05125 -39.8978 -1.05125 0 0 666494. 2306.21 0.27 0.01 0.10 -1 -1 0.27 0.00326221 0.00288279 49 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.41 vpr 61.12 MiB -1 -1 0.10 20212 1 0.00 -1 -1 32940 -1 -1 8 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62584 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.6 MiB 0.03 530 61.1 MiB 0.03 0.00 1.29507 -44.8558 -1.29507 1.29507 0.87 9.3283e-05 7.4156e-05 0.00476915 0.00387944 26 1042 13 6.64007e+06 100464 477104. 1650.88 0.69 0.0185139 0.0155112 21682 110474 -1 968 15 424 424 42189 9132 0 0 42189 9132 424 424 0 0 1659 1303 0 0 2220 1853 0 0 424 424 0 0 20348 2380 0 0 17114 2748 0 0 424 0 0 0 0 0 424 0 0 1.09525 1.09525 -53.4015 -1.09525 0 0 585099. 2024.56 0.25 0.02 0.09 -1 -1 0.25 0.004631 0.00406114 55 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.58 vpr 61.27 MiB -1 -1 0.10 20172 1 0.01 -1 -1 32992 -1 -1 8 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62740 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 22.7 MiB 0.03 617 61.3 MiB 0.04 0.00 1.31707 -50.9916 -1.31707 1.31707 0.86 9.6728e-05 7.5346e-05 0.00752238 0.00597543 30 1112 20 6.64007e+06 100464 526063. 1820.29 0.78 0.0239005 0.0198269 22546 126617 -1 1001 15 427 427 27634 6641 0 0 27634 6641 427 427 0 0 1556 1190 0 0 1938 1619 0 0 427 427 0 0 12732 1391 0 0 10554 1587 0 0 427 0 0 0 0 0 427 0 0 1.03125 1.03125 -56.1624 -1.03125 0 0 666494. 2306.21 0.29 0.02 0.10 -1 -1 0.29 0.00518371 0.00456743 61 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.64 vpr 61.35 MiB -1 -1 0.09 20220 1 0.01 -1 -1 32932 -1 -1 10 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62824 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 22.7 MiB 0.03 682 61.4 MiB 0.04 0.00 1.33907 -56.3298 -1.33907 1.33907 0.91 0.000122395 9.9148e-05 0.00828277 0.00671991 30 1230 16 6.64007e+06 125580 526063. 1820.29 0.77 0.0259686 0.0218478 22546 126617 -1 1109 14 514 514 35117 8414 0 0 35117 8414 514 514 0 0 1820 1427 0 0 2309 1903 0 0 514 514 0 0 14690 2036 0 0 15270 2020 0 0 514 0 0 0 0 0 514 0 0 1.12825 1.12825 -63.146 -1.12825 0 0 666494. 2306.21 0.29 0.02 0.10 -1 -1 0.29 0.00533274 0.00472339 68 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.66 vpr 61.35 MiB -1 -1 0.11 20120 1 0.01 -1 -1 32876 -1 -1 10 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62824 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 22.9 MiB 0.04 670 61.4 MiB 0.05 0.00 1.59018 -60.127 -1.59018 1.59018 0.89 0.000123359 9.7782e-05 0.00907617 0.00737659 32 1324 14 6.64007e+06 125580 554710. 1919.41 0.77 0.0277024 0.0233536 22834 132086 -1 1178 15 533 533 37954 8997 0 0 37954 8997 533 533 0 0 1944 1526 0 0 2769 2188 0 0 533 533 0 0 17215 1978 0 0 14960 2239 0 0 533 0 0 0 0 0 533 0 0 1.17025 1.17025 -67.7861 -1.17025 0 0 701300. 2426.64 0.29 0.02 0.11 -1 -1 0.29 0.00581813 0.00513704 73 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.67 vpr 61.45 MiB -1 -1 0.10 20112 1 0.01 -1 -1 33012 -1 -1 11 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62920 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 22.8 MiB 0.04 879 61.4 MiB 0.06 0.00 1.63418 -74.344 -1.63418 1.63418 0.89 0.00014386 0.0001154 0.0112301 0.00917425 30 1643 20 6.64007e+06 138138 526063. 1820.29 0.77 0.0346134 0.0292398 22546 126617 -1 1479 16 688 688 50041 11485 0 0 50041 11485 688 688 0 0 2431 1950 0 0 3102 2543 0 0 688 688 0 0 23885 2622 0 0 19247 2994 0 0 688 0 0 0 0 0 688 0 0 1.12825 1.12825 -80.5266 -1.12825 0 0 666494. 2306.21 0.27 0.03 0.10 -1 -1 0.27 0.00704958 0.00619527 85 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.70 vpr 61.62 MiB -1 -1 0.09 20072 1 0.01 -1 -1 33068 -1 -1 13 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63104 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 23.1 MiB 0.04 893 61.6 MiB 0.07 0.00 1.90729 -84.2671 -1.90729 1.90729 0.89 0.000167503 0.000136799 0.0128498 0.0105727 30 1689 14 6.64007e+06 163254 526063. 1820.29 0.76 0.0378795 0.0320634 22546 126617 -1 1513 16 628 628 41389 10074 0 0 41389 10074 628 628 0 0 2196 1724 0 0 2849 2317 0 0 628 628 0 0 18511 2227 0 0 16577 2550 0 0 628 0 0 0 0 0 628 0 0 1.24525 1.24525 -90.1643 -1.24525 0 0 666494. 2306.21 0.26 0.03 0.10 -1 -1 0.26 0.00806398 0.00713628 97 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.96 vpr 62.42 MiB -1 -1 0.12 20332 1 0.01 -1 -1 33200 -1 -1 19 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63916 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.5 MiB 0.06 1383 62.4 MiB 0.12 0.00 2.54151 -141.961 -2.54151 2.54151 0.92 0.000273925 0.000225984 0.0198147 0.0165254 32 2747 19 6.64007e+06 238602 554710. 1919.41 0.87 0.0634725 0.0547417 22834 132086 -1 2454 15 1081 1081 93847 21564 0 0 93847 21564 1081 1081 0 0 4227 3405 0 0 6105 4728 0 0 1081 1081 0 0 41031 5635 0 0 40322 5634 0 0 1081 0 0 0 0 0 1081 0 0 1.49545 1.49545 -145.942 -1.49545 0 0 701300. 2426.64 0.28 0.05 0.11 -1 -1 0.28 0.0118463 0.0105643 145 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.21 vpr 62.76 MiB -1 -1 0.12 20536 1 0.02 -1 -1 33316 -1 -1 25 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64268 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1680 62.8 MiB 0.21 0.01 3.17573 -204.033 -3.17573 3.17573 0.92 0.000439871 0.000379521 0.0327444 0.0279182 32 3649 22 6.64007e+06 313950 554710. 1919.41 0.98 0.100701 0.088574 22834 132086 -1 3161 13 1318 1318 106210 26108 0 0 106210 26108 1318 1318 0 0 5128 4124 0 0 7094 5719 0 0 1318 1318 0 0 47021 6626 0 0 44331 7003 0 0 1318 0 0 0 0 0 1318 0 0 1.79745 1.79745 -202.648 -1.79745 0 0 701300. 2426.64 0.27 0.06 0.11 -1 -1 0.27 0.0156043 0.0141416 193 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.94 vpr 60.45 MiB -1 -1 0.08 19980 1 0.01 -1 -1 32976 -1 -1 2 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61896 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 22.0 MiB 0.01 57 60.4 MiB 0.00 0.00 0.669135 -6.17573 -0.669135 0.669135 0.88 1.974e-05 1.4228e-05 0.000491931 0.000384189 14 125 7 6.65987e+06 25356 279208. 966.117 0.42 0.00350525 0.00280292 19378 63921 -1 130 6 28 28 1760 485 0 0 1760 485 28 28 0 0 118 85 0 0 143 133 0 0 28 28 0 0 663 122 0 0 780 89 0 0 28 0 0 0 0 0 28 0 0 0.789335 0.789335 -7.97873 -0.789335 0 0 355633. 1230.56 0.17 0.00 0.05 -1 -1 0.17 0.000772367 0.000682072 10 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.10 vpr 60.44 MiB -1 -1 0.09 19832 1 0.01 -1 -1 32932 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61892 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.0 MiB 0.01 44 60.4 MiB 0.00 0.00 0.660848 -7.29716 -0.660848 0.660848 0.87 2.2851e-05 1.6561e-05 0.0007991 0.000619282 20 176 13 6.65987e+06 25356 394039. 1363.46 0.55 0.00467997 0.00375898 20530 87850 -1 148 7 62 62 4009 1332 0 0 4009 1332 62 62 0 0 288 248 0 0 346 310 0 0 62 62 0 0 1348 336 0 0 1903 314 0 0 62 0 0 0 0 0 62 0 0 0.83871 0.83871 -10.4442 -0.83871 0 0 477104. 1650.88 0.20 0.01 0.07 -1 -1 0.20 0.000958252 0.00084554 13 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.42 vpr 60.53 MiB -1 -1 0.09 19748 1 0.00 -1 -1 32936 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61980 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 22.0 MiB 0.01 65 60.5 MiB 0.01 0.00 0.682848 -9.22145 -0.682848 0.682848 0.87 2.7801e-05 2.062e-05 0.0009077 0.000716769 30 201 10 6.65987e+06 25356 526063. 1820.29 0.72 0.00518562 0.00422547 22546 126617 -1 169 8 84 84 3840 1224 0 0 3840 1224 84 84 0 0 302 252 0 0 372 318 0 0 84 84 0 0 1288 284 0 0 1710 202 0 0 84 0 0 0 0 0 84 0 0 0.801989 0.801989 -12.4615 -0.801989 0 0 666494. 2306.21 0.30 0.01 0.10 -1 -1 0.30 0.00125879 0.00111344 16 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.07 vpr 60.37 MiB -1 -1 0.09 19892 1 0.01 -1 -1 32884 -1 -1 4 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61820 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 21.8 MiB 0.01 207 60.4 MiB 0.00 0.00 0.704848 -15.3661 -0.704848 0.704848 0.86 2.9341e-05 2.1938e-05 0.000505193 0.000425751 22 401 14 6.65987e+06 50712 420624. 1455.45 0.55 0.00564719 0.00459482 20818 92861 -1 352 11 155 155 12236 2965 0 0 12236 2965 155 155 0 0 596 512 0 0 758 687 0 0 155 155 0 0 5731 735 0 0 4841 721 0 0 155 0 0 0 0 0 155 0 0 0.972389 0.972389 -18.9026 -0.972389 0 0 500653. 1732.36 0.21 0.01 0.07 -1 -1 0.21 0.00153073 0.00132717 20 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.04 vpr 60.53 MiB -1 -1 0.09 19756 1 0.01 -1 -1 32764 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61984 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 21.9 MiB 0.01 113 60.5 MiB 0.01 0.00 0.944958 -13.8003 -0.944958 0.944958 0.88 2.9241e-05 2.1528e-05 0.00105684 0.000839916 20 343 16 6.65987e+06 38034 394039. 1363.46 0.50 0.00327219 0.00273188 20530 87850 -1 288 19 215 215 13666 4455 0 0 13666 4455 215 215 0 0 848 736 0 0 1569 1221 0 0 215 215 0 0 5954 1062 0 0 4865 1006 0 0 215 0 0 0 0 0 215 0 0 1.30385 1.30385 -20.7084 -1.30385 0 0 477104. 1650.88 0.20 0.01 0.07 -1 -1 0.20 0.00227889 0.00192959 22 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.33 vpr 60.59 MiB -1 -1 0.09 19752 1 0.01 -1 -1 32876 -1 -1 4 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62040 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 21.9 MiB 0.01 100 60.6 MiB 0.01 0.00 0.955958 -15.1302 -0.955958 0.955958 0.87 4.0243e-05 3.0021e-05 0.0017033 0.00134071 26 341 15 6.65987e+06 50712 477104. 1650.88 0.67 0.00861699 0.00702556 21682 110474 -1 317 18 239 239 14945 5033 0 0 14945 5033 239 239 0 0 965 861 0 0 1732 1423 0 0 239 239 0 0 6637 1199 0 0 5133 1072 0 0 239 0 0 0 0 0 239 0 0 1.10745 1.10745 -23.126 -1.10745 0 0 585099. 2024.56 0.26 0.01 0.09 -1 -1 0.26 0.00264854 0.00227476 25 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.28 vpr 60.59 MiB -1 -1 0.09 19948 1 0.00 -1 -1 32908 -1 -1 4 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62040 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 22.2 MiB 0.01 187 60.6 MiB 0.01 0.00 0.966958 -18.755 -0.966958 0.966958 0.87 4.3944e-05 3.2999e-05 0.00151624 0.00120675 26 435 10 6.65987e+06 50712 477104. 1650.88 0.65 0.00860047 0.00706705 21682 110474 -1 417 13 197 197 16310 4087 0 0 16310 4087 197 197 0 0 777 626 0 0 1201 998 0 0 197 197 0 0 6640 1092 0 0 7298 977 0 0 197 0 0 0 0 0 197 0 0 1.11845 1.11845 -26.782 -1.11845 0 0 585099. 2024.56 0.24 0.01 0.09 -1 -1 0.24 0.00250085 0.00219212 28 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 3.26 vpr 60.57 MiB -1 -1 0.09 19932 1 0.01 -1 -1 32756 -1 -1 5 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62028 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 22.1 MiB 0.01 146 60.6 MiB 0.01 0.00 0.977958 -19.3857 -0.977958 0.977958 0.88 5.0702e-05 3.8877e-05 0.00174317 0.00140362 24 463 19 6.65987e+06 63390 448715. 1552.65 0.59 0.0098599 0.00812698 21394 104001 -1 410 15 222 222 15818 4909 0 0 15818 4909 222 222 0 0 897 721 0 0 1548 1206 0 0 222 222 0 0 7106 1308 0 0 5823 1230 0 0 222 0 0 0 0 0 222 0 0 1.12359 1.12359 -28.6122 -1.12359 0 0 554710. 1919.41 0.24 0.01 0.09 -1 -1 0.24 0.00281424 0.00244536 31 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.32 vpr 60.57 MiB -1 -1 0.09 19796 1 0.01 -1 -1 32900 -1 -1 5 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62028 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 22.1 MiB 0.01 160 60.6 MiB 0.01 0.00 0.988958 -21.59 -0.988958 0.988958 0.87 4.795e-05 3.641e-05 0.00206646 0.00165536 26 454 14 6.65987e+06 63390 477104. 1650.88 0.68 0.0109306 0.00901606 21682 110474 -1 417 14 246 246 16130 5021 0 0 16130 5021 246 246 0 0 957 778 0 0 1364 1135 0 0 246 246 0 0 7205 1414 0 0 6112 1202 0 0 246 0 0 0 0 0 246 0 0 1.10745 1.10745 -30.2181 -1.10745 0 0 585099. 2024.56 0.25 0.01 0.09 -1 -1 0.25 0.00293501 0.00253373 34 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 3.39 vpr 60.61 MiB -1 -1 0.09 19888 1 0.00 -1 -1 32868 -1 -1 5 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62060 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 22.1 MiB 0.01 193 60.6 MiB 0.01 0.00 0.999958 -24.0458 -0.999958 0.999958 0.88 6.3737e-05 4.8627e-05 0.00178926 0.00144738 26 572 17 6.65987e+06 63390 477104. 1650.88 0.69 0.0116572 0.00960243 21682 110474 -1 496 15 322 322 19673 6431 0 0 19673 6431 322 322 0 0 1323 1109 0 0 1977 1676 0 0 322 322 0 0 9021 1550 0 0 6708 1452 0 0 322 0 0 0 0 0 322 0 0 1.15145 1.15145 -34.9313 -1.15145 0 0 585099. 2024.56 0.26 0.01 0.09 -1 -1 0.26 0.00328814 0.00287163 37 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.42 vpr 60.46 MiB -1 -1 0.10 19988 1 0.01 -1 -1 32908 -1 -1 6 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61912 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 21.8 MiB 0.02 191 60.5 MiB 0.01 0.00 1.01096 -25.6711 -1.01096 1.01096 0.88 6.1933e-05 4.7536e-05 0.00212032 0.00169718 28 580 16 6.65987e+06 76068 500653. 1732.36 0.71 0.0127014 0.0105347 21970 115934 -1 530 14 318 318 18921 6202 0 0 18921 6202 318 318 0 0 1261 1068 0 0 1855 1592 0 0 318 318 0 0 8308 1508 0 0 6861 1398 0 0 318 0 0 0 0 0 318 0 0 1.18959 1.18959 -36.7084 -1.18959 0 0 612192. 2118.31 0.25 0.01 0.09 -1 -1 0.25 0.00342719 0.00300189 40 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 3.53 vpr 60.64 MiB -1 -1 0.09 19892 1 0.01 -1 -1 32916 -1 -1 7 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62100 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 22.0 MiB 0.05 267 60.6 MiB 0.01 0.00 1.02196 -29.2306 -1.02196 1.02196 0.88 7.0599e-05 5.5102e-05 0.00233941 0.00189708 30 640 16 6.65987e+06 88746 526063. 1820.29 0.75 0.0138416 0.0115796 22546 126617 -1 518 17 307 307 15694 4712 0 0 15694 4712 307 307 0 0 1090 858 0 0 1434 1203 0 0 307 307 0 0 7161 931 0 0 5395 1106 0 0 307 0 0 0 0 0 307 0 0 1.00925 1.00925 -36.217 -1.00925 0 0 666494. 2306.21 0.29 0.02 0.11 -1 -1 0.29 0.00402252 0.00351325 44 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.56 vpr 60.78 MiB -1 -1 0.09 19748 1 0.01 -1 -1 32904 -1 -1 7 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62240 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 22.1 MiB 0.02 221 60.8 MiB 0.02 0.00 1.26207 -29.3041 -1.26207 1.26207 0.90 7.6785e-05 6.0455e-05 0.00353532 0.00285144 32 626 25 6.65987e+06 88746 554710. 1919.41 0.77 0.0168329 0.0140154 22834 132086 -1 508 16 358 358 21489 6928 0 0 21489 6928 358 358 0 0 1381 1088 0 0 2370 1892 0 0 358 358 0 0 9290 1758 0 0 7732 1474 0 0 358 0 0 0 0 0 358 0 0 1.07839 1.07839 -38.9676 -1.07839 0 0 701300. 2426.64 0.29 0.02 0.11 -1 -1 0.29 0.00411521 0.00357272 46 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.49 vpr 61.02 MiB -1 -1 0.10 19820 1 0.01 -1 -1 32884 -1 -1 7 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62488 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 22.5 MiB 0.02 248 61.0 MiB 0.02 0.00 1.27307 -32.2733 -1.27307 1.27307 0.88 7.7147e-05 5.9659e-05 0.00313836 0.00252114 30 725 33 6.65987e+06 88746 526063. 1820.29 0.74 0.0184761 0.015357 22546 126617 -1 483 15 247 247 10443 3338 0 0 10443 3338 247 247 0 0 869 629 0 0 1086 939 0 0 247 247 0 0 3819 651 0 0 4175 625 0 0 247 0 0 0 0 0 247 0 0 1.04025 1.04025 -39.4456 -1.04025 0 0 666494. 2306.21 0.27 0.01 0.10 -1 -1 0.27 0.00411562 0.0036093 49 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.31 vpr 60.81 MiB -1 -1 0.08 20192 1 0.01 -1 -1 32892 -1 -1 8 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62268 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 22.3 MiB 0.02 519 60.8 MiB 0.02 0.00 1.29507 -44.6155 -1.29507 1.29507 0.86 9.1004e-05 7.1392e-05 0.00490898 0.00393834 26 1054 16 6.65987e+06 101424 477104. 1650.88 0.66 0.0186813 0.0155631 21682 110474 -1 971 20 427 427 41157 9422 0 0 41157 9422 427 427 0 0 1741 1510 0 0 2823 2221 0 0 427 427 0 0 18678 2332 0 0 17061 2505 0 0 427 0 0 0 0 0 427 0 0 1.14439 1.14439 -53.7862 -1.14439 0 0 585099. 2024.56 0.24 0.02 0.08 -1 -1 0.24 0.00555432 0.00482103 55 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.47 vpr 60.54 MiB -1 -1 0.09 20208 1 0.01 -1 -1 32916 -1 -1 8 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61988 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 21.9 MiB 0.02 639 60.5 MiB 0.04 0.00 1.31707 -50.03 -1.31707 1.31707 0.86 0.000102404 8.1424e-05 0.00779074 0.00631976 32 1130 18 6.65987e+06 101424 554710. 1919.41 0.75 0.0235597 0.0197378 22834 132086 -1 1075 15 472 472 39049 9166 0 0 39049 9166 472 472 0 0 1919 1572 0 0 2929 2373 0 0 472 472 0 0 18068 2026 0 0 15189 2251 0 0 472 0 0 0 0 0 472 0 0 1.34665 1.34665 -63.2918 -1.34665 0 0 701300. 2426.64 0.28 0.02 0.10 -1 -1 0.28 0.00508875 0.00450007 61 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.61 vpr 61.02 MiB -1 -1 0.11 20128 1 0.01 -1 -1 33020 -1 -1 10 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62484 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 22.6 MiB 0.02 473 61.0 MiB 0.03 0.00 1.33907 -49.5986 -1.33907 1.33907 0.85 0.000117359 9.4778e-05 0.00517388 0.00423426 32 1201 26 6.65987e+06 126780 554710. 1919.41 0.81 0.0248236 0.0209081 22834 132086 -1 1004 17 484 484 35299 9579 0 0 35299 9579 484 484 0 0 2015 1715 0 0 3329 2722 0 0 484 484 0 0 14010 2182 0 0 14977 1992 0 0 484 0 0 0 0 0 484 0 0 1.28659 1.28659 -61.7804 -1.28659 0 0 701300. 2426.64 0.30 0.02 0.11 -1 -1 0.30 0.00613899 0.00540504 68 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 3.64 vpr 61.08 MiB -1 -1 0.10 20116 1 0.01 -1 -1 32872 -1 -1 10 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62548 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 22.6 MiB 0.03 689 61.1 MiB 0.05 0.00 1.59018 -61.329 -1.59018 1.59018 0.87 0.000108008 8.6921e-05 0.00853754 0.00694292 32 1408 15 6.65987e+06 126780 554710. 1919.41 0.79 0.0272986 0.0230023 22834 132086 -1 1223 18 622 622 59429 13671 0 0 59429 13671 622 622 0 0 2516 2105 0 0 3744 3024 0 0 622 622 0 0 25666 3762 0 0 26259 3536 0 0 622 0 0 0 0 0 622 0 0 1.23039 1.23039 -70.6199 -1.23039 0 0 701300. 2426.64 0.28 0.03 0.11 -1 -1 0.28 0.00690861 0.00607851 73 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.69 vpr 61.21 MiB -1 -1 0.10 20064 1 0.02 -1 -1 33064 -1 -1 11 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62676 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 22.5 MiB 0.03 815 61.2 MiB 0.05 0.00 1.63418 -73.5026 -1.63418 1.63418 0.87 0.000140796 0.000112783 0.0108729 0.00882642 32 1625 12 6.65987e+06 139458 554710. 1919.41 0.82 0.0324444 0.0274263 22834 132086 -1 1492 17 631 631 59411 13838 0 0 59411 13838 631 631 0 0 2597 2158 0 0 4287 3474 0 0 631 631 0 0 26946 3373 0 0 24319 3571 0 0 631 0 0 0 0 0 631 0 0 1.36745 1.36745 -86.957 -1.36745 0 0 701300. 2426.64 0.30 0.03 0.11 -1 -1 0.30 0.00810099 0.00719713 85 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.68 vpr 61.24 MiB -1 -1 0.10 20248 1 0.01 -1 -1 32920 -1 -1 13 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62708 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 22.6 MiB 0.03 924 61.2 MiB 0.07 0.00 1.90729 -85.7095 -1.90729 1.90729 0.89 0.000161157 0.000131443 0.0126483 0.0104024 28 1835 14 6.65987e+06 164814 500653. 1732.36 0.77 0.0384131 0.0326917 21970 115934 -1 1647 18 712 712 46277 12022 0 0 46277 12022 712 712 0 0 2720 2191 0 0 3798 3227 0 0 712 712 0 0 20105 2512 0 0 18230 2668 0 0 712 0 0 0 0 0 712 0 0 1.30539 1.30539 -94.1262 -1.30539 0 0 612192. 2118.31 0.27 0.03 0.10 -1 -1 0.27 0.00915639 0.00811758 97 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.85 vpr 62.17 MiB -1 -1 0.12 20512 1 0.02 -1 -1 33200 -1 -1 19 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63664 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 23.2 MiB 0.04 1384 62.2 MiB 0.12 0.00 2.54151 -140.639 -2.54151 2.54151 0.87 0.000270022 0.000224554 0.0205947 0.0173295 30 2581 30 6.65987e+06 240882 526063. 1820.29 0.83 0.0694343 0.0598696 22546 126617 -1 2288 16 876 876 58302 14348 0 0 58302 14348 876 876 0 0 3219 2506 0 0 3961 3435 0 0 876 876 0 0 24872 3334 0 0 24498 3321 0 0 876 0 0 0 0 0 876 0 0 1.53239 1.53239 -142.97 -1.53239 0 0 666494. 2306.21 0.28 0.04 0.10 -1 -1 0.28 0.0123888 0.0110655 145 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.36 vpr 62.88 MiB -1 -1 0.12 20624 1 0.02 -1 -1 33316 -1 -1 25 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64388 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1704 62.9 MiB 0.21 0.00 3.17573 -204.754 -3.17573 3.17573 0.88 0.000394973 0.000332064 0.0334157 0.0285535 32 3928 28 6.65987e+06 316950 554710. 1919.41 1.11 0.110496 0.0975129 22834 132086 -1 3230 16 1497 1497 128513 31845 0 0 128513 31845 1497 1497 0 0 6020 5058 0 0 9226 7559 0 0 1497 1497 0 0 55414 8149 0 0 54859 8085 0 0 1497 0 0 0 0 0 1497 0 0 1.71145 1.71145 -195.014 -1.71145 0 0 701300. 2426.64 0.30 0.07 0.11 -1 -1 0.30 0.0195464 0.0177073 193 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 4.18 vpr 61.32 MiB -1 -1 0.09 19788 1 0.01 -1 -1 32756 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62796 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.8 MiB 0.02 23 61.3 MiB 0.00 0.00 0.712895 -6.35084 -0.712895 0.712895 0.91 1.6949e-05 1.1718e-05 0.000712191 0.000547224 26 74 9 6.95648e+06 14475.7 503264. 1741.40 1.45 0.00674843 0.00530991 24322 120374 -1 68 10 38 38 1360 633 0 0 1360 633 38 38 0 0 159 147 0 0 274 233 0 0 38 38 0 0 354 118 0 0 497 59 0 0 38 0 0 0 0 0 38 0 0 0.74674 0.74674 -7.60383 -0.74674 0 0 618332. 2139.56 0.26 0.01 0.10 -1 -1 0.26 0.000951703 0.000825174 5 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 2.93 vpr 61.36 MiB -1 -1 0.08 19880 1 0.01 -1 -1 32992 -1 -1 1 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62836 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.8 MiB 0.02 51 61.4 MiB 0.00 0.00 0.583992 -7.62477 -0.583992 0.583992 0.87 2.253e-05 1.5333e-05 0.000391876 0.000325027 14 103 7 6.95648e+06 14475.7 292583. 1012.40 0.42 0.00423689 0.00339162 22018 70521 -1 97 9 29 29 1512 605 0 0 1512 605 29 29 0 0 139 118 0 0 155 143 0 0 29 29 0 0 474 145 0 0 686 141 0 0 29 0 0 0 0 0 29 0 0 0.74674 0.74674 -10.2561 -0.74674 0 0 376052. 1301.22 0.16 0.01 0.06 -1 -1 0.16 0.00104303 0.000912293 7 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 4.26 vpr 61.06 MiB -1 -1 0.09 19880 1 0.01 -1 -1 32992 -1 -1 1 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62528 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 22.4 MiB 0.03 45 61.1 MiB 0.00 0.00 0.701895 -10.5327 -0.701895 0.701895 0.87 2.642e-05 1.9474e-05 0.000874028 0.0006858 26 150 14 6.95648e+06 14475.7 503264. 1741.40 1.59 0.00923659 0.00736105 24322 120374 -1 120 8 45 45 2153 648 0 0 2153 648 45 45 0 0 144 107 0 0 202 153 0 0 45 45 0 0 809 170 0 0 908 128 0 0 45 0 0 0 0 0 45 0 0 0.709292 0.709292 -12.1616 -0.709292 0 0 618332. 2139.56 0.24 0.01 0.10 -1 -1 0.24 0.00118777 0.00105163 8 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 3.09 vpr 61.44 MiB -1 -1 0.09 19692 1 0.01 -1 -1 32752 -1 -1 2 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62916 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 22.8 MiB 0.03 82 61.4 MiB 0.01 0.00 0.745895 -13.2443 -0.745895 0.745895 0.89 3.021e-05 2.2282e-05 0.00106876 0.000833219 18 208 9 6.95648e+06 28951.4 376052. 1301.22 0.49 0.00574404 0.0046525 22882 88689 -1 203 12 91 91 4254 1489 0 0 4254 1489 91 91 0 0 366 304 0 0 438 381 0 0 91 91 0 0 2036 292 0 0 1232 330 0 0 91 0 0 0 0 0 91 0 0 0.834592 0.834592 -16.7527 -0.834592 0 0 470940. 1629.55 0.19 0.01 0.07 -1 -1 0.19 0.0015464 0.00134719 10 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 3.43 vpr 61.32 MiB -1 -1 0.09 19720 1 0.00 -1 -1 32884 -1 -1 2 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 22.7 MiB 0.04 80 61.3 MiB 0.01 0.00 0.727332 -14.553 -0.727332 0.727332 0.91 3.536e-05 2.5963e-05 0.00174068 0.00135669 26 232 26 6.95648e+06 28951.4 503264. 1741.40 0.69 0.00886939 0.00721123 24322 120374 -1 215 12 157 157 10537 3428 0 0 10537 3428 157 157 0 0 705 611 0 0 967 828 0 0 157 157 0 0 3902 886 0 0 4649 789 0 0 157 0 0 0 0 0 157 0 0 1.10323 1.10323 -18.4373 -1.10323 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.00185516 0.0016182 11 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 3.45 vpr 61.46 MiB -1 -1 0.09 19880 1 0.00 -1 -1 32940 -1 -1 2 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62936 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 23.0 MiB 0.04 249 61.5 MiB 0.01 0.00 0.732132 -19.7838 -0.732132 0.732132 0.93 3.815e-05 2.851e-05 0.00119255 0.000960175 26 448 13 6.95648e+06 28951.4 503264. 1741.40 0.69 0.00804368 0.00662772 24322 120374 -1 414 12 178 178 13192 3261 0 0 13192 3261 178 178 0 0 703 601 0 0 977 829 0 0 178 178 0 0 6369 698 0 0 4787 777 0 0 178 0 0 0 0 0 178 0 0 0.977932 0.977932 -24.8707 -0.977932 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.0021679 0.00190856 13 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 3.45 vpr 61.03 MiB -1 -1 0.09 19948 1 0.01 -1 -1 32748 -1 -1 2 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62496 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 22.6 MiB 0.04 119 61.0 MiB 0.01 0.00 0.760332 -18.4143 -0.760332 0.760332 0.89 4.0585e-05 3.0758e-05 0.00232703 0.00183479 26 366 12 6.95648e+06 28951.4 503264. 1741.40 0.68 0.00955603 0.00783015 24322 120374 -1 336 12 228 228 13751 4440 0 0 13751 4440 228 228 0 0 872 746 0 0 1261 1021 0 0 228 228 0 0 5791 1260 0 0 5371 957 0 0 228 0 0 0 0 0 228 0 0 1.07503 1.07503 -26.1355 -1.07503 0 0 618332. 2139.56 0.26 0.01 0.10 -1 -1 0.26 0.00230453 0.0020168 14 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 3.57 vpr 61.23 MiB -1 -1 0.10 19724 1 0.01 -1 -1 32880 -1 -1 2 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 22.7 MiB 0.04 142 61.2 MiB 0.01 0.00 0.771332 -20.8321 -0.771332 0.771332 0.89 4.7362e-05 3.6083e-05 0.00173276 0.00140281 30 467 20 6.95648e+06 28951.4 556674. 1926.21 0.76 0.0104902 0.00866759 25186 138497 -1 368 20 283 283 15488 4461 0 0 15488 4461 283 283 0 0 921 753 0 0 1367 1008 0 0 283 283 0 0 5595 1065 0 0 7039 1069 0 0 283 0 0 0 0 0 283 0 0 1.09703 1.09703 -27.8422 -1.09703 0 0 706193. 2443.58 0.28 0.01 0.11 -1 -1 0.28 0.00322953 0.00277838 16 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 4.04 vpr 61.57 MiB -1 -1 0.08 19772 1 0.00 -1 -1 32744 -1 -1 3 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63044 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 23.1 MiB 0.04 219 61.6 MiB 0.01 0.00 0.782332 -24.5139 -0.782332 0.782332 0.89 5.9899e-05 4.1069e-05 0.00209907 0.00168803 34 572 19 6.95648e+06 43427 618332. 2139.56 1.16 0.0172638 0.0141377 25762 151098 -1 504 12 261 261 22900 5404 0 0 22900 5404 261 261 0 0 992 870 0 0 1589 1195 0 0 261 261 0 0 8784 1586 0 0 11013 1231 0 0 261 0 0 0 0 0 261 0 0 1.07503 1.07503 -31.4956 -1.07503 0 0 787024. 2723.27 0.30 0.01 0.13 -1 -1 0.30 0.00292506 0.00259626 17 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 4.07 vpr 61.61 MiB -1 -1 0.08 19812 1 0.01 -1 -1 32940 -1 -1 3 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63088 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.1 MiB 0.04 284 61.6 MiB 0.01 0.00 0.793332 -28.0814 -0.793332 0.793332 0.91 5.8048e-05 4.4302e-05 0.00233795 0.0018721 34 712 26 6.95648e+06 43427 618332. 2139.56 1.21 0.0199715 0.016367 25762 151098 -1 598 17 303 303 30169 6782 0 0 30169 6782 303 303 0 0 1104 953 0 0 1912 1400 0 0 303 303 0 0 13881 1842 0 0 12666 1981 0 0 303 0 0 0 0 0 303 0 0 1.25053 1.25053 -37.5643 -1.25053 0 0 787024. 2723.27 0.31 0.02 0.12 -1 -1 0.31 0.00355348 0.00308843 19 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 3.63 vpr 61.54 MiB -1 -1 0.09 19876 1 0.01 -1 -1 32884 -1 -1 3 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63016 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 22.9 MiB 0.04 184 61.5 MiB 0.02 0.00 0.826332 -26.7096 -0.826332 0.826332 0.90 5.5162e-05 4.2122e-05 0.00452971 0.00351894 32 572 22 6.95648e+06 43427 586450. 2029.24 0.79 0.0160885 0.0131947 25474 144626 -1 408 18 393 393 23939 8399 0 0 23939 8399 393 393 0 0 1558 1415 0 0 3000 2131 0 0 393 393 0 0 9262 2124 0 0 9333 1943 0 0 393 0 0 0 0 0 393 0 0 1.25533 1.25533 -37.517 -1.25533 0 0 744469. 2576.02 0.28 0.02 0.11 -1 -1 0.28 0.00416053 0.00362697 20 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 4.12 vpr 61.53 MiB -1 -1 0.09 19856 1 0.01 -1 -1 32968 -1 -1 4 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63008 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 22.9 MiB 0.03 243 61.5 MiB 0.02 0.00 0.826332 -29.7383 -0.826332 0.826332 0.89 6.0366e-05 4.5694e-05 0.00390125 0.00307092 34 720 37 6.95648e+06 57902.7 618332. 2139.56 1.23 0.0251871 0.0207404 25762 151098 -1 501 19 391 391 23861 7100 0 0 23861 7100 391 391 0 0 1401 1208 0 0 2387 1684 0 0 391 391 0 0 8952 1777 0 0 10339 1649 0 0 391 0 0 0 0 0 391 0 0 1.17403 1.17403 -41.2642 -1.17403 0 0 787024. 2723.27 0.32 0.02 0.13 -1 -1 0.32 0.00450124 0.00393839 23 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 3.74 vpr 61.69 MiB -1 -1 0.09 20300 1 0.01 -1 -1 32936 -1 -1 3 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63168 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 23.3 MiB 0.05 218 61.7 MiB 0.02 0.00 1.08336 -32.4963 -1.08336 1.08336 0.93 7.5345e-05 5.8248e-05 0.00470432 0.00377096 30 794 19 6.95648e+06 43427 556674. 1926.21 0.84 0.0177366 0.0147643 25186 138497 -1 619 17 465 465 30267 8939 0 0 30267 8939 465 465 0 0 1534 1362 0 0 2352 1629 0 0 465 465 0 0 13901 2588 0 0 11550 2430 0 0 465 0 0 0 0 0 465 0 0 1.17203 1.17203 -44.4541 -1.17203 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.00425247 0.00374642 24 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 3.99 vpr 61.63 MiB -1 -1 0.09 20252 1 0.01 -1 -1 32804 -1 -1 4 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63112 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.2 MiB 0.07 320 61.6 MiB 0.02 0.00 1.09436 -35.6307 -1.09436 1.09436 0.87 7.9044e-05 6.2377e-05 0.00395965 0.00320893 34 810 17 6.95648e+06 57902.7 618332. 2139.56 1.17 0.0251469 0.020989 25762 151098 -1 777 14 446 446 37419 10002 0 0 37419 10002 446 446 0 0 1571 1340 0 0 2705 1885 0 0 446 446 0 0 16603 2624 0 0 15648 3261 0 0 446 0 0 0 0 0 446 0 0 1.45563 1.45563 -55.2555 -1.45563 0 0 787024. 2723.27 0.29 0.02 0.11 -1 -1 0.29 0.0042099 0.00373295 25 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 4.37 vpr 61.51 MiB -1 -1 0.08 19936 1 0.01 -1 -1 32876 -1 -1 4 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62988 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.0 MiB 0.08 286 61.5 MiB 0.03 0.00 1.11636 -38.5141 -1.11636 1.11636 0.93 9.0771e-05 7.1327e-05 0.00588147 0.00474012 34 751 19 6.95648e+06 57902.7 618332. 2139.56 1.40 0.0320391 0.0268883 25762 151098 -1 627 16 434 434 31421 9318 0 0 31421 9318 434 434 0 0 1730 1557 0 0 2688 2079 0 0 434 434 0 0 12193 2533 0 0 13942 2281 0 0 434 0 0 0 0 0 434 0 0 1.22703 1.22703 -52.936 -1.22703 0 0 787024. 2723.27 0.29 0.02 0.12 -1 -1 0.29 0.00497342 0.00438797 28 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 4.39 vpr 61.77 MiB -1 -1 0.10 20144 1 0.01 -1 -1 32932 -1 -1 4 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63256 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 23.2 MiB 0.09 326 61.8 MiB 0.03 0.00 1.13836 -44.8245 -1.13836 1.13836 0.90 0.000100684 7.9319e-05 0.00700859 0.00560862 36 916 16 6.95648e+06 57902.7 648988. 2245.63 1.38 0.0353965 0.0296783 26050 158493 -1 740 16 438 438 42953 10893 0 0 42953 10893 438 438 0 0 1596 1403 0 0 2572 1830 0 0 438 438 0 0 17992 3575 0 0 19917 3209 0 0 438 0 0 0 0 0 438 0 0 1.37433 1.37433 -59.2534 -1.37433 0 0 828058. 2865.25 0.34 0.02 0.13 -1 -1 0.34 0.00580201 0.00515731 31 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 4.14 vpr 61.93 MiB -1 -1 0.10 20140 1 0.01 -1 -1 32964 -1 -1 5 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63412 45 23 160 161 1 108 73 17 17 289 -1 unnamed_device 23.3 MiB 0.10 615 61.9 MiB 0.04 0.00 1.16036 -57.068 -1.16036 1.16036 0.86 0.000114156 8.6923e-05 0.00789417 0.00638637 34 1235 20 6.95648e+06 72378.4 618332. 2139.56 1.24 0.0386982 0.032418 25762 151098 -1 1129 16 522 522 48253 11121 0 0 48253 11121 522 522 0 0 1974 1700 0 0 2984 2209 0 0 522 522 0 0 21390 3013 0 0 20861 3155 0 0 522 0 0 0 0 0 522 0 0 1.27103 1.27103 -71.9689 -1.27103 0 0 787024. 2723.27 0.29 0.02 0.12 -1 -1 0.29 0.00592237 0.00522905 34 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 4.20 vpr 61.69 MiB -1 -1 0.10 20216 1 0.01 -1 -1 32908 -1 -1 5 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63168 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 23.2 MiB 0.10 664 61.7 MiB 0.04 0.00 1.18236 -62.5893 -1.18236 1.18236 0.88 0.000112453 8.8949e-05 0.00839497 0.00681169 34 1544 15 6.95648e+06 72378.4 618332. 2139.56 1.26 0.0403531 0.0339594 25762 151098 -1 1385 19 656 656 90366 18620 0 0 90366 18620 656 656 0 0 2377 2037 0 0 4082 2671 0 0 656 656 0 0 41421 6385 0 0 41174 6215 0 0 656 0 0 0 0 0 656 0 0 1.48863 1.48863 -82.4101 -1.48863 0 0 787024. 2723.27 0.30 0.03 0.12 -1 -1 0.30 0.00746863 0.00660451 37 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 4.75 vpr 61.83 MiB -1 -1 0.10 20180 1 0.00 -1 -1 32980 -1 -1 6 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63312 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 23.2 MiB 0.08 623 61.8 MiB 0.05 0.00 1.22636 -66.4966 -1.22636 1.22636 0.87 0.000140404 0.000111602 0.0113303 0.00918084 38 1468 27 6.95648e+06 86854.1 678818. 2348.85 1.69 0.0567753 0.0482773 26626 170182 -1 1297 16 701 701 60000 15412 0 0 60000 15412 701 701 0 0 2452 2146 0 0 3800 2702 0 0 701 701 0 0 25326 4397 0 0 27020 4765 0 0 701 0 0 0 0 0 701 0 0 1.66893 1.66893 -94.9295 -1.66893 0 0 902133. 3121.57 0.34 0.03 0.14 -1 -1 0.34 0.00783698 0.00698003 43 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 5.28 vpr 62.34 MiB -1 -1 0.11 20604 1 0.01 -1 -1 32968 -1 -1 7 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63840 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.8 MiB 0.09 738 62.3 MiB 0.07 0.00 1.50539 -77.9414 -1.50539 1.50539 0.90 0.000170559 0.000138524 0.0139312 0.0114868 38 1764 25 6.95648e+06 101330 678818. 2348.85 2.16 0.0700167 0.0604095 26626 170182 -1 1484 13 679 679 59456 14324 0 0 59456 14324 679 679 0 0 2456 2128 0 0 3561 2653 0 0 679 679 0 0 26525 3930 0 0 25556 4255 0 0 679 0 0 0 0 0 679 0 0 1.37903 1.37903 -97.4781 -1.37903 0 0 902133. 3121.57 0.34 0.03 0.14 -1 -1 0.34 0.00798998 0.00720099 49 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 5.79 vpr 63.01 MiB -1 -1 0.12 20336 1 0.01 -1 -1 33216 -1 -1 10 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64524 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1317 63.0 MiB 0.10 0.00 1.91642 -131.966 -1.91642 1.91642 0.92 0.000277237 0.000229184 0.0218934 0.0184089 48 2550 27 6.95648e+06 144757 865456. 2994.66 2.41 0.107554 0.0938362 28354 207349 -1 2300 23 1288 1288 191728 47465 0 0 191728 47465 1288 1288 0 0 4693 4169 0 0 10399 6097 0 0 1288 1288 0 0 89357 17145 0 0 84703 17478 0 0 1288 0 0 0 0 0 1288 0 0 1.54163 1.54163 -149.303 -1.54163 0 0 1.05005e+06 3633.38 0.40 0.08 0.18 -1 -1 0.40 0.018737 0.0168253 73 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 6.08 vpr 63.44 MiB -1 -1 0.13 20716 1 0.01 -1 -1 33304 -1 -1 13 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64964 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 24.5 MiB 0.12 1977 63.4 MiB 0.19 0.00 2.32745 -198.832 -2.32745 2.32745 0.91 0.00043172 0.000373148 0.0389158 0.0334633 56 3505 24 6.95648e+06 188184 973134. 3367.25 2.48 0.161035 0.142838 29794 239141 -1 3303 19 1587 1587 221298 43138 0 0 221298 43138 1587 1587 0 0 5658 4920 0 0 12267 7364 0 0 1587 1587 0 0 102266 13834 0 0 97933 13846 0 0 1587 0 0 0 0 0 1587 0 0 1.63473 1.63473 -207.195 -1.63473 0 0 1.19926e+06 4149.71 0.46 0.09 0.21 -1 -1 0.46 0.0230871 0.020963 97 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 4.22 vpr 61.06 MiB -1 -1 0.10 19772 1 0.00 -1 -1 32900 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62524 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 22.6 MiB 0.01 22 61.1 MiB 0.00 0.00 0.589542 -6.10608 -0.589542 0.589542 0.90 1.8299e-05 1.3048e-05 0.000726589 0.000548606 22 84 13 6.99608e+06 14715.7 443629. 1535.05 1.59 0.00909857 0.00711295 23458 102101 -1 65 8 42 42 1305 629 0 0 1305 629 42 42 0 0 161 148 0 0 272 233 0 0 42 42 0 0 318 116 0 0 470 48 0 0 42 0 0 0 0 0 42 0 0 0.74674 0.74674 -7.23378 -0.74674 0 0 531479. 1839.03 0.22 0.00 0.08 -1 -1 0.22 0.000808149 0.000702845 5 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 3.01 vpr 61.07 MiB -1 -1 0.09 19768 1 0.01 -1 -1 32748 -1 -1 1 9 0 0 exited with return code 2 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62540 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 22.6 MiB 0.01 51 61.1 MiB 0.00 0.00 0.583992 -7.50397 -0.583992 0.583992 0.92 2.267e-05 1.6529e-05 0.00038475 0.00031789 10 108 6 6.99608e+06 14715.7 202963. 702.294 0.33 0.00375165 0.00304482 21154 51703 -1 -1 -1 471 471 274971 251702 0 0 274971 251702 471 471 0 0 3158 3028 0 0 3652 3249 0 0 471 471 0 0 129670 117781 0 0 137549 126702 0 0 471 0 0 0 0 0 471 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0.12 0.13 0.05 -1 -1 0.12 -1 -1 7 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 3.87 vpr 60.71 MiB -1 -1 0.09 19784 1 0.01 -1 -1 32944 -1 -1 1 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62164 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 22.2 MiB 0.01 48 60.7 MiB 0.00 0.00 0.837432 -11.6988 -0.837432 0.837432 0.89 2.6937e-05 1.9585e-05 0.000804659 0.000639006 18 162 11 6.99608e+06 14715.7 376052. 1301.22 1.22 0.00357085 0.00295959 22882 88689 -1 144 6 56 56 2774 986 0 0 2774 986 56 56 0 0 248 211 0 0 295 259 0 0 56 56 0 0 969 207 0 0 1150 197 0 0 56 0 0 0 0 0 56 0 0 0.837432 0.837432 -14.3301 -0.837432 0 0 470940. 1629.55 0.20 0.01 0.07 -1 -1 0.20 0.00109177 0.000975187 8 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 3.18 vpr 61.10 MiB -1 -1 0.09 19856 1 0.01 -1 -1 32896 -1 -1 2 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62568 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 22.5 MiB 0.01 87 61.1 MiB 0.01 0.00 0.710132 -13.0889 -0.710132 0.710132 0.94 3.1117e-05 2.2923e-05 0.00113274 0.000889074 18 224 8 6.99608e+06 29431.4 376052. 1301.22 0.49 0.00269717 0.00227052 22882 88689 -1 215 11 87 87 4427 1451 0 0 4427 1451 87 87 0 0 340 286 0 0 516 405 0 0 87 87 0 0 1806 278 0 0 1591 308 0 0 87 0 0 0 0 0 87 0 0 0.834592 0.834592 -16.3868 -0.834592 0 0 470940. 1629.55 0.18 0.01 0.07 -1 -1 0.18 0.00148482 0.0012984 10 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 3.45 vpr 61.11 MiB -1 -1 0.10 19856 1 0.01 -1 -1 32980 -1 -1 2 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62580 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 22.5 MiB 0.01 75 61.1 MiB 0.01 0.00 0.859432 -15.196 -0.859432 0.859432 0.94 3.4299e-05 2.5266e-05 0.00136152 0.00107046 26 216 20 6.99608e+06 29431.4 503264. 1741.40 0.67 0.00762514 0.00619514 24322 120374 -1 145 15 140 140 4341 1896 0 0 4341 1896 140 140 0 0 494 407 0 0 769 578 0 0 140 140 0 0 1258 360 0 0 1540 271 0 0 140 0 0 0 0 0 140 0 0 1.16733 1.16733 -17.49 -1.16733 0 0 618332. 2139.56 0.23 0.01 0.10 -1 -1 0.23 0.00190768 0.00165102 11 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 3.40 vpr 60.98 MiB -1 -1 0.09 19840 1 0.01 -1 -1 32880 -1 -1 2 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62448 17 9 62 63 1 38 28 17 17 289 -1 unnamed_device 22.3 MiB 0.01 99 61.0 MiB 0.01 0.00 0.732132 -16.0808 -0.732132 0.732132 0.90 4.0327e-05 3.0084e-05 0.00129231 0.00102312 26 355 17 6.99608e+06 29431.4 503264. 1741.40 0.68 0.00851711 0.00696889 24322 120374 -1 269 17 200 200 13351 4291 0 0 13351 4291 200 200 0 0 801 690 0 0 1204 953 0 0 200 200 0 0 4869 1198 0 0 6077 1050 0 0 200 0 0 0 0 0 200 0 0 1.05303 1.05303 -20.5842 -1.05303 0 0 618332. 2139.56 0.23 0.01 0.10 -1 -1 0.23 0.00246669 0.00212126 13 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 3.34 vpr 61.38 MiB -1 -1 0.08 19752 1 0.01 -1 -1 32900 -1 -1 2 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62852 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 23.0 MiB 0.01 112 61.4 MiB 0.01 0.00 0.743132 -18.4132 -0.743132 0.743132 0.88 4.0535e-05 3.0641e-05 0.00235431 0.00184414 26 348 15 6.99608e+06 29431.4 503264. 1741.40 0.65 0.00961414 0.00786607 24322 120374 -1 261 11 193 193 9372 3557 0 0 9372 3557 193 193 0 0 769 640 0 0 1078 886 0 0 193 193 0 0 3461 920 0 0 3678 725 0 0 193 0 0 0 0 0 193 0 0 1.07503 1.07503 -25.0677 -1.07503 0 0 618332. 2139.56 0.24 0.01 0.09 -1 -1 0.24 0.00206866 0.00183363 14 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 3.50 vpr 61.07 MiB -1 -1 0.09 19804 1 0.00 -1 -1 32940 -1 -1 2 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62540 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 22.6 MiB 0.02 140 61.1 MiB 0.01 0.00 0.743132 -20.7595 -0.743132 0.743132 0.92 4.8302e-05 3.6334e-05 0.00170905 0.00135619 28 483 14 6.99608e+06 29431.4 531479. 1839.03 0.75 0.00980858 0.00807511 24610 126494 -1 421 11 236 236 15372 4646 0 0 15372 4646 236 236 0 0 852 739 0 0 1237 1003 0 0 236 236 0 0 5632 1176 0 0 7179 1256 0 0 236 0 0 0 0 0 236 0 0 1.10803 1.10803 -29.0746 -1.10803 0 0 648988. 2245.63 0.25 0.01 0.10 -1 -1 0.25 0.00234505 0.00206981 16 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.47 vpr 61.26 MiB -1 -1 0.08 19876 1 0.00 -1 -1 32928 -1 -1 3 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62732 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 22.8 MiB 0.02 177 61.3 MiB 0.01 0.00 0.754132 -23.2854 -0.754132 0.754132 0.88 5.6686e-05 4.3554e-05 0.00230964 0.00185429 28 547 22 6.99608e+06 44147 531479. 1839.03 0.75 0.0118447 0.00969691 24610 126494 -1 446 18 274 274 20816 5514 0 0 20816 5514 274 274 0 0 1054 952 0 0 1564 1229 0 0 274 274 0 0 7711 1500 0 0 9939 1285 0 0 274 0 0 0 0 0 274 0 0 1.22233 1.22233 -32.5751 -1.22233 0 0 648988. 2245.63 0.26 0.01 0.09 -1 -1 0.26 0.00324846 0.00280344 17 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 4.06 vpr 61.49 MiB -1 -1 0.10 19772 1 0.01 -1 -1 32872 -1 -1 3 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62968 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 23.0 MiB 0.02 262 61.5 MiB 0.01 0.00 0.776132 -26.6484 -0.776132 0.776132 0.88 5.7211e-05 4.3512e-05 0.00201024 0.00163899 34 648 24 6.99608e+06 44147 618332. 2139.56 1.23 0.0195146 0.0159908 25762 151098 -1 570 14 301 301 27678 6391 0 0 27678 6391 301 301 0 0 1071 924 0 0 1856 1317 0 0 301 301 0 0 11657 1921 0 0 12492 1627 0 0 301 0 0 0 0 0 301 0 0 1.07503 1.07503 -34.5196 -1.07503 0 0 787024. 2723.27 0.32 0.02 0.13 -1 -1 0.32 0.00332405 0.00291872 19 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 3.73 vpr 61.44 MiB -1 -1 0.10 19768 1 0.01 -1 -1 32748 -1 -1 3 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62912 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 22.9 MiB 0.02 185 61.4 MiB 0.02 0.00 0.787132 -26.0086 -0.787132 0.787132 0.90 6.0371e-05 4.6413e-05 0.00388108 0.00307339 30 548 42 6.99608e+06 44147 556674. 1926.21 0.91 0.0189179 0.0156056 25186 138497 -1 371 23 428 428 23692 7696 0 0 23692 7696 428 428 0 0 1466 1290 0 0 2384 1688 0 0 428 428 0 0 8451 2106 0 0 10535 1756 0 0 428 0 0 0 0 0 428 0 0 1.15203 1.15203 -33.7785 -1.15203 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.00459252 0.00395039 20 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 3.65 vpr 61.17 MiB -1 -1 0.10 19900 1 0.01 -1 -1 32748 -1 -1 4 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62636 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 22.5 MiB 0.02 200 61.2 MiB 0.02 0.00 0.798132 -28.3603 -0.798132 0.798132 0.92 6.0957e-05 4.4444e-05 0.00412894 0.0032557 32 776 22 6.99608e+06 58862.7 586450. 2029.24 0.79 0.016175 0.0133283 25474 144626 -1 577 16 409 409 30678 9463 0 0 30678 9463 409 409 0 0 1494 1311 0 0 2531 1790 0 0 409 409 0 0 13827 2895 0 0 12008 2649 0 0 409 0 0 0 0 0 409 0 0 1.28833 1.28833 -44.1433 -1.28833 0 0 744469. 2576.02 0.27 0.02 0.11 -1 -1 0.27 0.00399833 0.00351725 23 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 3.72 vpr 61.49 MiB -1 -1 0.10 20476 1 0.01 -1 -1 32924 -1 -1 3 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62968 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 22.9 MiB 0.02 222 61.5 MiB 0.02 0.00 1.04416 -31.4091 -1.04416 1.04416 0.92 7.35e-05 5.6653e-05 0.00456014 0.00361562 30 795 26 6.99608e+06 44147 556674. 1926.21 0.82 0.0183733 0.0152314 25186 138497 -1 644 17 446 446 31246 9468 0 0 31246 9468 446 446 0 0 1517 1371 0 0 2247 1644 0 0 446 446 0 0 14477 2929 0 0 12113 2632 0 0 446 0 0 0 0 0 446 0 0 1.45563 1.45563 -49.112 -1.45563 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.00669132 0.00607879 24 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 3.64 vpr 61.44 MiB -1 -1 0.10 19992 1 0.01 -1 -1 32832 -1 -1 4 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62912 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 23.0 MiB 0.02 449 61.4 MiB 0.02 0.00 1.05516 -39.7669 -1.05516 1.05516 0.88 7.7109e-05 6.0218e-05 0.00494257 0.0039665 30 1036 32 6.99608e+06 58862.7 556674. 1926.21 0.83 0.0206971 0.0171491 25186 138497 -1 932 16 450 450 52870 10922 0 0 52870 10922 450 450 0 0 1645 1455 0 0 2359 1727 0 0 450 450 0 0 24999 3130 0 0 22967 3710 0 0 450 0 0 0 0 0 450 0 0 1.19833 1.19833 -51.3032 -1.19833 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.00442529 0.00388057 25 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 3.75 vpr 61.47 MiB -1 -1 0.10 19980 1 0.01 -1 -1 32948 -1 -1 4 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 23.0 MiB 0.02 286 61.5 MiB 0.03 0.00 1.07716 -38.061 -1.07716 1.07716 0.91 8.8862e-05 6.9504e-05 0.00595474 0.00481275 30 890 28 6.99608e+06 58862.7 556674. 1926.21 0.91 0.0239908 0.0201521 25186 138497 -1 581 15 403 403 22692 7090 0 0 22692 7090 403 403 0 0 1485 1328 0 0 2083 1624 0 0 403 403 0 0 8392 1816 0 0 9926 1516 0 0 403 0 0 0 0 0 403 0 0 1.36333 1.36333 -54.7429 -1.36333 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.00465047 0.00412248 28 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 4.40 vpr 61.70 MiB -1 -1 0.10 20176 1 0.01 -1 -1 32876 -1 -1 4 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63184 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 23.2 MiB 0.02 345 61.7 MiB 0.03 0.00 1.09916 -44.293 -1.09916 1.09916 0.93 0.000105826 8.5584e-05 0.00699733 0.0056254 34 1170 35 6.99608e+06 58862.7 618332. 2139.56 1.44 0.039411 0.032996 25762 151098 -1 838 17 531 531 51105 12452 0 0 51105 12452 531 531 0 0 1976 1752 0 0 3205 2218 0 0 531 531 0 0 21247 3851 0 0 23615 3569 0 0 531 0 0 0 0 0 531 0 0 1.21603 1.21603 -58.1969 -1.21603 0 0 787024. 2723.27 0.29 0.02 0.13 -1 -1 0.29 0.00565461 0.0049642 31 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 3.78 vpr 61.74 MiB -1 -1 0.09 20140 1 0.01 -1 -1 32872 -1 -1 5 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63224 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 23.1 MiB 0.03 455 61.7 MiB 0.04 0.00 1.12116 -51.1955 -1.12116 1.12116 0.89 0.000110514 8.6868e-05 0.00784533 0.00635962 32 1295 26 6.99608e+06 73578.4 586450. 2029.24 0.84 0.0281893 0.023678 25474 144626 -1 1063 19 555 555 59940 14408 0 0 59940 14408 555 555 0 0 2058 1783 0 0 3590 2446 0 0 555 555 0 0 24903 4585 0 0 28279 4484 0 0 555 0 0 0 0 0 555 0 0 1.40733 1.40733 -72.0293 -1.40733 0 0 744469. 2576.02 0.30 0.03 0.12 -1 -1 0.30 0.0069314 0.0061267 34 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 4.51 vpr 61.68 MiB -1 -1 0.10 19988 1 0.01 -1 -1 32928 -1 -1 5 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63164 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 23.3 MiB 0.03 521 61.7 MiB 0.04 0.00 1.14316 -54.0072 -1.14316 1.14316 0.91 0.000132033 0.000105836 0.00858785 0.00697657 34 1299 20 6.99608e+06 73578.4 618332. 2139.56 1.55 0.0455785 0.0386974 25762 151098 -1 1057 14 614 614 53812 13158 0 0 53812 13158 614 614 0 0 2244 1966 0 0 3511 2541 0 0 614 614 0 0 22571 3902 0 0 24258 3521 0 0 614 0 0 0 0 0 614 0 0 1.31218 1.31218 -71.7139 -1.31218 0 0 787024. 2723.27 0.29 0.03 0.12 -1 -1 0.29 0.00604767 0.0053901 37 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 4.91 vpr 62.00 MiB -1 -1 0.11 20180 1 0.01 -1 -1 32904 -1 -1 6 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63492 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 23.5 MiB 0.04 618 62.0 MiB 0.05 0.00 1.18716 -66.278 -1.18716 1.18716 0.90 0.000140474 0.000111879 0.011616 0.00936134 36 1638 39 6.99608e+06 88294.1 648988. 2245.63 1.91 0.0617342 0.0525822 26050 158493 -1 1283 17 746 746 66378 17160 0 0 66378 17160 746 746 0 0 2736 2411 0 0 4441 3286 0 0 746 746 0 0 27971 4839 0 0 29738 5132 0 0 746 0 0 0 0 0 746 0 0 1.46233 1.46233 -90.9224 -1.46233 0 0 828058. 2865.25 0.32 0.03 0.13 -1 -1 0.32 0.00797164 0.00707216 43 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 4.87 vpr 62.21 MiB -1 -1 0.10 20032 1 0.01 -1 -1 32956 -1 -1 7 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63704 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 23.7 MiB 0.04 809 62.2 MiB 0.06 0.00 1.47719 -78.6598 -1.47719 1.47719 0.89 0.000168806 0.000138974 0.0135957 0.0113236 38 1857 30 6.99608e+06 103010 678818. 2348.85 1.91 0.071157 0.0616753 26626 170182 -1 1622 17 847 847 83069 18397 0 0 83069 18397 847 847 0 0 2895 2554 0 0 4304 3110 0 0 847 847 0 0 37364 5526 0 0 36812 5513 0 0 847 0 0 0 0 0 847 0 0 1.24273 1.24273 -95.7675 -1.24273 0 0 902133. 3121.57 0.32 0.04 0.13 -1 -1 0.32 0.00954835 0.00855478 49 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 5.74 vpr 63.08 MiB -1 -1 0.12 20300 1 0.01 -1 -1 33224 -1 -1 10 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64596 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 24.3 MiB 0.05 1355 63.1 MiB 0.10 0.00 1.88822 -131.481 -1.88822 1.88822 0.89 0.000249976 0.000208532 0.0209152 0.0175148 42 3402 41 6.99608e+06 147157 744469. 2576.02 2.50 0.118109 0.103152 27202 183097 -1 2579 36 1336 1336 374145 145209 0 0 374145 145209 1336 1336 0 0 4668 4039 0 0 10513 6257 0 0 1336 1336 0 0 182987 65763 0 0 173305 66478 0 0 1336 0 0 0 0 0 1336 0 0 1.62718 1.62718 -158.706 -1.62718 0 0 949917. 3286.91 0.36 0.14 0.14 -1 -1 0.36 0.0246257 0.0218982 73 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 6.06 vpr 63.39 MiB -1 -1 0.13 20648 1 0.01 -1 -1 33296 -1 -1 13 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64908 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 24.6 MiB 0.07 1994 63.4 MiB 0.18 0.00 2.29925 -198.272 -2.29925 2.29925 0.89 0.00044413 0.000384579 0.0366172 0.0313059 50 3763 23 6.99608e+06 191304 902133. 3121.57 2.60 0.160101 0.141978 28642 213929 -1 3364 18 1340 1340 146943 29833 0 0 146943 29833 1340 1340 0 0 4825 4090 0 0 7784 5517 0 0 1340 1340 0 0 67861 8777 0 0 63793 8769 0 0 1340 0 0 0 0 0 1340 0 0 1.84133 1.84133 -221.43 -1.84133 0 0 1.08113e+06 3740.92 0.41 0.07 0.18 -1 -1 0.41 0.0205049 0.0185378 97 -1 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_003bits.v common 3.24 vpr 60.55 MiB -1 -1 0.09 19912 1 0.04 -1 -1 34996 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62000 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 22.1 MiB 0.01 23 60.5 MiB 0.00 0.00 0.593895 -6.05681 -0.593895 0.593895 0.91 1.6988e-05 1.1909e-05 0.000709337 0.000540533 22 76 7 6.79088e+06 13472 443629. 1535.05 0.57 0.00345578 0.00274772 22798 101617 -1 63 10 40 40 1268 545 0 0 1268 545 40 40 0 0 133 114 0 0 235 185 0 0 40 40 0 0 376 108 0 0 444 58 0 0 40 0 0 0 0 0 40 0 0 0.74674 0.74674 -6.93391 -0.74674 0 0 531479. 1839.03 0.21 0.01 0.08 -1 -1 0.21 0.000835972 0.00071602 6 4 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_004bits.v common 3.13 vpr 60.45 MiB -1 -1 0.08 19724 2 0.05 -1 -1 35176 -1 -1 1 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61904 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 21.9 MiB 0.01 51 60.5 MiB 0.00 0.00 0.883748 -8.5905 -0.883748 0.883748 0.91 2.2703e-05 1.6225e-05 0.000449257 0.000370728 18 110 9 6.79088e+06 13472 376052. 1301.22 0.49 0.0017193 0.00147208 22222 88205 -1 116 6 41 41 1840 733 0 0 1840 733 41 41 0 0 187 156 0 0 229 196 0 0 41 41 0 0 637 150 0 0 705 149 0 0 41 0 0 0 0 0 41 0 0 0.883748 0.883748 -11.2218 -0.883748 0 0 470940. 1629.55 0.19 0.00 0.07 -1 -1 0.19 0.000854895 0.00076292 8 6 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_005bits.v common 3.17 vpr 60.49 MiB -1 -1 0.10 19800 2 0.04 -1 -1 35132 -1 -1 2 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61944 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 22.0 MiB 0.01 172 60.5 MiB 0.00 0.00 1.02368 -14.7156 -1.02368 1.02368 0.93 2.6643e-05 1.9391e-05 0.00045817 0.000388522 18 261 12 6.79088e+06 26944 376052. 1301.22 0.49 0.00212551 0.00184127 22222 88205 -1 262 8 68 79 3703 1111 0 0 3703 1111 79 69 0 0 323 266 0 0 407 338 0 0 79 71 0 0 1539 182 0 0 1276 185 0 0 79 0 0 11 7 4 123 0 0 1.02368 1.02368 -16.5559 -1.02368 0 0 470940. 1629.55 0.20 0.01 0.07 -1 -1 0.20 0.00120853 0.00107315 10 7 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_006bits.v common 3.34 vpr 60.63 MiB -1 -1 0.09 19824 3 0.04 -1 -1 34960 -1 -1 2 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62084 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 22.1 MiB 0.01 83 60.6 MiB 0.01 0.00 1.05944 -13.8628 -1.05944 1.05944 0.88 3.2153e-05 2.3426e-05 0.000987198 0.000783069 26 237 10 6.79088e+06 26944 503264. 1741.40 0.64 0.00611201 0.00503476 23662 119890 -1 214 6 83 87 5122 1657 0 0 5122 1657 87 84 0 0 388 339 0 0 467 412 0 0 87 87 0 0 1674 406 0 0 2419 329 0 0 87 0 0 4 4 0 103 0 0 1.05944 1.05944 -16.9953 -1.05944 0 0 618332. 2139.56 0.24 0.01 0.10 -1 -1 0.24 0.00125611 0.00112442 11 9 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_007bits.v common 3.45 vpr 60.70 MiB -1 -1 0.09 19924 3 0.05 -1 -1 35440 -1 -1 2 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62152 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 22.1 MiB 0.01 91 60.7 MiB 0.01 0.00 1.13784 -15.9267 -1.13784 1.13784 0.93 3.6275e-05 2.7113e-05 0.00154844 0.00123404 26 319 13 6.79088e+06 26944 503264. 1741.40 0.67 0.00790215 0.00651102 23662 119890 -1 243 10 132 146 8053 2752 0 0 8053 2752 146 142 0 0 577 477 0 0 895 713 0 0 146 142 0 0 3469 625 0 0 2820 653 0 0 146 0 0 14 10 4 202 0 0 1.13784 1.13784 -19.3959 -1.13784 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.00187001 0.00164907 13 10 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_008bits.v common 5.33 vpr 60.47 MiB -1 -1 0.10 19952 3 0.05 -1 -1 35156 -1 -1 2 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61924 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 21.7 MiB 0.04 132 60.5 MiB 0.01 0.00 1.27433 -18.6781 -1.27433 1.27433 0.93 4.4682e-05 3.3546e-05 0.00294155 0.00228919 32 424 38 6.79088e+06 26944 586450. 2029.24 2.42 0.0214304 0.0174725 24814 144142 -1 328 12 166 197 11107 3450 0 0 11107 3450 197 177 0 0 720 614 0 0 1198 892 0 0 197 180 0 0 3932 858 0 0 4863 729 0 0 197 0 0 31 31 16 349 0 0 1.27433 1.27433 -22.1473 -1.27433 0 0 744469. 2576.02 0.30 0.01 0.12 -1 -1 0.30 0.00243444 0.00216501 16 14 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_009bits.v common 4.67 vpr 60.79 MiB -1 -1 0.10 19716 4 0.05 -1 -1 35076 -1 -1 3 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62248 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 22.1 MiB 0.05 135 60.8 MiB 0.01 0.00 1.1736 -20.5006 -1.1736 1.1736 0.91 4.6971e-05 3.504e-05 0.00179943 0.00143182 26 517 10 6.79088e+06 40416 503264. 1741.40 1.82 0.0177383 0.0145445 23662 119890 -1 393 10 202 209 12728 3947 0 0 12728 3947 209 203 0 0 814 700 0 0 1186 926 0 0 209 203 0 0 4670 942 0 0 5640 973 0 0 209 0 0 7 8 6 244 0 0 1.1736 1.1736 -27.6427 -1.1736 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.00232374 0.00207066 17 13 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_010bits.v common 3.76 vpr 60.80 MiB -1 -1 0.10 19784 4 0.06 -1 -1 35004 -1 -1 3 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62264 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 22.3 MiB 0.18 318 60.8 MiB 0.01 0.00 1.60338 -31.0196 -1.60338 1.60338 0.91 5.7113e-05 4.3638e-05 0.00229108 0.00185918 30 648 11 6.79088e+06 40416 556674. 1926.21 0.76 0.0107279 0.00893491 24526 138013 -1 559 9 193 235 12654 3185 0 0 12654 3185 235 202 0 0 787 645 0 0 1075 844 0 0 235 210 0 0 5433 620 0 0 4889 664 0 0 235 0 0 42 5 42 408 0 0 1.60338 1.60338 -35.4051 -1.60338 0 0 706193. 2443.58 0.28 0.01 0.11 -1 -1 0.28 0.00252163 0.00227639 21 17 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_011bits.v common 3.60 vpr 60.77 MiB -1 -1 0.11 19952 5 0.05 -1 -1 35204 -1 -1 3 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62232 23 12 76 88 1 61 38 17 17 289 -1 unnamed_device 22.2 MiB 0.11 188 60.8 MiB 0.01 0.00 1.67834 -28.611 -1.67834 1.67834 0.92 5.8658e-05 4.5324e-05 0.00199435 0.0016188 26 637 25 6.79088e+06 40416 503264. 1741.40 0.73 0.0137127 0.0114384 23662 119890 -1 522 16 268 304 17247 5231 0 0 17247 5231 304 269 0 0 1138 946 0 0 1683 1304 0 0 304 272 0 0 6337 1179 0 0 7481 1261 0 0 304 0 0 36 36 17 473 0 0 1.76444 1.76444 -37.1545 -1.76444 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.00357291 0.00314658 22 19 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_012bits.v common 3.68 vpr 60.88 MiB -1 -1 0.10 19748 5 0.04 -1 -1 35456 -1 -1 3 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62336 25 13 83 96 1 66 41 17 17 289 -1 unnamed_device 22.3 MiB 0.19 191 60.9 MiB 0.02 0.00 1.67834 -31.6573 -1.67834 1.67834 0.87 6.593e-05 4.9388e-05 0.00377636 0.0029856 30 713 18 6.79088e+06 40416 556674. 1926.21 0.77 0.0150496 0.0124378 24526 138013 -1 507 16 362 432 17024 5692 0 0 17024 5692 432 382 0 0 1393 1208 0 0 2235 1552 0 0 432 403 0 0 5819 1122 0 0 6713 1025 0 0 432 0 0 70 64 50 756 0 0 2.06538 2.06538 -38.9804 -2.06538 0 0 706193. 2443.58 0.27 0.01 0.10 -1 -1 0.27 0.00386418 0.00335341 23 21 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_013bits.v common 3.97 vpr 60.65 MiB -1 -1 0.10 20396 5 0.06 -1 -1 35084 -1 -1 4 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62104 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 22.0 MiB 0.33 197 60.6 MiB 0.02 0.00 1.81483 -34.7567 -1.81483 1.81483 0.91 7.419e-05 5.7859e-05 0.00364073 0.00295173 26 814 23 6.79088e+06 53888 503264. 1741.40 0.83 0.0182335 0.0153115 23662 119890 -1 676 15 349 468 27213 8335 0 0 27213 8335 468 396 0 0 1728 1507 0 0 2777 2048 0 0 468 398 0 0 11672 2059 0 0 10100 1927 0 0 468 0 0 119 70 130 1047 0 0 2.01499 2.01499 -46.8439 -2.01499 0 0 618332. 2139.56 0.23 0.02 0.10 -1 -1 0.23 0.00410587 0.00362726 27 24 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_014bits.v common 4.50 vpr 60.70 MiB -1 -1 0.10 20296 6 0.06 -1 -1 35048 -1 -1 4 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62152 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 22.0 MiB 0.23 257 60.7 MiB 0.01 0.00 2.06549 -39.6657 -2.06549 2.06549 0.92 7.6308e-05 5.9729e-05 0.00344078 0.00279782 34 887 45 6.79088e+06 53888 618332. 2139.56 1.38 0.0304047 0.0253968 25102 150614 -1 693 12 371 434 23646 7348 0 0 23646 7348 434 395 0 0 1634 1394 0 0 2559 1915 0 0 434 401 0 0 9899 1640 0 0 8686 1603 0 0 434 0 0 63 33 62 718 0 0 2.06549 2.06549 -50.4415 -2.06549 0 0 787024. 2723.27 0.29 0.01 0.13 -1 -1 0.29 0.00388288 0.00346978 28 23 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_015bits.v common 4.45 vpr 61.08 MiB -1 -1 0.10 20124 6 0.07 -1 -1 35384 -1 -1 5 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62544 31 16 104 120 1 82 52 17 17 289 -1 unnamed_device 22.4 MiB 0.46 454 61.1 MiB 0.02 0.00 2.14389 -48.8192 -2.14389 2.14389 0.87 8.5521e-05 6.7602e-05 0.0038376 0.0031112 34 931 12 6.79088e+06 67360 618332. 2139.56 1.17 0.0259189 0.0216698 25102 150614 -1 890 13 316 449 33607 7888 0 0 33607 7888 449 360 0 0 1613 1353 0 0 2848 2057 0 0 449 362 0 0 13916 1895 0 0 14332 1861 0 0 449 0 0 133 58 137 1107 0 0 2.14389 2.14389 -55.7576 -2.14389 0 0 787024. 2723.27 0.29 0.02 0.12 -1 -1 0.29 0.00438148 0.00391848 31 27 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_016bits.v common 4.39 vpr 60.86 MiB -1 -1 0.11 20164 7 0.06 -1 -1 35184 -1 -1 5 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62324 33 17 112 129 1 88 55 17 17 289 -1 unnamed_device 22.4 MiB 0.80 541 60.9 MiB 0.03 0.00 2.60938 -55.7365 -2.60938 2.60938 0.90 8.8779e-05 6.8292e-05 0.00675134 0.00535726 28 1147 17 6.79088e+06 67360 531479. 1839.03 0.76 0.022322 0.0185762 23950 126010 -1 1035 12 378 473 40184 8906 0 0 40184 8906 473 389 0 0 1749 1443 0 0 2682 2018 0 0 473 400 0 0 17902 2307 0 0 16905 2349 0 0 473 0 0 95 113 157 1072 0 0 2.94608 2.94608 -67.0912 -2.94608 0 0 648988. 2245.63 0.25 0.02 0.10 -1 -1 0.25 0.00443942 0.00397775 32 30 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_018bits.v common 5.22 vpr 61.12 MiB -1 -1 0.11 20120 7 0.06 -1 -1 35452 -1 -1 6 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62584 37 19 127 146 1 99 62 17 17 289 -1 unnamed_device 22.6 MiB 1.55 467 61.1 MiB 0.02 0.00 3.00001 -62.9473 -3.00001 3.00001 0.91 0.000103616 8.2178e-05 0.00514448 0.0042204 30 1102 16 6.79088e+06 80832 556674. 1926.21 0.79 0.0225718 0.0191281 24526 138013 -1 956 12 328 421 30277 7215 0 0 30277 7215 421 371 0 0 1463 1208 0 0 1981 1546 0 0 421 382 0 0 13372 1831 0 0 12619 1877 0 0 421 0 0 93 78 74 852 0 0 3.00001 3.00001 -72.5562 -3.00001 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.00548042 0.00494261 37 35 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_020bits.v common 4.30 vpr 60.85 MiB -1 -1 0.10 20164 8 0.06 -1 -1 35308 -1 -1 6 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62308 41 21 139 160 1 106 68 17 17 289 -1 unnamed_device 22.2 MiB 0.50 648 60.8 MiB 0.02 0.00 2.60599 -68.2012 -2.60599 2.60599 0.87 0.00011934 9.6134e-05 0.00496987 0.00410264 30 1404 43 6.79088e+06 80832 556674. 1926.21 1.02 0.0335632 0.028742 24526 138013 -1 1215 12 410 530 38535 8772 0 0 38535 8772 530 468 0 0 1876 1517 0 0 2642 2052 0 0 530 480 0 0 16703 2125 0 0 16254 2130 0 0 530 0 0 120 124 86 1116 0 0 2.60599 2.60599 -79.11 -2.60599 0 0 706193. 2443.58 0.27 0.02 0.10 -1 -1 0.27 0.00593163 0.00539212 41 37 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.65 vpr 61.33 MiB -1 -1 0.12 20032 9 0.07 -1 -1 35468 -1 -1 6 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62800 45 23 153 176 1 119 74 17 17 289 -1 unnamed_device 22.7 MiB 0.45 381 61.3 MiB 0.04 0.00 2.85665 -71.8382 -2.85665 2.85665 0.88 0.000127603 0.000101912 0.0107328 0.00872603 34 1157 15 6.79088e+06 80832 618332. 2139.56 1.30 0.0454327 0.0382988 25102 150614 -1 895 13 475 576 33724 10410 0 0 33724 10410 576 503 0 0 2172 1865 0 0 3478 2638 0 0 576 507 0 0 13523 2463 0 0 13399 2434 0 0 576 0 0 101 98 97 1106 0 0 2.98195 2.98195 -84.9555 -2.98195 0 0 787024. 2723.27 0.30 0.02 0.12 -1 -1 0.30 0.00669025 0.00604807 43 41 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_024bits.v common 5.22 vpr 61.08 MiB -1 -1 0.11 20008 10 0.07 -1 -1 35528 -1 -1 8 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62548 49 25 166 191 1 133 82 17 17 289 -1 unnamed_device 22.5 MiB 0.98 542 61.1 MiB 0.05 0.00 3.6869 -88.5431 -3.6869 3.6869 0.92 0.000155193 0.00012628 0.0116223 0.00951796 34 1212 16 6.79088e+06 107776 618332. 2139.56 1.29 0.05068 0.0430599 25102 150614 -1 1125 10 457 523 33529 9751 0 0 33529 9751 523 494 0 0 2080 1768 0 0 3189 2504 0 0 523 506 0 0 14376 2293 0 0 12838 2186 0 0 523 0 0 66 74 52 847 0 0 3.773 3.773 -102.678 -3.773 0 0 787024. 2723.27 0.29 0.02 0.12 -1 -1 0.29 0.00599465 0.00544997 48 44 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_028bits.v common 5.84 vpr 61.23 MiB -1 -1 0.12 20008 11 0.07 -1 -1 35352 -1 -1 8 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62704 57 29 198 227 1 158 94 17 17 289 -1 unnamed_device 22.7 MiB 1.44 691 61.2 MiB 0.05 0.00 3.90184 -110.712 -3.90184 3.90184 0.91 0.00016937 0.000137076 0.0129892 0.0107245 34 1701 47 6.79088e+06 107776 618332. 2139.56 1.36 0.0694094 0.0590943 25102 150614 -1 1448 13 671 949 59134 15639 0 0 59134 15639 949 741 0 0 3527 3038 0 0 5642 4138 0 0 949 771 0 0 23796 3542 0 0 24271 3409 0 0 949 0 0 278 260 173 2316 0 0 4.02714 4.02714 -125.709 -4.02714 0 0 787024. 2723.27 0.29 0.03 0.12 -1 -1 0.29 0.00877297 0.00794722 59 56 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_032bits.v common 6.45 vpr 61.47 MiB -1 -1 0.13 20228 13 0.08 -1 -1 35260 -1 -1 9 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 22.8 MiB 1.79 658 61.5 MiB 0.06 0.00 4.44928 -130.928 -4.44928 4.44928 0.92 0.000194191 0.000154605 0.0153735 0.0125484 36 1768 20 6.79088e+06 121248 648988. 2245.63 1.69 0.0748281 0.0640888 25390 158009 -1 1338 18 672 897 49166 14337 0 0 49166 14337 897 727 0 0 3151 2715 0 0 4826 3553 0 0 897 749 0 0 20237 3310 0 0 19158 3283 0 0 897 0 0 225 120 205 1911 0 0 4.69988 4.69988 -152.354 -4.69988 0 0 828058. 2865.25 0.29 0.03 0.13 -1 -1 0.29 0.0119786 0.0107237 66 62 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_048bits.v common 8.15 vpr 62.68 MiB -1 -1 0.12 20716 19 0.10 -1 -1 35412 -1 -1 13 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64188 97 49 340 389 1 267 159 17 17 289 -1 unnamed_device 23.9 MiB 3.31 1343 62.7 MiB 0.10 0.00 6.59443 -254.723 -6.59443 6.59443 0.88 0.000311949 0.000259965 0.0250858 0.0209961 38 2947 16 6.79088e+06 175136 678818. 2348.85 1.72 0.11269 0.0978157 25966 169698 -1 2500 16 1024 1366 86828 21083 0 0 86828 21083 1366 1111 0 0 4692 3931 0 0 7067 5177 0 0 1366 1139 0 0 36762 4818 0 0 35575 4907 0 0 1366 0 0 342 207 315 2968 0 0 6.71973 6.71973 -274.645 -6.71973 0 0 902133. 3121.57 0.33 0.04 0.13 -1 -1 0.33 0.0157203 0.0141892 100 98 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_064bits.v common 10.17 vpr 62.93 MiB -1 -1 0.15 21000 26 0.11 -1 -1 35572 -1 -1 18 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64444 129 65 453 518 1 350 212 17 17 289 -1 unnamed_device 24.0 MiB 4.18 1896 62.9 MiB 0.17 0.00 9.19737 -437.804 -9.19737 9.19737 0.87 0.000457196 0.000384758 0.043373 0.0367913 34 4668 45 6.79088e+06 242496 618332. 2139.56 2.73 0.20955 0.184983 25102 150614 -1 3746 13 1283 1704 122502 30049 0 0 122502 30049 1704 1423 0 0 6272 5197 0 0 10287 7351 0 0 1704 1444 0 0 53754 7262 0 0 48781 7372 0 0 1704 0 0 421 317 409 3767 0 0 9.57327 9.57327 -487.423 -9.57327 0 0 787024. 2723.27 0.32 0.06 0.12 -1 -1 0.32 0.0232767 0.0214639 129 131 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 3.32 vpr 61.06 MiB -1 -1 0.08 19900 1 0.01 -1 -1 32764 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62528 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.6 MiB 0.02 22 61.1 MiB 0.00 0.00 0.49614 -5.97532 -0.49614 0.49614 0.88 1.7841e-05 1.2614e-05 0.000736026 0.000542326 26 64 8 6.87369e+06 13973.8 503264. 1741.40 0.64 0.00363204 0.00287347 24322 120374 -1 63 10 37 37 1408 610 0 0 1408 610 37 37 0 0 145 127 0 0 231 199 0 0 37 37 0 0 383 134 0 0 575 76 0 0 37 0 0 0 0 0 37 0 0 0.87204 0.87204 -7.10302 -0.87204 0 0 618332. 2139.56 0.24 0.01 0.10 -1 -1 0.24 0.00088789 0.000759718 8 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 2.99 vpr 60.89 MiB -1 -1 0.09 19876 1 0.01 -1 -1 32900 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62348 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.4 MiB 0.04 53 60.9 MiB 0.00 0.00 0.663773 -8.95972 -0.663773 0.663773 0.89 2.283e-05 1.6473e-05 0.000577734 0.000459142 14 155 9 6.87369e+06 27947.7 292583. 1012.40 0.40 0.00175636 0.0014715 22018 70521 -1 144 9 87 87 5404 1803 0 0 5404 1803 87 87 0 0 396 338 0 0 465 412 0 0 87 87 0 0 1925 458 0 0 2444 421 0 0 87 0 0 0 0 0 87 0 0 0.914373 0.914373 -12.0922 -0.914373 0 0 376052. 1301.22 0.16 0.01 0.06 -1 -1 0.16 0.00103179 0.000892409 10 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 3.34 vpr 60.93 MiB -1 -1 0.09 19724 1 0.00 -1 -1 32884 -1 -1 3 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62392 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 22.4 MiB 0.05 160 60.9 MiB 0.00 0.00 0.685773 -12.8459 -0.685773 0.685773 0.87 2.5856e-05 1.8687e-05 0.000723577 0.000566582 26 296 11 6.87369e+06 41921.5 503264. 1741.40 0.66 0.00519229 0.00419953 24322 120374 -1 294 9 123 123 12561 2930 0 0 12561 2930 123 123 0 0 519 462 0 0 665 572 0 0 123 123 0 0 5446 838 0 0 5685 812 0 0 123 0 0 0 0 0 123 0 0 1.05067 1.05067 -17.0701 -1.05067 0 0 618332. 2139.56 0.24 0.01 0.10 -1 -1 0.24 0.00116698 0.00101584 13 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 3.95 vpr 60.91 MiB -1 -1 0.09 19900 1 0.00 -1 -1 32936 -1 -1 3 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62376 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 22.4 MiB 0.06 82 60.9 MiB 0.01 0.00 0.707773 -12.8355 -0.707773 0.707773 0.90 3.0578e-05 2.2685e-05 0.00103673 0.000800901 34 237 22 6.87369e+06 41921.5 618332. 2139.56 1.11 0.0102667 0.00823189 25762 151098 -1 193 18 260 260 11818 4006 0 0 11818 4006 260 260 0 0 956 834 0 0 1510 1159 0 0 260 260 0 0 4300 901 0 0 4532 592 0 0 260 0 0 0 0 0 260 0 0 0.958373 0.958373 -15.3415 -0.958373 0 0 787024. 2723.27 0.29 0.01 0.12 -1 -1 0.29 0.00190456 0.00161889 15 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.48 vpr 61.11 MiB -1 -1 0.09 19948 1 0.01 -1 -1 32880 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62576 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.5 MiB 0.08 100 61.1 MiB 0.01 0.00 1.13846 -14.8523 -1.13846 1.13846 0.91 3.7042e-05 2.7653e-05 0.00182002 0.00141805 26 351 15 6.87369e+06 41921.5 503264. 1741.40 0.65 0.00777767 0.00627976 24322 120374 -1 275 15 209 209 10971 3753 0 0 10971 3753 209 209 0 0 774 666 0 0 1056 887 0 0 209 209 0 0 4879 858 0 0 3844 924 0 0 209 0 0 0 0 0 209 0 0 1.17403 1.17403 -20.73 -1.17403 0 0 618332. 2139.56 0.24 0.01 0.10 -1 -1 0.24 0.00197227 0.00169111 17 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 3.28 vpr 61.15 MiB -1 -1 0.08 19956 1 0.01 -1 -1 32900 -1 -1 3 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62620 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.5 MiB 0.06 161 61.2 MiB 0.01 0.00 0.964803 -17.2512 -0.964803 0.964803 0.88 3.5732e-05 2.6251e-05 0.00141051 0.00109984 24 447 12 6.87369e+06 41921.5 470940. 1629.55 0.61 0.00771618 0.00629872 24034 113901 -1 417 15 238 238 20979 5356 0 0 20979 5356 238 238 0 0 1027 897 0 0 1443 1211 0 0 238 238 0 0 9372 1348 0 0 8661 1424 0 0 238 0 0 0 0 0 238 0 0 1.11467 1.11467 -26.0134 -1.11467 0 0 586450. 2029.24 0.22 0.01 0.09 -1 -1 0.22 0.00222017 0.00190127 18 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 3.47 vpr 60.98 MiB -1 -1 0.09 19832 1 0.01 -1 -1 32868 -1 -1 3 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62444 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 22.2 MiB 0.06 131 61.0 MiB 0.01 0.00 0.975803 -19.8735 -0.975803 0.975803 0.92 4.4483e-05 3.3253e-05 0.00266347 0.00206468 26 342 13 6.87369e+06 41921.5 503264. 1741.40 0.69 0.00998456 0.00810275 24322 120374 -1 301 13 171 171 11220 3669 0 0 11220 3669 171 171 0 0 709 625 0 0 975 838 0 0 171 171 0 0 3879 1059 0 0 5315 805 0 0 171 0 0 0 0 0 171 0 0 1.21049 1.21049 -25.2264 -1.21049 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.00234615 0.00205612 20 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 3.53 vpr 61.06 MiB -1 -1 0.09 19800 1 0.01 -1 -1 32920 -1 -1 3 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62524 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 22.6 MiB 0.06 243 61.1 MiB 0.01 0.00 0.986803 -24.7841 -0.986803 0.986803 0.89 4.9258e-05 3.7524e-05 0.00151392 0.00122063 28 535 11 6.87369e+06 41921.5 531479. 1839.03 0.73 0.00934643 0.00773472 24610 126494 -1 489 12 241 241 21409 5088 0 0 21409 5088 241 241 0 0 912 774 0 0 1177 987 0 0 241 241 0 0 9922 1278 0 0 8916 1567 0 0 241 0 0 0 0 0 241 0 0 1.13667 1.13667 -33.0942 -1.13667 0 0 648988. 2245.63 0.26 0.01 0.10 -1 -1 0.26 0.00235643 0.00206507 22 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.51 vpr 61.10 MiB -1 -1 0.09 19764 1 0.01 -1 -1 32976 -1 -1 4 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62568 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.7 MiB 0.06 193 61.1 MiB 0.01 0.00 0.997803 -24.6718 -0.997803 0.997803 0.88 5.7359e-05 4.4238e-05 0.00243901 0.00190968 26 551 21 6.87369e+06 55895.4 503264. 1741.40 0.72 0.0121031 0.00991362 24322 120374 -1 481 20 332 332 22247 6551 0 0 22247 6551 332 332 0 0 1264 1086 0 0 1915 1493 0 0 332 332 0 0 8580 1518 0 0 9824 1790 0 0 332 0 0 0 0 0 332 0 0 1.09267 1.09267 -33.8591 -1.09267 0 0 618332. 2139.56 0.25 0.02 0.10 -1 -1 0.25 0.00347712 0.00297765 24 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 3.59 vpr 61.16 MiB -1 -1 0.10 19876 1 0.01 -1 -1 32764 -1 -1 4 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62624 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 22.7 MiB 0.06 152 61.2 MiB 0.01 0.00 1.0088 -26.074 -1.0088 1.0088 0.89 5.7125e-05 4.3002e-05 0.00265708 0.00209698 28 567 23 6.87369e+06 55895.4 531479. 1839.03 0.76 0.0133267 0.0109829 24610 126494 -1 494 17 331 331 20612 6744 0 0 20612 6744 331 331 0 0 1279 1114 0 0 1916 1552 0 0 331 331 0 0 8886 1919 0 0 7869 1497 0 0 331 0 0 0 0 0 331 0 0 1.14767 1.14767 -36.701 -1.14767 0 0 648988. 2245.63 0.27 0.02 0.10 -1 -1 0.27 0.00347479 0.00301869 26 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 3.51 vpr 61.34 MiB -1 -1 0.09 19744 1 0.01 -1 -1 32912 -1 -1 4 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.8 MiB 0.06 238 61.3 MiB 0.01 0.00 1.0198 -28.8656 -1.0198 1.0198 0.88 5.2642e-05 3.9919e-05 0.0028628 0.00224507 32 662 17 6.87369e+06 55895.4 586450. 2029.24 0.75 0.0125164 0.0102353 25474 144626 -1 580 11 295 295 19790 5804 0 0 19790 5804 295 295 0 0 1154 934 0 0 1604 1291 0 0 295 295 0 0 8692 1502 0 0 7750 1487 0 0 295 0 0 0 0 0 295 0 0 1.14767 1.14767 -39.4101 -1.14767 0 0 744469. 2576.02 0.28 0.01 0.11 -1 -1 0.28 0.00292099 0.00241189 28 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 3.73 vpr 61.29 MiB -1 -1 0.08 19876 1 0.01 -1 -1 32868 -1 -1 5 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62764 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 22.7 MiB 0.11 221 61.3 MiB 0.02 0.00 1.0308 -31.2922 -1.0308 1.0308 0.92 7.3585e-05 5.7195e-05 0.00371917 0.00297463 32 749 13 6.87369e+06 69869.2 586450. 2029.24 0.80 0.014229 0.0117807 25474 144626 -1 641 17 500 500 36122 10708 0 0 36122 10708 500 500 0 0 1935 1707 0 0 3248 2484 0 0 500 500 0 0 16829 2946 0 0 13110 2571 0 0 500 0 0 0 0 0 500 0 0 1.15867 1.15867 -42.953 -1.15867 0 0 744469. 2576.02 0.27 0.02 0.11 -1 -1 0.27 0.0037357 0.00322075 31 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 3.67 vpr 61.16 MiB -1 -1 0.09 20388 1 0.01 -1 -1 32752 -1 -1 5 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62628 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 22.5 MiB 0.13 311 61.2 MiB 0.02 0.00 1.27683 -35.4508 -1.27683 1.27683 0.89 7.3603e-05 5.7464e-05 0.0030162 0.00242849 30 799 16 6.87369e+06 69869.2 556674. 1926.21 0.77 0.0148613 0.0123832 25186 138497 -1 686 11 389 389 24245 6774 0 0 24245 6774 389 389 0 0 1419 1214 0 0 1762 1504 0 0 389 389 0 0 9727 1532 0 0 10559 1746 0 0 389 0 0 0 0 0 389 0 0 1.21167 1.21167 -46.1747 -1.21167 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.00338362 0.00299886 33 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.64 vpr 61.20 MiB -1 -1 0.10 20208 1 0.01 -1 -1 32992 -1 -1 5 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62668 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 22.5 MiB 0.10 244 61.2 MiB 0.02 0.00 1.28783 -36.5233 -1.28783 1.28783 0.88 7.9012e-05 6.1126e-05 0.00488191 0.00386771 32 815 16 6.87369e+06 69869.2 586450. 2029.24 0.77 0.0172973 0.0143392 25474 144626 -1 689 16 433 433 29529 8858 0 0 29529 8858 433 433 0 0 1690 1440 0 0 2747 2129 0 0 433 433 0 0 13393 2332 0 0 10833 2091 0 0 433 0 0 0 0 0 433 0 0 1.21797 1.21797 -47.8904 -1.21797 0 0 744469. 2576.02 0.28 0.02 0.12 -1 -1 0.28 0.00416995 0.00363627 34 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.75 vpr 61.52 MiB -1 -1 0.11 20032 1 0.01 -1 -1 32896 -1 -1 5 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62992 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 23.1 MiB 0.10 242 61.5 MiB 0.03 0.00 1.30983 -41.4665 -1.30983 1.30983 0.90 7.9466e-05 6.1432e-05 0.006205 0.00493384 32 907 18 6.87369e+06 69869.2 586450. 2029.24 0.80 0.020822 0.0172781 25474 144626 -1 694 17 490 490 33276 9999 0 0 33276 9999 490 490 0 0 1952 1664 0 0 3011 2352 0 0 490 490 0 0 15486 2572 0 0 11847 2431 0 0 490 0 0 0 0 0 490 0 0 1.20067 1.20067 -53.3917 -1.20067 0 0 744469. 2576.02 0.29 0.02 0.12 -1 -1 0.29 0.00497105 0.00434463 38 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 4.23 vpr 61.24 MiB -1 -1 0.10 20052 1 0.01 -1 -1 32880 -1 -1 6 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62708 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 22.7 MiB 0.10 322 61.2 MiB 0.04 0.00 1.33183 -47.1174 -1.33183 1.33183 0.89 0.000104382 8.2499e-05 0.00758347 0.00604202 34 1030 28 6.87369e+06 83843 618332. 2139.56 1.21 0.0357098 0.0296549 25762 151098 -1 819 15 535 535 40814 11353 0 0 40814 11353 535 535 0 0 1996 1725 0 0 2976 2355 0 0 535 535 0 0 17149 3577 0 0 17623 2626 0 0 535 0 0 0 0 0 535 0 0 1.27767 1.27767 -59.8576 -1.27767 0 0 787024. 2723.27 0.32 0.02 0.13 -1 -1 0.32 0.00515793 0.00453174 42 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 4.27 vpr 61.70 MiB -1 -1 0.10 20032 1 0.01 -1 -1 32924 -1 -1 7 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63180 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 23.1 MiB 0.14 526 61.7 MiB 0.04 0.00 1.35383 -54.6546 -1.35383 1.35383 0.90 0.00011233 9.0094e-05 0.00760254 0.00617062 34 1376 18 6.87369e+06 97816.9 618332. 2139.56 1.24 0.0368839 0.0308362 25762 151098 -1 1209 14 578 578 52699 12051 0 0 52699 12051 578 578 0 0 2208 1888 0 0 3150 2541 0 0 578 578 0 0 25113 2799 0 0 21072 3667 0 0 578 0 0 0 0 0 578 0 0 1.28867 1.28867 -70.185 -1.28867 0 0 787024. 2723.27 0.29 0.02 0.12 -1 -1 0.29 0.00518559 0.00456465 47 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 3.88 vpr 61.23 MiB -1 -1 0.11 20120 1 0.01 -1 -1 32944 -1 -1 7 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62696 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 22.8 MiB 0.11 405 61.2 MiB 0.04 0.00 1.61086 -57.9004 -1.61086 1.61086 0.91 0.000127717 0.000103118 0.00666939 0.00543122 32 1478 23 6.87369e+06 97816.9 586450. 2029.24 0.89 0.0281955 0.0238765 25474 144626 -1 1097 20 715 715 56324 16288 0 0 56324 16288 715 715 0 0 2823 2486 0 0 4459 3455 0 0 715 715 0 0 25863 4737 0 0 21749 4180 0 0 715 0 0 0 0 0 715 0 0 1.31967 1.31967 -74.132 -1.31967 0 0 744469. 2576.02 0.30 0.03 0.12 -1 -1 0.30 0.00732318 0.00641044 50 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 4.38 vpr 61.87 MiB -1 -1 0.09 20012 1 0.01 -1 -1 32948 -1 -1 8 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63352 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 23.3 MiB 0.11 573 61.9 MiB 0.05 0.00 1.65486 -72.6685 -1.65486 1.65486 0.90 0.00013017 0.000103272 0.00921214 0.00754028 34 1648 25 6.87369e+06 111791 618332. 2139.56 1.32 0.0500228 0.0422504 25762 151098 -1 1324 11 650 650 48198 13214 0 0 48198 13214 650 650 0 0 2472 2078 0 0 3455 2807 0 0 650 650 0 0 21032 3821 0 0 19939 3208 0 0 650 0 0 0 0 0 650 0 0 1.35897 1.35897 -87.2572 -1.35897 0 0 787024. 2723.27 0.32 0.03 0.13 -1 -1 0.32 0.00596374 0.00533174 58 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.37 vpr 61.89 MiB -1 -1 0.11 20136 1 0.01 -1 -1 32996 -1 -1 9 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63380 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.4 MiB 0.11 766 61.9 MiB 0.06 0.00 1.93389 -85.746 -1.93389 1.93389 0.90 0.000172883 0.000142286 0.011553 0.00953648 34 1892 19 6.87369e+06 125765 618332. 2139.56 1.28 0.0561131 0.0477438 25762 151098 -1 1676 15 850 850 74750 17984 0 0 74750 17984 850 850 0 0 3245 2779 0 0 4700 3744 0 0 850 850 0 0 32190 5096 0 0 32915 4665 0 0 850 0 0 0 0 0 850 0 0 1.44967 1.44967 -105.155 -1.44967 0 0 787024. 2723.27 0.31 0.03 0.12 -1 -1 0.31 0.00841555 0.00747828 66 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 4.69 vpr 62.61 MiB -1 -1 0.10 20328 1 0.01 -1 -1 33128 -1 -1 13 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64108 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1468 62.6 MiB 0.11 0.00 2.57995 -155.455 -2.57995 2.57995 0.91 0.000291084 0.000245396 0.0201662 0.0170281 34 3112 22 6.87369e+06 181660 618332. 2139.56 1.48 0.0958395 0.0831462 25762 151098 -1 2781 13 1129 1129 104605 24048 0 0 104605 24048 1129 1129 0 0 4543 3911 0 0 6548 5396 0 0 1129 1129 0 0 45407 6361 0 0 45849 6122 0 0 1129 0 0 0 0 0 1129 0 0 1.75797 1.75797 -169.151 -1.75797 0 0 787024. 2723.27 0.31 0.05 0.12 -1 -1 0.31 0.0113913 0.0102436 98 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 5.02 vpr 63.23 MiB -1 -1 0.12 20536 1 0.02 -1 -1 33240 -1 -1 17 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64752 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.5 MiB 0.13 1807 63.2 MiB 0.20 0.00 3.22602 -224.099 -3.22602 3.22602 0.88 0.000435542 0.000371124 0.0355631 0.0307824 34 4295 20 6.87369e+06 237555 618332. 2139.56 1.76 0.159057 0.141823 25762 151098 -1 3506 15 1515 1515 142184 32222 0 0 142184 32222 1515 1515 0 0 5799 4963 0 0 8168 6677 0 0 1515 1515 0 0 64191 8579 0 0 60996 8973 0 0 1515 0 0 0 0 0 1515 0 0 1.85967 1.85967 -221.86 -1.85967 0 0 787024. 2723.27 0.30 0.07 0.12 -1 -1 0.30 0.018615 0.0169801 130 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 3.10 vpr 60.67 MiB -1 -1 0.07 19764 1 0.01 -1 -1 32872 -1 -1 1 7 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62128 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 22.2 MiB 0.02 25 60.7 MiB 0.00 0.00 0.499083 -5.91422 -0.499083 0.499083 0.87 1.6077e-05 1.1014e-05 0.000715226 0.000530642 22 73 9 6.89349e+06 14093.8 443629. 1535.05 0.55 0.00345091 0.00269873 23458 102101 -1 52 9 31 31 815 366 0 0 815 366 31 31 0 0 100 87 0 0 161 115 0 0 31 31 0 0 220 67 0 0 272 35 0 0 31 0 0 0 0 0 31 0 0 0.74674 0.74674 -6.66602 -0.74674 0 0 531479. 1839.03 0.21 0.00 0.08 -1 -1 0.21 0.000773126 0.000660227 8 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 2.94 vpr 60.57 MiB -1 -1 0.09 19800 1 0.00 -1 -1 32900 -1 -1 2 9 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62028 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 22.1 MiB 0.04 53 60.6 MiB 0.00 0.00 0.663773 -8.88132 -0.663773 0.663773 0.88 2.1374e-05 1.5544e-05 0.000549834 0.000435458 14 158 10 6.89349e+06 28187.7 292583. 1012.40 0.40 0.00175855 0.00146514 22018 70521 -1 148 13 103 103 6310 2154 0 0 6310 2154 103 103 0 0 469 411 0 0 596 542 0 0 103 103 0 0 2260 507 0 0 2779 488 0 0 103 0 0 0 0 0 103 0 0 0.79102 0.79102 -11.7691 -0.79102 0 0 376052. 1301.22 0.16 0.01 0.06 -1 -1 0.16 0.00120123 0.00102385 10 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 3.33 vpr 60.78 MiB -1 -1 0.08 19744 1 0.01 -1 -1 32928 -1 -1 3 11 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62236 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 22.3 MiB 0.04 131 60.8 MiB 0.00 0.00 0.731292 -12.0753 -0.731292 0.731292 0.92 2.7494e-05 2.0243e-05 0.000785085 0.000615275 22 306 13 6.89349e+06 42281.5 443629. 1535.05 0.60 0.00535724 0.00433526 23458 102101 -1 257 7 87 87 7072 1728 0 0 7072 1728 87 87 0 0 365 302 0 0 482 426 0 0 87 87 0 0 3270 391 0 0 2781 435 0 0 87 0 0 0 0 0 87 0 0 0.936373 0.936373 -15.6886 -0.936373 0 0 531479. 1839.03 0.22 0.01 0.08 -1 -1 0.22 0.00108813 0.000954267 13 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.97 vpr 60.85 MiB -1 -1 0.10 19716 1 0.01 -1 -1 32900 -1 -1 3 13 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62308 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 22.3 MiB 0.05 79 60.8 MiB 0.01 0.00 0.707773 -12.5849 -0.707773 0.707773 0.88 2.8129e-05 2.094e-05 0.000921439 0.00071389 34 249 18 6.89349e+06 42281.5 618332. 2139.56 1.15 0.00971564 0.00775207 25762 151098 -1 203 19 257 257 13419 4347 0 0 13419 4347 257 257 0 0 956 799 0 0 1478 1152 0 0 257 257 0 0 5427 1054 0 0 5044 828 0 0 257 0 0 0 0 0 257 0 0 0.947373 0.947373 -15.7867 -0.947373 0 0 787024. 2723.27 0.32 0.01 0.13 -1 -1 0.32 0.00204907 0.00173048 15 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 4.22 vpr 60.99 MiB -1 -1 0.09 19948 1 0.01 -1 -1 32824 -1 -1 3 15 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62452 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 22.4 MiB 0.08 102 61.0 MiB 0.01 0.00 1.13846 -14.8523 -1.13846 1.13846 0.89 3.8412e-05 2.879e-05 0.00157969 0.00123255 26 339 15 6.89349e+06 42281.5 503264. 1741.40 1.44 0.0125496 0.0101069 24322 120374 -1 287 18 202 202 11393 3702 0 0 11393 3702 202 202 0 0 710 600 0 0 1207 911 0 0 202 202 0 0 4899 859 0 0 4173 928 0 0 202 0 0 0 0 0 202 0 0 1.21797 1.21797 -21.5296 -1.21797 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.00218832 0.00185466 17 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 3.45 vpr 60.88 MiB -1 -1 0.09 19860 1 0.01 -1 -1 32768 -1 -1 3 17 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62336 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 22.3 MiB 0.05 104 60.9 MiB 0.01 0.00 0.964803 -17.1511 -0.964803 0.964803 0.90 4.0381e-05 3.0435e-05 0.00202185 0.0015878 26 402 19 6.89349e+06 42281.5 503264. 1741.40 0.65 0.008637 0.00698381 24322 120374 -1 343 16 230 230 14271 4584 0 0 14271 4584 230 230 0 0 925 793 0 0 1406 1150 0 0 230 230 0 0 6307 1116 0 0 5173 1065 0 0 230 0 0 0 0 0 230 0 0 1.25097 1.25097 -26.6166 -1.25097 0 0 618332. 2139.56 0.26 0.01 0.10 -1 -1 0.26 0.0023024 0.00197192 18 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 3.45 vpr 61.05 MiB -1 -1 0.09 19856 1 0.01 -1 -1 32744 -1 -1 3 19 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62512 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 22.4 MiB 0.05 135 61.0 MiB 0.01 0.00 0.975803 -19.8515 -0.975803 0.975803 0.89 4.541e-05 3.3951e-05 0.00278144 0.00215861 26 311 11 6.89349e+06 42281.5 503264. 1741.40 0.65 0.00951755 0.00773354 24322 120374 -1 285 10 177 177 12404 3996 0 0 12404 3996 177 177 0 0 779 677 0 0 1022 904 0 0 177 177 0 0 4311 1160 0 0 5938 901 0 0 177 0 0 0 0 0 177 0 0 0.88802 0.88802 -24.2379 -0.88802 0 0 618332. 2139.56 0.26 0.01 0.10 -1 -1 0.26 0.00200602 0.00176409 20 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 3.46 vpr 61.01 MiB -1 -1 0.09 19884 1 0.00 -1 -1 32756 -1 -1 3 21 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62476 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 22.6 MiB 0.05 143 61.0 MiB 0.01 0.00 0.986803 -21.8021 -0.986803 0.986803 0.91 5.0088e-05 3.8357e-05 0.00197841 0.00157295 26 344 11 6.89349e+06 42281.5 503264. 1741.40 0.68 0.00975142 0.00802616 24322 120374 -1 331 14 175 175 9722 3528 0 0 9722 3528 175 175 0 0 771 662 0 0 990 860 0 0 175 175 0 0 3328 833 0 0 4283 823 0 0 175 0 0 0 0 0 175 0 0 1.12567 1.12567 -30.3969 -1.12567 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.00247164 0.0021348 22 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 3.62 vpr 61.08 MiB -1 -1 0.09 19784 1 0.01 -1 -1 32908 -1 -1 4 23 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62548 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 22.6 MiB 0.06 166 61.1 MiB 0.01 0.00 0.997803 -24.697 -0.997803 0.997803 0.89 5.2514e-05 4.1561e-05 0.00212471 0.0016802 32 487 17 6.89349e+06 56375.4 586450. 2029.24 0.78 0.0111077 0.00912211 25474 144626 -1 431 17 278 278 17990 5169 0 0 17990 5169 278 278 0 0 1087 901 0 0 1687 1343 0 0 278 278 0 0 6315 1194 0 0 8345 1175 0 0 278 0 0 0 0 0 278 0 0 1.03532 1.03532 -31.9118 -1.03532 0 0 744469. 2576.02 0.30 0.01 0.12 -1 -1 0.30 0.00309888 0.00266663 24 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 3.50 vpr 60.95 MiB -1 -1 0.09 19768 1 0.00 -1 -1 32928 -1 -1 4 25 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62416 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 22.4 MiB 0.06 152 61.0 MiB 0.01 0.00 1.0088 -25.4727 -1.0088 1.0088 0.89 5.3887e-05 4.0922e-05 0.00220422 0.00176669 28 508 16 6.89349e+06 56375.4 531479. 1839.03 0.73 0.0117598 0.00969677 24610 126494 -1 496 13 318 318 21789 7128 0 0 21789 7128 318 318 0 0 1275 1073 0 0 1845 1587 0 0 318 318 0 0 9507 2057 0 0 8526 1775 0 0 318 0 0 0 0 0 318 0 0 1.29017 1.29017 -38.0353 -1.29017 0 0 648988. 2245.63 0.26 0.01 0.10 -1 -1 0.26 0.00285154 0.00248173 26 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 3.51 vpr 60.99 MiB -1 -1 0.09 19880 1 0.01 -1 -1 32876 -1 -1 4 27 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62456 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 22.5 MiB 0.06 263 61.0 MiB 0.01 0.00 1.0198 -29.89 -1.0198 1.0198 0.87 5.7248e-05 4.3835e-05 0.00237457 0.0018977 32 728 14 6.89349e+06 56375.4 586450. 2029.24 0.75 0.01216 0.0100695 25474 144626 -1 644 13 313 313 22482 6112 0 0 22482 6112 313 313 0 0 1157 959 0 0 1853 1386 0 0 313 313 0 0 10279 1582 0 0 8567 1559 0 0 313 0 0 0 0 0 313 0 0 1.39827 1.39827 -43.4316 -1.39827 0 0 744469. 2576.02 0.28 0.01 0.11 -1 -1 0.28 0.00298606 0.00260275 28 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 3.69 vpr 61.22 MiB -1 -1 0.09 19904 1 0.00 -1 -1 32768 -1 -1 5 29 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62692 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 22.7 MiB 0.09 196 61.2 MiB 0.02 0.00 1.0308 -31.2922 -1.0308 1.0308 0.89 5.4772e-05 4.1089e-05 0.00406686 0.00318457 32 752 17 6.89349e+06 70469.2 586450. 2029.24 0.79 0.0153152 0.0125876 25474 144626 -1 615 11 373 373 29057 8598 0 0 29057 8598 373 373 0 0 1502 1271 0 0 2402 1893 0 0 373 373 0 0 13671 2403 0 0 10736 2285 0 0 373 0 0 0 0 0 373 0 0 1.06637 1.06637 -40.9743 -1.06637 0 0 744469. 2576.02 0.29 0.02 0.12 -1 -1 0.29 0.00301852 0.00265284 31 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 3.53 vpr 61.21 MiB -1 -1 0.08 20160 1 0.01 -1 -1 32932 -1 -1 5 31 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62676 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 22.6 MiB 0.11 335 61.2 MiB 0.02 0.00 1.27683 -35.952 -1.27683 1.27683 0.87 6.4503e-05 4.8296e-05 0.0033672 0.00266118 30 847 12 6.89349e+06 70469.2 556674. 1926.21 0.73 0.0139395 0.011464 25186 138497 -1 724 16 394 394 26844 7247 0 0 26844 7247 394 394 0 0 1418 1159 0 0 1914 1604 0 0 394 394 0 0 10808 1785 0 0 11916 1911 0 0 394 0 0 0 0 0 394 0 0 1.22462 1.22462 -46.9894 -1.22462 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.0037208 0.00322405 33 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 3.61 vpr 61.00 MiB -1 -1 0.09 20168 1 0.01 -1 -1 32908 -1 -1 5 33 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62460 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 22.3 MiB 0.10 427 61.0 MiB 0.02 0.00 1.28783 -39.5305 -1.28783 1.28783 0.88 7.6901e-05 6.0278e-05 0.00428862 0.00343654 30 957 16 6.89349e+06 70469.2 556674. 1926.21 0.75 0.0167231 0.0138792 25186 138497 -1 856 19 457 457 43085 9776 0 0 43085 9776 457 457 0 0 1773 1517 0 0 2296 1940 0 0 457 457 0 0 20485 2423 0 0 17617 2982 0 0 457 0 0 0 0 0 457 0 0 1.09932 1.09932 -49.8445 -1.09932 0 0 706193. 2443.58 0.27 0.02 0.11 -1 -1 0.27 0.00466489 0.00404155 34 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 4.29 vpr 61.43 MiB -1 -1 0.10 20216 1 0.01 -1 -1 32932 -1 -1 5 37 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62904 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 23.0 MiB 0.09 246 61.4 MiB 0.03 0.00 1.30983 -41.7863 -1.30983 1.30983 0.93 9.9251e-05 7.9884e-05 0.00661562 0.00532303 34 914 16 6.89349e+06 70469.2 618332. 2139.56 1.29 0.0305406 0.0253674 25762 151098 -1 743 17 481 481 34393 10386 0 0 34393 10386 481 481 0 0 1903 1649 0 0 3090 2484 0 0 481 481 0 0 16034 2701 0 0 12404 2590 0 0 481 0 0 0 0 0 481 0 0 1.26197 1.26197 -53.9683 -1.26197 0 0 787024. 2723.27 0.31 0.02 0.12 -1 -1 0.31 0.00486434 0.00424673 38 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 3.70 vpr 61.53 MiB -1 -1 0.09 20164 1 0.01 -1 -1 32820 -1 -1 6 41 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63008 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 23.0 MiB 0.09 284 61.5 MiB 0.03 0.00 1.33183 -45.6578 -1.33183 1.33183 0.89 9.1528e-05 7.1845e-05 0.00625353 0.00499795 30 933 17 6.89349e+06 84563 556674. 1926.21 0.79 0.0221628 0.018464 25186 138497 -1 762 21 516 516 37707 12028 0 0 37707 12028 516 516 0 0 1890 1566 0 0 2993 2352 0 0 516 516 0 0 16481 3676 0 0 15311 3402 0 0 516 0 0 0 0 0 516 0 0 1.38922 1.38922 -60.0186 -1.38922 0 0 706193. 2443.58 0.28 0.02 0.11 -1 -1 0.28 0.0063422 0.00551744 42 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 4.28 vpr 61.45 MiB -1 -1 0.11 20136 1 0.01 -1 -1 32908 -1 -1 7 45 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62920 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 22.8 MiB 0.11 517 61.4 MiB 0.04 0.00 1.35383 -54.9052 -1.35383 1.35383 0.90 0.000109729 8.8952e-05 0.00741169 0.00596659 34 1355 15 6.89349e+06 98656.9 618332. 2139.56 1.28 0.036418 0.030487 25762 151098 -1 1202 14 579 579 54655 12748 0 0 54655 12748 579 579 0 0 2215 1847 0 0 3472 2818 0 0 579 579 0 0 23809 3359 0 0 24001 3566 0 0 579 0 0 0 0 0 579 0 0 1.39197 1.39197 -71.4017 -1.39197 0 0 787024. 2723.27 0.31 0.03 0.12 -1 -1 0.31 0.00523235 0.00461748 47 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 4.38 vpr 61.42 MiB -1 -1 0.10 20088 1 0.01 -1 -1 32952 -1 -1 7 49 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 22.8 MiB 0.11 404 61.4 MiB 0.04 0.00 1.61086 -58.9028 -1.61086 1.61086 0.90 0.000127611 0.000102409 0.00834839 0.00680659 34 1400 29 6.89349e+06 98656.9 618332. 2139.56 1.37 0.0436648 0.0367376 25762 151098 -1 1081 17 692 692 54591 15676 0 0 54591 15676 692 692 0 0 2693 2292 0 0 4193 3318 0 0 692 692 0 0 24874 4688 0 0 21447 3994 0 0 692 0 0 0 0 0 692 0 0 1.36517 1.36517 -75.2213 -1.36517 0 0 787024. 2723.27 0.32 0.03 0.12 -1 -1 0.32 0.00672454 0.00592216 50 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 4.29 vpr 61.77 MiB -1 -1 0.11 20080 1 0.01 -1 -1 33004 -1 -1 8 57 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63248 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 23.3 MiB 0.09 668 61.8 MiB 0.04 0.00 1.65486 -73.2357 -1.65486 1.65486 0.89 0.000141648 0.000113991 0.00604679 0.00497299 34 1684 22 6.89349e+06 112751 618332. 2139.56 1.31 0.0454327 0.0383828 25762 151098 -1 1491 15 645 645 66648 15268 0 0 66648 15268 645 645 0 0 2521 2071 0 0 3995 3219 0 0 645 645 0 0 29621 4484 0 0 29221 4204 0 0 645 0 0 0 0 0 645 0 0 1.41592 1.41592 -90.9403 -1.41592 0 0 787024. 2723.27 0.30 0.03 0.12 -1 -1 0.30 0.00747444 0.00663852 58 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 4.41 vpr 61.64 MiB -1 -1 0.11 20008 1 0.01 -1 -1 33040 -1 -1 9 65 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63120 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 23.1 MiB 0.11 795 61.6 MiB 0.06 0.00 1.93389 -87.8761 -1.93389 1.93389 0.94 0.000156008 0.000128233 0.0114711 0.0094129 34 1814 22 6.89349e+06 126845 618332. 2139.56 1.28 0.0563109 0.0479021 25762 151098 -1 1612 19 786 786 59963 14797 0 0 59963 14797 786 786 0 0 2896 2414 0 0 4193 3325 0 0 786 786 0 0 25455 3871 0 0 25847 3615 0 0 786 0 0 0 0 0 786 0 0 1.42767 1.42767 -102.73 -1.42767 0 0 787024. 2723.27 0.30 0.03 0.12 -1 -1 0.30 0.00905313 0.007964 66 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 4.50 vpr 62.45 MiB -1 -1 0.11 20296 1 0.01 -1 -1 33176 -1 -1 13 97 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63952 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1438 62.5 MiB 0.11 0.00 2.57995 -154.077 -2.57995 2.57995 0.87 0.00027387 0.000232424 0.0199352 0.0168992 34 3129 34 6.89349e+06 183220 618332. 2139.56 1.41 0.102198 0.0891378 25762 151098 -1 2731 14 1087 1087 103417 23401 0 0 103417 23401 1087 1087 0 0 4155 3351 0 0 5922 4823 0 0 1087 1087 0 0 47252 6272 0 0 43914 6781 0 0 1087 0 0 0 0 0 1087 0 0 1.77997 1.77997 -169.781 -1.77997 0 0 787024. 2723.27 0.29 0.05 0.12 -1 -1 0.29 0.0118062 0.0106349 98 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 5.04 vpr 63.13 MiB -1 -1 0.12 20744 1 0.02 -1 -1 33248 -1 -1 17 129 0 0 success 85fd918-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-03-24T03:10:09 gh-actions-runner-vtr-auto-spawned32 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64644 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1824 63.1 MiB 0.20 0.00 3.22602 -223.848 -3.22602 3.22602 0.88 0.000409095 0.000350956 0.0347498 0.0298506 34 4203 21 6.89349e+06 239595 618332. 2139.56 1.66 0.148701 0.130987 25762 151098 -1 3621 17 1474 1474 136607 30722 0 0 136607 30722 1474 1474 0 0 5617 4562 0 0 8141 6575 0 0 1474 1474 0 0 61763 8208 0 0 58138 8429 0 0 1474 0 0 0 0 0 1474 0 0 1.75832 1.75832 -217.225 -1.75832 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.019998 0.018054 130 -1 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.65 vpr 51.08 MiB -1 -1 0.09 16296 1 0.05 -1 -1 31520 -1 -1 2 7 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52308 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 12.7 MiB 0.00 55 51.1 MiB 0.00 0.00 0.581048 -5.66613 -0.581048 0.581048 0.78 1.5392e-05 1.0945e-05 0.000449941 0.000336805 22 122 4 6.55708e+06 24110 420624. 1455.45 1.33 0.00336626 0.00260363 20158 92377 -1 120 3 25 25 1518 477 0 0 1518 477 25 25 0 0 102 80 0 0 121 110 0 0 25 25 0 0 653 112 0 0 592 125 0 0 25 0 0 0 0 0 25 0 0 0.71851 0.71851 -7.79053 -0.71851 0 0 500653. 1732.36 0.14 0.00 0.05 -1 -1 0.14 0.0004289 0.000383817 10 4 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.21 vpr 51.22 MiB -1 -1 0.08 16464 2 0.04 -1 -1 31704 -1 -1 2 9 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52452 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 12.8 MiB 0.00 128 51.2 MiB 0.00 0.00 0.819447 -9.91401 -0.819447 0.819447 0.59 1.4153e-05 9.637e-06 0.000210348 0.000178565 20 224 9 6.55708e+06 24110 394039. 1363.46 0.34 0.00109906 0.000939214 19870 87366 -1 200 6 61 65 3511 872 0 0 3511 872 65 62 0 0 221 156 0 0 280 226 0 0 65 65 0 0 1494 198 0 0 1386 165 0 0 65 0 0 4 4 0 81 0 0 0.819447 0.819447 -11.0376 -0.819447 0 0 477104. 1650.88 0.14 0.00 0.05 -1 -1 0.14 0.000603366 0.000534388 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.13 vpr 51.24 MiB -1 -1 0.10 16340 2 0.04 -1 -1 31412 -1 -1 2 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52468 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 12.7 MiB 0.01 103 51.2 MiB 0.01 0.00 0.819447 -10.347 -0.819447 0.819447 0.95 3.106e-05 2.2803e-05 0.00082499 0.000656835 26 208 13 6.55708e+06 24110 477104. 1650.88 1.44 0.00797999 0.0064088 21022 109990 -1 201 8 67 70 4639 1205 0 0 4639 1205 70 67 0 0 279 216 0 0 362 313 0 0 70 67 0 0 1935 292 0 0 1923 250 0 0 70 0 0 3 0 6 85 0 0 0.900447 0.900447 -12.9914 -0.900447 0 0 585099. 2024.56 0.18 0.00 0.06 -1 -1 0.18 0.000855181 0.00075636 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.67 vpr 51.26 MiB -1 -1 0.09 16420 3 0.05 -1 -1 31460 -1 -1 3 13 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52492 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 12.7 MiB 0.01 195 51.3 MiB 0.00 0.00 1.50711 -16.692 -1.50711 1.50711 0.80 1.9168e-05 1.3543e-05 0.000716111 0.000564 30 347 10 6.55708e+06 36165 526063. 1820.29 1.08 0.0092215 0.00747239 21886 126133 -1 334 6 74 86 5926 1401 0 0 5926 1401 86 83 0 0 311 244 0 0 403 338 0 0 86 86 0 0 2737 327 0 0 2303 323 0 0 86 0 0 12 12 0 134 0 0 1.50711 1.50711 -19.3364 -1.50711 0 0 666494. 2306.21 0.19 0.00 0.07 -1 -1 0.19 0.000858386 0.000776219 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.22 vpr 51.39 MiB -1 -1 0.08 16308 3 0.03 -1 -1 31264 -1 -1 3 15 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52628 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 12.8 MiB 0.01 108 51.4 MiB 0.00 0.00 1.05785 -14.4718 -1.05785 1.05785 0.59 2.2402e-05 1.6068e-05 0.00063625 0.000506325 24 340 9 6.55708e+06 36165 448715. 1552.65 1.03 0.00560887 0.00458319 20734 103517 -1 311 13 156 183 9731 3128 0 0 9731 3128 183 157 0 0 686 581 0 0 994 807 0 0 183 160 0 0 3227 728 0 0 4458 695 0 0 183 0 0 27 27 20 311 0 0 1.14085 1.14085 -19.5706 -1.14085 0 0 554710. 1919.41 0.23 0.01 0.09 -1 -1 0.23 0.0020245 0.00177298 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.77 vpr 51.39 MiB -1 -1 0.09 16616 3 0.05 -1 -1 31292 -1 -1 4 17 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52620 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 12.8 MiB 0.04 128 51.4 MiB 0.01 0.00 1.46791 -17.8652 -1.46791 1.46791 0.90 2.8258e-05 2.0869e-05 0.00112229 0.000885932 22 392 9 6.55708e+06 48220 420624. 1455.45 1.21 0.00871624 0.00711067 20158 92377 -1 315 16 159 168 10290 3115 0 0 10290 3115 168 164 0 0 659 547 0 0 888 717 0 0 168 164 0 0 3959 739 0 0 4448 784 0 0 168 0 0 9 3 6 204 0 0 1.70831 1.70831 -23.3944 -1.70831 0 0 500653. 1732.36 0.14 0.01 0.05 -1 -1 0.14 0.00167288 0.0014674 25 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.37 vpr 51.44 MiB -1 -1 0.08 16740 4 0.04 -1 -1 31388 -1 -1 4 19 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52676 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 13.0 MiB 0.01 137 51.4 MiB 0.01 0.00 1.50711 -21.1464 -1.50711 1.50711 0.93 5.1976e-05 3.9435e-05 0.00253021 0.00199458 26 493 18 6.55708e+06 48220 477104. 1650.88 0.52 0.0081541 0.00666404 21022 109990 -1 402 17 222 259 17409 5379 0 0 17409 5379 259 226 0 0 1006 831 0 0 1517 1249 0 0 259 243 0 0 6703 1473 0 0 7665 1357 0 0 259 0 0 37 25 20 423 0 0 1.58811 1.58811 -27.6032 -1.58811 0 0 585099. 2024.56 0.25 0.01 0.09 -1 -1 0.25 0.00182777 0.00160298 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.65 vpr 51.47 MiB -1 -1 0.11 16628 4 0.05 -1 -1 31492 -1 -1 5 21 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52704 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 13.0 MiB 0.02 270 51.5 MiB 0.01 0.00 1.46791 -25.4626 -1.46791 1.46791 0.58 3.3044e-05 2.4769e-05 0.000893165 0.000728747 26 609 20 6.55708e+06 60275 477104. 1650.88 0.48 0.00723971 0.00606121 21022 109990 -1 565 13 212 265 26735 6925 0 0 26735 6925 265 240 0 0 1072 872 0 0 2048 1653 0 0 265 246 0 0 12076 1885 0 0 11009 2029 0 0 265 0 0 53 47 35 512 0 0 1.58811 1.58811 -32.9568 -1.58811 0 0 585099. 2024.56 0.25 0.01 0.10 -1 -1 0.25 0.00308994 0.00274486 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.39 vpr 51.55 MiB -1 -1 0.10 16640 5 0.05 -1 -1 31300 -1 -1 6 23 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52788 23 12 76 88 1 61 41 17 17 289 -1 unnamed_device 13.0 MiB 0.01 361 51.6 MiB 0.02 0.00 1.7455 -31.2078 -1.7455 1.7455 0.94 6.7107e-05 5.1746e-05 0.00306108 0.00245848 26 726 12 6.55708e+06 72330 477104. 1650.88 0.68 0.0122215 0.0102289 21022 109990 -1 677 14 259 322 20565 5269 0 0 20565 5269 322 281 0 0 1271 1009 0 0 1910 1558 0 0 322 286 0 0 8823 1012 0 0 7917 1123 0 0 322 0 0 63 22 63 616 0 0 1.83051 1.83051 -37.5418 -1.83051 0 0 585099. 2024.56 0.21 0.01 0.10 -1 -1 0.21 0.00210602 0.00187804 37 19 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.65 vpr 51.44 MiB -1 -1 0.10 16644 5 0.05 -1 -1 31296 -1 -1 6 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52672 25 13 83 96 1 66 44 17 17 289 -1 unnamed_device 12.9 MiB 0.02 322 51.4 MiB 0.01 0.00 1.53464 -31.8396 -1.53464 1.53464 0.59 3.8155e-05 2.8906e-05 0.00219144 0.00174302 26 789 15 6.55708e+06 72330 477104. 1650.88 0.46 0.00921264 0.00767276 21022 109990 -1 722 18 329 478 34105 8356 0 0 34105 8356 478 376 0 0 1796 1503 0 0 3034 2334 0 0 478 384 0 0 13956 1951 0 0 14363 1808 0 0 478 0 0 149 146 169 1296 0 0 1.94871 1.94871 -41.905 -1.94871 0 0 585099. 2024.56 0.26 0.02 0.10 -1 -1 0.26 0.00430535 0.00376831 40 21 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.01 vpr 51.50 MiB -1 -1 0.07 16500 5 0.04 -1 -1 31136 -1 -1 7 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52736 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 12.9 MiB 0.02 247 51.5 MiB 0.01 0.00 1.49544 -30.0023 -1.49544 1.49544 0.68 4.7422e-05 3.6657e-05 0.00257237 0.0020522 26 783 19 6.55708e+06 84385 477104. 1650.88 0.54 0.0114883 0.00955196 21022 109990 -1 590 13 298 432 21773 7067 0 0 21773 7067 432 346 0 0 1629 1328 0 0 2498 1976 0 0 432 356 0 0 7727 1657 0 0 9055 1404 0 0 432 0 0 134 159 97 1212 0 0 1.62931 1.62931 -37.8693 -1.62931 0 0 585099. 2024.56 0.17 0.01 0.06 -1 -1 0.17 0.00260046 0.00233049 42 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.12 vpr 51.64 MiB -1 -1 0.10 16588 6 0.06 -1 -1 31264 -1 -1 7 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52884 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 13.0 MiB 0.04 434 51.6 MiB 0.01 0.00 2.15556 -41.7282 -2.15556 2.15556 0.60 5.2368e-05 4.1623e-05 0.00158307 0.00131226 30 867 10 6.55708e+06 84385 526063. 1820.29 1.78 0.0147871 0.0124608 21886 126133 -1 776 10 218 310 19113 4690 0 0 19113 4690 310 242 0 0 1118 908 0 0 1462 1207 0 0 310 253 0 0 8237 1019 0 0 7676 1061 0 0 310 0 0 92 54 90 794 0 0 2.15556 2.15556 -48.5012 -2.15556 0 0 666494. 2306.21 0.19 0.01 0.06 -1 -1 0.19 0.00229314 0.00207873 45 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.51 vpr 51.67 MiB -1 -1 0.10 16576 6 0.04 -1 -1 31084 -1 -1 10 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52912 31 16 104 120 1 81 57 17 17 289 -1 unnamed_device 13.2 MiB 0.04 457 51.7 MiB 0.03 0.00 1.73384 -42.1415 -1.73384 1.73384 1.01 9.3e-05 7.3288e-05 0.00550591 0.00447827 26 1079 15 6.55708e+06 120550 477104. 1650.88 1.55 0.0246976 0.0206429 21022 109990 -1 917 12 298 446 29635 7301 0 0 29635 7301 446 344 0 0 1715 1326 0 0 2503 1994 0 0 446 348 0 0 12317 1657 0 0 12208 1632 0 0 446 0 0 148 144 159 1351 0 0 1.85404 1.85404 -49.7161 -1.85404 0 0 585099. 2024.56 0.16 0.01 0.08 -1 -1 0.16 0.00287334 0.00259517 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 3.30 vpr 51.78 MiB -1 -1 0.07 16604 7 0.05 -1 -1 31376 -1 -1 7 33 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53024 33 17 112 129 1 86 57 17 17 289 -1 unnamed_device 13.3 MiB 0.05 407 51.8 MiB 0.03 0.00 2.2223 -46.1898 -2.2223 2.2223 0.96 0.000137487 0.000106701 0.00593115 0.00474854 28 979 11 6.55708e+06 84385 500653. 1732.36 0.49 0.0147115 0.0122536 21310 115450 -1 881 11 366 485 31911 8216 0 0 31911 8216 485 410 0 0 1845 1490 0 0 2631 2140 0 0 485 422 0 0 12979 2016 0 0 13486 1738 0 0 485 0 0 119 69 80 1021 0 0 2.2223 2.2223 -54.967 -2.2223 0 0 612192. 2118.31 0.17 0.01 0.06 -1 -1 0.17 0.00285751 0.00259387 52 30 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.32 vpr 51.81 MiB -1 -1 0.07 16492 7 0.07 -1 -1 31468 -1 -1 10 37 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53056 37 19 127 146 1 99 66 17 17 289 -1 unnamed_device 13.3 MiB 0.03 480 51.8 MiB 0.03 0.00 2.75256 -59.8445 -2.75256 2.75256 0.96 0.000110171 8.8025e-05 0.0057772 0.00471513 30 1020 13 6.55708e+06 120550 526063. 1820.29 0.49 0.0158066 0.0133454 21886 126133 -1 882 10 285 386 18997 5162 0 0 18997 5162 386 319 0 0 1337 1009 0 0 1801 1469 0 0 386 330 0 0 7604 1039 0 0 7483 996 0 0 386 0 0 101 74 84 913 0 0 2.75256 2.75256 -66.6959 -2.75256 0 0 666494. 2306.21 0.18 0.01 0.07 -1 -1 0.18 0.00314471 0.00287198 59 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.64 vpr 51.91 MiB -1 -1 0.09 16608 8 0.06 -1 -1 31332 -1 -1 11 41 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53156 41 21 139 160 1 110 73 17 17 289 -1 unnamed_device 13.3 MiB 0.05 522 51.9 MiB 0.02 0.00 2.5417 -60.2868 -2.5417 2.5417 0.62 7.3186e-05 5.9145e-05 0.00401858 0.00331749 26 1273 16 6.55708e+06 132605 477104. 1650.88 1.41 0.0279145 0.0236805 21022 109990 -1 1167 18 419 559 37617 9475 0 0 37617 9475 559 456 0 0 2082 1593 0 0 3233 2491 0 0 559 470 0 0 16045 2170 0 0 15139 2295 0 0 559 0 0 140 110 159 1290 0 0 2.8233 2.8233 -77.3723 -2.8233 0 0 585099. 2024.56 0.16 0.01 0.06 -1 -1 0.16 0.0044338 0.00396208 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.22 vpr 52.02 MiB -1 -1 0.13 16748 9 0.08 -1 -1 31704 -1 -1 13 45 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53264 45 23 153 176 1 123 81 17 17 289 -1 unnamed_device 13.5 MiB 0.27 648 52.0 MiB 0.03 0.00 3.02956 -75.2689 -3.02956 3.02956 0.58 7.5266e-05 6.0208e-05 0.00601494 0.0048939 32 1297 19 6.55708e+06 156715 554710. 1919.41 1.62 0.034424 0.0290698 22174 131602 -1 1149 18 386 488 25692 7133 0 0 25692 7133 488 441 0 0 1829 1426 0 0 2740 2176 0 0 488 444 0 0 10921 1240 0 0 9226 1406 0 0 488 0 0 102 29 89 912 0 0 3.35096 3.35096 -88.6685 -3.35096 0 0 701300. 2426.64 0.19 0.01 0.07 -1 -1 0.19 0.00477624 0.00428464 74 41 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.26 vpr 52.17 MiB -1 -1 0.10 16868 10 0.07 -1 -1 31640 -1 -1 12 49 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53424 49 25 166 191 1 129 86 17 17 289 -1 unnamed_device 13.6 MiB 0.08 718 52.2 MiB 0.05 0.00 3.51862 -88.7524 -3.51862 3.51862 0.94 0.000146766 0.000118566 0.00916097 0.0075728 26 1463 16 6.55708e+06 144660 477104. 1650.88 1.48 0.0389716 0.0332653 21022 109990 -1 1367 12 504 688 45651 11407 0 0 45651 11407 688 573 0 0 2622 2079 0 0 4168 3292 0 0 688 591 0 0 19298 2378 0 0 18187 2494 0 0 688 0 0 184 89 176 1551 0 0 3.63882 3.63882 -100.772 -3.63882 0 0 585099. 2024.56 0.17 0.02 0.06 -1 -1 0.17 0.00451854 0.00411711 79 44 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.87 vpr 52.29 MiB -1 -1 0.11 16852 11 0.07 -1 -1 32180 -1 -1 14 57 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53540 57 29 198 227 1 159 100 17 17 289 -1 unnamed_device 13.8 MiB 0.18 711 52.3 MiB 0.03 0.00 3.88888 -102.253 -3.88888 3.88888 0.58 0.00010127 8.2083e-05 0.00561487 0.00464622 30 1504 16 6.55708e+06 168770 526063. 1820.29 0.55 0.0226632 0.0194538 21886 126133 -1 1350 15 561 736 44727 11546 0 0 44727 11546 736 629 0 0 2718 2143 0 0 3888 3117 0 0 736 636 0 0 18150 2620 0 0 18499 2401 0 0 736 0 0 175 118 145 1564 0 0 4.12928 4.12928 -117.519 -4.12928 0 0 666494. 2306.21 0.19 0.02 0.07 -1 -1 0.19 0.00592189 0.00534918 93 56 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.55 vpr 52.48 MiB -1 -1 0.12 16920 13 0.09 -1 -1 31460 -1 -1 16 65 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53740 65 33 224 257 1 180 114 17 17 289 -1 unnamed_device 13.8 MiB 0.25 699 52.5 MiB 0.03 0.00 4.54296 -126.049 -4.54296 4.54296 0.59 0.000115004 9.4283e-05 0.00528121 0.00441557 30 1974 46 6.55708e+06 192880 526063. 1820.29 0.99 0.0366214 0.0319562 21886 126133 -1 1584 26 832 1122 183335 106167 0 0 183335 106167 1122 928 0 0 3966 3256 0 0 7206 5272 0 0 1122 956 0 0 84276 48110 0 0 85643 47645 0 0 1122 0 0 290 443 272 2739 0 0 4.90356 4.90356 -152.132 -4.90356 0 0 666494. 2306.21 0.26 0.05 0.11 -1 -1 0.26 0.00904357 0.00809824 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 5.04 vpr 53.38 MiB -1 -1 0.11 17280 19 0.10 -1 -1 31724 -1 -1 24 97 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 97 49 340 389 1 266 170 17 17 289 -1 unnamed_device 14.6 MiB 0.26 1615 53.4 MiB 0.09 0.00 6.37519 -251.831 -6.37519 6.37519 0.62 0.000378717 0.00031665 0.0163962 0.0139542 30 3196 18 6.55708e+06 289320 526063. 1820.29 2.31 0.0944594 0.0833689 21886 126133 -1 2841 10 820 1140 69688 16617 0 0 69688 16617 1140 879 0 0 3950 3056 0 0 5323 4269 0 0 1140 920 0 0 29536 3795 0 0 28599 3698 0 0 1140 0 0 320 237 298 2743 0 0 6.85599 6.85599 -281.28 -6.85599 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00839726 0.00779976 161 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 3.99 vpr 53.93 MiB -1 -1 0.15 17380 26 0.10 -1 -1 31836 -1 -1 35 129 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55224 129 65 453 518 1 353 229 17 17 289 -1 unnamed_device 15.0 MiB 0.23 2142 53.9 MiB 0.12 0.00 8.91496 -417.948 -8.91496 8.91496 0.75 0.000481669 0.000407888 0.0244448 0.0212925 32 4416 22 6.55708e+06 421925 554710. 1919.41 0.69 0.0777397 0.0695121 22174 131602 -1 4003 60 1496 2154 573874 302738 0 0 573874 302738 2154 1711 0 0 8651 7109 0 0 22395 15070 0 0 2154 1768 0 0 274216 142066 0 0 264304 135014 0 0 2154 0 0 658 761 739 5854 0 0 9.03516 9.03516 -457.134 -9.03516 0 0 701300. 2426.64 0.19 0.16 0.07 -1 -1 0.19 0.0411339 0.0372742 213 131 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.40 abc 28.64 MiB -1 -1 0.06 16248 1 0.01 -1 -1 29328 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13312 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.44 abc 28.76 MiB -1 -1 0.09 16480 1 0.01 -1 -1 29452 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13384 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.41 abc 28.67 MiB -1 -1 0.09 16476 1 0.01 -1 -1 29360 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13252 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.47 abc 28.77 MiB -1 -1 0.10 16376 1 0.00 -1 -1 29464 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13304 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.45 abc 28.82 MiB -1 -1 0.09 16412 1 0.01 -1 -1 29508 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13276 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.47 abc 28.88 MiB -1 -1 0.09 16472 1 0.01 -1 -1 29568 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13348 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.48 abc 28.70 MiB -1 -1 0.09 16648 1 0.01 -1 -1 29392 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13244 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.51 abc 28.75 MiB -1 -1 0.09 16792 1 0.02 -1 -1 29444 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13312 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.63 abc 28.75 MiB -1 -1 0.10 16756 1 0.01 -1 -1 29440 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13404 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.50 abc 28.76 MiB -1 -1 0.10 16604 1 0.00 -1 -1 29448 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13328 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.49 abc 28.88 MiB -1 -1 0.10 16604 1 0.00 -1 -1 29568 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13388 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.54 abc 28.80 MiB -1 -1 0.10 16760 1 0.02 -1 -1 29496 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13408 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.41 abc 28.76 MiB -1 -1 0.09 16628 1 0.01 -1 -1 29448 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13468 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.45 abc 28.70 MiB -1 -1 0.11 16748 1 0.01 -1 -1 29388 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13484 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.42 abc 28.74 MiB -1 -1 0.09 16652 1 0.01 -1 -1 29432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13612 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.42 abc 28.76 MiB -1 -1 0.11 16588 1 0.01 -1 -1 29448 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13512 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.40 abc 28.76 MiB -1 -1 0.08 16556 1 0.01 -1 -1 29448 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13636 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.41 abc 28.91 MiB -1 -1 0.09 16584 1 0.01 -1 -1 29604 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13732 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.43 abc 28.83 MiB -1 -1 0.11 16588 1 0.01 -1 -1 29520 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13764 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.49 abc 28.91 MiB -1 -1 0.12 16800 1 0.01 -1 -1 29608 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13780 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.48 abc 28.98 MiB -1 -1 0.12 17004 1 0.01 -1 -1 29680 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 14060 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.52 abc 29.22 MiB -1 -1 0.13 17112 1 0.02 -1 -1 29924 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 14380 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.40 abc 28.76 MiB -1 -1 0.08 16500 1 0.01 -1 -1 29452 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13044 7 4 24 25 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.42 abc 28.80 MiB -1 -1 0.10 16308 1 0.01 -1 -1 29496 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13088 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.40 abc 28.66 MiB -1 -1 0.10 16488 1 0.00 -1 -1 29352 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13200 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.37 abc 28.64 MiB -1 -1 0.08 16328 1 0.02 -1 -1 29328 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13064 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.41 abc 28.65 MiB -1 -1 0.10 16324 1 0.00 -1 -1 29336 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13132 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.39 abc 28.85 MiB -1 -1 0.08 16224 1 0.00 -1 -1 29544 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13148 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.43 abc 28.83 MiB -1 -1 0.09 16436 1 0.00 -1 -1 29520 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13056 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.37 abc 28.82 MiB -1 -1 0.09 16340 1 0.00 -1 -1 29508 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13192 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.42 abc 28.80 MiB -1 -1 0.09 16580 1 0.01 -1 -1 29496 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13236 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.42 abc 28.84 MiB -1 -1 0.10 16648 1 0.01 -1 -1 29532 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13216 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.39 abc 28.82 MiB -1 -1 0.07 16656 1 0.01 -1 -1 29508 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13348 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.43 abc 28.83 MiB -1 -1 0.09 16740 1 0.00 -1 -1 29520 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13164 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.42 abc 28.65 MiB -1 -1 0.09 16624 1 0.01 -1 -1 29336 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13344 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.40 abc 28.73 MiB -1 -1 0.07 16764 1 0.00 -1 -1 29420 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13336 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.41 abc 28.94 MiB -1 -1 0.10 16740 1 0.01 -1 -1 29632 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13256 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.35 abc 28.92 MiB -1 -1 0.06 16576 1 0.01 -1 -1 29616 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13220 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.40 abc 28.77 MiB -1 -1 0.08 16588 1 0.02 -1 -1 29464 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13396 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.37 abc 28.88 MiB -1 -1 0.07 16660 1 0.02 -1 -1 29568 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13372 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.42 abc 28.81 MiB -1 -1 0.12 16764 1 0.01 -1 -1 29504 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13676 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.44 abc 28.89 MiB -1 -1 0.11 16800 1 0.01 -1 -1 29588 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13672 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.47 abc 28.99 MiB -1 -1 0.11 17000 1 0.02 -1 -1 29684 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 13784 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.40 abc 29.20 MiB -1 -1 0.13 17116 1 0.02 -1 -1 29904 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 14076 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 3.43 vpr 51.61 MiB -1 -1 0.10 16324 1 0.01 -1 -1 29464 -1 -1 2 7 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52848 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 13.1 MiB 0.01 34 51.6 MiB 0.00 0.00 0.649848 -5.97153 -0.649848 0.649848 0.73 1.9406e-05 1.3367e-05 0.000443455 0.000345241 18 97 8 6.64007e+06 25116 355633. 1230.56 1.21 0.00634506 0.00503227 20242 81429 -1 62 5 24 24 771 282 0 0 771 282 24 24 0 0 82 44 0 0 110 83 0 0 24 24 0 0 206 68 0 0 325 39 0 0 24 0 0 0 0 0 24 0 0 0.71851 0.71851 -6.45233 -0.71851 0 0 448715. 1552.65 0.16 0.00 0.04 -1 -1 0.16 0.000565158 0.000489226 10 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 4.03 vpr 51.49 MiB -1 -1 0.07 16476 1 0.01 -1 -1 29400 -1 -1 2 9 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52728 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 13.0 MiB 0.01 100 51.5 MiB 0.00 0.00 0.671848 -9.12622 -0.671848 0.671848 0.99 2.4309e-05 1.7397e-05 0.000529278 0.000425464 14 203 9 6.64007e+06 25116 279208. 966.117 1.37 0.0046741 0.00377536 19378 63921 -1 194 10 85 85 4940 1319 0 0 4940 1319 85 85 0 0 315 241 0 0 416 350 0 0 85 85 0 0 1990 311 0 0 2049 247 0 0 85 0 0 0 0 0 85 0 0 0.912248 0.912248 -11.7706 -0.912248 0 0 355633. 1230.56 0.12 0.01 0.04 -1 -1 0.12 0.00138051 0.00120442 13 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.93 vpr 51.62 MiB -1 -1 0.07 16344 1 0.01 -1 -1 29416 -1 -1 2 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52860 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 13.0 MiB 0.01 57 51.6 MiB 0.01 0.00 0.682848 -9.10125 -0.682848 0.682848 0.85 2.9971e-05 2.2215e-05 0.00108702 0.000841119 26 200 22 6.64007e+06 25116 477104. 1650.88 1.53 0.012159 0.00961778 21682 110474 -1 174 26 245 245 13494 4563 0 0 13494 4563 245 245 0 0 992 850 0 0 1624 1277 0 0 245 245 0 0 4679 1023 0 0 5709 923 0 0 245 0 0 0 0 0 245 0 0 1.03245 1.03245 -12.551 -1.03245 0 0 585099. 2024.56 0.25 0.01 0.10 -1 -1 0.25 0.0024198 0.00200859 16 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 4.18 vpr 51.71 MiB -1 -1 0.09 16316 1 0.01 -1 -1 29412 -1 -1 4 13 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52948 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 13.1 MiB 0.01 85 51.7 MiB 0.01 0.00 0.704848 -11.2793 -0.704848 0.704848 0.99 3.4563e-05 2.5696e-05 0.0016475 0.00126273 26 245 18 6.64007e+06 50232 477104. 1650.88 1.36 0.0129122 0.0102843 21682 110474 -1 244 15 196 196 10705 3403 0 0 10705 3403 196 196 0 0 739 594 0 0 1100 845 0 0 196 196 0 0 3762 839 0 0 4712 733 0 0 196 0 0 0 0 0 196 0 0 1.03245 1.03245 -15.5887 -1.03245 0 0 585099. 2024.56 0.18 0.01 0.09 -1 -1 0.18 0.00133794 0.00114169 20 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 5.25 vpr 51.72 MiB -1 -1 0.08 16312 1 0.01 -1 -1 29396 -1 -1 3 15 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52960 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 13.1 MiB 0.02 112 51.7 MiB 0.01 0.00 0.944958 -13.8003 -0.944958 0.944958 0.97 3.7581e-05 2.8339e-05 0.00199616 0.00156684 30 262 12 6.64007e+06 37674 526063. 1820.29 2.32 0.0162609 0.0131904 22546 126617 -1 220 14 137 137 7084 2138 0 0 7084 2138 137 137 0 0 504 409 0 0 635 530 0 0 137 137 0 0 2944 445 0 0 2727 480 0 0 137 0 0 0 0 0 137 0 0 0.921248 0.921248 -16.862 -0.921248 0 0 666494. 2306.21 0.30 0.01 0.11 -1 -1 0.30 0.00218017 0.00188913 22 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 4.88 vpr 51.67 MiB -1 -1 0.09 16352 1 0.01 -1 -1 29496 -1 -1 4 17 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52908 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 13.0 MiB 0.02 119 51.7 MiB 0.01 0.00 0.955958 -15.611 -0.955958 0.955958 0.97 4.4266e-05 3.3272e-05 0.00250205 0.00195171 32 299 13 6.64007e+06 50232 554710. 1919.41 2.14 0.0178376 0.0143864 22834 132086 -1 247 14 182 182 9380 2772 0 0 9380 2772 182 182 0 0 653 542 0 0 995 789 0 0 182 182 0 0 3790 502 0 0 3578 575 0 0 182 0 0 0 0 0 182 0 0 0.965248 0.965248 -19.2538 -0.965248 0 0 701300. 2426.64 0.20 0.01 0.07 -1 -1 0.20 0.00152927 0.0013337 25 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.59 vpr 51.66 MiB -1 -1 0.09 16680 1 0.01 -1 -1 29572 -1 -1 4 19 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52900 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 13.2 MiB 0.03 130 51.7 MiB 0.02 0.00 0.966958 -17.6732 -0.966958 0.966958 1.00 4.9615e-05 3.7648e-05 0.00276879 0.00217001 26 359 11 6.64007e+06 50232 477104. 1650.88 0.71 0.010417 0.00853087 21682 110474 -1 325 14 185 185 10874 3133 0 0 10874 3133 185 185 0 0 733 587 0 0 1024 853 0 0 185 185 0 0 4230 677 0 0 4517 646 0 0 185 0 0 0 0 0 185 0 0 0.965248 0.965248 -22.5784 -0.965248 0 0 585099. 2024.56 0.24 0.01 0.07 -1 -1 0.24 0.00268672 0.00234275 28 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 5.29 vpr 51.82 MiB -1 -1 0.07 16624 1 0.00 -1 -1 29420 -1 -1 5 21 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53060 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 13.3 MiB 0.03 230 51.8 MiB 0.01 0.00 0.977958 -21.7897 -0.977958 0.977958 1.00 5.8501e-05 4.5747e-05 0.00172842 0.00140564 32 474 13 6.64007e+06 62790 554710. 1919.41 2.38 0.021818 0.0179631 22834 132086 -1 437 13 188 188 13181 3469 0 0 13181 3469 188 188 0 0 749 626 0 0 1051 846 0 0 188 188 0 0 5279 869 0 0 5726 752 0 0 188 0 0 0 0 0 188 0 0 0.976248 0.976248 -27.7891 -0.976248 0 0 701300. 2426.64 0.27 0.01 0.12 -1 -1 0.27 0.00182026 0.00160724 31 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.26 vpr 51.86 MiB -1 -1 0.08 16764 1 0.01 -1 -1 29536 -1 -1 5 23 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53108 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 13.4 MiB 0.02 180 51.9 MiB 0.02 0.00 0.988958 -22.9122 -0.988958 0.988958 1.01 5.9794e-05 4.5425e-05 0.0032612 0.00260475 28 511 23 6.64007e+06 62790 500653. 1732.36 1.68 0.0243614 0.0200658 21970 115934 -1 387 16 273 273 16423 4672 0 0 16423 4672 273 273 0 0 1030 828 0 0 1495 1224 0 0 273 273 0 0 5912 1132 0 0 7440 942 0 0 273 0 0 0 0 0 273 0 0 0.987248 0.987248 -27.7079 -0.987248 0 0 612192. 2118.31 0.20 0.02 0.08 -1 -1 0.20 0.00343916 0.00297146 34 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 5.17 vpr 51.77 MiB -1 -1 0.10 16628 1 0.02 -1 -1 29460 -1 -1 5 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53008 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 13.2 MiB 0.03 207 51.8 MiB 0.02 0.00 0.999958 -24.4064 -0.999958 0.999958 1.00 6.7938e-05 5.2413e-05 0.00326926 0.00260521 32 547 23 6.64007e+06 62790 554710. 1919.41 2.19 0.0278171 0.0228467 22834 132086 -1 449 26 414 414 24702 7019 0 0 24702 7019 414 414 0 0 1516 1177 0 0 2424 1818 0 0 414 414 0 0 9362 1676 0 0 10572 1520 0 0 414 0 0 0 0 0 414 0 0 1.15265 1.15265 -31.2581 -1.15265 0 0 701300. 2426.64 0.29 0.02 0.07 -1 -1 0.29 0.00485491 0.00415395 37 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 3.78 vpr 51.86 MiB -1 -1 0.11 16588 1 0.01 -1 -1 29456 -1 -1 6 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53100 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 13.3 MiB 0.03 203 51.9 MiB 0.03 0.00 1.01096 -26.1519 -1.01096 1.01096 1.03 6.9709e-05 5.384e-05 0.00437797 0.00351053 28 659 23 6.64007e+06 75348 500653. 1732.36 0.81 0.01703 0.0141187 21970 115934 -1 553 26 525 525 39081 10795 0 0 39081 10795 525 525 0 0 1970 1626 0 0 2867 2351 0 0 525 525 0 0 15600 2927 0 0 17594 2841 0 0 525 0 0 0 0 0 525 0 0 1.17465 1.17465 -34.9025 -1.17465 0 0 612192. 2118.31 0.23 0.02 0.08 -1 -1 0.23 0.00370361 0.0031885 40 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.66 vpr 51.93 MiB -1 -1 0.10 16624 1 0.01 -1 -1 29396 -1 -1 7 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53176 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 13.3 MiB 0.02 264 51.9 MiB 0.01 0.00 1.02196 -29.1104 -1.02196 1.02196 0.83 3.9738e-05 2.9832e-05 0.0023155 0.00181773 32 689 16 6.64007e+06 87906 554710. 1919.41 1.83 0.0203992 0.0168772 22834 132086 -1 561 13 329 329 20243 5424 0 0 20243 5424 329 329 0 0 1243 1010 0 0 1931 1451 0 0 329 329 0 0 7455 1322 0 0 8956 983 0 0 329 0 0 0 0 0 329 0 0 1.10745 1.10745 -36.3626 -1.10745 0 0 701300. 2426.64 0.29 0.01 0.13 -1 -1 0.29 0.0028819 0.00256945 44 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 5.23 vpr 51.83 MiB -1 -1 0.09 16592 1 0.01 -1 -1 29480 -1 -1 7 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53072 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 13.2 MiB 0.02 289 51.8 MiB 0.03 0.00 1.26207 -31.2273 -1.26207 1.26207 0.99 7.9629e-05 6.2182e-05 0.00463084 0.00367323 32 651 14 6.64007e+06 87906 554710. 1919.41 2.25 0.0332905 0.0276876 22834 132086 -1 556 8 255 255 14489 4029 0 0 14489 4029 255 255 0 0 914 759 0 0 1455 1096 0 0 255 255 0 0 5683 873 0 0 5927 791 0 0 255 0 0 0 0 0 255 0 0 1.04025 1.04025 -37.1254 -1.04025 0 0 701300. 2426.64 0.29 0.01 0.11 -1 -1 0.29 0.00333327 0.00301709 46 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.35 vpr 51.99 MiB -1 -1 0.10 16576 1 0.01 -1 -1 29460 -1 -1 7 33 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53240 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 13.6 MiB 0.03 303 52.0 MiB 0.03 0.00 1.27307 -33.9561 -1.27307 1.27307 0.84 8.0016e-05 6.2554e-05 0.00568394 0.00455597 36 637 14 6.64007e+06 87906 612192. 2118.31 2.68 0.0331724 0.0276307 23410 145293 -1 576 14 323 323 20245 5336 0 0 20245 5336 323 323 0 0 1180 936 0 0 1606 1290 0 0 323 323 0 0 8545 1271 0 0 8268 1193 0 0 323 0 0 0 0 0 323 0 0 1.23865 1.23865 -40.8042 -1.23865 0 0 782063. 2706.10 0.33 0.02 0.13 -1 -1 0.33 0.00429908 0.00382202 49 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.79 vpr 52.23 MiB -1 -1 0.08 16764 1 0.01 -1 -1 29508 -1 -1 8 37 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53484 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 13.7 MiB 0.04 340 52.2 MiB 0.02 0.00 1.29507 -38.7256 -1.29507 1.29507 0.80 5.3128e-05 4.0376e-05 0.0031003 0.00245843 30 888 16 6.64007e+06 100464 526063. 1820.29 2.01 0.028652 0.0238487 22546 126617 -1 703 12 345 345 21697 5911 0 0 21697 5911 345 345 0 0 1234 990 0 0 1553 1300 0 0 345 345 0 0 8410 1626 0 0 9810 1305 0 0 345 0 0 0 0 0 345 0 0 1.08425 1.08425 -46.8799 -1.08425 0 0 666494. 2306.21 0.23 0.01 0.10 -1 -1 0.23 0.00331003 0.00299795 55 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.90 vpr 52.19 MiB -1 -1 0.10 16580 1 0.00 -1 -1 29520 -1 -1 8 41 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53440 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 13.6 MiB 0.04 384 52.2 MiB 0.04 0.00 1.31707 -43.6593 -1.31707 1.31707 0.87 0.000110548 8.795e-05 0.00706216 0.0057593 32 992 37 6.64007e+06 100464 554710. 1919.41 2.22 0.0355902 0.0298617 22834 132086 -1 801 15 484 484 35417 9604 0 0 35417 9604 484 484 0 0 1902 1622 0 0 2686 2119 0 0 484 484 0 0 14319 2557 0 0 15542 2338 0 0 484 0 0 0 0 0 484 0 0 1.24845 1.24845 -55.372 -1.24845 0 0 701300. 2426.64 0.26 0.02 0.08 -1 -1 0.26 0.00357355 0.00317661 61 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.51 vpr 52.24 MiB -1 -1 0.09 16580 1 0.01 -1 -1 29440 -1 -1 10 45 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53492 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 13.6 MiB 0.03 438 52.2 MiB 0.05 0.00 1.33907 -48.8774 -1.33907 1.33907 0.92 0.000123631 9.9151e-05 0.00812127 0.00662795 32 1278 24 6.64007e+06 125580 554710. 1919.41 2.78 0.04997 0.042556 22834 132086 -1 949 18 691 691 52057 13771 0 0 52057 13771 691 691 0 0 2589 2153 0 0 4007 3065 0 0 691 691 0 0 21701 3653 0 0 22378 3518 0 0 691 0 0 0 0 0 691 0 0 1.31685 1.31685 -60.8202 -1.31685 0 0 701300. 2426.64 0.25 0.03 0.08 -1 -1 0.25 0.00646311 0.0056862 68 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.76 vpr 52.46 MiB -1 -1 0.11 16576 1 0.01 -1 -1 29488 -1 -1 10 49 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53720 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 13.9 MiB 0.03 770 52.5 MiB 0.04 0.00 1.59018 -62.8916 -1.59018 1.59018 0.90 7.9107e-05 6.3022e-05 0.00620355 0.00505757 28 1454 14 6.64007e+06 125580 500653. 1732.36 2.20 0.0521052 0.0446513 21970 115934 -1 1321 16 613 613 53018 12080 0 0 53018 12080 613 613 0 0 2371 1902 0 0 3225 2630 0 0 613 613 0 0 23987 3241 0 0 22209 3081 0 0 613 0 0 0 0 0 613 0 0 1.26845 1.26845 -73.4983 -1.26845 0 0 612192. 2118.31 0.24 0.03 0.08 -1 -1 0.24 0.00673762 0.00597204 73 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.94 vpr 52.46 MiB -1 -1 0.10 16924 1 0.02 -1 -1 29468 -1 -1 11 57 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53716 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 13.9 MiB 0.05 915 52.5 MiB 0.07 0.00 1.63418 -74.8248 -1.63418 1.63418 0.81 0.000156397 0.000125774 0.0111944 0.00915368 28 1650 17 6.64007e+06 138138 500653. 1732.36 2.02 0.0663474 0.0571796 21970 115934 -1 1516 14 631 631 54365 12379 0 0 54365 12379 631 631 0 0 2326 1855 0 0 3194 2638 0 0 631 631 0 0 25161 3311 0 0 22422 3313 0 0 631 0 0 0 0 0 631 0 0 1.21425 1.21425 -83.3424 -1.21425 0 0 612192. 2118.31 0.28 0.02 0.11 -1 -1 0.28 0.00520632 0.00461195 85 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.25 vpr 52.78 MiB -1 -1 0.07 16848 1 0.01 -1 -1 29684 -1 -1 13 65 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54044 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 14.2 MiB 0.05 873 52.8 MiB 0.07 0.00 1.90729 -84.1469 -1.90729 1.90729 1.01 0.000186991 0.000153297 0.0094987 0.00788332 28 1947 30 6.64007e+06 163254 500653. 1732.36 2.24 0.0701247 0.0608298 21970 115934 -1 1628 15 711 711 67345 16229 0 0 67345 16229 711 711 0 0 2765 2218 0 0 3701 3115 0 0 711 711 0 0 29768 4488 0 0 29689 4986 0 0 711 0 0 0 0 0 711 0 0 1.42045 1.42045 -99.8589 -1.42045 0 0 612192. 2118.31 0.19 0.02 0.06 -1 -1 0.19 0.00567555 0.00504595 97 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.95 vpr 53.62 MiB -1 -1 0.11 17012 1 0.01 -1 -1 29748 -1 -1 19 97 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54908 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 14.7 MiB 0.05 1531 53.6 MiB 0.17 0.00 2.54151 -147.13 -2.54151 2.54151 0.84 0.000286534 0.000242044 0.0246237 0.020926 32 2870 15 6.64007e+06 238602 554710. 1919.41 0.97 0.0728358 0.0638497 22834 132086 -1 2658 20 1099 1099 107262 24115 0 0 107262 24115 1099 1099 0 0 4195 3440 0 0 6669 5031 0 0 1099 1099 0 0 48750 6526 0 0 45450 6920 0 0 1099 0 0 0 0 0 1099 0 0 1.55045 1.55045 -151.998 -1.55045 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0175525 0.0158425 145 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.36 vpr 54.13 MiB -1 -1 0.13 17292 1 0.02 -1 -1 29892 -1 -1 25 129 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55432 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 15.5 MiB 0.08 2046 54.1 MiB 0.26 0.01 3.17573 -212.447 -3.17573 3.17573 0.96 0.000446247 0.000387562 0.0373267 0.0324437 32 3925 17 6.64007e+06 313950 554710. 1919.41 0.88 0.087792 0.0781194 22834 132086 -1 3379 16 1314 1314 107802 25432 0 0 107802 25432 1314 1314 0 0 5056 4098 0 0 7658 5876 0 0 1314 1314 0 0 45926 6641 0 0 46534 6189 0 0 1314 0 0 0 0 0 1314 0 0 1.68825 1.68825 -198.514 -1.68825 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0208623 0.0191534 193 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 2.75 vpr 51.41 MiB -1 -1 0.08 16432 1 0.00 -1 -1 29500 -1 -1 2 7 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52640 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 12.9 MiB 0.00 30 51.4 MiB 0.00 0.00 0.649848 -5.93533 -0.649848 0.649848 0.87 1.139e-05 7.636e-06 0.000315036 0.000245504 14 114 8 6.65987e+06 25356 279208. 966.117 0.33 0.00252286 0.00195897 19378 63921 -1 109 16 78 78 5736 1764 0 0 5736 1764 78 78 0 0 349 302 0 0 399 380 0 0 78 78 0 0 1948 521 0 0 2884 405 0 0 78 0 0 0 0 0 78 0 0 0.83871 0.83871 -7.97873 -0.83871 0 0 355633. 1230.56 0.17 0.01 0.05 -1 -1 0.17 0.00141948 0.00120178 10 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 4.07 vpr 51.39 MiB -1 -1 0.08 16468 1 0.01 -1 -1 29492 -1 -1 2 9 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52628 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 12.8 MiB 0.01 69 51.4 MiB 0.00 0.00 0.660848 -7.41736 -0.660848 0.660848 0.74 2.567e-05 1.8311e-05 0.000607636 0.000487735 26 168 6 6.65987e+06 25356 477104. 1650.88 1.72 0.0084885 0.00676341 21682 110474 -1 155 7 60 60 4507 1260 0 0 4507 1260 60 60 0 0 279 225 0 0 330 296 0 0 60 60 0 0 1936 323 0 0 1842 296 0 0 60 0 0 0 0 0 60 0 0 0.71851 0.71851 -10.0618 -0.71851 0 0 585099. 2024.56 0.26 0.01 0.10 -1 -1 0.26 0.00102297 0.000903227 13 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 4.08 vpr 51.53 MiB -1 -1 0.07 16364 1 0.01 -1 -1 29420 -1 -1 2 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52764 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 12.9 MiB 0.01 57 51.5 MiB 0.01 0.00 0.682848 -9.10125 -0.682848 0.682848 0.84 2.8738e-05 2.1198e-05 0.00109179 0.000852543 26 186 35 6.65987e+06 25356 477104. 1650.88 1.75 0.0132085 0.0105041 21682 110474 -1 169 42 237 237 12100 3761 0 0 12100 3761 237 237 0 0 831 636 0 0 1217 971 0 0 237 237 0 0 4452 817 0 0 5126 863 0 0 237 0 0 0 0 0 237 0 0 1.03245 1.03245 -12.6712 -1.03245 0 0 585099. 2024.56 0.25 0.02 0.10 -1 -1 0.25 0.00328217 0.00271096 16 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 4.50 vpr 51.48 MiB -1 -1 0.09 16376 1 0.01 -1 -1 29344 -1 -1 4 13 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52712 13 7 48 49 1 32 24 17 17 289 -1 unnamed_device 12.8 MiB 0.01 92 51.5 MiB 0.01 0.00 0.704848 -11.3995 -0.704848 0.704848 0.94 3.1981e-05 2.3373e-05 0.00117187 0.000914341 26 274 11 6.65987e+06 50712 477104. 1650.88 1.80 0.0130604 0.0104442 21682 110474 -1 259 15 144 144 12472 3342 0 0 12472 3342 144 144 0 0 608 496 0 0 995 845 0 0 144 144 0 0 5195 851 0 0 5386 862 0 0 144 0 0 0 0 0 144 0 0 1.09259 1.09259 -17.4602 -1.09259 0 0 585099. 2024.56 0.20 0.01 0.06 -1 -1 0.20 0.0013362 0.00115177 20 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 4.60 vpr 51.55 MiB -1 -1 0.09 16372 1 0.01 -1 -1 29500 -1 -1 3 15 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52784 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 12.9 MiB 0.01 111 51.5 MiB 0.01 0.00 0.944958 -13.8003 -0.944958 0.944958 1.00 4.0945e-05 3.028e-05 0.00191951 0.00149669 26 305 13 6.65987e+06 38034 477104. 1650.88 1.75 0.0159314 0.0128676 21682 110474 -1 259 11 161 161 9271 2872 0 0 9271 2872 161 161 0 0 656 544 0 0 1041 883 0 0 161 161 0 0 3294 636 0 0 3958 487 0 0 161 0 0 0 0 0 161 0 0 1.09645 1.09645 -19.1204 -1.09645 0 0 585099. 2024.56 0.27 0.01 0.10 -1 -1 0.27 0.00199441 0.00175653 22 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.19 vpr 51.47 MiB -1 -1 0.06 16316 1 0.01 -1 -1 29508 -1 -1 4 17 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52704 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 12.8 MiB 0.01 121 51.5 MiB 0.02 0.00 0.955958 -15.9716 -0.955958 0.955958 0.85 4.4222e-05 3.3144e-05 0.00261502 0.00203481 26 321 18 6.65987e+06 50712 477104. 1650.88 0.71 0.0106052 0.00864775 21682 110474 -1 290 17 195 195 14022 3952 0 0 14022 3952 195 195 0 0 807 673 0 0 1359 1086 0 0 195 195 0 0 5524 904 0 0 5942 899 0 0 195 0 0 0 0 0 195 0 0 1.07445 1.07445 -20.9549 -1.07445 0 0 585099. 2024.56 0.27 0.01 0.10 -1 -1 0.27 0.00271088 0.00234323 25 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.11 vpr 51.52 MiB -1 -1 0.10 16328 1 0.01 -1 -1 29452 -1 -1 4 19 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52760 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 13.1 MiB 0.01 130 51.5 MiB 0.02 0.00 0.966958 -17.6732 -0.966958 0.966958 0.81 4.8762e-05 3.6649e-05 0.00312277 0.00245206 32 364 15 6.65987e+06 50712 554710. 1919.41 1.65 0.0171943 0.0140684 22834 132086 -1 318 16 181 181 16758 4339 0 0 16758 4339 181 181 0 0 721 591 0 0 1409 1092 0 0 181 181 0 0 6895 1195 0 0 7371 1099 0 0 181 0 0 0 0 0 181 0 0 1.22765 1.22765 -24.888 -1.22765 0 0 701300. 2426.64 0.19 0.01 0.07 -1 -1 0.19 0.00252149 0.00217769 28 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.66 vpr 51.77 MiB -1 -1 0.09 16632 1 0.01 -1 -1 29440 -1 -1 5 21 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53016 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 13.2 MiB 0.01 164 51.8 MiB 0.02 0.00 0.977958 -20.5877 -0.977958 0.977958 0.99 6.2317e-05 4.8436e-05 0.00250686 0.00199936 32 413 19 6.65987e+06 63390 554710. 1919.41 1.84 0.0176626 0.0142999 22834 132086 -1 373 15 257 257 18584 5330 0 0 18584 5330 257 257 0 0 1105 978 0 0 1907 1579 0 0 257 257 0 0 7001 1186 0 0 8057 1073 0 0 257 0 0 0 0 0 257 0 0 1.02539 1.02539 -26.4305 -1.02539 0 0 701300. 2426.64 0.21 0.01 0.08 -1 -1 0.21 0.0022667 0.00197617 31 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.43 vpr 51.53 MiB -1 -1 0.07 16720 1 0.00 -1 -1 29488 -1 -1 5 23 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52764 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 13.0 MiB 0.01 186 51.5 MiB 0.02 0.00 0.988958 -22.792 -0.988958 0.988958 0.84 5.8815e-05 4.495e-05 0.00303517 0.00241101 26 551 20 6.65987e+06 63390 477104. 1650.88 0.81 0.0140151 0.0115804 21682 110474 -1 427 15 253 253 20964 5762 0 0 20964 5762 253 253 0 0 1049 856 0 0 1741 1452 0 0 253 253 0 0 8269 1540 0 0 9399 1408 0 0 253 0 0 0 0 0 253 0 0 1.14045 1.14045 -30.5211 -1.14045 0 0 585099. 2024.56 0.26 0.01 0.10 -1 -1 0.26 0.00324929 0.00285139 34 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.61 vpr 51.69 MiB -1 -1 0.10 16632 1 0.01 -1 -1 29500 -1 -1 5 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52928 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 13.2 MiB 0.01 184 51.7 MiB 0.01 0.00 0.999958 -24.6468 -0.999958 0.999958 0.63 3.4062e-05 2.5206e-05 0.00189315 0.00146924 30 556 23 6.65987e+06 63390 526063. 1820.29 2.26 0.0259999 0.0212945 22546 126617 -1 458 17 355 355 20023 5892 0 0 20023 5892 355 355 0 0 1288 1071 0 0 1883 1551 0 0 355 355 0 0 7381 1405 0 0 8761 1155 0 0 355 0 0 0 0 0 355 0 0 1.16365 1.16365 -30.7419 -1.16365 0 0 666494. 2306.21 0.27 0.01 0.09 -1 -1 0.27 0.00231221 0.00202388 37 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 4.08 vpr 51.70 MiB -1 -1 0.09 16624 1 0.02 -1 -1 29536 -1 -1 6 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52940 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 13.1 MiB 0.01 242 51.7 MiB 0.01 0.00 1.01096 -26.8731 -1.01096 1.01096 0.65 4.0374e-05 3.07e-05 0.00233009 0.00181096 32 601 28 6.65987e+06 76068 554710. 1919.41 1.80 0.0230813 0.0189132 22834 132086 -1 508 17 313 313 25760 6870 0 0 25760 6870 313 313 0 0 1314 1070 0 0 2405 1929 0 0 313 313 0 0 11188 1537 0 0 10227 1708 0 0 313 0 0 0 0 0 313 0 0 1.15145 1.15145 -34.7701 -1.15145 0 0 701300. 2426.64 0.31 0.02 0.13 -1 -1 0.31 0.00424393 0.00371315 40 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.08 vpr 51.89 MiB -1 -1 0.08 16632 1 0.01 -1 -1 29448 -1 -1 7 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53140 29 15 104 105 1 73 51 17 17 289 -1 unnamed_device 13.3 MiB 0.02 264 51.9 MiB 0.01 0.00 1.02196 -29.2306 -1.02196 1.02196 0.88 4.126e-05 3.0994e-05 0.002453 0.00193098 28 764 22 6.65987e+06 88746 500653. 1732.36 1.30 0.0242442 0.0201099 21970 115934 -1 617 16 341 341 32858 8352 0 0 32858 8352 341 341 0 0 1432 1208 0 0 2136 1803 0 0 341 341 0 0 14161 2454 0 0 14447 2205 0 0 341 0 0 0 0 0 341 0 0 1.29365 1.29365 -41.501 -1.29365 0 0 612192. 2118.31 0.27 0.02 0.11 -1 -1 0.27 0.00418561 0.00365138 44 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.58 vpr 51.89 MiB -1 -1 0.08 16740 1 0.01 -1 -1 29336 -1 -1 7 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53140 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 13.2 MiB 0.02 288 51.9 MiB 0.03 0.00 1.26207 -31.2273 -1.26207 1.26207 0.96 7.5871e-05 5.9239e-05 0.00438916 0.00349614 32 749 19 6.65987e+06 88746 554710. 1919.41 0.70 0.0162353 0.0135504 22834 132086 -1 607 15 366 366 29491 7623 0 0 29491 7623 366 366 0 0 1477 1210 0 0 2467 1886 0 0 366 366 0 0 11887 2017 0 0 12928 1778 0 0 366 0 0 0 0 0 366 0 0 1.20445 1.20445 -41.3966 -1.20445 0 0 701300. 2426.64 0.29 0.02 0.08 -1 -1 0.29 0.00449173 0.00396792 46 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 4.32 vpr 51.93 MiB -1 -1 0.09 16536 1 0.01 -1 -1 29372 -1 -1 7 33 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53180 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 13.5 MiB 0.02 303 51.9 MiB 0.02 0.00 1.27307 -33.5955 -1.27307 1.27307 0.59 4.9876e-05 3.8624e-05 0.00387513 0.00306541 32 787 40 6.65987e+06 88746 554710. 1919.41 2.26 0.0293186 0.0244782 22834 132086 -1 670 27 416 416 88792 47693 0 0 88792 47693 416 416 0 0 1658 1398 0 0 4067 2855 0 0 416 416 0 0 42699 20996 0 0 39536 21612 0 0 416 0 0 0 0 0 416 0 0 1.20959 1.20959 -43.9988 -1.20959 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00400642 0.00347754 49 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.88 vpr 51.92 MiB -1 -1 0.08 16732 1 0.01 -1 -1 29408 -1 -1 8 37 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53168 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 13.4 MiB 0.02 338 51.9 MiB 0.02 0.00 1.29507 -38.4852 -1.29507 1.29507 0.82 5.526e-05 4.3011e-05 0.00331354 0.00267113 32 960 27 6.65987e+06 101424 554710. 1919.41 2.22 0.0382813 0.0321595 22834 132086 -1 727 14 420 420 34815 9029 0 0 34815 9029 420 420 0 0 1707 1420 0 0 2794 2233 0 0 420 420 0 0 14503 2300 0 0 14971 2236 0 0 420 0 0 0 0 0 420 0 0 1.09525 1.09525 -47.5498 -1.09525 0 0 701300. 2426.64 0.32 0.02 0.12 -1 -1 0.32 0.00510908 0.00452156 55 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.72 vpr 51.99 MiB -1 -1 0.09 16736 1 0.01 -1 -1 29404 -1 -1 8 41 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53240 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 13.4 MiB 0.02 384 52.0 MiB 0.04 0.00 1.31707 -44.0199 -1.31707 1.31707 0.94 0.000106519 8.4922e-05 0.00681105 0.00555779 32 1072 22 6.65987e+06 101424 554710. 1919.41 0.79 0.0234177 0.0195696 22834 132086 -1 905 18 552 552 50728 13103 0 0 50728 13103 552 552 0 0 2312 1948 0 0 3605 2908 0 0 552 552 0 0 21893 3568 0 0 21814 3575 0 0 552 0 0 0 0 0 552 0 0 1.16245 1.16245 -55.2101 -1.16245 0 0 701300. 2426.64 0.27 0.03 0.12 -1 -1 0.27 0.00654728 0.00578343 61 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.71 vpr 52.08 MiB -1 -1 0.07 16672 1 0.01 -1 -1 29428 -1 -1 10 45 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53332 45 23 160 161 1 114 78 17 17 289 -1 unnamed_device 13.7 MiB 0.03 444 52.1 MiB 0.05 0.00 1.33907 -49.1178 -1.33907 1.33907 0.96 0.000116242 9.2428e-05 0.00780789 0.00638389 34 1333 23 6.65987e+06 126780 585099. 2024.56 2.88 0.0456981 0.038803 23122 138558 -1 961 23 660 660 57558 15052 0 0 57558 15052 660 660 0 0 2593 2125 0 0 4161 3348 0 0 660 660 0 0 24159 4240 0 0 25325 4019 0 0 660 0 0 0 0 0 660 0 0 1.17739 1.17739 -59.0308 -1.17739 0 0 742403. 2568.87 0.20 0.02 0.09 -1 -1 0.20 0.00480241 0.0042204 68 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.00 vpr 52.15 MiB -1 -1 0.09 16604 1 0.02 -1 -1 29456 -1 -1 10 49 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53404 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 13.6 MiB 0.03 795 52.2 MiB 0.06 0.00 1.59018 -63.132 -1.59018 1.59018 0.95 0.000127303 0.000102982 0.00984658 0.0080563 32 1455 27 6.65987e+06 126780 554710. 1919.41 0.94 0.0344959 0.0293499 22834 132086 -1 1347 18 550 550 54304 12297 0 0 54304 12297 550 550 0 0 2230 1852 0 0 3610 2913 0 0 550 550 0 0 24763 3256 0 0 22601 3176 0 0 550 0 0 0 0 0 550 0 0 1.32345 1.32345 -76.0907 -1.32345 0 0 701300. 2426.64 0.32 0.03 0.13 -1 -1 0.32 0.00771922 0.00684637 73 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.76 vpr 52.34 MiB -1 -1 0.10 16512 1 0.01 -1 -1 29592 -1 -1 11 57 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53592 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 13.7 MiB 0.03 919 52.3 MiB 0.07 0.00 1.63418 -75.1854 -1.63418 1.63418 0.64 0.000148438 0.000118098 0.010686 0.00877303 30 1625 17 6.65987e+06 139458 526063. 1820.29 2.08 0.0630911 0.0542374 22546 126617 -1 1475 18 551 551 43516 9558 0 0 43516 9558 551 551 0 0 1969 1527 0 0 2551 2121 0 0 551 551 0 0 20501 2305 0 0 17393 2503 0 0 551 0 0 0 0 0 551 0 0 1.19225 1.19225 -81.6748 -1.19225 0 0 666494. 2306.21 0.29 0.03 0.11 -1 -1 0.29 0.00853115 0.0076037 85 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 4.71 vpr 52.44 MiB -1 -1 0.07 16844 1 0.01 -1 -1 29564 -1 -1 13 65 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53700 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 13.9 MiB 0.03 924 52.4 MiB 0.04 0.00 1.90729 -84.9883 -1.90729 1.90729 0.63 9.8634e-05 7.9835e-05 0.00684645 0.00563273 30 1902 25 6.65987e+06 164814 526063. 1820.29 2.42 0.0683811 0.0589644 22546 126617 -1 1576 18 692 692 59272 14280 0 0 59272 14280 692 692 0 0 2592 2106 0 0 3401 2917 0 0 692 692 0 0 26499 3725 0 0 25396 4148 0 0 692 0 0 0 0 0 692 0 0 1.25625 1.25625 -92.5121 -1.25625 0 0 666494. 2306.21 0.23 0.03 0.11 -1 -1 0.23 0.00871064 0.00775825 97 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.21 vpr 53.36 MiB -1 -1 0.10 16868 1 0.01 -1 -1 29692 -1 -1 19 97 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 14.5 MiB 0.05 1519 53.4 MiB 0.16 0.00 2.54151 -144.966 -2.54151 2.54151 0.97 0.000293612 0.000248891 0.0246152 0.0209999 30 2922 19 6.65987e+06 240882 526063. 1820.29 0.94 0.0771871 0.0681819 22546 126617 -1 2550 14 1023 1023 92587 20913 0 0 92587 20913 1023 1023 0 0 3896 3147 0 0 5012 4323 0 0 1023 1023 0 0 42051 5591 0 0 39582 5806 0 0 1023 0 0 0 0 0 1023 0 0 1.52725 1.52725 -150.058 -1.52725 0 0 666494. 2306.21 0.30 0.05 0.09 -1 -1 0.30 0.0168446 0.0154922 145 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 3.45 vpr 54.05 MiB -1 -1 0.12 17264 1 0.02 -1 -1 29996 -1 -1 25 129 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55348 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 15.3 MiB 0.06 2038 54.1 MiB 0.15 0.00 3.17573 -213.889 -3.17573 3.17573 0.60 0.000263403 0.00022992 0.022915 0.0200013 32 3908 17 6.65987e+06 316950 554710. 1919.41 0.69 0.0688575 0.0615303 22834 132086 -1 3507 29 1480 1480 192588 66144 0 0 192588 66144 1480 1480 0 0 5949 4957 0 0 10788 8088 0 0 1480 1480 0 0 85222 25041 0 0 87669 25098 0 0 1480 0 0 0 0 0 1480 0 0 1.75939 1.75939 -206.712 -1.75939 0 0 701300. 2426.64 0.29 0.11 0.12 -1 -1 0.29 0.0325392 0.0295588 193 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 3.31 vpr 52.29 MiB -1 -1 0.06 16304 1 0.01 -1 -1 29440 -1 -1 1 7 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53544 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 13.8 MiB 0.02 37 52.3 MiB 0.01 0.00 0.712895 -6.47614 -0.712895 0.712895 0.96 1.5211e-05 9.342e-06 0.00039064 0.000362534 8 92 5 6.95648e+06 14475.7 166176. 575.005 0.74 0.00236468 0.00197058 20866 45572 -1 77 9 41 41 1638 700 0 0 1638 700 41 41 0 0 165 148 0 0 188 179 0 0 41 41 0 0 509 150 0 0 694 141 0 0 41 0 0 0 0 0 41 0 0 0.87204 0.87204 -7.97974 -0.87204 0 0 202963. 702.294 0.07 0.00 0.03 -1 -1 0.07 0.000644496 0.000556733 5 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 4.00 vpr 52.28 MiB -1 -1 0.08 16456 1 0.00 -1 -1 29356 -1 -1 1 9 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53532 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 13.8 MiB 0.02 34 52.3 MiB 0.01 0.00 0.512442 -7.49947 -0.512442 0.512442 0.97 2.5249e-05 1.8146e-05 0.000924746 0.000706749 16 118 7 6.95648e+06 14475.7 332735. 1151.33 1.30 0.00644688 0.00515068 22306 75877 -1 87 12 64 64 6435 1823 0 0 6435 1823 64 64 0 0 292 256 0 0 342 296 0 0 64 64 0 0 2251 655 0 0 3422 488 0 0 64 0 0 0 0 0 64 0 0 0.87204 0.87204 -9.00307 -0.87204 0 0 414966. 1435.87 0.18 0.01 0.06 -1 -1 0.18 0.00146972 0.0012864 7 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 3.48 vpr 52.33 MiB -1 -1 0.09 16468 1 0.01 -1 -1 29364 -1 -1 1 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53588 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 13.8 MiB 0.03 45 52.3 MiB 0.01 0.00 0.701895 -10.0315 -0.701895 0.701895 0.98 2.9856e-05 2.1932e-05 0.00105458 0.000830139 26 146 11 6.95648e+06 14475.7 503264. 1741.40 0.68 0.00577677 0.00469901 24322 120374 -1 132 8 55 55 3717 1148 0 0 3717 1148 55 55 0 0 234 196 0 0 289 245 0 0 55 55 0 0 1426 303 0 0 1658 294 0 0 55 0 0 0 0 0 55 0 0 0.74674 0.74674 -12.4122 -0.74674 0 0 618332. 2139.56 0.24 0.01 0.11 -1 -1 0.24 0.00132396 0.00117757 8 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 4.41 vpr 52.42 MiB -1 -1 0.06 16360 1 0.00 -1 -1 29344 -1 -1 2 13 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53680 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 13.8 MiB 0.04 58 52.4 MiB 0.01 0.00 0.745895 -12.7431 -0.745895 0.745895 0.99 3.445e-05 2.5377e-05 0.00168321 0.00129637 26 158 12 6.95648e+06 28951.4 503264. 1741.40 1.55 0.0121163 0.00970932 24322 120374 -1 157 7 75 75 4018 1372 0 0 4018 1372 75 75 0 0 301 251 0 0 423 372 0 0 75 75 0 0 1334 349 0 0 1810 250 0 0 75 0 0 0 0 0 75 0 0 0.87204 0.87204 -14.299 -0.87204 0 0 618332. 2139.56 0.25 0.01 0.10 -1 -1 0.25 0.0014302 0.00128504 10 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 3.58 vpr 52.21 MiB -1 -1 0.10 16360 1 0.01 -1 -1 29500 -1 -1 2 15 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53468 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 13.6 MiB 0.03 78 52.2 MiB 0.01 0.00 0.727332 -14.3024 -0.727332 0.727332 0.98 3.9561e-05 2.9564e-05 0.00161353 0.00127067 26 272 23 6.95648e+06 28951.4 503264. 1741.40 0.70 0.00875095 0.00715081 24322 120374 -1 268 14 189 189 14113 4458 0 0 14113 4458 189 189 0 0 823 733 0 0 1273 1051 0 0 189 189 0 0 5223 1229 0 0 6416 1067 0 0 189 0 0 0 0 0 189 0 0 1.18933 1.18933 -20.6612 -1.18933 0 0 618332. 2139.56 0.25 0.01 0.11 -1 -1 0.25 0.00221295 0.00193045 11 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 2.96 vpr 52.39 MiB -1 -1 0.10 16304 1 0.01 -1 -1 29484 -1 -1 2 17 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53648 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 14.0 MiB 0.04 98 52.4 MiB 0.00 0.00 0.732132 -16.1501 -0.732132 0.732132 0.66 2.3477e-05 1.6926e-05 0.000643887 0.000527015 26 346 36 6.95648e+06 28951.4 503264. 1741.40 0.47 0.00647318 0.00528663 24322 120374 -1 279 18 270 270 14343 4758 0 0 14343 4758 270 270 0 0 1070 912 0 0 1676 1325 0 0 270 270 0 0 5092 935 0 0 5965 1046 0 0 270 0 0 0 0 0 270 0 0 0.977932 0.977932 -21.237 -0.977932 0 0 618332. 2139.56 0.24 0.01 0.09 -1 -1 0.24 0.00281653 0.00245657 13 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 2.86 vpr 52.59 MiB -1 -1 0.09 16616 1 0.00 -1 -1 29388 -1 -1 2 19 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53848 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 14.1 MiB 0.04 201 52.6 MiB 0.01 0.00 0.760332 -20.2938 -0.760332 0.760332 0.79 2.6172e-05 1.9017e-05 0.00135753 0.00106027 26 482 17 6.95648e+06 28951.4 503264. 1741.40 0.44 0.00650808 0.00530716 24322 120374 -1 422 12 219 219 17375 4429 0 0 17375 4429 219 219 0 0 846 713 0 0 1348 1057 0 0 219 219 0 0 7109 1153 0 0 7634 1068 0 0 219 0 0 0 0 0 219 0 0 1.13623 1.13623 -26.8094 -1.13623 0 0 618332. 2139.56 0.16 0.01 0.06 -1 -1 0.16 0.0016647 0.00147647 14 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 5.36 vpr 52.64 MiB -1 -1 0.09 16548 1 0.00 -1 -1 29508 -1 -1 2 21 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53908 21 11 76 77 1 49 34 17 17 289 -1 unnamed_device 14.1 MiB 0.04 137 52.6 MiB 0.01 0.00 0.771332 -20.4562 -0.771332 0.771332 0.83 2.8276e-05 2.0227e-05 0.00110566 0.000898851 34 473 26 6.95648e+06 28951.4 618332. 2139.56 2.61 0.0255104 0.0210144 25762 151098 -1 358 27 391 391 29461 8349 0 0 29461 8349 391 391 0 0 1445 1241 0 0 2478 1751 0 0 391 391 0 0 11080 2434 0 0 13676 2141 0 0 391 0 0 0 0 0 391 0 0 1.21133 1.21133 -26.9101 -1.21133 0 0 787024. 2723.27 0.31 0.03 0.14 -1 -1 0.31 0.00566878 0.00479048 16 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 3.93 vpr 52.45 MiB -1 -1 0.09 16588 1 0.00 -1 -1 29468 -1 -1 3 23 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53712 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 13.9 MiB 0.04 279 52.5 MiB 0.01 0.00 0.782332 -26.1428 -0.782332 0.782332 0.88 5.7181e-05 4.3909e-05 0.00245535 0.00196819 34 640 23 6.95648e+06 43427 618332. 2139.56 1.26 0.0187715 0.0153901 25762 151098 -1 589 16 270 270 26395 5807 0 0 26395 5807 270 270 0 0 1010 839 0 0 1649 1191 0 0 270 270 0 0 11128 1772 0 0 12068 1465 0 0 270 0 0 0 0 0 270 0 0 1.25533 1.25533 -35.0249 -1.25533 0 0 787024. 2723.27 0.31 0.02 0.13 -1 -1 0.31 0.00349413 0.00307078 17 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 3.77 vpr 52.51 MiB -1 -1 0.08 16644 1 0.01 -1 -1 29452 -1 -1 3 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53768 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 13.9 MiB 0.04 173 52.5 MiB 0.01 0.00 0.793332 -24.4477 -0.793332 0.793332 0.80 3.6821e-05 2.8096e-05 0.00127898 0.00105074 32 586 27 6.95648e+06 43427 586450. 2029.24 1.06 0.0143097 0.0118407 25474 144626 -1 509 14 313 313 24741 7098 0 0 24741 7098 313 313 0 0 1219 1062 0 0 2112 1460 0 0 313 313 0 0 9221 1851 0 0 11563 2099 0 0 313 0 0 0 0 0 313 0 0 1.11903 1.11903 -35.1164 -1.11903 0 0 744469. 2576.02 0.29 0.02 0.12 -1 -1 0.29 0.00337603 0.00298253 19 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 5.51 vpr 52.61 MiB -1 -1 0.09 16748 1 0.01 -1 -1 29416 -1 -1 3 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53872 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 14.0 MiB 0.03 185 52.6 MiB 0.01 0.00 0.826332 -26.4591 -0.826332 0.826332 0.93 3.5946e-05 2.668e-05 0.00194217 0.00153958 36 563 22 6.95648e+06 43427 648988. 2245.63 2.60 0.0272747 0.0225672 26050 158493 -1 465 14 411 411 24037 7608 0 0 24037 7608 411 411 0 0 1577 1397 0 0 2559 1949 0 0 411 411 0 0 8946 1755 0 0 10133 1685 0 0 411 0 0 0 0 0 411 0 0 1.27253 1.27253 -35.6079 -1.27253 0 0 828058. 2865.25 0.29 0.01 0.14 -1 -1 0.29 0.0027341 0.00245169 20 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 3.85 vpr 52.54 MiB -1 -1 0.06 16608 1 0.00 -1 -1 29372 -1 -1 4 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53804 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 13.9 MiB 0.03 283 52.5 MiB 0.02 0.00 0.826332 -29.9889 -0.826332 0.826332 0.78 7.6085e-05 5.9546e-05 0.00392244 0.00318469 34 768 14 6.95648e+06 57902.7 618332. 2139.56 1.26 0.0252236 0.0210767 25762 151098 -1 655 13 377 377 37978 8699 0 0 37978 8699 377 377 0 0 1405 1203 0 0 2355 1661 0 0 377 377 0 0 15916 2816 0 0 17548 2265 0 0 377 0 0 0 0 0 377 0 0 1.25533 1.25533 -43.2489 -1.25533 0 0 787024. 2723.27 0.30 0.02 0.13 -1 -1 0.30 0.00375301 0.00334273 23 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 5.86 vpr 52.73 MiB -1 -1 0.10 16720 1 0.01 -1 -1 29448 -1 -1 3 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53996 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 14.3 MiB 0.05 264 52.7 MiB 0.03 0.00 1.08336 -32.4963 -1.08336 1.08336 0.96 8.104e-05 6.4228e-05 0.00484573 0.00393021 34 828 32 6.95648e+06 43427 618332. 2139.56 2.90 0.039953 0.0332589 25762 151098 -1 628 13 383 383 34441 8797 0 0 34441 8797 383 383 0 0 1470 1283 0 0 2288 1640 0 0 383 383 0 0 14281 2678 0 0 15636 2430 0 0 383 0 0 0 0 0 383 0 0 1.31453 1.31453 -44.4087 -1.31453 0 0 787024. 2723.27 0.24 0.02 0.12 -1 -1 0.24 0.00455243 0.0040536 24 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 5.59 vpr 52.76 MiB -1 -1 0.06 16728 1 0.01 -1 -1 29508 -1 -1 4 33 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 14.3 MiB 0.05 281 52.8 MiB 0.03 0.00 1.09436 -35.3801 -1.09436 1.09436 0.95 8.4141e-05 6.6138e-05 0.00463135 0.00373202 36 716 23 6.95648e+06 57902.7 648988. 2245.63 2.87 0.0303174 0.025246 26050 158493 -1 567 19 438 438 32037 8615 0 0 32037 8615 438 438 0 0 1585 1388 0 0 2642 1864 0 0 438 438 0 0 12706 2368 0 0 14228 2119 0 0 438 0 0 0 0 0 438 0 0 1.22703 1.22703 -45.5173 -1.22703 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.0034097 0.00300495 25 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 4.38 vpr 52.81 MiB -1 -1 0.09 16588 1 0.00 -1 -1 29476 -1 -1 4 37 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54080 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 14.3 MiB 0.09 319 52.8 MiB 0.03 0.00 1.11636 -39.8924 -1.11636 1.11636 0.97 0.000100557 8.0438e-05 0.00612083 0.0049642 34 920 43 6.95648e+06 57902.7 618332. 2139.56 1.29 0.0383786 0.0323343 25762 151098 -1 682 18 493 493 41346 10454 0 0 41346 10454 493 493 0 0 1834 1581 0 0 3056 2113 0 0 493 493 0 0 16896 2948 0 0 18574 2826 0 0 493 0 0 0 0 0 493 0 0 1.29733 1.29733 -51.9443 -1.29733 0 0 787024. 2723.27 0.31 0.02 0.14 -1 -1 0.31 0.00572658 0.00506104 28 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 3.77 vpr 52.70 MiB -1 -1 0.10 16528 1 0.01 -1 -1 29440 -1 -1 4 41 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53960 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 14.1 MiB 0.09 351 52.7 MiB 0.02 0.00 1.13836 -44.8245 -1.13836 1.13836 0.63 5.9298e-05 4.6123e-05 0.00359259 0.00289324 34 1059 27 6.95648e+06 57902.7 618332. 2139.56 1.17 0.0272207 0.0229717 25762 151098 -1 851 14 532 532 49197 11848 0 0 49197 11848 532 532 0 0 1882 1646 0 0 2924 2098 0 0 532 532 0 0 20620 3615 0 0 22707 3425 0 0 532 0 0 0 0 0 532 0 0 1.24903 1.24903 -59.4648 -1.24903 0 0 787024. 2723.27 0.29 0.02 0.13 -1 -1 0.29 0.0036598 0.003291 31 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 6.97 vpr 52.88 MiB -1 -1 0.10 16560 1 0.01 -1 -1 29444 -1 -1 5 45 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54148 45 23 160 161 1 108 73 17 17 289 -1 unnamed_device 14.2 MiB 0.10 401 52.9 MiB 0.04 0.00 1.16036 -49.1741 -1.16036 1.16036 0.98 0.000116136 9.2846e-05 0.00777512 0.00639266 36 1067 21 6.95648e+06 72378.4 648988. 2245.63 3.93 0.0561861 0.048134 26050 158493 -1 922 22 642 642 73006 22110 0 0 73006 22110 642 642 0 0 2251 1946 0 0 4147 2706 0 0 642 642 0 0 32616 7949 0 0 32708 8225 0 0 642 0 0 0 0 0 642 0 0 1.32123 1.32123 -66.2489 -1.32123 0 0 828058. 2865.25 0.25 0.03 0.14 -1 -1 0.25 0.0055915 0.00496541 34 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 6.75 vpr 53.06 MiB -1 -1 0.11 16568 1 0.00 -1 -1 29600 -1 -1 5 49 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54336 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 14.6 MiB 0.10 455 53.1 MiB 0.03 0.00 1.18236 -53.693 -1.18236 1.18236 0.61 7.0621e-05 5.5003e-05 0.00504592 0.00412593 38 1315 41 6.95648e+06 72378.4 678818. 2348.85 4.14 0.0754306 0.0649095 26626 170182 -1 987 32 971 971 89620 20291 0 0 89620 20291 971 971 0 0 2913 2583 0 0 5173 3231 0 0 971 971 0 0 38794 5983 0 0 40798 6552 0 0 971 0 0 0 0 0 971 0 0 1.22223 1.22223 -67.906 -1.22223 0 0 902133. 3121.57 0.27 0.04 0.09 -1 -1 0.27 0.00795744 0.00699996 37 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 7.30 vpr 53.25 MiB -1 -1 0.11 16956 1 0.01 -1 -1 29576 -1 -1 6 57 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54524 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 14.7 MiB 0.07 552 53.2 MiB 0.06 0.00 1.22636 -63.4893 -1.22636 1.22636 0.91 0.000142653 0.000114659 0.0108498 0.00892228 50 1172 23 6.95648e+06 86854.1 902133. 3121.57 4.42 0.0875869 0.0762478 28642 213929 -1 1050 15 681 681 60132 15314 0 0 60132 15314 681 681 0 0 2536 2263 0 0 4164 2997 0 0 681 681 0 0 23854 4645 0 0 28216 4047 0 0 681 0 0 0 0 0 681 0 0 1.39153 1.39153 -79.4089 -1.39153 0 0 1.08113e+06 3740.92 0.39 0.02 0.20 -1 -1 0.39 0.00515658 0.00467809 43 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 5.29 vpr 53.36 MiB -1 -1 0.11 16836 1 0.01 -1 -1 29548 -1 -1 7 65 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 14.8 MiB 0.09 760 53.4 MiB 0.07 0.00 1.50539 -80.1968 -1.50539 1.50539 0.98 0.000173245 0.00014157 0.011933 0.00987039 38 1787 37 6.95648e+06 101330 678818. 2348.85 1.95 0.0744398 0.0652822 26626 170182 -1 1449 21 965 965 103324 22748 0 0 103324 22748 965 965 0 0 3285 2935 0 0 5660 3808 0 0 965 965 0 0 45920 7212 0 0 46529 6863 0 0 965 0 0 0 0 0 965 0 0 1.40103 1.40103 -97.7791 -1.40103 0 0 902133. 3121.57 0.34 0.05 0.15 -1 -1 0.34 0.0118209 0.0106167 49 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 15.46 vpr 54.12 MiB -1 -1 0.08 16908 1 0.01 -1 -1 29732 -1 -1 10 97 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55424 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 15.3 MiB 0.11 1635 54.1 MiB 0.13 0.00 1.91642 -141.865 -1.91642 1.91642 0.97 0.000264775 0.000225822 0.0234511 0.0199592 44 3056 26 6.95648e+06 144757 787024. 2723.27 12.02 0.194066 0.172337 27778 195446 -1 2674 23 1244 1244 134880 27002 0 0 134880 27002 1244 1244 0 0 4192 3716 0 0 7367 4911 0 0 1244 1244 0 0 63077 7902 0 0 57756 7985 0 0 1244 0 0 0 0 0 1244 0 0 1.56403 1.56403 -161.04 -1.56403 0 0 997811. 3452.63 0.39 0.07 0.18 -1 -1 0.39 0.0190318 0.0171975 73 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 15.63 vpr 54.80 MiB -1 -1 0.13 17072 1 0.02 -1 -1 29932 -1 -1 13 129 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56120 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 15.8 MiB 0.08 2046 54.8 MiB 0.21 0.01 2.32745 -199.458 -2.32745 2.32745 0.79 0.00041552 0.000355007 0.0380517 0.0331811 50 3850 44 6.95648e+06 188184 902133. 3121.57 12.48 0.274602 0.247248 28642 213929 -1 3500 31 1617 1617 439794 201828 0 0 439794 201828 1617 1617 0 0 5598 4911 0 0 13546 7985 0 0 1617 1617 0 0 208643 93339 0 0 208773 92359 0 0 1617 0 0 0 0 0 1617 0 0 1.74423 1.74423 -218.604 -1.74423 0 0 1.08113e+06 3740.92 0.38 0.13 0.20 -1 -1 0.38 0.0245029 0.0225234 97 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 3.45 vpr 51.91 MiB -1 -1 0.06 16308 1 0.01 -1 -1 29408 -1 -1 1 7 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53156 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 13.5 MiB 0.01 37 51.9 MiB 0.00 0.00 0.589542 -6.10608 -0.589542 0.589542 0.98 2.4799e-05 1.6463e-05 0.000251809 0.000213919 8 92 5 6.99608e+06 14715.7 166176. 575.005 0.85 0.00230269 0.00187938 20866 45572 -1 77 9 41 41 1638 698 0 0 1638 698 41 41 0 0 165 146 0 0 188 179 0 0 41 41 0 0 509 150 0 0 694 141 0 0 41 0 0 0 0 0 41 0 0 0.87204 0.87204 -7.60968 -0.87204 0 0 202963. 702.294 0.11 0.01 0.04 -1 -1 0.11 0.000892792 0.000768406 5 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 3.32 vpr 52.16 MiB -1 -1 0.10 16456 1 0.01 -1 -1 29328 -1 -1 1 9 0 0 exited with return code 2 v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53412 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 13.7 MiB 0.01 33 52.2 MiB 0.01 0.00 0.583992 -7.50397 -0.583992 0.583992 0.73 1.3311e-05 8.902e-06 0.000580248 0.000422736 18 118 10 6.99608e+06 14715.7 376052. 1301.22 0.87 0.00735577 0.00578306 22882 88689 -1 -1 -1 382 382 952505 281572 0 0 952505 281572 382 382 0 0 1407 1221 0 0 11506 1764 0 0 382 382 0 0 670144 137095 0 0 268684 140728 0 0 382 0 0 0 0 0 382 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0.12 0.18 0.05 -1 -1 0.12 -1 -1 7 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 4.34 vpr 52.17 MiB -1 -1 0.09 16308 1 0.01 -1 -1 29448 -1 -1 1 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53420 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 13.6 MiB 0.01 46 52.2 MiB 0.01 0.00 0.837432 -11.8241 -0.837432 0.837432 0.97 3.128e-05 2.3539e-05 0.000843183 0.000669913 28 137 6 6.99608e+06 14715.7 531479. 1839.03 1.47 0.00972964 0.00775426 24610 126494 -1 143 11 51 51 4307 1249 0 0 4307 1249 51 51 0 0 217 194 0 0 276 240 0 0 51 51 0 0 1613 392 0 0 2099 321 0 0 51 0 0 0 0 0 51 0 0 0.837432 0.837432 -14.0795 -0.837432 0 0 648988. 2245.63 0.26 0.01 0.12 -1 -1 0.26 0.00145885 0.00127878 8 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 3.34 vpr 52.25 MiB -1 -1 0.09 16352 1 0.00 -1 -1 29440 -1 -1 2 13 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53500 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 13.7 MiB 0.01 64 52.2 MiB 0.01 0.00 0.710132 -12.5877 -0.710132 0.710132 0.61 1.8949e-05 1.3377e-05 0.000857295 0.000654175 22 186 9 6.99608e+06 29431.4 443629. 1535.05 1.18 0.00847432 0.00669023 23458 102101 -1 155 11 94 94 5527 1788 0 0 5527 1788 94 94 0 0 375 333 0 0 480 415 0 0 94 94 0 0 1945 493 0 0 2539 359 0 0 94 0 0 0 0 0 94 0 0 0.793379 0.793379 -14.2658 -0.793379 0 0 531479. 1839.03 0.16 0.01 0.07 -1 -1 0.16 0.00110866 0.000977618 10 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 4.31 vpr 52.13 MiB -1 -1 0.09 16312 1 0.00 -1 -1 29484 -1 -1 2 15 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53384 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 13.5 MiB 0.02 162 52.1 MiB 0.01 0.00 0.859432 -16.5743 -0.859432 0.859432 0.99 4.0978e-05 3.1089e-05 0.00160109 0.00127085 22 361 18 6.99608e+06 29431.4 443629. 1535.05 1.50 0.0107532 0.00873725 23458 102101 -1 310 9 108 108 7990 2274 0 0 7990 2274 108 108 0 0 442 387 0 0 544 462 0 0 108 108 0 0 3545 608 0 0 3243 601 0 0 108 0 0 0 0 0 108 0 0 1.04203 1.04203 -21.0353 -1.04203 0 0 531479. 1839.03 0.18 0.01 0.11 -1 -1 0.18 0.00113874 0.00101361 11 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 3.27 vpr 52.32 MiB -1 -1 0.08 16324 1 0.01 -1 -1 29464 -1 -1 2 17 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53576 17 9 62 63 1 38 28 17 17 289 -1 unnamed_device 13.9 MiB 0.02 149 52.3 MiB 0.00 0.00 0.732132 -16.8326 -0.732132 0.732132 0.66 2.3923e-05 1.7168e-05 0.000686497 0.000572817 24 418 20 6.99608e+06 29431.4 470940. 1629.55 0.87 0.0068698 0.00564975 24034 113901 -1 346 12 197 197 18058 4433 0 0 18058 4433 197 197 0 0 811 676 0 0 1112 921 0 0 197 197 0 0 7822 1251 0 0 7919 1191 0 0 197 0 0 0 0 0 197 0 0 1.07503 1.07503 -23.3165 -1.07503 0 0 586450. 2029.24 0.15 0.01 0.08 -1 -1 0.15 0.00143534 0.00126125 13 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 5.06 vpr 52.29 MiB -1 -1 0.10 16700 1 0.01 -1 -1 29504 -1 -1 2 19 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53548 19 10 69 70 1 44 31 17 17 289 -1 unnamed_device 13.8 MiB 0.02 276 52.3 MiB 0.01 0.00 0.743132 -23.8011 -0.743132 0.743132 0.99 4.8042e-05 3.6886e-05 0.00243934 0.00193001 28 538 22 6.99608e+06 29431.4 531479. 1839.03 2.43 0.0182907 0.0149541 24610 126494 -1 519 12 220 220 23985 5297 0 0 23985 5297 220 220 0 0 870 744 0 0 1219 1005 0 0 220 220 0 0 10995 1608 0 0 10461 1500 0 0 220 0 0 0 0 0 220 0 0 0.949732 0.949732 -28.2293 -0.949732 0 0 648988. 2245.63 0.26 0.01 0.11 -1 -1 0.26 0.00248311 0.00218828 14 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 5.08 vpr 52.27 MiB -1 -1 0.10 16664 1 0.00 -1 -1 29400 -1 -1 2 21 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53520 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 13.8 MiB 0.02 159 52.3 MiB 0.01 0.00 0.743132 -20.8848 -0.743132 0.743132 1.00 5.5025e-05 4.2043e-05 0.00184045 0.00148397 30 378 13 6.99608e+06 29431.4 556674. 1926.21 2.20 0.0155977 0.0128176 25186 138497 -1 289 13 259 259 13646 4379 0 0 13646 4379 259 259 0 0 1028 923 0 0 1346 1144 0 0 259 259 0 0 5033 958 0 0 5721 836 0 0 259 0 0 0 0 0 259 0 0 0.857432 0.857432 -25.065 -0.857432 0 0 706193. 2443.58 0.24 0.01 0.08 -1 -1 0.24 0.00279804 0.00247623 16 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 3.39 vpr 52.30 MiB -1 -1 0.10 16572 1 0.01 -1 -1 29428 -1 -1 3 23 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53560 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 13.8 MiB 0.02 207 52.3 MiB 0.02 0.00 0.87204 -24.0372 -0.87204 0.87204 0.97 5.7807e-05 4.4449e-05 0.0031012 0.00243182 28 556 17 6.99608e+06 44147 531479. 1839.03 0.75 0.0124743 0.0102848 24610 126494 -1 485 13 259 259 19807 5350 0 0 19807 5350 259 259 0 0 1018 905 0 0 1590 1253 0 0 259 259 0 0 7840 1385 0 0 8841 1289 0 0 259 0 0 0 0 0 259 0 0 0.99734 0.99734 -32.4022 -0.99734 0 0 648988. 2245.63 0.26 0.01 0.11 -1 -1 0.26 0.00298143 0.00265118 17 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 3.98 vpr 52.34 MiB -1 -1 0.10 16660 1 0.01 -1 -1 29324 -1 -1 3 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53600 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 13.8 MiB 0.02 184 52.3 MiB 0.01 0.00 0.776132 -24.2677 -0.776132 0.776132 0.97 6.3152e-05 4.9046e-05 0.00204223 0.00168456 32 605 20 6.99608e+06 44147 586450. 2029.24 1.21 0.0162045 0.0136479 25474 144626 -1 538 15 327 327 26392 7495 0 0 26392 7495 327 327 0 0 1228 1061 0 0 2233 1632 0 0 327 327 0 0 10177 1900 0 0 12100 2248 0 0 327 0 0 0 0 0 327 0 0 1.14103 1.14103 -35.8076 -1.14103 0 0 744469. 2576.02 0.29 0.02 0.13 -1 -1 0.29 0.00349289 0.0030754 19 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 5.26 vpr 52.55 MiB -1 -1 0.11 16572 1 0.02 -1 -1 29348 -1 -1 3 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53812 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 13.9 MiB 0.02 211 52.6 MiB 0.02 0.00 0.787132 -26.7604 -0.787132 0.787132 0.97 7.0188e-05 5.4255e-05 0.00338223 0.00271001 34 710 22 6.99608e+06 44147 618332. 2139.56 2.35 0.0269562 0.0221336 25762 151098 -1 585 17 382 382 38126 9583 0 0 38126 9583 382 382 0 0 1366 1173 0 0 2376 1646 0 0 382 382 0 0 15590 3038 0 0 18030 2962 0 0 382 0 0 0 0 0 382 0 0 1.35863 1.35863 -40.1147 -1.35863 0 0 787024. 2723.27 0.23 0.01 0.13 -1 -1 0.23 0.00296452 0.00261558 20 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 6.18 vpr 52.53 MiB -1 -1 0.09 16588 1 0.00 -1 -1 29340 -1 -1 4 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53788 29 15 104 105 1 72 48 17 17 289 -1 unnamed_device 13.9 MiB 0.02 211 52.5 MiB 0.02 0.00 0.798132 -28.3603 -0.798132 0.798132 0.98 7.1328e-05 5.6082e-05 0.00355953 0.00286876 38 600 33 6.99608e+06 58862.7 678818. 2348.85 3.15 0.0391469 0.0329089 26626 170182 -1 464 24 576 576 35853 10518 0 0 35853 10518 576 576 0 0 1872 1655 0 0 3253 2131 0 0 576 576 0 0 14372 2672 0 0 15204 2908 0 0 576 0 0 0 0 0 576 0 0 1.20418 1.20418 -37.5361 -1.20418 0 0 902133. 3121.57 0.34 0.02 0.12 -1 -1 0.34 0.0052935 0.00457805 23 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 4.84 vpr 52.45 MiB -1 -1 0.10 16732 1 0.01 -1 -1 29464 -1 -1 3 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53712 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 13.8 MiB 0.02 264 52.5 MiB 0.02 0.00 1.04416 -31.4091 -1.04416 1.04416 0.72 4.3113e-05 3.2421e-05 0.00280376 0.00223204 34 795 33 6.99608e+06 44147 618332. 2139.56 2.33 0.0314213 0.0260826 25762 151098 -1 595 16 419 419 32158 8277 0 0 32158 8277 419 419 0 0 1534 1353 0 0 2437 1778 0 0 419 419 0 0 13848 2045 0 0 13501 2263 0 0 419 0 0 0 0 0 419 0 0 1.19403 1.19403 -42.5776 -1.19403 0 0 787024. 2723.27 0.30 0.02 0.13 -1 -1 0.30 0.00437826 0.00386668 24 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 4.82 vpr 52.42 MiB -1 -1 0.10 16744 1 0.01 -1 -1 29460 -1 -1 4 33 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53680 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 13.8 MiB 0.02 281 52.4 MiB 0.03 0.00 1.05516 -34.8802 -1.05516 1.05516 0.86 8.5488e-05 6.7546e-05 0.0046812 0.00380003 36 805 24 6.99608e+06 58862.7 648988. 2245.63 2.24 0.0319259 0.0265749 26050 158493 -1 597 16 467 467 31595 8647 0 0 31595 8647 467 467 0 0 1642 1435 0 0 2638 1903 0 0 467 467 0 0 12353 2270 0 0 14028 2105 0 0 467 0 0 0 0 0 467 0 0 1.30833 1.30833 -45.67 -1.30833 0 0 828058. 2865.25 0.29 0.01 0.09 -1 -1 0.29 0.00302115 0.00269434 25 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 5.08 vpr 52.55 MiB -1 -1 0.11 16612 1 0.01 -1 -1 29464 -1 -1 4 37 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53816 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 14.1 MiB 0.03 310 52.6 MiB 0.03 0.00 1.07716 -38.8128 -1.07716 1.07716 0.88 8.9604e-05 7.0308e-05 0.00594622 0.00477779 36 832 24 6.99608e+06 58862.7 648988. 2245.63 2.09 0.0334019 0.0278318 26050 158493 -1 648 13 415 415 29991 7597 0 0 29991 7597 415 415 0 0 1479 1279 0 0 2235 1638 0 0 415 415 0 0 12720 1933 0 0 12727 1917 0 0 415 0 0 0 0 0 415 0 0 1.12803 1.12803 -49.231 -1.12803 0 0 828058. 2865.25 0.33 0.02 0.14 -1 -1 0.33 0.00484584 0.00433742 28 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 5.70 vpr 52.69 MiB -1 -1 0.08 16496 1 0.00 -1 -1 29584 -1 -1 4 41 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53956 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 14.2 MiB 0.02 350 52.7 MiB 0.02 0.00 1.09916 -43.2906 -1.09916 1.09916 0.60 6.0135e-05 4.6788e-05 0.00408364 0.00329915 36 1040 38 6.99608e+06 58862.7 648988. 2245.63 3.42 0.0451626 0.0378439 26050 158493 -1 799 20 588 588 53831 12839 0 0 53831 12839 588 588 0 0 2087 1840 0 0 3647 2426 0 0 588 588 0 0 23098 3643 0 0 23823 3754 0 0 588 0 0 0 0 0 588 0 0 1.19403 1.19403 -54.8307 -1.19403 0 0 828058. 2865.25 0.32 0.03 0.14 -1 -1 0.32 0.00654715 0.0057574 31 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 5.98 vpr 52.81 MiB -1 -1 0.09 16696 1 0.01 -1 -1 29436 -1 -1 5 45 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54076 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 14.2 MiB 0.02 397 52.8 MiB 0.04 0.00 1.12116 -47.9377 -1.12116 1.12116 0.98 0.000109798 8.7279e-05 0.007734 0.0063206 36 1088 43 6.99608e+06 73578.4 648988. 2245.63 3.07 0.064081 0.0550887 26050 158493 -1 870 17 588 588 51618 13224 0 0 51618 13224 588 588 0 0 2105 1836 0 0 3351 2348 0 0 588 588 0 0 21992 3962 0 0 22994 3902 0 0 588 0 0 0 0 0 588 0 0 1.41548 1.41548 -64.6601 -1.41548 0 0 828058. 2865.25 0.26 0.03 0.13 -1 -1 0.26 0.00691048 0.00610689 34 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 7.01 vpr 52.83 MiB -1 -1 0.07 16660 1 0.01 -1 -1 29460 -1 -1 5 49 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54100 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 14.4 MiB 0.03 454 52.8 MiB 0.05 0.00 1.14316 -52.1276 -1.14316 1.14316 0.99 0.000123631 9.8726e-05 0.00826176 0.00677195 38 1333 27 6.99608e+06 73578.4 678818. 2348.85 3.90 0.0702038 0.0598865 26626 170182 -1 1061 16 724 724 65888 16603 0 0 65888 16603 724 724 0 0 2522 2182 0 0 3858 2757 0 0 724 724 0 0 27061 5404 0 0 30999 4812 0 0 724 0 0 0 0 0 724 0 0 1.40733 1.40733 -73.7274 -1.40733 0 0 902133. 3121.57 0.33 0.02 0.15 -1 -1 0.33 0.00494507 0.00443417 37 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 7.14 vpr 52.97 MiB -1 -1 0.10 16932 1 0.01 -1 -1 29480 -1 -1 6 57 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54244 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 14.4 MiB 0.04 636 53.0 MiB 0.04 0.00 1.18716 -65.4009 -1.18716 1.18716 0.93 8.5347e-05 6.8549e-05 0.00693585 0.00572188 40 1406 22 6.99608e+06 88294.1 706193. 2443.58 3.95 0.0836353 0.0723593 26914 176310 -1 1139 18 727 727 63659 15180 0 0 63659 15180 727 727 0 0 2644 2286 0 0 4066 3039 0 0 727 727 0 0 28541 4101 0 0 26954 4300 0 0 727 0 0 0 0 0 727 0 0 1.24903 1.24903 -81.2373 -1.24903 0 0 926341. 3205.33 0.36 0.03 0.16 -1 -1 0.36 0.0084417 0.00753384 43 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 5.17 vpr 53.09 MiB -1 -1 0.11 16888 1 0.01 -1 -1 29600 -1 -1 7 65 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54364 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 14.7 MiB 0.04 751 53.1 MiB 0.07 0.00 1.47719 -78.5345 -1.47719 1.47719 0.96 0.000183247 0.000151192 0.0120258 0.00996358 38 1902 38 6.99608e+06 103010 678818. 2348.85 1.98 0.0618611 0.0532684 26626 170182 -1 1444 18 838 838 85516 19090 0 0 85516 19090 838 838 0 0 2882 2492 0 0 4873 3272 0 0 838 838 0 0 37700 6102 0 0 38385 5548 0 0 838 0 0 0 0 0 838 0 0 1.40918 1.40918 -97.9259 -1.40918 0 0 902133. 3121.57 0.34 0.04 0.15 -1 -1 0.34 0.0103973 0.00932302 49 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 7.74 vpr 54.03 MiB -1 -1 0.13 16888 1 0.02 -1 -1 29764 -1 -1 10 97 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55324 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 15.2 MiB 0.06 1623 54.0 MiB 0.11 0.00 1.88822 -140.879 -1.88822 1.88822 0.98 0.000182592 0.000155375 0.0191847 0.0164427 46 2899 25 6.99608e+06 147157 828058. 2865.25 4.66 0.151362 0.134265 28066 200906 -1 2667 14 1001 1001 96446 19506 0 0 96446 19506 1001 1001 0 0 3420 2945 0 0 5138 3705 0 0 1001 1001 0 0 45199 5346 0 0 40687 5508 0 0 1001 0 0 0 0 0 1001 0 0 1.49803 1.49803 -158.25 -1.49803 0 0 1.01997e+06 3529.29 0.27 0.03 0.12 -1 -1 0.27 0.00871659 0.00799254 73 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 7.78 vpr 54.71 MiB -1 -1 0.14 17216 1 0.01 -1 -1 29876 -1 -1 13 129 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56020 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 15.8 MiB 0.05 1991 54.7 MiB 0.13 0.00 2.29925 -197.52 -2.29925 2.29925 0.62 0.000263355 0.000228781 0.0229858 0.020035 54 3657 23 6.99608e+06 191304 949917. 3286.91 4.94 0.21816 0.195634 29506 232905 -1 3246 18 1408 1408 141986 30942 0 0 141986 30942 1408 1408 0 0 4719 4062 0 0 8229 5390 0 0 1408 1408 0 0 63838 8309 0 0 62384 10365 0 0 1408 0 0 0 0 0 1408 0 0 1.73333 1.73333 -213.072 -1.73333 0 0 1.17392e+06 4061.99 0.45 0.08 0.19 -1 -1 0.45 0.0223483 0.0204487 97 -1 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_003bits.v common 3.79 vpr 51.54 MiB -1 -1 0.10 16420 1 0.04 -1 -1 31484 -1 -1 1 7 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52776 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 13.1 MiB 0.01 64 51.5 MiB 0.00 0.00 0.942216 -7.18451 -0.942216 0.942216 0.98 2.586e-05 1.7306e-05 0.000255528 0.000212803 18 95 2 6.79088e+06 13472 376052. 1301.22 1.01 0.00178434 0.00148485 22222 88205 -1 93 2 12 12 598 176 0 0 598 176 12 12 0 0 47 30 0 0 58 47 0 0 12 12 0 0 267 37 0 0 202 38 0 0 12 0 0 0 0 0 12 0 0 0.942216 0.942216 -7.93631 -0.942216 0 0 470940. 1629.55 0.19 0.00 0.08 -1 -1 0.19 0.000623626 0.000567621 6 4 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 4.33 vpr 51.63 MiB -1 -1 0.05 16468 2 0.02 -1 -1 31692 -1 -1 1 9 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52872 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 13.1 MiB 0.01 35 51.6 MiB 0.01 0.00 0.883748 -8.8411 -0.883748 0.883748 0.94 2.4056e-05 1.6868e-05 0.000941739 0.000708584 24 123 7 6.79088e+06 13472 470940. 1629.55 1.57 0.0084296 0.00669092 23374 113417 -1 97 12 43 43 1510 582 0 0 1510 582 43 43 0 0 173 137 0 0 220 180 0 0 43 43 0 0 483 114 0 0 548 65 0 0 43 0 0 0 0 0 43 0 0 0.883748 0.883748 -9.9688 -0.883748 0 0 586450. 2029.24 0.24 0.01 0.10 -1 -1 0.24 0.00133398 0.00115799 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 4.50 vpr 51.54 MiB -1 -1 0.06 16376 2 0.05 -1 -1 31340 -1 -1 2 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52772 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 13.0 MiB 0.01 55 51.5 MiB 0.01 0.00 1.02368 -11.4578 -1.02368 1.02368 0.97 2.8615e-05 2.085e-05 0.000802297 0.000642563 26 167 5 6.79088e+06 26944 503264. 1741.40 1.63 0.00934322 0.00756434 23662 119890 -1 160 5 51 57 2724 846 0 0 2724 846 57 51 0 0 199 164 0 0 277 204 0 0 57 53 0 0 953 207 0 0 1181 167 0 0 57 0 0 6 3 3 81 0 0 1.02368 1.02368 -14.0499 -1.02368 0 0 618332. 2139.56 0.26 0.00 0.11 -1 -1 0.26 0.000783068 0.000709035 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 4.29 vpr 51.68 MiB -1 -1 0.09 16384 3 0.04 -1 -1 31504 -1 -1 2 13 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52920 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 13.2 MiB 0.01 85 51.7 MiB 0.01 0.00 1.05944 -14.2387 -1.05944 1.05944 0.96 3.3517e-05 2.4865e-05 0.00108777 0.000861614 22 288 11 6.79088e+06 26944 443629. 1535.05 1.50 0.0102411 0.00834206 22798 101617 -1 214 7 93 97 5288 1551 0 0 5288 1551 97 97 0 0 362 293 0 0 458 383 0 0 97 97 0 0 1826 390 0 0 2448 291 0 0 97 0 0 4 4 0 113 0 0 1.05944 1.05944 -17.4573 -1.05944 0 0 531479. 1839.03 0.22 0.01 0.05 -1 -1 0.22 0.00141458 0.00127076 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 4.10 vpr 51.69 MiB -1 -1 0.10 16360 3 0.04 -1 -1 31312 -1 -1 2 15 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52932 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 13.1 MiB 0.01 92 51.7 MiB 0.01 0.00 1.13784 -16.052 -1.13784 1.13784 0.98 4.4392e-05 3.4118e-05 0.00178121 0.00140351 24 439 27 6.79088e+06 26944 470940. 1629.55 1.38 0.0120353 0.00985047 23374 113417 -1 284 15 188 207 11746 4028 0 0 11746 4028 207 198 0 0 789 676 0 0 1153 870 0 0 207 199 0 0 3946 1150 0 0 5444 935 0 0 207 0 0 19 9 12 285 0 0 1.13784 1.13784 -20.3983 -1.13784 0 0 586450. 2029.24 0.23 0.01 0.09 -1 -1 0.23 0.00242374 0.00212738 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 4.99 vpr 51.79 MiB -1 -1 0.09 16700 3 0.04 -1 -1 31300 -1 -1 2 17 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53028 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 13.2 MiB 0.04 275 51.8 MiB 0.01 0.00 1.27433 -22.6877 -1.27433 1.27433 0.95 4.8085e-05 3.6595e-05 0.00140482 0.00115519 34 541 11 6.79088e+06 26944 618332. 2139.56 2.35 0.0115091 0.00958495 25102 150614 -1 494 7 131 150 10447 2433 0 0 10447 2433 150 139 0 0 532 412 0 0 819 633 0 0 150 139 0 0 4463 583 0 0 4333 527 0 0 150 0 0 19 12 12 239 0 0 1.27433 1.27433 -26.572 -1.27433 0 0 787024. 2723.27 0.20 0.01 0.08 -1 -1 0.20 0.00142829 0.00129374 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 4.56 vpr 51.82 MiB -1 -1 0.10 16592 4 0.04 -1 -1 31380 -1 -1 3 19 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53068 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 13.1 MiB 0.05 313 51.8 MiB 0.01 0.00 1.1736 -26.515 -1.1736 1.1736 0.67 2.7979e-05 2.0948e-05 0.00125512 0.0010008 30 638 14 6.79088e+06 40416 556674. 1926.21 2.06 0.0160498 0.0131719 24526 138013 -1 557 9 159 168 13878 3020 0 0 13878 3020 168 160 0 0 600 475 0 0 752 625 0 0 168 161 0 0 6341 853 0 0 5849 746 0 0 168 0 0 9 9 10 214 0 0 1.1736 1.1736 -30.274 -1.1736 0 0 706193. 2443.58 0.29 0.01 0.12 -1 -1 0.29 0.00234745 0.00211119 17 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 4.59 vpr 51.90 MiB -1 -1 0.10 16560 4 0.05 -1 -1 31436 -1 -1 3 21 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53148 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 13.4 MiB 0.18 146 51.9 MiB 0.01 0.00 1.60338 -26.0076 -1.60338 1.60338 0.92 3.2925e-05 2.4646e-05 0.00270802 0.0021628 28 611 42 6.79088e+06 40416 531479. 1839.03 1.49 0.0239067 0.0198566 23950 126010 -1 470 14 299 354 22442 7548 0 0 22442 7548 354 313 0 0 1392 1218 0 0 2226 1771 0 0 354 321 0 0 8575 1996 0 0 9541 1929 0 0 354 0 0 55 56 35 610 0 0 1.85393 1.85393 -33.9011 -1.85393 0 0 648988. 2245.63 0.27 0.02 0.10 -1 -1 0.27 0.00361793 0.00324533 21 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 4.54 vpr 51.98 MiB -1 -1 0.10 16716 5 0.04 -1 -1 31308 -1 -1 3 23 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53224 23 12 76 88 1 61 38 17 17 289 -1 unnamed_device 13.4 MiB 0.08 369 52.0 MiB 0.01 0.00 1.67834 -34.2495 -1.67834 1.67834 0.84 6.4189e-05 4.9656e-05 0.00276642 0.00225677 34 748 16 6.79088e+06 40416 618332. 2139.56 1.97 0.0247951 0.0205492 25102 150614 -1 674 15 265 321 20914 5168 0 0 20914 5168 321 288 0 0 1196 1047 0 0 1754 1361 0 0 321 294 0 0 9074 1055 0 0 8248 1123 0 0 321 0 0 56 9 58 578 0 0 1.67834 1.67834 -38.7211 -1.67834 0 0 787024. 2723.27 0.31 0.01 0.13 -1 -1 0.31 0.00357659 0.00319327 22 19 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 4.61 vpr 52.00 MiB -1 -1 0.10 16588 5 0.05 -1 -1 31292 -1 -1 3 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53248 25 13 83 96 1 66 41 17 17 289 -1 unnamed_device 13.5 MiB 0.21 210 52.0 MiB 0.01 0.00 1.67834 -32.2838 -1.67834 1.67834 0.96 4.2062e-05 3.2732e-05 0.00154473 0.00127382 26 727 15 6.79088e+06 40416 503264. 1741.40 1.67 0.0237446 0.0199376 23662 119890 -1 588 12 284 337 18726 5558 0 0 18726 5558 337 296 0 0 1221 1019 0 0 1859 1375 0 0 337 303 0 0 6588 1293 0 0 8384 1272 0 0 337 0 0 53 53 31 580 0 0 1.72868 1.72868 -40.4056 -1.72868 0 0 618332. 2139.56 0.17 0.02 0.07 -1 -1 0.17 0.00408851 0.00369388 23 21 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 5.50 vpr 51.98 MiB -1 -1 0.09 16576 5 0.05 -1 -1 31252 -1 -1 4 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53224 27 14 91 105 1 72 45 17 17 289 -1 unnamed_device 13.4 MiB 0.33 458 52.0 MiB 0.02 0.00 1.81483 -40.3952 -1.81483 1.81483 0.99 7.7674e-05 6.0955e-05 0.00307958 0.00251392 30 866 12 6.79088e+06 53888 556674. 1926.21 2.43 0.0306382 0.0256754 24526 138013 -1 808 13 273 350 26231 5799 0 0 26231 5799 350 279 0 0 1268 1016 0 0 1806 1413 0 0 350 279 0 0 11497 1467 0 0 10960 1345 0 0 350 0 0 77 80 33 706 0 0 1.81483 1.81483 -47.4981 -1.81483 0 0 706193. 2443.58 0.22 0.01 0.07 -1 -1 0.22 0.0027654 0.0025016 27 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 4.36 vpr 51.97 MiB -1 -1 0.11 16748 6 0.05 -1 -1 31356 -1 -1 4 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53220 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 13.3 MiB 0.25 298 52.0 MiB 0.02 0.00 2.06549 -39.791 -2.06549 2.06549 0.97 7.7676e-05 6.1266e-05 0.0047125 0.0038342 34 759 14 6.79088e+06 53888 618332. 2139.56 1.06 0.0216346 0.0180815 25102 150614 -1 620 14 262 305 26466 6688 0 0 26466 6688 305 278 0 0 1193 1002 0 0 2206 1536 0 0 305 280 0 0 10795 1883 0 0 11662 1709 0 0 305 0 0 43 33 35 502 0 0 2.06549 2.06549 -46.1813 -2.06549 0 0 787024. 2723.27 0.31 0.02 0.14 -1 -1 0.31 0.00455544 0.00408723 28 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 6.43 vpr 52.11 MiB -1 -1 0.09 16692 6 0.05 -1 -1 31128 -1 -1 5 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53364 31 16 104 120 1 82 52 17 17 289 -1 unnamed_device 13.5 MiB 0.46 242 52.1 MiB 0.03 0.00 2.14389 -43.0554 -2.14389 2.14389 0.71 8.5923e-05 6.8328e-05 0.00565233 0.00454864 38 796 21 6.79088e+06 67360 678818. 2348.85 3.38 0.0486361 0.0415709 25966 169698 -1 545 13 383 529 21129 6754 0 0 21129 6754 529 417 0 0 1745 1490 0 0 2762 1967 0 0 529 428 0 0 7002 1332 0 0 8562 1120 0 0 529 0 0 146 147 73 1255 0 0 2.14389 2.14389 -46.7752 -2.14389 0 0 902133. 3121.57 0.26 0.01 0.09 -1 -1 0.26 0.003129 0.00284008 31 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 5.99 vpr 52.10 MiB -1 -1 0.05 16732 7 0.06 -1 -1 31328 -1 -1 5 33 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53352 33 17 112 129 1 88 55 17 17 289 -1 unnamed_device 13.7 MiB 0.81 534 52.1 MiB 0.02 0.00 2.39454 -55.7365 -2.39454 2.39454 0.70 5.3996e-05 4.2168e-05 0.00354929 0.00295012 34 1164 20 6.79088e+06 67360 618332. 2139.56 2.46 0.0387727 0.0330849 25102 150614 -1 962 12 368 469 34965 7923 0 0 34965 7923 469 393 0 0 1662 1407 0 0 2663 1925 0 0 469 412 0 0 14758 1960 0 0 14944 1826 0 0 469 0 0 101 55 109 978 0 0 2.48064 2.48064 -63.9587 -2.48064 0 0 787024. 2723.27 0.32 0.02 0.13 -1 -1 0.32 0.00533234 0.0048458 32 30 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 7.44 vpr 52.21 MiB -1 -1 0.10 16748 7 0.06 -1 -1 31456 -1 -1 6 37 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53460 37 19 127 146 1 99 62 17 17 289 -1 unnamed_device 13.7 MiB 1.22 318 52.2 MiB 0.03 0.00 3.00001 -60.316 -3.00001 3.00001 0.95 0.000109241 8.6679e-05 0.00622408 0.00511708 36 970 48 6.79088e+06 80832 648988. 2245.63 3.18 0.0605658 0.0520732 25390 158009 -1 758 13 401 485 34946 9987 0 0 34946 9987 485 424 0 0 1790 1535 0 0 2781 2079 0 0 485 436 0 0 14434 2746 0 0 14971 2767 0 0 485 0 0 84 79 65 881 0 0 3.25061 3.25061 -70.2147 -3.25061 0 0 828058. 2865.25 0.31 0.02 0.14 -1 -1 0.31 0.00558963 0.00503143 37 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 4.42 vpr 52.19 MiB -1 -1 0.10 16564 8 0.06 -1 -1 31288 -1 -1 6 41 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53440 41 21 139 160 1 106 68 17 17 289 -1 unnamed_device 13.6 MiB 0.53 507 52.2 MiB 0.03 0.00 2.60599 -63.4398 -2.60599 2.60599 0.92 0.000124857 0.000100267 0.00591732 0.0049111 30 1216 27 6.79088e+06 80832 556674. 1926.21 0.95 0.0335348 0.0291733 24526 138013 -1 1048 11 387 500 30675 7856 0 0 30675 7856 500 420 0 0 1750 1456 0 0 2569 1976 0 0 500 431 0 0 13301 1663 0 0 12055 1910 0 0 500 0 0 113 44 113 1012 0 0 2.60599 2.60599 -76.3534 -2.60599 0 0 706193. 2443.58 0.29 0.02 0.12 -1 -1 0.29 0.00587722 0.00535063 41 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 6.30 vpr 52.41 MiB -1 -1 0.11 16660 9 0.07 -1 -1 31636 -1 -1 6 45 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53672 45 23 153 176 1 119 74 17 17 289 -1 unnamed_device 13.8 MiB 0.46 644 52.4 MiB 0.05 0.00 2.85665 -79.2309 -2.85665 2.85665 0.98 0.000137054 0.000110793 0.00987123 0.00812463 36 1310 21 6.79088e+06 80832 648988. 2245.63 2.87 0.0486635 0.0416919 25390 158009 -1 1152 10 419 515 35072 8623 0 0 35072 8623 515 456 0 0 1879 1584 0 0 3010 2267 0 0 515 459 0 0 15037 1937 0 0 14116 1920 0 0 515 0 0 96 100 50 979 0 0 2.98195 2.98195 -87.8766 -2.98195 0 0 828058. 2865.25 0.22 0.01 0.09 -1 -1 0.22 0.00415292 0.00382396 43 41 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 4.70 vpr 52.47 MiB -1 -1 0.12 17044 10 0.06 -1 -1 31560 -1 -1 8 49 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53732 49 25 166 191 1 133 82 17 17 289 -1 unnamed_device 13.9 MiB 0.74 607 52.5 MiB 0.03 0.00 3.1857 -86.413 -3.1857 3.1857 0.69 0.000146576 0.00011955 0.00602681 0.00505522 34 1430 15 6.79088e+06 107776 618332. 2139.56 1.28 0.0446184 0.0382548 25102 150614 -1 1249 13 476 542 37167 9704 0 0 37167 9704 542 498 0 0 2158 1788 0 0 3307 2558 0 0 542 509 0 0 15337 2227 0 0 15281 2124 0 0 542 0 0 66 48 59 847 0 0 3.3971 3.3971 -101.714 -3.3971 0 0 787024. 2723.27 0.30 0.03 0.13 -1 -1 0.30 0.00790938 0.00719743 48 44 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 5.78 vpr 52.43 MiB -1 -1 0.12 16912 11 0.08 -1 -1 32188 -1 -1 8 57 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53684 57 29 198 227 1 158 94 17 17 289 -1 unnamed_device 13.8 MiB 1.50 873 52.4 MiB 0.04 0.00 3.65124 -113.344 -3.65124 3.65124 0.82 0.000100474 8.097e-05 0.00797215 0.00656155 34 2202 49 6.79088e+06 107776 618332. 2139.56 1.33 0.0514324 0.044439 25102 150614 -1 1805 26 725 1014 150728 63617 0 0 150728 63617 1014 833 0 0 3717 3256 0 0 7370 4914 0 0 1014 869 0 0 68779 25832 0 0 68834 27913 0 0 1014 0 0 289 127 298 2396 0 0 3.65124 3.65124 -129.296 -3.65124 0 0 787024. 2723.27 0.28 0.07 0.08 -1 -1 0.28 0.0144899 0.012925 59 56 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 6.40 vpr 52.83 MiB -1 -1 0.10 16744 13 0.05 -1 -1 31440 -1 -1 9 65 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 14.3 MiB 1.85 966 52.8 MiB 0.08 0.00 4.57458 -142.706 -4.57458 4.57458 0.95 0.000201204 0.000165272 0.0165126 0.0138543 34 2088 17 6.79088e+06 121248 618332. 2139.56 1.53 0.0672404 0.0588809 25102 150614 -1 1892 19 724 950 73744 16662 0 0 73744 16662 950 787 0 0 3357 2791 0 0 5619 3938 0 0 950 805 0 0 33039 4002 0 0 29829 4339 0 0 950 0 0 226 149 222 2011 0 0 4.82518 4.82518 -166.137 -4.82518 0 0 787024. 2723.27 0.20 0.03 0.11 -1 -1 0.20 0.0097897 0.00883606 66 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 7.46 vpr 53.52 MiB -1 -1 0.10 17252 19 0.10 -1 -1 31688 -1 -1 13 97 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54800 97 49 340 389 1 267 159 17 17 289 -1 unnamed_device 14.9 MiB 2.96 1252 53.5 MiB 0.12 0.00 6.59443 -253.47 -6.59443 6.59443 0.94 0.0003503 0.000296094 0.0277494 0.0236677 36 3066 42 6.79088e+06 175136 648988. 2245.63 1.30 0.0871809 0.0763942 25390 158009 -1 2504 15 991 1331 90245 22780 0 0 90245 22780 1331 1090 0 0 4745 3980 0 0 7686 5516 0 0 1331 1115 0 0 35754 5633 0 0 39398 5446 0 0 1331 0 0 340 323 315 3051 0 0 6.59443 6.59443 -275.397 -6.59443 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0195315 0.0180036 100 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 11.85 vpr 54.39 MiB -1 -1 0.12 17492 26 0.11 -1 -1 31840 -1 -1 18 129 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55692 129 65 453 518 1 350 212 17 17 289 -1 unnamed_device 15.5 MiB 4.11 1634 54.4 MiB 0.18 0.00 9.19737 -430.161 -9.19737 9.19737 0.99 0.000316734 0.000275608 0.0411204 0.0355505 38 3331 13 6.79088e+06 242496 678818. 2348.85 4.33 0.272319 0.244442 25966 169698 -1 2808 12 1181 1581 84546 22655 0 0 84546 22655 1581 1261 0 0 5395 4445 0 0 8064 5951 0 0 1581 1276 0 0 36012 4761 0 0 31913 4961 0 0 1581 0 0 400 197 349 3397 0 0 9.32267 9.32267 -456.724 -9.32267 0 0 902133. 3121.57 0.24 0.06 0.09 -1 -1 0.24 0.0233184 0.0216747 129 131 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 3.25 vpr 51.95 MiB -1 -1 0.08 16316 1 0.01 -1 -1 29344 -1 -1 1 7 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53192 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 13.5 MiB 0.02 48 51.9 MiB 0.00 0.00 1.10719 -6.47652 -1.10719 1.10719 0.73 2.2426e-05 1.4247e-05 0.000210152 0.000178861 12 118 9 6.87369e+06 13973.8 243793. 843.575 1.00 0.00212502 0.00174201 21730 64085 -1 85 7 26 26 786 305 0 0 786 305 26 26 0 0 89 70 0 0 117 97 0 0 26 26 0 0 257 52 0 0 271 34 0 0 26 0 0 0 0 0 26 0 0 1.10719 1.10719 -7.72952 -1.10719 0 0 332735. 1151.33 0.15 0.00 0.05 -1 -1 0.15 0.000597529 0.000519606 8 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 3.23 vpr 51.98 MiB -1 -1 0.08 16392 1 0.01 -1 -1 29252 -1 -1 2 9 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53228 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 13.5 MiB 0.04 44 52.0 MiB 0.00 0.00 0.663773 -8.20792 -0.663773 0.663773 0.62 1.6322e-05 1.1844e-05 0.000557986 0.000440216 16 149 14 6.87369e+06 27947.7 332735. 1151.33 0.98 0.00557085 0.00439667 22306 75877 -1 116 19 140 140 5006 1848 0 0 5006 1848 140 140 0 0 476 376 0 0 603 481 0 0 140 140 0 0 1422 437 0 0 2225 274 0 0 140 0 0 0 0 0 140 0 0 1.03967 1.03967 -10.0874 -1.03967 0 0 414966. 1435.87 0.11 0.01 0.06 -1 -1 0.11 0.00122182 0.00102028 10 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 3.75 vpr 51.93 MiB -1 -1 0.08 16204 1 0.01 -1 -1 29356 -1 -1 3 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53176 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 13.4 MiB 0.05 168 51.9 MiB 0.00 0.00 0.856592 -13.2218 -0.856592 0.856592 0.85 3.1166e-05 2.3248e-05 0.00042665 0.00035886 18 347 13 6.87369e+06 41921.5 376052. 1301.22 1.27 0.00648132 0.00528805 22882 88689 -1 308 7 84 84 6728 1668 0 0 6728 1668 84 84 0 0 344 275 0 0 457 369 0 0 84 84 0 0 2918 399 0 0 2841 457 0 0 84 0 0 0 0 0 84 0 0 1.06167 1.06167 -17.8579 -1.06167 0 0 470940. 1629.55 0.15 0.00 0.08 -1 -1 0.15 0.000810076 0.000716085 13 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 4.96 vpr 52.06 MiB -1 -1 0.07 16456 1 0.00 -1 -1 29240 -1 -1 3 13 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53312 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 13.5 MiB 0.06 79 52.1 MiB 0.01 0.00 0.707773 -12.4596 -0.707773 0.707773 1.04 3.4531e-05 2.5583e-05 0.00171533 0.00139863 28 284 20 6.87369e+06 41921.5 531479. 1839.03 1.95 0.0150844 0.0121312 24610 126494 -1 238 36 370 370 23088 7265 0 0 23088 7265 370 370 0 0 1362 1166 0 0 2260 1708 0 0 370 370 0 0 8109 1971 0 0 10617 1680 0 0 370 0 0 0 0 0 370 0 0 1.08367 1.08367 -16.5945 -1.08367 0 0 648988. 2245.63 0.26 0.02 0.11 -1 -1 0.26 0.00330044 0.00274268 15 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 3.50 vpr 52.15 MiB -1 -1 0.07 16356 1 0.02 -1 -1 29312 -1 -1 3 15 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53400 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 13.5 MiB 0.08 110 52.1 MiB 0.01 0.00 1.13846 -15.98 -1.13846 1.13846 0.85 3.9405e-05 2.934e-05 0.00202482 0.00157153 26 273 22 6.87369e+06 41921.5 503264. 1741.40 0.69 0.00915364 0.00740846 24322 120374 -1 223 9 129 129 5586 1924 0 0 5586 1924 129 129 0 0 529 428 0 0 681 576 0 0 129 129 0 0 1896 361 0 0 2222 301 0 0 129 0 0 0 0 0 129 0 0 0.945373 0.945373 -17.851 -0.945373 0 0 618332. 2139.56 0.25 0.01 0.11 -1 -1 0.25 0.00163784 0.00145059 17 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 3.62 vpr 52.12 MiB -1 -1 0.08 16664 1 0.01 -1 -1 29196 -1 -1 3 17 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53376 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 13.5 MiB 0.04 123 52.1 MiB 0.01 0.00 0.964803 -17.8777 -0.964803 0.964803 0.59 2.8937e-05 2.1706e-05 0.00137116 0.0010399 26 313 11 6.87369e+06 41921.5 503264. 1741.40 1.43 0.00955692 0.00767072 24322 120374 -1 290 15 215 215 14610 4398 0 0 14610 4398 215 215 0 0 893 754 0 0 1324 1110 0 0 215 215 0 0 5603 1064 0 0 6360 1040 0 0 215 0 0 0 0 0 215 0 0 1.08167 1.08167 -22.8492 -1.08167 0 0 618332. 2139.56 0.23 0.01 0.10 -1 -1 0.23 0.00182472 0.00159176 18 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 4.11 vpr 52.03 MiB -1 -1 0.10 16600 1 0.00 -1 -1 29368 -1 -1 3 19 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53280 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 13.4 MiB 0.07 132 52.0 MiB 0.01 0.00 0.975803 -19.6229 -0.975803 0.975803 0.59 2.775e-05 2.0324e-05 0.00161906 0.00125481 32 343 22 6.87369e+06 41921.5 586450. 2029.24 1.90 0.0168505 0.0136332 25474 144626 -1 289 16 211 211 13959 4144 0 0 13959 4144 211 211 0 0 879 795 0 0 1441 1243 0 0 211 211 0 0 5686 818 0 0 5531 866 0 0 211 0 0 0 0 0 211 0 0 1.13667 1.13667 -25.2428 -1.13667 0 0 744469. 2576.02 0.19 0.01 0.08 -1 -1 0.19 0.00202017 0.00174933 20 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 3.46 vpr 52.27 MiB -1 -1 0.10 16692 1 0.00 -1 -1 29356 -1 -1 3 21 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53524 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 13.8 MiB 0.07 153 52.3 MiB 0.01 0.00 0.986803 -22.4034 -0.986803 0.986803 0.85 5.3131e-05 4.0522e-05 0.00278108 0.00217106 28 399 18 6.87369e+06 41921.5 531479. 1839.03 0.75 0.0115736 0.00945538 24610 126494 -1 359 16 257 257 18074 5021 0 0 18074 5021 257 257 0 0 975 857 0 0 1404 1160 0 0 257 257 0 0 6932 1364 0 0 8249 1126 0 0 257 0 0 0 0 0 257 0 0 1.11467 1.11467 -28.7883 -1.11467 0 0 648988. 2245.63 0.26 0.01 0.11 -1 -1 0.26 0.00288239 0.00248983 22 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 3.91 vpr 52.19 MiB -1 -1 0.06 16708 1 0.01 -1 -1 29176 -1 -1 4 23 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53440 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 13.7 MiB 0.06 162 52.2 MiB 0.01 0.00 0.997803 -24.2959 -0.997803 0.997803 0.82 3.0825e-05 2.2809e-05 0.00189573 0.0014709 30 472 21 6.87369e+06 55895.4 556674. 1926.21 1.60 0.0157975 0.0127442 25186 138497 -1 388 15 269 269 17945 4736 0 0 17945 4736 269 269 0 0 976 807 0 0 1285 1064 0 0 269 269 0 0 6833 1334 0 0 8313 993 0 0 269 0 0 0 0 0 269 0 0 1.13667 1.13667 -30.1508 -1.13667 0 0 706193. 2443.58 0.22 0.01 0.07 -1 -1 0.22 0.00194359 0.00169661 24 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 4.45 vpr 52.19 MiB -1 -1 0.08 16564 1 0.01 -1 -1 29372 -1 -1 4 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53444 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 13.6 MiB 0.07 191 52.2 MiB 0.02 0.00 1.0088 -26.7005 -1.0088 1.0088 0.79 6.0926e-05 4.6768e-05 0.00364616 0.00288475 32 571 14 6.87369e+06 55895.4 586450. 2029.24 1.97 0.0199604 0.0163156 25474 144626 -1 473 16 312 312 26252 6826 0 0 26252 6826 312 312 0 0 1239 1076 0 0 1897 1520 0 0 312 312 0 0 10473 1928 0 0 12019 1678 0 0 312 0 0 0 0 0 312 0 0 1.16967 1.16967 -35.9356 -1.16967 0 0 744469. 2576.02 0.21 0.01 0.13 -1 -1 0.21 0.00240245 0.00209021 26 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 3.68 vpr 52.31 MiB -1 -1 0.10 16716 1 0.01 -1 -1 29328 -1 -1 4 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53568 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 13.8 MiB 0.07 308 52.3 MiB 0.01 0.00 1.0198 -32.4993 -1.0198 1.0198 0.65 3.6731e-05 2.7693e-05 0.00184339 0.00144735 30 669 21 6.87369e+06 55895.4 556674. 1926.21 1.12 0.0144926 0.0118383 25186 138497 -1 616 12 254 254 16092 4130 0 0 16092 4130 254 254 0 0 900 752 0 0 1116 928 0 0 254 254 0 0 6028 1104 0 0 7540 838 0 0 254 0 0 0 0 0 254 0 0 1.01137 1.01137 -39.5837 -1.01137 0 0 706193. 2443.58 0.28 0.01 0.12 -1 -1 0.28 0.00318043 0.00282636 28 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 5.62 vpr 52.36 MiB -1 -1 0.09 16544 1 0.00 -1 -1 29188 -1 -1 5 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53616 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 13.8 MiB 0.12 227 52.4 MiB 0.03 0.00 1.0308 -30.5404 -1.0308 1.0308 0.95 7.4618e-05 5.8329e-05 0.00477554 0.00378608 34 801 40 6.87369e+06 69869.2 618332. 2139.56 2.87 0.0315166 0.0259298 25762 151098 -1 583 19 452 452 38701 9999 0 0 38701 9999 452 452 0 0 1779 1555 0 0 2801 2203 0 0 452 452 0 0 15255 2899 0 0 17962 2438 0 0 452 0 0 0 0 0 452 0 0 1.18067 1.18067 -39.9512 -1.18067 0 0 787024. 2723.27 0.31 0.02 0.14 -1 -1 0.31 0.00438084 0.00378533 31 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 4.11 vpr 51.70 MiB -1 -1 0.10 16380 1 0.00 -1 -1 29352 -1 -1 5 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52936 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 13.1 MiB 0.15 290 51.7 MiB 0.03 0.00 1.27683 -34.4484 -1.27683 1.27683 1.00 7.8806e-05 6.1608e-05 0.0047368 0.00380526 30 770 18 6.87369e+06 69869.2 556674. 1926.21 0.81 0.0177562 0.0147782 25186 138497 -1 596 16 408 408 28449 7556 0 0 28449 7556 408 408 0 0 1556 1335 0 0 1966 1694 0 0 408 408 0 0 11558 2003 0 0 12553 1708 0 0 408 0 0 0 0 0 408 0 0 1.20067 1.20067 -43.0245 -1.20067 0 0 706193. 2443.58 0.28 0.02 0.12 -1 -1 0.28 0.0042984 0.0037865 33 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 3.88 vpr 51.81 MiB -1 -1 0.12 16292 1 0.01 -1 -1 29344 -1 -1 5 33 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53056 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 13.3 MiB 0.11 454 51.8 MiB 0.03 0.00 1.28783 -41.2847 -1.28783 1.28783 0.98 8.5689e-05 6.7879e-05 0.00504344 0.00405945 32 933 15 6.87369e+06 69869.2 586450. 2029.24 0.69 0.0167146 0.0139251 25474 144626 -1 862 15 449 449 36961 8820 0 0 36961 8820 449 449 0 0 1862 1567 0 0 2796 2216 0 0 449 449 0 0 16526 2070 0 0 14879 2069 0 0 449 0 0 0 0 0 449 0 0 1.22897 1.22897 -50.6172 -1.22897 0 0 744469. 2576.02 0.23 0.01 0.13 -1 -1 0.23 0.00292028 0.00259965 34 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.62 vpr 51.87 MiB -1 -1 0.11 16508 1 0.02 -1 -1 29304 -1 -1 5 37 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53116 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 13.2 MiB 0.12 341 51.9 MiB 0.02 0.00 1.30983 -42.8448 -1.30983 1.30983 0.75 5.1932e-05 3.9667e-05 0.00312653 0.00246848 32 1115 18 6.87369e+06 69869.2 586450. 2029.24 0.62 0.016888 0.0140878 25474 144626 -1 855 18 557 557 63849 14931 0 0 63849 14931 557 557 0 0 2238 1957 0 0 3587 2784 0 0 557 557 0 0 27285 4847 0 0 29625 4229 0 0 557 0 0 0 0 0 557 0 0 1.35897 1.35897 -57.5827 -1.35897 0 0 744469. 2576.02 0.25 0.02 0.13 -1 -1 0.25 0.00343357 0.0029974 38 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 4.54 vpr 51.99 MiB -1 -1 0.10 16232 1 0.01 -1 -1 29344 -1 -1 6 41 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53240 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 13.3 MiB 0.11 383 52.0 MiB 0.04 0.00 1.33183 -46.7415 -1.33183 1.33183 0.99 0.000105733 8.4157e-05 0.00685356 0.00554036 34 1176 24 6.87369e+06 83843 618332. 2139.56 1.33 0.0359321 0.0300562 25762 151098 -1 917 19 626 626 53143 12975 0 0 53143 12975 626 626 0 0 2350 2020 0 0 3466 2729 0 0 626 626 0 0 21828 3700 0 0 24247 3274 0 0 626 0 0 0 0 0 626 0 0 1.27767 1.27767 -60.6094 -1.27767 0 0 787024. 2723.27 0.21 0.03 0.10 -1 -1 0.21 0.00526526 0.00458073 42 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 6.89 vpr 51.87 MiB -1 -1 0.12 16564 1 0.01 -1 -1 29304 -1 -1 7 45 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53116 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 13.3 MiB 0.15 434 51.9 MiB 0.04 0.00 1.35383 -53.151 -1.35383 1.35383 1.02 0.00012101 9.7427e-05 0.00674719 0.00550075 36 1201 21 6.87369e+06 97816.9 648988. 2245.63 3.53 0.0497872 0.0423832 26050 158493 -1 1021 15 625 625 63707 15362 0 0 63707 15362 625 625 0 0 2404 2069 0 0 3441 2691 0 0 625 625 0 0 28698 4549 0 0 27914 4803 0 0 625 0 0 0 0 0 625 0 0 1.29967 1.29967 -67.2865 -1.29967 0 0 828058. 2865.25 0.31 0.03 0.08 -1 -1 0.31 0.00609139 0.0054124 47 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 6.09 vpr 52.23 MiB -1 -1 0.11 16384 1 0.01 -1 -1 29300 -1 -1 7 49 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53480 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 13.6 MiB 0.12 553 52.2 MiB 0.03 0.00 1.61086 -61.7847 -1.61086 1.61086 1.00 0.000122945 9.8776e-05 0.00487842 0.00401332 34 1385 17 6.87369e+06 97816.9 618332. 2139.56 2.75 0.0437078 0.0370952 25762 151098 -1 1214 15 665 665 61123 15365 0 0 61123 15365 665 665 0 0 2642 2293 0 0 3772 3050 0 0 665 665 0 0 25601 4145 0 0 27778 4547 0 0 665 0 0 0 0 0 665 0 0 1.34167 1.34167 -76.8854 -1.34167 0 0 787024. 2723.27 0.30 0.03 0.14 -1 -1 0.30 0.00629528 0.00558585 50 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 5.18 vpr 52.30 MiB -1 -1 0.11 16552 1 0.01 -1 -1 29336 -1 -1 8 57 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53552 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 13.9 MiB 0.07 664 52.3 MiB 0.03 0.00 1.65486 -74.1721 -1.65486 1.65486 0.60 8.5235e-05 6.7795e-05 0.0051771 0.00419801 36 1656 44 6.87369e+06 111791 648988. 2245.63 2.68 0.0495761 0.0420165 26050 158493 -1 1424 15 733 733 64142 16016 0 0 64142 16016 733 733 0 0 2758 2326 0 0 3917 3173 0 0 733 733 0 0 26231 4607 0 0 29770 4444 0 0 733 0 0 0 0 0 733 0 0 1.37467 1.37467 -88.0214 -1.37467 0 0 828058. 2865.25 0.33 0.03 0.12 -1 -1 0.33 0.0072073 0.00638504 58 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.30 vpr 52.34 MiB -1 -1 0.11 16576 1 0.02 -1 -1 29384 -1 -1 9 65 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53600 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 13.7 MiB 0.07 1046 52.3 MiB 0.08 0.00 1.93389 -97.1484 -1.93389 1.93389 0.93 0.000162505 0.000132999 0.0134976 0.0112039 34 2110 18 6.87369e+06 125765 618332. 2139.56 1.35 0.0593859 0.0507723 25762 151098 -1 1904 15 845 845 93501 19997 0 0 93501 19997 845 845 0 0 3300 2851 0 0 4749 3840 0 0 845 845 0 0 42280 6012 0 0 41482 5604 0 0 845 0 0 0 0 0 845 0 0 1.35267 1.35267 -105.922 -1.35267 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.00865004 0.00776526 66 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 5.36 vpr 53.24 MiB -1 -1 0.12 17028 1 0.01 -1 -1 29536 -1 -1 13 97 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 14.4 MiB 0.13 1473 53.2 MiB 0.15 0.00 2.57995 -155.831 -2.57995 2.57995 1.02 0.00029678 0.000252084 0.0236395 0.0199605 34 3182 22 6.87369e+06 181660 618332. 2139.56 1.73 0.119032 0.105458 25762 151098 -1 2748 18 1208 1208 123806 27771 0 0 123806 27771 1208 1208 0 0 4698 4068 0 0 7124 5689 0 0 1208 1208 0 0 54713 7664 0 0 54855 7934 0 0 1208 0 0 0 0 0 1208 0 0 1.67197 1.67197 -166.113 -1.67197 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0144394 0.0130205 98 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 6.47 vpr 53.73 MiB -1 -1 0.11 17008 1 0.02 -1 -1 29684 -1 -1 17 129 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55024 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 14.8 MiB 0.15 1991 53.7 MiB 0.23 0.00 3.22602 -229.236 -3.22602 3.22602 1.00 0.000472489 0.000413967 0.0383392 0.0335086 34 4894 36 6.87369e+06 237555 618332. 2139.56 2.72 0.191073 0.171916 25762 151098 -1 3928 16 1637 1637 181261 41056 0 0 181261 41056 1637 1637 0 0 6379 5488 0 0 9248 7446 0 0 1637 1637 0 0 79817 12331 0 0 82543 12517 0 0 1637 0 0 0 0 0 1637 0 0 1.96927 1.96927 -235.874 -1.96927 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0227234 0.0209104 130 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 2.88 vpr 51.25 MiB -1 -1 0.06 16452 1 0.01 -1 -1 29204 -1 -1 1 7 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52476 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 12.8 MiB 0.03 48 51.2 MiB 0.00 0.00 1.10719 -6.54072 -1.10719 1.10719 0.62 2.2675e-05 1.4319e-05 0.000205858 0.00017586 12 118 9 6.89349e+06 14093.8 243793. 843.575 0.81 0.00210557 0.00168303 21730 64085 -1 85 7 26 26 786 305 0 0 786 305 26 26 0 0 89 70 0 0 117 97 0 0 26 26 0 0 257 52 0 0 271 34 0 0 26 0 0 0 0 0 26 0 0 1.10719 1.10719 -7.79372 -1.10719 0 0 332735. 1151.33 0.14 0.00 0.05 -1 -1 0.14 0.000746945 0.000643127 8 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 4.05 vpr 51.18 MiB -1 -1 0.08 16220 1 0.00 -1 -1 29188 -1 -1 2 9 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52412 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 12.6 MiB 0.09 66 51.2 MiB 0.01 0.00 0.663773 -8.12952 -0.663773 0.663773 0.98 2.4143e-05 1.7174e-05 0.000724847 0.000559389 20 155 9 6.89349e+06 28187.7 414966. 1435.87 1.21 0.00897534 0.00694955 23170 95770 -1 157 9 67 67 4399 1223 0 0 4399 1223 67 67 0 0 272 228 0 0 345 301 0 0 67 67 0 0 1901 295 0 0 1747 265 0 0 67 0 0 0 0 0 67 0 0 0.79102 0.79102 -11.1426 -0.79102 0 0 503264. 1741.40 0.16 0.00 0.05 -1 -1 0.16 0.000808562 0.00069222 10 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 4.02 vpr 51.25 MiB -1 -1 0.08 16408 1 0.00 -1 -1 29224 -1 -1 3 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52484 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 12.6 MiB 0.09 176 51.3 MiB 0.00 0.00 0.856592 -13.4536 -0.856592 0.856592 0.96 2.9374e-05 2.1685e-05 0.000456348 0.000380787 18 352 11 6.89349e+06 42281.5 376052. 1301.22 1.20 0.00861478 0.00687558 22882 88689 -1 301 8 94 94 7191 1869 0 0 7191 1869 94 94 0 0 408 338 0 0 512 440 0 0 94 94 0 0 3206 407 0 0 2877 496 0 0 94 0 0 0 0 0 94 0 0 1.05067 1.05067 -17.2835 -1.05067 0 0 470940. 1629.55 0.14 0.01 0.05 -1 -1 0.14 0.00126326 0.00110227 13 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 4.99 vpr 51.39 MiB -1 -1 0.12 16436 1 0.01 -1 -1 29288 -1 -1 3 13 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52628 13 7 48 49 1 33 23 17 17 289 -1 unnamed_device 12.9 MiB 0.07 91 51.4 MiB 0.01 0.00 0.707773 -12.4596 -0.707773 0.707773 1.00 3.3937e-05 2.5107e-05 0.00147708 0.0012083 28 257 21 6.89349e+06 42281.5 531479. 1839.03 1.95 0.0143507 0.0115428 24610 126494 -1 206 12 153 153 8841 2760 0 0 8841 2760 153 153 0 0 579 479 0 0 839 659 0 0 153 153 0 0 2996 753 0 0 4121 563 0 0 153 0 0 0 0 0 153 0 0 0.947373 0.947373 -15.7847 -0.947373 0 0 648988. 2245.63 0.21 0.01 0.10 -1 -1 0.21 0.00103227 0.000891736 15 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 3.84 vpr 51.31 MiB -1 -1 0.10 16304 1 0.01 -1 -1 29312 -1 -1 3 15 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52540 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 12.8 MiB 0.07 110 51.3 MiB 0.01 0.00 1.13846 -15.98 -1.13846 1.13846 1.01 3.8537e-05 2.8645e-05 0.00200389 0.00156329 26 271 14 6.89349e+06 42281.5 503264. 1741.40 0.70 0.00821382 0.0066876 24322 120374 -1 251 12 174 174 7471 2631 0 0 7471 2631 174 174 0 0 682 568 0 0 995 818 0 0 174 174 0 0 2622 454 0 0 2824 443 0 0 174 0 0 0 0 0 174 0 0 0.98032 0.98032 -19.0913 -0.98032 0 0 618332. 2139.56 0.26 0.01 0.11 -1 -1 0.26 0.00184909 0.00161324 17 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 3.84 vpr 51.45 MiB -1 -1 0.10 16476 1 0.01 -1 -1 29324 -1 -1 3 17 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52684 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 12.9 MiB 0.07 120 51.4 MiB 0.01 0.00 0.964803 -18.0282 -0.964803 0.964803 1.01 4.0653e-05 3.0364e-05 0.00219255 0.00170184 26 358 20 6.89349e+06 42281.5 503264. 1741.40 0.71 0.00970644 0.00790785 24322 120374 -1 262 15 196 196 12001 3732 0 0 12001 3732 196 196 0 0 793 701 0 0 1430 1165 0 0 196 196 0 0 4552 781 0 0 4834 693 0 0 196 0 0 0 0 0 196 0 0 1.10367 1.10367 -22.086 -1.10367 0 0 618332. 2139.56 0.25 0.01 0.11 -1 -1 0.25 0.00232209 0.00200866 18 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 2.61 vpr 51.30 MiB -1 -1 0.10 16368 1 0.01 -1 -1 29356 -1 -1 3 19 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52532 19 10 69 70 1 46 32 17 17 289 -1 unnamed_device 12.7 MiB 0.06 134 51.3 MiB 0.01 0.00 0.975803 -19.6009 -0.975803 0.975803 0.62 3.0197e-05 2.2707e-05 0.00186409 0.00144952 26 407 24 6.89349e+06 42281.5 503264. 1741.40 0.44 0.00743946 0.00598978 24322 120374 -1 361 14 258 258 19243 5390 0 0 19243 5390 258 258 0 0 1046 872 0 0 1598 1309 0 0 258 258 0 0 7459 1460 0 0 8624 1233 0 0 258 0 0 0 0 0 258 0 0 1.12567 1.12567 -26.7606 -1.12567 0 0 618332. 2139.56 0.17 0.01 0.06 -1 -1 0.17 0.00161716 0.00140101 20 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 5.37 vpr 51.47 MiB -1 -1 0.08 16272 1 0.02 -1 -1 29380 -1 -1 3 21 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52704 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 12.8 MiB 0.07 144 51.5 MiB 0.02 0.00 0.986803 -22.178 -0.986803 0.986803 1.01 5.2501e-05 4.0404e-05 0.00270903 0.00215104 32 418 17 6.89349e+06 42281.5 586450. 2029.24 2.16 0.0186528 0.0152089 25474 144626 -1 349 13 230 230 18968 5032 0 0 18968 5032 230 230 0 0 922 772 0 0 1346 1091 0 0 230 230 0 0 8080 1334 0 0 8160 1375 0 0 230 0 0 0 0 0 230 0 0 1.25097 1.25097 -29.8957 -1.25097 0 0 744469. 2576.02 0.30 0.01 0.13 -1 -1 0.30 0.00259953 0.00227091 22 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 3.97 vpr 51.45 MiB -1 -1 0.09 16272 1 0.01 -1 -1 29300 -1 -1 4 23 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52680 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 12.8 MiB 0.06 164 51.4 MiB 0.02 0.00 0.997803 -24.1958 -0.997803 0.997803 0.98 5.7431e-05 4.3772e-05 0.00317956 0.00249503 32 487 14 6.89349e+06 56375.4 586450. 2029.24 0.80 0.0120132 0.00986824 25474 144626 -1 416 15 274 274 21091 5520 0 0 21091 5520 274 274 0 0 1059 887 0 0 1746 1385 0 0 274 274 0 0 7949 1528 0 0 9789 1172 0 0 274 0 0 0 0 0 274 0 0 1.27297 1.27297 -32.1533 -1.27297 0 0 744469. 2576.02 0.29 0.01 0.13 -1 -1 0.29 0.00295509 0.00256732 24 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 4.02 vpr 51.61 MiB -1 -1 0.10 16416 1 0.01 -1 -1 29348 -1 -1 4 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52848 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 12.8 MiB 0.06 190 51.6 MiB 0.01 0.00 1.0088 -26.851 -1.0088 1.0088 0.60 3.4868e-05 2.5816e-05 0.0021322 0.00162464 30 563 22 6.89349e+06 56375.4 556674. 1926.21 1.80 0.0169151 0.0137322 25186 138497 -1 439 15 294 294 18101 5027 0 0 18101 5027 294 294 0 0 1088 905 0 0 1455 1212 0 0 294 294 0 0 7836 1065 0 0 7134 1257 0 0 294 0 0 0 0 0 294 0 0 1.16967 1.16967 -34.9552 -1.16967 0 0 706193. 2443.58 0.19 0.01 0.07 -1 -1 0.19 0.0020782 0.00181354 26 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 5.20 vpr 51.61 MiB -1 -1 0.10 16440 1 0.01 -1 -1 29172 -1 -1 4 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52848 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 13.1 MiB 0.08 271 51.6 MiB 0.02 0.00 1.0198 -31.143 -1.0198 1.0198 1.00 6.742e-05 5.2626e-05 0.00277153 0.00224251 26 683 13 6.89349e+06 56375.4 503264. 1741.40 2.04 0.0229235 0.019203 24322 120374 -1 652 13 347 347 32206 8270 0 0 32206 8270 347 347 0 0 1533 1324 0 0 2418 2042 0 0 347 347 0 0 12948 2200 0 0 14613 2010 0 0 347 0 0 0 0 0 347 0 0 1.05732 1.05732 -40.3169 -1.05732 0 0 618332. 2139.56 0.26 0.02 0.10 -1 -1 0.26 0.00327299 0.00289003 28 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 4.38 vpr 51.54 MiB -1 -1 0.10 16456 1 0.01 -1 -1 29252 -1 -1 5 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52776 29 15 104 105 1 74 49 17 17 289 -1 unnamed_device 13.0 MiB 0.07 228 51.5 MiB 0.01 0.00 1.0308 -31.5428 -1.0308 1.0308 0.61 4.2478e-05 3.1947e-05 0.00288642 0.0022669 36 661 12 6.89349e+06 70469.2 648988. 2245.63 1.93 0.019055 0.0155251 26050 158493 -1 565 22 495 495 42358 11128 0 0 42358 11128 495 495 0 0 1881 1581 0 0 2972 2378 0 0 495 495 0 0 17045 3253 0 0 19470 2926 0 0 495 0 0 0 0 0 495 0 0 1.08562 1.08562 -38.2351 -1.08562 0 0 828058. 2865.25 0.33 0.02 0.14 -1 -1 0.33 0.00479964 0.00411935 31 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 3.95 vpr 51.65 MiB -1 -1 0.10 16508 1 0.00 -1 -1 29192 -1 -1 5 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52892 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 13.1 MiB 0.14 290 51.7 MiB 0.03 0.00 1.27683 -33.446 -1.27683 1.27683 0.98 7.7556e-05 6.038e-05 0.00473053 0.00379487 30 697 16 6.89349e+06 70469.2 556674. 1926.21 0.69 0.0145141 0.0120391 25186 138497 -1 542 11 345 345 18507 5274 0 0 18507 5274 345 345 0 0 1250 1016 0 0 1600 1364 0 0 345 345 0 0 7876 1048 0 0 7091 1156 0 0 345 0 0 0 0 0 345 0 0 0.97402 0.97402 -39.2208 -0.97402 0 0 706193. 2443.58 0.29 0.01 0.12 -1 -1 0.29 0.00328005 0.00291293 33 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 4.05 vpr 51.69 MiB -1 -1 0.12 16512 1 0.01 -1 -1 29192 -1 -1 5 33 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52928 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 13.1 MiB 0.12 305 51.7 MiB 0.03 0.00 1.28783 -37.1498 -1.28783 1.28783 0.98 8.2832e-05 6.4488e-05 0.00493121 0.00396236 30 827 25 6.89349e+06 70469.2 556674. 1926.21 0.82 0.0196534 0.01631 25186 138497 -1 620 13 382 382 27279 7187 0 0 27279 7187 382 382 0 0 1464 1232 0 0 1875 1606 0 0 382 382 0 0 12243 1723 0 0 10933 1862 0 0 382 0 0 0 0 0 382 0 0 1.06437 1.06437 -44.6368 -1.06437 0 0 706193. 2443.58 0.29 0.02 0.12 -1 -1 0.29 0.00387641 0.00342798 34 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 3.57 vpr 51.71 MiB -1 -1 0.11 16332 1 0.02 -1 -1 29368 -1 -1 5 37 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 52952 37 19 132 133 1 90 61 17 17 289 -1 unnamed_device 13.1 MiB 0.06 354 51.7 MiB 0.02 0.00 1.30983 -42.7887 -1.30983 1.30983 0.62 5.552e-05 4.3004e-05 0.00333257 0.00265693 34 965 28 6.89349e+06 70469.2 618332. 2139.56 1.22 0.0295562 0.0248116 25762 151098 -1 701 17 472 472 34294 9036 0 0 34294 9036 472 472 0 0 1895 1610 0 0 2912 2375 0 0 472 472 0 0 13796 2113 0 0 14747 1994 0 0 472 0 0 0 0 0 472 0 0 1.23367 1.23367 -51.6382 -1.23367 0 0 787024. 2723.27 0.21 0.01 0.13 -1 -1 0.21 0.00317565 0.00278662 38 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 5.85 vpr 51.89 MiB -1 -1 0.12 16584 1 0.01 -1 -1 29264 -1 -1 6 41 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53140 41 21 146 147 1 102 68 17 17 289 -1 unnamed_device 13.2 MiB 0.10 385 51.9 MiB 0.04 0.00 1.33183 -48.0385 -1.33183 1.33183 0.98 9.71e-05 7.5883e-05 0.00664379 0.00534374 34 1204 26 6.89349e+06 84563 618332. 2139.56 2.57 0.0403828 0.0335561 25762 151098 -1 972 14 550 550 55328 13536 0 0 55328 13536 550 550 0 0 2135 1804 0 0 3288 2651 0 0 550 550 0 0 22997 4260 0 0 25808 3721 0 0 550 0 0 0 0 0 550 0 0 1.28397 1.28397 -59.3763 -1.28397 0 0 787024. 2723.27 0.30 0.02 0.13 -1 -1 0.30 0.00480629 0.00423196 42 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 4.88 vpr 51.83 MiB -1 -1 0.11 16628 1 0.01 -1 -1 29292 -1 -1 7 45 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53072 45 23 160 161 1 115 75 17 17 289 -1 unnamed_device 13.3 MiB 0.11 508 51.8 MiB 0.04 0.00 1.35383 -54.1534 -1.35383 1.35383 0.99 0.000118677 9.498e-05 0.0068228 0.00557194 34 1358 35 6.89349e+06 98656.9 618332. 2139.56 1.53 0.0432394 0.0367354 25762 151098 -1 971 18 598 598 48469 12102 0 0 48469 12102 598 598 0 0 2352 1999 0 0 3479 2854 0 0 598 598 0 0 20659 3153 0 0 20783 2900 0 0 598 0 0 0 0 0 598 0 0 1.17632 1.17632 -63.071 -1.17632 0 0 787024. 2723.27 0.30 0.03 0.14 -1 -1 0.30 0.00651463 0.00572708 47 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 7.05 vpr 51.85 MiB -1 -1 0.11 16472 1 0.02 -1 -1 29280 -1 -1 7 49 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53092 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 13.3 MiB 0.12 568 51.8 MiB 0.04 0.00 1.61086 -62.0353 -1.61086 1.61086 1.00 0.000127018 0.000102593 0.00694067 0.00568239 36 1398 28 6.89349e+06 98656.9 648988. 2245.63 3.71 0.060387 0.0514879 26050 158493 -1 1138 13 555 555 43570 11213 0 0 43570 11213 555 555 0 0 2086 1708 0 0 2896 2391 0 0 555 555 0 0 18741 2763 0 0 18737 3241 0 0 555 0 0 0 0 0 555 0 0 1.34167 1.34167 -75.7577 -1.34167 0 0 828058. 2865.25 0.28 0.02 0.14 -1 -1 0.28 0.00365783 0.00325636 50 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 6.57 vpr 52.16 MiB -1 -1 0.09 16580 1 0.01 -1 -1 29276 -1 -1 8 57 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53416 57 29 202 203 1 143 94 17 17 289 -1 unnamed_device 13.6 MiB 0.12 726 52.2 MiB 0.04 0.00 1.65486 -75.3659 -1.65486 1.65486 1.01 0.000142048 0.000114705 0.0051345 0.00424051 36 1545 20 6.89349e+06 112751 648988. 2245.63 3.21 0.0547218 0.0472415 26050 158493 -1 1371 17 646 646 67977 14978 0 0 67977 14978 646 646 0 0 2381 1962 0 0 3833 3041 0 0 646 646 0 0 29060 4699 0 0 31411 3984 0 0 646 0 0 0 0 0 646 0 0 1.27767 1.27767 -84.0909 -1.27767 0 0 828058. 2865.25 0.31 0.03 0.14 -1 -1 0.31 0.00763345 0.00672937 58 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 3.15 vpr 52.21 MiB -1 -1 0.13 16764 1 0.01 -1 -1 29400 -1 -1 9 65 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53468 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 13.6 MiB 0.08 1037 52.2 MiB 0.05 0.00 1.93389 -96.5219 -1.93389 1.93389 0.60 9.7529e-05 7.8952e-05 0.00804384 0.00662507 34 2062 15 6.89349e+06 126845 618332. 2139.56 0.83 0.03408 0.0289981 25762 151098 -1 1894 16 749 749 76949 16585 0 0 76949 16585 749 749 0 0 2948 2404 0 0 4237 3435 0 0 749 749 0 0 35211 4644 0 0 33055 4604 0 0 749 0 0 0 0 0 749 0 0 1.43867 1.43867 -108.822 -1.43867 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00545182 0.00487487 66 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 4.77 vpr 53.02 MiB -1 -1 0.12 16932 1 0.01 -1 -1 29572 -1 -1 13 97 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54288 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 14.2 MiB 0.14 1521 53.0 MiB 0.16 0.00 2.57995 -156.332 -2.57995 2.57995 0.97 0.00027293 0.000229277 0.0237117 0.0200695 34 2988 21 6.89349e+06 183220 618332. 2139.56 1.30 0.0883928 0.0769443 25762 151098 -1 2708 18 1174 1174 103455 23495 0 0 103455 23495 1174 1174 0 0 4506 3714 0 0 6900 5440 0 0 1174 1174 0 0 45797 5866 0 0 43904 6127 0 0 1174 0 0 0 0 0 1174 0 0 1.54037 1.54037 -159.774 -1.54037 0 0 787024. 2723.27 0.29 0.05 0.10 -1 -1 0.29 0.014465 0.0129392 98 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 6.08 vpr 53.78 MiB -1 -1 0.15 17048 1 0.01 -1 -1 29780 -1 -1 17 129 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55068 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 14.9 MiB 0.14 2007 53.8 MiB 0.23 0.00 3.22602 -228.735 -3.22602 3.22602 1.02 0.000443552 0.000384771 0.0362713 0.0314744 34 4878 29 6.89349e+06 239595 618332. 2139.56 2.33 0.184556 0.1657 25762 151098 -1 3875 15 1528 1528 167230 37698 0 0 167230 37698 1528 1528 0 0 6041 4943 0 0 8438 6851 0 0 1528 1528 0 0 74530 10898 0 0 75165 11950 0 0 1528 0 0 0 0 0 1528 0 0 1.88167 1.88167 -233.262 -1.88167 0 0 787024. 2723.27 0.29 0.08 0.13 -1 -1 0.29 0.020761 0.0190303 130 -1 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt index 7aa3b0b2b4c..022ca67995a 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 7.21 vpr 61.14 MiB -1 -1 0.24 21348 14 0.34 -1 -1 36448 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62612 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 22.5 MiB 0.55 1318 61.1 MiB 0.06 0.00 6.40916 -133.035 -6.40916 6.40916 1.02 0.000377595 0.00029258 0.0160186 0.013344 28 3755 29 6.55708e+06 325485 500653. 1732.36 2.72 0.108873 0.0952871 3153 21 1794 5527 373077 85535 7.25056 7.25056 -168.232 -7.25056 0 0 612192. 2118.31 0.30 0.13 0.0318885 0.0288805 183 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 11.81 vpr 61.25 MiB -1 -1 0.26 21352 14 0.41 -1 -1 36028 -1 -1 31 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62720 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 22.6 MiB 0.68 1261 61.2 MiB 0.07 0.00 6.52936 -127.613 -6.52936 6.52936 1.01 0.000344083 0.000286302 0.0184809 0.0155426 28 3758 38 6.55708e+06 373705 500653. 1732.36 7.23 0.234397 0.207315 3023 16 1429 4160 244722 56950 7.33156 7.33156 -150.814 -7.33156 0 0 612192. 2118.31 0.29 0.09 0.0265856 0.0243695 184 181 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 8.31 vpr 61.32 MiB -1 -1 0.24 21348 11 0.35 -1 -1 35964 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62796 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 22.9 MiB 0.48 1361 61.3 MiB 0.05 0.00 5.69958 -120.342 -5.69958 5.69958 1.06 0.000373836 0.000299141 0.0137686 0.0116296 28 3965 45 6.55708e+06 313430 500653. 1732.36 3.76 0.122248 0.107397 3333 25 1843 6642 487956 123605 6.14118 6.14118 -142.781 -6.14118 0 0 612192. 2118.31 0.32 0.16 0.0336701 0.0303561 186 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 9.00 vpr 61.05 MiB -1 -1 0.26 21320 12 0.48 -1 -1 35956 -1 -1 30 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62512 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 22.5 MiB 0.80 1347 61.0 MiB 0.06 0.00 6.1983 -121.226 -6.1983 6.1983 1.08 0.00036363 0.000299823 0.0170763 0.0143412 36 3194 22 6.55708e+06 361650 612192. 2118.31 3.89 0.155545 0.136502 2849 16 1313 4187 233319 53172 6.66944 6.66944 -135.631 -6.66944 0 0 782063. 2706.10 0.39 0.09 0.0276617 0.0254219 190 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.67 vpr 61.36 MiB -1 -1 0.26 21188 13 0.44 -1 -1 35892 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62832 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 22.8 MiB 0.67 1595 61.4 MiB 0.10 0.00 6.2375 -138.761 -6.2375 6.2375 1.07 0.000429568 0.000350477 0.0281317 0.0233351 30 4012 33 6.55708e+06 373705 526063. 1820.29 1.73 0.136316 0.119478 3275 17 1468 4277 208081 49395 6.7183 6.7183 -162.442 -6.7183 0 0 666494. 2306.21 0.34 0.09 0.0310837 0.0285086 210 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 7.00 vpr 61.48 MiB -1 -1 0.24 21288 13 0.33 -1 -1 36064 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62956 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 22.9 MiB 0.45 1345 61.5 MiB 0.08 0.00 6.3185 -129.622 -6.3185 6.3185 0.97 0.000358982 0.000298138 0.0212366 0.0177672 28 3963 48 6.55708e+06 385760 500653. 1732.36 2.67 0.152766 0.134886 3245 30 1881 6333 529675 182752 6.6791 6.6791 -149.048 -6.6791 0 0 612192. 2118.31 0.29 0.19 0.0443502 0.0400571 198 197 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 6.00 vpr 60.80 MiB -1 -1 0.23 21156 12 0.28 -1 -1 35948 -1 -1 27 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62256 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 22.3 MiB 0.41 1033 60.8 MiB 0.07 0.00 5.95024 -106.834 -5.95024 5.95024 1.08 0.000298738 0.000245358 0.0200712 0.0166522 28 2645 20 6.55708e+06 325485 500653. 1732.36 1.62 0.0879767 0.077061 2376 17 1134 2900 165396 39859 6.19264 6.19264 -123.704 -6.19264 0 0 612192. 2118.31 0.31 0.07 0.0217418 0.0198651 152 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 11.02 vpr 60.90 MiB -1 -1 0.23 20860 12 0.27 -1 -1 35956 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62360 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 22.4 MiB 0.33 1198 60.9 MiB 0.06 0.00 5.31966 -112.732 -5.31966 5.31966 1.08 0.00030916 0.000244076 0.0145697 0.0121775 36 3091 24 6.55708e+06 265210 612192. 2118.31 6.67 0.187075 0.164783 2629 15 1026 3013 170109 39387 5.56006 5.56006 -129.048 -5.56006 0 0 782063. 2706.10 0.38 0.07 0.0193704 0.0177131 140 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.31 vpr 60.61 MiB -1 -1 0.24 21344 12 0.24 -1 -1 35920 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62064 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 22.0 MiB 0.35 1297 60.6 MiB 0.09 0.00 5.64872 -120.374 -5.64872 5.64872 1.08 0.000314014 0.000249051 0.0240848 0.0197774 28 3651 49 6.55708e+06 313430 500653. 1732.36 3.03 0.118305 0.103354 2932 17 1146 2902 201289 45543 5.89112 5.89112 -138.74 -5.89112 0 0 612192. 2118.31 0.30 0.07 0.0200935 0.01817 150 142 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.80 vpr 60.80 MiB -1 -1 0.21 21020 13 0.26 -1 -1 35908 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62264 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 22.2 MiB 0.41 1202 60.8 MiB 0.08 0.00 6.22784 -134.744 -6.22784 6.22784 0.99 0.000294936 0.000242749 0.0212007 0.0177293 28 3556 48 6.55708e+06 301375 500653. 1732.36 2.73 0.126164 0.111326 2923 17 1169 3330 213941 48767 6.34804 6.34804 -154.864 -6.34804 0 0 612192. 2118.31 0.29 0.08 0.0229966 0.0210227 157 155 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 7.12 vpr 60.59 MiB -1 -1 0.23 20928 12 0.27 -1 -1 35932 -1 -1 24 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62040 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 22.1 MiB 0.38 1080 60.6 MiB 0.06 0.00 5.67264 -113.248 -5.67264 5.67264 1.07 0.000278925 0.000229296 0.0146175 0.0122511 26 3035 46 6.55708e+06 289320 477104. 1650.88 2.89 0.100676 0.0886646 2362 15 1014 2677 175331 42749 6.15344 6.15344 -135.718 -6.15344 0 0 585099. 2024.56 0.30 0.07 0.0192726 0.0176339 132 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 6.88 vpr 60.76 MiB -1 -1 0.20 20920 12 0.20 -1 -1 35848 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62220 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 22.2 MiB 0.34 1214 60.8 MiB 0.04 0.00 5.54078 -129.356 -5.54078 5.54078 1.01 0.000272723 0.000221136 0.0109706 0.00917347 36 2852 28 6.55708e+06 265210 612192. 2118.31 2.83 0.126786 0.111146 2385 14 924 2575 141334 32761 6.02158 6.02158 -146.299 -6.02158 0 0 782063. 2706.10 0.37 0.06 0.0182712 0.01672 146 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.91 vpr 61.11 MiB -1 -1 0.27 21372 13 0.37 -1 -1 36020 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62580 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 22.6 MiB 0.36 1513 61.1 MiB 0.06 0.00 6.60776 -144.245 -6.60776 6.60776 1.06 0.000364134 0.000300656 0.0164127 0.0138577 30 3429 37 6.55708e+06 361650 526063. 1820.29 1.42 0.11731 0.103529 2873 15 1235 3600 178966 42108 6.73056 6.73056 -157.361 -6.73056 0 0 666494. 2306.21 0.33 0.08 0.0247418 0.0227053 191 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 14.59 vpr 61.35 MiB -1 -1 0.27 21348 14 0.47 -1 -1 36040 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62824 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 22.8 MiB 0.61 1564 61.4 MiB 0.08 0.00 7.40796 -157.205 -7.40796 7.40796 1.09 0.000394558 0.000320935 0.0220221 0.0184615 30 3849 26 6.55708e+06 361650 526063. 1820.29 9.72 0.220405 0.193105 3167 18 1491 4433 202818 48943 7.56736 7.56736 -174.111 -7.56736 0 0 666494. 2306.21 0.34 0.09 0.031273 0.0285179 210 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.20 vpr 60.88 MiB -1 -1 0.20 21044 11 0.22 -1 -1 36096 -1 -1 27 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62336 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 22.4 MiB 0.32 1069 60.9 MiB 0.05 0.00 5.49898 -108.461 -5.49898 5.49898 0.98 0.000273749 0.000214444 0.0127406 0.0106722 28 2818 21 6.55708e+06 325485 500653. 1732.36 1.37 0.0808189 0.071254 2417 15 1060 2850 163304 39024 5.61918 5.61918 -121.067 -5.61918 0 0 612192. 2118.31 0.28 0.06 0.0183194 0.0167624 147 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 9.43 vpr 61.40 MiB -1 -1 0.26 21384 12 0.43 -1 -1 36504 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62872 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 22.8 MiB 0.53 1503 61.4 MiB 0.12 0.00 6.03124 -124.788 -6.03124 6.03124 1.05 0.000392619 0.000313036 0.0327412 0.0267957 38 3827 38 6.55708e+06 397815 638502. 2209.35 4.58 0.205025 0.178928 3008 15 1360 4505 222854 52520 6.43104 6.43104 -144.053 -6.43104 0 0 851065. 2944.86 0.40 0.09 0.0281795 0.0259613 209 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 9.23 vpr 60.91 MiB -1 -1 0.25 21348 14 0.35 -1 -1 35916 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62368 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 22.2 MiB 0.44 1485 60.9 MiB 0.09 0.00 6.34804 -133.671 -6.34804 6.34804 1.05 0.000392218 0.000319267 0.0223724 0.0185269 36 3849 50 6.55708e+06 349595 612192. 2118.31 4.51 0.184444 0.161495 3203 24 1248 3657 399288 169032 7.15024 7.15024 -155.44 -7.15024 0 0 782063. 2706.10 0.38 0.17 0.0360777 0.0328928 184 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.84 vpr 60.95 MiB -1 -1 0.24 20860 12 0.23 -1 -1 35744 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62412 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 22.5 MiB 0.48 1191 60.9 MiB 0.07 0.00 6.0827 -137.164 -6.0827 6.0827 1.07 0.000291177 0.00023794 0.0176328 0.014688 32 3117 28 6.55708e+06 277265 554710. 1919.41 1.39 0.0937923 0.0825843 2561 19 1023 3004 236083 65093 6.4433 6.4433 -156.997 -6.4433 0 0 701300. 2426.64 0.34 0.09 0.0244359 0.0222711 140 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 5.21 vpr 60.09 MiB -1 -1 0.19 20676 10 0.13 -1 -1 35552 -1 -1 16 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61536 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 21.6 MiB 0.21 809 60.1 MiB 0.06 0.00 4.49614 -102.708 -4.49614 4.49614 1.03 0.000211679 0.00017107 0.0156395 0.0128829 26 2308 22 6.55708e+06 192880 477104. 1650.88 1.54 0.0646038 0.0561557 1852 15 745 1741 105073 25424 4.73654 4.73654 -121.662 -4.73654 0 0 585099. 2024.56 0.29 0.04 0.0126052 0.0113659 91 84 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.62 vpr 60.82 MiB -1 -1 0.21 21104 13 0.23 -1 -1 35832 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62284 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 22.3 MiB 0.52 1167 60.8 MiB 0.07 0.00 5.81778 -124.455 -5.81778 5.81778 1.00 0.000282752 0.000233699 0.0173622 0.0145798 28 3054 29 6.55708e+06 289320 500653. 1732.36 1.46 0.0979306 0.0864519 2644 20 1132 2917 171790 40014 6.17132 6.17132 -144.772 -6.17132 0 0 612192. 2118.31 0.30 0.07 0.0231688 0.0210606 144 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 6.01 vpr 61.12 MiB -1 -1 0.26 21124 13 0.41 -1 -1 35980 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62592 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 22.5 MiB 0.61 1499 61.1 MiB 0.09 0.00 6.8385 -133.654 -6.8385 6.8385 1.07 0.00047122 0.000382475 0.0231209 0.019105 30 3527 21 6.55708e+06 373705 526063. 1820.29 1.20 0.107458 0.0932506 3000 18 1472 4542 204630 49921 7.17156 7.17156 -152.508 -7.17156 0 0 666494. 2306.21 0.34 0.09 0.0305411 0.0277342 211 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 8.56 vpr 60.85 MiB -1 -1 0.27 21632 13 0.42 -1 -1 36028 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62312 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 22.5 MiB 0.65 1556 60.9 MiB 0.06 0.00 6.34804 -137.714 -6.34804 6.34804 1.07 0.000367063 0.000296937 0.0150481 0.0127045 46 3435 19 6.55708e+06 325485 782063. 2706.10 3.52 0.153078 0.134359 2941 16 1210 4065 195852 44022 6.70864 6.70864 -152.526 -6.70864 0 0 958460. 3316.47 0.47 0.08 0.0280616 0.0257387 194 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 5.21 vpr 60.33 MiB -1 -1 0.17 20776 9 0.09 -1 -1 35456 -1 -1 24 26 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61776 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 21.9 MiB 0.23 757 60.3 MiB 0.05 0.00 4.3504 -83.5319 -4.3504 4.3504 0.97 0.000175652 0.000144159 0.012541 0.0104941 26 1976 35 6.55708e+06 289320 477104. 1650.88 1.70 0.0667868 0.058741 1703 18 678 1629 135737 38917 4.4726 4.4726 -97.4206 -4.4726 0 0 585099. 2024.56 0.27 0.05 0.0128398 0.0115997 87 69 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 21.65 vpr 61.12 MiB -1 -1 0.24 20908 13 0.41 -1 -1 35836 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62584 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 22.7 MiB 0.36 1301 61.1 MiB 0.10 0.00 6.4407 -128.115 -6.4407 6.4407 1.08 0.000373216 0.000298391 0.0275512 0.0224708 30 4300 43 6.55708e+06 301375 526063. 1820.29 17.09 0.238828 0.207797 2994 18 1389 4329 231590 53367 6.81858 6.81858 -150.773 -6.81858 0 0 666494. 2306.21 0.33 0.09 0.0266074 0.0240925 193 192 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.87 vpr 60.05 MiB -1 -1 0.17 20760 8 0.12 -1 -1 35284 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61492 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 21.5 MiB 0.18 613 60.1 MiB 0.05 0.00 3.37088 -74.1024 -3.37088 3.37088 1.08 0.000175799 0.000141258 0.0118633 0.00971421 28 1880 30 6.55708e+06 192880 500653. 1732.36 1.07 0.0545698 0.0471144 1483 35 674 1467 188781 88976 3.61128 3.61128 -91.3745 -3.61128 0 0 612192. 2118.31 0.32 0.09 0.0192142 0.0170124 77 59 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.33 vpr 61.02 MiB -1 -1 0.23 20988 15 0.34 -1 -1 36020 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62484 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 22.5 MiB 0.49 1317 61.0 MiB 0.06 0.00 6.8783 -136.604 -6.8783 6.8783 1.06 0.000338383 0.000271807 0.0151779 0.0126951 36 3143 20 6.55708e+06 337540 612192. 2118.31 2.74 0.141246 0.124329 2818 19 1236 3519 192788 46008 6.9201 6.9201 -150.227 -6.9201 0 0 782063. 2706.10 0.38 0.08 0.0265684 0.0242615 165 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 5.94 vpr 61.13 MiB -1 -1 0.24 21240 13 0.34 -1 -1 35976 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62600 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 22.6 MiB 0.39 1335 61.1 MiB 0.07 0.00 5.89678 -129.697 -5.89678 5.89678 1.06 0.000307533 0.000248498 0.0174973 0.0145271 28 3438 31 6.55708e+06 313430 500653. 1732.36 1.52 0.10337 0.0904819 3057 19 1375 4063 258230 60450 6.33838 6.33838 -151.45 -6.33838 0 0 612192. 2118.31 0.32 0.10 0.0276909 0.0251779 168 165 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 8.58 vpr 61.04 MiB -1 -1 0.24 21164 13 0.41 -1 -1 35864 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62500 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 22.3 MiB 0.33 1470 61.0 MiB 0.06 0.00 6.3205 -133.535 -6.3205 6.3205 1.06 0.000363472 0.000299154 0.0174591 0.0146775 28 4405 50 6.55708e+06 349595 500653. 1732.36 4.08 0.131414 0.115315 3438 23 1906 5765 518452 153643 6.89958 6.89958 -160.55 -6.89958 0 0 612192. 2118.31 0.31 0.17 0.0334327 0.0303634 187 184 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 14.95 vpr 60.74 MiB -1 -1 0.23 20928 12 0.23 -1 -1 35780 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62196 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 22.2 MiB 0.46 1210 60.7 MiB 0.06 0.00 5.48672 -125.134 -5.48672 5.48672 1.06 0.000303078 0.000249694 0.0138322 0.0114769 36 3246 21 6.55708e+06 277265 612192. 2118.31 10.55 0.19685 0.172269 2741 17 1057 3168 205028 46880 5.66098 5.66098 -136.493 -5.66098 0 0 782063. 2706.10 0.38 0.08 0.0223327 0.0203407 147 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.36 vpr 60.73 MiB -1 -1 0.23 20940 11 0.23 -1 -1 35752 -1 -1 23 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62188 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 22.1 MiB 0.26 1061 60.7 MiB 0.05 0.00 5.26058 -112.46 -5.26058 5.26058 1.00 0.000264201 0.000205028 0.0122933 0.0101006 28 2672 19 6.55708e+06 277265 500653. 1732.36 1.46 0.0735979 0.0644678 2332 20 960 2588 260338 88797 5.74138 5.74138 -128.615 -5.74138 0 0 612192. 2118.31 0.30 0.10 0.0219484 0.0198603 131 122 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.17 vpr 60.57 MiB -1 -1 0.20 21060 11 0.23 -1 -1 35872 -1 -1 28 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62020 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 22.0 MiB 0.55 970 60.6 MiB 0.05 0.00 5.29978 -103.319 -5.29978 5.29978 0.98 0.00027923 0.000228781 0.0131322 0.0109571 28 2633 26 6.55708e+06 337540 500653. 1732.36 1.07 0.084955 0.0750111 2246 16 994 2700 149906 36846 5.78058 5.78058 -124.043 -5.78058 0 0 612192. 2118.31 0.29 0.06 0.0201626 0.0183564 150 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 5.69 vpr 61.11 MiB -1 -1 0.21 21060 12 0.28 -1 -1 35724 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62576 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 22.6 MiB 0.36 1258 61.1 MiB 0.09 0.00 5.8417 -131.946 -5.8417 5.8417 1.06 0.000314132 0.000252866 0.0233737 0.019049 28 3356 28 6.55708e+06 313430 500653. 1732.36 1.41 0.108224 0.0940952 2852 18 1427 3843 212765 51307 6.2833 6.2833 -155.492 -6.2833 0 0 612192. 2118.31 0.30 0.08 0.0249237 0.0226166 181 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 6.07 vpr 60.65 MiB -1 -1 0.19 21156 12 0.20 -1 -1 35936 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62108 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 22.1 MiB 0.77 997 60.7 MiB 0.06 0.00 6.0037 -119.096 -6.0037 6.0037 0.96 0.000271498 0.00022127 0.0173748 0.0144681 28 2966 25 6.55708e+06 277265 500653. 1732.36 1.79 0.0927376 0.0817063 2563 18 1230 3393 210589 49695 6.27164 6.27164 -141.574 -6.27164 0 0 612192. 2118.31 0.29 0.08 0.0228394 0.0208006 149 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 5.32 vpr 60.80 MiB -1 -1 0.24 20896 10 0.21 -1 -1 35924 -1 -1 22 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62256 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 22.4 MiB 0.25 957 60.8 MiB 0.05 0.00 4.95846 -102.175 -4.95846 4.95846 1.06 0.00028121 0.000228715 0.0134783 0.0112376 30 2508 21 6.55708e+06 265210 526063. 1820.29 1.26 0.0782081 0.068766 2051 15 820 2547 126372 30473 5.31906 5.31906 -121.901 -5.31906 0 0 666494. 2306.21 0.33 0.06 0.018178 0.0165508 137 131 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 15.07 vpr 61.23 MiB -1 -1 0.28 21832 13 0.44 -1 -1 36020 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 23.0 MiB 0.36 1594 61.2 MiB 0.07 0.00 6.5171 -139.141 -6.5171 6.5171 1.05 0.000444779 0.000370931 0.0209724 0.0177057 30 3887 23 6.55708e+06 373705 526063. 1820.29 10.50 0.218515 0.191245 3162 16 1482 4504 224522 52158 6.8777 6.8777 -155.294 -6.8777 0 0 666494. 2306.21 0.34 0.09 0.0288401 0.0262066 221 220 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 12.30 vpr 61.11 MiB -1 -1 0.27 21744 14 0.47 -1 -1 36564 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62580 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 22.8 MiB 0.74 1423 61.1 MiB 0.05 0.00 6.09338 -133.358 -6.09338 6.09338 1.07 0.000375137 0.000307946 0.0132861 0.0113043 30 3839 22 6.55708e+06 337540 526063. 1820.29 7.30 0.201775 0.177679 3125 16 1394 4051 200404 47821 6.77538 6.77538 -158.165 -6.77538 0 0 666494. 2306.21 0.34 0.09 0.0282027 0.0258716 191 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.61 vpr 60.54 MiB -1 -1 0.22 21000 12 0.22 -1 -1 35552 -1 -1 29 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61988 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 22.0 MiB 0.31 1127 60.5 MiB 0.07 0.00 6.31024 -126.731 -6.31024 6.31024 1.02 0.000298433 0.000242879 0.0171161 0.0141706 30 3042 47 6.55708e+06 349595 526063. 1820.29 1.63 0.108586 0.0953012 2332 15 982 2727 134887 32501 6.5211 6.5211 -141.07 -6.5211 0 0 666494. 2306.21 0.32 0.06 0.0186191 0.0169488 156 148 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 8.32 vpr 61.30 MiB -1 -1 0.28 21612 12 0.41 -1 -1 35888 -1 -1 33 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62776 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 22.9 MiB 0.62 1435 61.3 MiB 0.13 0.00 6.2793 -131.374 -6.2793 6.2793 1.07 0.000395456 0.000325708 0.0353764 0.0291381 36 3769 35 6.55708e+06 397815 612192. 2118.31 3.37 0.192031 0.166761 3226 17 1497 4292 241065 57452 6.5197 6.5197 -146.564 -6.5197 0 0 782063. 2706.10 0.38 0.09 0.028976 0.0263018 218 214 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 6.49 vpr 61.28 MiB -1 -1 0.28 21656 14 0.50 -1 -1 36420 -1 -1 29 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62752 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 22.7 MiB 0.44 1484 61.3 MiB 0.05 0.00 6.98062 -139.952 -6.98062 6.98062 1.08 0.000388092 0.000310471 0.0130951 0.0110088 30 3697 29 6.55708e+06 349595 526063. 1820.29 1.78 0.108559 0.0954201 3191 18 1418 4382 205622 48907 7.3983 7.3983 -158.373 -7.3983 0 0 666494. 2306.21 0.33 0.09 0.0298265 0.0272482 202 200 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 7.91 vpr 61.09 MiB -1 -1 0.29 21648 13 0.40 -1 -1 35968 -1 -1 28 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 22.6 MiB 0.51 1405 61.1 MiB 0.07 0.00 6.5197 -133.548 -6.5197 6.5197 1.07 0.000353597 0.000289388 0.0185937 0.0156473 36 3569 20 6.55708e+06 337540 612192. 2118.31 3.17 0.155089 0.136458 3121 18 1368 3983 219116 51155 6.79164 6.79164 -149.864 -6.79164 0 0 782063. 2706.10 0.38 0.09 0.0284573 0.0260312 185 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.69 vpr 61.24 MiB -1 -1 0.24 21336 13 0.35 -1 -1 36024 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62712 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 22.7 MiB 0.48 1178 61.2 MiB 0.06 0.00 5.95024 -115.656 -5.95024 5.95024 0.99 0.000345669 0.000275374 0.0163194 0.0135877 34 3546 35 6.55708e+06 313430 585099. 2024.56 3.31 0.174333 0.154002 2708 19 1259 3954 217662 53110 6.22018 6.22018 -132.555 -6.22018 0 0 742403. 2568.87 0.34 0.09 0.0280809 0.0256306 179 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 6.92 vpr 61.13 MiB -1 -1 0.23 20956 12 0.27 -1 -1 36220 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62596 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 22.7 MiB 0.32 1307 61.1 MiB 0.07 0.00 5.85698 -121.285 -5.85698 5.85698 1.04 0.000308495 0.000248855 0.0184935 0.0153484 28 3523 50 6.55708e+06 289320 500653. 1732.36 2.70 0.120557 0.105132 2956 22 1374 3890 233160 53269 6.58478 6.58478 -144.664 -6.58478 0 0 612192. 2118.31 0.31 0.09 0.0262065 0.0236554 171 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 9.23 vpr 61.31 MiB -1 -1 0.31 22252 14 0.60 -1 -1 36308 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62784 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 23.0 MiB 0.60 1777 61.3 MiB 0.07 0.00 6.80696 -146.695 -6.80696 6.80696 1.07 0.000413081 0.000336347 0.01876 0.0157341 38 4056 22 6.55708e+06 373705 638502. 2209.35 4.09 0.180393 0.158434 3467 17 1349 4540 232536 51330 7.52815 7.52815 -171.363 -7.52815 0 0 851065. 2944.86 0.40 0.10 0.0331552 0.0303356 230 229 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 7.52 vpr 60.88 MiB -1 -1 0.21 20940 11 0.27 -1 -1 35444 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62344 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 22.4 MiB 0.52 1149 60.9 MiB 0.08 0.00 5.38078 -111.619 -5.38078 5.38078 1.05 0.000320677 0.000253636 0.0204547 0.017033 36 3477 31 6.55708e+06 313430 612192. 2118.31 3.02 0.148491 0.129952 2570 16 1068 3228 178530 42401 6.10198 6.10198 -135.404 -6.10198 0 0 782063. 2706.10 0.37 0.07 0.0208954 0.0190209 163 156 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 15.34 vpr 61.00 MiB -1 -1 0.26 21236 13 0.41 -1 -1 36004 -1 -1 28 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62460 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 22.5 MiB 0.51 1366 61.0 MiB 0.08 0.00 6.36936 -130.125 -6.36936 6.36936 1.05 0.000380458 0.000311752 0.0224334 0.0186705 28 3929 40 6.55708e+06 337540 500653. 1732.36 10.66 0.237681 0.208451 3243 18 1320 4230 319661 80600 7.05136 7.05136 -153.366 -7.05136 0 0 612192. 2118.31 0.31 0.12 0.0305683 0.0280506 193 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.47 vpr 61.23 MiB -1 -1 0.25 21312 12 0.39 -1 -1 36020 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62696 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 22.6 MiB 0.64 1480 61.2 MiB 0.07 0.00 5.55244 -121.995 -5.55244 5.55244 0.96 0.000366961 0.000297726 0.0194574 0.0161544 34 3988 47 6.55708e+06 349595 585099. 2024.56 4.86 0.211498 0.186118 3300 19 1397 5101 282832 64550 6.23444 6.23444 -145.744 -6.23444 0 0 742403. 2568.87 0.33 0.10 0.0331396 0.030083 210 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 6.64 vpr 61.21 MiB -1 -1 0.21 20944 13 0.35 -1 -1 36276 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62684 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 22.6 MiB 0.35 1322 61.2 MiB 0.05 0.00 6.26704 -131.883 -6.26704 6.26704 1.02 0.000351125 0.000281226 0.0143509 0.0119445 28 3870 46 6.55708e+06 349595 500653. 1732.36 2.39 0.122617 0.107366 3230 19 1555 4710 299706 67325 7.05698 7.05698 -160.129 -7.05698 0 0 612192. 2118.31 0.30 0.10 0.0278908 0.0251884 183 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 7.46 vpr 61.04 MiB -1 -1 0.26 21180 13 0.32 -1 -1 35976 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62504 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 22.4 MiB 0.43 1346 61.0 MiB 0.07 0.00 6.01698 -132.695 -6.01698 6.01698 1.09 0.000340666 0.00028234 0.0173238 0.0143771 28 3584 18 6.55708e+06 313430 500653. 1732.36 2.94 0.0969373 0.0850828 3146 17 1334 3967 246169 55533 6.45858 6.45858 -157.271 -6.45858 0 0 612192. 2118.31 0.31 0.09 0.0266214 0.024352 178 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.83 vpr 61.25 MiB -1 -1 0.29 21164 12 0.36 -1 -1 36024 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62720 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 22.9 MiB 0.67 1502 61.2 MiB 0.07 0.00 6.02864 -132.277 -6.02864 6.02864 1.08 0.00038537 0.000310911 0.0200075 0.0168481 38 3340 17 6.55708e+06 361650 638502. 2209.35 2.86 0.152849 0.133955 2901 15 1144 4049 200711 45304 6.38924 6.38924 -148.636 -6.38924 0 0 851065. 2944.86 0.42 0.08 0.027143 0.0248588 197 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 9.42 vpr 61.42 MiB -1 -1 0.28 21612 13 0.43 -1 -1 36500 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 23.0 MiB 0.59 1621 61.4 MiB 0.07 0.00 6.58844 -138.4 -6.58844 6.58844 1.07 0.000375178 0.000285114 0.0196005 0.0162877 34 4562 37 6.55708e+06 373705 585099. 2024.56 4.56 0.190286 0.166705 3624 15 1537 4737 293786 66138 6.94904 6.94904 -162.185 -6.94904 0 0 742403. 2568.87 0.35 0.10 0.0286482 0.0262624 212 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 8.43 vpr 61.09 MiB -1 -1 0.25 21128 14 0.42 -1 -1 36000 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 22.6 MiB 0.36 1248 61.1 MiB 0.07 0.00 6.7993 -137.004 -6.7993 6.7993 1.07 0.000351463 0.000290569 0.0187128 0.0156948 28 3984 42 6.55708e+06 289320 500653. 1732.36 3.85 0.118642 0.104119 3185 29 1690 5781 618264 212268 7.56996 7.56996 -164.777 -7.56996 0 0 612192. 2118.31 0.31 0.22 0.0391174 0.0354565 168 167 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 8.54 vpr 61.21 MiB -1 -1 0.25 21476 13 0.39 -1 -1 36024 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62676 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 22.7 MiB 0.51 1528 61.2 MiB 0.06 0.00 6.45296 -135.971 -6.45296 6.45296 1.07 0.000379281 0.000310514 0.0150065 0.0126943 36 3788 25 6.55708e+06 361650 612192. 2118.31 3.81 0.162912 0.143674 3172 16 1359 4151 246573 54968 7.01476 7.01476 -157.571 -7.01476 0 0 782063. 2706.10 0.39 0.10 0.0287048 0.0264586 198 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 19.40 vpr 61.27 MiB -1 -1 0.29 21612 13 0.41 -1 -1 36044 -1 -1 31 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62744 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 22.7 MiB 0.39 1480 61.3 MiB 0.07 0.00 6.4387 -136.545 -6.4387 6.4387 1.06 0.00041355 0.000327262 0.0208364 0.0175244 30 3621 18 6.55708e+06 373705 526063. 1820.29 14.77 0.251711 0.219337 3103 17 1419 4277 212095 49604 6.9195 6.9195 -159.127 -6.9195 0 0 666494. 2306.21 0.34 0.09 0.0287334 0.0261528 213 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 7.34 vpr 61.48 MiB -1 -1 0.28 21528 12 0.44 -1 -1 36016 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62956 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 22.9 MiB 0.40 1446 61.5 MiB 0.08 0.00 6.4825 -131.707 -6.4825 6.4825 1.07 0.000375687 0.000304076 0.0221805 0.0183487 30 4245 32 6.55708e+06 397815 526063. 1820.29 2.64 0.128409 0.112716 3030 17 1539 4166 201765 48672 6.6027 6.6027 -149.389 -6.6027 0 0 666494. 2306.21 0.34 0.09 0.0309965 0.028455 216 213 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 5.54 vpr 60.53 MiB -1 -1 0.20 21044 11 0.18 -1 -1 35864 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61984 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 21.9 MiB 0.33 1064 60.5 MiB 0.07 0.00 5.29012 -111.432 -5.29012 5.29012 1.03 0.000261357 0.000202972 0.019297 0.0157568 28 2650 36 6.55708e+06 216990 500653. 1732.36 1.54 0.095678 0.0835367 2406 15 930 2449 147922 34293 5.29212 5.29212 -129.598 -5.29212 0 0 612192. 2118.31 0.31 0.06 0.0183573 0.0167709 125 121 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 6.08 vpr 61.04 MiB -1 -1 0.25 21184 13 0.31 -1 -1 35672 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62500 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 22.6 MiB 0.50 1234 61.0 MiB 0.06 0.00 6.02664 -127.542 -6.02664 6.02664 1.09 0.000336139 0.000282225 0.0152883 0.0128751 30 3245 48 6.55708e+06 289320 526063. 1820.29 1.55 0.114312 0.100578 2538 17 1104 3110 150975 36637 6.38724 6.38724 -144.811 -6.38724 0 0 666494. 2306.21 0.34 0.07 0.0227306 0.0207493 161 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.18 vpr 61.26 MiB -1 -1 0.29 21888 14 0.64 -1 -1 36196 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62732 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 23.0 MiB 0.38 1739 61.3 MiB 0.07 0.00 6.9169 -146.311 -6.9169 6.9169 1.08 0.000474251 0.000369763 0.0208682 0.0172996 30 4505 24 6.55708e+06 397815 526063. 1820.29 2.26 0.126607 0.110491 3543 18 2117 6685 314150 74004 7.04936 7.04936 -163.564 -7.04936 0 0 666494. 2306.21 0.34 0.12 0.0365022 0.0331428 245 243 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 6.10 vpr 61.26 MiB -1 -1 0.24 21204 13 0.40 -1 -1 36008 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 22.9 MiB 0.52 1423 61.3 MiB 0.06 0.00 6.5961 -141.793 -6.5961 6.5961 1.04 0.000354109 0.000294359 0.0165617 0.013845 30 3612 38 6.55708e+06 325485 526063. 1820.29 1.58 0.119981 0.105727 2859 13 1104 3180 163781 37640 7.0769 7.0769 -163.281 -7.0769 0 0 666494. 2306.21 0.33 0.07 0.0226836 0.0207743 178 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.18 vpr 60.70 MiB -1 -1 0.22 20912 11 0.23 -1 -1 35900 -1 -1 23 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62152 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 22.3 MiB 0.25 1009 60.7 MiB 0.05 0.00 5.49838 -114.792 -5.49838 5.49838 1.09 0.000291224 0.000233469 0.0118147 0.00994343 30 2472 25 6.55708e+06 277265 526063. 1820.29 1.05 0.0745282 0.0650544 1988 17 806 2523 120777 28953 5.81978 5.81978 -129.689 -5.81978 0 0 666494. 2306.21 0.35 0.06 0.0204567 0.0186702 139 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 10.87 vpr 61.36 MiB -1 -1 0.29 22196 15 0.71 -1 -1 36228 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62828 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 23.0 MiB 0.41 1815 61.4 MiB 0.06 0.00 7.98707 -156.67 -7.98707 7.98707 1.02 0.000465587 0.000390019 0.0176616 0.0151518 34 4805 39 6.55708e+06 409870 585099. 2024.56 6.06 0.242562 0.21514 3944 20 1781 5625 319748 71551 8.34767 8.34767 -179.197 -8.34767 0 0 742403. 2568.87 0.34 0.12 0.0390919 0.0354541 257 256 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 7.92 vpr 61.27 MiB -1 -1 0.26 21204 13 0.47 -1 -1 36360 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62744 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 22.8 MiB 0.44 1443 61.3 MiB 0.06 0.00 6.77176 -136.368 -6.77176 6.77176 1.06 0.000366923 0.000298113 0.0154976 0.0129782 36 3429 44 6.55708e+06 337540 612192. 2118.31 3.21 0.191227 0.16818 2993 16 1221 3713 206163 47202 7.05396 7.05396 -155.255 -7.05396 0 0 782063. 2706.10 0.37 0.08 0.0279771 0.025658 203 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 12.63 vpr 60.67 MiB -1 -1 0.21 20676 11 0.19 -1 -1 35684 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62124 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 22.2 MiB 0.45 1170 60.7 MiB 0.05 0.00 5.16732 -113.613 -5.16732 5.16732 1.06 0.000291157 0.000240732 0.0131743 0.0109493 28 3311 47 6.55708e+06 265210 500653. 1732.36 8.42 0.168061 0.146903 2669 18 1044 2974 179615 41607 5.64812 5.64812 -135.193 -5.64812 0 0 612192. 2118.31 0.30 0.07 0.0212524 0.0193187 141 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 7.01 vpr 61.34 MiB -1 -1 0.26 21124 12 0.44 -1 -1 36012 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 22.8 MiB 0.64 1486 61.3 MiB 0.06 0.00 6.2813 -129.801 -6.2813 6.2813 1.06 0.000405985 0.000336524 0.015931 0.0134479 30 4028 26 6.55708e+06 361650 526063. 1820.29 2.15 0.117336 0.103484 3147 20 1535 4899 251346 56752 6.6419 6.6419 -149.271 -6.6419 0 0 666494. 2306.21 0.33 0.10 0.0327416 0.029764 213 210 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.60 vpr 60.92 MiB -1 -1 0.22 21156 12 0.32 -1 -1 36292 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62380 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 22.5 MiB 0.57 1165 60.9 MiB 0.06 0.00 6.14944 -126.881 -6.14944 6.14944 1.05 0.000303599 0.000247965 0.0163357 0.013663 28 3488 34 6.55708e+06 313430 500653. 1732.36 2.13 0.101925 0.0895533 2898 16 1245 3459 201646 48105 6.39184 6.39184 -149.721 -6.39184 0 0 612192. 2118.31 0.31 0.08 0.0221772 0.0202339 153 148 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.26 vpr 60.85 MiB -1 -1 0.23 20836 12 0.25 -1 -1 35880 -1 -1 21 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62312 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 22.4 MiB 0.27 960 60.9 MiB 0.07 0.00 5.87124 -114.757 -5.87124 5.87124 1.04 0.000271486 0.000221467 0.0214058 0.0177763 26 2554 18 6.55708e+06 253155 477104. 1650.88 1.25 0.0920585 0.0805043 2164 19 1036 3084 187185 44421 6.07244 6.07244 -130.749 -6.07244 0 0 585099. 2024.56 0.28 0.07 0.0226785 0.0205365 140 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 6.34 vpr 61.26 MiB -1 -1 0.27 21180 12 0.41 -1 -1 35980 -1 -1 31 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62732 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 22.9 MiB 0.35 1313 61.3 MiB 0.05 0.00 5.70218 -108.993 -5.70218 5.70218 1.11 0.000380763 0.000316013 0.0135918 0.0115767 30 3356 30 6.55708e+06 373705 526063. 1820.29 1.76 0.109029 0.0963096 2791 19 1273 4219 202070 47541 6.10198 6.10198 -125.01 -6.10198 0 0 666494. 2306.21 0.34 0.08 0.0283593 0.0257978 191 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 9.11 vpr 61.36 MiB -1 -1 0.24 21348 13 0.49 -1 -1 36012 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62836 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 23.0 MiB 0.84 1595 61.4 MiB 0.06 0.00 6.80896 -145.749 -6.80896 6.80896 1.08 0.000465066 0.000390564 0.0177243 0.0150577 36 4035 22 6.55708e+06 397815 612192. 2118.31 3.88 0.172295 0.150941 3383 18 1670 4738 268456 61355 7.28976 7.28976 -166.111 -7.28976 0 0 782063. 2706.10 0.38 0.11 0.0355652 0.0324012 238 235 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 9.21 vpr 61.31 MiB -1 -1 0.26 21268 12 0.34 -1 -1 36028 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62780 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 22.8 MiB 0.62 1316 61.3 MiB 0.11 0.00 6.31024 -126.081 -6.31024 6.31024 1.11 0.000377298 0.000301159 0.0296514 0.0244161 34 4063 37 6.55708e+06 385760 585099. 2024.56 4.28 0.187834 0.163841 3243 18 1488 4461 274947 64313 6.47224 6.47224 -147.597 -6.47224 0 0 742403. 2568.87 0.38 0.10 0.0310274 0.0283351 200 195 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 6.62 vpr 60.71 MiB -1 -1 0.23 21104 12 0.20 -1 -1 35852 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62168 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 22.1 MiB 0.73 1130 60.7 MiB 0.05 0.00 5.60752 -118.756 -5.60752 5.60752 1.05 0.000266012 0.000215244 0.0136241 0.0113915 28 2977 46 6.55708e+06 241100 500653. 1732.36 2.10 0.0958714 0.0841414 2573 16 1032 2932 186123 42018 6.06078 6.06078 -141.306 -6.06078 0 0 612192. 2118.31 0.31 0.07 0.02019 0.0185011 126 119 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 6.48 vpr 60.49 MiB -1 -1 0.26 21184 12 0.31 -1 -1 35700 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61944 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 21.9 MiB 0.40 1166 60.5 MiB 0.04 0.00 5.65838 -116.766 -5.65838 5.65838 1.05 0.000321535 0.000264009 0.0106632 0.00911374 28 3473 25 6.55708e+06 289320 500653. 1732.36 2.13 0.0849574 0.0747993 2829 18 1162 3532 214469 50168 6.25938 6.25938 -140.277 -6.25938 0 0 612192. 2118.31 0.31 0.08 0.0243459 0.0221704 154 151 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 7.98 vpr 61.22 MiB -1 -1 0.23 21208 11 0.26 -1 -1 36060 -1 -1 30 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62692 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 22.6 MiB 0.20 1274 61.2 MiB 0.09 0.00 5.55244 -109.126 -5.55244 5.55244 1.02 0.000348179 0.000278784 0.0240343 0.0199113 36 3408 49 6.55708e+06 361650 612192. 2118.31 3.92 0.187462 0.163464 2679 14 1152 3645 205091 46767 6.03324 6.03324 -127.41 -6.03324 0 0 782063. 2706.10 0.36 0.08 0.023482 0.0214999 190 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 7.92 vpr 60.66 MiB -1 -1 0.20 21060 11 0.27 -1 -1 35888 -1 -1 27 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62120 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 22.2 MiB 0.20 1126 60.7 MiB 0.05 0.00 5.20652 -100.436 -5.20652 5.20652 0.99 0.000308736 0.00024223 0.0130719 0.0109055 26 3475 48 6.55708e+06 325485 477104. 1650.88 3.93 0.122119 0.108184 2807 32 1890 7150 730637 250051 5.65012 5.65012 -122.343 -5.65012 0 0 585099. 2024.56 0.28 0.24 0.0402841 0.0363587 172 166 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 6.56 vpr 60.60 MiB -1 -1 0.24 21420 13 0.31 -1 -1 35996 -1 -1 25 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62052 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 22.0 MiB 0.42 1038 60.6 MiB 0.05 0.00 5.79084 -109.148 -5.79084 5.79084 1.06 0.00031156 0.000255452 0.0123881 0.0104556 28 3042 26 6.55708e+06 301375 500653. 1732.36 2.23 0.0882489 0.0778588 2532 16 1052 3121 179648 43827 6.47284 6.47284 -133.069 -6.47284 0 0 612192. 2118.31 0.31 0.07 0.0217583 0.0198899 148 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 6.02 vpr 60.89 MiB -1 -1 0.26 21264 12 0.29 -1 -1 35880 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62348 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 22.4 MiB 0.43 1147 60.9 MiB 0.10 0.00 6.0821 -127.306 -6.0821 6.0821 1.06 0.000330383 0.00026998 0.0278263 0.0230309 30 3335 28 6.55708e+06 337540 526063. 1820.29 1.57 0.112883 0.0984519 2470 18 1159 3204 145843 36598 6.31284 6.31284 -145.817 -6.31284 0 0 666494. 2306.21 0.34 0.07 0.0249834 0.0227361 174 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 11.09 vpr 61.11 MiB -1 -1 0.24 21160 13 0.43 -1 -1 35860 -1 -1 27 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62572 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 22.5 MiB 0.43 1252 61.1 MiB 0.08 0.00 6.4799 -126.352 -6.4799 6.4799 1.07 0.000363894 0.000293964 0.0218192 0.0179204 28 3311 34 6.55708e+06 325485 500653. 1732.36 6.51 0.221323 0.193181 2841 20 1456 4497 239831 56964 6.72996 6.72996 -148.643 -6.72996 0 0 612192. 2118.31 0.32 0.09 0.0291669 0.0264018 187 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 6.60 vpr 61.26 MiB -1 -1 0.27 21652 14 0.40 -1 -1 36056 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62732 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 22.8 MiB 0.36 1312 61.3 MiB 0.07 0.00 6.74022 -137.14 -6.74022 6.74022 1.06 0.000360195 0.000290662 0.019521 0.0162976 28 3754 34 6.55708e+06 337540 500653. 1732.36 2.10 0.120597 0.106111 3056 18 1452 4419 255852 60369 7.21136 7.21136 -161.374 -7.21136 0 0 612192. 2118.31 0.30 0.10 0.0277582 0.0252378 196 195 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 9.62 vpr 61.17 MiB -1 -1 0.25 21684 14 0.34 -1 -1 35980 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62640 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 22.6 MiB 0.39 1270 61.2 MiB 0.10 0.00 6.18664 -126.73 -6.18664 6.18664 1.02 0.000332487 0.000272467 0.0286137 0.0237531 30 3210 19 6.55708e+06 301375 526063. 1820.29 5.23 0.209425 0.182627 2576 18 1095 3131 154250 36578 6.54724 6.54724 -143.025 -6.54724 0 0 666494. 2306.21 0.33 0.07 0.0257299 0.023283 175 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 9.10 vpr 61.30 MiB -1 -1 0.27 21844 13 0.50 -1 -1 36080 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62772 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 22.8 MiB 0.43 1255 61.3 MiB 0.06 0.00 6.52876 -128.715 -6.52876 6.52876 1.06 0.000366544 0.000298267 0.0159966 0.013332 30 3997 40 6.55708e+06 349595 526063. 1820.29 4.30 0.130466 0.114337 2919 26 1782 5339 297517 81770 6.8823 6.8823 -148.898 -6.8823 0 0 666494. 2306.21 0.33 0.12 0.036674 0.0329839 205 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 6.70 vpr 60.91 MiB -1 -1 0.20 21152 13 0.24 -1 -1 35928 -1 -1 24 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62368 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 22.4 MiB 0.55 1101 60.9 MiB 0.07 0.00 6.22784 -125.933 -6.22784 6.22784 0.98 0.000281908 0.000233358 0.0186644 0.0156222 28 3115 43 6.55708e+06 289320 500653. 1732.36 2.54 0.110778 0.0973031 2563 18 1275 3324 205584 49172 6.50744 6.50744 -146.013 -6.50744 0 0 612192. 2118.31 0.29 0.08 0.0229979 0.0209129 147 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 7.64 vpr 61.45 MiB -1 -1 0.26 21448 13 0.63 -1 -1 35876 -1 -1 32 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62928 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 22.9 MiB 0.45 1501 61.5 MiB 0.06 0.00 6.65156 -136.055 -6.65156 6.65156 1.00 0.000378791 0.000309531 0.0155409 0.0131592 38 3474 23 6.55708e+06 385760 638502. 2209.35 2.90 0.172863 0.152117 2933 20 1454 4172 203120 46787 7.29436 7.29436 -154.052 -7.29436 0 0 851065. 2944.86 0.39 0.08 0.0303116 0.0273812 203 200 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 16.24 vpr 61.25 MiB -1 -1 0.27 21184 14 0.46 -1 -1 36020 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62716 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 22.6 MiB 0.69 1338 61.2 MiB 0.06 0.00 6.61036 -138.505 -6.61036 6.61036 1.06 0.000368407 0.000301249 0.0166719 0.0140899 30 3350 24 6.55708e+06 325485 526063. 1820.29 11.34 0.243185 0.213176 2826 19 1227 4163 214169 49108 6.8803 6.8803 -155.26 -6.8803 0 0 666494. 2306.21 0.34 0.09 0.0282 0.0256713 181 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 13.51 vpr 60.84 MiB -1 -1 0.27 21184 13 0.32 -1 -1 35856 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62304 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 22.2 MiB 0.42 1428 60.8 MiB 0.07 0.00 6.7189 -134.733 -6.7189 6.7189 1.07 0.000355148 0.000292606 0.0185745 0.0156186 36 3411 24 6.55708e+06 301375 612192. 2118.31 8.87 0.226692 0.198347 2924 17 1269 3670 212849 48567 7.0795 7.0795 -155.651 -7.0795 0 0 782063. 2706.10 0.38 0.08 0.0251366 0.0229784 175 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 5.82 vpr 61.03 MiB -1 -1 0.27 21264 13 0.31 -1 -1 36440 -1 -1 27 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62496 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 22.5 MiB 0.56 1266 61.0 MiB 0.07 0.00 6.4407 -117.808 -6.4407 6.4407 1.05 0.000325445 0.000264486 0.0187873 0.0154932 30 3277 27 6.55708e+06 325485 526063. 1820.29 1.25 0.0958792 0.0832264 2744 16 1207 3669 186193 43087 6.6811 6.6811 -135.603 -6.6811 0 0 666494. 2306.21 0.34 0.07 0.0230589 0.0210088 178 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 14.50 vpr 61.07 MiB -1 -1 0.27 21292 14 0.52 -1 -1 36108 -1 -1 37 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62532 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 22.8 MiB 0.54 1554 61.1 MiB 0.10 0.00 6.7581 -141.233 -6.7581 6.7581 1.05 0.000436762 0.000363824 0.0252054 0.0209192 36 3862 43 6.55708e+06 446035 612192. 2118.31 9.59 0.30071 0.262774 3292 17 1592 4518 251787 58479 7.0377 7.0377 -159.604 -7.0377 0 0 782063. 2706.10 0.36 0.09 0.0278373 0.0252479 218 215 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.66 vpr 61.15 MiB -1 -1 0.28 21504 11 0.42 -1 -1 35752 -1 -1 29 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62616 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 22.5 MiB 0.63 1306 61.1 MiB 0.05 0.00 5.97978 -117.438 -5.97978 5.97978 1.05 0.000377597 0.000302223 0.0142117 0.0119054 28 3581 30 6.55708e+06 349595 500653. 1732.36 1.92 0.10708 0.0945058 2979 16 1254 3626 215675 49986 6.22218 6.22218 -134.137 -6.22218 0 0 612192. 2118.31 0.31 0.08 0.0251355 0.0230247 177 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 6.77 vpr 60.33 MiB -1 -1 0.21 21028 13 0.21 -1 -1 36052 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61780 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 21.9 MiB 0.43 1082 60.3 MiB 0.08 0.00 5.89938 -133.458 -5.89938 5.89938 1.04 0.000276397 0.000224429 0.0206913 0.0170792 28 3366 31 6.55708e+06 289320 500653. 1732.36 2.49 0.0945672 0.0826114 2727 25 1180 3132 327044 102205 6.26198 6.26198 -157.541 -6.26198 0 0 612192. 2118.31 0.31 0.12 0.025945 0.0234491 138 127 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 17.34 vpr 61.05 MiB -1 -1 0.27 21612 14 0.37 -1 -1 36040 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62512 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 22.5 MiB 0.61 1341 61.0 MiB 0.05 0.00 6.9985 -143.504 -6.9985 6.9985 1.05 0.000325936 0.000267693 0.0139963 0.0117514 36 3418 40 6.55708e+06 337540 612192. 2118.31 12.60 0.252482 0.222356 2962 16 1391 4309 241351 54779 7.1997 7.1997 -158.927 -7.1997 0 0 782063. 2706.10 0.38 0.09 0.0244888 0.022417 179 172 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.38 vpr 61.32 MiB -1 -1 0.28 21964 15 0.61 -1 -1 35996 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62796 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 22.9 MiB 0.40 1619 61.3 MiB 0.07 0.00 7.53842 -156.614 -7.53842 7.53842 1.05 0.000457948 0.000372267 0.0190684 0.0158602 30 4699 41 6.55708e+06 397815 526063. 1820.29 2.55 0.143092 0.125389 3536 18 1722 5110 250465 59817 7.86182 7.86182 -177.149 -7.86182 0 0 666494. 2306.21 0.33 0.10 0.0320771 0.0291544 241 239 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.34 vpr 60.60 MiB -1 -1 0.20 20916 11 0.22 -1 -1 35720 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62052 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 22.0 MiB 0.53 1014 60.6 MiB 0.03 0.00 5.46178 -111.097 -5.46178 5.46178 0.99 0.000258576 0.000212686 0.00890432 0.00759527 26 2937 30 6.55708e+06 265210 477104. 1650.88 2.25 0.0852987 0.0754991 2417 24 1123 3592 318315 108366 5.86158 5.86158 -133.811 -5.86158 0 0 585099. 2024.56 0.28 0.12 0.02442 0.0219464 129 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.32 vpr 60.59 MiB -1 -1 0.21 20912 12 0.25 -1 -1 35832 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62044 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 22.2 MiB 0.35 1260 60.6 MiB 0.06 0.00 5.84272 -125.441 -5.84272 5.84272 1.02 0.000299689 0.000240842 0.0142177 0.011906 36 3139 20 6.55708e+06 313430 612192. 2118.31 3.16 0.134552 0.118405 2712 16 1103 3111 179973 41531 6.40452 6.40452 -147.692 -6.40452 0 0 782063. 2706.10 0.36 0.07 0.0205735 0.0186896 156 151 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 14.19 vpr 61.36 MiB -1 -1 0.28 21284 12 0.45 -1 -1 36040 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62828 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 22.8 MiB 0.45 1458 61.4 MiB 0.11 0.00 6.07244 -136.102 -6.07244 6.07244 1.08 0.000416888 0.000343706 0.0308786 0.0257428 30 3902 38 6.55708e+06 385760 526063. 1820.29 9.42 0.256712 0.22494 3056 21 1543 4296 205866 49152 6.3617 6.3617 -153.864 -6.3617 0 0 666494. 2306.21 0.34 0.09 0.0335852 0.0306076 213 205 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 18.39 vpr 61.09 MiB -1 -1 0.25 21348 12 0.36 -1 -1 35876 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62556 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 22.5 MiB 0.45 1365 61.1 MiB 0.07 0.00 6.31084 -133.417 -6.31084 6.31084 1.08 0.000360138 0.000294597 0.0197063 0.0163912 30 3953 31 6.55708e+06 313430 526063. 1820.29 13.81 0.247258 0.216225 2891 17 1227 3816 184941 43315 6.6419 6.6419 -150.474 -6.6419 0 0 666494. 2306.21 0.33 0.08 0.0261245 0.0238592 181 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 11.29 vpr 61.41 MiB -1 -1 0.26 21824 14 0.65 -1 -1 36088 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62880 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 23.0 MiB 0.72 1566 61.4 MiB 0.08 0.00 7.21642 -146.077 -7.21642 7.21642 1.03 0.000420844 0.000347723 0.022648 0.01902 36 4304 45 6.55708e+06 373705 612192. 2118.31 6.00 0.24356 0.213906 3661 33 2259 7937 739229 278712 7.69722 7.69722 -168.265 -7.69722 0 0 782063. 2706.10 0.36 0.27 0.0561894 0.0504695 234 232 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 8.35 vpr 60.83 MiB -1 -1 0.25 21252 12 0.30 -1 -1 35964 -1 -1 25 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62288 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 22.3 MiB 0.62 1214 60.8 MiB 0.06 0.00 6.01698 -115.657 -6.01698 6.01698 1.10 0.000321638 0.000264751 0.0152789 0.0128505 28 3540 50 6.55708e+06 301375 500653. 1732.36 3.69 0.119697 0.105425 2964 19 1421 4531 340430 88250 6.43304 6.43304 -137.234 -6.43304 0 0 612192. 2118.31 0.31 0.12 0.0265127 0.0241669 160 155 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 5.91 vpr 60.87 MiB -1 -1 0.21 20912 11 0.27 -1 -1 35876 -1 -1 26 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62332 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 22.4 MiB 0.42 890 60.9 MiB 0.08 0.00 5.91044 -104.805 -5.91044 5.91044 1.07 0.000256687 0.000210775 0.0205086 0.0170566 28 2663 26 6.55708e+06 313430 500653. 1732.36 1.60 0.0911444 0.0797762 2177 24 975 2932 206240 60870 6.15084 6.15084 -123.042 -6.15084 0 0 612192. 2118.31 0.31 0.09 0.0239158 0.0214902 140 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.87 vpr 61.36 MiB -1 -1 0.31 22272 13 0.64 -1 -1 35984 -1 -1 40 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62836 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 23.5 MiB 0.63 1913 61.4 MiB 0.13 0.00 6.58844 -136.883 -6.58844 6.58844 1.07 0.000633473 0.00053002 0.0369402 0.0310009 38 4854 20 6.55708e+06 482200 638502. 2209.35 4.54 0.222789 0.194827 3853 21 2032 6726 352112 80259 7.06924 7.06924 -155.198 -7.06924 0 0 851065. 2944.86 0.40 0.13 0.0420566 0.0380963 286 285 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 7.30 vpr 61.09 MiB -1 -1 0.25 21188 14 0.39 -1 -1 35816 -1 -1 28 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62560 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 22.5 MiB 0.30 1358 61.1 MiB 0.09 0.00 6.80896 -137.07 -6.80896 6.80896 1.05 0.000331181 0.000268261 0.0250469 0.0206456 36 3209 20 6.55708e+06 337540 612192. 2118.31 2.80 0.158637 0.138498 2795 18 1184 3351 178850 42129 7.13036 7.13036 -152.191 -7.13036 0 0 782063. 2706.10 0.39 0.08 0.0262919 0.0239806 188 184 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.22 vpr 60.40 MiB -1 -1 0.23 21348 12 0.20 -1 -1 35716 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61848 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 21.9 MiB 0.43 1108 60.4 MiB 0.07 0.00 5.83004 -125.312 -5.83004 5.83004 0.99 0.000277984 0.000226948 0.0174091 0.0144133 30 2531 17 6.55708e+06 325485 526063. 1820.29 1.16 0.0836323 0.0736468 2174 17 911 2766 125624 30942 6.10964 6.10964 -141.246 -6.10964 0 0 666494. 2306.21 0.32 0.06 0.0212939 0.0194845 145 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 7.56 vpr 61.25 MiB -1 -1 0.25 21252 13 0.41 -1 -1 35876 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62720 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 22.7 MiB 0.62 1378 61.2 MiB 0.07 0.00 6.5635 -134.208 -6.5635 6.5635 1.04 0.00035557 0.000283065 0.0197711 0.0163517 28 3587 42 6.55708e+06 313430 500653. 1732.36 2.76 0.124699 0.109457 3112 25 1330 3944 406573 146384 6.7621 6.7621 -152.662 -6.7621 0 0 612192. 2118.31 0.31 0.17 0.0361808 0.0328795 169 168 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 7.85 vpr 61.46 MiB -1 -1 0.28 21644 13 0.47 -1 -1 36044 -1 -1 35 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62936 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 23.0 MiB 0.38 1690 61.5 MiB 0.09 0.00 6.5197 -135.74 -6.5197 6.5197 1.04 0.000441116 0.000367038 0.0238661 0.0200525 36 4010 17 6.55708e+06 421925 612192. 2118.31 3.06 0.179946 0.158048 3484 22 1533 4560 380763 129951 6.7621 6.7621 -152.91 -6.7621 0 0 782063. 2706.10 0.38 0.16 0.0386738 0.0353194 233 228 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.16 vpr 61.38 MiB -1 -1 0.25 21376 11 0.36 -1 -1 36020 -1 -1 31 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 22.9 MiB 0.35 1367 61.4 MiB 0.07 0.00 5.54478 -108.651 -5.54478 5.54478 1.06 0.000374994 0.000302591 0.0177442 0.0148619 30 3770 29 6.55708e+06 373705 526063. 1820.29 2.70 0.11002 0.0962693 2979 17 1351 4589 239841 56408 5.54478 5.54478 -126.596 -5.54478 0 0 666494. 2306.21 0.34 0.09 0.0276659 0.0252252 199 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 13.65 vpr 61.28 MiB -1 -1 0.27 21348 15 0.53 -1 -1 36004 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62752 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 22.6 MiB 0.73 1489 61.3 MiB 0.06 0.00 7.45481 -155.745 -7.45481 7.45481 1.06 0.000407563 0.000339464 0.0158306 0.013461 30 3498 24 6.55708e+06 349595 526063. 1820.29 8.56 0.223049 0.195833 3122 26 1301 4191 369260 149094 8.08795 8.08795 -175.741 -8.08795 0 0 666494. 2306.21 0.33 0.16 0.0384458 0.0347383 202 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 7.80 vpr 61.16 MiB -1 -1 0.26 21872 13 0.48 -1 -1 36016 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62624 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 22.7 MiB 0.61 1467 61.2 MiB 0.10 0.00 6.6765 -143.163 -6.6765 6.6765 1.04 0.000361409 0.000291613 0.0268527 0.0221471 36 3467 19 6.55708e+06 361650 612192. 2118.31 2.99 0.171864 0.149878 2940 15 1287 3864 206958 48049 7.1181 7.1181 -160.312 -7.1181 0 0 782063. 2706.10 0.37 0.08 0.026799 0.0244655 194 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.39 vpr 60.89 MiB -1 -1 0.24 20852 12 0.29 -1 -1 35940 -1 -1 29 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62348 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 22.2 MiB 0.66 1151 60.9 MiB 0.06 0.00 6.0801 -128.275 -6.0801 6.0801 1.06 0.000295516 0.000241106 0.0143106 0.0118979 28 3060 19 6.55708e+06 349595 500653. 1732.36 1.79 0.0820098 0.0716884 2780 20 1486 4070 234293 54344 6.95104 6.95104 -155.552 -6.95104 0 0 612192. 2118.31 0.31 0.09 0.0247288 0.0223532 157 150 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.60 vpr 60.69 MiB -1 -1 0.25 21380 11 0.23 -1 -1 35988 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62144 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 22.2 MiB 0.31 1049 60.7 MiB 0.06 0.00 5.47144 -115.22 -5.47144 5.47144 1.07 0.000300527 0.000246945 0.0168872 0.0140233 30 3222 49 6.55708e+06 253155 526063. 1820.29 2.39 0.105171 0.0918786 2342 16 1099 2850 153842 37071 5.83204 5.83204 -132.168 -5.83204 0 0 666494. 2306.21 0.34 0.07 0.0199628 0.018206 145 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 9.33 vpr 61.40 MiB -1 -1 0.24 21252 13 0.49 -1 -1 35880 -1 -1 29 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62872 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 22.8 MiB 0.71 1399 61.4 MiB 0.06 0.00 6.3995 -130.856 -6.3995 6.3995 1.07 0.000359474 0.000291136 0.0147627 0.0123889 34 4246 39 6.55708e+06 349595 585099. 2024.56 4.31 0.178701 0.156547 3389 20 1674 5239 325059 76050 6.7601 6.7601 -154.105 -6.7601 0 0 742403. 2568.87 0.36 0.12 0.0338614 0.0308681 203 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.38 vpr 60.49 MiB -1 -1 0.22 21216 10 0.21 -1 -1 35892 -1 -1 24 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61940 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 22.0 MiB 0.24 1012 60.5 MiB 0.06 0.00 4.85252 -100.113 -4.85252 4.85252 0.99 0.000265132 0.000213524 0.0169255 0.0139895 28 2888 46 6.55708e+06 289320 500653. 1732.36 1.51 0.107205 0.0945862 2298 18 1020 3076 177035 41463 5.25232 5.25232 -118.266 -5.25232 0 0 612192. 2118.31 0.29 0.07 0.0207472 0.0188443 137 130 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 6.15 vpr 60.63 MiB -1 -1 0.23 20856 14 0.27 -1 -1 35928 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62088 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 22.0 MiB 0.73 1163 60.6 MiB 0.10 0.00 6.58503 -137.743 -6.58503 6.58503 1.08 0.000299603 0.000235655 0.0259021 0.0214256 30 2918 24 6.55708e+06 289320 526063. 1820.29 1.45 0.0961007 0.0834118 2346 17 1016 2927 128508 32233 6.82543 6.82543 -154.483 -6.82543 0 0 666494. 2306.21 0.32 0.06 0.0217742 0.0198403 146 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.89 vpr 61.30 MiB -1 -1 0.28 21588 13 0.40 -1 -1 35872 -1 -1 30 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62772 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 22.7 MiB 0.47 1278 61.3 MiB 0.07 0.00 6.06844 -130.817 -6.06844 6.06844 1.08 0.000324473 0.000261637 0.0193149 0.0159755 30 3098 20 6.55708e+06 361650 526063. 1820.29 1.23 0.0943656 0.0825053 2593 18 1185 3470 161091 39576 6.46824 6.46824 -150.245 -6.46824 0 0 666494. 2306.21 0.32 0.07 0.0236171 0.0214476 180 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 9.86 vpr 60.70 MiB -1 -1 0.21 20992 12 0.20 -1 -1 35760 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62156 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 22.2 MiB 0.45 1178 60.7 MiB 0.07 0.00 5.36912 -117.8 -5.36912 5.36912 1.01 0.000311944 0.00024757 0.0179994 0.0149572 28 3038 30 6.55708e+06 313430 500653. 1732.36 5.70 0.197157 0.172375 2531 27 1081 2789 270107 96727 6.09032 6.09032 -141.278 -6.09032 0 0 612192. 2118.31 0.30 0.11 0.0278676 0.0250245 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 9.08 vpr 61.16 MiB -1 -1 0.26 21388 12 0.28 -1 -1 36016 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62624 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 22.7 MiB 0.43 1451 61.2 MiB 0.08 0.00 5.91304 -127.667 -5.91304 5.91304 1.06 0.000365794 0.000293706 0.0238672 0.0197875 36 3447 20 6.55708e+06 313430 612192. 2118.31 4.53 0.159046 0.13909 3020 15 1271 3936 237334 53144 6.15344 6.15344 -145.394 -6.15344 0 0 782063. 2706.10 0.38 0.09 0.0262435 0.0240712 195 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 8.27 vpr 61.23 MiB -1 -1 0.29 21456 13 0.43 -1 -1 35924 -1 -1 29 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62696 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 22.8 MiB 0.70 1204 61.2 MiB 0.07 0.00 6.7575 -128.465 -6.7575 6.7575 1.08 0.000388447 0.000316336 0.0197134 0.016527 36 3309 21 6.55708e+06 349595 612192. 2118.31 3.29 0.158195 0.138415 2614 16 1318 3879 188645 47886 6.8777 6.8777 -144.098 -6.8777 0 0 782063. 2706.10 0.37 0.08 0.0272087 0.0248512 193 189 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 8.06 vpr 60.87 MiB -1 -1 0.24 20916 11 0.25 -1 -1 35548 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62328 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 22.4 MiB 0.35 1162 60.9 MiB 0.08 0.00 5.32992 -118.957 -5.32992 5.32992 1.07 0.000300181 0.000242853 0.0205903 0.0170715 28 3292 28 6.55708e+06 301375 500653. 1732.36 3.57 0.162417 0.141182 2866 52 2280 7373 872949 392304 5.49332 5.49332 -138.974 -5.49332 0 0 612192. 2118.31 0.31 0.34 0.0532893 0.0477463 148 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 7.88 vpr 60.95 MiB -1 -1 0.24 21216 13 0.32 -1 -1 35760 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62408 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 22.5 MiB 0.43 1169 60.9 MiB 0.08 0.00 6.30884 -129.588 -6.30884 6.30884 1.07 0.000319018 0.000258404 0.0226858 0.018823 36 3059 19 6.55708e+06 289320 612192. 2118.31 3.38 0.137813 0.119664 2534 15 1163 3307 181961 43576 6.42904 6.42904 -145.12 -6.42904 0 0 782063. 2706.10 0.39 0.07 0.0231277 0.0211442 164 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.90 vpr 61.19 MiB -1 -1 0.24 21236 13 0.37 -1 -1 36020 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62656 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 22.8 MiB 0.99 1308 61.2 MiB 0.07 0.00 6.3969 -136.276 -6.3969 6.3969 1.06 0.000366881 0.000307186 0.0202185 0.0169255 30 3723 23 6.55708e+06 337540 526063. 1820.29 1.83 0.108831 0.0955591 3012 19 1426 3906 198540 47140 6.6791 6.6791 -157.373 -6.6791 0 0 666494. 2306.21 0.33 0.09 0.0290398 0.0264823 193 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 7.04 vpr 60.97 MiB -1 -1 0.27 21160 11 0.26 -1 -1 36492 -1 -1 27 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62432 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 22.6 MiB 0.29 1093 61.0 MiB 0.06 0.00 5.66238 -106.109 -5.66238 5.66238 1.06 0.000310866 0.000250753 0.0154504 0.0128181 36 2657 32 6.55708e+06 325485 612192. 2118.31 2.71 0.142445 0.125039 2315 16 947 2782 150567 35326 5.94198 5.94198 -119.874 -5.94198 0 0 782063. 2706.10 0.38 0.07 0.021949 0.0199752 160 154 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 8.52 vpr 61.16 MiB -1 -1 0.26 22088 14 0.46 -1 -1 36116 -1 -1 35 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62632 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 22.7 MiB 0.48 1596 61.2 MiB 0.07 0.00 6.96896 -154.032 -6.96896 6.96896 1.02 0.000477376 0.000386173 0.0200765 0.0167445 36 4031 25 6.55708e+06 421925 612192. 2118.31 3.80 0.19169 0.167918 3477 23 2022 6295 341058 77248 7.3591 7.3591 -173.783 -7.3591 0 0 782063. 2706.10 0.37 0.12 0.0378139 0.0339582 224 223 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.08 vpr 60.74 MiB -1 -1 0.21 20700 12 0.21 -1 -1 35928 -1 -1 28 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62200 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 22.2 MiB 0.40 1157 60.7 MiB 0.05 0.00 5.61918 -123.396 -5.61918 5.61918 1.05 0.000258395 0.000212664 0.0112906 0.00945068 36 2751 42 6.55708e+06 337540 612192. 2118.31 2.79 0.131928 0.116005 2454 15 971 2576 166732 38229 5.73938 5.73938 -138.065 -5.73938 0 0 782063. 2706.10 0.38 0.07 0.0192763 0.0177104 138 129 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 7.33 vpr 61.00 MiB -1 -1 0.28 22028 13 0.43 -1 -1 36004 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62460 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 22.5 MiB 0.60 1387 61.0 MiB 0.09 0.00 6.34544 -133.602 -6.34544 6.34544 1.07 0.000384806 0.000318071 0.026325 0.0219903 38 3202 19 6.55708e+06 301375 638502. 2209.35 2.40 0.166785 0.146623 2742 17 1172 3640 174046 40129 6.58584 6.58584 -149.092 -6.58584 0 0 851065. 2944.86 0.41 0.08 0.0276224 0.0253103 189 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 9.05 vpr 60.43 MiB -1 -1 0.22 21324 13 0.25 -1 -1 35716 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61880 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 21.9 MiB 0.45 1263 60.4 MiB 0.06 0.00 6.0801 -133.715 -6.0801 6.0801 1.00 0.000288364 0.000235863 0.0153521 0.0127056 26 3639 50 6.55708e+06 313430 477104. 1650.88 4.91 0.117546 0.103831 3028 21 1397 3719 322052 91055 6.54158 6.54158 -160.778 -6.54158 0 0 585099. 2024.56 0.28 0.11 0.0255592 0.0231485 151 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 13.40 vpr 61.20 MiB -1 -1 0.27 21368 12 0.33 -1 -1 36020 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62668 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 22.7 MiB 0.36 1350 61.2 MiB 0.05 0.00 5.75104 -125.705 -5.75104 5.75104 1.04 0.000348537 0.000272924 0.0121471 0.0101952 30 3356 20 6.55708e+06 313430 526063. 1820.29 9.02 0.192174 0.168849 2746 16 1097 3468 180189 40912 5.99144 5.99144 -142.868 -5.99144 0 0 666494. 2306.21 0.34 0.07 0.0240932 0.0219551 176 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.66 vpr 61.46 MiB -1 -1 0.31 22100 15 0.73 -1 -1 36516 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62936 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 23.1 MiB 0.39 1814 61.5 MiB 0.09 0.00 7.08916 -145.406 -7.08916 7.08916 1.06 0.000570644 0.000470986 0.027061 0.0227738 36 4688 23 6.55708e+06 433980 612192. 2118.31 4.55 0.210106 0.183775 3805 24 2042 7090 365423 84835 7.5623 7.5623 -165.875 -7.5623 0 0 782063. 2706.10 0.38 0.14 0.0447481 0.0404946 256 255 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.93 vpr 60.11 MiB -1 -1 0.21 20736 10 0.14 -1 -1 35672 -1 -1 18 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61552 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 21.6 MiB 0.16 871 60.1 MiB 0.05 0.00 4.60046 -104.876 -4.60046 4.60046 1.06 0.000204175 0.000165934 0.0135968 0.0112797 30 1951 14 6.55708e+06 216990 526063. 1820.29 1.10 0.0544374 0.0473734 1688 17 658 1597 79186 19261 4.72066 4.72066 -118.159 -4.72066 0 0 666494. 2306.21 0.33 0.04 0.0136314 0.0123337 90 81 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 5.60 vpr 60.75 MiB -1 -1 0.23 21064 13 0.26 -1 -1 35904 -1 -1 25 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62204 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 22.2 MiB 0.24 986 60.7 MiB 0.05 0.00 6.21618 -122.87 -6.21618 6.21618 1.08 0.000292434 0.000239703 0.0136592 0.0113931 30 2639 32 6.55708e+06 301375 526063. 1820.29 1.36 0.0859753 0.0750426 2167 28 1014 2933 289862 121938 6.51004 6.51004 -142.823 -6.51004 0 0 666494. 2306.21 0.34 0.13 0.0298917 0.0269417 143 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.92 vpr 61.01 MiB -1 -1 0.24 20988 12 0.29 -1 -1 35752 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62476 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 22.5 MiB 0.40 1219 61.0 MiB 0.10 0.00 6.34804 -130.942 -6.34804 6.34804 1.07 0.000343522 0.000272461 0.0270706 0.0222477 36 2976 20 6.55708e+06 289320 612192. 2118.31 2.48 0.148673 0.129325 2418 17 1082 2907 149704 36023 6.5629 6.5629 -147.329 -6.5629 0 0 782063. 2706.10 0.36 0.07 0.022341 0.0202888 171 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 6.40 vpr 60.40 MiB -1 -1 0.21 20664 9 0.19 -1 -1 35724 -1 -1 22 25 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61852 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 22.0 MiB 0.25 805 60.4 MiB 0.06 0.00 4.64166 -83.489 -4.64166 4.64166 1.08 0.000248651 0.00019773 0.0147281 0.0119116 26 2575 50 6.55708e+06 265210 477104. 1650.88 2.43 0.0859855 0.0743637 1941 19 892 2479 161497 39084 5.1514 5.1514 -102.402 -5.1514 0 0 585099. 2024.56 0.30 0.06 0.0177214 0.0160074 111 102 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 8.18 vpr 61.32 MiB -1 -1 0.26 21184 12 0.37 -1 -1 35936 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62788 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 22.9 MiB 0.43 1487 61.3 MiB 0.07 0.00 6.21818 -131.346 -6.21818 6.21818 1.03 0.000377706 0.000304769 0.0194594 0.0162373 36 3736 23 6.55708e+06 397815 612192. 2118.31 3.58 0.181284 0.159024 3159 28 2046 6642 484525 144393 6.39184 6.39184 -147.372 -6.39184 0 0 782063. 2706.10 0.36 0.17 0.0413066 0.0370873 212 205 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.04 vpr 61.28 MiB -1 -1 0.29 21964 13 0.48 -1 -1 36096 -1 -1 30 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62752 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 22.8 MiB 0.44 1383 61.3 MiB 0.08 0.00 6.57056 -136.32 -6.57056 6.57056 1.05 0.000382162 0.000313522 0.0220078 0.0183819 42 3385 27 6.55708e+06 361650 701300. 2426.64 2.20 0.171127 0.150092 2847 14 1244 3869 209040 48623 7.13036 7.13036 -156.264 -7.13036 0 0 896083. 3100.63 0.43 0.08 0.027391 0.0252324 200 197 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.86 vpr 61.43 MiB -1 -1 0.18 21312 1 0.03 -1 -1 33184 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62908 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 23.0 MiB 0.31 1144 61.4 MiB 0.12 0.00 4.42712 -134.268 -4.42712 4.42712 1.04 0.000245402 0.000200623 0.0213468 0.0175046 28 2679 21 6.64007e+06 401856 500653. 1732.36 1.03 0.0768726 0.0660192 2214 21 1488 2211 145397 33391 4.29189 4.29189 -150.513 -4.29189 0 0 612192. 2118.31 0.30 0.07 0.0198035 0.0176971 154 47 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.05 vpr 60.92 MiB -1 -1 0.19 21388 1 0.02 -1 -1 33208 -1 -1 24 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62380 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 22.5 MiB 0.28 1022 60.9 MiB 0.10 0.00 3.79642 -118.938 -3.79642 3.79642 1.09 0.000250129 0.000201627 0.0201186 0.0165179 32 2358 20 6.64007e+06 301392 554710. 1919.41 1.04 0.0716689 0.0612454 2056 20 1475 2280 141719 33890 4.10969 4.10969 -141.38 -4.10969 0 0 701300. 2426.64 0.35 0.07 0.0197571 0.0177483 139 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.94 vpr 61.06 MiB -1 -1 0.18 21200 1 0.02 -1 -1 33072 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62524 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 22.5 MiB 0.30 1019 61.1 MiB 0.10 0.00 3.57676 -105.809 -3.57676 3.57676 1.08 0.000239142 0.000196502 0.0184028 0.0152947 32 2254 18 6.64007e+06 288834 554710. 1919.41 0.97 0.0585804 0.049904 1983 21 1112 1570 110345 25700 3.65463 3.65463 -119.809 -3.65463 0 0 701300. 2426.64 0.35 0.06 0.0172104 0.0154124 126 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.73 vpr 61.03 MiB -1 -1 0.18 21284 1 0.01 -1 -1 33260 -1 -1 27 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62492 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 22.6 MiB 0.10 874 61.0 MiB 0.10 0.00 3.62076 -96.9227 -3.62076 3.62076 1.07 0.000241397 0.000197774 0.0176506 0.0146113 28 2219 22 6.64007e+06 339066 500653. 1732.36 1.06 0.0666783 0.0573438 1809 23 1376 2589 166253 38834 3.63163 3.63163 -115.496 -3.63163 0 0 612192. 2118.31 0.31 0.07 0.0171728 0.0151652 126 25 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.64 vpr 61.11 MiB -1 -1 0.15 21344 1 0.02 -1 -1 33160 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62580 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 22.6 MiB 0.08 771 61.1 MiB 0.06 0.00 3.68447 -104.181 -3.68447 3.68447 1.00 0.000239183 0.000196156 0.0128193 0.0107459 32 2760 32 6.64007e+06 288834 554710. 1919.41 1.19 0.0766325 0.0665907 2082 23 1570 2854 200082 49661 3.97523 3.97523 -126.559 -3.97523 0 0 701300. 2426.64 0.33 0.08 0.0211741 0.0188572 130 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.82 vpr 61.23 MiB -1 -1 0.17 21388 1 0.02 -1 -1 33096 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62704 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 22.9 MiB 0.13 872 61.2 MiB 0.12 0.00 2.68419 -92.5306 -2.68419 2.68419 1.06 0.000270977 0.000220205 0.0226529 0.0186244 30 2236 21 6.64007e+06 426972 526063. 1820.29 1.07 0.0793925 0.0680186 1651 19 1099 1866 95319 24385 2.84697 2.84697 -109.993 -2.84697 0 0 666494. 2306.21 0.33 0.05 0.0184246 0.0164531 142 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.62 vpr 60.36 MiB -1 -1 0.18 21116 1 0.02 -1 -1 33392 -1 -1 19 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61808 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 21.9 MiB 0.11 637 60.4 MiB 0.08 0.00 3.15021 -83.3249 -3.15021 3.15021 1.06 0.000202632 0.000163845 0.0171579 0.0141675 32 1566 19 6.64007e+06 238602 554710. 1919.41 0.96 0.0541533 0.0459221 1420 21 944 1564 120997 26899 2.90377 2.90377 -95.8009 -2.90377 0 0 701300. 2426.64 0.33 0.05 0.0134588 0.0118907 93 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.67 vpr 60.86 MiB -1 -1 0.18 20796 1 0.02 -1 -1 33144 -1 -1 31 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62320 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 22.2 MiB 0.09 985 60.9 MiB 0.11 0.00 2.7039 -82.3977 -2.7039 2.7039 1.06 0.000210465 0.000170112 0.0179228 0.0148286 32 2067 24 6.64007e+06 389298 554710. 1919.41 0.96 0.0580803 0.0494154 1814 19 907 1677 113431 25922 2.67357 2.67357 -96.8803 -2.67357 0 0 701300. 2426.64 0.35 0.05 0.0150297 0.0134431 115 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.80 vpr 61.03 MiB -1 -1 0.19 21288 1 0.01 -1 -1 33136 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62496 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 22.6 MiB 0.26 911 61.0 MiB 0.08 0.00 2.88585 -98.5937 -2.88585 2.88585 1.07 0.000228831 0.00018569 0.0159467 0.0131509 32 2050 17 6.64007e+06 251160 554710. 1919.41 0.92 0.0473678 0.0403487 1754 21 1104 1650 116935 27040 2.94797 2.94797 -113.095 -2.94797 0 0 701300. 2426.64 0.35 0.05 0.0160445 0.0142534 111 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.84 vpr 60.89 MiB -1 -1 0.17 20840 1 0.01 -1 -1 33160 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62352 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 22.3 MiB 0.19 866 60.9 MiB 0.07 0.00 3.13721 -106.149 -3.13721 3.13721 1.06 0.000233393 0.000191769 0.0137275 0.0114338 32 1847 22 6.64007e+06 213486 554710. 1919.41 0.99 0.056813 0.0487496 1710 18 1005 1595 103365 23809 2.80297 2.80297 -114.206 -2.80297 0 0 701300. 2426.64 0.35 0.05 0.0146934 0.0131788 112 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.70 vpr 60.87 MiB -1 -1 0.18 21380 1 0.01 -1 -1 33188 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62328 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 22.3 MiB 0.16 636 60.9 MiB 0.07 0.00 3.34441 -89.1281 -3.34441 3.34441 1.08 0.000214945 0.000172844 0.0136872 0.0112119 32 1560 19 6.64007e+06 213486 554710. 1919.41 0.96 0.0527921 0.0447341 1312 20 755 1182 71853 18585 2.91296 2.91296 -97.7025 -2.91296 0 0 701300. 2426.64 0.34 0.05 0.0151234 0.0134008 98 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.65 vpr 60.91 MiB -1 -1 0.17 20972 1 0.02 -1 -1 33056 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62376 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 22.3 MiB 0.30 933 60.9 MiB 0.09 0.00 3.1127 -101.894 -3.1127 3.1127 1.03 0.00020617 0.00016781 0.0172457 0.0141821 30 1944 19 6.64007e+06 226044 526063. 1820.29 0.89 0.0546906 0.0464485 1693 20 833 1135 78206 17160 2.80597 2.80597 -108.45 -2.80597 0 0 666494. 2306.21 0.33 0.04 0.0145434 0.0129776 109 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.02 vpr 61.34 MiB -1 -1 0.18 21236 1 0.01 -1 -1 33048 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 22.9 MiB 0.30 1033 61.3 MiB 0.13 0.00 3.45707 -114.353 -3.45707 3.45707 1.05 0.000254756 0.000206807 0.0232697 0.01926 32 2429 21 6.64007e+06 301392 554710. 1919.41 1.03 0.0731137 0.0625035 1976 21 1623 2420 151194 36222 3.21363 3.21363 -123.76 -3.21363 0 0 701300. 2426.64 0.35 0.07 0.02039 0.0183349 139 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.71 vpr 61.13 MiB -1 -1 0.16 21440 1 0.02 -1 -1 33060 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62600 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 22.7 MiB 0.17 990 61.1 MiB 0.10 0.00 4.00586 -115.223 -4.00586 4.00586 1.03 0.000270619 0.000213527 0.0181464 0.0149958 26 2483 28 6.64007e+06 389298 477104. 1650.88 1.04 0.0795577 0.0683187 2162 21 1486 2468 168728 38836 4.25343 4.25343 -143.672 -4.25343 0 0 585099. 2024.56 0.29 0.07 0.0205589 0.0183249 134 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.63 vpr 60.71 MiB -1 -1 0.17 20888 1 0.01 -1 -1 33160 -1 -1 21 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62164 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 22.3 MiB 0.11 837 60.7 MiB 0.07 0.00 2.68419 -78.1 -2.68419 2.68419 1.08 0.000179657 0.000144919 0.0128745 0.0105376 32 1641 19 6.64007e+06 263718 554710. 1919.41 0.95 0.0467768 0.0397498 1572 17 807 1335 88447 20476 2.84797 2.84797 -94.6258 -2.84797 0 0 701300. 2426.64 0.36 0.04 0.0122891 0.0110524 98 21 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.81 vpr 61.03 MiB -1 -1 0.18 21164 1 0.02 -1 -1 33068 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62492 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 22.6 MiB 0.18 1053 61.0 MiB 0.07 0.00 3.1755 -103.43 -3.1755 3.1755 1.07 0.000282144 0.000232603 0.0142703 0.0119982 28 2505 23 6.64007e+06 276276 500653. 1732.36 1.07 0.0745748 0.0645719 2194 18 1086 1941 131394 29889 3.00997 3.00997 -119.961 -3.00997 0 0 612192. 2118.31 0.31 0.06 0.0189759 0.0170674 133 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.14 vpr 61.03 MiB -1 -1 0.19 21388 1 0.01 -1 -1 33216 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62492 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 22.6 MiB 0.30 982 61.0 MiB 0.08 0.00 3.57727 -115.106 -3.57727 3.57727 1.07 0.00027242 0.000218104 0.0140183 0.0116002 32 2371 49 6.64007e+06 288834 554710. 1919.41 1.21 0.0803829 0.0691808 2059 20 1303 1953 138598 34210 3.47323 3.47323 -129.328 -3.47323 0 0 701300. 2426.64 0.35 0.07 0.0187104 0.0167946 138 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.29 vpr 61.11 MiB -1 -1 0.15 21132 1 0.01 -1 -1 33112 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62572 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 22.7 MiB 0.13 894 61.1 MiB 0.10 0.00 2.24964 -85.439 -2.24964 2.24964 0.98 0.000222701 0.000180295 0.0190138 0.0156063 28 1936 20 6.64007e+06 364182 500653. 1732.36 0.86 0.0614431 0.0522229 1723 18 936 1563 105682 24199 2.24871 2.24871 -97.2009 -2.24871 0 0 612192. 2118.31 0.29 0.05 0.0154774 0.0138221 110 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.61 vpr 60.31 MiB -1 -1 0.17 21064 1 0.01 -1 -1 33096 -1 -1 15 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61756 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 21.8 MiB 0.05 637 60.3 MiB 0.03 0.00 1.99153 -69.3416 -1.99153 1.99153 1.06 0.000165404 0.000134254 0.00588845 0.00487181 26 1604 21 6.64007e+06 188370 477104. 1650.88 1.14 0.041778 0.0360627 1396 19 679 964 88054 19434 2.32271 2.32271 -92.0395 -2.32271 0 0 585099. 2024.56 0.30 0.04 0.0112837 0.0100088 81 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.77 vpr 61.05 MiB -1 -1 0.18 21128 1 0.01 -1 -1 33200 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62520 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 22.6 MiB 0.28 811 61.1 MiB 0.10 0.00 4.05707 -122.097 -4.05707 4.05707 1.03 0.000217472 0.000173351 0.0201654 0.0163785 32 2052 19 6.64007e+06 251160 554710. 1919.41 0.96 0.0576369 0.0486143 1765 21 1017 1519 127455 28131 3.67043 3.67043 -131.814 -3.67043 0 0 701300. 2426.64 0.33 0.05 0.0151058 0.0134233 128 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.78 vpr 61.32 MiB -1 -1 0.18 21340 1 0.02 -1 -1 33236 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 22.7 MiB 0.07 952 61.3 MiB 0.09 0.00 3.37136 -107.749 -3.37136 3.37136 1.08 0.000260866 0.000213368 0.0155062 0.0128536 32 2175 24 6.64007e+06 389298 554710. 1919.41 1.01 0.0649561 0.0556596 1954 21 1393 2268 162782 36956 3.60843 3.60843 -128.605 -3.60843 0 0 701300. 2426.64 0.35 0.07 0.0186587 0.0166333 135 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.08 vpr 60.87 MiB -1 -1 0.19 21304 1 0.02 -1 -1 33212 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62332 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 22.5 MiB 0.33 1223 60.9 MiB 0.12 0.00 3.65022 -115.178 -3.65022 3.65022 1.06 0.000264993 0.000215383 0.0232253 0.0191853 32 2686 27 6.64007e+06 313950 554710. 1919.41 1.05 0.0788724 0.0670733 2352 22 1561 2482 180952 40092 3.87403 3.87403 -133.798 -3.87403 0 0 701300. 2426.64 0.35 0.08 0.0219146 0.0195802 144 59 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.62 vpr 60.36 MiB -1 -1 0.17 20888 1 0.01 -1 -1 33184 -1 -1 18 26 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61808 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 21.8 MiB 0.19 415 60.4 MiB 0.05 0.00 1.89953 -53.1596 -1.89953 1.89953 1.08 0.000140756 0.000112095 0.00967001 0.00790772 28 1253 34 6.64007e+06 226044 500653. 1732.36 0.95 0.041741 0.0353688 968 15 482 648 51217 13432 2.09451 2.09451 -67.9552 -2.09451 0 0 612192. 2118.31 0.31 0.03 0.0083864 0.00747181 77 21 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 5.07 vpr 61.14 MiB -1 -1 0.18 20724 1 0.02 -1 -1 33192 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62604 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 22.5 MiB 0.06 941 61.1 MiB 0.07 0.00 4.21626 -105.045 -4.21626 4.21626 1.07 0.000226386 0.000184838 0.0111778 0.0093471 26 2479 30 6.64007e+06 263718 477104. 1650.88 1.48 0.0659523 0.0573842 1990 22 1283 2398 163811 40411 3.99703 3.99703 -130.068 -3.99703 0 0 585099. 2024.56 0.29 0.07 0.0162404 0.0144314 118 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.34 vpr 60.31 MiB -1 -1 0.14 20436 1 0.01 -1 -1 32996 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61760 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 21.8 MiB 0.13 437 60.3 MiB 0.05 0.00 2.20793 -62.2816 -2.20793 2.20793 1.03 0.000165693 0.000129102 0.0104278 0.00844057 30 1145 24 6.64007e+06 175812 526063. 1820.29 0.87 0.0359648 0.0301585 945 19 479 534 30429 8649 2.26251 2.26251 -73.1983 -2.26251 0 0 666494. 2306.21 0.33 0.03 0.00889582 0.00784197 79 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 6.95 vpr 61.04 MiB -1 -1 0.17 20976 1 0.02 -1 -1 33232 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62508 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 22.5 MiB 0.07 842 61.0 MiB 0.09 0.00 3.56127 -99.7989 -3.56127 3.56127 1.08 0.000249177 0.000201708 0.014331 0.0117017 28 2249 26 6.64007e+06 376740 500653. 1732.36 3.32 0.125381 0.108192 1804 19 995 1684 109275 27071 3.53223 3.53223 -114.279 -3.53223 0 0 612192. 2118.31 0.31 0.05 0.0159213 0.0142434 123 21 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.62 vpr 60.80 MiB -1 -1 0.17 20664 1 0.02 -1 -1 33240 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62260 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 22.3 MiB 0.06 1040 60.8 MiB 0.08 0.00 3.0905 -92.1141 -3.0905 3.0905 1.07 0.00023667 0.000189818 0.0138848 0.0113714 26 2519 21 6.64007e+06 389298 477104. 1650.88 1.01 0.0605136 0.051936 2086 21 1262 2249 162779 38124 2.95617 2.95617 -110.976 -2.95617 0 0 585099. 2024.56 0.30 0.06 0.017269 0.0153588 128 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.86 vpr 61.26 MiB -1 -1 0.19 21344 1 0.02 -1 -1 33016 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 22.7 MiB 0.15 1036 61.3 MiB 0.13 0.00 3.69347 -110.65 -3.69347 3.69347 1.08 0.000265838 0.000218593 0.0240362 0.0198794 26 2492 21 6.64007e+06 339066 477104. 1650.88 1.09 0.0792155 0.0682947 2078 19 1404 2381 146528 35206 3.76663 3.76663 -130.723 -3.76663 0 0 585099. 2024.56 0.30 0.06 0.0185504 0.0166709 126 47 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.61 vpr 60.83 MiB -1 -1 0.17 21052 1 0.01 -1 -1 33112 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62292 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 22.3 MiB 0.09 866 60.8 MiB 0.06 0.00 2.42079 -85.9019 -2.42079 2.42079 1.08 0.000218743 0.000178825 0.0119051 0.00996189 32 1870 16 6.64007e+06 200928 554710. 1919.41 0.96 0.0489301 0.0418112 1673 16 880 1421 101189 23561 2.80797 2.80797 -106.908 -2.80797 0 0 701300. 2426.64 0.34 0.05 0.0134573 0.0121101 101 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.60 vpr 60.85 MiB -1 -1 0.18 21116 1 0.01 -1 -1 33240 -1 -1 23 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62308 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 22.4 MiB 0.09 654 60.8 MiB 0.06 0.00 2.64019 -78.9041 -2.64019 2.64019 1.08 0.000219305 0.000181327 0.0111939 0.00935176 32 1590 21 6.64007e+06 288834 554710. 1919.41 0.96 0.0468464 0.0399719 1424 16 685 1045 83274 18740 2.81497 2.81497 -94.9262 -2.81497 0 0 701300. 2426.64 0.35 0.04 0.0117908 0.0105925 97 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.58 vpr 60.86 MiB -1 -1 0.16 20840 1 0.01 -1 -1 33128 -1 -1 23 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62324 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 22.4 MiB 0.06 747 60.9 MiB 0.09 0.00 2.7229 -79.2545 -2.7229 2.7229 1.00 0.000185389 0.000151544 0.0173749 0.0144637 26 1920 21 6.64007e+06 288834 477104. 1650.88 1.26 0.0654982 0.056996 1590 19 988 1655 123454 27945 2.77577 2.77577 -95.5151 -2.77577 0 0 585099. 2024.56 0.28 0.05 0.0128675 0.0114472 98 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.55 vpr 60.95 MiB -1 -1 0.17 20676 1 0.02 -1 -1 33060 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62416 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 22.5 MiB 0.06 733 61.0 MiB 0.05 0.00 3.07321 -91.1707 -3.07321 3.07321 1.06 0.00022008 0.000180802 0.00997047 0.00835731 32 1798 22 6.64007e+06 238602 554710. 1919.41 0.97 0.04769 0.0407323 1584 20 1083 1784 115653 28073 2.76177 2.76177 -102.932 -2.76177 0 0 701300. 2426.64 0.34 0.05 0.0138926 0.0122667 110 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.55 vpr 60.67 MiB -1 -1 0.17 21064 1 0.03 -1 -1 33112 -1 -1 27 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62128 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 22.1 MiB 0.06 739 60.7 MiB 0.05 0.00 2.8301 -85.8001 -2.8301 2.8301 1.05 0.00020402 0.000165258 0.00839863 0.00696647 24 1919 22 6.64007e+06 339066 448715. 1552.65 1.06 0.0507513 0.0436871 1657 23 1090 1820 119920 28830 3.07917 3.07917 -106.776 -3.07917 0 0 554710. 1919.41 0.26 0.05 0.0146525 0.0127781 103 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.61 vpr 61.07 MiB -1 -1 0.19 21404 1 0.02 -1 -1 33084 -1 -1 26 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62532 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 22.5 MiB 0.16 725 61.1 MiB 0.07 0.00 2.6377 -82.6894 -2.6377 2.6377 1.06 0.000208126 0.000171474 0.0122015 0.00998828 30 1632 20 6.64007e+06 326508 526063. 1820.29 0.92 0.04927 0.0416521 1421 15 705 1070 47247 12643 2.24277 2.24277 -90.3687 -2.24277 0 0 666494. 2306.21 0.34 0.04 0.0126683 0.0114315 105 48 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.88 vpr 61.24 MiB -1 -1 0.19 21104 1 0.02 -1 -1 33060 -1 -1 38 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62708 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 22.6 MiB 0.17 1125 61.2 MiB 0.12 0.00 3.51556 -101.432 -3.51556 3.51556 1.06 0.000295297 0.000244291 0.0201539 0.0168015 30 2538 21 6.64007e+06 477204 526063. 1820.29 1.06 0.0763414 0.0656891 2055 17 1098 2065 111367 25506 3.80982 3.80982 -116.818 -3.80982 0 0 666494. 2306.21 0.33 0.05 0.0177927 0.0160437 151 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.67 vpr 61.39 MiB -1 -1 0.17 21036 1 0.02 -1 -1 33212 -1 -1 37 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62868 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 22.8 MiB 0.16 1004 61.4 MiB 0.13 0.00 3.11521 -106.321 -3.11521 3.11521 1.01 0.000275745 0.000226168 0.0240064 0.0196744 32 2083 19 6.64007e+06 464646 554710. 1919.41 0.97 0.0734356 0.0620471 1861 21 1534 2479 149322 34308 2.91297 2.91297 -115.302 -2.91297 0 0 701300. 2426.64 0.33 0.07 0.0207302 0.0183675 147 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.80 vpr 60.96 MiB -1 -1 0.18 21212 1 0.02 -1 -1 33224 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62420 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 22.3 MiB 0.29 890 61.0 MiB 0.10 0.00 3.36107 -101.91 -3.36107 3.36107 1.06 0.000206538 0.00016673 0.0183888 0.0151873 28 2001 19 6.64007e+06 238602 500653. 1732.36 0.97 0.0596638 0.0510469 1786 20 1217 1770 120925 27643 3.09463 3.09463 -112.202 -3.09463 0 0 612192. 2118.31 0.31 0.05 0.0151675 0.0135054 112 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.85 vpr 61.37 MiB -1 -1 0.19 21152 1 0.01 -1 -1 33172 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 22.9 MiB 0.15 1100 61.4 MiB 0.08 0.00 3.41261 -107.064 -3.41261 3.41261 1.08 0.000261134 0.000210863 0.0135495 0.0112332 32 2461 23 6.64007e+06 313950 554710. 1919.41 1.04 0.0652156 0.055834 2212 18 1305 2256 151180 34698 2.92197 2.92197 -118.776 -2.92197 0 0 701300. 2426.64 0.34 0.06 0.0176424 0.0158125 138 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.66 vpr 61.34 MiB -1 -1 0.20 21300 1 0.02 -1 -1 33128 -1 -1 29 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62808 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 23.3 MiB 0.47 1149 61.3 MiB 0.14 0.00 4.71198 -138.615 -4.71198 4.71198 1.07 0.000282352 0.000231094 0.0240729 0.0199908 30 3144 27 6.64007e+06 364182 526063. 1820.29 1.47 0.0911607 0.0793149 2299 19 1631 2386 142259 32868 4.52575 4.52575 -156.994 -4.52575 0 0 666494. 2306.21 0.34 0.06 0.0184967 0.0165511 172 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.19 vpr 61.43 MiB -1 -1 0.19 21248 1 0.02 -1 -1 33280 -1 -1 27 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62904 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 23.0 MiB 0.42 1020 61.4 MiB 0.12 0.00 4.12201 -120.176 -4.12201 4.12201 1.06 0.000274949 0.000225066 0.0248875 0.020427 32 2543 23 6.64007e+06 339066 554710. 1919.41 1.07 0.0810859 0.0691902 2149 22 1656 2617 170357 40669 4.42128 4.42128 -143.072 -4.42128 0 0 701300. 2426.64 0.35 0.08 0.0224885 0.0202072 164 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.09 vpr 61.18 MiB -1 -1 0.20 21100 1 0.01 -1 -1 33200 -1 -1 31 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62652 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 22.8 MiB 0.16 1036 61.2 MiB 0.10 0.00 3.70647 -110.255 -3.70647 3.70647 1.06 0.000283189 0.000225731 0.0165437 0.0138112 26 2607 31 6.64007e+06 389298 477104. 1650.88 1.37 0.0838086 0.073008 2098 20 1181 1950 122921 28786 3.33636 3.33636 -121.941 -3.33636 0 0 585099. 2024.56 0.30 0.06 0.017714 0.0157612 135 51 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.59 vpr 61.11 MiB -1 -1 0.18 21520 1 0.02 -1 -1 33044 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62572 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 22.7 MiB 0.27 1084 61.1 MiB 0.11 0.00 3.46356 -97.9728 -3.46356 3.46356 1.08 0.000236744 0.000193692 0.0187098 0.0154217 26 2822 28 6.64007e+06 288834 477104. 1650.88 1.77 0.0754718 0.0654252 2274 22 1294 1876 166182 38002 3.72063 3.72063 -123.822 -3.72063 0 0 585099. 2024.56 0.29 0.07 0.0177749 0.0158838 119 24 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 5.09 vpr 61.46 MiB -1 -1 0.20 21656 1 0.02 -1 -1 33356 -1 -1 40 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62932 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 23.4 MiB 0.23 1259 61.5 MiB 0.12 0.00 4.27193 -136.355 -4.27193 4.27193 1.09 0.000505427 0.000427977 0.019879 0.0169 28 3151 21 6.64007e+06 502320 500653. 1732.36 1.16 0.0933315 0.0813304 2631 23 1715 2694 181913 40957 4.34709 4.34709 -156.749 -4.34709 0 0 612192. 2118.31 0.31 0.09 0.0270266 0.024141 174 84 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.45 vpr 60.39 MiB -1 -1 0.18 21012 1 0.02 -1 -1 33168 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61840 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 21.9 MiB 0.10 729 60.4 MiB 0.04 0.00 3.1015 -83.8468 -3.1015 3.1015 1.00 0.000194278 0.000158654 0.00719455 0.00611865 26 1976 21 6.64007e+06 263718 477104. 1650.88 1.01 0.0524119 0.0458333 1616 21 1076 1775 119013 28530 2.88897 2.88897 -104.247 -2.88897 0 0 585099. 2024.56 0.28 0.05 0.0130472 0.011534 101 24 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.84 vpr 61.40 MiB -1 -1 0.19 21148 1 0.02 -1 -1 33168 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62872 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 23.0 MiB 0.30 1204 61.4 MiB 0.09 0.00 4.15901 -128.896 -4.15901 4.15901 1.07 0.00027706 0.000230875 0.0142191 0.0118107 26 3092 23 6.64007e+06 313950 477104. 1650.88 1.97 0.0716875 0.0623585 2513 21 1594 2306 169259 38245 4.34908 4.34908 -148.887 -4.34908 0 0 585099. 2024.56 0.29 0.07 0.0187472 0.01672 144 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.80 vpr 61.00 MiB -1 -1 0.19 21236 1 0.02 -1 -1 33132 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62464 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 22.3 MiB 0.16 968 61.0 MiB 0.09 0.00 3.1757 -96.2159 -3.1757 3.1757 1.06 0.000258194 0.000210422 0.0143155 0.0117724 30 2376 24 6.64007e+06 414414 526063. 1820.29 1.04 0.064581 0.055186 1859 20 965 1817 100280 24205 3.08817 3.08817 -110.664 -3.08817 0 0 666494. 2306.21 0.33 0.05 0.0175682 0.0156824 131 50 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.70 vpr 60.91 MiB -1 -1 0.17 20780 1 0.01 -1 -1 33096 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62368 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 22.5 MiB 0.06 987 60.9 MiB 0.10 0.00 3.34016 -103.942 -3.34016 3.34016 1.07 0.000246177 0.000203246 0.0183296 0.0152612 32 2270 21 6.64007e+06 301392 554710. 1919.41 1.00 0.062018 0.0529848 2001 20 1015 1981 144345 31362 3.47223 3.47223 -121.729 -3.47223 0 0 701300. 2426.64 0.35 0.06 0.0163424 0.0145981 123 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.96 vpr 61.37 MiB -1 -1 0.19 21396 1 0.02 -1 -1 33232 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62840 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 22.9 MiB 0.36 1055 61.4 MiB 0.11 0.00 3.67818 -111.143 -3.67818 3.67818 1.07 0.000253844 0.000205604 0.0210958 0.017462 32 2460 19 6.64007e+06 301392 554710. 1919.41 0.96 0.0690325 0.058796 2093 15 1097 1538 108564 25441 3.51743 3.51743 -122.531 -3.51743 0 0 701300. 2426.64 0.34 0.05 0.0160503 0.0145034 138 52 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.85 vpr 61.41 MiB -1 -1 0.16 21440 1 0.01 -1 -1 33148 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62888 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 23.0 MiB 0.17 949 61.4 MiB 0.07 0.00 2.9943 -97.1911 -2.9943 2.9943 1.02 0.000250675 0.000206344 0.012743 0.0106298 26 2567 26 6.64007e+06 401856 477104. 1650.88 1.29 0.0739623 0.0639729 2177 17 1192 2091 143105 33208 3.21337 3.21337 -119.881 -3.21337 0 0 585099. 2024.56 0.29 0.06 0.0170563 0.015251 133 52 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.90 vpr 60.86 MiB -1 -1 0.18 21164 1 0.02 -1 -1 33048 -1 -1 37 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62320 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 22.4 MiB 0.17 977 60.9 MiB 0.15 0.00 3.82667 -116.042 -3.82667 3.82667 1.06 0.000270623 0.000220936 0.0254385 0.020902 32 2264 19 6.64007e+06 464646 554710. 1919.41 1.03 0.0743328 0.0630186 1912 19 1112 1689 111022 26009 3.35082 3.35082 -121.175 -3.35082 0 0 701300. 2426.64 0.35 0.06 0.0190135 0.016989 145 59 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.83 vpr 61.21 MiB -1 -1 0.17 21076 1 0.01 -1 -1 33132 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62684 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 22.8 MiB 0.08 927 61.2 MiB 0.12 0.00 3.41236 -101.385 -3.41236 3.41236 1.07 0.000223728 0.000179225 0.0208796 0.0170414 28 2232 20 6.64007e+06 364182 500653. 1732.36 1.17 0.0712739 0.0613445 1908 20 1188 2068 136685 31165 3.69143 3.69143 -121.241 -3.69143 0 0 612192. 2118.31 0.30 0.06 0.016484 0.0146853 122 21 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.82 vpr 61.20 MiB -1 -1 0.17 21404 1 0.02 -1 -1 33108 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62668 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 22.7 MiB 0.27 1145 61.2 MiB 0.08 0.00 4.08226 -117.582 -4.08226 4.08226 1.06 0.000258186 0.000213561 0.0150655 0.0125462 32 2308 17 6.64007e+06 301392 554710. 1919.41 0.96 0.0564571 0.0483578 2106 17 1001 1427 94523 22745 3.70662 3.70662 -130.993 -3.70662 0 0 701300. 2426.64 0.34 0.05 0.0159498 0.0144347 133 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.07 vpr 61.26 MiB -1 -1 0.20 21380 1 0.02 -1 -1 33232 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62732 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 22.8 MiB 0.34 1114 61.3 MiB 0.09 0.00 4.03253 -121.196 -4.03253 4.03253 1.07 0.000289164 0.000240476 0.0167147 0.0139172 32 2754 19 6.64007e+06 313950 554710. 1919.41 1.05 0.0674949 0.0580015 2423 20 1455 2379 184041 40756 4.00949 4.00949 -139.018 -4.00949 0 0 701300. 2426.64 0.34 0.07 0.0192255 0.0171115 148 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.83 vpr 61.38 MiB -1 -1 0.19 21212 1 0.01 -1 -1 33048 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 22.9 MiB 0.19 1172 61.4 MiB 0.10 0.00 3.49656 -114.513 -3.49656 3.49656 1.06 0.000426574 0.00036204 0.0188015 0.0156529 30 2476 19 6.64007e+06 276276 526063. 1820.29 1.01 0.071306 0.0611273 2264 18 1167 2075 119784 27952 3.44222 3.44222 -125.703 -3.44222 0 0 666494. 2306.21 0.34 0.06 0.0185803 0.0166515 136 74 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.51 vpr 60.82 MiB -1 -1 0.17 21064 1 0.02 -1 -1 33108 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62280 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 22.4 MiB 0.06 668 60.8 MiB 0.06 0.00 2.7229 -79.1459 -2.7229 2.7229 1.06 0.000199821 0.000160518 0.0104439 0.00871775 32 1644 20 6.64007e+06 301392 554710. 1919.41 0.95 0.0444928 0.0380064 1408 16 682 1107 76155 17809 2.68377 2.68377 -90.2454 -2.68377 0 0 701300. 2426.64 0.35 0.04 0.0120075 0.0108166 97 20 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.96 vpr 61.28 MiB -1 -1 0.18 21208 1 0.02 -1 -1 33212 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62748 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 22.7 MiB 0.30 927 61.3 MiB 0.08 0.00 3.21396 -112.113 -3.21396 3.21396 1.08 0.000250736 0.000201403 0.0153864 0.0127879 32 2389 23 6.64007e+06 276276 554710. 1919.41 1.03 0.0663763 0.0570162 1978 21 1443 2008 150587 33560 3.24783 3.24783 -128.596 -3.24783 0 0 701300. 2426.64 0.35 0.07 0.0184549 0.0164693 127 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 6.44 vpr 61.14 MiB -1 -1 0.16 21400 1 0.02 -1 -1 33180 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62612 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 23.0 MiB 0.30 1133 61.1 MiB 0.12 0.00 4.28421 -128.197 -4.28421 4.28421 1.02 0.000271692 0.000220125 0.0240625 0.0197748 34 2944 22 6.64007e+06 364182 585099. 2024.56 2.57 0.144289 0.125167 2315 22 1716 2696 202789 55647 4.65248 4.65248 -155.72 -4.65248 0 0 742403. 2568.87 0.35 0.09 0.0235875 0.0211654 169 28 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.77 vpr 61.07 MiB -1 -1 0.18 21132 1 0.02 -1 -1 33128 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62532 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 22.6 MiB 0.15 916 61.1 MiB 0.08 0.00 3.62672 -109.004 -3.62672 3.62672 1.06 0.000247168 0.000200488 0.0130695 0.0108208 28 2275 24 6.64007e+06 401856 500653. 1732.36 1.08 0.0669859 0.0578817 1965 19 1042 1671 113770 26980 2.99717 2.99717 -116.877 -2.99717 0 0 612192. 2118.31 0.30 0.06 0.017793 0.0159261 133 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.83 vpr 60.86 MiB -1 -1 0.17 21032 1 0.02 -1 -1 33220 -1 -1 26 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62316 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 22.3 MiB 0.06 657 60.9 MiB 0.07 0.00 2.7859 -83.9496 -2.7859 2.7859 1.05 0.000229567 0.000190518 0.0142699 0.0118078 28 1905 22 6.64007e+06 326508 500653. 1732.36 1.29 0.0591502 0.0509704 1605 22 1024 1677 123743 30033 2.80397 2.80397 -103.273 -2.80397 0 0 612192. 2118.31 0.31 0.06 0.0160981 0.0142882 104 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.13 vpr 61.48 MiB -1 -1 0.21 21568 1 0.02 -1 -1 33260 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62956 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1336 61.5 MiB 0.13 0.00 5.15149 -153.382 -5.15149 5.15149 1.03 0.000307877 0.000251395 0.0237391 0.0195816 32 3196 22 6.64007e+06 339066 554710. 1919.41 1.06 0.082333 0.0703447 2744 22 2097 2943 204516 46391 5.05154 5.05154 -170.25 -5.05154 0 0 701300. 2426.64 0.34 0.09 0.0260359 0.0230533 170 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.80 vpr 60.79 MiB -1 -1 0.17 21104 1 0.02 -1 -1 33124 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62244 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 22.2 MiB 0.17 848 60.8 MiB 0.05 0.00 3.80067 -113.544 -3.80067 3.80067 1.06 0.000255114 0.000209117 0.00821513 0.00695045 32 2315 22 6.64007e+06 414414 554710. 1919.41 1.05 0.0553259 0.0476819 1933 19 1380 2169 154584 36214 3.55723 3.55723 -128.245 -3.55723 0 0 701300. 2426.64 0.34 0.07 0.0178241 0.0159279 130 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.86 vpr 60.68 MiB -1 -1 0.15 20700 1 0.01 -1 -1 32916 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62140 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 22.1 MiB 0.08 812 60.7 MiB 0.05 0.00 2.8441 -81.6152 -2.8441 2.8441 1.00 0.000181074 0.000145913 0.00892793 0.0073636 26 2186 50 6.64007e+06 288834 477104. 1650.88 1.52 0.0659207 0.0570016 1733 19 940 1664 128878 29110 3.03517 3.03517 -106.945 -3.03517 0 0 585099. 2024.56 0.29 0.05 0.0120061 0.0106504 100 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.79 vpr 61.24 MiB -1 -1 0.19 21328 1 0.02 -1 -1 33104 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62712 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 22.8 MiB 0.12 1106 61.2 MiB 0.13 0.00 4.67452 -117.254 -4.67452 4.67452 1.05 0.000260737 0.000210465 0.0232372 0.0191348 32 2415 21 6.64007e+06 426972 554710. 1919.41 1.00 0.0711127 0.0604587 2193 19 1063 2056 151181 33017 4.31888 4.31888 -128.404 -4.31888 0 0 701300. 2426.64 0.34 0.06 0.0182254 0.0163462 139 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.53 vpr 60.63 MiB -1 -1 0.16 20796 1 0.01 -1 -1 33108 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62088 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 22.1 MiB 0.06 669 60.6 MiB 0.04 0.00 2.8171 -84.6578 -2.8171 2.8171 1.05 0.000196127 0.000157907 0.00815735 0.00681497 32 1759 22 6.64007e+06 251160 554710. 1919.41 0.98 0.0441505 0.0378074 1542 23 1217 2058 137078 34142 2.74357 2.74357 -102.633 -2.74357 0 0 701300. 2426.64 0.34 0.06 0.0153769 0.0136362 104 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.61 vpr 60.87 MiB -1 -1 0.18 20772 1 0.02 -1 -1 33116 -1 -1 33 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62332 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 22.3 MiB 0.12 869 60.9 MiB 0.10 0.00 3.22421 -91.3166 -3.22421 3.22421 1.06 0.000216015 0.000175057 0.016929 0.0139202 30 1755 17 6.64007e+06 414414 526063. 1820.29 0.94 0.0533316 0.045228 1584 19 741 1413 71019 17402 2.71536 2.71536 -100.136 -2.71536 0 0 666494. 2306.21 0.34 0.04 0.0129488 0.011482 105 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.99 vpr 61.19 MiB -1 -1 0.18 21296 1 0.02 -1 -1 33252 -1 -1 26 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62660 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 22.8 MiB 0.34 1106 61.2 MiB 0.09 0.00 3.62147 -110.236 -3.62147 3.62147 1.05 0.000266427 0.00021796 0.0164623 0.0137049 28 2702 22 6.64007e+06 326508 500653. 1732.36 1.08 0.0703609 0.0605984 2290 19 1353 2115 137650 31919 3.76782 3.76782 -128.399 -3.76782 0 0 612192. 2118.31 0.30 0.06 0.0186233 0.0167054 139 56 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.72 vpr 60.80 MiB -1 -1 0.19 21200 1 0.02 -1 -1 33080 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62264 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 22.2 MiB 0.14 928 60.8 MiB 0.06 0.00 3.64276 -111.909 -3.64276 3.64276 1.05 0.000279861 0.000231465 0.0123021 0.0103382 32 2169 22 6.64007e+06 301392 554710. 1919.41 1.00 0.0602826 0.0516147 1869 20 1524 2362 160449 37715 3.78163 3.78163 -131.444 -3.78163 0 0 701300. 2426.64 0.34 0.07 0.0183517 0.0163636 130 51 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.82 vpr 61.38 MiB -1 -1 0.17 21164 1 0.02 -1 -1 33132 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62852 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 22.7 MiB 0.15 1068 61.4 MiB 0.11 0.00 3.83895 -116.452 -3.83895 3.83895 1.05 0.000256283 0.000208903 0.0206961 0.0169491 28 2587 20 6.64007e+06 351624 500653. 1732.36 1.12 0.076325 0.0656631 2206 16 1027 1797 128445 28322 3.66242 3.66242 -131.016 -3.66242 0 0 612192. 2118.31 0.31 0.06 0.016751 0.0151441 133 48 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 6.05 vpr 60.84 MiB -1 -1 0.18 20888 1 0.02 -1 -1 33056 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62300 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 22.3 MiB 0.31 751 60.8 MiB 0.09 0.00 3.67818 -105.131 -3.67818 3.67818 1.05 0.000221577 0.000181895 0.018088 0.014945 26 2826 42 6.64007e+06 213486 477104. 1650.88 2.21 0.078793 0.0682703 1905 22 1155 1615 171332 42153 3.57743 3.57743 -126.036 -3.57743 0 0 585099. 2024.56 0.30 0.07 0.0151738 0.013437 105 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.72 vpr 61.04 MiB -1 -1 0.17 21340 1 0.02 -1 -1 33200 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62508 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 22.6 MiB 0.28 946 61.0 MiB 0.10 0.00 3.12596 -102.642 -3.12596 3.12596 1.04 0.000216206 0.000174679 0.02012 0.0165131 32 2154 27 6.64007e+06 238602 554710. 1919.41 0.95 0.0633904 0.0535393 1880 19 1157 1743 113941 26678 3.08063 3.08063 -118.388 -3.08063 0 0 701300. 2426.64 0.33 0.05 0.0155335 0.01385 113 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.66 vpr 61.04 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33168 -1 -1 33 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62504 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 22.5 MiB 0.14 883 61.0 MiB 0.08 0.00 2.9203 -81.4807 -2.9203 2.9203 1.06 0.000231189 0.000188883 0.0137344 0.0113351 30 1926 25 6.64007e+06 414414 526063. 1820.29 0.95 0.0586166 0.049778 1667 17 802 1430 76189 18062 2.62157 2.62157 -91.8864 -2.62157 0 0 666494. 2306.21 0.33 0.04 0.0146093 0.0130108 123 52 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.66 vpr 60.99 MiB -1 -1 0.17 20992 1 0.01 -1 -1 33128 -1 -1 35 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62452 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 22.3 MiB 0.11 911 61.0 MiB 0.11 0.00 3.52655 -88.8718 -3.52655 3.52655 1.04 0.000235436 0.000189343 0.0182757 0.014779 26 2074 25 6.64007e+06 439530 477104. 1650.88 1.09 0.0610996 0.0517394 1768 19 961 1878 126720 28180 3.49542 3.49542 -101.885 -3.49542 0 0 585099. 2024.56 0.29 0.05 0.0139005 0.0122629 115 20 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.22 vpr 61.20 MiB -1 -1 0.19 21236 1 0.02 -1 -1 33188 -1 -1 18 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62664 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 22.8 MiB 0.17 830 61.2 MiB 0.09 0.00 3.29461 -95.5943 -3.29461 3.29461 1.07 0.000234985 0.000184439 0.0174335 0.0142699 26 2187 21 6.64007e+06 226044 477104. 1650.88 1.52 0.0688935 0.0594261 1718 16 1106 1831 126653 28623 2.92297 2.92297 -109.733 -2.92297 0 0 585099. 2024.56 0.29 0.05 0.0136777 0.0121763 108 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.66 vpr 61.20 MiB -1 -1 0.17 21444 1 0.01 -1 -1 33088 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62672 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 22.6 MiB 0.27 992 61.2 MiB 0.09 0.00 3.14796 -108.689 -3.14796 3.14796 1.01 0.000256032 0.000209752 0.0177278 0.0145758 32 2318 19 6.64007e+06 263718 554710. 1919.41 0.94 0.0602332 0.0510277 2012 19 1278 1881 139318 31448 3.19283 3.19283 -125.425 -3.19283 0 0 701300. 2426.64 0.33 0.06 0.0157733 0.0139773 121 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.67 vpr 60.97 MiB -1 -1 0.18 20796 1 0.01 -1 -1 33244 -1 -1 32 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62436 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 22.4 MiB 0.06 951 61.0 MiB 0.08 0.00 3.55327 -101.942 -3.55327 3.55327 1.06 0.000250437 0.000191196 0.0129549 0.0107718 32 2280 21 6.64007e+06 401856 554710. 1919.41 0.98 0.0550203 0.0468004 1995 19 1215 2072 135612 31406 3.56143 3.56143 -120.689 -3.56143 0 0 701300. 2426.64 0.35 0.06 0.0160416 0.0143757 127 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.02 vpr 61.32 MiB -1 -1 0.18 21296 1 0.02 -1 -1 33192 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62788 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 22.8 MiB 0.34 1127 61.3 MiB 0.09 0.00 4.34793 -138.997 -4.34793 4.34793 1.06 0.000267737 0.00021896 0.0149017 0.012429 32 2689 21 6.64007e+06 301392 554710. 1919.41 1.01 0.0640927 0.0551889 2233 23 1487 2123 142787 34145 4.45708 4.45708 -157.432 -4.45708 0 0 701300. 2426.64 0.34 0.07 0.020171 0.0179803 146 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.95 vpr 61.23 MiB -1 -1 0.19 21316 1 0.01 -1 -1 33056 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62704 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 22.7 MiB 0.23 1052 61.2 MiB 0.13 0.00 4.17072 -121.875 -4.17072 4.17072 1.05 0.000281437 0.000229097 0.0246962 0.0204122 32 2364 22 6.64007e+06 426972 554710. 1919.41 1.04 0.0769649 0.0654774 2074 21 1501 2517 159478 37661 3.79508 3.79508 -133.952 -3.79508 0 0 701300. 2426.64 0.34 0.07 0.0202349 0.0180566 144 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.62 vpr 61.33 MiB -1 -1 0.19 21240 1 0.02 -1 -1 33220 -1 -1 37 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62804 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 22.8 MiB 0.16 958 61.3 MiB 0.13 0.00 3.49607 -109.948 -3.49607 3.49607 1.08 0.000269399 0.000216369 0.0216102 0.0176316 28 3093 36 6.64007e+06 464646 500653. 1732.36 1.76 0.0975505 0.08439 2259 22 1489 2590 187196 46065 3.79283 3.79283 -133.215 -3.79283 0 0 612192. 2118.31 0.31 0.08 0.0213414 0.0189805 140 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.65 vpr 60.65 MiB -1 -1 0.18 20840 1 0.02 -1 -1 33104 -1 -1 19 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62108 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 22.1 MiB 0.13 704 60.7 MiB 0.06 0.00 3.00301 -88.6605 -3.00301 3.00301 1.07 0.00020369 0.000161623 0.0110473 0.00908907 30 1783 19 6.64007e+06 238602 526063. 1820.29 0.97 0.0492225 0.0419714 1513 21 921 1597 85439 21857 2.88297 2.88297 -103.213 -2.88297 0 0 666494. 2306.21 0.34 0.05 0.0147921 0.0131708 104 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.89 vpr 61.24 MiB -1 -1 0.19 21040 1 0.02 -1 -1 33272 -1 -1 23 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62708 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 22.8 MiB 0.18 935 61.2 MiB 0.11 0.00 3.80967 -112.743 -3.80967 3.80967 1.08 0.00026376 0.000215356 0.0231815 0.0190854 28 2262 21 6.64007e+06 288834 500653. 1732.36 1.05 0.0770523 0.0658495 1993 21 1583 2487 157047 37503 3.80703 3.80703 -131.709 -3.80703 0 0 612192. 2118.31 0.31 0.07 0.0203882 0.0181702 138 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.03 vpr 61.26 MiB -1 -1 0.19 21296 1 0.02 -1 -1 33180 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 22.8 MiB 0.30 1203 61.3 MiB 0.12 0.00 4.18044 -126.676 -4.18044 4.18044 1.09 0.000246221 0.000201446 0.0214915 0.0176895 30 2420 23 6.64007e+06 326508 526063. 1820.29 1.02 0.0690022 0.058706 2093 17 1059 1767 105438 24156 3.72389 3.72389 -133.582 -3.72389 0 0 666494. 2306.21 0.34 0.05 0.0153877 0.0138333 140 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.08 vpr 61.06 MiB -1 -1 0.18 21236 1 0.02 -1 -1 33168 -1 -1 30 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62528 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 22.6 MiB 0.33 1115 61.1 MiB 0.12 0.00 4.34441 -127.954 -4.34441 4.34441 1.08 0.000298215 0.000248711 0.0211296 0.0175901 32 2424 23 6.64007e+06 376740 554710. 1919.41 1.02 0.0712423 0.0609894 2174 21 1568 2391 159480 37010 4.41828 4.41828 -148.046 -4.41828 0 0 701300. 2426.64 0.35 0.07 0.0193039 0.0172916 148 43 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.96 vpr 61.07 MiB -1 -1 0.20 21296 1 0.02 -1 -1 33148 -1 -1 33 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62536 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 22.6 MiB 0.24 1046 61.1 MiB 0.13 0.00 3.54427 -109.147 -3.54427 3.54427 1.06 0.000280845 0.000233835 0.0241413 0.0200875 32 2389 19 6.64007e+06 414414 554710. 1919.41 0.99 0.0769057 0.0659012 2069 20 1170 1910 142986 31142 3.42103 3.42103 -124.581 -3.42103 0 0 701300. 2426.64 0.34 0.06 0.0199107 0.0177288 135 78 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.89 vpr 61.30 MiB -1 -1 0.17 21148 1 0.01 -1 -1 33168 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62768 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 22.9 MiB 0.15 1090 61.3 MiB 0.13 0.00 3.97286 -117.329 -3.97286 3.97286 1.07 0.000259918 0.000208258 0.0243677 0.0199722 32 2538 20 6.64007e+06 263718 554710. 1919.41 1.06 0.0753105 0.0642882 2308 18 1274 2220 150992 33970 3.84562 3.84562 -135.276 -3.84562 0 0 701300. 2426.64 0.36 0.07 0.019252 0.0173292 134 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.85 vpr 61.44 MiB -1 -1 0.18 21440 1 0.02 -1 -1 33100 -1 -1 31 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62916 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 23.0 MiB 0.19 862 61.4 MiB 0.08 0.00 3.92287 -109.526 -3.92287 3.92287 1.05 0.000301062 0.000250982 0.0146327 0.0122396 28 2353 22 6.64007e+06 389298 500653. 1732.36 1.12 0.0787122 0.0684405 1996 18 1141 1845 126890 30711 3.85983 3.85983 -134.429 -3.85983 0 0 612192. 2118.31 0.31 0.06 0.0191436 0.0171359 132 79 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.57 vpr 60.61 MiB -1 -1 0.16 20796 1 0.01 -1 -1 33100 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62064 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 22.0 MiB 0.05 615 60.6 MiB 0.07 0.00 3.11221 -90.4658 -3.11221 3.11221 1.07 0.000201961 0.000161744 0.0118659 0.00968945 32 1633 17 6.64007e+06 188370 554710. 1919.41 0.95 0.0465622 0.0397621 1308 18 805 1188 73313 19463 2.82377 2.82377 -103.141 -2.82377 0 0 701300. 2426.64 0.34 0.04 0.0123956 0.011061 96 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.81 vpr 61.38 MiB -1 -1 0.17 21156 1 0.02 -1 -1 33160 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 23.0 MiB 0.26 1045 61.4 MiB 0.10 0.00 3.69947 -115.477 -3.69947 3.69947 1.04 0.000262042 0.000215945 0.0188639 0.0155466 32 2235 21 6.64007e+06 401856 554710. 1919.41 1.01 0.0732766 0.062688 2000 16 1194 2041 140030 31074 3.72083 3.72083 -130.912 -3.72083 0 0 701300. 2426.64 0.33 0.06 0.0172307 0.0154594 132 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.91 vpr 61.45 MiB -1 -1 0.18 21340 1 0.02 -1 -1 33104 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62924 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 22.9 MiB 0.19 1014 61.4 MiB 0.10 0.00 4.07207 -127.599 -4.07207 4.07207 1.09 0.000301983 0.000249586 0.0192871 0.0160122 30 2294 22 6.64007e+06 276276 526063. 1820.29 1.03 0.0790794 0.0678344 2068 21 1565 2612 137524 33742 3.56043 3.56043 -135.774 -3.56043 0 0 666494. 2306.21 0.33 0.07 0.0205583 0.0181956 148 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 5.13 vpr 61.05 MiB -1 -1 0.18 21136 1 0.02 -1 -1 33148 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62520 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 22.5 MiB 0.30 972 61.1 MiB 0.08 0.00 3.43261 -104.916 -3.43261 3.43261 1.08 0.000212583 0.000173823 0.015489 0.0128102 26 2407 30 6.64007e+06 251160 477104. 1650.88 1.27 0.0669365 0.0579794 2017 19 1085 1460 108090 24392 3.44123 3.44123 -121.155 -3.44123 0 0 585099. 2024.56 0.30 0.05 0.0137241 0.0122166 109 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.61 vpr 60.37 MiB -1 -1 0.17 20704 1 0.02 -1 -1 33032 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61820 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 21.9 MiB 0.06 833 60.4 MiB 0.08 0.00 3.01801 -92.4229 -3.01801 3.01801 1.07 0.000196606 0.000160136 0.0147084 0.0122254 32 1824 21 6.64007e+06 263718 554710. 1919.41 0.98 0.051429 0.0439473 1626 17 1037 1720 116913 27024 2.81977 2.81977 -103.468 -2.81977 0 0 701300. 2426.64 0.35 0.05 0.0138778 0.0125343 106 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 5.38 vpr 61.27 MiB -1 -1 0.19 21096 1 0.02 -1 -1 33120 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62740 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 22.8 MiB 0.29 1033 61.3 MiB 0.08 0.00 4.06553 -127.602 -4.06553 4.06553 1.08 0.000286637 0.00024176 0.015811 0.0133524 26 2788 24 6.64007e+06 326508 477104. 1650.88 1.47 0.0777577 0.0677674 2262 21 1814 2432 163999 39261 4.27489 4.27489 -151.197 -4.27489 0 0 585099. 2024.56 0.30 0.07 0.0194638 0.0173775 144 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.63 vpr 61.28 MiB -1 -1 0.19 21392 1 0.02 -1 -1 33196 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62748 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 22.8 MiB 0.29 1140 61.3 MiB 0.09 0.00 4.18102 -125.872 -4.18102 4.18102 1.07 0.000295779 0.0002454 0.0179613 0.01479 28 3043 36 6.64007e+06 364182 500653. 1732.36 1.71 0.090547 0.0786379 2349 23 1628 2591 184073 42303 4.61949 4.61949 -149.67 -4.61949 0 0 612192. 2118.31 0.32 0.08 0.0211101 0.018813 155 53 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 6.45 vpr 61.33 MiB -1 -1 0.17 20836 1 0.01 -1 -1 33168 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62804 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 22.9 MiB 0.10 1256 61.3 MiB 0.09 0.00 4.49732 -124.079 -4.49732 4.49732 1.08 0.000284646 0.000237939 0.0148247 0.0125032 26 3124 35 6.64007e+06 452088 477104. 1650.88 2.70 0.0876195 0.0767352 2713 22 1623 3041 266178 55822 4.78368 4.78368 -151.119 -4.78368 0 0 585099. 2024.56 0.30 0.10 0.0238447 0.0214757 153 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.93 vpr 60.82 MiB -1 -1 0.18 21380 1 0.02 -1 -1 33108 -1 -1 32 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62276 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 22.3 MiB 0.16 782 60.8 MiB 0.07 0.00 2.9673 -86.5406 -2.9673 2.9673 1.06 0.000244864 0.000201331 0.0135605 0.0112805 26 2728 47 6.64007e+06 401856 477104. 1650.88 2.12 0.0827553 0.0719288 1885 19 1236 1998 136718 36746 3.09157 3.09157 -107.323 -3.09157 0 0 585099. 2024.56 0.31 0.06 0.0170043 0.0151923 121 47 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.57 vpr 60.80 MiB -1 -1 0.18 20972 1 0.02 -1 -1 33264 -1 -1 21 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62260 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 22.4 MiB 0.07 596 60.8 MiB 0.07 0.00 2.7331 -75.2401 -2.7331 2.7331 1.06 0.000195309 0.000158672 0.0139012 0.011505 32 1464 25 6.64007e+06 263718 554710. 1919.41 0.96 0.0496434 0.0421598 1316 21 1008 1484 113156 27381 2.83077 2.83077 -90.5237 -2.83077 0 0 701300. 2426.64 0.35 0.05 0.0143407 0.0127425 97 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.97 vpr 61.34 MiB -1 -1 0.20 21620 1 0.02 -1 -1 33224 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 23.1 MiB 0.30 1408 61.3 MiB 0.13 0.00 3.53756 -117.806 -3.53756 3.53756 1.08 0.000305724 0.00025187 0.0245204 0.0201542 28 3809 24 6.64007e+06 326508 500653. 1732.36 1.88 0.0992492 0.0858795 3026 21 1995 3330 248319 54523 4.00803 4.00803 -145.187 -4.00803 0 0 612192. 2118.31 0.31 0.10 0.0264932 0.0239123 170 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.03 vpr 60.87 MiB -1 -1 0.20 21236 1 0.01 -1 -1 33208 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62332 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 22.4 MiB 0.34 936 60.9 MiB 0.11 0.00 4.33341 -128.352 -4.33341 4.33341 1.03 0.00026606 0.000206034 0.024081 0.0199236 32 2638 22 6.64007e+06 288834 554710. 1919.41 1.09 0.0830865 0.0715899 2235 22 1679 2726 225960 50243 4.58248 4.58248 -151.298 -4.58248 0 0 701300. 2426.64 0.34 0.09 0.0223448 0.0200519 152 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.90 vpr 61.09 MiB -1 -1 0.17 21148 1 0.01 -1 -1 33180 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62560 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 22.6 MiB 0.36 1029 61.1 MiB 0.08 0.00 3.97735 -113.091 -3.97735 3.97735 1.05 0.000223787 0.0001807 0.0165866 0.013738 28 2285 19 6.64007e+06 238602 500653. 1732.36 1.07 0.0704646 0.0613198 1933 15 983 1478 102896 22910 3.53742 3.53742 -130.11 -3.53742 0 0 612192. 2118.31 0.31 0.05 0.0155298 0.0140096 128 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.62 vpr 61.20 MiB -1 -1 0.16 21332 1 0.02 -1 -1 33156 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62668 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 22.7 MiB 0.07 1089 61.2 MiB 0.11 0.00 4.22418 -111.355 -4.22418 4.22418 1.03 0.000228999 0.000185588 0.0195752 0.0161112 26 2620 20 6.64007e+06 376740 477104. 1650.88 1.10 0.0737647 0.0636615 2173 20 1263 2061 154819 33859 3.69043 3.69043 -127.908 -3.69043 0 0 585099. 2024.56 0.29 0.06 0.0172001 0.0153084 126 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.75 vpr 61.34 MiB -1 -1 0.21 21328 1 0.02 -1 -1 33256 -1 -1 34 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62816 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 22.8 MiB 0.18 1086 61.3 MiB 0.10 0.00 4.02106 -115.984 -4.02106 4.02106 1.06 0.000280271 0.000229581 0.0181124 0.015198 26 2482 22 6.64007e+06 426972 477104. 1650.88 0.96 0.0729479 0.0629339 2121 15 991 1654 99946 24046 3.66542 3.66542 -128.624 -3.66542 0 0 585099. 2024.56 0.29 0.05 0.0173666 0.0156593 145 46 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.90 vpr 61.12 MiB -1 -1 0.19 21376 1 0.01 -1 -1 33228 -1 -1 31 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62588 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 22.6 MiB 0.15 986 61.1 MiB 0.08 0.00 3.0025 -93.5725 -3.0025 3.0025 1.07 0.000250495 0.00020508 0.0137058 0.0114125 28 2396 22 6.64007e+06 389298 500653. 1732.36 1.15 0.0651897 0.0562938 2035 21 1274 2232 153711 34807 2.91797 2.91797 -107.703 -2.91797 0 0 612192. 2118.31 0.30 0.07 0.0180992 0.0161133 124 46 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.93 vpr 61.26 MiB -1 -1 0.19 21340 1 0.02 -1 -1 33120 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 22.8 MiB 0.34 1263 61.3 MiB 0.10 0.00 4.01133 -129.439 -4.01133 4.01133 1.07 0.000279812 0.000225862 0.0165825 0.0137404 26 3238 33 6.64007e+06 313950 477104. 1650.88 1.95 0.0849699 0.0737627 2669 23 2036 3171 239641 55506 4.31069 4.31069 -153.097 -4.31069 0 0 585099. 2024.56 0.30 0.09 0.0209262 0.0187057 148 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.83 vpr 61.49 MiB -1 -1 0.19 21296 1 0.02 -1 -1 33108 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62964 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 23.0 MiB 0.19 1063 61.5 MiB 0.10 0.00 3.75601 -117.742 -3.75601 3.75601 1.07 0.000311284 0.000255717 0.0171853 0.0142759 28 2437 20 6.64007e+06 452088 500653. 1732.36 1.02 0.0718755 0.0616701 2133 18 1245 2014 127672 30361 3.49323 3.49323 -131.698 -3.49323 0 0 612192. 2118.31 0.31 0.06 0.0183787 0.0164865 144 59 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.65 vpr 60.36 MiB -1 -1 0.17 21116 1 0.02 -1 -1 33216 -1 -1 17 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61808 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 21.9 MiB 0.10 582 60.4 MiB 0.07 0.00 2.88681 -85.3419 -2.88681 2.88681 1.08 0.000192214 0.000151674 0.0158232 0.0128677 32 1447 20 6.64007e+06 213486 554710. 1919.41 0.96 0.0519126 0.0439038 1257 21 1050 1547 110982 27551 2.72677 2.72677 -96.8297 -2.72677 0 0 701300. 2426.64 0.35 0.05 0.0145427 0.0129 91 28 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.87 vpr 61.18 MiB -1 -1 0.18 21304 1 0.01 -1 -1 33088 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62648 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 22.7 MiB 0.24 976 61.2 MiB 0.10 0.00 3.19816 -106.001 -3.19816 3.19816 1.08 0.000225025 0.000180647 0.0192763 0.0157901 30 2049 20 6.64007e+06 263718 526063. 1820.29 1.00 0.0629162 0.0536095 1700 17 964 1329 88085 19846 2.90343 2.90343 -114.937 -2.90343 0 0 666494. 2306.21 0.34 0.05 0.0143486 0.0127976 117 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.30 vpr 61.12 MiB -1 -1 0.19 21176 1 0.01 -1 -1 33116 -1 -1 37 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62584 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 22.5 MiB 0.09 996 61.1 MiB 0.11 0.00 3.82167 -105.839 -3.82167 3.82167 1.07 0.000256621 0.000209891 0.0175473 0.0145141 26 2493 35 6.64007e+06 464646 477104. 1650.88 1.63 0.0821647 0.0712102 2160 19 1475 2580 181290 41025 4.07023 4.07023 -131.641 -4.07023 0 0 585099. 2024.56 0.30 0.07 0.0168755 0.0150381 129 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.93 vpr 60.51 MiB -1 -1 0.18 21136 1 0.01 -1 -1 33244 -1 -1 22 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61960 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 21.9 MiB 0.31 814 60.5 MiB 0.09 0.00 3.47027 -96.2421 -3.47027 3.47027 1.08 0.000195991 0.000159447 0.0161686 0.0133019 32 2085 17 6.64007e+06 276276 554710. 1919.41 0.98 0.0533997 0.045728 1798 23 1141 1487 114985 26550 3.23483 3.23483 -107.849 -3.23483 0 0 701300. 2426.64 0.35 0.06 0.0156736 0.0139433 109 25 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.79 vpr 60.82 MiB -1 -1 0.17 20820 1 0.01 -1 -1 33140 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62276 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 22.3 MiB 0.17 784 60.8 MiB 0.08 0.00 3.14521 -96.9233 -3.14521 3.14521 1.08 0.000218638 0.000176865 0.0169355 0.0139071 32 1941 23 6.64007e+06 213486 554710. 1919.41 1.01 0.0571005 0.048575 1655 20 1310 2271 153420 35731 3.05897 3.05897 -108.854 -3.05897 0 0 701300. 2426.64 0.36 0.06 0.0155529 0.013899 108 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.76 vpr 61.27 MiB -1 -1 0.18 21092 1 0.02 -1 -1 33212 -1 -1 36 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62744 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 22.8 MiB 0.15 1015 61.3 MiB 0.09 0.00 3.36461 -103.876 -3.36461 3.36461 1.05 0.000294407 0.000245726 0.0163911 0.0136902 24 2439 44 6.64007e+06 452088 448715. 1552.65 1.18 0.0986394 0.0859328 1997 21 1349 2169 159732 35083 3.18257 3.18257 -118.086 -3.18257 0 0 554710. 1919.41 0.27 0.07 0.0210722 0.018753 136 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.80 vpr 61.03 MiB -1 -1 0.18 20884 1 0.02 -1 -1 33224 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62492 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 22.5 MiB 0.26 931 61.0 MiB 0.07 0.00 3.15716 -99.6593 -3.15716 3.15716 1.06 0.00022301 0.000185021 0.0126306 0.0105181 32 2080 17 6.64007e+06 251160 554710. 1919.41 0.97 0.0477808 0.0408583 1794 21 1069 1567 116359 25945 3.14783 3.14783 -113.647 -3.14783 0 0 701300. 2426.64 0.36 0.06 0.0164369 0.0147693 107 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.68 vpr 61.14 MiB -1 -1 0.17 21300 1 0.01 -1 -1 33228 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62608 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 22.5 MiB 0.15 1036 61.1 MiB 0.13 0.00 3.01201 -99.517 -3.01201 3.01201 1.06 0.000253045 0.000205036 0.0229767 0.0188797 30 2146 20 6.64007e+06 401856 526063. 1820.29 0.96 0.0740571 0.0632625 1823 19 1164 2028 101304 24405 2.76077 2.76077 -107.673 -2.76077 0 0 666494. 2306.21 0.33 0.05 0.0178943 0.0159284 127 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.82 vpr 61.32 MiB -1 -1 0.19 21200 1 0.02 -1 -1 33184 -1 -1 32 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 22.9 MiB 0.31 846 61.3 MiB 0.05 0.00 3.50555 -107.438 -3.50555 3.50555 1.03 0.000263914 0.000212859 0.0112533 0.00945253 32 2169 23 6.64007e+06 401856 554710. 1919.41 1.00 0.0665049 0.0567987 1807 23 1633 2445 158913 39540 3.17163 3.17163 -121.368 -3.17163 0 0 701300. 2426.64 0.34 0.07 0.022923 0.0202761 138 87 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.73 vpr 60.84 MiB -1 -1 0.16 21416 1 0.01 -1 -1 33176 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62300 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 22.3 MiB 0.22 886 60.8 MiB 0.06 0.00 2.6639 -87.4047 -2.6639 2.6639 1.07 0.000241246 0.000197222 0.0113279 0.00945556 30 1796 21 6.64007e+06 213486 526063. 1820.29 0.97 0.0521428 0.0444737 1616 17 897 1481 91447 20301 2.51537 2.51537 -99.5474 -2.51537 0 0 666494. 2306.21 0.34 0.05 0.0140637 0.0125375 104 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.93 vpr 60.79 MiB -1 -1 0.17 21080 1 0.01 -1 -1 33232 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62252 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 22.3 MiB 0.29 917 60.8 MiB 0.07 0.00 3.55527 -113.07 -3.55527 3.55527 1.09 0.000209366 0.000168039 0.0129688 0.0106765 32 2266 22 6.64007e+06 263718 554710. 1919.41 1.01 0.0564945 0.0484058 1905 19 1071 1598 118820 26491 3.07143 3.07143 -120.065 -3.07143 0 0 701300. 2426.64 0.36 0.06 0.0158605 0.0142457 117 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.88 vpr 60.97 MiB -1 -1 0.17 21192 1 0.01 -1 -1 33204 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62436 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 22.5 MiB 0.26 1058 61.0 MiB 0.06 0.00 3.82487 -119.305 -3.82487 3.82487 1.07 0.000259368 0.000213079 0.0111123 0.00934698 28 2545 23 6.64007e+06 288834 500653. 1732.36 1.06 0.0660697 0.0577673 2167 20 1449 1965 137464 32005 3.66463 3.66463 -132.091 -3.66463 0 0 612192. 2118.31 0.32 0.06 0.0184743 0.0165817 130 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.77 vpr 61.03 MiB -1 -1 0.19 21356 1 0.01 -1 -1 33228 -1 -1 29 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62496 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 22.5 MiB 0.20 839 61.0 MiB 0.12 0.00 3.79367 -97.8761 -3.79367 3.79367 1.07 0.000239435 0.000193689 0.0213766 0.0175014 30 1897 18 6.64007e+06 364182 526063. 1820.29 0.95 0.0637661 0.0540536 1509 16 713 1192 58032 14511 3.17763 3.17763 -102.49 -3.17763 0 0 666494. 2306.21 0.34 0.04 0.0148319 0.0134006 122 49 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.10 vpr 61.41 MiB -1 -1 0.18 21392 1 0.02 -1 -1 33120 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62884 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 22.8 MiB 0.35 1211 61.4 MiB 0.12 0.00 4.21044 -137.042 -4.21044 4.21044 1.07 0.000282944 0.000229242 0.0246225 0.0203497 32 2781 22 6.64007e+06 301392 554710. 1919.41 1.02 0.0775512 0.0659949 2400 21 1804 2709 219860 49198 4.09849 4.09849 -150.131 -4.09849 0 0 701300. 2426.64 0.35 0.09 0.0231039 0.0207125 154 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.48 vpr 60.32 MiB -1 -1 0.16 20700 1 0.01 -1 -1 32952 -1 -1 18 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61768 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 21.7 MiB 0.05 673 60.3 MiB 0.08 0.00 2.9133 -81.3083 -2.9133 2.9133 1.07 0.000175598 0.000142404 0.0149967 0.0123338 30 1485 17 6.64007e+06 226044 526063. 1820.29 0.90 0.045904 0.0389356 1330 14 595 875 45392 11561 2.60656 2.60656 -91.2074 -2.60656 0 0 666494. 2306.21 0.34 0.03 0.010504 0.00952986 96 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.85 vpr 61.02 MiB -1 -1 0.20 21200 1 0.03 -1 -1 33124 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62484 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 22.5 MiB 0.18 1076 61.0 MiB 0.08 0.00 3.44356 -117.752 -3.44356 3.44356 1.07 0.000298818 0.000242113 0.0153849 0.0127931 28 2529 20 6.64007e+06 426972 500653. 1732.36 1.08 0.0781189 0.067501 2239 20 1567 2397 171461 38328 3.69483 3.69483 -138.767 -3.69483 0 0 612192. 2118.31 0.30 0.07 0.0195398 0.0173263 145 87 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.91 vpr 61.05 MiB -1 -1 0.18 21296 1 0.01 -1 -1 33064 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62516 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 22.5 MiB 0.31 865 61.1 MiB 0.09 0.00 2.8021 -100.636 -2.8021 2.8021 1.06 0.00026543 0.000208863 0.0214607 0.0176551 32 1994 17 6.64007e+06 213486 554710. 1919.41 0.99 0.0661319 0.0560602 1783 17 1140 1666 119332 26574 2.91577 2.91577 -118.317 -2.91577 0 0 701300. 2426.64 0.34 0.06 0.0165354 0.0148207 114 93 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.67 vpr 61.19 MiB -1 -1 0.17 21440 1 0.02 -1 -1 33100 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62656 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 22.6 MiB 0.16 896 61.2 MiB 0.12 0.00 3.56627 -107.536 -3.56627 3.56627 1.03 0.000267766 0.000219477 0.0218783 0.0179359 32 2235 18 6.64007e+06 401856 554710. 1919.41 0.99 0.0701162 0.0598384 1700 14 880 1340 78284 19440 3.33083 3.33083 -113.996 -3.33083 0 0 701300. 2426.64 0.34 0.04 0.0151625 0.0136397 131 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 8.17 vpr 61.16 MiB -1 -1 0.19 21576 1 0.02 -1 -1 33208 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62628 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 23.0 MiB 0.39 1142 61.2 MiB 0.12 0.00 5.15449 -151.308 -5.15449 5.15449 1.06 0.000275995 0.000220268 0.0272972 0.0224831 34 3547 41 6.64007e+06 339066 585099. 2024.56 4.02 0.15337 0.133121 2415 23 1722 2567 212527 50578 5.04254 5.04254 -165.638 -5.04254 0 0 742403. 2568.87 0.36 0.09 0.0254113 0.0228949 170 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.62 vpr 60.82 MiB -1 -1 0.18 20976 1 0.01 -1 -1 33032 -1 -1 18 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62280 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 22.2 MiB 0.21 728 60.8 MiB 0.06 0.00 2.5747 -83.3114 -2.5747 2.5747 1.07 0.000183229 0.000146874 0.0111669 0.00905877 26 1820 22 6.64007e+06 226044 477104. 1650.88 0.95 0.0463835 0.0395064 1504 18 829 1068 88326 19740 2.32677 2.32677 -93.4109 -2.32677 0 0 585099. 2024.56 0.30 0.04 0.0114669 0.0101808 87 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.57 vpr 60.81 MiB -1 -1 0.17 21068 1 0.01 -1 -1 33188 -1 -1 16 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62268 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 22.3 MiB 0.12 579 60.8 MiB 0.06 0.00 3.52781 -97.1381 -3.52781 3.52781 1.05 0.000209437 0.000170009 0.0168822 0.0139557 32 1574 19 6.64007e+06 200928 554710. 1919.41 0.95 0.0552628 0.046918 1424 22 1061 1607 122844 30418 3.18337 3.18337 -110.632 -3.18337 0 0 701300. 2426.64 0.34 0.05 0.0159023 0.0141146 92 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.50 vpr 60.92 MiB -1 -1 0.17 20972 1 0.01 -1 -1 33076 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62384 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 22.3 MiB 0.10 777 60.9 MiB 0.10 0.00 2.8981 -94.3878 -2.8981 2.8981 1.02 0.000218488 0.00017981 0.0204202 0.0167428 32 1970 19 6.64007e+06 263718 554710. 1919.41 0.95 0.0587478 0.0494629 1678 20 1213 2129 143479 32950 2.74257 2.74257 -107.525 -2.74257 0 0 701300. 2426.64 0.33 0.06 0.0149929 0.013264 115 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.90 vpr 60.78 MiB -1 -1 0.17 20888 1 0.01 -1 -1 33224 -1 -1 27 25 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62240 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 22.2 MiB 0.06 476 60.8 MiB 0.06 0.00 2.8321 -64.8206 -2.8321 2.8321 1.09 0.00018753 0.000147403 0.0114588 0.0092569 28 1490 38 6.64007e+06 339066 500653. 1732.36 1.33 0.0565121 0.0485149 988 18 572 965 59121 17705 3.04137 3.04137 -73.9752 -3.04137 0 0 612192. 2118.31 0.31 0.03 0.0101366 0.00903707 89 19 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 5.00 vpr 61.09 MiB -1 -1 0.19 21364 1 0.01 -1 -1 33100 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62556 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 22.6 MiB 0.20 832 61.1 MiB 0.10 0.00 3.61676 -107.701 -3.61676 3.61676 1.06 0.000292237 0.00022351 0.0208467 0.0168145 32 2784 31 6.64007e+06 263718 554710. 1919.41 1.13 0.0844776 0.0721335 2142 19 1343 2333 145125 36539 3.89702 3.89702 -129.456 -3.89702 0 0 701300. 2426.64 0.35 0.06 0.019544 0.0174886 136 69 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.89 vpr 61.40 MiB -1 -1 0.20 21212 1 0.02 -1 -1 33388 -1 -1 35 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62876 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 22.8 MiB 0.21 914 61.4 MiB 0.13 0.00 3.48461 -111.282 -3.48461 3.48461 1.10 0.000283447 0.000229167 0.0223068 0.0183507 26 2760 45 6.64007e+06 439530 477104. 1650.88 1.95 0.107311 0.0927041 2091 20 1507 2474 173620 43229 3.16263 3.16263 -125.449 -3.16263 0 0 585099. 2024.56 0.29 0.08 0.0214417 0.0190501 143 86 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.29 vpr 61.27 MiB -1 -1 0.18 21400 1 0.03 -1 -1 33104 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62744 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 22.8 MiB 0.48 1040 61.3 MiB 0.13 0.00 4.10361 -122.44 -4.10361 4.10361 1.06 0.000267583 0.000214228 0.021603 0.0177314 32 2539 23 6.65987e+06 380340 554710. 1919.41 1.06 0.0757335 0.0648351 2065 23 1615 2547 166193 41175 4.39703 4.39703 -142.588 -4.39703 0 0 701300. 2426.64 0.35 0.07 0.0215479 0.0193286 152 47 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 5.10 vpr 60.98 MiB -1 -1 0.19 21304 1 0.02 -1 -1 33160 -1 -1 23 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62448 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 22.4 MiB 0.39 1080 61.0 MiB 0.10 0.00 3.90862 -120.688 -3.90862 3.90862 1.09 0.000277018 0.000232013 0.0185061 0.0154648 32 2505 21 6.65987e+06 291594 554710. 1919.41 1.03 0.0690917 0.0592458 2134 19 1650 2464 159368 39406 3.93097 3.93097 -137.69 -3.93097 0 0 701300. 2426.64 0.34 0.07 0.0205912 0.0185007 138 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.73 vpr 61.12 MiB -1 -1 0.18 21408 1 0.01 -1 -1 33160 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62592 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 22.6 MiB 0.14 1016 61.1 MiB 0.10 0.00 3.21404 -98.8533 -3.21404 3.21404 1.06 0.000222513 0.000180478 0.0183948 0.0152389 32 2308 23 6.65987e+06 291594 554710. 1919.41 0.98 0.0632078 0.0540429 2049 21 1229 1665 131858 29815 3.40011 3.40011 -115.11 -3.40011 0 0 701300. 2426.64 0.34 0.06 0.0170043 0.0152285 126 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.59 vpr 60.82 MiB -1 -1 0.17 21396 1 0.02 -1 -1 33104 -1 -1 27 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62280 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 22.2 MiB 0.11 942 60.8 MiB 0.12 0.00 3.41744 -93.3062 -3.41744 3.41744 1.03 0.000227981 0.000186071 0.022083 0.0182496 30 2132 23 6.65987e+06 342306 526063. 1820.29 0.97 0.0694632 0.0591924 1749 22 1140 2233 125669 29964 3.28891 3.28891 -105.836 -3.28891 0 0 666494. 2306.21 0.33 0.06 0.0176375 0.01575 126 25 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.85 vpr 60.96 MiB -1 -1 0.18 21380 1 0.02 -1 -1 33044 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62428 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 22.4 MiB 0.14 939 61.0 MiB 0.06 0.00 3.38695 -101.095 -3.38695 3.38695 1.07 0.000265189 0.000216704 0.00965635 0.00813269 32 2620 23 6.65987e+06 291594 554710. 1919.41 1.11 0.0661649 0.0576933 2178 18 1341 2608 183473 42727 3.89771 3.89771 -129.887 -3.89771 0 0 701300. 2426.64 0.34 0.08 0.0190354 0.0170768 130 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.89 vpr 61.11 MiB -1 -1 0.19 21208 1 0.01 -1 -1 33168 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62576 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 22.7 MiB 0.21 1050 61.1 MiB 0.13 0.00 2.58864 -94.8938 -2.58864 2.58864 1.05 0.000264041 0.000203214 0.0227314 0.0184908 32 2460 22 6.65987e+06 418374 554710. 1919.41 1.02 0.0756558 0.0644518 2164 18 1286 2117 141329 34172 2.86591 2.86591 -113.882 -2.86591 0 0 701300. 2426.64 0.34 0.06 0.0200039 0.0180274 141 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.74 vpr 60.53 MiB -1 -1 0.18 20900 1 0.01 -1 -1 33236 -1 -1 18 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61984 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 22.1 MiB 0.23 645 60.5 MiB 0.05 0.00 3.02895 -80.339 -3.02895 3.02895 1.05 0.000208231 0.000170916 0.0116311 0.00972408 32 1525 21 6.65987e+06 228204 554710. 1919.41 0.95 0.0465573 0.0396446 1360 19 805 1376 104255 23639 2.78571 2.78571 -93.0216 -2.78571 0 0 701300. 2426.64 0.36 0.05 0.0140539 0.0126067 94 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.47 vpr 60.79 MiB -1 -1 0.17 20812 1 0.02 -1 -1 33148 -1 -1 31 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62252 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 22.4 MiB 0.06 957 60.8 MiB 0.09 0.00 2.58264 -79.9081 -2.58264 2.58264 1.02 0.00021018 0.000169128 0.0168618 0.0138565 32 2100 21 6.65987e+06 393018 554710. 1919.41 0.92 0.0552304 0.0468256 1892 18 978 1720 119514 27963 2.66671 2.66671 -94.4811 -2.66671 0 0 701300. 2426.64 0.35 0.06 0.0164322 0.0148304 115 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.70 vpr 60.99 MiB -1 -1 0.19 21252 1 0.01 -1 -1 33140 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62452 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 22.4 MiB 0.20 830 61.0 MiB 0.07 0.00 2.68253 -92.6041 -2.68253 2.68253 1.03 0.000227511 0.000182132 0.0131861 0.0107958 32 2107 22 6.65987e+06 240882 554710. 1919.41 0.95 0.0531675 0.0451597 1807 20 1216 1783 146998 34013 2.98451 2.98451 -112.042 -2.98451 0 0 701300. 2426.64 0.35 0.06 0.0186273 0.0167217 111 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.96 vpr 60.70 MiB -1 -1 0.17 20952 1 0.02 -1 -1 33036 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62160 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 22.1 MiB 0.34 791 60.7 MiB 0.09 0.00 2.98475 -99.763 -2.98475 2.98475 1.07 0.000223681 0.000182763 0.0164396 0.0135141 26 2070 20 6.65987e+06 215526 477104. 1650.88 1.08 0.0641017 0.0552727 1771 17 1095 1705 117527 28672 3.21631 3.21631 -123.53 -3.21631 0 0 585099. 2024.56 0.30 0.05 0.0143109 0.0128531 113 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.82 vpr 60.73 MiB -1 -1 0.18 21280 1 0.01 -1 -1 33088 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62184 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 22.1 MiB 0.32 671 60.7 MiB 0.06 0.00 3.13415 -86.2403 -3.13415 3.13415 1.06 0.000214472 0.000172781 0.0118229 0.00977782 32 1518 15 6.65987e+06 215526 554710. 1919.41 0.93 0.0483747 0.0411932 1331 18 766 1182 72598 19525 2.94311 2.94311 -99.4514 -2.94311 0 0 701300. 2426.64 0.36 0.04 0.014826 0.0133083 98 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.98 vpr 60.41 MiB -1 -1 0.17 21108 1 0.01 -1 -1 33200 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61860 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 21.8 MiB 0.33 948 60.4 MiB 0.04 0.00 2.91589 -96.4794 -2.91589 2.91589 1.07 0.000214043 0.000173983 0.00878104 0.00738017 26 2225 25 6.65987e+06 215526 477104. 1650.88 1.17 0.0566522 0.049184 1927 25 1160 1565 121830 28265 3.13625 3.13625 -117.832 -3.13625 0 0 585099. 2024.56 0.30 0.06 0.0180648 0.0161351 106 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.03 vpr 61.15 MiB -1 -1 0.18 21312 1 0.02 -1 -1 33032 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62620 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 22.7 MiB 0.28 1096 61.2 MiB 0.09 0.00 3.37501 -110.668 -3.37501 3.37501 1.06 0.000274053 0.00022573 0.0164796 0.0137597 32 2781 25 6.65987e+06 304272 554710. 1919.41 1.08 0.0711392 0.0613758 2428 21 1844 2794 224906 51353 3.23577 3.23577 -126.036 -3.23577 0 0 701300. 2426.64 0.35 0.08 0.0210019 0.0188958 139 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 5.00 vpr 61.20 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33216 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62664 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 22.7 MiB 0.25 927 61.2 MiB 0.11 0.00 3.65135 -104.927 -3.65135 3.65135 1.07 0.000246443 0.000196119 0.0221298 0.0181813 32 2368 20 6.65987e+06 380340 554710. 1919.41 1.06 0.0768558 0.0658529 1959 22 1551 2433 186779 42347 3.51885 3.51885 -123.25 -3.51885 0 0 701300. 2426.64 0.34 0.07 0.0205215 0.0183022 133 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.60 vpr 60.21 MiB -1 -1 0.17 21132 1 0.01 -1 -1 33056 -1 -1 21 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61656 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 21.8 MiB 0.18 757 60.2 MiB 0.07 0.00 2.62193 -76.1211 -2.62193 2.62193 1.08 0.000191706 0.000155454 0.0127041 0.0105211 28 1763 19 6.65987e+06 266238 500653. 1732.36 0.90 0.0462827 0.0393337 1637 20 934 1612 110564 26396 2.67651 2.67651 -92.8366 -2.67651 0 0 612192. 2118.31 0.31 0.05 0.0141684 0.0126846 98 21 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 5.19 vpr 61.10 MiB -1 -1 0.18 21252 1 0.02 -1 -1 33072 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62568 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 22.7 MiB 0.51 1065 61.1 MiB 0.10 0.00 3.1755 -102.7 -3.1755 3.1755 1.06 0.000288397 0.000227988 0.0187184 0.0155338 32 2393 19 6.65987e+06 266238 554710. 1919.41 1.02 0.0693362 0.0592363 2173 23 1375 2522 198280 46738 3.26157 3.26157 -123.197 -3.26157 0 0 701300. 2426.64 0.34 0.08 0.0228694 0.0203054 132 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.72 vpr 61.12 MiB -1 -1 0.18 21224 1 0.02 -1 -1 33128 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62588 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 22.7 MiB 0.27 1026 61.1 MiB 0.08 0.00 3.33581 -110.386 -3.33581 3.33581 1.03 0.0002681 0.000221884 0.0162149 0.0134896 30 2124 18 6.65987e+06 266238 526063. 1820.29 0.99 0.0665917 0.0573041 1856 19 1089 1559 78683 19987 2.97111 2.97111 -116.663 -2.97111 0 0 666494. 2306.21 0.33 0.05 0.0176131 0.015796 137 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.82 vpr 60.88 MiB -1 -1 0.15 21252 1 0.02 -1 -1 33184 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62344 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 22.4 MiB 0.26 868 60.9 MiB 0.11 0.00 2.24964 -84.7178 -2.24964 2.24964 1.06 0.000235043 0.000190596 0.0208664 0.0171019 32 1955 18 6.65987e+06 367662 554710. 1919.41 0.99 0.0637653 0.0541903 1734 18 959 1435 112927 25945 2.15051 2.15051 -96.0301 -2.15051 0 0 701300. 2426.64 0.34 0.05 0.0154902 0.0138364 110 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.49 vpr 60.59 MiB -1 -1 0.17 21012 1 0.01 -1 -1 33008 -1 -1 15 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62040 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 22.1 MiB 0.16 598 60.6 MiB 0.03 0.00 1.77827 -62.1364 -1.77827 1.77827 1.07 0.000170143 0.000138052 0.00641933 0.00528532 30 1349 18 6.65987e+06 190170 526063. 1820.29 0.89 0.0344918 0.0292199 1161 16 505 679 40430 10156 1.80465 1.80465 -76.1391 -1.80465 0 0 666494. 2306.21 0.34 0.03 0.0100451 0.00900593 81 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 5.03 vpr 60.77 MiB -1 -1 0.19 21252 1 0.02 -1 -1 33136 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62228 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 22.3 MiB 0.46 951 60.8 MiB 0.08 0.00 3.73355 -113.58 -3.73355 3.73355 1.06 0.000221496 0.000180124 0.0166296 0.0138477 32 2125 19 6.65987e+06 240882 554710. 1919.41 0.97 0.0574537 0.0492549 1843 19 1190 1654 123733 28332 3.43997 3.43997 -126.531 -3.43997 0 0 701300. 2426.64 0.34 0.06 0.0159098 0.0143236 127 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.04 vpr 60.73 MiB -1 -1 0.19 21312 1 0.02 -1 -1 33160 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62184 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 22.4 MiB 0.07 952 60.7 MiB 0.09 0.00 3.41056 -108.215 -3.41056 3.41056 1.05 0.000253051 0.0002064 0.0151472 0.012537 26 2719 24 6.65987e+06 393018 477104. 1650.88 1.45 0.0732409 0.0635962 2081 19 1397 2201 170379 39554 3.54443 3.54443 -129.752 -3.54443 0 0 585099. 2024.56 0.28 0.07 0.0178498 0.0159868 135 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.94 vpr 60.78 MiB -1 -1 0.19 21332 1 0.02 -1 -1 33100 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62240 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 22.3 MiB 0.30 1096 60.8 MiB 0.08 0.00 3.36484 -104.756 -3.36484 3.36484 1.06 0.000249008 0.000199413 0.0148958 0.0123225 26 3159 36 6.65987e+06 291594 477104. 1650.88 2.08 0.0874431 0.0760422 2576 20 1597 2458 183636 41438 3.93437 3.93437 -135.915 -3.93437 0 0 585099. 2024.56 0.29 0.07 0.0205934 0.0185105 142 59 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.68 vpr 60.29 MiB -1 -1 0.16 20928 1 0.01 -1 -1 33180 -1 -1 18 26 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61736 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 21.9 MiB 0.33 425 60.3 MiB 0.04 0.00 1.89953 -53.2798 -1.89953 1.89953 1.06 0.000146174 0.000116797 0.00837912 0.00692925 28 1255 22 6.65987e+06 228204 500653. 1732.36 0.96 0.0386735 0.0330161 1031 16 527 697 52964 13205 1.83391 1.83391 -66.1542 -1.83391 0 0 612192. 2118.31 0.31 0.03 0.00892779 0.00797413 77 21 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 7.30 vpr 60.92 MiB -1 -1 0.16 20608 1 0.01 -1 -1 33160 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62384 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 22.5 MiB 0.11 938 60.9 MiB 0.07 0.00 3.9748 -99.0124 -3.9748 3.9748 1.03 0.000224237 0.000185647 0.0113381 0.00949728 28 2523 50 6.65987e+06 266238 500653. 1732.36 3.76 0.144899 0.125759 1988 24 1360 2576 188188 46250 3.82277 3.82277 -123.088 -3.82277 0 0 612192. 2118.31 0.30 0.07 0.0191098 0.0170614 118 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.53 vpr 60.31 MiB -1 -1 0.15 20532 1 0.02 -1 -1 33068 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61756 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 21.7 MiB 0.14 470 60.3 MiB 0.05 0.00 1.99767 -58.7249 -1.99767 1.99767 1.07 0.000142488 0.000114137 0.0108417 0.00888537 32 1245 24 6.65987e+06 177492 554710. 1919.41 0.92 0.0368457 0.0311319 1050 17 586 665 49445 13135 2.02905 2.02905 -74.2427 -2.02905 0 0 701300. 2426.64 0.35 0.03 0.00913238 0.00817955 79 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.72 vpr 60.98 MiB -1 -1 0.18 21072 1 0.01 -1 -1 33148 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62440 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 22.5 MiB 0.12 822 61.0 MiB 0.08 0.00 3.35795 -95.1947 -3.35795 3.35795 1.07 0.00023037 0.000187048 0.0140293 0.0116705 32 1997 22 6.65987e+06 380340 554710. 1919.41 0.99 0.0555885 0.0475089 1752 18 1013 1641 108947 26296 3.41705 3.41705 -113.028 -3.41705 0 0 701300. 2426.64 0.35 0.05 0.0158176 0.0142348 123 21 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.28 vpr 60.95 MiB -1 -1 0.17 20740 1 0.01 -1 -1 33176 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62412 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 22.4 MiB 0.12 961 60.9 MiB 0.07 0.00 2.87304 -84.7212 -2.87304 2.87304 1.07 0.000244431 0.000200114 0.0113818 0.00950983 26 2424 39 6.65987e+06 393018 477104. 1650.88 1.61 0.0735656 0.0639175 2114 24 1402 2508 190700 46885 3.24957 3.24957 -113.404 -3.24957 0 0 585099. 2024.56 0.30 0.08 0.0205256 0.0183307 128 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.95 vpr 61.21 MiB -1 -1 0.19 21216 1 0.02 -1 -1 33160 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62684 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 22.6 MiB 0.16 1084 61.2 MiB 0.13 0.00 3.32969 -104.297 -3.32969 3.32969 1.07 0.000267264 0.000218094 0.0241747 0.0199677 28 2466 22 6.65987e+06 329628 500653. 1732.36 1.15 0.0784858 0.0674144 2191 23 1463 2578 183911 41456 3.62439 3.62439 -123.515 -3.62439 0 0 612192. 2118.31 0.32 0.07 0.0199254 0.0177356 125 47 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.59 vpr 60.68 MiB -1 -1 0.17 21048 1 0.02 -1 -1 33136 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62136 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 22.1 MiB 0.06 839 60.7 MiB 0.05 0.00 2.29953 -82.9991 -2.29953 2.29953 1.07 0.000232194 0.000193065 0.0104198 0.00874863 32 1918 21 6.65987e+06 202848 554710. 1919.41 0.98 0.0510165 0.0438323 1724 19 1077 1721 131584 30461 2.41431 2.41431 -98.2275 -2.41431 0 0 701300. 2426.64 0.34 0.05 0.0139919 0.0124673 101 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.40 vpr 60.61 MiB -1 -1 0.17 21084 1 0.01 -1 -1 33208 -1 -1 23 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62068 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 22.1 MiB 0.10 624 60.6 MiB 0.05 0.00 2.39767 -75.076 -2.39767 2.39767 1.02 0.000189813 0.000153343 0.0102335 0.00849987 32 1648 21 6.65987e+06 291594 554710. 1919.41 0.92 0.0460635 0.0391266 1446 20 937 1410 106385 25214 2.85985 2.85985 -96.0039 -2.85985 0 0 701300. 2426.64 0.34 0.05 0.0133733 0.0118717 97 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.57 vpr 60.66 MiB -1 -1 0.17 21068 1 0.01 -1 -1 33168 -1 -1 23 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62112 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 22.1 MiB 0.05 626 60.7 MiB 0.10 0.00 2.64264 -75.2709 -2.64264 2.64264 1.06 0.000197643 0.000161112 0.0177731 0.0146349 28 1738 22 6.65987e+06 291594 500653. 1732.36 0.98 0.0583538 0.0499437 1531 19 965 1606 107163 26389 2.80071 2.80071 -93.4966 -2.80071 0 0 612192. 2118.31 0.31 0.05 0.013678 0.0122129 98 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.50 vpr 60.63 MiB -1 -1 0.17 20792 1 0.01 -1 -1 33160 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62088 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 22.1 MiB 0.12 654 60.6 MiB 0.05 0.00 2.99795 -89.193 -2.99795 2.99795 1.01 0.000197258 0.000158039 0.0102068 0.00839046 32 1922 25 6.65987e+06 240882 554710. 1919.41 0.96 0.049462 0.04233 1619 23 1247 1941 130116 33289 2.84271 2.84271 -105.519 -2.84271 0 0 701300. 2426.64 0.33 0.06 0.0155834 0.0138656 110 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.75 vpr 60.71 MiB -1 -1 0.17 20836 1 0.02 -1 -1 33200 -1 -1 27 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62168 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 22.1 MiB 0.12 740 60.7 MiB 0.05 0.00 2.64264 -81.8876 -2.64264 2.64264 1.06 0.000227223 0.00018735 0.00822221 0.00689413 24 2132 26 6.65987e+06 342306 448715. 1552.65 1.19 0.0572779 0.0498296 1793 22 1113 1815 137646 32687 2.99905 2.99905 -107.088 -2.99905 0 0 554710. 1919.41 0.27 0.06 0.0154777 0.01372 103 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.76 vpr 60.78 MiB -1 -1 0.18 21236 1 0.03 -1 -1 33072 -1 -1 25 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62236 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 22.1 MiB 0.29 716 60.8 MiB 0.04 0.00 2.46204 -78.3242 -2.46204 2.46204 1.05 0.00012416 0.000101816 0.00684007 0.00582214 26 1954 24 6.65987e+06 316950 477104. 1650.88 1.01 0.0520085 0.0450443 1718 20 1130 1761 140307 33152 2.30451 2.30451 -92.5586 -2.30451 0 0 585099. 2024.56 0.29 0.06 0.0147088 0.0130542 105 48 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.92 vpr 61.29 MiB -1 -1 0.18 21192 1 0.01 -1 -1 33060 -1 -1 37 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62756 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 23.0 MiB 0.33 1230 61.3 MiB 0.11 0.00 2.96052 -95.1556 -2.96052 2.96052 1.05 0.00027875 0.000229065 0.0186643 0.015528 28 2639 23 6.65987e+06 469086 500653. 1732.36 2.98 0.12306 0.104871 2353 22 1386 2646 168259 38766 3.09639 3.09639 -110.979 -3.09639 0 0 612192. 2118.31 0.32 0.07 0.0232333 0.020838 150 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 5.06 vpr 61.39 MiB -1 -1 0.18 21256 1 0.02 -1 -1 33244 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62864 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 22.8 MiB 0.34 1079 61.4 MiB 0.15 0.00 3.01595 -104.358 -3.01595 3.01595 1.06 0.000290978 0.00024044 0.0283395 0.0234163 28 2425 25 6.65987e+06 456408 500653. 1732.36 1.06 0.0867348 0.0740959 2110 21 1628 2626 176608 39333 2.78477 2.78477 -117.16 -2.78477 0 0 612192. 2118.31 0.31 0.07 0.0217374 0.0194176 146 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 5.26 vpr 60.90 MiB -1 -1 0.18 21360 1 0.01 -1 -1 33212 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62360 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 22.5 MiB 0.35 731 60.9 MiB 0.07 0.00 3.35895 -96.2335 -3.35895 3.35895 1.06 0.000213918 0.000173644 0.0144691 0.0120872 28 2196 23 6.65987e+06 215526 500653. 1732.36 1.33 0.0627561 0.0544145 1688 22 1191 1708 120080 30720 3.11151 3.11151 -109.167 -3.11151 0 0 612192. 2118.31 0.31 0.06 0.016163 0.0144274 109 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.95 vpr 61.07 MiB -1 -1 0.19 21232 1 0.02 -1 -1 33092 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62536 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 22.7 MiB 0.33 953 61.1 MiB 0.05 0.00 3.52075 -106.597 -3.52075 3.52075 0.98 0.000252767 0.000203671 0.00997026 0.008371 26 2876 48 6.65987e+06 304272 477104. 1650.88 2.21 0.0983686 0.0863025 2306 22 1470 2616 211711 48423 2.98997 2.98997 -116.979 -2.98997 0 0 585099. 2024.56 0.29 0.08 0.0211652 0.0187572 137 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.77 vpr 61.18 MiB -1 -1 0.20 21252 1 0.01 -1 -1 33212 -1 -1 27 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62652 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 23.1 MiB 0.45 1265 61.2 MiB 0.10 0.00 4.50067 -137.255 -4.50067 4.50067 1.05 0.000286836 0.000236426 0.0173744 0.0144951 28 3161 24 6.65987e+06 342306 500653. 1732.36 1.67 0.0819767 0.0714571 2621 20 1998 2936 207225 47502 5.00043 5.00043 -168.264 -5.00043 0 0 612192. 2118.31 0.32 0.08 0.0221261 0.019972 170 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.35 vpr 61.39 MiB -1 -1 0.19 21456 1 0.02 -1 -1 33116 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62864 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 23.1 MiB 1.68 1158 61.4 MiB 0.10 0.00 4.00075 -119.648 -4.00075 4.00075 1.07 0.000276613 0.000226093 0.0188353 0.0156753 32 2552 23 6.65987e+06 316950 554710. 1919.41 1.01 0.0712445 0.0609431 2325 19 1599 2475 172578 41001 4.28002 4.28002 -144.177 -4.28002 0 0 701300. 2426.64 0.34 0.07 0.0195583 0.017571 162 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 5.15 vpr 61.10 MiB -1 -1 0.18 21216 1 0.02 -1 -1 33144 -1 -1 29 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62564 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 22.6 MiB 0.28 1044 61.1 MiB 0.09 0.00 3.49109 -104.44 -3.49109 3.49109 1.07 0.000240724 0.000198112 0.0148398 0.0123931 28 2500 20 6.65987e+06 367662 500653. 1732.36 1.25 0.072445 0.0632065 2314 21 1523 2595 182269 42584 3.10745 3.10745 -118.198 -3.10745 0 0 612192. 2118.31 0.31 0.07 0.0177462 0.0157381 133 51 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.25 vpr 60.89 MiB -1 -1 0.16 20944 1 0.02 -1 -1 33212 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62356 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 22.4 MiB 0.21 1059 60.9 MiB 0.07 0.00 3.34124 -97.7479 -3.34124 3.34124 1.03 0.000210316 0.000173117 0.0132454 0.0110148 26 2613 35 6.65987e+06 278916 477104. 1650.88 1.66 0.074679 0.0648568 2167 20 1251 1818 126721 30316 3.51725 3.51725 -118.404 -3.51725 0 0 585099. 2024.56 0.28 0.06 0.0161666 0.0145254 118 24 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 6.07 vpr 61.22 MiB -1 -1 0.20 21668 1 0.02 -1 -1 33320 -1 -1 38 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62688 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 23.2 MiB 0.36 1048 61.2 MiB 0.12 0.00 3.82715 -122.682 -3.82715 3.82715 1.07 0.000349921 0.000287031 0.0210248 0.0175709 28 3306 31 6.65987e+06 481764 500653. 1732.36 1.99 0.103062 0.0896031 2560 21 1749 2871 205457 48836 4.01331 4.01331 -144.338 -4.01331 0 0 612192. 2118.31 0.32 0.09 0.0253605 0.0226988 172 84 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.67 vpr 60.62 MiB -1 -1 0.16 21008 1 0.01 -1 -1 33104 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62080 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 22.1 MiB 0.15 756 60.6 MiB 0.05 0.00 2.74078 -78.1572 -2.74078 2.74078 1.06 0.000216819 0.000177719 0.00952218 0.00795484 32 1708 25 6.65987e+06 266238 554710. 1919.41 0.97 0.0464675 0.0396509 1608 19 1068 1824 136212 31936 2.72545 2.72545 -97.0215 -2.72545 0 0 701300. 2426.64 0.34 0.06 0.0141686 0.0127107 101 24 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 5.51 vpr 61.20 MiB -1 -1 0.19 21332 1 0.01 -1 -1 33200 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62664 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 22.8 MiB 0.28 1227 61.2 MiB 0.10 0.00 3.8195 -115.398 -3.8195 3.8195 1.07 0.000281387 0.000232998 0.0170141 0.0143014 28 3073 27 6.65987e+06 291594 500653. 1732.36 1.59 0.0799143 0.0697096 2577 21 1614 2328 201824 44450 4.09351 4.09351 -138.411 -4.09351 0 0 612192. 2118.31 0.31 0.08 0.0204259 0.018388 142 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.31 vpr 61.14 MiB -1 -1 0.19 21252 1 0.02 -1 -1 33052 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62608 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 22.7 MiB 0.20 1063 61.1 MiB 0.07 0.00 3.1757 -97.7785 -3.1757 3.1757 1.04 0.000255294 0.000205727 0.0113252 0.00941162 28 2762 43 6.65987e+06 418374 500653. 1732.36 1.59 0.0794574 0.0685605 2240 21 1296 2311 154156 35882 3.10711 3.10711 -113.218 -3.10711 0 0 612192. 2118.31 0.31 0.07 0.0189223 0.0167792 131 50 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 5.02 vpr 60.96 MiB -1 -1 0.18 20608 1 0.01 -1 -1 33132 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62420 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 22.5 MiB 0.12 1050 61.0 MiB 0.12 0.00 3.12884 -99.855 -3.12884 3.12884 1.06 0.000235874 0.000190986 0.0208415 0.0170224 32 2407 48 6.65987e+06 304272 554710. 1919.41 1.25 0.0829846 0.0712603 2180 22 1424 2730 220952 49700 3.31505 3.31505 -118.718 -3.31505 0 0 701300. 2426.64 0.34 0.08 0.0189295 0.0169523 123 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.13 vpr 60.79 MiB -1 -1 0.19 21372 1 0.02 -1 -1 33084 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62248 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 22.3 MiB 0.46 1142 60.8 MiB 0.08 0.00 3.3144 -102.944 -3.3144 3.3144 1.07 0.000270273 0.000222491 0.0133259 0.0112056 28 2675 23 6.65987e+06 278916 500653. 1732.36 1.08 0.0659318 0.0568851 2228 17 1085 1496 114013 26206 3.15471 3.15471 -118.169 -3.15471 0 0 612192. 2118.31 0.31 0.06 0.0180033 0.0162668 136 52 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 5.24 vpr 61.23 MiB -1 -1 0.19 21400 1 0.02 -1 -1 33108 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 22.7 MiB 0.49 978 61.2 MiB 0.13 0.00 2.9071 -97.1294 -2.9071 2.9071 1.08 0.000276932 0.000228091 0.0251079 0.0208777 32 2559 22 6.65987e+06 393018 554710. 1919.41 1.02 0.0771928 0.0660913 2112 21 1374 2301 172641 40005 3.20131 3.20131 -115.927 -3.20131 0 0 701300. 2426.64 0.35 0.07 0.0208103 0.0186094 132 52 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 5.38 vpr 61.04 MiB -1 -1 0.18 21256 1 0.01 -1 -1 33164 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62500 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 22.4 MiB 0.47 1040 61.0 MiB 0.12 0.00 3.47495 -107.135 -3.47495 3.47495 1.07 0.000293037 0.000241105 0.021963 0.0183125 28 2738 30 6.65987e+06 456408 500653. 1732.36 1.28 0.0909407 0.0788161 2300 19 1345 2041 156568 35344 3.18051 3.18051 -123.448 -3.18051 0 0 612192. 2118.31 0.30 0.07 0.0186989 0.0166537 144 59 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.74 vpr 61.00 MiB -1 -1 0.18 21360 1 0.02 -1 -1 33088 -1 -1 29 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62464 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 22.5 MiB 0.13 995 61.0 MiB 0.12 0.00 3.20104 -100.358 -3.20104 3.20104 1.05 0.000234703 0.000190515 0.0210151 0.0173901 28 2387 20 6.65987e+06 367662 500653. 1732.36 1.04 0.0718629 0.0620987 2019 23 1476 2444 186307 42738 3.25179 3.25179 -116.602 -3.25179 0 0 612192. 2118.31 0.31 0.08 0.0198185 0.0177398 122 21 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.93 vpr 60.68 MiB -1 -1 0.18 21212 1 0.01 -1 -1 33104 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62132 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 22.3 MiB 0.15 981 60.7 MiB 0.06 0.00 3.87369 -112.984 -3.87369 3.87369 1.06 0.000255899 0.00020997 0.00994019 0.00834948 26 2694 22 6.65987e+06 291594 477104. 1650.88 1.28 0.0627246 0.054368 2295 22 1678 2424 178916 42498 3.71245 3.71245 -130.967 -3.71245 0 0 585099. 2024.56 0.29 0.07 0.0182004 0.0162489 133 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.23 vpr 60.41 MiB -1 -1 0.20 21252 1 0.03 -1 -1 33164 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61856 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 22.6 MiB 0.37 1149 60.4 MiB 0.09 0.00 3.54855 -109.22 -3.54855 3.54855 1.06 0.000280065 0.000229763 0.0157097 0.0131286 30 2835 28 6.65987e+06 291594 526063. 1820.29 1.25 0.0808166 0.0701563 2223 21 1398 2264 144588 32887 3.52551 3.52551 -128.34 -3.52551 0 0 666494. 2306.21 0.33 0.06 0.0196593 0.01757 146 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.93 vpr 61.09 MiB -1 -1 0.20 21456 1 0.02 -1 -1 33072 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 22.6 MiB 0.22 1036 61.1 MiB 0.08 0.00 3.25298 -105.833 -3.25298 3.25298 1.05 0.000262665 0.000213379 0.0159505 0.0132794 32 2781 22 6.65987e+06 266238 554710. 1919.41 1.06 0.0701141 0.0602769 2289 18 1445 2526 185622 43277 3.42505 3.42505 -123.773 -3.42505 0 0 701300. 2426.64 0.34 0.07 0.0199311 0.0180035 135 74 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.77 vpr 60.70 MiB -1 -1 0.18 21052 1 0.01 -1 -1 33112 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62160 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 22.2 MiB 0.12 629 60.7 MiB 0.05 0.00 2.59064 -77.7391 -2.59064 2.59064 1.06 0.000213376 0.000176136 0.00954824 0.00798791 28 1846 28 6.65987e+06 304272 500653. 1732.36 1.18 0.0576743 0.0501977 1465 21 925 1419 104412 26708 2.51631 2.51631 -90.971 -2.51631 0 0 612192. 2118.31 0.32 0.05 0.0142644 0.0127248 97 20 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.07 vpr 61.02 MiB -1 -1 0.18 21212 1 0.02 -1 -1 33196 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62484 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 22.6 MiB 0.19 883 61.0 MiB 0.07 0.00 3.1319 -107.327 -3.1319 3.1319 1.05 0.000256097 0.000209709 0.0160511 0.0133048 32 2542 46 6.65987e+06 253560 554710. 1919.41 1.26 0.084121 0.0726581 2046 20 1433 1972 168118 40188 3.17857 3.17857 -128.415 -3.17857 0 0 701300. 2426.64 0.35 0.07 0.0176962 0.0158026 125 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.86 vpr 60.99 MiB -1 -1 0.19 21112 1 0.02 -1 -1 33232 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62456 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 22.8 MiB 0.20 1386 61.0 MiB 0.08 0.00 4.2821 -131.085 -4.2821 4.2821 1.02 0.000282482 0.000229706 0.0143088 0.0120863 36 3056 24 6.65987e+06 354984 612192. 2118.31 2.05 0.127871 0.111193 2603 23 1970 3160 222595 49171 4.20859 4.20859 -142.617 -4.20859 0 0 782063. 2706.10 0.38 0.09 0.0253794 0.0227334 168 28 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.87 vpr 61.06 MiB -1 -1 0.17 21300 1 0.02 -1 -1 33188 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62524 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 22.8 MiB 0.31 1045 61.1 MiB 0.13 0.00 3.62566 -111.859 -3.62566 3.62566 1.03 0.00024424 0.000197241 0.0211858 0.0173927 28 2294 24 6.65987e+06 393018 500653. 1732.36 1.00 0.0715307 0.0609666 2092 18 1065 1660 120597 27070 2.83591 2.83591 -117.854 -2.83591 0 0 612192. 2118.31 0.30 0.06 0.017185 0.0154281 133 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.61 vpr 60.70 MiB -1 -1 0.18 21080 1 0.01 -1 -1 33060 -1 -1 26 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62156 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 22.1 MiB 0.06 612 60.7 MiB 0.06 0.00 2.75484 -82.0819 -2.75484 2.75484 1.07 0.000228692 0.000187632 0.0121269 0.0100977 30 1632 22 6.65987e+06 329628 526063. 1820.29 1.01 0.0509518 0.0434814 1371 19 843 1429 85391 20804 2.58231 2.58231 -94.4536 -2.58231 0 0 666494. 2306.21 0.33 0.05 0.0148441 0.0133241 104 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 7.03 vpr 61.31 MiB -1 -1 0.20 21480 1 0.03 -1 -1 33272 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62780 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 23.3 MiB 0.46 1469 61.3 MiB 0.09 0.00 4.66752 -141.811 -4.66752 4.66752 1.07 0.000328581 0.000272606 0.0178676 0.0150398 26 3908 50 6.65987e+06 316950 477104. 1650.88 2.85 0.117259 0.1025 3000 25 2422 3541 317613 80463 4.99717 4.99717 -170.373 -4.99717 0 0 585099. 2024.56 0.30 0.12 0.0299662 0.0270093 168 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.94 vpr 60.67 MiB -1 -1 0.17 21344 1 0.01 -1 -1 33152 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62124 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 22.0 MiB 0.34 1031 60.7 MiB 0.13 0.00 3.48015 -110.305 -3.48015 3.48015 1.07 0.000255622 0.000208693 0.0233519 0.0192999 30 2159 20 6.65987e+06 405696 526063. 1820.29 0.97 0.0687354 0.0585528 1891 21 1044 1633 99750 22939 3.24997 3.24997 -118.52 -3.24997 0 0 666494. 2306.21 0.32 0.05 0.0182328 0.0162303 130 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.57 vpr 60.38 MiB -1 -1 0.15 20772 1 0.01 -1 -1 32996 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61824 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 21.9 MiB 0.05 698 60.4 MiB 0.04 0.00 2.48032 -71.9577 -2.48032 2.48032 1.06 0.000195691 0.000157701 0.00813073 0.00678176 28 1851 43 6.65987e+06 291594 500653. 1732.36 1.07 0.0566328 0.0488637 1526 18 863 1482 98285 24857 2.71959 2.71959 -93.1752 -2.71959 0 0 612192. 2118.31 0.31 0.04 0.011991 0.0107237 100 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.02 vpr 61.24 MiB -1 -1 0.19 21344 1 0.02 -1 -1 33088 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62708 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 22.7 MiB 0.17 1083 61.2 MiB 0.13 0.00 4.06823 -104.161 -4.06823 4.06823 1.07 0.000252873 0.000205492 0.0233777 0.019336 32 2561 24 6.65987e+06 431052 554710. 1919.41 1.09 0.0780804 0.0671123 2239 38 1793 3137 440734 189389 3.80305 3.80305 -123.205 -3.80305 0 0 701300. 2426.64 0.33 0.17 0.0297077 0.0261675 139 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.62 vpr 60.64 MiB -1 -1 0.17 20716 1 0.01 -1 -1 33116 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62100 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 22.1 MiB 0.11 665 60.6 MiB 0.05 0.00 2.69584 -81.828 -2.69584 2.69584 1.05 0.000220017 0.000181639 0.0088626 0.00741418 32 1895 22 6.65987e+06 253560 554710. 1919.41 1.00 0.0465248 0.0400381 1565 21 1110 1792 137381 38870 2.76971 2.76971 -101.821 -2.76971 0 0 701300. 2426.64 0.34 0.06 0.0154604 0.0138399 104 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.91 vpr 60.64 MiB -1 -1 0.18 21088 1 0.01 -1 -1 33192 -1 -1 33 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62096 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 22.0 MiB 0.19 794 60.6 MiB 0.10 0.00 3.06889 -86.4063 -3.06889 3.06889 1.04 0.000203232 0.000162567 0.016167 0.0131796 26 1884 21 6.65987e+06 418374 477104. 1650.88 1.26 0.0592465 0.0506759 1665 16 883 1530 98791 24125 2.69325 2.69325 -99.3879 -2.69325 0 0 585099. 2024.56 0.29 0.05 0.012719 0.0113948 105 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.15 vpr 61.29 MiB -1 -1 0.20 21316 1 0.01 -1 -1 33264 -1 -1 24 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62764 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 22.8 MiB 0.33 1003 61.3 MiB 0.08 0.00 3.3315 -97.0381 -3.3315 3.3315 1.05 0.000285396 0.000222466 0.0149588 0.012521 28 2624 22 6.65987e+06 304272 500653. 1732.36 1.24 0.0735722 0.0641214 2157 28 1427 2166 178771 46548 3.54557 3.54557 -116.142 -3.54557 0 0 612192. 2118.31 0.31 0.08 0.023871 0.0211699 138 56 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.77 vpr 61.23 MiB -1 -1 0.17 21216 1 0.02 -1 -1 33140 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62704 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 22.8 MiB 0.22 886 61.2 MiB 0.06 0.00 3.5135 -106.134 -3.5135 3.5135 1.06 0.00026074 0.000211284 0.0126381 0.0104755 32 2095 20 6.65987e+06 304272 554710. 1919.41 0.98 0.0592614 0.0505645 1782 19 1379 2141 136656 32989 3.57937 3.57937 -123.992 -3.57937 0 0 701300. 2426.64 0.34 0.06 0.017241 0.015352 130 51 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.95 vpr 60.73 MiB -1 -1 0.17 21312 1 0.02 -1 -1 33096 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62188 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 22.3 MiB 0.27 1104 60.7 MiB 0.13 0.00 3.51544 -109.504 -3.51544 3.51544 1.04 0.00025273 0.000202289 0.02256 0.0185365 32 2608 23 6.65987e+06 342306 554710. 1919.41 1.01 0.0715862 0.0609336 2207 21 1482 2565 175754 41338 3.54011 3.54011 -125.534 -3.54011 0 0 701300. 2426.64 0.35 0.07 0.0209489 0.0188145 132 48 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.68 vpr 60.69 MiB -1 -1 0.17 20988 1 0.01 -1 -1 33128 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62148 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 22.1 MiB 0.32 728 60.7 MiB 0.06 0.00 3.7712 -105.711 -3.7712 3.7712 1.04 0.000214404 0.000174753 0.0111564 0.00933307 28 1878 21 6.65987e+06 202848 500653. 1732.36 0.92 0.0500332 0.0428243 1646 19 860 1161 74942 19387 3.30665 3.30665 -116.282 -3.30665 0 0 612192. 2118.31 0.31 0.05 0.0148831 0.0132667 103 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.77 vpr 60.97 MiB -1 -1 0.18 21212 1 0.01 -1 -1 33108 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62436 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 22.4 MiB 0.28 904 61.0 MiB 0.09 0.00 2.85458 -96.004 -2.85458 2.85458 1.02 0.00022337 0.000180028 0.0191627 0.0156028 28 2186 20 6.65987e+06 240882 500653. 1732.36 1.03 0.0636604 0.0540645 1860 19 1151 1700 114977 26863 2.78905 2.78905 -109.089 -2.78905 0 0 612192. 2118.31 0.30 0.05 0.0154256 0.0137368 111 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.79 vpr 61.09 MiB -1 -1 0.19 21312 1 0.02 -1 -1 33192 -1 -1 33 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 22.5 MiB 0.27 884 61.1 MiB 0.07 0.00 2.55652 -76.5712 -2.55652 2.55652 1.06 0.000274329 0.00021754 0.0126476 0.0103498 30 2026 23 6.65987e+06 418374 526063. 1820.29 0.94 0.0561685 0.0476102 1757 21 927 1682 96146 22491 2.52619 2.52619 -88.0289 -2.52619 0 0 666494. 2306.21 0.34 0.05 0.0178894 0.0160009 123 52 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.77 vpr 60.88 MiB -1 -1 0.19 21052 1 0.01 -1 -1 33240 -1 -1 35 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62336 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 22.4 MiB 0.16 853 60.9 MiB 0.07 0.00 3.14078 -80.143 -3.14078 3.14078 1.05 0.000207275 0.000166345 0.0110205 0.00915016 26 2272 21 6.65987e+06 443730 477104. 1650.88 1.17 0.0558232 0.048353 1779 21 907 1791 137787 29833 3.14765 3.14765 -96.7531 -3.14765 0 0 585099. 2024.56 0.29 0.06 0.0156872 0.0139727 115 20 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 5.39 vpr 60.79 MiB -1 -1 0.19 21120 1 0.01 -1 -1 33212 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62244 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 22.4 MiB 0.72 890 60.8 MiB 0.09 0.00 3.17335 -94.3658 -3.17335 3.17335 1.05 0.000228082 0.000184852 0.0195142 0.0160646 26 2175 22 6.65987e+06 215526 477104. 1650.88 1.17 0.0701382 0.0602298 1882 23 1198 2109 195640 41856 2.95771 2.95771 -112.157 -2.95771 0 0 585099. 2024.56 0.29 0.07 0.0172966 0.0153058 108 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.86 vpr 60.78 MiB -1 -1 0.19 21180 1 0.02 -1 -1 33080 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62240 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 22.1 MiB 0.25 902 60.8 MiB 0.08 0.00 2.94464 -100.046 -2.94464 2.94464 1.04 0.000248149 0.000202933 0.0140167 0.0115748 32 2333 21 6.65987e+06 253560 554710. 1919.41 0.99 0.0575498 0.0489244 2049 22 1581 2300 188640 43592 3.05411 3.05411 -116.48 -3.05411 0 0 701300. 2426.64 0.34 0.07 0.0192717 0.0172189 120 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.71 vpr 61.04 MiB -1 -1 0.18 20664 1 0.02 -1 -1 33100 -1 -1 32 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62508 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 22.5 MiB 0.10 1005 61.0 MiB 0.09 0.00 3.18204 -94.3858 -3.18204 3.18204 1.05 0.000241245 0.000197475 0.0144904 0.0120429 32 2406 22 6.65987e+06 405696 554710. 1919.41 1.00 0.0583648 0.0502503 2080 21 1167 2190 151440 35521 3.36499 3.36499 -113.552 -3.36499 0 0 701300. 2426.64 0.33 0.06 0.0170202 0.015119 127 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.02 vpr 61.18 MiB -1 -1 0.18 21228 1 0.02 -1 -1 33164 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62648 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 22.7 MiB 0.35 1158 61.2 MiB 0.06 0.00 3.98521 -128.524 -3.98521 3.98521 1.06 0.000264466 0.000215665 0.0106506 0.00899849 32 3098 21 6.65987e+06 278916 554710. 1919.41 1.06 0.0618079 0.053509 2542 21 1725 2597 195967 46006 4.08131 4.08131 -145.66 -4.08131 0 0 701300. 2426.64 0.34 0.08 0.0203815 0.0183184 144 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.10 vpr 61.21 MiB -1 -1 0.19 21152 1 0.02 -1 -1 33060 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62684 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 22.7 MiB 0.39 1152 61.2 MiB 0.13 0.00 4.28881 -120.499 -4.28881 4.28881 1.04 0.000266778 0.000214446 0.0219869 0.0181153 32 2784 23 6.65987e+06 405696 554710. 1919.41 1.04 0.0734802 0.0625527 2330 22 1264 2214 162444 37563 3.90623 3.90623 -132.289 -3.90623 0 0 701300. 2426.64 0.33 0.07 0.0205142 0.0182652 142 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.72 vpr 61.21 MiB -1 -1 0.18 21056 1 0.01 -1 -1 33124 -1 -1 37 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62680 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 22.6 MiB 0.33 947 61.2 MiB 0.13 0.00 3.34075 -105.437 -3.34075 3.34075 1.04 0.000272608 0.000220072 0.0225989 0.0187685 28 2906 50 6.65987e+06 469086 500653. 1732.36 1.77 0.105775 0.0913578 2209 20 1595 2711 187086 46317 3.55511 3.55511 -133.46 -3.55511 0 0 612192. 2118.31 0.30 0.07 0.0202957 0.0182194 140 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.84 vpr 60.68 MiB -1 -1 0.17 21032 1 0.01 -1 -1 33196 -1 -1 19 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62136 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 22.1 MiB 0.27 654 60.7 MiB 0.07 0.00 2.76049 -83.323 -2.76049 2.76049 1.07 0.000232202 0.00019263 0.01338 0.0109909 32 2192 24 6.65987e+06 240882 554710. 1919.41 1.02 0.053996 0.0458448 1610 20 1182 1957 149296 35840 2.90485 2.90485 -99.3834 -2.90485 0 0 701300. 2426.64 0.33 0.06 0.0149544 0.0133975 105 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.99 vpr 61.09 MiB -1 -1 0.19 21192 1 0.02 -1 -1 33244 -1 -1 21 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62556 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 22.5 MiB 0.33 947 61.1 MiB 0.11 0.00 3.80967 -108.923 -3.80967 3.80967 1.07 0.000283273 0.000233185 0.022 0.0182934 32 2226 26 6.65987e+06 266238 554710. 1919.41 1.01 0.0726859 0.0617559 1875 20 1493 2313 159631 38557 3.47442 3.47442 -126.419 -3.47442 0 0 701300. 2426.64 0.34 0.07 0.020369 0.0182751 137 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 5.63 vpr 61.14 MiB -1 -1 0.17 21372 1 0.02 -1 -1 33080 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62612 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 22.7 MiB 0.37 1225 61.1 MiB 0.10 0.00 3.6954 -114.939 -3.6954 3.6954 1.07 0.000270908 0.000220791 0.01747 0.0144526 34 2585 23 6.65987e+06 304272 585099. 2024.56 1.57 0.0901623 0.0769962 2242 22 1533 2257 160587 36819 3.73165 3.73165 -131.444 -3.73165 0 0 742403. 2568.87 0.35 0.07 0.0199382 0.0178567 138 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 5.13 vpr 61.35 MiB -1 -1 0.19 21116 1 0.02 -1 -1 33176 -1 -1 28 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62820 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 22.9 MiB 0.47 1087 61.3 MiB 0.10 0.00 4.1019 -120.655 -4.1019 4.1019 1.06 0.000249798 0.00020236 0.0168401 0.0139073 32 2450 24 6.65987e+06 354984 554710. 1919.41 1.01 0.0662562 0.0565868 2067 21 1424 2138 135234 33271 4.44437 4.44437 -144.941 -4.44437 0 0 701300. 2426.64 0.35 0.06 0.0193341 0.0173631 146 43 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 6.15 vpr 61.24 MiB -1 -1 0.20 21216 1 0.02 -1 -1 33244 -1 -1 31 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62712 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 22.8 MiB 1.40 1061 61.2 MiB 0.12 0.00 3.25995 -101.832 -3.25995 3.25995 1.03 0.000281424 0.000230028 0.0221993 0.01816 28 2470 33 6.65987e+06 393018 500653. 1732.36 1.20 0.0819961 0.069859 2139 20 1303 2213 158307 36200 3.19031 3.19031 -118.439 -3.19031 0 0 612192. 2118.31 0.30 0.07 0.0184879 0.0164398 133 78 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.95 vpr 60.74 MiB -1 -1 0.17 21228 1 0.01 -1 -1 33212 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62196 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 22.3 MiB 0.26 1084 60.7 MiB 0.11 0.00 3.76955 -111.811 -3.76955 3.76955 1.06 0.000262703 0.000213022 0.021341 0.017805 30 2509 22 6.65987e+06 253560 526063. 1820.29 1.07 0.078262 0.0674433 2068 17 1090 1860 112652 25677 3.47491 3.47491 -128.894 -3.47491 0 0 666494. 2306.21 0.34 0.06 0.0185513 0.0168251 133 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.14 vpr 60.93 MiB -1 -1 0.19 21216 1 0.02 -1 -1 33252 -1 -1 29 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62388 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 22.5 MiB 0.50 887 60.9 MiB 0.07 0.00 3.57869 -100.046 -3.57869 3.57869 1.05 0.000259297 0.000210286 0.0127101 0.0105799 32 2223 23 6.65987e+06 367662 554710. 1919.41 1.02 0.0640671 0.0546302 1937 20 1272 2029 150567 36192 3.05485 3.05485 -113.044 -3.05485 0 0 701300. 2426.64 0.36 0.07 0.0207425 0.0185026 131 79 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.58 vpr 60.55 MiB -1 -1 0.16 20692 1 0.02 -1 -1 33060 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62008 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 22.1 MiB 0.11 673 60.6 MiB 0.09 0.00 2.87075 -87.5745 -2.87075 2.87075 1.07 0.000196568 0.000160038 0.0180635 0.0149095 28 1687 23 6.65987e+06 190170 500653. 1732.36 0.96 0.0551941 0.0471069 1415 19 812 1165 79542 20228 2.71571 2.71571 -100.946 -2.71571 0 0 612192. 2118.31 0.30 0.04 0.0133783 0.0119696 96 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.99 vpr 61.11 MiB -1 -1 0.18 21356 1 0.02 -1 -1 33068 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62580 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 22.7 MiB 0.35 1042 61.1 MiB 0.11 0.00 3.45695 -110.741 -3.45695 3.45695 1.08 0.000264339 0.000216334 0.0202291 0.0165728 28 2223 21 6.65987e+06 380340 500653. 1732.36 1.01 0.0737379 0.0630682 2046 20 1392 2264 143707 34344 3.63751 3.63751 -130.153 -3.63751 0 0 612192. 2118.31 0.31 0.07 0.0192695 0.0172251 130 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.13 vpr 61.35 MiB -1 -1 0.18 21332 1 0.02 -1 -1 33236 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62824 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 22.8 MiB 0.35 1023 61.4 MiB 0.09 0.00 3.96801 -123.949 -3.96801 3.96801 1.08 0.000303401 0.000251595 0.0174606 0.0146075 32 2431 30 6.65987e+06 253560 554710. 1919.41 1.09 0.0789628 0.0678796 2190 21 1758 2897 225916 56032 3.72157 3.72157 -138.93 -3.72157 0 0 701300. 2426.64 0.34 0.09 0.0220742 0.0197091 147 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.84 vpr 60.81 MiB -1 -1 0.16 21048 1 0.02 -1 -1 33172 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62268 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 22.2 MiB 0.28 902 60.8 MiB 0.09 0.00 3.19629 -94.5034 -3.19629 3.19629 1.07 0.000223694 0.000184819 0.0170563 0.0141871 32 1909 17 6.65987e+06 240882 554710. 1919.41 0.97 0.0526692 0.044955 1682 16 825 1125 69615 18332 2.84065 2.84065 -104.452 -2.84065 0 0 701300. 2426.64 0.35 0.04 0.0138198 0.0125816 111 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.51 vpr 60.70 MiB -1 -1 0.16 20908 1 0.01 -1 -1 33124 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62156 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 22.2 MiB 0.12 863 60.7 MiB 0.06 0.00 3.02101 -93.1386 -3.02101 3.02101 1.04 0.000204573 0.000168518 0.0113953 0.00948855 26 1945 28 6.65987e+06 266238 477104. 1650.88 0.93 0.0515221 0.0441409 1808 21 1170 1933 151661 34955 3.16431 3.16431 -107.953 -3.16431 0 0 585099. 2024.56 0.30 0.06 0.0151798 0.0135619 106 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.79 vpr 61.01 MiB -1 -1 0.19 21252 1 0.02 -1 -1 33160 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62476 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 22.5 MiB 0.18 916 61.0 MiB 0.06 0.00 3.82407 -119.306 -3.82407 3.82407 1.07 0.000257665 0.0002095 0.0101032 0.00849852 30 2586 22 6.65987e+06 316950 526063. 1820.29 1.04 0.064198 0.0557532 2023 21 1389 1833 101716 25108 3.91443 3.91443 -138.414 -3.91443 0 0 666494. 2306.21 0.33 0.05 0.0190734 0.0170598 144 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 6.08 vpr 61.26 MiB -1 -1 0.18 21252 1 0.01 -1 -1 33168 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 22.7 MiB 0.55 1170 61.3 MiB 0.10 0.00 3.93949 -119.793 -3.93949 3.93949 1.06 0.000262945 0.000216052 0.0197294 0.0164806 28 3258 25 6.65987e+06 354984 500653. 1732.36 1.96 0.0903428 0.0789438 2584 23 1682 2609 255295 56144 4.18697 4.18697 -143.466 -4.18697 0 0 612192. 2118.31 0.30 0.09 0.0218794 0.0194884 151 53 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.78 vpr 61.23 MiB -1 -1 0.19 20876 1 0.02 -1 -1 33136 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62696 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 22.8 MiB 0.07 1175 61.2 MiB 0.10 0.00 4.21561 -114.742 -4.21561 4.21561 1.06 0.000328791 0.000276137 0.015939 0.0135242 36 2549 23 6.65987e+06 456408 612192. 2118.31 2.03 0.11578 0.100952 2234 22 1401 2595 191985 42560 4.22791 4.22791 -133.785 -4.22791 0 0 782063. 2706.10 0.37 0.08 0.0219801 0.0196255 153 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.86 vpr 60.91 MiB -1 -1 0.19 21332 1 0.01 -1 -1 33168 -1 -1 31 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62372 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 22.4 MiB 0.28 775 60.9 MiB 0.08 0.00 2.60564 -77.8629 -2.60564 2.60564 1.07 0.000236517 0.000184709 0.0128122 0.0106048 28 2026 23 6.65987e+06 393018 500653. 1732.36 1.03 0.0634798 0.0548022 1804 22 1320 2250 136099 34589 2.63331 2.63331 -97.9184 -2.63331 0 0 612192. 2118.31 0.30 0.06 0.0173734 0.0154319 120 47 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.37 vpr 60.71 MiB -1 -1 0.17 20984 1 0.02 -1 -1 33272 -1 -1 21 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62168 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 22.3 MiB 0.06 632 60.7 MiB 0.07 0.00 2.7331 -76.8027 -2.7331 2.7331 1.04 0.000193736 0.000157069 0.0135682 0.0111506 28 1597 26 6.65987e+06 266238 500653. 1732.36 0.91 0.0501641 0.0424498 1373 20 960 1394 95453 23217 2.65557 2.65557 -89.8382 -2.65557 0 0 612192. 2118.31 0.30 0.04 0.0130068 0.0115332 97 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.10 vpr 61.10 MiB -1 -1 0.20 21624 1 0.01 -1 -1 33288 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62564 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 23.1 MiB 0.20 1370 61.1 MiB 0.13 0.00 3.23804 -112.066 -3.23804 3.23804 1.06 0.000299091 0.00023697 0.026604 0.0219424 32 3501 22 6.65987e+06 329628 554710. 1919.41 1.09 0.08814 0.07537 2894 22 2252 3710 271150 62643 3.99105 3.99105 -137.809 -3.99105 0 0 701300. 2426.64 0.39 0.11 0.0291356 0.0258936 170 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.88 vpr 60.68 MiB -1 -1 0.20 21312 1 0.01 -1 -1 33176 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62132 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 22.3 MiB 1.27 868 60.7 MiB 0.07 0.00 4.03841 -114.571 -4.03841 4.03841 1.07 0.000266074 0.000215505 0.0133605 0.0110809 30 2277 24 6.65987e+06 266238 526063. 1820.29 0.99 0.0654616 0.0558505 1759 20 1184 1853 95290 24417 4.26602 4.26602 -136.739 -4.26602 0 0 666494. 2306.21 0.34 0.05 0.019136 0.017122 150 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.87 vpr 60.89 MiB -1 -1 0.18 21112 1 0.02 -1 -1 33164 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62356 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 22.3 MiB 1.24 1070 60.9 MiB 0.10 0.00 3.4165 -110.916 -3.4165 3.4165 1.08 0.000226187 0.000180626 0.0189167 0.0155598 32 2324 24 6.65987e+06 228204 554710. 1919.41 1.01 0.065794 0.0559997 2034 18 1147 1709 117289 27473 3.26696 3.26696 -125.871 -3.26696 0 0 701300. 2426.64 0.35 0.05 0.0173659 0.0156633 126 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.78 vpr 61.15 MiB -1 -1 0.18 21356 1 0.01 -1 -1 33100 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62620 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 22.6 MiB 0.13 1036 61.2 MiB 0.13 0.00 3.642 -100.753 -3.642 3.642 1.06 0.000225307 0.000180873 0.0234516 0.0193091 28 2366 22 6.65987e+06 380340 500653. 1732.36 1.05 0.0747 0.0641141 1994 20 1152 1782 120895 28779 3.26665 3.26665 -115.332 -3.26665 0 0 612192. 2118.31 0.31 0.06 0.0178033 0.0158842 126 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.89 vpr 61.24 MiB -1 -1 0.20 21252 1 0.01 -1 -1 33288 -1 -1 33 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62708 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 22.7 MiB 0.30 1085 61.2 MiB 0.08 0.00 3.95995 -115.059 -3.95995 3.95995 1.04 0.000292839 0.000238056 0.0130547 0.0109689 30 2503 25 6.65987e+06 418374 526063. 1820.29 1.02 0.0672596 0.057662 2093 17 1018 1734 99155 23832 3.31697 3.31697 -120.651 -3.31697 0 0 666494. 2306.21 0.34 0.05 0.018476 0.0167022 144 46 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.08 vpr 60.95 MiB -1 -1 0.19 21252 1 0.02 -1 -1 33172 -1 -1 31 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62416 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 22.4 MiB 0.19 986 61.0 MiB 0.07 0.00 2.8933 -91.3131 -2.8933 2.8933 1.05 0.000245517 0.00020082 0.0120018 0.0100301 26 2473 29 6.65987e+06 393018 477104. 1650.88 1.36 0.0718548 0.062568 2105 23 1305 2349 169584 39514 2.82385 2.82385 -105.434 -2.82385 0 0 585099. 2024.56 0.30 0.07 0.020036 0.0179157 124 46 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.93 vpr 61.25 MiB -1 -1 0.18 21332 1 0.03 -1 -1 33192 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62716 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 22.8 MiB 0.20 1225 61.2 MiB 0.09 0.00 3.7303 -122.083 -3.7303 3.7303 1.04 0.000258061 0.000209993 0.0151359 0.0126807 32 3082 27 6.65987e+06 304272 554710. 1919.41 1.14 0.0758881 0.0657053 2554 21 1907 2878 203319 47600 4.06457 4.06457 -145.83 -4.06457 0 0 701300. 2426.64 0.34 0.08 0.0207498 0.01862 147 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.33 vpr 61.39 MiB -1 -1 0.18 21332 1 0.02 -1 -1 33184 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62868 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 22.8 MiB 0.49 964 61.4 MiB 0.08 0.00 3.63475 -110.645 -3.63475 3.63475 1.01 0.000262782 0.000210139 0.0144391 0.0118885 28 2599 29 6.65987e+06 431052 500653. 1732.36 1.26 0.0819157 0.0710578 2188 22 1367 2124 141960 35257 3.39651 3.39651 -128.097 -3.39651 0 0 612192. 2118.31 0.32 0.07 0.0224289 0.0199788 143 59 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.76 vpr 60.58 MiB -1 -1 0.17 20856 1 0.01 -1 -1 33252 -1 -1 17 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62036 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 22.1 MiB 0.17 507 60.6 MiB 0.07 0.00 3.00701 -85.641 -3.00701 3.00701 1.09 0.000203367 0.000164569 0.0182896 0.0150309 30 1523 30 6.65987e+06 215526 526063. 1820.29 1.00 0.0605205 0.0514424 1112 22 843 1258 67076 18328 2.79397 2.79397 -92.5431 -2.79397 0 0 666494. 2306.21 0.33 0.05 0.0156322 0.013831 92 28 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 5.48 vpr 61.01 MiB -1 -1 0.17 21456 1 0.01 -1 -1 33164 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62472 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 22.5 MiB 0.34 885 61.0 MiB 0.07 0.00 3.0769 -99.5343 -3.0769 3.0769 1.09 0.000228735 0.000187 0.0130445 0.0108542 26 2551 25 6.65987e+06 253560 477104. 1650.88 1.56 0.0664744 0.0576872 2007 21 1411 1859 153167 35888 3.48437 3.48437 -125.829 -3.48437 0 0 585099. 2024.56 0.29 0.06 0.0169561 0.0150941 116 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.85 vpr 61.07 MiB -1 -1 0.18 21312 1 0.01 -1 -1 33252 -1 -1 37 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62540 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 22.4 MiB 0.12 1045 61.1 MiB 0.10 0.00 3.50515 -99.0474 -3.50515 3.50515 1.08 0.000238363 0.000189431 0.0169263 0.013944 30 2084 18 6.65987e+06 469086 526063. 1820.29 1.09 0.0654558 0.0562636 1816 22 1306 2163 130729 29360 3.45591 3.45591 -116.585 -3.45591 0 0 666494. 2306.21 0.33 0.06 0.0185333 0.0165301 129 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.69 vpr 60.38 MiB -1 -1 0.17 21144 1 0.01 -1 -1 33284 -1 -1 21 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61828 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 21.8 MiB 0.28 958 60.4 MiB 0.05 0.00 3.18595 -91.7433 -3.18595 3.18595 1.04 0.000192146 0.000154853 0.00951683 0.00791225 30 1998 22 6.65987e+06 266238 526063. 1820.29 0.96 0.0458455 0.0391347 1694 18 796 1060 72608 16474 2.73511 2.73511 -99.9661 -2.73511 0 0 666494. 2306.21 0.33 0.04 0.0129935 0.0116175 110 25 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.84 vpr 60.68 MiB -1 -1 0.16 20792 1 0.01 -1 -1 33192 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62136 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 22.1 MiB 0.26 876 60.7 MiB 0.09 0.00 2.90269 -95.4343 -2.90269 2.90269 1.07 0.000218996 0.000183038 0.0183743 0.0150807 30 1814 20 6.65987e+06 202848 526063. 1820.29 0.99 0.0604244 0.0516201 1635 22 1028 1732 95777 23005 2.51951 2.51951 -99.5385 -2.51951 0 0 666494. 2306.21 0.34 0.05 0.0157577 0.0140467 109 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 5.15 vpr 60.97 MiB -1 -1 0.20 21296 1 0.02 -1 -1 33276 -1 -1 35 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62432 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 22.4 MiB 0.32 922 61.0 MiB 0.11 0.00 3.14515 -95.875 -3.14515 3.14515 1.06 0.000307984 0.000254835 0.0200999 0.0166725 26 2332 21 6.65987e+06 443730 477104. 1650.88 1.22 0.0799059 0.0691599 1985 19 1322 2013 138981 33443 3.15437 3.15437 -118.275 -3.15437 0 0 585099. 2024.56 0.29 0.07 0.0200746 0.0179034 135 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.75 vpr 60.83 MiB -1 -1 0.17 20956 1 0.01 -1 -1 33136 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62288 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 22.2 MiB 0.21 928 60.8 MiB 0.07 0.00 3.1121 -99.7466 -3.1121 3.1121 1.08 0.000205891 0.000167896 0.0142579 0.0117816 32 2012 20 6.65987e+06 240882 554710. 1919.41 0.94 0.05031 0.0428119 1809 20 1079 1560 116867 27521 3.07777 3.07777 -114.174 -3.07777 0 0 701300. 2426.64 0.35 0.05 0.0149222 0.0133881 108 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.08 vpr 60.96 MiB -1 -1 0.18 21180 1 0.02 -1 -1 33140 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62420 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 22.3 MiB 0.35 815 61.0 MiB 0.08 0.00 2.82075 -88.5163 -2.82075 2.82075 1.07 0.000283897 0.000234811 0.0131376 0.0109853 30 2146 34 6.65987e+06 393018 526063. 1820.29 1.15 0.0760751 0.0659031 1722 20 989 1708 92449 22325 2.63951 2.63951 -99.9205 -2.63951 0 0 666494. 2306.21 0.33 0.05 0.0176847 0.0157346 126 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.79 vpr 61.20 MiB -1 -1 0.21 21408 1 0.01 -1 -1 33264 -1 -1 32 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62664 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 22.6 MiB 1.15 860 61.2 MiB 0.08 0.00 3.50555 -108.4 -3.50555 3.50555 1.07 0.000281678 0.000228872 0.0142554 0.0119195 32 2220 19 6.65987e+06 405696 554710. 1919.41 1.01 0.0661708 0.0568759 1867 20 1262 1783 124753 29480 3.21883 3.21883 -124.236 -3.21883 0 0 701300. 2426.64 0.35 0.06 0.0209991 0.0188217 138 87 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.76 vpr 60.79 MiB -1 -1 0.17 21008 1 0.01 -1 -1 33180 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62244 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 22.2 MiB 0.30 854 60.8 MiB 0.06 0.00 2.66284 -87.0208 -2.66284 2.66284 1.04 0.000229546 0.000179099 0.0117979 0.00966339 32 1956 25 6.65987e+06 215526 554710. 1919.41 0.99 0.0566042 0.0483145 1772 15 951 1517 125834 28633 2.50951 2.50951 -97.6555 -2.50951 0 0 701300. 2426.64 0.34 0.05 0.0144609 0.0131046 104 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.78 vpr 61.02 MiB -1 -1 0.18 21108 1 0.01 -1 -1 33196 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62484 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 22.5 MiB 0.19 930 61.0 MiB 0.07 0.00 3.35195 -106.819 -3.35195 3.35195 1.05 0.000211968 0.000171821 0.0118892 0.00986979 32 2379 21 6.65987e+06 240882 554710. 1919.41 1.00 0.0522115 0.0446665 2040 23 1359 2085 157124 35826 3.18951 3.18951 -120.916 -3.18951 0 0 701300. 2426.64 0.35 0.07 0.0171028 0.0152357 115 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.83 vpr 61.03 MiB -1 -1 0.16 21252 1 0.02 -1 -1 33208 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62496 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 22.8 MiB 0.16 854 61.0 MiB 0.06 0.00 3.7011 -108.525 -3.7011 3.7011 1.06 0.000242864 0.000196679 0.0115038 0.00968287 32 2614 25 6.65987e+06 278916 554710. 1919.41 1.07 0.0604315 0.0521627 1900 25 1577 2258 151452 38702 3.64551 3.64551 -124.889 -3.64551 0 0 701300. 2426.64 0.35 0.07 0.0201041 0.017926 130 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 6.38 vpr 60.91 MiB -1 -1 0.18 21392 1 0.01 -1 -1 33200 -1 -1 28 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62376 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 22.4 MiB 0.54 885 60.9 MiB 0.09 0.00 3.59335 -93.9386 -3.59335 3.59335 1.05 0.0002245 0.000183178 0.018249 0.0153024 28 2431 37 6.65987e+06 354984 500653. 1732.36 2.27 0.0852571 0.0742217 1826 24 1027 1665 143517 40233 3.52711 3.52711 -108.062 -3.52711 0 0 612192. 2118.31 0.30 0.07 0.0205792 0.018286 121 49 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.11 vpr 60.95 MiB -1 -1 0.19 21212 1 0.01 -1 -1 33044 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62416 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 23.0 MiB 0.32 1320 61.0 MiB 0.12 0.00 3.94486 -130.636 -3.94486 3.94486 1.05 0.000316013 0.000262719 0.0225155 0.0186923 30 2794 23 6.65987e+06 291594 526063. 1820.29 1.08 0.082353 0.0710082 2389 24 1484 2275 140324 31399 3.77011 3.77011 -143.178 -3.77011 0 0 666494. 2306.21 0.34 0.07 0.0234238 0.0208509 153 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.38 vpr 60.32 MiB -1 -1 0.18 20680 1 0.02 -1 -1 33060 -1 -1 18 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61768 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 21.6 MiB 0.11 632 60.3 MiB 0.06 0.00 2.79204 -75.7506 -2.79204 2.79204 1.05 0.000178914 0.000145131 0.0101705 0.00843459 28 1517 20 6.65987e+06 228204 500653. 1732.36 0.86 0.0423368 0.0361718 1349 17 556 867 53062 13835 2.65257 2.65257 -92.4678 -2.65257 0 0 612192. 2118.31 0.30 0.03 0.011513 0.0103823 96 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.67 vpr 61.48 MiB -1 -1 0.19 21376 1 0.02 -1 -1 33240 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62960 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 22.9 MiB 0.59 937 61.5 MiB 0.06 0.00 3.3223 -110.391 -3.3223 3.3223 1.08 0.000278978 0.000223902 0.0110348 0.0092554 28 2627 40 6.65987e+06 418374 500653. 1732.36 1.48 0.087349 0.0757806 2094 17 1412 2068 151380 36098 3.74077 3.74077 -137.961 -3.74077 0 0 612192. 2118.31 0.31 0.07 0.0202398 0.0182695 144 87 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.90 vpr 61.05 MiB -1 -1 0.18 21356 1 0.02 -1 -1 33228 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62512 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 22.5 MiB 0.28 816 61.0 MiB 0.10 0.00 2.8021 -101.838 -2.8021 2.8021 1.07 0.000248768 0.000201122 0.0222233 0.018247 32 1971 20 6.65987e+06 202848 554710. 1919.41 0.99 0.0692676 0.0586465 1715 23 1530 2179 161496 37483 3.08917 3.08917 -122.629 -3.08917 0 0 701300. 2426.64 0.33 0.07 0.0188776 0.0166336 115 93 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 5.07 vpr 61.27 MiB -1 -1 0.19 21252 1 0.02 -1 -1 33132 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62736 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 22.8 MiB 0.45 1064 61.3 MiB 0.13 0.00 3.3441 -107.328 -3.3441 3.3441 1.08 0.000221909 0.0001808 0.0238386 0.0196254 28 2335 20 6.65987e+06 393018 500653. 1732.36 0.96 0.0736916 0.0629135 2115 19 951 1403 107811 24602 3.06031 3.06031 -116.787 -3.06031 0 0 612192. 2118.31 0.32 0.06 0.0191529 0.0171889 130 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.05 vpr 61.06 MiB -1 -1 0.20 21424 1 0.02 -1 -1 33196 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62524 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 22.9 MiB 0.42 1219 61.1 MiB 0.09 0.00 4.70972 -143.421 -4.70972 4.70972 1.06 0.000322204 0.00026927 0.0168182 0.0140523 26 3577 46 6.65987e+06 316950 477104. 1650.88 1.95 0.108172 0.094541 2830 21 2045 2861 204849 48633 5.40391 5.40391 -171.426 -5.40391 0 0 585099. 2024.56 0.29 0.08 0.0242112 0.0218686 168 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.82 vpr 60.54 MiB -1 -1 0.16 20932 1 0.01 -1 -1 33112 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61996 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 21.9 MiB 0.23 784 60.5 MiB 0.06 0.00 2.45344 -81.4145 -2.45344 2.45344 1.07 0.000174451 0.00014158 0.0129839 0.0107081 26 1715 17 6.65987e+06 215526 477104. 1650.88 1.12 0.0503142 0.0434789 1576 17 695 878 70691 16340 2.53531 2.53531 -97.0413 -2.53531 0 0 585099. 2024.56 0.30 0.04 0.0112106 0.010044 86 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.56 vpr 60.54 MiB -1 -1 0.18 21112 1 0.02 -1 -1 33116 -1 -1 16 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61988 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 21.9 MiB 0.14 740 60.5 MiB 0.05 0.00 3.20115 -94.4572 -3.20115 3.20115 1.07 0.00023007 0.000183885 0.011551 0.00958743 28 1555 16 6.65987e+06 202848 500653. 1732.36 0.91 0.0503257 0.0431308 1380 16 651 1064 70452 17032 2.84551 2.84551 -104.63 -2.84551 0 0 612192. 2118.31 0.30 0.04 0.0129783 0.0116301 92 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.75 vpr 60.54 MiB -1 -1 0.18 20932 1 0.02 -1 -1 33164 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61992 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 22.1 MiB 0.07 764 60.5 MiB 0.11 0.00 2.77684 -91.2518 -2.77684 2.77684 1.07 0.000231374 0.000190453 0.021283 0.0175789 32 2077 28 6.65987e+06 266238 554710. 1919.41 1.04 0.0672456 0.0572728 1775 22 1309 2369 194740 45168 2.71271 2.71271 -106.429 -2.71271 0 0 701300. 2426.64 0.34 0.08 0.0187682 0.0166668 115 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.58 vpr 60.63 MiB -1 -1 0.17 20788 1 0.01 -1 -1 33160 -1 -1 27 25 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62084 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 22.1 MiB 0.11 485 60.6 MiB 0.05 0.00 2.36153 -57.2627 -2.36153 2.36153 1.05 0.000165466 0.000130929 0.00893986 0.00727153 30 1292 23 6.65987e+06 342306 526063. 1820.29 1.04 0.042459 0.036203 1003 19 578 977 55735 15087 2.43319 2.43319 -70.226 -2.43319 0 0 666494. 2306.21 0.33 0.03 0.0108058 0.00958784 89 19 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.98 vpr 61.15 MiB -1 -1 0.19 21404 1 0.01 -1 -1 33172 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62620 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 22.7 MiB 0.25 975 61.2 MiB 0.07 0.00 3.13278 -100.623 -3.13278 3.13278 1.05 0.000266497 0.000215222 0.013337 0.0111441 32 2715 24 6.65987e+06 253560 554710. 1919.41 1.06 0.0667533 0.0574975 2281 20 1510 2712 197529 46453 3.56725 3.56725 -123.694 -3.56725 0 0 701300. 2426.64 0.35 0.08 0.0224651 0.020235 135 69 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.24 vpr 61.18 MiB -1 -1 0.19 21236 1 0.01 -1 -1 33232 -1 -1 33 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62652 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 22.9 MiB 0.53 1063 61.2 MiB 0.11 0.00 3.44501 -115.828 -3.44501 3.44501 1.07 0.000318971 0.000264168 0.0209911 0.01741 32 2237 22 6.65987e+06 418374 554710. 1919.41 1.00 0.0754463 0.0643854 2004 20 1314 2051 120169 29474 3.22011 3.22011 -124.066 -3.22011 0 0 701300. 2426.64 0.35 0.06 0.021226 0.0190187 142 86 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 10.09 vpr 61.82 MiB -1 -1 0.19 21444 1 0.01 -1 -1 33120 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63304 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 23.2 MiB 3.20 883 61.8 MiB 0.08 0.00 4.2959 -126.84 -4.2959 4.2959 1.09 0.000261149 0.000205612 0.0213516 0.0177566 48 2508 26 6.95648e+06 188184 865456. 2994.66 2.94 0.12092 0.104888 2125 22 1602 2482 223840 49094 4.62926 4.62926 -152.852 -4.62926 0 0 1.05005e+06 3633.38 0.48 0.09 0.023992 0.0216341 81 47 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 9.70 vpr 61.78 MiB -1 -1 0.19 21396 1 0.02 -1 -1 33192 -1 -1 15 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63260 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 23.2 MiB 2.73 750 61.8 MiB 0.07 0.00 3.78707 -114.103 -3.78707 3.78707 1.09 0.000262245 0.00021336 0.0203494 0.0169525 46 2110 29 6.95648e+06 217135 828058. 2865.25 3.01 0.126214 0.109641 1746 25 2037 2912 208854 46932 4.17491 4.17491 -137.944 -4.17491 0 0 1.01997e+06 3529.29 0.47 0.09 0.023793 0.0212737 80 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.96 vpr 61.76 MiB -1 -1 0.18 21388 1 0.01 -1 -1 33088 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63240 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 23.3 MiB 1.56 770 61.8 MiB 0.08 0.00 3.07685 -93.8283 -3.07685 3.07685 1.11 0.000230616 0.000187368 0.0198042 0.0164107 40 2567 47 6.95648e+06 217135 706193. 2443.58 3.56 0.121123 0.105129 1990 22 1446 1979 190350 42411 3.72176 3.72176 -126.602 -3.72176 0 0 926341. 3205.33 0.42 0.08 0.0199599 0.017963 76 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 7.16 vpr 61.36 MiB -1 -1 0.19 21152 1 0.02 -1 -1 33184 -1 -1 19 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62832 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 22.7 MiB 0.48 642 61.4 MiB 0.08 0.00 3.48718 -94.9648 -3.48718 3.48718 1.07 0.000222064 0.000178411 0.0207353 0.0169598 44 2163 21 6.95648e+06 275038 787024. 2723.27 2.85 0.103562 0.0890101 1668 21 1254 2088 150285 34106 3.74702 3.74702 -117 -3.74702 0 0 997811. 3452.63 0.46 0.07 0.0184969 0.0165801 71 25 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 7.73 vpr 61.47 MiB -1 -1 0.19 21292 1 0.01 -1 -1 33056 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 22.9 MiB 1.11 784 61.5 MiB 0.07 0.00 3.67069 -105.978 -3.67069 3.67069 1.09 0.000249668 0.000202383 0.0184807 0.0153902 48 2104 23 6.95648e+06 231611 865456. 2994.66 2.70 0.112478 0.0976555 1746 23 1295 2167 188583 41138 4.33951 4.33951 -132.49 -4.33951 0 0 1.05005e+06 3633.38 0.49 0.08 0.0217479 0.0195013 73 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 8.56 vpr 61.60 MiB -1 -1 0.19 21384 1 0.01 -1 -1 33184 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63076 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 22.9 MiB 1.30 731 61.6 MiB 0.08 0.00 2.5924 -92.2978 -2.5924 2.5924 1.10 0.000265828 0.000216244 0.0228154 0.0188158 46 2358 43 6.95648e+06 303989 828058. 2865.25 3.36 0.138406 0.119871 1543 20 1409 2174 129262 32463 3.18727 3.18727 -109.635 -3.18727 0 0 1.01997e+06 3529.29 0.46 0.06 0.0203097 0.0182017 79 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 13.46 vpr 61.37 MiB -1 -1 0.17 21068 1 0.02 -1 -1 33384 -1 -1 13 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 22.8 MiB 6.23 443 61.4 MiB 0.04 0.00 2.92458 -76.3519 -2.92458 2.92458 1.09 0.000194223 0.000157379 0.0109865 0.00908344 38 1578 36 6.95648e+06 188184 678818. 2348.85 3.53 0.090246 0.0777672 1109 18 900 1318 87642 22664 3.12592 3.12592 -98.2592 -3.12592 0 0 902133. 3121.57 0.41 0.05 0.013232 0.0118555 52 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 8.32 vpr 61.55 MiB -1 -1 0.17 20756 1 0.01 -1 -1 33140 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63024 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 23.0 MiB 0.52 717 61.5 MiB 0.08 0.00 2.4842 -77.122 -2.4842 2.4842 1.11 0.000225655 0.000185325 0.0171786 0.013926 38 2527 27 6.95648e+06 361892 678818. 2348.85 4.01 0.100619 0.0865277 1750 21 1195 2006 175016 37834 3.37172 3.37172 -105.717 -3.37172 0 0 902133. 3121.57 0.40 0.07 0.0166808 0.0148873 69 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 8.98 vpr 61.69 MiB -1 -1 0.17 21164 1 0.02 -1 -1 33192 -1 -1 11 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63168 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 23.0 MiB 2.75 672 61.7 MiB 0.06 0.00 2.76819 -93.3446 -2.76819 2.76819 1.05 0.000231587 0.000186888 0.0157265 0.0128824 44 2234 38 6.95648e+06 159232 787024. 2723.27 2.46 0.102219 0.0873693 1534 19 1027 1435 135272 30118 3.35797 3.35797 -118.62 -3.35797 0 0 997811. 3452.63 0.46 0.06 0.0158204 0.0141178 66 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 8.42 vpr 61.62 MiB -1 -1 0.17 20844 1 0.02 -1 -1 33144 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63096 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 23.1 MiB 1.41 569 61.6 MiB 0.07 0.00 2.66488 -90.1664 -2.66488 2.66488 1.09 0.00022595 0.000182403 0.0182194 0.015012 40 1726 39 6.95648e+06 144757 706193. 2443.58 3.18 0.107859 0.092655 1530 33 1621 2223 270298 107450 3.38277 3.38277 -122.654 -3.38277 0 0 926341. 3205.33 0.41 0.12 0.0233551 0.0206398 59 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 8.78 vpr 61.44 MiB -1 -1 0.19 21104 1 0.01 -1 -1 33224 -1 -1 12 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62912 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 22.9 MiB 2.43 518 61.4 MiB 0.06 0.00 2.79013 -83.1454 -2.79013 2.79013 1.08 0.000208335 0.000164784 0.0168715 0.0137147 62 1121 22 6.95648e+06 173708 1.05005e+06 3633.38 2.34 0.0781477 0.0654773 897 15 700 1006 61634 15694 2.95087 2.95087 -92.7117 -2.95087 0 0 1.30136e+06 4502.97 0.57 0.04 0.0128104 0.0115255 55 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 8.61 vpr 61.52 MiB -1 -1 0.17 20832 1 0.01 -1 -1 33212 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62992 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 23.0 MiB 1.96 647 61.5 MiB 0.05 0.00 2.73393 -92.9796 -2.73393 2.73393 1.09 0.000238066 0.000194981 0.0142042 0.0116494 54 1525 22 6.95648e+06 144757 949917. 3286.91 2.71 0.0884473 0.0763095 1137 20 1044 1374 87701 22663 2.93037 2.93037 -108.763 -2.93037 0 0 1.17392e+06 4061.99 0.53 0.05 0.0153813 0.0137884 62 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 8.80 vpr 61.75 MiB -1 -1 0.18 21440 1 0.02 -1 -1 33088 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63228 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 23.2 MiB 2.42 955 61.7 MiB 0.07 0.00 3.29778 -111.854 -3.29778 3.29778 1.09 0.000276982 0.000229248 0.0187022 0.0155956 48 2338 21 6.95648e+06 217135 865456. 2994.66 2.45 0.112136 0.0976238 2212 20 1697 2507 208514 44777 3.72346 3.72346 -137.914 -3.72346 0 0 1.05005e+06 3633.38 0.49 0.08 0.0192718 0.0173736 83 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 18.96 vpr 61.85 MiB -1 -1 0.18 21296 1 0.02 -1 -1 33124 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63336 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 23.3 MiB 1.14 733 61.9 MiB 0.10 0.00 3.72883 -111.725 -3.72883 3.72883 1.09 0.000261514 0.000211065 0.0234251 0.0191941 40 2401 46 6.95648e+06 318465 706193. 2443.58 14.00 0.230325 0.199009 2012 21 1622 2302 210711 45795 4.22582 4.22582 -142.258 -4.22582 0 0 926341. 3205.33 0.42 0.08 0.0220823 0.0198004 75 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.60 vpr 61.06 MiB -1 -1 0.17 20956 1 0.02 -1 -1 33140 -1 -1 13 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62528 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 22.4 MiB 1.74 637 61.1 MiB 0.06 0.00 2.60155 -73.4809 -2.60155 2.60155 1.09 0.000180955 0.000147029 0.0148631 0.0123451 40 1815 21 6.95648e+06 188184 706193. 2443.58 2.13 0.0848881 0.0734417 1563 23 1011 1610 137525 30060 3.36692 3.36692 -100.053 -3.36692 0 0 926341. 3205.33 0.42 0.06 0.016091 0.0144171 55 21 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.63 vpr 61.76 MiB -1 -1 0.19 21096 1 0.02 -1 -1 33120 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63244 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 23.2 MiB 1.44 736 61.8 MiB 0.08 0.00 2.6756 -94.5237 -2.6756 2.6756 1.09 0.000259789 0.00021068 0.0204157 0.0169072 54 2115 45 6.95648e+06 246087 949917. 3286.91 3.15 0.143038 0.124881 1505 23 1533 2471 172718 40389 3.34877 3.34877 -120.859 -3.34877 0 0 1.17392e+06 4061.99 0.55 0.08 0.0230687 0.0205852 76 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 9.65 vpr 61.91 MiB -1 -1 0.18 21296 1 0.02 -1 -1 33192 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63396 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 23.3 MiB 2.54 760 61.9 MiB 0.07 0.00 3.53151 -111.055 -3.53151 3.53151 1.09 0.000244824 0.000197769 0.0183837 0.0152267 48 2304 38 6.95648e+06 202660 865456. 2994.66 3.17 0.120517 0.104322 1603 21 1317 1776 158979 40961 3.72972 3.72972 -135.52 -3.72972 0 0 1.05005e+06 3633.38 0.50 0.07 0.0204486 0.0184176 79 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 8.53 vpr 61.50 MiB -1 -1 0.19 21316 1 0.01 -1 -1 33168 -1 -1 9 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62980 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 22.9 MiB 1.00 632 61.5 MiB 0.05 0.00 1.9332 -78.467 -1.9332 1.9332 1.08 0.000219329 0.000174713 0.0145492 0.011974 38 2322 41 6.95648e+06 130281 678818. 2348.85 3.81 0.112231 0.0966188 1594 23 1328 1915 168869 37463 2.52568 2.52568 -103.26 -2.52568 0 0 902133. 3121.57 0.41 0.07 0.0177073 0.015725 57 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 6.25 vpr 61.17 MiB -1 -1 0.16 20912 1 0.02 -1 -1 32996 -1 -1 9 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62640 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 22.8 MiB 0.44 410 61.2 MiB 0.04 0.00 1.85256 -62.0325 -1.85256 1.85256 1.06 0.000168938 0.00013516 0.0109792 0.00897053 42 1335 40 6.95648e+06 130281 744469. 2576.02 2.18 0.0745407 0.0636628 875 21 687 908 77130 19198 2.40218 2.40218 -79.2136 -2.40218 0 0 949917. 3286.91 0.43 0.04 0.0120833 0.0107239 43 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 11.06 vpr 61.50 MiB -1 -1 0.19 21512 1 0.01 -1 -1 33216 -1 -1 12 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62972 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 22.9 MiB 3.02 875 61.5 MiB 0.05 0.00 3.3794 -113.522 -3.3794 3.3794 1.10 0.000220482 0.000178898 0.0110739 0.00930239 36 2489 42 6.95648e+06 173708 648988. 2245.63 4.30 0.101814 0.0882043 2118 27 1566 2131 256108 54995 4.05342 4.05342 -149.324 -4.05342 0 0 828058. 2865.25 0.39 0.10 0.021426 0.0191268 69 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.71 vpr 61.66 MiB -1 -1 0.18 21236 1 0.02 -1 -1 33240 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63136 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 23.1 MiB 0.92 775 61.7 MiB 0.08 0.00 3.07689 -101.141 -3.07689 3.07689 1.06 0.000260466 0.000201048 0.0207858 0.0170253 44 2248 46 6.95648e+06 289514 787024. 2723.27 2.96 0.132453 0.114683 1622 20 1464 2058 155482 36092 3.69366 3.69366 -128.152 -3.69366 0 0 997811. 3452.63 0.46 0.07 0.019957 0.0179363 75 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 10.35 vpr 61.96 MiB -1 -1 0.18 21356 1 0.02 -1 -1 33160 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63448 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 23.6 MiB 1.87 858 62.0 MiB 0.08 0.00 3.97 -115.55 -3.97 3.97 1.04 0.00025312 0.000202762 0.0219267 0.017954 46 2866 26 6.95648e+06 202660 828058. 2865.25 4.67 0.116146 0.0995563 2124 22 1619 2412 211216 46212 4.02871 4.02871 -135.031 -4.02871 0 0 1.01997e+06 3529.29 0.45 0.08 0.0209288 0.0186961 82 59 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.62 vpr 60.93 MiB -1 -1 0.16 21076 1 0.01 -1 -1 33132 -1 -1 13 26 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62392 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 22.4 MiB 1.19 375 60.9 MiB 0.04 0.00 1.85256 -53.4222 -1.85256 1.85256 1.08 0.000151084 0.000121959 0.0108448 0.00895333 34 1344 38 6.95648e+06 188184 618332. 2139.56 1.88 0.0677591 0.0580348 971 22 679 900 86589 19882 2.14348 2.14348 -72.7401 -2.14348 0 0 787024. 2723.27 0.37 0.04 0.0108422 0.00956554 44 21 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 15.34 vpr 61.30 MiB -1 -1 0.17 20700 1 0.01 -1 -1 33172 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62772 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 22.7 MiB 1.06 708 61.3 MiB 0.07 0.00 3.81446 -97.5793 -3.81446 3.81446 1.08 0.000210924 0.000169933 0.0173924 0.0143352 40 2117 29 6.95648e+06 217135 706193. 2443.58 10.51 0.166887 0.143819 1642 23 1310 2025 162224 46026 4.80236 4.80236 -139.066 -4.80236 0 0 926341. 3205.33 0.42 0.07 0.0177834 0.0158057 66 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.60 vpr 60.98 MiB -1 -1 0.15 20400 1 0.02 -1 -1 32968 -1 -1 8 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62448 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 22.5 MiB 0.37 436 61.0 MiB 0.05 0.00 1.77736 -56.2397 -1.77736 1.77736 1.10 0.000140272 0.000110622 0.0103869 0.00849395 38 1111 19 6.95648e+06 115805 678818. 2348.85 1.64 0.0525006 0.0443985 798 18 511 604 39003 10500 1.91008 1.91008 -70.273 -1.91008 0 0 902133. 3121.57 0.39 0.03 0.00926975 0.00828446 42 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 10.98 vpr 61.68 MiB -1 -1 0.19 21076 1 0.02 -1 -1 33176 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63164 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 23.1 MiB 1.32 995 61.7 MiB 0.06 0.00 3.63601 -105.868 -3.63601 3.63601 1.07 0.000222549 0.000178814 0.0148626 0.0123003 36 2677 38 6.95648e+06 217135 648988. 2245.63 5.96 0.105822 0.0912392 2323 23 1460 2380 273678 52385 4.19576 4.19576 -142.716 -4.19576 0 0 828058. 2865.25 0.39 0.10 0.020445 0.0183476 68 21 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 6.96 vpr 61.73 MiB -1 -1 0.18 20592 1 0.01 -1 -1 33096 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63212 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 23.1 MiB 0.71 748 61.7 MiB 0.08 0.00 2.4561 -82.3523 -2.4561 2.4561 1.07 0.000229274 0.000186756 0.0182733 0.0150171 46 2195 36 6.95648e+06 303989 828058. 2865.25 2.46 0.102718 0.088 1573 20 1235 1936 135198 31977 2.94167 2.94167 -107.576 -2.94167 0 0 1.01997e+06 3529.29 0.45 0.06 0.0168833 0.0151345 74 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 10.01 vpr 61.71 MiB -1 -1 0.18 21096 1 0.01 -1 -1 32996 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63192 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 23.2 MiB 1.01 812 61.7 MiB 0.08 0.00 3.60953 -107.865 -3.60953 3.60953 1.07 0.000258723 0.000211095 0.0186173 0.0153213 38 2771 47 6.95648e+06 275038 678818. 2348.85 5.24 0.123497 0.10636 2119 22 1525 2377 209369 46614 4.24492 4.24492 -138.626 -4.24492 0 0 902133. 3121.57 0.40 0.08 0.0198412 0.0177442 72 47 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.78 vpr 61.42 MiB -1 -1 0.15 21020 1 0.02 -1 -1 33160 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 23.0 MiB 1.22 738 61.4 MiB 0.07 0.00 2.58755 -83.9925 -2.58755 2.58755 0.97 0.000183781 0.000149127 0.0180758 0.0149525 36 2105 39 6.95648e+06 144757 648988. 2245.63 3.11 0.100117 0.0858834 1812 25 1096 1699 210113 57906 2.88967 2.88967 -109.776 -2.88967 0 0 828058. 2865.25 0.37 0.08 0.0180752 0.0159456 55 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 6.66 vpr 60.92 MiB -1 -1 0.18 20772 1 0.01 -1 -1 33212 -1 -1 18 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62384 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 22.3 MiB 0.29 518 60.9 MiB 0.06 0.00 2.73513 -79.2583 -2.73513 2.73513 1.08 0.000207516 0.000168821 0.0150275 0.0123959 40 1322 34 6.95648e+06 260562 706193. 2443.58 2.69 0.0934701 0.0804328 1097 20 960 1379 105693 26117 3.01492 3.01492 -94.478 -3.01492 0 0 926341. 3205.33 0.41 0.05 0.0142046 0.0126322 57 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.70 vpr 61.45 MiB -1 -1 0.17 21080 1 0.02 -1 -1 33104 -1 -1 16 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62924 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 22.8 MiB 0.68 490 61.4 MiB 0.06 0.00 2.4341 -73.8729 -2.4341 2.4341 1.04 0.000187941 0.000150295 0.0150642 0.0123035 46 1561 19 6.95648e+06 231611 828058. 2865.25 2.35 0.0779492 0.0665482 1240 23 1051 1624 125402 31395 2.94762 2.94762 -95.2195 -2.94762 0 0 1.01997e+06 3529.29 0.44 0.05 0.0142507 0.0125569 57 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 6.84 vpr 61.40 MiB -1 -1 0.17 20760 1 0.02 -1 -1 33160 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62876 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 22.8 MiB 0.61 572 61.4 MiB 0.06 0.00 2.85405 -88.6111 -2.85405 2.85405 1.07 0.000199619 0.00015473 0.0152031 0.0125709 40 1957 25 6.95648e+06 144757 706193. 2443.58 2.52 0.0841065 0.0721251 1596 23 1353 1929 177527 41138 3.23742 3.23742 -118.429 -3.23742 0 0 926341. 3205.33 0.41 0.07 0.0168854 0.0150948 58 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.09 vpr 61.43 MiB -1 -1 0.18 21020 1 0.01 -1 -1 33192 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62900 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 22.9 MiB 0.53 559 61.4 MiB 0.07 0.00 2.74908 -83.6345 -2.74908 2.74908 1.06 0.000206675 0.000163643 0.0171397 0.0139087 40 1768 27 6.95648e+06 275038 706193. 2443.58 3.87 0.0955574 0.0819914 1245 24 1007 1593 115053 34036 3.12127 3.12127 -103.239 -3.12127 0 0 926341. 3205.33 0.41 0.06 0.0161731 0.014313 61 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 8.98 vpr 61.59 MiB -1 -1 0.18 21164 1 0.02 -1 -1 33076 -1 -1 12 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63068 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 23.1 MiB 1.54 577 61.6 MiB 0.06 0.00 2.4721 -82.5025 -2.4721 2.4721 1.06 0.000212909 0.000172109 0.0190689 0.0156919 40 1646 45 6.95648e+06 173708 706193. 2443.58 3.72 0.111338 0.0958823 1491 24 1235 1686 207353 63516 2.96967 2.96967 -107.717 -2.96967 0 0 926341. 3205.33 0.40 0.08 0.0175843 0.0156085 61 48 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 8.84 vpr 61.82 MiB -1 -1 0.18 21176 1 0.02 -1 -1 33140 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63308 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 23.4 MiB 1.08 896 61.8 MiB 0.08 0.00 3.28368 -99.7378 -3.28368 3.28368 1.06 0.000276942 0.000225915 0.0175317 0.0146252 40 2812 29 6.95648e+06 303989 706193. 2443.58 3.94 0.124765 0.108396 2325 21 1697 2664 251223 54970 3.93332 3.93332 -131.989 -3.93332 0 0 926341. 3205.33 0.42 0.09 0.0224059 0.0200598 84 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.51 vpr 61.82 MiB -1 -1 0.19 21188 1 0.02 -1 -1 33188 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63300 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 23.4 MiB 1.27 744 61.8 MiB 0.09 0.00 2.80408 -97.726 -2.80408 2.80408 1.07 0.000289492 0.000226134 0.0211482 0.0173193 42 2599 35 6.95648e+06 347416 744469. 2576.02 2.43 0.128093 0.110161 1826 21 1726 2413 199792 44858 3.30157 3.30157 -120.346 -3.30157 0 0 949917. 3286.91 0.42 0.08 0.02105 0.0187916 82 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 9.03 vpr 61.43 MiB -1 -1 0.17 21356 1 0.03 -1 -1 33196 -1 -1 11 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62908 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 22.9 MiB 2.46 832 61.4 MiB 0.04 0.00 3.28867 -109.636 -3.28867 3.28867 1.05 0.000204646 0.00016655 0.00978204 0.00820495 38 2199 23 6.95648e+06 159232 678818. 2348.85 2.99 0.0850463 0.0738139 1800 19 1212 1709 149969 30226 3.56322 3.56322 -129.753 -3.56322 0 0 902133. 3121.57 0.37 0.06 0.0144558 0.0129436 63 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 7.74 vpr 61.88 MiB -1 -1 0.18 21296 1 0.02 -1 -1 33148 -1 -1 16 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63364 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 23.3 MiB 1.07 802 61.9 MiB 0.08 0.00 3.10309 -101.271 -3.10309 3.10309 1.04 0.000260205 0.000209918 0.0233276 0.0190806 46 2253 33 6.95648e+06 231611 828058. 2865.25 2.86 0.118415 0.100967 1777 28 1739 2589 297678 109712 3.39277 3.39277 -119.916 -3.39277 0 0 1.01997e+06 3529.29 0.43 0.11 0.0236756 0.0208427 76 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 10.88 vpr 62.03 MiB -1 -1 0.20 21296 1 0.02 -1 -1 33100 -1 -1 16 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63520 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 23.4 MiB 2.89 1115 62.0 MiB 0.08 0.00 4.36076 -140.31 -4.36076 4.36076 1.08 0.00026704 0.00021532 0.018286 0.0151251 40 3213 30 6.95648e+06 231611 706193. 2443.58 4.08 0.126876 0.110147 2818 26 2579 3625 470152 116518 5.8883 5.8883 -188.373 -5.8883 0 0 926341. 3205.33 0.41 0.15 0.0254024 0.0226845 97 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 10.98 vpr 62.07 MiB -1 -1 0.20 21296 1 0.01 -1 -1 33204 -1 -1 16 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63556 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 23.6 MiB 3.05 792 62.1 MiB 0.09 0.00 3.87299 -121.949 -3.87299 3.87299 1.09 0.000277797 0.000226618 0.025107 0.0208782 40 2968 47 6.95648e+06 231611 706193. 2443.58 4.06 0.142388 0.122547 2403 24 2056 2919 290191 64050 4.82451 4.82451 -164.61 -4.82451 0 0 926341. 3205.33 0.41 0.10 0.0221315 0.0197019 88 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 23.32 vpr 61.39 MiB -1 -1 0.19 21312 1 0.02 -1 -1 33292 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62864 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 22.8 MiB 1.52 794 61.4 MiB 0.08 0.00 3.35282 -108.855 -3.35282 3.35282 1.06 0.00026907 0.000220422 0.0181882 0.0150133 40 2469 27 6.95648e+06 318465 706193. 2443.58 18.04 0.181574 0.155549 2107 23 1554 2307 237418 53225 3.91911 3.91911 -134.19 -3.91911 0 0 926341. 3205.33 0.40 0.09 0.0204751 0.0182005 78 51 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 7.97 vpr 61.53 MiB -1 -1 0.17 21092 1 0.02 -1 -1 33096 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63004 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 22.9 MiB 1.67 804 61.5 MiB 0.08 0.00 3.28368 -93.1493 -3.28368 3.28368 1.09 0.000219556 0.000177178 0.0202795 0.0167235 44 2338 24 6.95648e+06 202660 787024. 2723.27 2.44 0.107195 0.0931435 1764 20 1317 1793 139227 30983 3.78902 3.78902 -116.063 -3.78902 0 0 997811. 3452.63 0.46 0.06 0.0175306 0.0157903 71 24 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.39 vpr 62.19 MiB -1 -1 0.19 21604 1 0.03 -1 -1 33332 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63684 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 23.8 MiB 2.00 887 62.2 MiB 0.09 0.00 3.94537 -130.199 -3.94537 3.94537 1.06 0.000313981 0.000252926 0.0249332 0.020551 48 2869 50 6.95648e+06 318465 865456. 2994.66 4.42 0.162303 0.13943 2278 28 2149 2985 281072 65261 4.6699 4.6699 -160.971 -4.6699 0 0 1.05005e+06 3633.38 0.47 0.11 0.0306876 0.0272638 93 84 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.64 vpr 60.94 MiB -1 -1 0.15 20888 1 0.02 -1 -1 33092 -1 -1 15 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62400 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 22.3 MiB 1.00 497 60.9 MiB 0.05 0.00 2.73795 -79.233 -2.73795 2.73795 1.05 0.000200647 0.000162951 0.0141021 0.0116708 42 1830 28 6.95648e+06 217135 744469. 2576.02 2.02 0.0833032 0.0712323 1230 21 910 1310 95789 23997 2.97293 2.97293 -101.547 -2.97293 0 0 949917. 3286.91 0.42 0.05 0.0144705 0.0128762 56 24 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 21.73 vpr 61.99 MiB -1 -1 0.19 21236 1 0.02 -1 -1 33108 -1 -1 15 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63480 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 23.4 MiB 1.71 871 62.0 MiB 0.07 0.00 4.15207 -122.453 -4.15207 4.15207 1.08 0.000239328 0.000192737 0.0194811 0.0160244 54 2512 25 6.95648e+06 217135 949917. 3286.91 16.05 0.218042 0.188739 1968 20 1444 2169 234336 63234 4.03071 4.03071 -134.316 -4.03071 0 0 1.17392e+06 4061.99 0.52 0.09 0.0208591 0.0188604 84 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 11.25 vpr 61.69 MiB -1 -1 0.18 21096 1 0.02 -1 -1 33052 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63172 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 23.1 MiB 1.44 838 61.7 MiB 0.10 0.00 2.70675 -91.5719 -2.70675 2.70675 1.08 0.000253642 0.000205101 0.0242829 0.0198824 38 3076 26 6.95648e+06 246087 678818. 2348.85 6.08 0.124558 0.107577 2157 20 1576 2591 211110 44240 3.26857 3.26857 -121.105 -3.26857 0 0 902133. 3121.57 0.39 0.08 0.0181416 0.0161409 73 50 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.56 vpr 61.53 MiB -1 -1 0.18 20896 1 0.02 -1 -1 33188 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63008 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 22.9 MiB 1.35 697 61.5 MiB 0.06 0.00 3.72678 -98.4287 -3.72678 3.72678 1.07 0.000233959 0.000191779 0.0152798 0.0127984 44 2404 50 6.95648e+06 231611 787024. 2723.27 3.42 0.125651 0.110243 1651 20 1196 2093 194212 40748 3.96732 3.96732 -126.12 -3.96732 0 0 997811. 3452.63 0.45 0.07 0.0165128 0.0148428 68 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 10.79 vpr 61.76 MiB -1 -1 0.19 21236 1 0.02 -1 -1 33076 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63240 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 23.1 MiB 3.61 768 61.8 MiB 0.06 0.00 3.65675 -112.388 -3.65675 3.65675 1.08 0.000262723 0.000214394 0.0163861 0.0136486 46 2351 35 6.95648e+06 202660 828058. 2865.25 3.33 0.125349 0.109137 1705 21 1408 1846 129231 30486 3.49286 3.49286 -125.95 -3.49286 0 0 1.01997e+06 3529.29 0.46 0.07 0.0201509 0.0180465 78 52 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 9.91 vpr 61.40 MiB -1 -1 0.16 21248 1 0.02 -1 -1 33184 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62872 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 22.8 MiB 2.33 814 61.4 MiB 0.07 0.00 2.6818 -93.6314 -2.6818 2.6818 1.06 0.000255893 0.000205049 0.0181452 0.0150524 40 2965 46 6.95648e+06 246087 706193. 2443.58 3.84 0.129101 0.111528 2106 19 1487 2308 209313 46034 3.25942 3.25942 -127.461 -3.25942 0 0 926341. 3205.33 0.41 0.08 0.0186979 0.0167447 75 52 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 10.94 vpr 61.88 MiB -1 -1 0.18 21380 1 0.01 -1 -1 33164 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63364 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 23.4 MiB 1.18 868 61.9 MiB 0.08 0.00 3.29648 -106.43 -3.29648 3.29648 1.03 0.000260694 0.000208555 0.0185195 0.0152345 38 2818 49 6.95648e+06 376368 678818. 2348.85 6.04 0.127916 0.109352 2197 23 1601 2241 225644 59390 3.97406 3.97406 -140.604 -3.97406 0 0 902133. 3121.57 0.39 0.09 0.0213918 0.0189331 83 59 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.08 vpr 61.65 MiB -1 -1 0.17 20840 1 0.01 -1 -1 33152 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63128 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 23.0 MiB 1.44 677 61.6 MiB 0.06 0.00 3.76413 -98.0209 -3.76413 3.76413 1.03 0.000228428 0.000182246 0.0156805 0.0129082 46 2477 34 6.95648e+06 318465 828058. 2865.25 2.86 0.105284 0.0908222 1690 23 1259 2031 158770 37495 3.90496 3.90496 -121.788 -3.90496 0 0 1.01997e+06 3529.29 0.45 0.07 0.0188582 0.0168427 69 21 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 9.43 vpr 61.66 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33112 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63136 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 23.1 MiB 3.50 819 61.7 MiB 0.06 0.00 3.44018 -105.802 -3.44018 3.44018 1.04 0.000235743 0.000189968 0.0141957 0.0118459 44 2722 36 6.95648e+06 188184 787024. 2723.27 2.21 0.0982588 0.0842247 1696 20 1463 1991 138241 32170 3.67652 3.67652 -129.418 -3.67652 0 0 997811. 3452.63 0.45 0.06 0.0175363 0.0157434 79 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.70 vpr 61.86 MiB -1 -1 0.20 21168 1 0.01 -1 -1 33164 -1 -1 15 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63344 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 23.4 MiB 1.97 899 61.9 MiB 0.08 0.00 3.62077 -113.564 -3.62077 3.62077 1.05 0.000263348 0.000213101 0.0204516 0.0167994 48 2855 27 6.95648e+06 217135 865456. 2994.66 3.85 0.122495 0.105922 2227 24 1927 3068 286489 61745 4.51411 4.51411 -144.125 -4.51411 0 0 1.05005e+06 3633.38 0.47 0.10 0.0251116 0.0225581 85 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 9.17 vpr 61.88 MiB -1 -1 0.17 21356 1 0.02 -1 -1 33204 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63368 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 23.2 MiB 3.08 854 61.9 MiB 0.07 0.00 3.495 -112.26 -3.495 3.495 1.05 0.000249218 0.000201176 0.017791 0.0147172 42 2988 47 6.95648e+06 188184 744469. 2576.02 2.39 0.134259 0.115564 2022 21 1513 2438 179367 40922 4.02742 4.02742 -133.139 -4.02742 0 0 949917. 3286.91 0.42 0.07 0.0202873 0.0180589 76 74 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 6.41 vpr 61.23 MiB -1 -1 0.18 20772 1 0.01 -1 -1 33136 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 22.6 MiB 0.35 629 61.2 MiB 0.06 0.00 2.50468 -78.2248 -2.50468 2.50468 1.05 0.00018763 0.000149619 0.0126929 0.0103787 38 1671 35 6.95648e+06 260562 678818. 2348.85 2.46 0.082028 0.069908 1407 22 1009 1502 103932 24147 3.08322 3.08322 -99.0997 -3.08322 0 0 902133. 3121.57 0.39 0.05 0.0138123 0.0122059 57 20 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 9.18 vpr 61.48 MiB -1 -1 0.18 21208 1 0.02 -1 -1 33196 -1 -1 12 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62952 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 22.9 MiB 1.90 733 61.5 MiB 0.07 0.00 3.24955 -113.822 -3.24955 3.24955 1.08 0.000263206 0.000214962 0.01979 0.0163235 50 2197 23 6.95648e+06 173708 902133. 3121.57 3.36 0.107871 0.0928624 1831 20 1333 1854 193978 43980 3.57462 3.57462 -135.312 -3.57462 0 0 1.08113e+06 3740.92 0.49 0.07 0.0186853 0.0167457 76 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.82 vpr 62.03 MiB -1 -1 0.19 21312 1 0.01 -1 -1 33192 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63516 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 23.4 MiB 2.60 1190 62.0 MiB 0.11 0.00 3.97952 -131.643 -3.97952 3.97952 1.08 0.000289131 0.000235543 0.0266706 0.0222341 46 3159 27 6.95648e+06 231611 828058. 2865.25 3.25 0.141499 0.12306 2602 22 2265 3481 257706 51818 4.59026 4.59026 -159.568 -4.59026 0 0 1.01997e+06 3529.29 0.46 0.09 0.0248987 0.0225094 97 28 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 8.61 vpr 61.72 MiB -1 -1 0.18 21104 1 0.02 -1 -1 33164 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63200 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 23.2 MiB 1.17 771 61.7 MiB 0.07 0.00 3.53151 -111.555 -3.53151 3.53151 1.06 0.000250446 0.000202607 0.0152247 0.0126185 36 2593 42 6.95648e+06 246087 648988. 2245.63 3.74 0.121409 0.104883 2019 19 1421 1920 184950 39209 3.51206 3.51206 -137.39 -3.51206 0 0 828058. 2865.25 0.38 0.07 0.0187287 0.0168565 74 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 7.77 vpr 61.45 MiB -1 -1 0.17 21064 1 0.01 -1 -1 33216 -1 -1 20 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62924 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 22.9 MiB 0.73 553 61.4 MiB 0.06 0.00 2.44995 -78.9087 -2.44995 2.44995 1.06 0.000202016 0.000161614 0.0144098 0.0116504 38 1934 30 6.95648e+06 289514 678818. 2348.85 3.42 0.0891037 0.076008 1380 24 1181 1698 140349 34008 3.22622 3.22622 -107.498 -3.22622 0 0 902133. 3121.57 0.39 0.06 0.0161525 0.0142666 62 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 9.95 vpr 62.10 MiB -1 -1 0.20 21560 1 0.02 -1 -1 33416 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63592 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 23.7 MiB 2.31 1139 62.1 MiB 0.11 0.00 5.05469 -150.411 -5.05469 5.05469 1.09 0.000319219 0.000261339 0.0285114 0.0236839 46 3115 22 6.95648e+06 217135 828058. 2865.25 3.63 0.141232 0.122255 2609 21 2068 3035 260479 50966 5.31395 5.31395 -178.923 -5.31395 0 0 1.01997e+06 3529.29 0.45 0.10 0.0248205 0.0222593 95 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 7.46 vpr 61.52 MiB -1 -1 0.19 21036 1 0.02 -1 -1 33204 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62996 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 22.9 MiB 1.62 801 61.5 MiB 0.09 0.00 3.8351 -111.431 -3.8351 3.8351 1.09 0.000256812 0.00020475 0.0199765 0.0161166 40 2073 23 6.95648e+06 332941 706193. 2443.58 2.06 0.102677 0.0875822 1810 20 1400 2069 162403 34408 3.93196 3.93196 -131.25 -3.93196 0 0 926341. 3205.33 0.41 0.07 0.019072 0.0171567 74 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 15.95 vpr 60.96 MiB -1 -1 0.17 20796 1 0.01 -1 -1 33076 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62424 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 22.4 MiB 0.35 532 61.0 MiB 0.07 0.00 2.5344 -76.8693 -2.5344 2.5344 1.08 0.000197927 0.000162836 0.0157719 0.0129555 40 1865 42 6.95648e+06 188184 706193. 2443.58 11.93 0.165268 0.142724 1427 22 1047 1505 140166 32814 2.80832 2.80832 -101.15 -2.80832 0 0 926341. 3205.33 0.40 0.06 0.0134927 0.0119489 51 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 32.90 vpr 61.77 MiB -1 -1 0.19 21180 1 0.01 -1 -1 33204 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63256 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 23.1 MiB 0.70 915 61.8 MiB 0.11 0.00 4.17817 -109.405 -4.17817 4.17817 1.07 0.000262398 0.000214978 0.0232906 0.019121 40 3103 49 6.95648e+06 347416 706193. 2443.58 28.35 0.248214 0.214064 2586 23 1752 2974 346909 68993 5.00786 5.00786 -151.962 -5.00786 0 0 926341. 3205.33 0.40 0.11 0.0224349 0.0200933 80 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.30 vpr 61.32 MiB -1 -1 0.17 20676 1 0.02 -1 -1 33148 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62788 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 22.7 MiB 1.39 493 61.3 MiB 0.06 0.00 2.6034 -83.3279 -2.6034 2.6034 1.08 0.000197219 0.000159746 0.0164179 0.0135266 42 1663 46 6.95648e+06 202660 744469. 2576.02 2.20 0.0941107 0.0807967 1303 28 1458 2012 138401 34028 3.50807 3.50807 -110.723 -3.50807 0 0 949917. 3286.91 0.42 0.06 0.016645 0.0147215 57 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 19.38 vpr 61.48 MiB -1 -1 0.17 21020 1 0.01 -1 -1 33176 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62956 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 23.0 MiB 1.19 549 61.5 MiB 0.05 0.00 2.81033 -85.3639 -2.81033 2.81033 1.06 0.000208043 0.00016869 0.0132657 0.0110255 38 2206 47 6.95648e+06 246087 678818. 2348.85 14.53 0.175444 0.152331 1449 26 1263 1836 134996 32483 3.00397 3.00397 -108.064 -3.00397 0 0 902133. 3121.57 0.39 0.06 0.0180836 0.0160389 60 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 11.03 vpr 61.95 MiB -1 -1 0.19 21388 1 0.02 -1 -1 33196 -1 -1 16 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63432 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 23.3 MiB 2.01 856 61.9 MiB 0.08 0.00 3.15532 -98.9633 -3.15532 3.15532 1.06 0.000242104 0.000199334 0.0209153 0.0172253 40 3255 49 6.95648e+06 231611 706193. 2443.58 5.26 0.123781 0.105857 2475 25 2193 3269 318552 68271 4.30873 4.30873 -137.582 -4.30873 0 0 926341. 3205.33 0.40 0.10 0.021536 0.0190718 80 56 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.75 vpr 61.75 MiB -1 -1 0.18 21388 1 0.02 -1 -1 33196 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63232 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 23.2 MiB 1.76 755 61.8 MiB 0.07 0.00 3.91028 -113.764 -3.91028 3.91028 1.05 0.000257964 0.000209047 0.0196697 0.0161723 40 2541 30 6.95648e+06 231611 706193. 2443.58 3.28 0.111784 0.0955983 1929 25 1548 2339 223168 53768 4.43547 4.43547 -146.684 -4.43547 0 0 926341. 3205.33 0.40 0.08 0.0212897 0.0188476 72 51 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 9.27 vpr 61.73 MiB -1 -1 0.19 21320 1 0.02 -1 -1 33136 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63212 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 23.2 MiB 2.56 725 61.7 MiB 0.07 0.00 3.66779 -114.458 -3.66779 3.66779 1.08 0.000258472 0.000209877 0.0192519 0.0159712 44 2797 31 6.95648e+06 202660 787024. 2723.27 2.82 0.121968 0.105637 1899 32 1423 2115 151366 35577 4.38486 4.38486 -142.247 -4.38486 0 0 997811. 3452.63 0.46 0.08 0.0260325 0.0230973 73 48 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 10.80 vpr 61.05 MiB -1 -1 0.17 21032 1 0.02 -1 -1 33052 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62520 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 22.6 MiB 4.05 702 61.1 MiB 0.07 0.00 3.30448 -105.322 -3.30448 3.30448 1.07 0.000199174 0.000158404 0.0178885 0.014614 44 2196 40 6.95648e+06 144757 787024. 2723.27 2.97 0.105405 0.0909737 1545 23 1228 1615 122917 27879 3.86881 3.86881 -125.939 -3.86881 0 0 997811. 3452.63 0.45 0.06 0.0161289 0.0143956 61 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 9.94 vpr 61.64 MiB -1 -1 0.18 21240 1 0.01 -1 -1 33128 -1 -1 12 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63120 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 23.0 MiB 2.69 586 61.6 MiB 0.07 0.00 3.15532 -99.1205 -3.15532 3.15532 1.07 0.000223736 0.000181106 0.0186971 0.0154264 46 2179 26 6.95648e+06 173708 828058. 2865.25 3.45 0.107388 0.0927004 1465 30 1324 1911 148665 36124 3.33806 3.33806 -121.807 -3.33806 0 0 1.01997e+06 3529.29 0.45 0.07 0.0209895 0.0184546 68 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 7.70 vpr 61.77 MiB -1 -1 0.19 21152 1 0.01 -1 -1 33148 -1 -1 22 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63248 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 23.3 MiB 1.05 676 61.8 MiB 0.08 0.00 2.6096 -78.1292 -2.6096 2.6096 1.03 0.000234224 0.000188762 0.0182753 0.0150052 38 2136 21 6.95648e+06 318465 678818. 2348.85 2.98 0.0981108 0.0835903 1712 17 1085 1629 119670 26806 3.02117 3.02117 -100.6 -3.02117 0 0 902133. 3121.57 0.41 0.05 0.0158169 0.0142021 71 52 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 9.03 vpr 61.28 MiB -1 -1 0.17 21116 1 0.02 -1 -1 33220 -1 -1 28 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62752 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 22.7 MiB 0.73 791 61.3 MiB 0.07 0.00 3.07194 -87.3079 -3.07194 3.07194 1.06 0.000222906 0.000174933 0.0142218 0.0117829 36 2292 43 6.95648e+06 405319 648988. 2245.63 4.66 0.101995 0.0879426 1784 19 1191 1914 165239 33458 3.63046 3.63046 -112.403 -3.63046 0 0 828058. 2865.25 0.37 0.06 0.014672 0.0130881 72 20 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 7.15 vpr 61.51 MiB -1 -1 0.18 21132 1 0.02 -1 -1 33144 -1 -1 12 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62988 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 22.9 MiB 1.05 567 61.5 MiB 0.07 0.00 2.92163 -91.0061 -2.92163 2.92163 1.04 0.000214656 0.000171539 0.0190448 0.0155583 40 1682 47 6.95648e+06 173708 706193. 2443.58 2.46 0.102914 0.0871143 1464 20 1243 1726 137199 32804 3.07087 3.07087 -111.651 -3.07087 0 0 926341. 3205.33 0.39 0.06 0.0158459 0.0141058 60 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 18.26 vpr 61.77 MiB -1 -1 0.19 21440 1 0.02 -1 -1 33244 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63248 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 23.3 MiB 2.13 858 61.8 MiB 0.06 0.00 2.80395 -100.491 -2.80395 2.80395 1.07 0.00023772 0.000192912 0.0149023 0.0123976 50 2206 17 6.95648e+06 159232 902133. 3121.57 12.28 0.172706 0.148507 1990 22 1258 1879 160663 33466 3.40406 3.40406 -131.14 -3.40406 0 0 1.08113e+06 3740.92 0.48 0.07 0.0191976 0.0171383 72 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 6.93 vpr 61.34 MiB -1 -1 0.18 20764 1 0.02 -1 -1 33244 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62808 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 22.7 MiB 0.62 698 61.3 MiB 0.08 0.00 3.98538 -99.8238 -3.98538 3.98538 1.07 0.000237638 0.000185019 0.0173047 0.0141869 48 1809 22 6.95648e+06 347416 865456. 2994.66 2.46 0.0967936 0.083488 1593 22 1079 1830 136805 31463 3.92232 3.92232 -119.568 -3.92232 0 0 1.05005e+06 3633.38 0.47 0.06 0.017929 0.0160929 74 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 9.15 vpr 61.73 MiB -1 -1 0.17 21360 1 0.02 -1 -1 33156 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63212 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 23.1 MiB 2.31 814 61.7 MiB 0.08 0.00 3.69477 -120.616 -3.69477 3.69477 1.06 0.000259184 0.000211166 0.0219413 0.0182015 50 2705 30 6.95648e+06 188184 902133. 3121.57 2.96 0.122888 0.106818 2156 24 1833 2663 215213 50134 4.84641 4.84641 -156.575 -4.84641 0 0 1.08113e+06 3740.92 0.48 0.09 0.0223668 0.0200799 82 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.83 vpr 61.95 MiB -1 -1 0.19 21104 1 0.02 -1 -1 33120 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63432 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 23.5 MiB 1.86 782 61.9 MiB 0.07 0.00 3.74653 -112.348 -3.74653 3.74653 1.03 0.00027315 0.000219081 0.0168332 0.0137854 50 2286 31 6.95648e+06 347416 902133. 3121.57 3.19 0.113761 0.0974991 1774 22 1459 2456 215500 44994 3.99396 3.99396 -139.574 -3.99396 0 0 1.08113e+06 3740.92 0.46 0.08 0.019942 0.0176711 80 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 23.93 vpr 61.67 MiB -1 -1 0.18 21380 1 0.02 -1 -1 33168 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63152 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 23.2 MiB 1.28 876 61.7 MiB 0.09 0.00 3.44202 -113.108 -3.44202 3.44202 1.02 0.000265081 0.000213529 0.0201589 0.0165953 44 2715 24 6.95648e+06 332941 787024. 2723.27 18.91 0.218867 0.188657 2175 24 1777 2950 274373 55597 4.00236 4.00236 -140.724 -4.00236 0 0 997811. 3452.63 0.45 0.10 0.0235285 0.0208754 80 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 8.22 vpr 61.24 MiB -1 -1 0.17 20972 1 0.01 -1 -1 33228 -1 -1 12 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62712 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 22.8 MiB 1.13 532 61.2 MiB 0.05 0.00 3.09846 -87.5488 -3.09846 3.09846 1.07 0.000205528 0.000166558 0.0144542 0.011983 40 2093 44 6.95648e+06 173708 706193. 2443.58 3.38 0.103262 0.0893468 1622 28 1475 2234 218211 49131 3.51082 3.51082 -117.751 -3.51082 0 0 926341. 3205.33 0.41 0.08 0.0179125 0.0158034 57 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 7.59 vpr 61.80 MiB -1 -1 0.19 21260 1 0.02 -1 -1 33248 -1 -1 14 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63280 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 23.2 MiB 1.21 684 61.8 MiB 0.08 0.00 3.59233 -109.701 -3.59233 3.59233 1.08 0.000278206 0.000227117 0.0237336 0.0196713 40 2218 38 6.95648e+06 202660 706193. 2443.58 2.61 0.122244 0.104272 1718 24 1899 2665 195181 48631 4.36836 4.36836 -143.75 -4.36836 0 0 926341. 3205.33 0.40 0.08 0.0208233 0.0183426 76 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.91 vpr 61.91 MiB -1 -1 0.19 21192 1 0.02 -1 -1 33184 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63392 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 23.3 MiB 2.05 804 61.9 MiB 0.08 0.00 4.1332 -120.029 -4.1332 4.1332 1.09 0.000243774 0.000197302 0.0202446 0.016782 44 2721 36 6.95648e+06 202660 787024. 2723.27 2.98 0.126299 0.1099 1946 22 1598 2520 199141 44654 4.41131 4.41131 -144.132 -4.41131 0 0 997811. 3452.63 0.44 0.08 0.0194568 0.017357 80 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 10.32 vpr 61.71 MiB -1 -1 0.20 21196 1 0.02 -1 -1 33244 -1 -1 14 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63192 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 23.2 MiB 2.90 854 61.7 MiB 0.07 0.00 4.52776 -124.157 -4.52776 4.52776 1.06 0.000249051 0.000201369 0.018376 0.0152191 46 2297 30 6.95648e+06 202660 828058. 2865.25 3.62 0.111303 0.0962115 1762 22 1239 1866 140231 31363 4.32376 4.32376 -136.261 -4.32376 0 0 1.01997e+06 3529.29 0.44 0.06 0.0191613 0.0169576 79 43 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 8.93 vpr 61.96 MiB -1 -1 0.19 21148 1 0.02 -1 -1 33136 -1 -1 21 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63448 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 23.3 MiB 2.17 780 62.0 MiB 0.08 0.00 3.74802 -114.388 -3.74802 3.74802 1.07 0.000261591 0.000212378 0.0206944 0.0171963 44 2346 40 6.95648e+06 303989 787024. 2723.27 2.90 0.134968 0.117339 1557 20 1104 1638 104046 25338 3.56856 3.56856 -126.894 -3.56856 0 0 997811. 3452.63 0.44 0.06 0.0187411 0.0166844 74 78 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 9.29 vpr 61.75 MiB -1 -1 0.18 21176 1 0.02 -1 -1 33220 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63236 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 23.2 MiB 1.51 688 61.8 MiB 0.07 0.00 3.75683 -113.51 -3.75683 3.75683 1.06 0.000249926 0.000199342 0.0187697 0.0153489 50 2468 45 6.95648e+06 188184 902133. 3121.57 3.93 0.121525 0.103905 1786 20 1444 2426 214218 48873 3.88602 3.88602 -136.673 -3.88602 0 0 1.08113e+06 3740.92 0.46 0.07 0.0183467 0.0163518 72 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 16.61 vpr 61.85 MiB -1 -1 0.19 21164 1 0.01 -1 -1 33172 -1 -1 16 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63332 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 23.3 MiB 1.52 757 61.8 MiB 0.07 0.00 3.26967 -103.664 -3.26967 3.26967 1.10 0.000251145 0.000201257 0.0189576 0.0155707 36 2644 47 6.95648e+06 231611 648988. 2245.63 11.30 0.205309 0.176456 2057 22 1553 2379 240759 50678 3.69672 3.69672 -131.162 -3.69672 0 0 828058. 2865.25 0.37 0.08 0.0195252 0.0172647 73 79 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 7.59 vpr 61.34 MiB -1 -1 0.17 20760 1 0.02 -1 -1 33020 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 22.8 MiB 1.21 531 61.3 MiB 0.06 0.00 2.91658 -84.802 -2.91658 2.91658 1.09 0.000186349 0.000150062 0.0157577 0.013069 44 1926 50 6.95648e+06 144757 787024. 2723.27 2.59 0.0996994 0.08606 1412 24 992 1446 116184 28330 2.99867 2.99867 -106.349 -2.99867 0 0 997811. 3452.63 0.44 0.06 0.0157387 0.0140543 53 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 11.67 vpr 62.00 MiB -1 -1 0.18 21036 1 0.02 -1 -1 33184 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63488 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 23.3 MiB 4.26 760 62.0 MiB 0.09 0.00 3.81706 -107.592 -3.81706 3.81706 1.08 0.000262688 0.000212098 0.0247608 0.0203416 56 1946 25 6.95648e+06 332941 973134. 3367.25 3.22 0.127015 0.109967 1687 32 1411 2386 531528 281207 4.00416 4.00416 -131.983 -4.00416 0 0 1.19926e+06 4149.71 0.52 0.21 0.0291899 0.0260285 76 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 11.17 vpr 61.78 MiB -1 -1 0.18 21316 1 0.02 -1 -1 33232 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63260 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 23.4 MiB 0.82 848 61.8 MiB 0.07 0.00 3.60518 -119.819 -3.60518 3.60518 0.97 0.000257901 0.000207763 0.0178576 0.0148109 38 3180 48 6.95648e+06 188184 678818. 2348.85 6.74 0.146268 0.126805 2174 25 2247 3294 308589 62876 4.32012 4.32012 -158.933 -4.32012 0 0 902133. 3121.57 0.39 0.10 0.0239401 0.0212296 78 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.68 vpr 61.09 MiB -1 -1 0.18 21172 1 0.01 -1 -1 33164 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62560 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 22.6 MiB 2.03 751 61.1 MiB 0.05 0.00 3.28067 -99.9229 -3.28067 3.28067 1.08 0.00021419 0.00015978 0.0125411 0.0103421 38 2181 26 6.95648e+06 159232 678818. 2348.85 2.97 0.0885516 0.0764237 1667 24 1243 1570 121591 27364 3.67652 3.67652 -125.474 -3.67652 0 0 902133. 3121.57 0.38 0.06 0.0176646 0.0157987 68 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 7.97 vpr 61.30 MiB -1 -1 0.17 20608 1 0.01 -1 -1 33108 -1 -1 13 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62768 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 22.7 MiB 1.50 542 61.3 MiB 0.07 0.00 2.78823 -83.9509 -2.78823 2.78823 1.07 0.000197307 0.000160336 0.0155269 0.0128465 38 1845 29 6.95648e+06 188184 678818. 2348.85 2.78 0.0936087 0.0813391 1407 21 1174 1600 116766 27219 3.40287 3.40287 -114.457 -3.40287 0 0 902133. 3121.57 0.40 0.05 0.0146362 0.0130708 57 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 25.34 vpr 61.43 MiB -1 -1 0.18 21240 1 0.01 -1 -1 33156 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62908 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 22.8 MiB 2.07 835 61.4 MiB 0.08 0.00 3.73207 -120.825 -3.73207 3.73207 1.07 0.000252717 0.00019829 0.019941 0.0165032 42 3204 43 6.95648e+06 217135 744469. 2576.02 19.45 0.209448 0.179906 2143 22 2024 2698 255144 58178 4.15911 4.15911 -151.604 -4.15911 0 0 949917. 3286.91 0.41 0.09 0.0196815 0.0175519 85 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.00 vpr 61.59 MiB -1 -1 0.18 21152 1 0.02 -1 -1 33140 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63068 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 22.9 MiB 1.45 1089 61.6 MiB 0.09 0.00 4.05782 -127.029 -4.05782 4.05782 1.05 0.000251388 0.000203627 0.0239263 0.01965 40 2734 31 6.95648e+06 202660 706193. 2443.58 2.78 0.118709 0.101907 2327 23 1798 2523 248822 50371 4.53221 4.53221 -151.744 -4.53221 0 0 926341. 3205.33 0.42 0.09 0.0222765 0.0199155 82 53 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 25.46 vpr 61.72 MiB -1 -1 0.18 20940 1 0.02 -1 -1 33184 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63204 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 23.0 MiB 0.62 973 61.7 MiB 0.07 0.00 4.04672 -117.624 -4.04672 4.04672 1.04 0.000259772 0.000209491 0.0181149 0.0149576 46 2910 46 6.95648e+06 246087 828058. 2865.25 21.01 0.233913 0.202786 2164 21 1650 2706 236481 49841 4.55186 4.55186 -148.319 -4.55186 0 0 1.01997e+06 3529.29 0.44 0.08 0.0199767 0.0178815 83 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 8.99 vpr 61.23 MiB -1 -1 0.18 21104 1 0.02 -1 -1 33112 -1 -1 21 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 22.6 MiB 1.14 695 61.2 MiB 0.08 0.00 2.70213 -80.8085 -2.70213 2.70213 1.08 0.00024284 0.000197661 0.0194561 0.0161103 36 2361 34 6.95648e+06 303989 648988. 2245.63 4.12 0.115594 0.100134 1819 23 1522 2370 205383 43509 3.28122 3.28122 -110.824 -3.28122 0 0 828058. 2865.25 0.37 0.07 0.0178423 0.0158002 69 47 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 10.92 vpr 60.89 MiB -1 -1 0.17 20912 1 0.02 -1 -1 33208 -1 -1 14 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62348 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 22.3 MiB 0.67 463 60.9 MiB 0.06 0.00 2.4231 -71.5822 -2.4231 2.4231 1.07 0.000197703 0.000160607 0.01557 0.0128734 36 1735 50 6.95648e+06 202660 648988. 2245.63 6.58 0.145819 0.125323 1163 21 1136 1418 124353 31223 2.89432 2.89432 -98.2859 -2.89432 0 0 828058. 2865.25 0.39 0.06 0.0146688 0.0130894 54 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 9.91 vpr 62.27 MiB -1 -1 0.20 21560 1 0.02 -1 -1 33236 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63760 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 23.8 MiB 1.63 1058 62.3 MiB 0.10 0.00 3.20225 -107.68 -3.20225 3.20225 1.09 0.000276627 0.000223034 0.0247113 0.0203376 46 3494 25 6.95648e+06 231611 828058. 2865.25 4.29 0.133836 0.114915 2748 22 2144 3450 271247 56441 3.98952 3.98952 -141.195 -3.98952 0 0 1.01997e+06 3529.29 0.47 0.10 0.0245949 0.0220125 95 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 12.69 vpr 61.41 MiB -1 -1 0.19 21356 1 0.02 -1 -1 33176 -1 -1 15 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62884 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 22.8 MiB 6.48 933 61.4 MiB 0.06 0.00 4.38705 -125.871 -4.38705 4.38705 1.03 0.000262054 0.000212777 0.0133112 0.0110251 44 2587 25 6.95648e+06 217135 787024. 2723.27 2.45 0.101433 0.0870261 2034 23 1667 2508 208639 43460 4.66426 4.66426 -153.959 -4.66426 0 0 997811. 3452.63 0.45 0.08 0.0202481 0.0180091 82 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 12.34 vpr 61.62 MiB -1 -1 0.18 21340 1 0.02 -1 -1 33176 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63104 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 23.2 MiB 4.42 791 61.6 MiB 0.07 0.00 3.17714 -106.17 -3.17714 3.17714 1.09 0.000239421 0.000193441 0.0177223 0.014642 38 2519 32 6.95648e+06 159232 678818. 2348.85 4.17 0.116391 0.100861 1976 20 1491 2145 200737 41645 3.54456 3.54456 -135.65 -3.54456 0 0 902133. 3121.57 0.40 0.08 0.0186602 0.0167935 70 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 9.67 vpr 61.66 MiB -1 -1 0.18 21152 1 0.02 -1 -1 33172 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63140 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 23.2 MiB 0.49 788 61.7 MiB 0.09 0.00 3.46513 -100.277 -3.46513 3.46513 1.06 0.000266285 0.000210286 0.0203629 0.0166247 38 2857 26 6.95648e+06 318465 678818. 2348.85 5.42 0.112709 0.0971874 2116 22 1447 2221 194905 41919 3.81996 3.81996 -127.193 -3.81996 0 0 902133. 3121.57 0.40 0.07 0.0181945 0.0161719 74 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 9.06 vpr 61.84 MiB -1 -1 0.19 21396 1 0.01 -1 -1 33204 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63324 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 23.4 MiB 1.13 815 61.8 MiB 0.08 0.00 3.65663 -107.381 -3.65663 3.65663 1.08 0.000272205 0.000221067 0.0202811 0.0168458 38 2786 30 6.95648e+06 361892 678818. 2348.85 4.10 0.12607 0.108805 2058 22 1708 2471 177351 39594 4.12687 4.12687 -134.431 -4.12687 0 0 902133. 3121.57 0.40 0.07 0.0211655 0.0188384 83 46 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 11.35 vpr 61.28 MiB -1 -1 0.17 21164 1 0.02 -1 -1 33192 -1 -1 16 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62752 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 22.8 MiB 1.33 843 61.3 MiB 0.08 0.00 2.87605 -89.3599 -2.87605 2.87605 1.04 0.000202392 0.000162645 0.0198887 0.0164507 36 2759 42 6.95648e+06 231611 648988. 2245.63 6.41 0.134344 0.117023 2182 19 1505 2383 214566 44495 3.20137 3.20137 -118.13 -3.20137 0 0 828058. 2865.25 0.35 0.07 0.0168698 0.0150231 68 46 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 9.11 vpr 61.71 MiB -1 -1 0.17 21300 1 0.03 -1 -1 33020 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63196 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 23.0 MiB 2.05 902 61.7 MiB 0.09 0.00 3.74967 -121.799 -3.74967 3.74967 1.05 0.00025195 0.00020348 0.0243526 0.0199592 60 2244 22 6.95648e+06 202660 1.01997e+06 3529.29 3.06 0.113875 0.0977034 1805 22 1758 2640 194440 45893 4.35966 4.35966 -145.538 -4.35966 0 0 1.27783e+06 4421.56 0.56 0.08 0.019978 0.0178783 88 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 7.86 vpr 61.86 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33208 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63344 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 23.4 MiB 1.21 777 61.9 MiB 0.07 0.00 3.70063 -119.841 -3.70063 3.70063 1.07 0.000265698 0.000213661 0.0191722 0.0157694 46 2779 29 6.95648e+06 260562 828058. 2865.25 2.80 0.115199 0.0982162 1864 24 1649 2246 176451 42099 4.05246 4.05246 -144.586 -4.05246 0 0 1.01997e+06 3529.29 0.46 0.08 0.0224762 0.0198758 80 59 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 11.81 vpr 61.48 MiB -1 -1 0.17 20840 1 0.02 -1 -1 33192 -1 -1 12 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62956 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 22.8 MiB 6.30 445 61.5 MiB 0.05 0.00 3.39122 -85.608 -3.39122 3.39122 1.11 0.000194968 0.000157158 0.0140334 0.0116244 40 1522 25 6.95648e+06 173708 706193. 2443.58 1.80 0.0792714 0.0673275 1317 22 1034 1334 117738 28995 3.19427 3.19427 -106.238 -3.19427 0 0 926341. 3205.33 0.41 0.05 0.0154721 0.0137632 53 28 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 7.83 vpr 61.32 MiB -1 -1 0.18 21356 1 0.02 -1 -1 33220 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 22.7 MiB 1.55 670 61.3 MiB 0.06 0.00 3.06285 -103.701 -3.06285 3.06285 1.06 0.000220396 0.00017632 0.0153488 0.0126225 46 1870 25 6.95648e+06 159232 828058. 2865.25 2.52 0.098983 0.085358 1396 34 1475 1877 140875 32330 3.40392 3.40392 -122.474 -3.40392 0 0 1.01997e+06 3529.29 0.44 0.07 0.0219603 0.0192429 64 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 7.78 vpr 61.65 MiB -1 -1 0.18 21236 1 0.02 -1 -1 33116 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63128 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 23.1 MiB 1.29 655 61.6 MiB 0.07 0.00 3.28045 -95.2107 -3.28045 3.28045 1.03 0.000231255 0.000185778 0.017973 0.0147025 50 1771 37 6.95648e+06 332941 902133. 3121.57 2.71 0.105126 0.0897505 1435 24 1443 2229 161253 38965 3.66451 3.66451 -119.152 -3.66451 0 0 1.08113e+06 3740.92 0.47 0.07 0.0186746 0.016516 77 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 8.77 vpr 61.23 MiB -1 -1 0.18 20936 1 0.01 -1 -1 33228 -1 -1 13 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62704 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 22.7 MiB 2.06 670 61.2 MiB 0.05 0.00 3.40298 -96.2251 -3.40298 3.40298 1.03 0.000197294 0.000159333 0.0132917 0.0109478 38 2099 36 6.95648e+06 188184 678818. 2348.85 3.10 0.0864045 0.0737461 1590 20 1143 1434 114623 25544 3.53222 3.53222 -113.681 -3.53222 0 0 902133. 3121.57 0.39 0.05 0.0141717 0.0126372 67 25 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.80 vpr 61.52 MiB -1 -1 0.17 21116 1 0.02 -1 -1 33060 -1 -1 9 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62992 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 23.1 MiB 1.74 633 61.5 MiB 0.06 0.00 3.31656 -94.3349 -3.31656 3.31656 1.06 0.000203952 0.000162854 0.0153964 0.0126604 40 1815 29 6.95648e+06 130281 706193. 2443.58 2.36 0.088411 0.0755265 1480 21 1265 1828 149428 34245 3.15687 3.15687 -116.159 -3.15687 0 0 926341. 3205.33 0.40 0.06 0.0161393 0.0143993 56 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.52 vpr 61.84 MiB -1 -1 0.19 21332 1 0.02 -1 -1 33228 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63320 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 23.2 MiB 1.31 708 61.8 MiB 0.07 0.00 2.80413 -93.5228 -2.80413 2.80413 1.05 0.000245737 0.000196299 0.0176352 0.0145387 38 2276 27 6.95648e+06 347416 678818. 2348.85 2.52 0.115965 0.0998962 1680 20 1565 1989 142015 31892 3.10117 3.10117 -117.726 -3.10117 0 0 902133. 3121.57 0.40 0.06 0.0189898 0.0169576 79 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 14.81 vpr 61.49 MiB -1 -1 0.18 21036 1 0.02 -1 -1 33168 -1 -1 12 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62968 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 23.0 MiB 3.40 638 61.5 MiB 0.05 0.00 3.22567 -98.3037 -3.22567 3.22567 1.05 0.000201806 0.000163999 0.0115499 0.00962367 38 2249 30 6.95648e+06 173708 678818. 2348.85 7.75 0.141616 0.122162 1574 19 1004 1414 98010 22540 3.50741 3.50741 -119.827 -3.50741 0 0 902133. 3121.57 0.40 0.05 0.0143497 0.0128674 64 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 8.30 vpr 61.67 MiB -1 -1 0.18 21216 1 0.02 -1 -1 33080 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63148 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 23.1 MiB 1.72 744 61.7 MiB 0.08 0.00 2.7068 -90.8888 -2.7068 2.7068 1.08 0.000249127 0.00019992 0.020368 0.0168152 46 1902 32 6.95648e+06 318465 828058. 2865.25 2.74 0.110597 0.0948948 1512 21 1136 1722 113213 26953 3.07907 3.07907 -114.822 -3.07907 0 0 1.01997e+06 3529.29 0.44 0.06 0.018859 0.0168173 71 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 8.59 vpr 62.05 MiB -1 -1 0.20 21440 1 0.02 -1 -1 33156 -1 -1 15 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63544 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 23.4 MiB 2.18 692 62.1 MiB 0.08 0.00 3.533 -115.048 -3.533 3.533 0.99 0.000266112 0.000215219 0.0220375 0.0181758 40 2188 26 6.95648e+06 217135 706193. 2443.58 2.80 0.126453 0.109332 1817 23 1655 2224 193346 43754 3.95212 3.95212 -139.774 -3.95212 0 0 926341. 3205.33 0.40 0.08 0.0217969 0.0193229 73 87 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 7.57 vpr 61.44 MiB -1 -1 0.18 21356 1 0.02 -1 -1 33092 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62916 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 22.9 MiB 1.80 608 61.4 MiB 0.06 0.00 2.4011 -80.9183 -2.4011 2.4011 1.04 0.000224137 0.000180883 0.0164467 0.0134286 44 1723 27 6.95648e+06 144757 787024. 2723.27 2.10 0.0873727 0.0739464 1242 21 975 1498 111491 24684 2.88772 2.88772 -99.2347 -2.88772 0 0 997811. 3452.63 0.44 0.05 0.0153468 0.0135979 57 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 8.32 vpr 61.42 MiB -1 -1 0.17 21080 1 0.01 -1 -1 33160 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 22.8 MiB 1.92 814 61.4 MiB 0.07 0.00 3.29168 -108.158 -3.29168 3.29168 1.05 0.00021489 0.000167923 0.0152147 0.0125076 40 2394 27 6.95648e+06 159232 706193. 2443.58 2.65 0.0927833 0.0796374 2063 24 1548 2292 248496 49883 3.88596 3.88596 -140.059 -3.88596 0 0 926341. 3205.33 0.41 0.09 0.0184202 0.0164554 70 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 10.01 vpr 61.65 MiB -1 -1 0.17 21096 1 0.01 -1 -1 33152 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63128 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 23.2 MiB 3.07 742 61.6 MiB 0.07 0.00 3.45418 -103.972 -3.45418 3.45418 1.07 0.000227657 0.000181217 0.0173453 0.0143419 40 2676 25 6.95648e+06 202660 706193. 2443.58 3.17 0.104469 0.0899562 2152 23 1883 2545 214056 51035 4.45926 4.45926 -140.304 -4.45926 0 0 926341. 3205.33 0.42 0.08 0.0198499 0.0177412 79 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.88 vpr 61.27 MiB -1 -1 0.19 21344 1 0.02 -1 -1 33268 -1 -1 21 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62744 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 22.8 MiB 1.44 666 61.3 MiB 0.06 0.00 3.49208 -95.9265 -3.49208 3.49208 1.06 0.000227104 0.000182225 0.0151891 0.0125156 44 2110 50 6.95648e+06 303989 787024. 2723.27 2.65 0.115319 0.0995319 1493 22 1087 1642 121253 29424 3.64846 3.64846 -114.636 -3.64846 0 0 997811. 3452.63 0.46 0.06 0.0182767 0.0162618 71 49 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 8.87 vpr 62.06 MiB -1 -1 0.18 21340 1 0.02 -1 -1 33196 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63552 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 23.5 MiB 1.97 836 62.1 MiB 0.07 0.00 4.0452 -127.579 -4.0452 4.0452 1.06 0.000280011 0.000227495 0.0182065 0.0151604 50 2674 31 6.95648e+06 202660 902133. 3121.57 2.99 0.127595 0.110719 1975 20 1901 2724 218415 49233 4.23801 4.23801 -148.886 -4.23801 0 0 1.08113e+06 3740.92 0.48 0.09 0.0226792 0.0204867 89 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 8.10 vpr 61.09 MiB -1 -1 0.17 20664 1 0.02 -1 -1 33068 -1 -1 13 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62560 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 22.5 MiB 1.94 538 61.1 MiB 0.06 0.00 3.10444 -77.4785 -3.10444 3.10444 1.07 0.000182706 0.000147179 0.0140731 0.0114904 40 1570 27 6.95648e+06 188184 706193. 2443.58 2.47 0.0824194 0.0710692 1286 21 878 1348 93231 23745 2.92062 2.92062 -102.431 -2.92062 0 0 926341. 3205.33 0.41 0.05 0.0138947 0.0124608 54 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.22 vpr 62.12 MiB -1 -1 0.19 21396 1 0.01 -1 -1 33200 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63612 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 23.6 MiB 1.43 795 62.1 MiB 0.09 0.00 3.12589 -108.296 -3.12589 3.12589 1.09 0.000275512 0.000222117 0.0226216 0.0184362 40 2278 47 6.95648e+06 361892 706193. 2443.58 2.96 0.146614 0.126433 1786 20 1643 2258 189702 54396 3.66846 3.66846 -140.536 -3.66846 0 0 926341. 3205.33 0.42 0.08 0.021717 0.0194182 81 87 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 13.41 vpr 61.82 MiB -1 -1 0.19 21332 1 0.02 -1 -1 33220 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63308 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 23.3 MiB 4.11 840 61.8 MiB 0.07 0.00 2.45985 -100.48 -2.45985 2.45985 1.07 0.000254899 0.000204519 0.0208394 0.0171386 36 2200 23 6.95648e+06 144757 648988. 2245.63 5.60 0.177544 0.152231 1936 22 1649 2305 250552 47585 3.17612 3.17612 -134.391 -3.17612 0 0 828058. 2865.25 0.37 0.08 0.0189783 0.0166962 61 93 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 11.10 vpr 61.78 MiB -1 -1 0.19 21356 1 0.03 -1 -1 33180 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63264 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 23.2 MiB 1.43 776 61.8 MiB 0.08 0.00 3.29348 -99.6889 -3.29348 3.29348 1.05 0.000249536 0.000199667 0.0177228 0.0145491 38 2581 37 6.95648e+06 318465 678818. 2348.85 5.99 0.115193 0.0983299 2058 21 1322 1937 166866 37735 4.48426 4.48426 -135.664 -4.48426 0 0 902133. 3121.57 0.38 0.07 0.01848 0.0164213 75 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.10 vpr 62.03 MiB -1 -1 0.19 21724 1 0.03 -1 -1 33132 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63516 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 23.5 MiB 2.26 1106 62.0 MiB 0.10 0.00 4.74127 -141.396 -4.74127 4.74127 1.05 0.000286261 0.000233196 0.026571 0.0218778 50 2855 24 6.95648e+06 217135 902133. 3121.57 2.91 0.127153 0.109159 2289 21 1882 2757 219230 46353 5.11335 5.11335 -169.047 -5.11335 0 0 1.08113e+06 3740.92 0.48 0.08 0.0225466 0.020299 95 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 9.35 vpr 61.15 MiB -1 -1 0.17 21032 1 0.00 -1 -1 33100 -1 -1 11 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62616 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 22.7 MiB 3.25 538 61.1 MiB 0.05 0.00 2.26495 -76.7146 -2.26495 2.26495 1.06 0.000162423 0.000129632 0.0118889 0.0097871 36 1667 42 6.95648e+06 159232 648988. 2245.63 2.57 0.0847945 0.0732261 1414 20 893 1132 130047 27569 2.60463 2.60463 -98.4534 -2.60463 0 0 828058. 2865.25 0.37 0.05 0.0120749 0.0107343 52 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 13.33 vpr 61.34 MiB -1 -1 0.18 20888 1 0.01 -1 -1 33068 -1 -1 11 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62816 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 22.9 MiB 2.02 535 61.3 MiB 0.05 0.00 3.12499 -93.2414 -3.12499 3.12499 1.08 0.000214974 0.00017335 0.0144563 0.0119983 38 1921 35 6.95648e+06 159232 678818. 2348.85 7.60 0.14479 0.123767 1406 21 1192 1731 150151 33465 3.14487 3.14487 -114.15 -3.14487 0 0 902133. 3121.57 0.41 0.06 0.0154787 0.013764 54 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 11.16 vpr 61.41 MiB -1 -1 0.18 21064 1 0.02 -1 -1 33152 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62888 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 22.9 MiB 0.63 749 61.4 MiB 0.06 0.00 2.5565 -93.6755 -2.5565 2.5565 1.08 0.000219978 0.000176169 0.0162173 0.0132839 36 2463 50 6.95648e+06 144757 648988. 2245.63 6.59 0.118512 0.102717 2114 47 2239 3640 1012749 413559 3.32042 3.32042 -125.098 -3.32042 0 0 828058. 2865.25 0.37 0.34 0.0340073 0.0299071 59 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 7.45 vpr 61.27 MiB -1 -1 0.17 20876 1 0.01 -1 -1 33188 -1 -1 18 25 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62744 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 22.8 MiB 0.61 403 61.3 MiB 0.04 0.00 2.84753 -63.1804 -2.84753 2.84753 1.10 0.000169185 0.000136823 0.0107724 0.00889695 38 1549 34 6.95648e+06 260562 678818. 2348.85 3.17 0.0787404 0.0678802 1090 23 854 1325 97904 24698 3.00692 3.00692 -83.1265 -3.00692 0 0 902133. 3121.57 0.39 0.05 0.0126107 0.0111301 53 19 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 8.85 vpr 61.70 MiB -1 -1 0.18 21352 1 0.02 -1 -1 33256 -1 -1 12 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63176 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 23.1 MiB 2.31 821 61.7 MiB 0.07 0.00 3.30725 -109.13 -3.30725 3.30725 1.08 0.00027838 0.000226048 0.0204846 0.0169324 48 2450 24 6.95648e+06 173708 865456. 2994.66 2.69 0.117298 0.101207 2162 20 1545 2546 225344 48476 3.80002 3.80002 -132.952 -3.80002 0 0 1.05005e+06 3633.38 0.46 0.08 0.0186579 0.0165479 73 69 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 7.59 vpr 61.81 MiB -1 -1 0.20 21388 1 0.02 -1 -1 33292 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63292 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 23.3 MiB 1.38 760 61.8 MiB 0.06 0.00 3.31368 -111.492 -3.31368 3.31368 1.04 0.000276913 0.000223178 0.016826 0.0138692 48 2182 23 6.95648e+06 246087 865456. 2994.66 2.41 0.109603 0.0936979 1816 21 1620 2096 166523 40153 4.07742 4.07742 -142.282 -4.07742 0 0 1.05005e+06 3633.38 0.46 0.07 0.0205509 0.0182509 80 86 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.61 vpr 61.81 MiB -1 -1 0.19 21340 1 0.01 -1 -1 33196 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63292 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 23.2 MiB 2.23 903 61.8 MiB 0.09 0.00 4.0552 -120.342 -4.0552 4.0552 1.08 0.000250193 0.000203024 0.0244458 0.0201421 48 3037 34 6.99608e+06 220735 865456. 2994.66 4.46 0.136055 0.118454 2222 23 1699 2409 207808 52334 5.01021 5.01021 -154.044 -5.01021 0 0 1.05005e+06 3633.38 0.47 0.09 0.0226893 0.0204232 88 47 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.87 vpr 61.66 MiB -1 -1 0.19 21212 1 0.01 -1 -1 33188 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63136 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 23.2 MiB 1.94 986 61.7 MiB 0.09 0.00 4.2273 -129.026 -4.2273 4.2273 1.05 0.000244349 0.000194636 0.0222524 0.0181988 46 2930 24 6.99608e+06 250167 828058. 2865.25 3.07 0.121257 0.104941 2304 21 2146 3171 230958 48607 4.66735 4.66735 -156.314 -4.66735 0 0 1.01997e+06 3529.29 0.46 0.08 0.020498 0.0183497 99 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 7.52 vpr 61.50 MiB -1 -1 0.17 21096 1 0.02 -1 -1 33220 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62980 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 22.9 MiB 1.06 879 61.5 MiB 0.09 0.00 2.87639 -96.6722 -2.87639 2.87639 1.05 0.000216497 0.000174359 0.0191988 0.0157055 40 2358 24 6.99608e+06 206020 706193. 2443.58 2.79 0.0966526 0.0827157 2127 22 1555 2121 214449 44286 3.39557 3.39557 -123.361 -3.39557 0 0 926341. 3205.33 0.40 0.07 0.0165155 0.0146348 76 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 8.00 vpr 61.63 MiB -1 -1 0.17 21376 1 0.01 -1 -1 33220 -1 -1 16 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63108 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 23.0 MiB 1.78 830 61.6 MiB 0.07 0.00 3.29948 -96.8851 -3.29948 3.29948 1.05 0.000227801 0.000187559 0.0177218 0.0146969 40 2142 31 6.99608e+06 235451 706193. 2443.58 2.57 0.110025 0.0950969 1857 24 1588 2547 176204 40022 3.96112 3.96112 -125.607 -3.96112 0 0 926341. 3205.33 0.40 0.07 0.0182673 0.0161799 78 25 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 10.73 vpr 61.57 MiB -1 -1 0.18 21088 1 0.02 -1 -1 33148 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63048 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 23.1 MiB 3.51 849 61.6 MiB 0.08 0.00 3.66544 -113.147 -3.66544 3.66544 1.09 0.000255814 0.000208434 0.0212261 0.017401 48 2786 31 6.99608e+06 206020 865456. 2994.66 3.30 0.121377 0.105231 2283 21 1799 2971 269662 58766 4.33965 4.33965 -148.999 -4.33965 0 0 1.05005e+06 3633.38 0.47 0.09 0.0193423 0.0173147 81 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 15.11 vpr 61.91 MiB -1 -1 0.19 21316 1 0.01 -1 -1 33112 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63400 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 23.5 MiB 3.91 1093 61.9 MiB 0.08 0.00 2.82066 -102.325 -2.82066 2.82066 1.05 0.000282797 0.000231554 0.0197133 0.016245 38 3894 50 6.99608e+06 250167 678818. 2348.85 7.40 0.13897 0.120305 2690 23 1959 3088 253574 53222 3.73106 3.73106 -134.666 -3.73106 0 0 902133. 3121.57 0.40 0.09 0.0228767 0.0205407 97 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 8.61 vpr 61.30 MiB -1 -1 0.18 21072 1 0.01 -1 -1 33292 -1 -1 15 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62772 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 22.9 MiB 2.14 529 61.3 MiB 0.06 0.00 3.25142 -90.9023 -3.25142 3.25142 1.05 0.000190157 0.000153027 0.0139476 0.0113835 38 1761 33 6.99608e+06 220735 678818. 2348.85 2.81 0.083714 0.0713419 1273 21 1098 1666 129089 28804 3.30256 3.30256 -108.982 -3.30256 0 0 902133. 3121.57 0.41 0.06 0.0150791 0.0134247 66 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 6.86 vpr 61.26 MiB -1 -1 0.18 20588 1 0.02 -1 -1 33196 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62732 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 22.8 MiB 0.48 645 61.3 MiB 0.07 0.00 2.36085 -72.1125 -2.36085 2.36085 1.07 0.000210933 0.000168725 0.0161184 0.0132445 44 2012 36 6.99608e+06 367892 787024. 2723.27 2.62 0.0953617 0.081831 1445 27 1247 2032 127157 30849 2.63902 2.63902 -88.6507 -2.63902 0 0 997811. 3452.63 0.44 0.06 0.0171566 0.01509 69 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 7.80 vpr 61.60 MiB -1 -1 0.18 21296 1 0.02 -1 -1 33184 -1 -1 14 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63080 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 23.1 MiB 1.27 969 61.6 MiB 0.07 0.00 2.8348 -100.345 -2.8348 2.8348 1.04 0.000222014 0.000178901 0.0167046 0.0136603 40 2811 26 6.99608e+06 206020 706193. 2443.58 2.84 0.0951796 0.0811203 2437 23 1921 2583 307050 59613 3.22342 3.22342 -127.64 -3.22342 0 0 926341. 3205.33 0.39 0.09 0.0176109 0.0155891 87 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 6.90 vpr 61.30 MiB -1 -1 0.16 21056 1 0.02 -1 -1 33040 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62772 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 22.6 MiB 1.20 677 61.3 MiB 0.07 0.00 3.30642 -110.651 -3.30642 3.30642 1.07 0.000229209 0.000186427 0.0166735 0.0138271 42 2166 32 6.99608e+06 191304 744469. 2576.02 1.97 0.0937797 0.0800943 1709 17 1207 1535 113384 25822 3.48286 3.48286 -129.346 -3.48286 0 0 949917. 3286.91 0.43 0.05 0.0149858 0.0135149 75 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 6.90 vpr 61.41 MiB -1 -1 0.18 21176 1 0.01 -1 -1 33200 -1 -1 14 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62880 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 23.0 MiB 1.07 773 61.4 MiB 0.07 0.00 3.18013 -102.597 -3.18013 3.18013 1.08 0.00021799 0.000175267 0.0180881 0.014795 44 2155 23 6.99608e+06 206020 787024. 2723.27 2.03 0.0843399 0.0714119 1638 20 1367 1879 142083 31195 3.5524 3.5524 -122.233 -3.5524 0 0 997811. 3452.63 0.45 0.06 0.0163047 0.0145854 83 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 10.13 vpr 61.36 MiB -1 -1 0.17 20972 1 0.01 -1 -1 33060 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62828 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 22.9 MiB 0.93 808 61.4 MiB 0.05 0.00 2.6205 -94.957 -2.6205 2.6205 1.05 0.000204263 0.000162816 0.0117031 0.00963506 36 2410 37 6.99608e+06 161872 648988. 2245.63 5.62 0.10039 0.0870131 1951 22 1314 1690 162796 33442 3.23722 3.23722 -118.955 -3.23722 0 0 828058. 2865.25 0.36 0.06 0.014887 0.0131563 66 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 10.15 vpr 61.71 MiB -1 -1 0.18 21360 1 0.02 -1 -1 33096 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63196 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 23.2 MiB 1.11 868 61.7 MiB 0.06 0.00 3.18112 -108.16 -3.18112 3.18112 1.08 0.00026748 0.000219403 0.0148034 0.0123717 38 3091 38 6.99608e+06 220735 678818. 2348.85 5.28 0.125294 0.109007 2420 22 1921 2817 274261 57859 3.47486 3.47486 -132.64 -3.47486 0 0 902133. 3121.57 0.39 0.09 0.0204927 0.0183729 87 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 8.93 vpr 61.76 MiB -1 -1 0.17 21168 1 0.02 -1 -1 33188 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63240 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 23.3 MiB 1.81 1004 61.8 MiB 0.09 0.00 3.86117 -117.764 -3.86117 3.86117 0.98 0.0002337 0.000190824 0.0226676 0.0187233 46 3077 26 6.99608e+06 250167 828058. 2865.25 3.45 0.118898 0.102616 2171 23 1934 2675 197203 41788 4.41751 4.41751 -146.942 -4.41751 0 0 1.01997e+06 3529.29 0.46 0.08 0.0205747 0.0182886 97 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 10.42 vpr 61.25 MiB -1 -1 0.17 21052 1 0.01 -1 -1 33168 -1 -1 13 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62724 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 22.6 MiB 3.96 635 61.3 MiB 0.05 0.00 2.5552 -74.6828 -2.5552 2.5552 1.04 0.000177464 0.000143427 0.0125123 0.010288 38 1790 23 6.99608e+06 191304 678818. 2348.85 2.89 0.0765423 0.0653724 1477 19 1044 1483 113272 25066 2.85252 2.85252 -95.4321 -2.85252 0 0 902133. 3121.57 0.39 0.05 0.0124977 0.0111074 64 21 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 11.04 vpr 61.63 MiB -1 -1 0.19 21236 1 0.02 -1 -1 33116 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63108 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 23.2 MiB 1.81 959 61.6 MiB 0.10 0.00 3.11209 -103.003 -3.11209 3.11209 1.08 0.000255808 0.000206657 0.0244063 0.0202189 40 3072 32 6.99608e+06 235451 706193. 2443.58 5.35 0.131958 0.113895 2616 25 2384 3701 356740 78632 4.12461 4.12461 -148.885 -4.12461 0 0 926341. 3205.33 0.41 0.12 0.0256504 0.0229829 96 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 15.72 vpr 61.52 MiB -1 -1 0.18 21392 1 0.02 -1 -1 33072 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62996 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 23.0 MiB 1.04 962 61.5 MiB 0.07 0.00 3.40815 -112.689 -3.40815 3.40815 1.08 0.000255515 0.000207628 0.0167731 0.0139363 38 2627 24 6.99608e+06 220735 678818. 2348.85 10.96 0.172819 0.148998 2156 23 1687 2240 184431 37981 3.47486 3.47486 -130.855 -3.47486 0 0 902133. 3121.57 0.39 0.07 0.019007 0.0168556 84 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 8.80 vpr 61.37 MiB -1 -1 0.17 21132 1 0.01 -1 -1 33172 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 22.8 MiB 1.05 824 61.4 MiB 0.08 0.00 2.61759 -97.2738 -2.61759 2.61759 1.05 0.000230896 0.00018642 0.0177685 0.0145648 48 2533 47 6.99608e+06 220735 865456. 2994.66 3.93 0.121062 0.1046 1936 20 1660 2142 205457 46700 3.11457 3.11457 -122.121 -3.11457 0 0 1.05005e+06 3633.38 0.47 0.08 0.0213234 0.0194249 89 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 8.05 vpr 60.79 MiB -1 -1 0.16 21064 1 0.01 -1 -1 33060 -1 -1 10 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62248 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 22.3 MiB 2.47 587 60.8 MiB 0.06 0.00 1.95956 -73.2047 -1.95956 1.95956 1.04 0.000173979 0.000140669 0.013807 0.0112134 40 1273 48 6.99608e+06 147157 706193. 2443.58 2.02 0.076809 0.065057 1169 15 666 720 64292 15181 2.13453 2.13453 -88.3832 -2.13453 0 0 926341. 3205.33 0.40 0.04 0.00959427 0.00858952 52 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 9.96 vpr 60.95 MiB -1 -1 0.18 21300 1 0.01 -1 -1 33248 -1 -1 13 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62408 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 22.4 MiB 3.01 885 60.9 MiB 0.05 0.00 3.02472 -101.515 -3.02472 3.02472 1.08 0.000218241 0.000176982 0.0127522 0.0106572 38 2175 49 6.99608e+06 191304 678818. 2348.85 3.27 0.109977 0.095601 1880 23 1602 2244 205958 42051 3.49836 3.49836 -130.063 -3.49836 0 0 902133. 3121.57 0.39 0.07 0.0161756 0.0143451 72 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 9.04 vpr 61.61 MiB -1 -1 0.19 21132 1 0.01 -1 -1 33216 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63084 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 23.1 MiB 1.86 823 61.6 MiB 0.07 0.00 3.25624 -107.255 -3.25624 3.25624 1.04 0.000296209 0.000246192 0.0172564 0.0141256 44 2633 48 6.99608e+06 294314 787024. 2723.27 3.38 0.132267 0.114834 1898 19 1658 2421 176033 41161 4.0828 4.0828 -139.557 -4.0828 0 0 997811. 3452.63 0.46 0.07 0.01866 0.0167903 88 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 13.03 vpr 61.61 MiB -1 -1 0.19 21344 1 0.02 -1 -1 33192 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63084 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 23.1 MiB 3.13 1335 61.6 MiB 0.08 0.00 3.72134 -119.261 -3.72134 3.72134 1.08 0.000276172 0.000226501 0.0207561 0.0171986 38 3438 34 6.99608e+06 235451 678818. 2348.85 6.05 0.131926 0.114492 2876 22 2257 3257 302975 58515 3.93981 3.93981 -141.681 -3.93981 0 0 902133. 3121.57 0.41 0.10 0.0241036 0.0215934 100 59 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 8.34 vpr 60.66 MiB -1 -1 0.17 21132 1 0.01 -1 -1 33168 -1 -1 13 26 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62116 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 22.0 MiB 2.75 618 60.7 MiB 0.04 0.00 2.2286 -67.8743 -2.2286 2.2286 1.06 0.000144905 0.000115664 0.0100488 0.00823928 36 1404 22 6.99608e+06 191304 648988. 2245.63 2.01 0.0603473 0.0515349 1229 22 715 802 75865 16116 2.54881 2.54881 -83.255 -2.54881 0 0 828058. 2865.25 0.38 0.04 0.0106077 0.00938928 53 21 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 8.88 vpr 61.31 MiB -1 -1 0.17 20648 1 0.02 -1 -1 33136 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62780 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 22.8 MiB 1.27 730 61.3 MiB 0.05 0.00 3.7303 -94.4398 -3.7303 3.7303 1.03 0.000214513 0.000173786 0.0138687 0.0115168 40 2473 35 6.99608e+06 220735 706193. 2443.58 4.03 0.110254 0.0959571 2059 22 1465 2452 255380 59569 3.86291 3.86291 -130.172 -3.86291 0 0 926341. 3205.33 0.39 0.09 0.0178696 0.0159264 66 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 5.55 vpr 60.92 MiB -1 -1 0.16 20628 1 0.01 -1 -1 32996 -1 -1 8 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62380 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 22.4 MiB 0.27 441 60.9 MiB 0.05 0.00 1.65401 -54.14 -1.65401 1.65401 1.08 0.000156482 0.000127976 0.0106668 0.0087335 38 1018 19 6.99608e+06 117725 678818. 2348.85 1.67 0.058828 0.0506291 858 18 519 645 43182 11711 2.28172 2.28172 -75.5085 -2.28172 0 0 902133. 3121.57 0.40 0.03 0.00915026 0.00814445 42 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.38 vpr 61.47 MiB -1 -1 0.17 20840 1 0.01 -1 -1 33204 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62944 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 22.9 MiB 1.64 919 61.5 MiB 0.07 0.00 3.68643 -104.805 -3.68643 3.68643 1.04 0.000220037 0.000176388 0.0174069 0.0143188 40 2211 23 6.99608e+06 206020 706193. 2443.58 2.07 0.0909936 0.0777452 1975 19 1238 1771 146524 30889 4.05042 4.05042 -128.156 -4.05042 0 0 926341. 3205.33 0.40 0.06 0.0154199 0.0137516 73 21 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.53 vpr 61.43 MiB -1 -1 0.18 20648 1 0.01 -1 -1 33148 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62904 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 22.9 MiB 0.68 725 61.4 MiB 0.08 0.00 2.34075 -79.894 -2.34075 2.34075 1.09 0.000216246 0.000173126 0.0161689 0.0132204 40 2030 26 6.99608e+06 309029 706193. 2443.58 2.13 0.0969 0.0833808 1774 19 1293 2147 158636 35635 2.83852 2.83852 -104.851 -2.83852 0 0 926341. 3205.33 0.41 0.06 0.0162448 0.0145384 74 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 11.46 vpr 61.66 MiB -1 -1 0.17 21356 1 0.01 -1 -1 33072 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63144 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 23.1 MiB 2.11 890 61.7 MiB 0.09 0.00 3.45778 -104.423 -3.45778 3.45778 1.08 0.000240151 0.000195788 0.0221821 0.0183071 40 3294 43 6.99608e+06 220735 706193. 2443.58 5.51 0.126345 0.108834 2504 23 1981 3042 319221 68960 4.32996 4.32996 -144.221 -4.32996 0 0 926341. 3205.33 0.42 0.10 0.0200118 0.0178477 87 47 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 13.56 vpr 60.91 MiB -1 -1 0.16 20976 1 0.02 -1 -1 33136 -1 -1 12 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62372 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 22.4 MiB 3.18 884 60.9 MiB 0.07 0.00 2.63455 -95.1214 -2.63455 2.63455 1.08 0.00021373 0.000173041 0.0182318 0.0150616 36 2597 49 6.99608e+06 176588 648988. 2245.63 6.73 0.158144 0.13594 2047 21 1228 1767 165495 32810 2.99182 2.99182 -126.219 -2.99182 0 0 828058. 2865.25 0.37 0.06 0.0156694 0.0139179 69 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 9.50 vpr 61.33 MiB -1 -1 0.18 20916 1 0.02 -1 -1 33220 -1 -1 14 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62804 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 22.9 MiB 2.04 660 61.3 MiB 0.06 0.00 3.04627 -88.6711 -3.04627 3.04627 1.08 0.000214776 0.000169072 0.0146223 0.0120911 46 2131 49 6.99608e+06 206020 828058. 2865.25 3.66 0.110526 0.0964708 1548 21 1220 1869 153154 34351 3.52361 3.52361 -114.345 -3.52361 0 0 1.01997e+06 3529.29 0.46 0.06 0.0153599 0.0137355 66 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.85 vpr 61.30 MiB -1 -1 0.17 20844 1 0.02 -1 -1 33100 -1 -1 18 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62776 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 22.9 MiB 1.07 633 61.3 MiB 0.06 0.00 2.61559 -82.0489 -2.61559 2.61559 1.04 0.000189684 0.000151666 0.0139396 0.0114257 40 2058 34 6.99608e+06 264882 706193. 2443.58 3.13 0.0905997 0.0777553 1616 20 1157 1784 170307 41406 3.14692 3.14692 -105.758 -3.14692 0 0 926341. 3205.33 0.42 0.06 0.0141971 0.0126888 69 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 6.04 vpr 61.20 MiB -1 -1 0.17 20652 1 0.01 -1 -1 33164 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62672 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 22.6 MiB 0.52 599 61.2 MiB 0.06 0.00 2.79923 -88.9502 -2.79923 2.79923 1.03 0.000192047 0.000153665 0.0156203 0.0128039 40 1764 34 6.99608e+06 147157 706193. 2443.58 1.96 0.0818174 0.0694041 1499 20 1178 1732 129576 30305 3.16692 3.16692 -116.237 -3.16692 0 0 926341. 3205.33 0.40 0.05 0.0135339 0.0120216 58 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.37 vpr 61.27 MiB -1 -1 0.18 20864 1 0.01 -1 -1 33116 -1 -1 13 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62740 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 22.8 MiB 1.21 959 61.3 MiB 0.07 0.00 2.62898 -91.3512 -2.62898 2.62898 1.06 0.000209572 0.000169582 0.0184625 0.0151876 36 2740 43 6.99608e+06 191304 648988. 2245.63 6.55 0.110661 0.0955804 2170 23 1310 1805 187566 36544 3.26422 3.26422 -120.57 -3.26422 0 0 828058. 2865.25 0.37 0.07 0.0157442 0.01396 69 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 11.55 vpr 61.00 MiB -1 -1 0.19 21252 1 0.01 -1 -1 33072 -1 -1 15 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62468 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 22.4 MiB 3.48 788 61.0 MiB 0.06 0.00 2.51315 -86.7678 -2.51315 2.51315 1.08 0.000209793 0.000170287 0.0153735 0.0128155 36 2456 42 6.99608e+06 220735 648988. 2245.63 4.40 0.114664 0.0999648 1897 19 1320 1699 132728 28442 3.09212 3.09212 -112.778 -3.09212 0 0 828058. 2865.25 0.38 0.06 0.0150405 0.0134455 77 48 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.81 vpr 61.65 MiB -1 -1 0.19 21176 1 0.01 -1 -1 33116 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63132 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 23.0 MiB 1.65 957 61.7 MiB 0.08 0.00 3.66263 -103.156 -3.66263 3.66263 1.06 0.000271287 0.000221719 0.0229822 0.0191281 48 2918 33 6.99608e+06 235451 865456. 2994.66 3.29 0.135995 0.118413 2151 18 1411 2261 168822 39925 3.64157 3.64157 -126.296 -3.64157 0 0 1.05005e+06 3633.38 0.47 0.07 0.0193956 0.0174943 92 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 27.76 vpr 61.96 MiB -1 -1 0.19 21288 1 0.02 -1 -1 33204 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63444 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 23.4 MiB 2.14 1131 62.0 MiB 0.09 0.00 3.42916 -122.023 -3.42916 3.42916 1.06 0.000293351 0.000241427 0.0222004 0.0184389 40 3786 44 6.99608e+06 279598 706193. 2443.58 21.74 0.223162 0.193561 3083 25 2828 3958 446895 89905 4.2895 4.2895 -162.688 -4.2895 0 0 926341. 3205.33 0.41 0.14 0.0293833 0.0265481 106 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 9.16 vpr 61.32 MiB -1 -1 0.19 21400 1 0.01 -1 -1 33184 -1 -1 11 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 22.8 MiB 1.82 839 61.3 MiB 0.05 0.00 2.87547 -97.6355 -2.87547 2.87547 1.07 0.000211796 0.000170574 0.0108813 0.00907179 36 2384 36 6.99608e+06 161872 648988. 2245.63 3.71 0.0961069 0.0833314 1998 20 1414 2047 178803 36074 3.41811 3.41811 -124.854 -3.41811 0 0 828058. 2865.25 0.37 0.07 0.0149221 0.0133143 66 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 8.81 vpr 61.38 MiB -1 -1 0.20 21196 1 0.01 -1 -1 33092 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 22.9 MiB 2.17 1119 61.4 MiB 0.10 0.00 2.98339 -105.62 -2.98339 2.98339 1.07 0.000271711 0.000222349 0.0230276 0.0190535 44 2869 43 6.99608e+06 250167 787024. 2723.27 2.80 0.135956 0.117427 2278 18 1452 2046 144582 31018 3.64546 3.64546 -130.728 -3.64546 0 0 997811. 3452.63 0.44 0.06 0.0179689 0.0160956 99 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 21.31 vpr 61.80 MiB -1 -1 0.18 21356 1 0.01 -1 -1 33232 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63288 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 23.3 MiB 2.09 946 61.8 MiB 0.10 0.00 4.24736 -131.27 -4.24736 4.24736 1.06 0.000243648 0.000197937 0.0228471 0.0188537 48 3006 31 6.99608e+06 250167 865456. 2994.66 15.37 0.24245 0.210275 2231 23 2316 3279 252915 57375 5.0806 5.0806 -165.474 -5.0806 0 0 1.05005e+06 3633.38 0.47 0.09 0.0241583 0.0215571 104 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 13.25 vpr 61.96 MiB -1 -1 0.20 21236 1 0.02 -1 -1 33224 -1 -1 18 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63448 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 23.4 MiB 4.43 1069 62.0 MiB 0.06 0.00 4.18798 -134.514 -4.18798 4.18798 1.06 0.00027536 0.000224695 0.0135859 0.0114538 38 3481 39 6.99608e+06 264882 678818. 2348.85 5.04 0.135762 0.118868 2780 21 2171 3027 261461 53565 4.80274 4.80274 -173.743 -4.80274 0 0 902133. 3121.57 0.39 0.09 0.0225952 0.0203413 103 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.73 vpr 61.78 MiB -1 -1 0.18 21400 1 0.02 -1 -1 33144 -1 -1 16 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63260 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 23.2 MiB 2.87 928 61.8 MiB 0.09 0.00 3.25142 -106.512 -3.25142 3.25142 1.07 0.000269578 0.000220745 0.0219937 0.0182062 46 2807 27 6.99608e+06 235451 828058. 2865.25 3.00 0.127624 0.111164 2026 20 1516 2030 151313 33173 3.30256 3.30256 -121.704 -3.30256 0 0 1.01997e+06 3529.29 0.45 0.07 0.0196914 0.0177083 93 51 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 21.15 vpr 60.99 MiB -1 -1 0.18 21192 1 0.01 -1 -1 33144 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62452 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 22.4 MiB 1.30 865 61.0 MiB 0.07 0.00 3.47308 -98.6802 -3.47308 3.47308 1.06 0.000212613 0.000169658 0.016709 0.0137006 38 2958 43 6.99608e+06 206020 678818. 2348.85 16.16 0.178883 0.15366 2211 19 1426 1994 195936 40253 3.99742 3.99742 -126.288 -3.99742 0 0 902133. 3121.57 0.38 0.07 0.0156874 0.0140081 72 24 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.95 vpr 61.33 MiB -1 -1 0.20 21652 1 0.02 -1 -1 33300 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62800 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 23.5 MiB 2.02 1399 61.3 MiB 0.14 0.00 4.103 -140.066 -4.103 4.103 1.07 0.000311971 0.000244896 0.0318722 0.0260739 48 3820 21 6.99608e+06 309029 865456. 2994.66 3.88 0.155413 0.134233 3066 21 2635 3920 354915 71134 4.63814 4.63814 -170.229 -4.63814 0 0 1.05005e+06 3633.38 0.48 0.12 0.0292936 0.0264523 129 84 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 10.17 vpr 61.37 MiB -1 -1 0.18 20824 1 0.01 -1 -1 33180 -1 -1 11 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62840 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 23.0 MiB 4.30 692 61.4 MiB 0.06 0.00 2.5612 -84.7716 -2.5612 2.5612 1.08 0.000203146 0.000164011 0.0149144 0.0123249 38 2017 27 6.99608e+06 161872 678818. 2348.85 2.18 0.0884637 0.0764875 1637 24 1297 1747 146393 31526 3.49282 3.49282 -113.235 -3.49282 0 0 902133. 3121.57 0.40 0.06 0.0157992 0.0139853 65 24 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 7.37 vpr 61.47 MiB -1 -1 0.18 21200 1 0.01 -1 -1 33224 -1 -1 15 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 22.9 MiB 0.87 1009 61.5 MiB 0.09 0.00 3.70767 -119.693 -3.70767 3.70767 1.06 0.000235805 0.000188949 0.0209537 0.0173033 42 3116 36 6.99608e+06 220735 744469. 2576.02 2.75 0.133531 0.11597 2400 24 1778 2603 223006 45502 4.25351 4.25351 -146.345 -4.25351 0 0 949917. 3286.91 0.42 0.08 0.0216885 0.0194005 85 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 20.54 vpr 61.80 MiB -1 -1 0.19 21392 1 0.02 -1 -1 33048 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63284 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 23.2 MiB 1.87 1024 61.8 MiB 0.09 0.00 3.12594 -104.16 -3.12594 3.12594 1.04 0.000248969 0.000200873 0.0220383 0.0180501 44 3075 34 6.99608e+06 220735 787024. 2723.27 14.83 0.177551 0.151358 2321 25 1559 2421 277637 73196 3.54656 3.54656 -130.804 -3.54656 0 0 997811. 3452.63 0.43 0.10 0.0206972 0.018315 91 50 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 11.71 vpr 61.31 MiB -1 -1 0.17 20896 1 0.01 -1 -1 33200 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62784 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 22.7 MiB 1.21 852 61.3 MiB 0.07 0.00 3.48713 -99.8245 -3.48713 3.48713 1.09 0.000217685 0.000175002 0.0155197 0.0127822 36 2782 29 6.99608e+06 235451 648988. 2245.63 6.70 0.109187 0.0950121 2200 24 1609 2777 312554 60911 4.11977 4.11977 -135.738 -4.11977 0 0 828058. 2865.25 0.38 0.10 0.020128 0.018054 68 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 20.30 vpr 61.84 MiB -1 -1 0.20 21236 1 0.02 -1 -1 33172 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63320 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 23.2 MiB 1.79 926 61.8 MiB 0.09 0.00 3.52245 -109.331 -3.52245 3.52245 1.09 0.00026109 0.000210755 0.0230851 0.0190548 38 3141 42 6.99608e+06 220735 678818. 2348.85 14.67 0.203137 0.175283 2225 21 1602 2181 178310 38594 3.47186 3.47186 -126.168 -3.47186 0 0 902133. 3121.57 0.39 0.07 0.0186233 0.0166154 90 52 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 10.70 vpr 61.83 MiB -1 -1 0.17 21164 1 0.01 -1 -1 33092 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63316 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 23.2 MiB 2.26 1154 61.8 MiB 0.09 0.00 3.14789 -108.444 -3.14789 3.14789 1.12 0.00024587 0.000197022 0.0250607 0.0208188 38 3195 50 6.99608e+06 220735 678818. 2348.85 4.54 0.147984 0.128494 2495 21 1661 2470 198863 41218 3.68466 3.68466 -137.701 -3.68466 0 0 902133. 3121.57 0.41 0.08 0.0218538 0.0196388 92 52 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 26.91 vpr 61.92 MiB -1 -1 0.19 21200 1 0.03 -1 -1 33148 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63404 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 23.4 MiB 3.34 1044 61.9 MiB 0.11 0.00 3.03377 -104.931 -3.03377 3.03377 1.11 0.000285098 0.000231991 0.0268268 0.0221111 40 3426 25 6.99608e+06 235451 706193. 2443.58 19.65 0.231879 0.200719 2867 21 2162 2790 266670 55846 3.74541 3.74541 -141.732 -3.74541 0 0 926341. 3205.33 0.41 0.09 0.0207563 0.018564 101 59 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 8.21 vpr 61.58 MiB -1 -1 0.17 21064 1 0.02 -1 -1 33200 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63056 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 22.9 MiB 1.31 805 61.6 MiB 0.07 0.00 3.71143 -100.028 -3.71143 3.71143 1.10 0.000240746 0.000196398 0.0172945 0.0143149 46 2150 32 6.99608e+06 206020 828058. 2865.25 3.05 0.114902 0.100036 1539 22 1113 1710 93487 25345 3.78257 3.78257 -119.055 -3.78257 0 0 1.01997e+06 3529.29 0.47 0.06 0.0188444 0.0168624 74 21 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 9.67 vpr 61.47 MiB -1 -1 0.18 21316 1 0.01 -1 -1 33052 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 23.0 MiB 2.70 747 61.5 MiB 0.05 0.00 3.33678 -101.288 -3.33678 3.33678 1.11 0.000244396 0.000199127 0.0144113 0.0120829 46 2379 38 6.99608e+06 191304 828058. 2865.25 3.08 0.119531 0.104202 1777 21 1567 2151 150348 36207 3.93506 3.93506 -128.889 -3.93506 0 0 1.01997e+06 3529.29 0.47 0.07 0.0200103 0.0180188 81 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 10.91 vpr 61.77 MiB -1 -1 0.19 21440 1 0.02 -1 -1 33188 -1 -1 16 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63252 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 23.4 MiB 1.25 1010 61.8 MiB 0.08 0.00 3.46751 -109.524 -3.46751 3.46751 1.04 0.000257021 0.000207587 0.0208511 0.0170935 46 3476 33 6.99608e+06 235451 828058. 2865.25 5.82 0.133396 0.115474 2312 21 2010 3064 210347 48489 4.12272 4.12272 -137.91 -4.12272 0 0 1.01997e+06 3529.29 0.47 0.08 0.0217419 0.0194632 99 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 9.76 vpr 61.75 MiB -1 -1 0.20 21296 1 0.01 -1 -1 33156 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63236 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 23.1 MiB 1.37 1085 61.8 MiB 0.09 0.00 3.23862 -106.312 -3.23862 3.23862 1.02 0.00026746 0.000218708 0.0238704 0.0196261 46 3533 27 6.99608e+06 235451 828058. 2865.25 4.59 0.142087 0.123155 2469 22 2111 3229 231497 51041 3.88312 3.88312 -136.287 -3.88312 0 0 1.01997e+06 3529.29 0.46 0.09 0.0237086 0.0212446 104 74 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 9.82 vpr 61.17 MiB -1 -1 0.16 20876 1 0.02 -1 -1 33132 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62636 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 22.6 MiB 0.82 658 61.2 MiB 0.06 0.00 2.71508 -82.5072 -2.71508 2.71508 1.04 0.000186768 0.000148568 0.0144499 0.0117999 36 2465 45 6.99608e+06 147157 648988. 2245.63 5.39 0.0931547 0.0797184 1789 35 1587 2263 332177 106165 3.39597 3.39597 -105.175 -3.39597 0 0 828058. 2865.25 0.37 0.12 0.0200666 0.017535 60 20 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 7.78 vpr 61.73 MiB -1 -1 0.18 21148 1 0.01 -1 -1 33232 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63208 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 23.2 MiB 1.13 1040 61.7 MiB 0.09 0.00 3.31348 -123.38 -3.31348 3.31348 1.08 0.000244345 0.000199346 0.0226662 0.0188215 44 2934 24 6.99608e+06 220735 787024. 2723.27 2.69 0.114191 0.0988375 2363 22 2041 2705 236587 47094 4.09285 4.09285 -156.689 -4.09285 0 0 997811. 3452.63 0.49 0.09 0.0191042 0.0168609 93 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 9.56 vpr 61.68 MiB -1 -1 0.19 21148 1 0.02 -1 -1 33180 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63156 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 23.1 MiB 1.46 1049 61.7 MiB 0.10 0.00 3.99514 -125.728 -3.99514 3.99514 1.07 0.000277794 0.000225244 0.0234251 0.0194441 46 3348 50 6.99608e+06 235451 828058. 2865.25 4.14 0.158885 0.13861 2512 23 2315 3512 277095 56028 4.44886 4.44886 -156.382 -4.44886 0 0 1.01997e+06 3529.29 0.46 0.11 0.026761 0.0240222 98 28 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 13.16 vpr 61.77 MiB -1 -1 0.17 21036 1 0.02 -1 -1 33180 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63248 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 23.2 MiB 0.87 932 61.8 MiB 0.09 0.00 3.52245 -116.624 -3.52245 3.52245 1.06 0.000237251 0.000191169 0.020548 0.0168551 36 3392 50 6.99608e+06 220735 648988. 2245.63 8.56 0.134101 0.115719 2270 19 1663 2275 207009 42265 3.73446 3.73446 -141.258 -3.73446 0 0 828058. 2865.25 0.38 0.08 0.0186597 0.0168033 85 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 8.55 vpr 60.95 MiB -1 -1 0.17 20772 1 0.01 -1 -1 33172 -1 -1 20 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62416 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 22.4 MiB 1.76 619 61.0 MiB 0.07 0.00 3.02694 -94.6361 -3.02694 3.02694 1.09 0.000212947 0.000175492 0.0162653 0.0134077 46 1983 26 6.99608e+06 294314 828058. 2865.25 3.02 0.0924516 0.0795897 1522 21 1153 1783 116950 29880 3.48502 3.48502 -114.115 -3.48502 0 0 1.01997e+06 3529.29 0.44 0.05 0.0149846 0.0133364 72 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.94 vpr 62.14 MiB -1 -1 0.20 21468 1 0.03 -1 -1 33264 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63628 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 23.7 MiB 2.45 1188 62.1 MiB 0.11 0.00 4.93058 -147.516 -4.93058 4.93058 1.05 0.000288726 0.000231564 0.0278176 0.0228304 50 3532 44 6.99608e+06 264882 902133. 3121.57 4.52 0.162401 0.140548 2702 20 2292 3434 256216 57161 5.1686 5.1686 -172.726 -5.1686 0 0 1.08113e+06 3740.92 0.48 0.09 0.0244217 0.0220457 116 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 7.38 vpr 61.33 MiB -1 -1 0.18 21300 1 0.02 -1 -1 33156 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62800 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 22.8 MiB 0.89 1016 61.3 MiB 0.08 0.00 3.97864 -121.916 -3.97864 3.97864 1.07 0.00024915 0.000205313 0.0199794 0.0165106 40 2595 23 6.99608e+06 206020 706193. 2443.58 2.72 0.114942 0.100158 2336 20 1748 2330 223322 45251 4.42925 4.42925 -151.106 -4.42925 0 0 926341. 3205.33 0.40 0.08 0.0198371 0.0179051 83 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.55 vpr 60.98 MiB -1 -1 0.17 20592 1 0.01 -1 -1 32996 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62448 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 22.5 MiB 0.31 532 61.0 MiB 0.06 0.00 2.4029 -74.8213 -2.4029 2.4029 1.04 0.000180033 0.00014425 0.0144977 0.0118395 40 1769 40 6.99608e+06 191304 706193. 2443.58 3.63 0.0924388 0.0794697 1333 18 909 1397 106245 27271 2.80547 2.80547 -98.3753 -2.80547 0 0 926341. 3205.33 0.41 0.05 0.0121255 0.0108394 51 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 9.08 vpr 61.76 MiB -1 -1 0.17 21152 1 0.02 -1 -1 33088 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63240 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 23.2 MiB 1.79 1143 61.8 MiB 0.07 0.00 4.05462 -113.84 -4.05462 4.05462 1.05 0.000234816 0.000195018 0.017034 0.014111 40 2831 23 6.99608e+06 235451 706193. 2443.58 3.56 0.117545 0.102223 2584 20 1764 2990 365822 70979 4.79656 4.79656 -143.996 -4.79656 0 0 926341. 3205.33 0.39 0.11 0.0194489 0.0174815 85 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 7.68 vpr 61.11 MiB -1 -1 0.15 20676 1 0.01 -1 -1 33204 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62576 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 22.5 MiB 1.23 573 61.1 MiB 0.06 0.00 2.4469 -80.9825 -2.4469 2.4469 1.06 0.000201159 0.000163032 0.0130529 0.0107407 36 1963 30 6.99608e+06 206020 648988. 2245.63 2.85 0.0873781 0.0749313 1404 22 1140 1679 123784 27663 3.06197 3.06197 -109.608 -3.06197 0 0 828058. 2865.25 0.37 0.05 0.0143498 0.0127439 57 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 8.21 vpr 61.40 MiB -1 -1 0.17 21072 1 0.02 -1 -1 33140 -1 -1 13 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62876 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 22.9 MiB 0.86 764 61.4 MiB 0.06 0.00 3.03377 -95.6832 -3.03377 3.03377 1.04 0.000205916 0.000165719 0.0136278 0.011198 40 2386 27 6.99608e+06 191304 706193. 2443.58 3.72 0.0859187 0.0735942 1886 21 1415 1875 170667 38104 3.57811 3.57811 -126.06 -3.57811 0 0 926341. 3205.33 0.40 0.07 0.0150882 0.0134 69 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 9.52 vpr 61.73 MiB -1 -1 0.20 21300 1 0.02 -1 -1 33120 -1 -1 18 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63216 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 23.1 MiB 2.46 1130 61.7 MiB 0.09 0.00 3.40046 -106.672 -3.40046 3.40046 1.07 0.000252669 0.000203941 0.0228713 0.0188835 40 2984 47 6.99608e+06 264882 706193. 2443.58 3.22 0.126941 0.109 2726 23 2005 2951 291835 58107 4.2192 4.2192 -141.476 -4.2192 0 0 926341. 3205.33 0.42 0.09 0.020252 0.0180432 97 56 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 8.84 vpr 61.32 MiB -1 -1 0.18 21152 1 0.02 -1 -1 33200 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 22.7 MiB 2.06 1046 61.3 MiB 0.07 0.00 3.50518 -118.82 -3.50518 3.50518 1.06 0.000252459 0.000202336 0.0189244 0.0155703 38 2972 31 6.99608e+06 220735 678818. 2348.85 3.05 0.123705 0.107092 2508 19 1932 2655 208145 42802 4.4685 4.4685 -156.571 -4.4685 0 0 902133. 3121.57 0.39 0.08 0.0198586 0.0179042 93 51 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 28.03 vpr 61.80 MiB -1 -1 0.19 21096 1 0.01 -1 -1 33124 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63288 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 23.2 MiB 3.03 1005 61.8 MiB 0.08 0.00 3.67287 -117.728 -3.67287 3.67287 1.08 0.000262443 0.000214568 0.0202633 0.0169223 40 3080 32 6.99608e+06 220735 706193. 2443.58 21.20 0.217967 0.188844 2510 24 1951 2798 293701 59894 4.82371 4.82371 -159.541 -4.82371 0 0 926341. 3205.33 0.41 0.10 0.0212855 0.0188775 90 48 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 10.06 vpr 61.40 MiB -1 -1 0.17 20972 1 0.01 -1 -1 33172 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62872 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 22.9 MiB 2.77 641 61.4 MiB 0.05 0.00 3.18112 -98.7591 -3.18112 3.18112 1.04 0.000204679 0.000164985 0.0114779 0.009474 44 2370 40 6.99608e+06 161872 787024. 2723.27 3.61 0.102959 0.0896102 1613 20 1134 1566 131922 34153 3.35851 3.35851 -119.383 -3.35851 0 0 997811. 3452.63 0.45 0.06 0.0153203 0.013726 67 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 9.18 vpr 61.50 MiB -1 -1 0.19 21344 1 0.02 -1 -1 33240 -1 -1 14 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62980 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 23.0 MiB 1.27 925 61.5 MiB 0.07 0.00 3.01607 -102.761 -3.01607 3.01607 1.08 0.000230824 0.000186675 0.016894 0.0139916 38 2916 30 6.99608e+06 206020 678818. 2348.85 4.15 0.112211 0.0974392 2178 23 1802 2514 193189 40877 3.17896 3.17896 -125.808 -3.17896 0 0 902133. 3121.57 0.40 0.08 0.0193328 0.0172906 86 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.24 vpr 61.65 MiB -1 -1 0.18 21140 1 0.02 -1 -1 33188 -1 -1 19 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63132 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 23.1 MiB 1.70 879 61.7 MiB 0.08 0.00 2.70194 -87.8821 -2.70194 2.70194 1.07 0.000253163 0.000203795 0.0192974 0.0157514 48 2317 23 6.99608e+06 279598 865456. 2994.66 2.68 0.101215 0.0863997 1870 24 1544 2175 177598 40671 3.07421 3.07421 -111.695 -3.07421 0 0 1.05005e+06 3633.38 0.46 0.07 0.0192187 0.0170305 91 52 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 9.34 vpr 61.41 MiB -1 -1 0.17 20912 1 0.01 -1 -1 33244 -1 -1 17 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62880 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 22.9 MiB 0.62 918 61.4 MiB 0.07 0.00 3.06285 -91.873 -3.06285 3.06285 1.05 0.000218945 0.000176269 0.016502 0.0136255 36 2584 36 6.99608e+06 250167 648988. 2245.63 5.12 0.114018 0.0992294 1969 21 1396 2109 201558 39073 3.63252 3.63252 -115.424 -3.63252 0 0 828058. 2865.25 0.36 0.07 0.0174725 0.0156283 71 20 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 10.39 vpr 61.74 MiB -1 -1 0.18 21104 1 0.02 -1 -1 33064 -1 -1 15 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63220 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 23.2 MiB 2.78 880 61.7 MiB 0.07 0.00 3.54051 -110.454 -3.54051 3.54051 1.04 0.000217621 0.000173863 0.0165693 0.0135781 40 2858 34 6.99608e+06 220735 706193. 2443.58 3.94 0.101252 0.0866072 2104 24 2171 2948 318653 71642 3.92035 3.92035 -139.226 -3.92035 0 0 926341. 3205.33 0.40 0.10 0.0184704 0.0163586 87 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 10.14 vpr 61.58 MiB -1 -1 0.18 21196 1 0.01 -1 -1 33072 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63056 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 23.0 MiB 1.19 989 61.6 MiB 0.08 0.00 2.893 -99.8897 -2.893 2.893 1.06 0.000253802 0.000209243 0.0193995 0.0159957 38 3227 32 6.99608e+06 206020 678818. 2348.85 5.20 0.121867 0.105752 2335 24 2108 2902 233220 48803 3.54426 3.54426 -139.988 -3.54426 0 0 902133. 3121.57 0.39 0.09 0.0194688 0.017289 93 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 7.26 vpr 61.47 MiB -1 -1 0.19 20592 1 0.01 -1 -1 33244 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62944 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 22.9 MiB 0.54 704 61.5 MiB 0.08 0.00 3.86008 -98.7371 -3.86008 3.86008 1.08 0.000244406 0.00019563 0.0169042 0.0138214 48 1964 27 6.99608e+06 353176 865456. 2994.66 2.85 0.105946 0.0918625 1608 21 1074 1934 156757 37609 4.05036 4.05036 -119.742 -4.05036 0 0 1.05005e+06 3633.38 0.47 0.07 0.0170318 0.0152571 74 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 10.62 vpr 61.53 MiB -1 -1 0.19 21200 1 0.03 -1 -1 33264 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63004 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 22.9 MiB 2.69 968 61.5 MiB 0.07 0.00 3.51478 -117.942 -3.51478 3.51478 1.08 0.000251231 0.000202826 0.0168737 0.0140493 44 3266 43 6.99608e+06 206020 787024. 2723.27 4.09 0.126005 0.109198 2347 22 1651 2384 217395 43186 3.98371 3.98371 -143.062 -3.98371 0 0 997811. 3452.63 0.46 0.08 0.020176 0.0180536 86 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 9.62 vpr 61.63 MiB -1 -1 0.18 21296 1 0.01 -1 -1 33064 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63112 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 23.1 MiB 1.08 1078 61.6 MiB 0.11 0.00 4.122 -132.281 -4.122 4.122 1.07 0.000289958 0.000237557 0.0267165 0.0220246 46 3296 26 6.99608e+06 250167 828058. 2865.25 4.60 0.139242 0.121034 2427 22 2085 2922 234356 49220 4.90874 4.90874 -167.616 -4.90874 0 0 1.01997e+06 3529.29 0.46 0.09 0.0240012 0.0216153 102 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 9.24 vpr 61.92 MiB -1 -1 0.19 21040 1 0.02 -1 -1 33144 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63408 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 23.4 MiB 1.14 1065 61.9 MiB 0.10 0.00 3.47616 -116.907 -3.47616 3.47616 1.05 0.000277556 0.000214371 0.0236576 0.0193821 46 3352 42 6.99608e+06 250167 828058. 2865.25 4.23 0.141406 0.122114 2387 23 1971 2955 228378 49000 4.0085 4.0085 -149.476 -4.0085 0 0 1.01997e+06 3529.29 0.45 0.09 0.0229647 0.0205407 104 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 8.94 vpr 61.23 MiB -1 -1 0.17 21068 1 0.02 -1 -1 33112 -1 -1 13 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 22.7 MiB 1.23 679 61.2 MiB 0.06 0.00 3.51145 -101.136 -3.51145 3.51145 1.05 0.000214699 0.000165918 0.0144333 0.0119793 40 2025 37 6.99608e+06 191304 706193. 2443.58 4.04 0.107231 0.0931707 1691 19 1262 1760 130882 31397 3.71146 3.71146 -125.512 -3.71146 0 0 926341. 3205.33 0.41 0.06 0.0158238 0.0141817 71 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.96 vpr 61.80 MiB -1 -1 0.19 21176 1 0.02 -1 -1 33288 -1 -1 18 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63284 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 23.3 MiB 1.41 907 61.8 MiB 0.08 0.00 4.30006 -130.923 -4.30006 4.30006 1.04 0.000273097 0.0002237 0.0188144 0.0155792 44 3050 32 6.99608e+06 264882 787024. 2723.27 2.76 0.115893 0.099125 2098 22 2184 3090 206672 48099 4.84674 4.84674 -161.218 -4.84674 0 0 997811. 3452.63 0.45 0.08 0.0206551 0.0183674 104 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 8.30 vpr 61.60 MiB -1 -1 0.20 21328 1 0.02 -1 -1 33264 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63076 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 23.1 MiB 1.55 894 61.6 MiB 0.08 0.00 3.72804 -113.999 -3.72804 3.72804 1.08 0.000250216 0.000202412 0.0214281 0.0177146 50 2180 21 6.99608e+06 206020 902133. 3121.57 2.84 0.115316 0.100109 1783 21 1507 2343 173567 37314 3.93376 3.93376 -131.401 -3.93376 0 0 1.08113e+06 3740.92 0.48 0.07 0.0198497 0.0178234 82 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 20.20 vpr 61.74 MiB -1 -1 0.19 21392 1 0.02 -1 -1 33088 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63220 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 23.2 MiB 1.68 854 61.7 MiB 0.09 0.00 4.31205 -121.44 -4.31205 4.31205 1.07 0.000244012 0.000195648 0.0220247 0.0180129 40 2545 24 6.99608e+06 250167 706193. 2443.58 14.74 0.203757 0.175833 2206 20 1525 2126 192078 41809 4.41076 4.41076 -141.779 -4.41076 0 0 926341. 3205.33 0.41 0.07 0.0193003 0.017325 87 43 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 27.77 vpr 61.94 MiB -1 -1 0.20 21388 1 0.03 -1 -1 33136 -1 -1 20 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63424 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 23.4 MiB 3.06 1055 61.9 MiB 0.11 0.00 3.44926 -109.373 -3.44926 3.44926 1.07 0.00027226 0.000222442 0.0253926 0.0210687 40 3543 34 6.99608e+06 294314 706193. 2443.58 20.86 0.232603 0.201408 2623 20 2263 3135 310499 66403 4.01331 4.01331 -143.671 -4.01331 0 0 926341. 3205.33 0.42 0.10 0.021838 0.0196913 108 78 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 9.53 vpr 61.79 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33100 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63276 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 23.4 MiB 2.27 976 61.8 MiB 0.11 0.00 3.75306 -117.066 -3.75306 3.75306 1.08 0.000268047 0.000218234 0.0264916 0.0218186 44 3258 26 6.99608e+06 250167 787024. 2723.27 3.33 0.129983 0.112543 2216 25 2037 2917 259317 54971 4.47255 4.47255 -152.353 -4.47255 0 0 997811. 3452.63 0.45 0.10 0.0227692 0.0201638 95 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 13.58 vpr 61.60 MiB -1 -1 0.20 21288 1 0.02 -1 -1 33092 -1 -1 20 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63080 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 23.0 MiB 3.43 1046 61.6 MiB 0.09 0.00 3.15595 -102.354 -3.15595 3.15595 1.08 0.000266987 0.000216335 0.0229663 0.0189302 38 3741 42 6.99608e+06 294314 678818. 2348.85 6.33 0.141297 0.122329 2634 21 2021 2594 227077 48036 3.77076 3.77076 -133.556 -3.77076 0 0 902133. 3121.57 0.40 0.09 0.0216751 0.0194747 109 79 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.47 vpr 61.05 MiB -1 -1 0.16 20592 1 0.02 -1 -1 33108 -1 -1 10 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62512 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 22.5 MiB 1.73 542 61.0 MiB 0.05 0.00 2.91658 -84.2078 -2.91658 2.91658 1.06 0.000194089 0.000156569 0.0129274 0.010591 44 1882 29 6.99608e+06 147157 787024. 2723.27 2.07 0.0789032 0.0673654 1376 19 1065 1624 118178 28599 3.05367 3.05367 -108.289 -3.05367 0 0 997811. 3452.63 0.44 0.05 0.0126755 0.0113101 54 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 9.51 vpr 61.70 MiB -1 -1 0.19 21036 1 0.02 -1 -1 33168 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63184 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 23.4 MiB 0.95 1016 61.7 MiB 0.09 0.00 4.21916 -133.279 -4.21916 4.21916 1.09 0.000267218 0.000218043 0.0226667 0.0187311 46 2913 32 6.99608e+06 250167 828058. 2865.25 4.61 0.135707 0.118133 2300 23 2040 2794 295043 69297 5.52724 5.52724 -170.352 -5.52724 0 0 1.01997e+06 3529.29 0.44 0.10 0.0217403 0.019426 100 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 29.77 vpr 61.51 MiB -1 -1 0.20 21176 1 0.02 -1 -1 33204 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62988 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 22.9 MiB 1.27 1141 61.5 MiB 0.09 0.00 3.88817 -133.818 -3.88817 3.88817 1.09 0.000278841 0.000228294 0.0214216 0.017591 44 3974 45 6.99608e+06 250167 787024. 2723.27 24.55 0.26146 0.227279 2579 29 3132 4462 345657 73526 4.97291 4.97291 -178.855 -4.97291 0 0 997811. 3452.63 0.44 0.12 0.0268169 0.0238035 109 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 9.16 vpr 61.22 MiB -1 -1 0.18 21132 1 0.01 -1 -1 33152 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62692 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 22.8 MiB 1.32 807 61.2 MiB 0.06 0.00 3.15927 -96.7838 -3.15927 3.15927 1.07 0.000198053 0.000158081 0.0148467 0.0121816 36 2396 40 6.99608e+06 161872 648988. 2245.63 4.20 0.104164 0.0901903 1869 17 1185 1484 128061 27386 3.17121 3.17121 -115.45 -3.17121 0 0 828058. 2865.25 0.37 0.05 0.0136966 0.0122823 69 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 6.62 vpr 60.71 MiB -1 -1 0.18 20888 1 0.02 -1 -1 33072 -1 -1 13 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62172 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 22.2 MiB 0.66 640 60.7 MiB 0.06 0.00 2.78823 -87.1129 -2.78823 2.78823 1.08 0.000220045 0.000182518 0.0143393 0.0119344 38 1818 24 6.99608e+06 191304 678818. 2348.85 2.28 0.0879468 0.0763357 1487 22 1114 1703 119658 26285 2.85057 2.85057 -106.572 -2.85057 0 0 902133. 3121.57 0.40 0.05 0.0146122 0.0129874 56 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.63 vpr 61.75 MiB -1 -1 0.18 21316 1 0.02 -1 -1 33192 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63232 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 23.2 MiB 1.13 886 61.8 MiB 0.07 0.00 3.70481 -118.932 -3.70481 3.70481 1.08 0.000254999 0.000207987 0.018659 0.0154953 46 2949 25 6.99608e+06 220735 828058. 2865.25 2.66 0.115512 0.100182 2037 19 1593 2147 158370 34912 3.99855 3.99855 -141.931 -3.99855 0 0 1.01997e+06 3529.29 0.45 0.07 0.0181954 0.0163177 88 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 10.65 vpr 61.62 MiB -1 -1 0.17 21196 1 0.02 -1 -1 33056 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63104 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 23.0 MiB 2.44 976 61.6 MiB 0.06 0.00 3.76217 -116.176 -3.76217 3.76217 1.07 0.000258676 0.000211538 0.0153235 0.0128653 38 2975 45 6.99608e+06 220735 678818. 2348.85 4.32 0.130333 0.113763 2377 40 2595 3734 578518 239653 4.19695 4.19695 -149.355 -4.19695 0 0 902133. 3121.57 0.39 0.22 0.0320079 0.0281202 95 53 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 8.86 vpr 61.66 MiB -1 -1 0.18 21024 1 0.03 -1 -1 33144 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63144 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 23.0 MiB 0.58 794 61.7 MiB 0.07 0.00 3.76881 -112.186 -3.76881 3.76881 1.06 0.000255909 0.000207181 0.0181718 0.0149695 48 2455 28 6.99608e+06 250167 865456. 2994.66 4.39 0.125736 0.109301 2039 23 1853 3061 257733 57911 4.64185 4.64185 -149.524 -4.64185 0 0 1.05005e+06 3633.38 0.49 0.09 0.0229508 0.02056 83 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.98 vpr 61.51 MiB -1 -1 0.20 21332 1 0.02 -1 -1 33144 -1 -1 16 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62984 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 23.0 MiB 1.53 1042 61.5 MiB 0.08 0.00 3.06347 -91.7801 -3.06347 3.06347 1.09 0.000244674 0.000193477 0.0198937 0.0165714 44 2664 24 6.99608e+06 235451 787024. 2723.27 2.59 0.110569 0.0962327 2225 20 1452 2197 188806 37968 3.30717 3.30717 -114.267 -3.30717 0 0 997811. 3452.63 0.45 0.07 0.0180245 0.0161365 86 47 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 7.68 vpr 60.81 MiB -1 -1 0.18 21076 1 0.01 -1 -1 33156 -1 -1 15 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62272 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 22.2 MiB 1.37 548 60.8 MiB 0.05 0.00 2.96122 -85.2109 -2.96122 2.96122 1.05 0.000186247 0.000149215 0.0131908 0.0108263 38 1752 33 6.99608e+06 220735 678818. 2348.85 2.72 0.0837703 0.0715862 1269 22 1003 1521 107340 24874 3.45442 3.45442 -108.095 -3.45442 0 0 902133. 3121.57 0.39 0.05 0.0137865 0.0121843 66 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 8.82 vpr 61.99 MiB -1 -1 0.20 21608 1 0.02 -1 -1 33256 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63476 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 23.5 MiB 1.18 1230 62.0 MiB 0.11 0.00 3.42084 -116.609 -3.42084 3.42084 1.08 0.000309075 0.000253826 0.0289825 0.0239518 46 3627 36 6.99608e+06 264882 828058. 2865.25 3.66 0.155414 0.134542 2706 23 2404 3618 271329 57081 4.59641 4.59641 -151.356 -4.59641 0 0 1.01997e+06 3529.29 0.47 0.10 0.0254573 0.0227197 111 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 11.75 vpr 61.91 MiB -1 -1 0.19 21440 1 0.02 -1 -1 33188 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63392 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 23.5 MiB 2.56 1225 61.9 MiB 0.09 0.00 4.59963 -134.995 -4.59963 4.59963 1.07 0.000272678 0.000215408 0.0244438 0.0202449 38 3253 42 6.99608e+06 250167 678818. 2348.85 5.37 0.138632 0.120244 2643 20 2163 3054 287332 56075 4.78615 4.78615 -162.372 -4.78615 0 0 902133. 3121.57 0.40 0.10 0.020495 0.0183957 100 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.82 vpr 61.64 MiB -1 -1 0.19 21440 1 0.01 -1 -1 33132 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63116 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 23.1 MiB 1.27 1153 61.6 MiB 0.07 0.00 3.59524 -132.004 -3.59524 3.59524 1.08 0.000228316 0.000182469 0.0156825 0.0128355 44 2781 22 6.99608e+06 206020 787024. 2723.27 2.68 0.108163 0.0941562 2274 22 1258 1656 136223 27766 3.97871 3.97871 -152.435 -3.97871 0 0 997811. 3452.63 0.46 0.07 0.0194756 0.0174656 91 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.33 vpr 61.25 MiB -1 -1 0.18 21156 1 0.02 -1 -1 33204 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62716 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 22.8 MiB 0.96 836 61.2 MiB 0.06 0.00 3.46878 -104.536 -3.46878 3.46878 1.05 0.000245751 0.000184456 0.0154363 0.0126559 48 2458 28 6.99608e+06 220735 865456. 2994.66 2.59 0.0985172 0.0844921 2012 22 1319 1804 149277 35551 3.71651 3.71651 -126.52 -3.71651 0 0 1.05005e+06 3633.38 0.47 0.07 0.018407 0.016343 81 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.54 vpr 61.82 MiB -1 -1 0.20 21200 1 0.02 -1 -1 33236 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63300 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 23.4 MiB 1.95 891 61.8 MiB 0.08 0.00 3.32588 -100.633 -3.32588 3.32588 1.09 0.000275108 0.000224315 0.0207622 0.0172697 44 2974 35 6.99608e+06 250167 787024. 2723.27 2.70 0.128497 0.11119 2153 22 1959 2773 179446 41082 3.70776 3.70776 -127.536 -3.70776 0 0 997811. 3452.63 0.45 0.07 0.0209855 0.0187047 97 46 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.70 vpr 61.61 MiB -1 -1 0.20 21196 1 0.02 -1 -1 33084 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63092 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 23.1 MiB 2.08 823 61.6 MiB 0.09 0.00 3.01479 -93.9822 -3.01479 3.01479 1.08 0.000242626 0.000197604 0.0218338 0.0181078 46 2559 23 6.99608e+06 250167 828058. 2865.25 2.74 0.114855 0.0997103 1904 21 1471 2193 155097 34227 3.51556 3.51556 -119.089 -3.51556 0 0 1.01997e+06 3529.29 0.46 0.07 0.018699 0.0167306 88 46 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 8.11 vpr 61.60 MiB -1 -1 0.19 21340 1 0.02 -1 -1 33148 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63076 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 23.0 MiB 1.11 983 61.6 MiB 0.07 0.00 3.51478 -117.233 -3.51478 3.51478 1.05 0.000274753 0.000225869 0.016863 0.0139614 44 3209 29 6.99608e+06 206020 787024. 2723.27 3.18 0.118832 0.103024 2443 22 2035 3014 241129 50014 4.30395 4.30395 -153.874 -4.30395 0 0 997811. 3452.63 0.45 0.09 0.0217055 0.0195064 88 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 10.18 vpr 61.81 MiB -1 -1 0.17 21236 1 0.02 -1 -1 33172 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63292 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 23.3 MiB 3.58 1050 61.8 MiB 0.08 0.00 2.94423 -102.955 -2.94423 2.94423 1.09 0.000293589 0.000240947 0.021555 0.0179059 48 2715 21 6.99608e+06 235451 865456. 2994.66 2.68 0.11786 0.101762 2241 21 2066 2754 251682 53612 3.48281 3.48281 -130.449 -3.48281 0 0 1.05005e+06 3633.38 0.47 0.09 0.0217345 0.0194272 103 59 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 8.57 vpr 61.43 MiB -1 -1 0.19 20972 1 0.01 -1 -1 33096 -1 -1 14 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62908 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 23.0 MiB 1.85 603 61.4 MiB 0.06 0.00 3.37515 -97.3982 -3.37515 3.37515 1.06 0.000213229 0.000172446 0.0150106 0.0122664 38 2013 29 6.99608e+06 206020 678818. 2348.85 3.05 0.0950797 0.0818138 1547 21 1493 1931 152539 36020 3.71317 3.71317 -122.944 -3.71317 0 0 902133. 3121.57 0.40 0.06 0.0149446 0.0132893 70 28 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 12.44 vpr 61.09 MiB -1 -1 0.18 21236 1 0.03 -1 -1 33224 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 22.7 MiB 3.12 795 61.1 MiB 0.07 0.00 3.25478 -107.855 -3.25478 3.25478 1.05 0.00023799 0.00019325 0.0177965 0.0145771 40 2909 47 6.99608e+06 206020 706193. 2443.58 5.46 0.118704 0.102421 2190 37 2405 3309 578724 183112 4.53905 4.53905 -151.198 -4.53905 0 0 926341. 3205.33 0.42 0.19 0.0282031 0.0249425 79 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 8.39 vpr 61.46 MiB -1 -1 0.19 21152 1 0.02 -1 -1 33112 -1 -1 15 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62940 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 23.0 MiB 1.10 812 61.5 MiB 0.07 0.00 3.45298 -102.424 -3.45298 3.45298 1.10 0.000237539 0.000191504 0.0190586 0.0158402 50 2425 27 6.99608e+06 220735 902133. 3121.57 3.37 0.11921 0.104111 1762 21 1462 2153 147036 35655 3.73872 3.73872 -128.967 -3.73872 0 0 1.08113e+06 3740.92 0.49 0.07 0.0193439 0.0173289 80 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 9.54 vpr 61.14 MiB -1 -1 0.17 21032 1 0.02 -1 -1 33204 -1 -1 13 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62604 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 22.6 MiB 1.32 657 61.1 MiB 0.06 0.00 3.14827 -88.844 -3.14827 3.14827 1.06 0.000191451 0.000153714 0.0150546 0.0123328 36 2394 46 6.99608e+06 191304 648988. 2245.63 4.61 0.0965161 0.0825322 1649 21 1293 1672 151861 33922 3.30876 3.30876 -111.856 -3.30876 0 0 828058. 2865.25 0.37 0.06 0.0143933 0.0127524 68 25 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 9.25 vpr 61.38 MiB -1 -1 0.17 20888 1 0.03 -1 -1 33184 -1 -1 12 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62852 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 22.9 MiB 1.08 742 61.4 MiB 0.07 0.00 3.53345 -106.983 -3.53345 3.53345 1.11 0.000208801 0.000168999 0.0158332 0.0130922 38 2528 44 6.99608e+06 176588 678818. 2348.85 4.43 0.110041 0.0952397 1736 20 1360 1807 135023 29795 3.38956 3.38956 -122.652 -3.38956 0 0 902133. 3121.57 0.39 0.06 0.0144973 0.0128751 73 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.94 vpr 61.73 MiB -1 -1 0.20 21176 1 0.01 -1 -1 33132 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63212 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 23.3 MiB 1.26 965 61.7 MiB 0.11 0.00 3.73911 -120.62 -3.73911 3.73911 1.10 0.000272316 0.000222121 0.0265751 0.0221063 44 3211 29 6.99608e+06 250167 787024. 2723.27 2.79 0.135508 0.117469 2309 21 1957 2695 219223 49747 3.81975 3.81975 -139.272 -3.81975 0 0 997811. 3452.63 0.45 0.08 0.0200636 0.0178871 101 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 8.71 vpr 61.30 MiB -1 -1 0.17 21176 1 0.02 -1 -1 33156 -1 -1 13 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62772 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 22.8 MiB 1.08 908 61.3 MiB 0.07 0.00 2.97897 -98.9615 -2.97897 2.97897 1.11 0.000190295 0.00015325 0.0173034 0.0136313 36 2319 31 6.99608e+06 191304 648988. 2245.63 3.91 0.1004 0.0863277 1938 21 1101 1554 146560 28870 3.15541 3.15541 -118.94 -3.15541 0 0 828058. 2865.25 0.38 0.06 0.0155406 0.0138927 71 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 10.96 vpr 61.66 MiB -1 -1 0.18 21200 1 0.01 -1 -1 33200 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63136 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 23.0 MiB 1.47 1116 61.7 MiB 0.09 0.00 2.87229 -101.357 -2.87229 2.87229 1.10 0.00025782 0.000209829 0.0215268 0.0179071 36 3058 44 6.99608e+06 220735 648988. 2245.63 5.76 0.130537 0.112771 2543 22 1561 2120 201469 39565 3.88326 3.88326 -139.852 -3.88326 0 0 828058. 2865.25 0.37 0.07 0.0193663 0.0171029 91 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 26.94 vpr 61.93 MiB -1 -1 0.20 21236 1 0.02 -1 -1 33168 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63412 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 23.3 MiB 3.70 1144 61.9 MiB 0.10 0.00 3.79312 -127.86 -3.79312 3.79312 1.07 0.00027376 0.000219133 0.0237973 0.0194756 40 3630 36 6.99608e+06 294314 706193. 2443.58 19.34 0.249096 0.215709 2934 27 2953 4082 406302 84206 5.25094 5.25094 -183.249 -5.25094 0 0 926341. 3205.33 0.41 0.13 0.0275831 0.0245963 113 87 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 10.29 vpr 61.61 MiB -1 -1 0.17 20912 1 0.02 -1 -1 33236 -1 -1 12 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63092 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 22.9 MiB 2.90 801 61.6 MiB 0.07 0.00 2.79904 -93.9923 -2.79904 2.79904 1.05 0.000233658 0.000190981 0.01648 0.0134957 46 2568 37 6.99608e+06 176588 828058. 2865.25 3.62 0.112965 0.0979498 1841 21 1625 2123 160677 37357 3.10721 3.10721 -114.977 -3.10721 0 0 1.01997e+06 3529.29 0.46 0.06 0.0161759 0.014413 80 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 9.79 vpr 61.43 MiB -1 -1 0.18 21500 1 0.02 -1 -1 33144 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62908 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 22.9 MiB 0.97 702 61.4 MiB 0.07 0.00 3.26242 -104.775 -3.26242 3.26242 1.05 0.000210467 0.000168741 0.0170049 0.0139131 40 2758 29 6.99608e+06 161872 706193. 2443.58 5.06 0.106566 0.0921441 2071 23 1624 2360 251138 53263 3.57616 3.57616 -132.977 -3.57616 0 0 926341. 3205.33 0.42 0.09 0.0199849 0.017952 72 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.18 vpr 61.49 MiB -1 -1 0.18 21212 1 0.01 -1 -1 33180 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62964 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 23.0 MiB 2.06 713 61.5 MiB 0.08 0.00 3.41998 -102.241 -3.41998 3.41998 1.05 0.00022936 0.000183546 0.0202859 0.0165708 46 2748 42 6.99608e+06 206020 828058. 2865.25 3.37 0.111734 0.0955041 1779 23 1681 2355 157426 37739 3.80082 3.80082 -128.409 -3.80082 0 0 1.01997e+06 3529.29 0.44 0.07 0.0177753 0.0157538 79 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.46 vpr 61.71 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33224 -1 -1 18 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63188 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 23.2 MiB 2.03 846 61.7 MiB 0.06 0.00 3.01177 -90.6787 -3.01177 3.01177 1.09 0.000239774 0.000194482 0.0153761 0.012796 42 2590 35 6.99608e+06 264882 744469. 2576.02 2.59 0.105004 0.0902397 1897 21 1391 2027 157307 36064 3.38836 3.38836 -108.559 -3.38836 0 0 949917. 3286.91 0.36 0.04 0.0125085 0.0112681 88 49 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 11.08 vpr 61.95 MiB -1 -1 0.20 21384 1 0.02 -1 -1 33208 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63432 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 23.4 MiB 2.03 1101 61.9 MiB 0.09 0.00 4.47739 -145.645 -4.47739 4.47739 1.10 0.000294983 0.000241624 0.0228332 0.0189405 40 3679 30 6.99608e+06 250167 706193. 2443.58 5.16 0.126896 0.109178 3149 21 2537 3810 363699 76022 5.0253 5.0253 -183.827 -5.0253 0 0 926341. 3205.33 0.40 0.12 0.0227429 0.0204076 105 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 7.94 vpr 60.77 MiB -1 -1 0.16 20700 1 0.01 -1 -1 32952 -1 -1 13 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62224 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 22.2 MiB 1.14 543 60.8 MiB 0.06 0.00 2.70223 -71.899 -2.70223 2.70223 1.04 0.000179371 0.000144802 0.0141331 0.0116427 38 1665 38 6.99608e+06 191304 678818. 2348.85 3.22 0.0920079 0.079478 1054 21 901 1435 81393 22434 2.56872 2.56872 -88.7691 -2.56872 0 0 902133. 3121.57 0.39 0.04 0.0132833 0.0118337 54 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 11.45 vpr 62.07 MiB -1 -1 0.19 21316 1 0.01 -1 -1 33232 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63560 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 23.7 MiB 3.87 1169 62.1 MiB 0.12 0.00 3.99652 -133.73 -3.99652 3.99652 1.09 0.000290983 0.000236772 0.0297602 0.0245733 46 3548 35 6.99608e+06 294314 828058. 2865.25 3.40 0.155839 0.135427 2572 22 2460 3150 228718 49588 4.8653 4.8653 -172.783 -4.8653 0 0 1.01997e+06 3529.29 0.45 0.08 0.022803 0.0203656 116 87 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 12.70 vpr 61.82 MiB -1 -1 0.19 21132 1 0.02 -1 -1 33232 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63300 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 23.3 MiB 1.18 1252 61.8 MiB 0.10 0.00 3.51312 -134.319 -3.51312 3.51312 1.06 0.000255146 0.000205509 0.0241628 0.0198344 38 3637 35 6.99608e+06 235451 678818. 2348.85 7.74 0.128659 0.110759 2917 21 2846 3613 357336 67667 4.78345 4.78345 -183.679 -4.78345 0 0 902133. 3121.57 0.38 0.10 0.0195334 0.0173964 110 93 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.83 vpr 61.86 MiB -1 -1 0.18 21388 1 0.01 -1 -1 33144 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63344 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 23.2 MiB 1.97 947 61.9 MiB 0.09 0.00 2.93047 -97.0596 -2.93047 2.93047 1.09 0.000265228 0.000217219 0.023326 0.0194051 40 3160 43 6.99608e+06 220735 706193. 2443.58 4.03 0.140752 0.122419 2442 24 1908 2552 228066 49449 3.47481 3.47481 -126.995 -3.47481 0 0 926341. 3205.33 0.42 0.09 0.0233647 0.0209074 94 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 12.33 vpr 61.86 MiB -1 -1 0.20 21240 1 0.03 -1 -1 33216 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63340 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 23.3 MiB 1.35 1185 61.9 MiB 0.11 0.00 4.66142 -141.415 -4.66142 4.66142 1.08 0.000283419 0.000228551 0.0265971 0.0219804 38 3661 50 6.99608e+06 220735 678818. 2348.85 7.14 0.160457 0.138791 2814 21 2286 3391 272363 55946 4.897 4.897 -166.494 -4.897 0 0 902133. 3121.57 0.40 0.09 0.0232644 0.0208348 98 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.26 vpr 60.82 MiB -1 -1 0.16 21128 1 0.01 -1 -1 33032 -1 -1 12 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62284 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 22.3 MiB 0.94 678 60.8 MiB 0.05 0.00 2.28455 -83.6988 -2.28455 2.28455 1.05 0.000165056 0.000131406 0.0120658 0.0098443 34 1794 43 6.99608e+06 176588 618332. 2139.56 1.81 0.0731038 0.0617193 1508 19 843 1071 93484 20144 2.56272 2.56272 -102.236 -2.56272 0 0 787024. 2723.27 0.35 0.04 0.0112729 0.00998531 53 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 11.79 vpr 61.35 MiB -1 -1 0.18 20824 1 0.01 -1 -1 33076 -1 -1 14 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62824 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 22.9 MiB 4.71 610 61.4 MiB 0.07 0.00 3.15062 -97.3911 -3.15062 3.15062 1.07 0.000222918 0.000181669 0.0175654 0.0143631 38 2071 38 6.99608e+06 206020 678818. 2348.85 3.38 0.102219 0.0875384 1538 21 1227 1830 167147 35358 3.19016 3.19016 -119.771 -3.19016 0 0 902133. 3121.57 0.40 0.07 0.0168631 0.0150853 68 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 8.37 vpr 61.39 MiB -1 -1 0.18 20912 1 0.02 -1 -1 33172 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62860 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 22.8 MiB 0.75 762 61.4 MiB 0.07 0.00 3.05994 -98.5753 -3.05994 3.05994 1.05 0.000213283 0.000170975 0.0152483 0.0125118 40 2568 29 6.99608e+06 250167 706193. 2443.58 3.91 0.0972595 0.0834151 2080 21 1478 2306 246043 52309 3.67996 3.67996 -132.879 -3.67996 0 0 926341. 3205.33 0.41 0.08 0.0170532 0.015209 78 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 7.06 vpr 60.89 MiB -1 -1 0.17 20888 1 0.01 -1 -1 33228 -1 -1 16 25 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62356 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 22.4 MiB 1.39 564 60.9 MiB 0.05 0.00 2.65193 -63.5837 -2.65193 2.65193 1.07 0.000171819 0.000138551 0.0118152 0.00978178 34 1868 50 6.99608e+06 235451 618332. 2139.56 2.06 0.0847016 0.0728754 1461 21 957 1273 110279 24875 3.07792 3.07792 -88.0596 -3.07792 0 0 787024. 2723.27 0.36 0.05 0.0124264 0.0110694 59 19 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 10.84 vpr 61.79 MiB -1 -1 0.19 21156 1 0.01 -1 -1 33168 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63276 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 23.4 MiB 4.02 1065 61.8 MiB 0.10 0.00 3.25282 -106.343 -3.25282 3.25282 1.09 0.000273004 0.000223006 0.0258888 0.0213834 44 3400 28 6.99608e+06 250167 787024. 2723.27 2.90 0.128632 0.110751 2418 20 1951 2804 221973 46847 3.91132 3.91132 -132.92 -3.91132 0 0 997811. 3452.63 0.45 0.08 0.0200387 0.0179275 103 69 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 10.18 vpr 61.99 MiB -1 -1 0.20 21096 1 0.02 -1 -1 33236 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63476 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 23.7 MiB 3.29 1082 62.0 MiB 0.10 0.00 3.67964 -121.724 -3.67964 3.67964 1.09 0.000280863 0.000226444 0.0253678 0.0207205 46 3217 24 6.99608e+06 279598 828058. 2865.25 2.92 0.138606 0.120044 2457 21 2273 3121 254250 54664 4.25845 4.25845 -146.753 -4.25845 0 0 1.01997e+06 3529.29 0.47 0.09 0.0232356 0.0208957 117 86 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_001.v common 11.76 vpr 61.46 MiB -1 -1 0.25 21244 14 0.38 -1 -1 36448 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62932 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 23.0 MiB 2.37 1228 61.5 MiB 0.09 0.00 6.96028 -148.43 -6.96028 6.96028 1.07 0.000362657 0.000286102 0.0262934 0.0219917 38 3327 23 6.79088e+06 255968 678818. 2348.85 5.10 0.172049 0.151539 2825 24 1555 4429 242219 53245 7.42577 7.42577 -171.056 -7.42577 0 0 902133. 3121.57 0.40 0.10 0.0317894 0.0286505 130 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_002.v common 10.88 vpr 61.39 MiB -1 -1 0.26 21552 14 0.44 -1 -1 36048 -1 -1 19 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62860 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 23.0 MiB 3.26 1071 61.4 MiB 0.07 0.00 6.49479 -130.522 -6.49479 6.49479 1.09 0.000372578 0.000309019 0.0217952 0.0183474 34 2965 33 6.79088e+06 255968 618332. 2139.56 3.20 0.170385 0.149636 2640 33 1307 3575 405412 154040 7.32499 7.32499 -159.495 -7.32499 0 0 787024. 2723.27 0.37 0.17 0.0397154 0.0355481 125 181 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_003.v common 14.78 vpr 61.53 MiB -1 -1 0.24 21252 11 0.30 -1 -1 35956 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63004 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 23.0 MiB 4.58 1179 61.5 MiB 0.08 0.00 5.68474 -125.548 -5.68474 5.68474 1.08 0.000363159 0.000297288 0.0220679 0.0183234 34 3731 47 6.79088e+06 255968 618332. 2139.56 5.97 0.19101 0.167739 2930 25 1703 5422 440476 147803 5.9788 5.9788 -146.114 -5.9788 0 0 787024. 2723.27 0.36 0.16 0.0352968 0.0319513 130 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_004.v common 9.23 vpr 61.36 MiB -1 -1 0.24 21308 12 0.48 -1 -1 35996 -1 -1 24 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62832 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 22.8 MiB 1.54 1174 61.4 MiB 0.07 0.00 6.04387 -120.681 -6.04387 6.04387 1.10 0.000359681 0.000295881 0.0218222 0.0183455 38 2742 26 6.79088e+06 323328 678818. 2348.85 3.29 0.169255 0.149152 2450 20 1319 3829 190253 43386 6.28328 6.28328 -135.745 -6.28328 0 0 902133. 3121.57 0.40 0.09 0.0308719 0.0281501 136 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_005.v common 12.01 vpr 61.53 MiB -1 -1 0.26 21292 13 0.43 -1 -1 35992 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63004 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 23.1 MiB 2.42 1413 61.5 MiB 0.08 0.00 6.66616 -146.587 -6.66616 6.66616 1.05 0.000488986 0.00040688 0.0226173 0.0187936 36 4086 29 6.79088e+06 296384 648988. 2245.63 5.31 0.179756 0.157061 3259 19 1594 4170 245748 55499 6.79146 6.79146 -164.698 -6.79146 0 0 828058. 2865.25 0.37 0.10 0.0324165 0.0296545 152 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_006.v common 10.88 vpr 61.42 MiB -1 -1 0.28 21392 13 0.37 -1 -1 36032 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 22.9 MiB 2.27 1330 61.4 MiB 0.10 0.00 6.20837 -133.02 -6.20837 6.20837 1.08 0.000372583 0.000292788 0.0295946 0.0243081 38 3375 23 6.79088e+06 255968 678818. 2348.85 4.28 0.170269 0.147817 2823 18 1545 4690 250776 56357 6.38057 6.38057 -151.43 -6.38057 0 0 902133. 3121.57 0.40 0.09 0.0281986 0.0255346 137 197 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_007.v common 8.21 vpr 61.16 MiB -1 -1 0.23 20940 12 0.28 -1 -1 35876 -1 -1 21 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62628 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 22.7 MiB 1.97 798 61.2 MiB 0.07 0.00 5.74632 -101.576 -5.74632 5.74632 1.08 0.000306569 0.000249243 0.0204346 0.0170256 36 2213 30 6.79088e+06 282912 648988. 2245.63 2.18 0.136413 0.119228 1882 19 961 2177 127881 30536 6.37282 6.37282 -123.446 -6.37282 0 0 828058. 2865.25 0.38 0.06 0.0236587 0.0215446 106 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_008.v common 24.05 vpr 61.18 MiB -1 -1 0.22 20860 12 0.28 -1 -1 35956 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62648 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 22.8 MiB 3.99 1051 61.2 MiB 0.07 0.00 5.2739 -110.163 -5.2739 5.2739 1.06 0.000280559 0.000227323 0.0196346 0.0162524 40 2793 23 6.79088e+06 229024 706193. 2443.58 15.94 0.225229 0.196073 2528 22 1236 3141 236269 54649 5.60285 5.60285 -131.857 -5.60285 0 0 926341. 3205.33 0.40 0.09 0.0247302 0.0224173 106 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_009.v common 11.70 vpr 61.15 MiB -1 -1 0.23 21480 12 0.24 -1 -1 35900 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62616 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 22.7 MiB 4.22 1174 61.1 MiB 0.06 0.00 5.62528 -121.823 -5.62528 5.62528 1.08 0.000310671 0.000247394 0.0160165 0.0133445 38 3036 20 6.79088e+06 269440 678818. 2348.85 3.43 0.12406 0.108457 2502 15 1166 2893 171176 37604 5.95079 5.95079 -142.769 -5.95079 0 0 902133. 3121.57 0.39 0.07 0.019837 0.018105 113 142 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_010.v common 12.30 vpr 61.25 MiB -1 -1 0.23 20912 13 0.30 -1 -1 35888 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62720 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 22.8 MiB 3.00 1005 61.2 MiB 0.07 0.00 6.37287 -138.494 -6.37287 6.37287 1.06 0.000321734 0.000264018 0.0208705 0.0175496 36 3091 47 6.79088e+06 202080 648988. 2245.63 5.29 0.162265 0.14191 2192 14 1084 2540 156108 37561 6.62347 6.62347 -159.795 -6.62347 0 0 828058. 2865.25 0.37 0.07 0.0206588 0.0189321 106 155 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_011.v common 11.72 vpr 61.11 MiB -1 -1 0.23 20988 12 0.25 -1 -1 35996 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62572 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 22.6 MiB 2.39 996 61.1 MiB 0.07 0.00 5.74288 -123.246 -5.74288 5.74288 1.03 0.000256972 0.000207664 0.0202746 0.0167425 30 2633 37 6.79088e+06 229024 556674. 1926.21 5.46 0.139112 0.119676 2072 17 870 2058 112124 25848 6.19369 6.19369 -144.208 -6.19369 0 0 706193. 2443.58 0.34 0.06 0.02039 0.0186263 96 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_012.v common 11.96 vpr 61.00 MiB -1 -1 0.23 20900 12 0.21 -1 -1 35784 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62464 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 22.4 MiB 3.28 887 61.0 MiB 0.08 0.00 5.05901 -120.515 -5.05901 5.05901 1.06 0.000320667 0.00023912 0.0220498 0.0182971 38 2903 44 6.79088e+06 229024 678818. 2348.85 4.72 0.155738 0.136308 2125 18 1025 2746 150502 35134 5.43142 5.43142 -135.349 -5.43142 0 0 902133. 3121.57 0.40 0.07 0.0214507 0.0194772 101 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_013.v common 13.38 vpr 61.32 MiB -1 -1 0.26 21348 13 0.36 -1 -1 36016 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 22.8 MiB 2.65 1273 61.3 MiB 0.06 0.00 6.68505 -139.035 -6.68505 6.68505 1.06 0.000365066 0.000300219 0.0163114 0.0138179 36 3791 49 6.79088e+06 269440 648988. 2245.63 6.57 0.174712 0.152717 3066 16 1397 3580 226142 50678 6.93565 6.93565 -161.983 -6.93565 0 0 828058. 2865.25 0.37 0.08 0.0257481 0.0235834 134 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_014.v common 15.15 vpr 61.55 MiB -1 -1 0.27 21188 14 0.46 -1 -1 35968 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63024 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 23.1 MiB 2.67 1455 61.5 MiB 0.09 0.00 7.18641 -155.371 -7.18641 7.18641 1.04 0.000366755 0.000297155 0.0247477 0.0204912 36 4028 38 6.79088e+06 296384 648988. 2245.63 8.16 0.193818 0.169504 3194 23 1732 4593 288700 62924 7.76595 7.76595 -179.134 -7.76595 0 0 828058. 2865.25 0.37 0.11 0.0351039 0.0317473 151 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_015.v common 11.03 vpr 61.10 MiB -1 -1 0.22 21044 11 0.24 -1 -1 36092 -1 -1 21 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62564 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 22.5 MiB 3.27 989 61.1 MiB 0.09 0.00 5.53913 -114.345 -5.53913 5.53913 1.04 0.000271358 0.000220086 0.0255085 0.020909 36 2672 35 6.79088e+06 282912 648988. 2245.63 3.82 0.142988 0.123999 2333 17 1128 2755 166474 38300 5.91503 5.91503 -133.752 -5.91503 0 0 828058. 2865.25 0.37 0.07 0.0207926 0.018944 106 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_016.v common 30.79 vpr 61.60 MiB -1 -1 0.28 21184 12 0.41 -1 -1 36492 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63076 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 23.2 MiB 2.05 1372 61.6 MiB 0.10 0.00 5.87937 -133.714 -5.87937 5.87937 1.04 0.000382669 0.000313054 0.0272767 0.0226482 42 3864 36 6.79088e+06 323328 744469. 2576.02 24.42 0.291706 0.251398 3090 21 1477 4570 267594 59109 6.25527 6.25527 -152.451 -6.25527 0 0 949917. 3286.91 0.42 0.10 0.0312853 0.0282458 145 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_017.v common 14.30 vpr 61.19 MiB -1 -1 0.26 21168 14 0.34 -1 -1 35988 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62660 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 22.7 MiB 3.31 1406 61.2 MiB 0.07 0.00 6.47365 -143.056 -6.47365 6.47365 1.10 0.00035404 0.000289445 0.0183833 0.0155066 40 3867 33 6.79088e+06 255968 706193. 2443.58 6.68 0.162074 0.142156 3292 18 1586 4392 291970 61631 7.22545 7.22545 -167.974 -7.22545 0 0 926341. 3205.33 0.39 0.10 0.0255561 0.0230606 126 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_018.v common 9.56 vpr 60.97 MiB -1 -1 0.22 21204 12 0.23 -1 -1 35720 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62436 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 22.3 MiB 2.26 1016 61.0 MiB 0.06 0.00 5.84017 -135.018 -5.84017 5.84017 1.08 0.000278582 0.000227653 0.0171457 0.0137413 36 2689 34 6.79088e+06 202080 648988. 2245.63 3.44 0.130158 0.112889 2225 17 905 2314 141221 31935 5.84017 5.84017 -148.73 -5.84017 0 0 828058. 2865.25 0.36 0.06 0.0193416 0.0175463 105 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_019.v common 15.79 vpr 60.49 MiB -1 -1 0.19 20592 10 0.13 -1 -1 35724 -1 -1 13 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61944 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 22.1 MiB 2.78 612 60.5 MiB 0.06 0.00 4.04526 -94.0658 -4.04526 4.04526 1.08 0.000200543 0.000161754 0.0161574 0.0133904 38 1703 30 6.79088e+06 175136 678818. 2348.85 9.21 0.180215 0.156394 1258 16 627 1375 74539 18140 4.29586 4.29586 -109.689 -4.29586 0 0 902133. 3121.57 0.39 0.04 0.0131995 0.0119773 66 84 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_020.v common 9.56 vpr 61.18 MiB -1 -1 0.23 20916 13 0.26 -1 -1 35872 -1 -1 18 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62652 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 22.8 MiB 3.08 1124 61.2 MiB 0.05 0.00 6.04392 -131.67 -6.04392 6.04392 1.04 0.000278313 0.000224733 0.014269 0.0119074 36 2681 27 6.79088e+06 242496 648988. 2245.63 2.54 0.118634 0.102682 2388 22 1174 2879 179843 40122 6.16917 6.16917 -147.349 -6.16917 0 0 828058. 2865.25 0.37 0.07 0.0237176 0.0213705 107 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_021.v common 11.13 vpr 61.45 MiB -1 -1 0.26 21328 13 0.42 -1 -1 35964 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62924 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 22.8 MiB 2.66 1375 61.4 MiB 0.11 0.00 6.33367 -137.427 -6.33367 6.33367 1.08 0.000394767 0.000320404 0.0317352 0.0262592 44 3717 27 6.79088e+06 282912 787024. 2723.27 3.98 0.190961 0.167448 3015 17 1620 4672 272321 57764 6.78448 6.78448 -159.661 -6.78448 0 0 997811. 3452.63 0.47 0.10 0.0316662 0.0290647 143 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_022.v common 28.34 vpr 61.50 MiB -1 -1 0.28 21608 13 0.41 -1 -1 35988 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62972 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 22.9 MiB 3.20 1384 61.5 MiB 0.10 0.00 6.41633 -142.91 -6.41633 6.41633 1.05 0.00034792 0.000282596 0.0291073 0.0241016 38 3955 30 6.79088e+06 282912 678818. 2348.85 20.82 0.281849 0.246409 3066 17 1454 4299 243679 52842 6.41633 6.41633 -156.524 -6.41633 0 0 902133. 3121.57 0.40 0.10 0.0306707 0.0281931 141 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_023.v common 6.46 vpr 60.50 MiB -1 -1 0.19 20648 9 0.12 -1 -1 35432 -1 -1 18 26 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61948 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 21.9 MiB 1.63 660 60.5 MiB 0.05 0.00 3.8527 -77.5335 -3.8527 3.8527 1.07 0.000185837 0.000151685 0.0127452 0.0105854 30 1843 25 6.79088e+06 242496 556674. 1926.21 1.20 0.0529558 0.0457286 1466 16 646 1561 88930 20705 3.88841 3.88841 -89.3636 -3.88841 0 0 706193. 2443.58 0.33 0.04 0.012148 0.0110469 67 69 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_024.v common 19.73 vpr 61.48 MiB -1 -1 0.24 20860 13 0.40 -1 -1 35996 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62960 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 23.0 MiB 2.78 1253 61.5 MiB 0.05 0.00 6.96033 -138.779 -6.96033 6.96033 1.08 0.000361781 0.000296038 0.0149781 0.0127418 40 2987 20 6.79088e+06 309856 706193. 2443.58 12.63 0.280656 0.246057 2753 17 1378 3800 222430 51554 7.21858 7.21858 -157.989 -7.21858 0 0 926341. 3205.33 0.41 0.09 0.0291928 0.0267087 136 192 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_025.v common 8.42 vpr 60.00 MiB -1 -1 0.18 20804 8 0.12 -1 -1 35292 -1 -1 11 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61444 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 21.5 MiB 2.78 732 60.0 MiB 0.06 0.00 3.54052 -82.8861 -3.54052 3.54052 1.07 0.000163486 0.000132112 0.0144587 0.011826 36 1737 25 6.79088e+06 148192 648988. 2245.63 1.93 0.0748862 0.0640016 1502 15 665 1496 83230 20502 3.54052 3.54052 -95.3452 -3.54052 0 0 828058. 2865.25 0.36 0.04 0.0104298 0.00942744 60 59 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_026.v common 25.77 vpr 61.23 MiB -1 -1 0.23 20988 15 0.34 -1 -1 36028 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 22.6 MiB 3.17 1080 61.2 MiB 0.09 0.00 7.39781 -145.71 -7.39781 7.39781 1.10 0.00033794 0.000278398 0.0262948 0.021964 40 3019 31 6.79088e+06 242496 706193. 2443.58 18.37 0.28071 0.245223 2884 18 1446 4134 290745 65043 7.39781 7.39781 -165.116 -7.39781 0 0 926341. 3205.33 0.39 0.10 0.0242368 0.021973 121 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_027.v common 13.43 vpr 61.21 MiB -1 -1 0.23 21424 13 0.33 -1 -1 36016 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62684 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 22.6 MiB 2.64 1113 61.2 MiB 0.10 0.00 5.77864 -128.437 -5.77864 5.77864 1.07 0.000309918 0.00024776 0.0275978 0.0226862 38 3328 46 6.79088e+06 242496 678818. 2348.85 6.58 0.182499 0.159184 2629 17 1185 3457 195648 43191 5.90394 5.90394 -142.338 -5.90394 0 0 902133. 3121.57 0.39 0.08 0.0255059 0.023353 117 165 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_028.v common 14.07 vpr 61.34 MiB -1 -1 0.26 21348 13 0.40 -1 -1 35864 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 22.8 MiB 2.28 1298 61.3 MiB 0.06 0.00 6.57662 -144.821 -6.57662 6.57662 1.10 0.000377807 0.000310619 0.0176754 0.0149496 36 3722 48 6.79088e+06 242496 648988. 2245.63 7.47 0.185507 0.162882 3079 17 1327 3804 241824 53893 6.95252 6.95252 -169.492 -6.95252 0 0 828058. 2865.25 0.38 0.09 0.0275924 0.0251843 136 184 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_029.v common 16.68 vpr 60.98 MiB -1 -1 0.23 20900 12 0.21 -1 -1 35844 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62444 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 22.6 MiB 2.86 1183 61.0 MiB 0.08 0.00 5.73944 -129.942 -5.73944 5.73944 1.07 0.000279981 0.000226233 0.0229838 0.0189303 34 3343 49 6.79088e+06 215552 618332. 2139.56 9.78 0.200285 0.172699 2567 30 1116 2630 448153 205114 6.11534 6.11534 -152.629 -6.11534 0 0 787024. 2723.27 0.35 0.17 0.0296892 0.0265221 103 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_030.v common 22.13 vpr 60.94 MiB -1 -1 0.22 21032 11 0.21 -1 -1 35764 -1 -1 18 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62404 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 22.4 MiB 2.52 793 60.9 MiB 0.07 0.00 5.07364 -108.411 -5.07364 5.07364 1.06 0.000244714 0.000199367 0.0180801 0.0150727 40 2102 36 6.79088e+06 242496 706193. 2443.58 15.71 0.225674 0.197063 1930 16 996 2416 154921 37304 5.69238 5.69238 -126.913 -5.69238 0 0 926341. 3205.33 0.39 0.06 0.0166051 0.0151361 95 122 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_031.v common 17.15 vpr 60.75 MiB -1 -1 0.22 21060 11 0.24 -1 -1 35880 -1 -1 21 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62208 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 22.1 MiB 2.24 823 60.8 MiB 0.08 0.00 5.61753 -109.103 -5.61753 5.61753 1.12 0.000290395 0.00023791 0.0229292 0.0190432 40 2121 22 6.79088e+06 282912 706193. 2443.58 10.77 0.235881 0.206318 1974 18 1086 2911 181147 42750 5.86813 5.86813 -121.9 -5.86813 0 0 926341. 3205.33 0.41 0.07 0.0222399 0.0201789 109 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_032.v common 20.29 vpr 61.39 MiB -1 -1 0.21 21060 12 0.30 -1 -1 35844 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62868 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 22.8 MiB 3.59 1070 61.4 MiB 0.05 0.00 5.99348 -135.202 -5.99348 5.99348 1.12 0.000384355 0.000304079 0.0136995 0.0114751 40 2649 19 6.79088e+06 229024 706193. 2443.58 12.53 0.259833 0.226573 2530 17 1360 3255 193823 46502 6.33018 6.33018 -155.716 -6.33018 0 0 926341. 3205.33 0.40 0.07 0.0234976 0.0213696 119 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_033.v common 10.38 vpr 61.05 MiB -1 -1 0.23 20940 12 0.23 -1 -1 35764 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62516 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 22.6 MiB 3.18 1035 61.1 MiB 0.05 0.00 5.67678 -119.807 -5.67678 5.67678 1.09 0.000324192 0.000244446 0.0146482 0.0123513 38 2622 30 6.79088e+06 229024 678818. 2348.85 3.15 0.1341 0.117545 2280 17 1083 2682 150599 34177 6.11873 6.11873 -142.393 -6.11873 0 0 902133. 3121.57 0.39 0.06 0.0201771 0.0183292 101 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_034.v common 10.95 vpr 60.97 MiB -1 -1 0.24 21108 10 0.20 -1 -1 35992 -1 -1 17 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62436 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 22.4 MiB 2.15 1089 61.0 MiB 0.06 0.00 4.98748 -113.008 -4.98748 4.98748 1.13 0.000279773 0.000222658 0.0187095 0.0155367 36 2573 22 6.79088e+06 229024 648988. 2245.63 4.74 0.185919 0.16294 2196 16 894 2600 150482 33295 5.48868 5.48868 -128.792 -5.48868 0 0 828058. 2865.25 0.39 0.07 0.0213341 0.0195931 103 131 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_035.v common 12.43 vpr 61.62 MiB -1 -1 0.28 21728 13 0.43 -1 -1 36016 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63096 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 23.1 MiB 2.64 1256 61.6 MiB 0.08 0.00 6.6382 -135.776 -6.6382 6.6382 1.06 0.000385591 0.000311421 0.0245172 0.0204477 38 3673 45 6.79088e+06 282912 678818. 2348.85 5.36 0.20893 0.182624 2794 20 1537 4456 240187 53979 6.70957 6.70957 -153.047 -6.70957 0 0 902133. 3121.57 0.41 0.10 0.034484 0.0313974 149 220 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_036.v common 11.34 vpr 61.61 MiB -1 -1 0.27 21884 14 0.48 -1 -1 36480 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63084 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 23.0 MiB 3.09 1379 61.6 MiB 0.10 0.00 6.74118 -147.672 -6.74118 6.74118 1.05 0.000358469 0.000292304 0.0299289 0.024698 44 3965 40 6.79088e+06 242496 787024. 2723.27 3.77 0.176221 0.152737 2863 17 1272 3558 192130 42841 6.99178 6.99178 -166.622 -6.99178 0 0 997811. 3452.63 0.46 0.08 0.0279575 0.0255965 136 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_037.v common 10.37 vpr 61.13 MiB -1 -1 0.22 20900 12 0.19 -1 -1 35624 -1 -1 16 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62600 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 22.7 MiB 2.96 1094 61.1 MiB 0.07 0.00 6.20488 -133.187 -6.20488 6.20488 1.07 0.000277262 0.000224751 0.0204367 0.0169869 36 2677 32 6.79088e+06 215552 648988. 2245.63 3.50 0.151914 0.13329 2286 18 1058 2779 159416 36279 6.41628 6.41628 -148.801 -6.41628 0 0 828058. 2865.25 0.38 0.07 0.0235194 0.0214163 101 148 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_038.v common 10.98 vpr 61.46 MiB -1 -1 0.25 21708 12 0.42 -1 -1 35936 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62932 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 23.0 MiB 3.14 1390 61.5 MiB 0.06 0.00 6.04382 -128.592 -6.04382 6.04382 1.00 0.000382959 0.000311206 0.0177796 0.0149986 40 3271 26 6.79088e+06 323328 706193. 2443.58 3.57 0.168284 0.147219 3306 23 1630 5049 430248 123851 6.42321 6.42321 -148.469 -6.42321 0 0 926341. 3205.33 0.41 0.15 0.0348052 0.0314023 146 214 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_039.v common 15.06 vpr 61.56 MiB -1 -1 0.31 21444 14 0.50 -1 -1 36308 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63036 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 22.9 MiB 1.99 1224 61.6 MiB 0.09 0.00 7.0533 -141.243 -7.0533 7.0533 1.11 0.000382956 0.000315549 0.0281354 0.0234317 30 3501 29 6.79088e+06 296384 556674. 1926.21 8.40 0.205903 0.179226 2729 16 1386 3831 188883 45825 7.25013 7.25013 -160.733 -7.25013 0 0 706193. 2443.58 0.33 0.08 0.0266897 0.024394 142 200 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_040.v common 11.89 vpr 61.23 MiB -1 -1 0.29 21516 13 0.37 -1 -1 36048 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 22.7 MiB 2.82 1292 61.2 MiB 0.09 0.00 7.06106 -140.6 -7.06106 7.06106 1.11 0.000355811 0.000292693 0.0248025 0.020897 38 3451 26 6.79088e+06 309856 678818. 2348.85 4.64 0.168648 0.148394 2880 16 1371 3447 196757 43821 7.43696 7.43696 -162.955 -7.43696 0 0 902133. 3121.57 0.41 0.09 0.028748 0.0264416 136 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_041.v common 11.56 vpr 61.41 MiB -1 -1 0.27 21160 13 0.41 -1 -1 35864 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62888 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 23.0 MiB 2.80 1350 61.4 MiB 0.08 0.00 6.33372 -133.055 -6.33372 6.33372 1.08 0.00034675 0.000281852 0.0217197 0.0179043 40 3545 49 6.79088e+06 282912 706193. 2443.58 4.45 0.16702 0.144742 3052 18 1297 3958 297004 61536 6.79223 6.79223 -155.197 -6.79223 0 0 926341. 3205.33 0.41 0.10 0.0268447 0.0243637 125 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_042.v common 10.62 vpr 61.09 MiB -1 -1 0.24 21104 12 0.27 -1 -1 36196 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62556 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 22.5 MiB 2.67 1127 61.1 MiB 0.08 0.00 5.77089 -126.408 -5.77089 5.77089 1.08 0.000289357 0.00023526 0.0232155 0.019261 36 3053 44 6.79088e+06 215552 648988. 2245.63 3.91 0.182825 0.160177 2441 16 1198 3165 190709 43062 5.89619 5.89619 -142.783 -5.89619 0 0 828058. 2865.25 0.38 0.08 0.0246054 0.0224873 111 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_043.v common 33.08 vpr 61.69 MiB -1 -1 0.33 22124 14 0.61 -1 -1 36304 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63168 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 23.1 MiB 1.68 1491 61.7 MiB 0.10 0.00 7.0141 -148.601 -7.0141 7.0141 1.10 0.000417094 0.00033915 0.0325362 0.0272637 40 3887 22 6.79088e+06 282912 706193. 2443.58 26.60 0.361991 0.317217 3699 24 1741 5028 409726 102688 7.3116 7.3116 -172.299 -7.3116 0 0 926341. 3205.33 0.42 0.16 0.0457509 0.0418205 159 229 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_044.v common 10.88 vpr 61.11 MiB -1 -1 0.21 20968 11 0.26 -1 -1 35564 -1 -1 16 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62576 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 22.6 MiB 3.02 1196 61.1 MiB 0.05 0.00 5.35574 -117.674 -5.35574 5.35574 1.07 0.00032642 0.000269371 0.0136385 0.0116542 38 3103 23 6.79088e+06 215552 678818. 2348.85 3.44 0.145672 0.128437 2559 29 1192 3464 435933 211685 5.61747 5.61747 -135.283 -5.61747 0 0 902133. 3121.57 0.41 0.19 0.0369946 0.0334577 112 156 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_045.v common 10.28 vpr 61.49 MiB -1 -1 0.27 21372 13 0.41 -1 -1 35976 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62968 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 23.0 MiB 2.57 1250 61.5 MiB 0.06 0.00 6.38411 -136.687 -6.38411 6.38411 1.07 0.000342752 0.000277866 0.0162697 0.0136448 38 3252 36 6.79088e+06 269440 678818. 2348.85 3.46 0.155839 0.13535 2671 20 1221 3894 212210 46526 6.92102 6.92102 -154.525 -6.92102 0 0 902133. 3121.57 0.40 0.09 0.0286453 0.0259422 137 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_046.v common 10.58 vpr 61.56 MiB -1 -1 0.26 21248 12 0.39 -1 -1 35848 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63040 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 22.9 MiB 2.68 1202 61.6 MiB 0.06 0.00 5.83242 -128.715 -5.83242 5.83242 1.07 0.000381746 0.000302878 0.0160341 0.0135599 40 3149 21 6.79088e+06 282912 706193. 2443.58 3.62 0.155624 0.136051 2921 17 1439 4622 266371 61130 5.91852 5.91852 -145.363 -5.91852 0 0 926341. 3205.33 0.40 0.10 0.0297225 0.0271498 146 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_047.v common 10.39 vpr 61.10 MiB -1 -1 0.24 20796 13 0.37 -1 -1 36172 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62568 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 22.6 MiB 1.87 1298 61.1 MiB 0.08 0.00 6.47021 -140.947 -6.47021 6.47021 1.09 0.00037124 0.000301536 0.0221171 0.0184635 36 3363 23 6.79088e+06 296384 648988. 2245.63 4.33 0.178572 0.157017 2770 17 1260 3456 223608 49151 6.97141 6.97141 -162.942 -6.97141 0 0 828058. 2865.25 0.38 0.09 0.0286893 0.0262043 131 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_048.v common 17.71 vpr 61.20 MiB -1 -1 0.28 21388 13 0.31 -1 -1 35932 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62668 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 22.7 MiB 3.70 1301 61.2 MiB 0.07 0.00 6.00816 -133.25 -6.00816 6.00816 1.12 0.000347124 0.000282867 0.02187 0.0184247 36 3723 49 6.79088e+06 242496 648988. 2245.63 9.73 0.185489 0.162828 2882 18 1504 4041 253293 54240 6.17261 6.17261 -152.096 -6.17261 0 0 828058. 2865.25 0.38 0.09 0.0273966 0.0249479 124 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_049.v common 29.68 vpr 61.57 MiB -1 -1 0.28 21160 12 0.35 -1 -1 36056 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63048 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 23.0 MiB 2.84 1394 61.6 MiB 0.07 0.00 6.20837 -140.786 -6.20837 6.20837 1.13 0.00039233 0.000327142 0.019624 0.0166198 38 3704 25 6.79088e+06 269440 678818. 2348.85 22.45 0.286191 0.251674 2972 17 1289 4065 220264 47776 6.20837 6.20837 -152.665 -6.20837 0 0 902133. 3121.57 0.42 0.09 0.0305986 0.0281501 140 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_050.v common 10.26 vpr 61.53 MiB -1 -1 0.27 21528 13 0.44 -1 -1 36368 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63008 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 23.1 MiB 2.34 1245 61.5 MiB 0.07 0.00 6.59551 -142.402 -6.59551 6.59551 1.06 0.000385979 0.000314039 0.0212953 0.017806 44 3347 22 6.79088e+06 269440 787024. 2723.27 3.51 0.161349 0.140325 2771 17 1284 3687 199706 45809 6.76001 6.76001 -158.309 -6.76001 0 0 997811. 3452.63 0.46 0.08 0.0294351 0.0269017 145 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_051.v common 19.91 vpr 61.29 MiB -1 -1 0.25 21284 14 0.41 -1 -1 35904 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62760 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 22.9 MiB 2.10 1162 61.3 MiB 0.06 0.00 6.83847 -139.592 -6.83847 6.83847 1.09 0.000323522 0.000256747 0.0173181 0.0143739 38 2868 25 6.79088e+06 269440 678818. 2348.85 13.49 0.240468 0.2103 2591 21 1354 3954 218435 47942 7.42577 7.42577 -165.876 -7.42577 0 0 902133. 3121.57 0.41 0.09 0.0309354 0.0282192 125 167 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_052.v common 22.17 vpr 61.34 MiB -1 -1 0.25 21352 13 0.40 -1 -1 35860 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 22.7 MiB 3.19 1242 61.3 MiB 0.10 0.00 6.58776 -131.269 -6.58776 6.58776 1.09 0.000351276 0.000284431 0.0293746 0.0242759 38 3220 49 6.79088e+06 282912 678818. 2348.85 14.57 0.30494 0.266624 2830 29 1506 4249 366003 138530 6.79146 6.79146 -150.543 -6.79146 0 0 902133. 3121.57 0.41 0.15 0.0388538 0.0349454 136 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_053.v common 11.20 vpr 61.28 MiB -1 -1 0.28 21612 13 0.42 -1 -1 36036 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62752 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 22.6 MiB 2.56 1320 61.3 MiB 0.06 0.00 6.46246 -138.817 -6.46246 6.46246 1.08 0.000354558 0.000288941 0.0173307 0.0145863 34 3903 40 6.79088e+06 282912 618332. 2139.56 4.39 0.184185 0.160647 3230 20 1822 4931 334814 72316 7.00286 7.00286 -164.65 -7.00286 0 0 787024. 2723.27 0.36 0.12 0.0338699 0.0307849 144 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_054.v common 10.36 vpr 61.37 MiB -1 -1 0.27 21612 12 0.45 -1 -1 35880 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62840 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 22.9 MiB 2.20 1252 61.4 MiB 0.09 0.00 6.48708 -135.756 -6.48708 6.48708 1.09 0.00038578 0.000316693 0.0276197 0.0228229 40 3169 28 6.79088e+06 282912 706193. 2443.58 3.68 0.175122 0.151961 3046 16 1522 4114 246473 57291 6.86298 6.86298 -155.628 -6.86298 0 0 926341. 3205.33 0.42 0.10 0.0313065 0.0287681 147 213 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_055.v common 8.04 vpr 60.96 MiB -1 -1 0.21 20856 11 0.19 -1 -1 35876 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62428 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 22.5 MiB 1.85 963 61.0 MiB 0.06 0.00 5.15198 -114.419 -5.15198 5.15198 1.05 0.000260698 0.000208142 0.0153611 0.0126684 36 2511 28 6.79088e+06 188608 648988. 2245.63 2.36 0.109504 0.0944543 2161 14 925 2289 156501 35361 5.40258 5.40258 -134.372 -5.40258 0 0 828058. 2865.25 0.37 0.06 0.0165721 0.01509 91 121 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_056.v common 13.70 vpr 61.47 MiB -1 -1 0.24 21160 13 0.30 -1 -1 35680 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62944 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 22.8 MiB 2.44 1136 61.5 MiB 0.07 0.00 6.37292 -136.508 -6.37292 6.37292 1.06 0.000321124 0.000261478 0.0196346 0.0163492 36 3289 50 6.79088e+06 269440 648988. 2245.63 7.19 0.165384 0.144088 2730 15 1243 3165 204825 45368 6.74882 6.74882 -160.566 -6.74882 0 0 828058. 2865.25 0.37 0.08 0.0253867 0.0231928 118 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_057.v common 11.30 vpr 61.80 MiB -1 -1 0.29 21856 14 0.67 -1 -1 36092 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63280 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 23.4 MiB 1.88 1632 61.8 MiB 0.09 0.00 7.8164 -156.748 -7.8164 7.8164 1.09 0.000467719 0.000369672 0.0260093 0.021571 40 4145 46 6.79088e+06 323328 706193. 2443.58 4.52 0.218495 0.190118 3678 30 1838 5338 691198 275111 8.396 8.396 -182.017 -8.396 0 0 926341. 3205.33 0.41 0.26 0.0521415 0.0472575 171 243 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_058.v common 11.55 vpr 61.39 MiB -1 -1 0.24 21124 13 0.40 -1 -1 36040 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62860 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 22.9 MiB 2.09 1302 61.4 MiB 0.05 0.00 6.63471 -142.748 -6.63471 6.63471 1.01 0.000317024 0.00025689 0.0151692 0.0128366 38 3739 36 6.79088e+06 282912 678818. 2348.85 5.38 0.15922 0.139562 2835 19 1407 3677 202432 45239 7.01061 7.01061 -167.761 -7.01061 0 0 902133. 3121.57 0.39 0.08 0.0267505 0.0242594 134 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_059.v common 6.87 vpr 61.05 MiB -1 -1 0.22 20928 11 0.22 -1 -1 35892 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62512 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 22.5 MiB 1.00 973 61.0 MiB 0.08 0.00 5.56719 -119.928 -5.56719 5.56719 1.05 0.000276944 0.000212047 0.0236594 0.0194624 30 2801 25 6.79088e+06 229024 556674. 1926.21 1.98 0.0931519 0.0809685 2175 19 1108 3145 163032 37222 5.72809 5.72809 -137.446 -5.72809 0 0 706193. 2443.58 0.33 0.07 0.0231726 0.0210745 101 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_060.v common 15.51 vpr 61.91 MiB -1 -1 0.30 22216 15 0.77 -1 -1 36152 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63392 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 23.4 MiB 1.63 1629 61.9 MiB 0.08 0.00 7.85565 -161.261 -7.85565 7.85565 1.10 0.00046214 0.000378347 0.0258285 0.0217421 36 4503 31 6.79088e+06 336800 648988. 2245.63 8.95 0.233255 0.205045 3589 30 2019 5734 414922 132463 8.3176 8.3176 -186.296 -8.3176 0 0 828058. 2865.25 0.38 0.18 0.0552893 0.0500236 179 256 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_061.v common 12.36 vpr 61.46 MiB -1 -1 0.26 21324 13 0.45 -1 -1 36224 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62940 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 22.8 MiB 1.60 1335 61.5 MiB 0.06 0.00 7.01061 -151.289 -7.01061 7.01061 1.10 0.000411007 0.000331962 0.0185199 0.0156208 34 3861 34 6.79088e+06 269440 618332. 2139.56 6.43 0.179536 0.15767 3169 18 1396 3759 223444 50821 7.46912 7.46912 -174.728 -7.46912 0 0 787024. 2723.27 0.36 0.09 0.0319951 0.0292986 139 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_062.v common 9.13 vpr 60.85 MiB -1 -1 0.21 20760 11 0.18 -1 -1 35888 -1 -1 13 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62308 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 22.2 MiB 1.82 1128 60.8 MiB 0.04 0.00 5.40613 -119.299 -5.40613 5.40613 1.07 0.000280295 0.000228849 0.00969189 0.00821138 36 2754 17 6.79088e+06 175136 648988. 2245.63 3.45 0.115917 0.102038 2366 14 867 2213 147162 31692 6.03263 6.03263 -142.509 -6.03263 0 0 828058. 2865.25 0.38 0.06 0.019157 0.0175582 94 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_063.v common 30.53 vpr 61.54 MiB -1 -1 0.27 21120 12 0.45 -1 -1 36052 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63020 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 23.1 MiB 1.65 1454 61.5 MiB 0.07 0.00 6.25876 -134.989 -6.25876 6.25876 1.10 0.000439813 0.000367906 0.0225176 0.0189303 40 3400 20 6.79088e+06 269440 706193. 2443.58 24.32 0.312916 0.273393 3225 27 1363 4302 407308 135061 6.63466 6.63466 -157.64 -6.63466 0 0 926341. 3205.33 0.41 0.17 0.0438381 0.039739 146 210 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_064.v common 10.14 vpr 61.03 MiB -1 -1 0.21 20912 12 0.31 -1 -1 36224 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62496 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 22.5 MiB 1.77 1051 61.0 MiB 0.07 0.00 5.95433 -124.938 -5.95433 5.95433 1.10 0.000316046 0.000256212 0.0176832 0.0147335 36 2989 38 6.79088e+06 242496 648988. 2245.63 4.23 0.156244 0.137248 2481 17 1140 2949 166432 39109 6.45553 6.45553 -146.081 -6.45553 0 0 828058. 2865.25 0.38 0.08 0.0253602 0.0233265 113 148 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_065.v common 16.10 vpr 61.09 MiB -1 -1 0.22 20836 12 0.27 -1 -1 35872 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 22.4 MiB 1.37 977 61.1 MiB 0.05 0.00 6.38406 -127.728 -6.38406 6.38406 1.07 0.000289604 0.000237501 0.0142018 0.0120272 30 2615 21 6.79088e+06 229024 556674. 1926.21 10.87 0.155887 0.136971 2102 15 889 2503 131167 30773 6.38406 6.38406 -141.735 -6.38406 0 0 706193. 2443.58 0.32 0.06 0.0196898 0.0180487 106 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_066.v common 11.42 vpr 61.59 MiB -1 -1 0.28 21312 12 0.41 -1 -1 35852 -1 -1 26 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63068 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 23.1 MiB 3.03 1213 61.6 MiB 0.06 0.00 6.28333 -121.696 -6.28333 6.28333 1.11 0.000382961 0.000308327 0.0184804 0.0155239 38 3325 44 6.79088e+06 350272 678818. 2348.85 4.00 0.18477 0.162164 2628 19 1251 3772 200614 43880 6.62003 6.62003 -136.024 -6.62003 0 0 902133. 3121.57 0.40 0.08 0.0281398 0.0255619 140 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_067.v common 26.03 vpr 61.72 MiB -1 -1 0.27 21252 13 0.52 -1 -1 36012 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63204 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 23.2 MiB 1.53 1448 61.7 MiB 0.11 0.00 6.87407 -144.711 -6.87407 6.87407 1.09 0.000415685 0.000339861 0.0311533 0.025678 40 3404 24 6.79088e+06 309856 706193. 2443.58 19.97 0.306057 0.263552 3339 23 2295 5729 352127 77600 7.16808 7.16808 -168.049 -7.16808 0 0 926341. 3205.33 0.40 0.13 0.0364043 0.0328003 160 235 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_068.v common 20.81 vpr 61.56 MiB -1 -1 0.26 21384 12 0.33 -1 -1 36020 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63040 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 23.0 MiB 1.75 1331 61.6 MiB 0.06 0.00 6.46246 -140.623 -6.46246 6.46246 1.10 0.000385973 0.000319763 0.0187105 0.0157282 40 3201 25 6.79088e+06 269440 706193. 2443.58 14.83 0.308851 0.271249 3040 22 1655 5003 309703 67218 6.83836 6.83836 -161.658 -6.83836 0 0 926341. 3205.33 0.38 0.12 0.0352328 0.0319524 140 195 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_069.v common 11.03 vpr 61.07 MiB -1 -1 0.23 20976 12 0.20 -1 -1 35784 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62540 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 22.6 MiB 2.81 893 61.1 MiB 0.05 0.00 6.24757 -126.455 -6.24757 6.24757 1.14 0.000287806 0.00023841 0.0131011 0.0110979 34 2779 39 6.79088e+06 202080 618332. 2139.56 4.16 0.137802 0.121537 2318 17 970 2474 177676 40307 6.24757 6.24757 -146.84 -6.24757 0 0 787024. 2723.27 0.37 0.07 0.021163 0.0193724 93 119 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_070.v common 9.55 vpr 61.22 MiB -1 -1 0.24 21332 12 0.30 -1 -1 35680 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62688 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 22.7 MiB 1.94 907 61.2 MiB 0.07 0.00 6.09963 -120.749 -6.09963 6.09963 1.10 0.000299643 0.000249029 0.0202471 0.0169977 38 2693 26 6.79088e+06 255968 678818. 2348.85 3.48 0.14908 0.130944 2150 17 1109 3017 150795 36180 6.22493 6.22493 -137.44 -6.22493 0 0 902133. 3121.57 0.41 0.07 0.0245167 0.022479 111 151 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_071.v common 10.25 vpr 61.06 MiB -1 -1 0.26 21228 11 0.28 -1 -1 36016 -1 -1 20 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62524 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 22.4 MiB 2.12 1201 61.1 MiB 0.06 0.00 5.62872 -115.728 -5.62872 5.62872 1.12 0.000346912 0.000283167 0.0190129 0.0159198 34 3289 41 6.79088e+06 269440 618332. 2139.56 3.81 0.177051 0.155776 2855 28 1215 3809 469165 194023 5.73928 5.73928 -134.423 -5.73928 0 0 787024. 2723.27 0.38 0.20 0.0405132 0.0368979 125 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_072.v common 9.88 vpr 61.34 MiB -1 -1 0.23 21020 11 0.29 -1 -1 36052 -1 -1 19 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 22.8 MiB 1.85 928 61.3 MiB 0.08 0.00 5.35574 -104.926 -5.35574 5.35574 1.08 0.00031675 0.000257017 0.022455 0.0182775 36 2981 25 6.79088e+06 255968 648988. 2245.63 3.94 0.137738 0.118505 2320 19 1280 3749 212861 48947 5.39145 5.39145 -119.737 -5.39145 0 0 828058. 2865.25 0.38 0.08 0.0251461 0.0227491 116 166 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_073.v common 11.68 vpr 61.20 MiB -1 -1 0.24 21324 13 0.29 -1 -1 35896 -1 -1 18 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62664 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 22.7 MiB 2.47 994 61.2 MiB 0.07 0.00 5.9509 -121.029 -5.9509 5.9509 1.08 0.000289295 0.000236231 0.0205025 0.0171151 34 3219 40 6.79088e+06 242496 618332. 2139.56 5.17 0.164223 0.14398 2477 16 1094 3075 198572 44741 6.40514 6.40514 -143.122 -6.40514 0 0 787024. 2723.27 0.38 0.08 0.0242243 0.0221833 108 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_074.v common 28.72 vpr 61.20 MiB -1 -1 0.25 21480 12 0.28 -1 -1 35732 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62672 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 22.6 MiB 2.99 946 61.2 MiB 0.08 0.00 5.91852 -130.583 -5.91852 5.91852 1.10 0.000330458 0.000270316 0.0241743 0.0199471 40 2769 29 6.79088e+06 242496 706193. 2443.58 21.40 0.298624 0.260247 2552 28 1355 3574 391042 145381 5.91852 5.91852 -151.505 -5.91852 0 0 926341. 3205.33 0.42 0.16 0.0377232 0.034158 120 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_075.v common 9.38 vpr 61.33 MiB -1 -1 0.24 21464 13 0.41 -1 -1 36008 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62804 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 22.9 MiB 2.46 1220 61.3 MiB 0.09 0.00 7.01416 -139.236 -7.01416 7.01416 1.12 0.000338416 0.000268031 0.0258043 0.0212768 38 2994 19 6.79088e+06 282912 678818. 2348.85 2.57 0.161109 0.140866 2556 16 1179 3239 167944 37662 7.13946 7.13946 -155.15 -7.13946 0 0 902133. 3121.57 0.40 0.08 0.0278287 0.0256582 137 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_076.v common 15.46 vpr 61.45 MiB -1 -1 0.27 21516 14 0.37 -1 -1 36056 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62928 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 22.8 MiB 1.87 1354 61.5 MiB 0.06 0.00 7.13946 -152.067 -7.13946 7.13946 1.10 0.000412938 0.00033214 0.0151827 0.0128561 36 3828 28 6.79088e+06 269440 648988. 2245.63 9.18 0.171704 0.151191 3169 31 1526 4523 468166 180148 7.47615 7.47615 -172.325 -7.47615 0 0 828058. 2865.25 0.39 0.20 0.0479024 0.0436049 132 195 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_077.v common 12.99 vpr 61.46 MiB -1 -1 0.27 21576 14 0.35 -1 -1 36008 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62936 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 23.0 MiB 2.90 1073 61.5 MiB 0.10 0.00 6.4913 -131.077 -6.4913 6.4913 1.07 0.000329873 0.000267845 0.0311165 0.0257824 36 3314 33 6.79088e+06 229024 648988. 2245.63 5.82 0.188233 0.164124 2713 22 1678 4909 330709 72745 6.70957 6.70957 -148.679 -6.70957 0 0 828058. 2865.25 0.38 0.12 0.0337828 0.0306308 122 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_078.v common 28.80 vpr 61.12 MiB -1 -1 0.28 21364 13 0.49 -1 -1 35884 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62588 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 22.7 MiB 2.53 1366 61.1 MiB 0.06 0.00 6.92457 -141.404 -6.92457 6.92457 1.07 0.00038853 0.00031843 0.0162072 0.0136868 40 3440 26 6.79088e+06 296384 706193. 2443.58 21.73 0.343574 0.301879 3266 31 1698 4886 504194 179478 7.04987 7.04987 -159.816 -7.04987 0 0 926341. 3205.33 0.42 0.20 0.046436 0.041909 144 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_079.v common 10.85 vpr 60.95 MiB -1 -1 0.23 21060 13 0.25 -1 -1 35888 -1 -1 18 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62412 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 22.5 MiB 2.87 951 60.9 MiB 0.07 0.00 6.04387 -123.574 -6.04387 6.04387 1.05 0.00030957 0.000251921 0.0231287 0.0191611 36 2662 41 6.79088e+06 242496 648988. 2245.63 4.01 0.157708 0.137397 2165 16 1012 2520 138515 32613 6.45548 6.45548 -143.389 -6.45548 0 0 828058. 2865.25 0.38 0.06 0.0211558 0.0193148 104 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_080.v common 13.33 vpr 61.51 MiB -1 -1 0.28 21684 13 0.66 -1 -1 35884 -1 -1 22 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62988 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 23.1 MiB 2.60 1415 61.5 MiB 0.08 0.00 6.7243 -141.51 -6.7243 6.7243 1.05 0.000393272 0.000305138 0.0234382 0.0194451 36 3955 28 6.79088e+06 296384 648988. 2245.63 6.18 0.165865 0.143588 3387 21 1970 5592 433287 108435 7.21088 7.21088 -166.349 -7.21088 0 0 828058. 2865.25 0.37 0.14 0.0334446 0.0303034 145 200 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_081.v common 11.00 vpr 61.58 MiB -1 -1 0.28 21384 14 0.46 -1 -1 36012 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63060 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 23.0 MiB 2.38 1307 61.6 MiB 0.07 0.00 7.05762 -150.619 -7.05762 7.05762 1.11 0.000366059 0.00030023 0.0218131 0.0183593 38 3331 25 6.79088e+06 242496 678818. 2348.85 4.14 0.166357 0.146098 2756 18 1240 3689 212841 46764 7.30822 7.30822 -168.387 -7.30822 0 0 902133. 3121.57 0.40 0.09 0.0284652 0.0260572 128 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_082.v common 10.32 vpr 61.41 MiB -1 -1 0.27 21248 13 0.35 -1 -1 36080 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62888 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 22.8 MiB 2.68 1098 61.4 MiB 0.06 0.00 6.20837 -134.83 -6.20837 6.20837 1.11 0.000346536 0.000280092 0.0156855 0.0130377 38 3156 28 6.79088e+06 255968 678818. 2348.85 3.33 0.156501 0.137628 2505 20 1399 3781 195875 44075 6.37287 6.37287 -150.267 -6.37287 0 0 902133. 3121.57 0.39 0.09 0.0289452 0.0260943 124 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_083.v common 11.12 vpr 61.34 MiB -1 -1 0.27 21160 13 0.29 -1 -1 36436 -1 -1 19 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62808 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 22.7 MiB 2.46 1160 61.3 MiB 0.09 0.00 6.13113 -122.378 -6.13113 6.13113 1.06 0.000338918 0.00027728 0.0285767 0.0235134 38 2991 33 6.79088e+06 255968 678818. 2348.85 4.50 0.154402 0.133092 2417 16 1120 3029 150618 34924 6.71843 6.71843 -142.296 -6.71843 0 0 902133. 3121.57 0.40 0.07 0.0240281 0.0219536 121 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_084.v common 14.13 vpr 61.75 MiB -1 -1 0.26 21160 14 0.51 -1 -1 36096 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63236 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 23.3 MiB 2.24 1440 61.8 MiB 0.08 0.00 7.13597 -150.968 -7.13597 7.13597 1.04 0.00037453 0.000307867 0.0243661 0.0203609 38 4294 44 6.79088e+06 282912 678818. 2348.85 7.54 0.214801 0.188931 3205 16 1559 4581 241823 54031 7.26127 7.26127 -166.187 -7.26127 0 0 902133. 3121.57 0.40 0.09 0.0297761 0.0273277 154 215 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_085.v common 11.66 vpr 61.37 MiB -1 -1 0.28 21472 11 0.42 -1 -1 35724 -1 -1 23 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 22.9 MiB 3.01 1148 61.4 MiB 0.08 0.00 6.00472 -118.112 -6.00472 6.00472 1.10 0.000331627 0.000268789 0.0227441 0.0189098 34 3497 39 6.79088e+06 309856 618332. 2139.56 4.32 0.179233 0.157348 2830 16 1317 3677 227775 51058 6.38057 6.38057 -135.105 -6.38057 0 0 787024. 2723.27 0.38 0.09 0.0267115 0.0245456 136 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_086.v common 11.68 vpr 60.74 MiB -1 -1 0.22 20844 13 0.23 -1 -1 36004 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62200 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 22.1 MiB 4.25 1134 60.7 MiB 0.05 0.00 5.86474 -139.056 -5.86474 5.86474 1.09 0.000278309 0.00022613 0.0142777 0.0119595 38 2703 16 6.79088e+06 188608 678818. 2348.85 3.37 0.12121 0.106683 2399 22 1094 2521 152393 33777 6.27984 6.27984 -157.757 -6.27984 0 0 902133. 3121.57 0.42 0.07 0.0239066 0.0216495 98 127 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_087.v common 23.93 vpr 61.21 MiB -1 -1 0.26 21420 14 0.35 -1 -1 35924 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62676 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 22.8 MiB 2.32 1047 61.2 MiB 0.08 0.00 7.01067 -139.089 -7.01067 7.01067 1.07 0.000315958 0.000259179 0.0238385 0.0199933 38 3455 48 6.79088e+06 229024 678818. 2348.85 17.44 0.290281 0.253741 2419 19 1462 3882 201994 48070 7.55106 7.55106 -160.846 -7.55106 0 0 902133. 3121.57 0.38 0.08 0.0268682 0.0244268 122 172 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_088.v common 10.07 vpr 61.57 MiB -1 -1 0.28 21876 15 0.62 -1 -1 36040 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63048 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 22.9 MiB 2.29 1503 61.6 MiB 0.07 0.00 7.35091 -156.233 -7.35091 7.35091 1.07 0.000436348 0.000357214 0.0199704 0.0168519 44 4126 35 6.79088e+06 309856 787024. 2723.27 3.14 0.183369 0.159642 3292 16 1665 4413 244061 53752 8.34904 8.34904 -185.413 -8.34904 0 0 997811. 3452.63 0.46 0.10 0.0318608 0.029187 163 239 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_089.v common 7.92 vpr 60.87 MiB -1 -1 0.22 20916 11 0.22 -1 -1 35744 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62332 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 22.4 MiB 2.25 1011 60.9 MiB 0.05 0.00 5.62872 -122.967 -5.62872 5.62872 1.02 0.000261205 0.000211644 0.0142596 0.0119394 30 2781 47 6.79088e+06 202080 556674. 1926.21 1.91 0.0964195 0.0844581 2220 14 846 2169 119857 27520 6.00462 6.00462 -143.931 -6.00462 0 0 706193. 2443.58 0.32 0.05 0.0172836 0.0158523 97 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_090.v common 23.24 vpr 61.07 MiB -1 -1 0.21 20964 12 0.27 -1 -1 35868 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62540 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 22.6 MiB 2.27 991 61.1 MiB 0.09 0.00 5.55251 -121.125 -5.55251 5.55251 1.11 0.000300212 0.000243509 0.0239416 0.0198337 38 3365 30 6.79088e+06 229024 678818. 2348.85 16.79 0.262144 0.229258 2445 17 1273 3391 183307 42923 5.67781 5.67781 -140.133 -5.67781 0 0 902133. 3121.57 0.41 0.08 0.0258483 0.0238063 112 151 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_091.v common 9.14 vpr 61.61 MiB -1 -1 0.29 21388 12 0.44 -1 -1 36040 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63088 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 23.2 MiB 1.74 1313 61.6 MiB 0.08 0.00 6.17261 -136.516 -6.17261 6.17261 1.11 0.000452152 0.000370365 0.0255623 0.0213877 40 3131 22 6.79088e+06 255968 706193. 2443.58 2.88 0.188703 0.166662 3100 17 1593 4763 291916 64452 6.63461 6.63461 -158.376 -6.63461 0 0 926341. 3205.33 0.43 0.11 0.0313969 0.0287685 143 205 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_092.v common 31.77 vpr 61.46 MiB -1 -1 0.27 21288 12 0.35 -1 -1 36024 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62932 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 23.0 MiB 2.82 1330 61.5 MiB 0.10 0.00 6.33367 -134.702 -6.33367 6.33367 1.11 0.000345407 0.000277376 0.0298841 0.0247574 38 3763 35 6.79088e+06 242496 678818. 2348.85 24.60 0.268164 0.233726 3002 19 1419 3940 242584 51735 6.58427 6.58427 -154.574 -6.58427 0 0 902133. 3121.57 0.39 0.09 0.0268542 0.0243858 130 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_093.v common 14.42 vpr 61.92 MiB -1 -1 0.28 21780 14 0.68 -1 -1 36076 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63404 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 23.3 MiB 2.62 1421 61.9 MiB 0.07 0.00 7.8164 -155.921 -7.8164 7.8164 1.11 0.000409492 0.000327735 0.0224633 0.0188268 34 4924 44 6.79088e+06 296384 618332. 2139.56 7.07 0.217762 0.19058 3757 22 2009 6039 398184 86574 8.3176 8.3176 -184.018 -8.3176 0 0 787024. 2723.27 0.37 0.14 0.0413204 0.037587 167 232 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_094.v common 11.71 vpr 61.34 MiB -1 -1 0.26 21308 12 0.30 -1 -1 36020 -1 -1 19 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62808 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 22.8 MiB 2.35 1044 61.3 MiB 0.07 0.00 5.90738 -117.268 -5.90738 5.90738 1.07 0.000311122 0.000251788 0.0200921 0.0166017 36 3196 47 6.79088e+06 255968 648988. 2245.63 5.26 0.155555 0.13485 2523 15 1069 3103 188578 43093 6.15798 6.15798 -132.727 -6.15798 0 0 828058. 2865.25 0.38 0.07 0.0227887 0.0208743 121 155 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_095.v common 14.20 vpr 60.79 MiB -1 -1 0.23 21148 11 0.26 -1 -1 35868 -1 -1 19 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62252 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 22.1 MiB 2.88 926 60.8 MiB 0.07 0.00 5.79322 -109.065 -5.79322 5.79322 1.12 0.000266113 0.000214523 0.020516 0.0170678 34 2362 48 6.79088e+06 255968 618332. 2139.56 7.25 0.228586 0.198175 2058 16 915 2356 132797 31165 6.79562 6.79562 -128.259 -6.79562 0 0 787024. 2723.27 0.37 0.06 0.0203589 0.0186577 104 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_096.v common 12.47 vpr 62.21 MiB -1 -1 0.31 21916 13 0.63 -1 -1 36136 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63700 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 23.8 MiB 2.36 1699 62.2 MiB 0.13 0.00 6.48251 -136.546 -6.48251 6.48251 1.12 0.000528141 0.000438736 0.0418805 0.0347127 40 4252 35 6.79088e+06 350272 706193. 2443.58 5.15 0.240544 0.209138 4071 27 2068 6261 463834 129153 6.98371 6.98371 -157.865 -6.98371 0 0 926341. 3205.33 0.43 0.18 0.0533695 0.0479435 188 285 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_097.v common 16.41 vpr 61.32 MiB -1 -1 0.27 21640 14 0.35 -1 -1 35816 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 22.9 MiB 2.39 1265 61.3 MiB 0.05 0.00 6.8027 -138.932 -6.8027 6.8027 1.08 0.000355761 0.000283771 0.0159274 0.0134789 30 3239 31 6.79088e+06 296384 556674. 1926.21 9.87 0.202956 0.178503 2701 19 1231 3352 170753 39336 7.59021 7.59021 -164.612 -7.59021 0 0 706193. 2443.58 0.34 0.08 0.0310945 0.028354 130 184 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_098.v common 9.96 vpr 61.07 MiB -1 -1 0.25 21476 12 0.24 -1 -1 35548 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62536 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 22.6 MiB 2.31 1155 61.1 MiB 0.06 0.00 6.02467 -131.518 -6.02467 6.02467 1.09 0.000307772 0.000252289 0.0160349 0.0133341 38 2822 32 6.79088e+06 242496 678818. 2348.85 3.59 0.139503 0.122446 2360 15 990 2505 138251 30968 6.40057 6.40057 -151.776 -6.40057 0 0 902133. 3121.57 0.40 0.06 0.021852 0.0201204 109 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_099.v common 24.52 vpr 61.32 MiB -1 -1 0.24 21132 13 0.38 -1 -1 35876 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 22.9 MiB 1.93 1204 61.3 MiB 0.10 0.00 6.96377 -141.636 -6.96377 6.96377 1.05 0.000375781 0.000294567 0.029199 0.0242249 40 3045 47 6.79088e+06 242496 706193. 2443.58 18.35 0.325147 0.285452 2616 14 1229 3280 177967 41895 7.21437 7.21437 -159.766 -7.21437 0 0 926341. 3205.33 0.43 0.07 0.0248144 0.0228442 128 168 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_100.v common 10.93 vpr 61.60 MiB -1 -1 0.28 21528 13 0.47 -1 -1 36020 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63076 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 23.0 MiB 2.42 1399 61.6 MiB 0.07 0.00 5.91857 -128.689 -5.91857 5.91857 1.11 0.000543388 0.000457051 0.0197426 0.0168539 40 3622 27 6.79088e+06 323328 706193. 2443.58 3.98 0.190237 0.168207 3402 20 1813 5215 347397 84729 6.16568 6.16568 -148.471 -6.16568 0 0 926341. 3205.33 0.41 0.12 0.0340416 0.0308841 157 228 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_101.v common 9.78 vpr 61.33 MiB -1 -1 0.25 21384 11 0.36 -1 -1 36020 -1 -1 22 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62800 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 22.7 MiB 2.29 1154 61.3 MiB 0.06 0.00 5.79322 -116.39 -5.79322 5.79322 1.09 0.000357721 0.000284374 0.0193507 0.0162358 38 3341 25 6.79088e+06 296384 678818. 2348.85 3.27 0.182411 0.160806 2650 19 1287 3976 208572 48055 6.20483 6.20483 -132.417 -6.20483 0 0 902133. 3121.57 0.41 0.09 0.0309852 0.028291 141 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_102.v common 11.08 vpr 61.51 MiB -1 -1 0.29 21180 15 0.52 -1 -1 36012 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62988 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 23.1 MiB 2.16 1363 61.5 MiB 0.06 0.00 7.13602 -153.034 -7.13602 7.13602 1.12 0.000453413 0.000369852 0.0160796 0.0137057 40 3227 40 6.79088e+06 296384 706193. 2443.58 4.32 0.19678 0.174109 3192 18 1462 4574 317827 67655 7.42233 7.42233 -171.062 -7.42233 0 0 926341. 3205.33 0.44 0.12 0.034333 0.0315634 147 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_103.v common 10.38 vpr 61.27 MiB -1 -1 0.28 21456 13 0.50 -1 -1 36040 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62740 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 22.6 MiB 2.87 1311 61.3 MiB 0.08 0.00 6.75231 -148.531 -6.75231 6.75231 1.12 0.000357202 0.000286876 0.0214194 0.0177293 38 3334 19 6.79088e+06 282912 678818. 2348.85 3.00 0.172273 0.151868 2817 18 1387 4094 206062 46959 7.00291 7.00291 -166.16 -7.00291 0 0 902133. 3121.57 0.41 0.09 0.0316412 0.028983 143 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_104.v common 16.27 vpr 60.70 MiB -1 -1 0.24 20912 12 0.29 -1 -1 35748 -1 -1 18 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62160 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 22.2 MiB 2.46 961 60.7 MiB 0.05 0.00 6.16491 -124.764 -6.16491 6.16491 1.06 0.000297991 0.000242301 0.0131191 0.0110416 36 3221 35 6.79088e+06 242496 648988. 2245.63 9.58 0.184706 0.159774 2562 52 1366 3464 632137 331665 6.16491 6.16491 -140.463 -6.16491 0 0 828058. 2865.25 0.39 0.27 0.0471101 0.0415386 111 150 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_105.v common 8.84 vpr 60.95 MiB -1 -1 0.22 21480 11 0.21 -1 -1 35828 -1 -1 14 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62412 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 22.4 MiB 2.10 1036 60.9 MiB 0.05 0.00 5.61753 -123.455 -5.61753 5.61753 1.10 0.000290411 0.000238628 0.0142279 0.011977 38 2588 23 6.79088e+06 188608 678818. 2348.85 2.77 0.134226 0.118018 2124 17 957 2288 125542 28783 5.74283 5.74283 -140.496 -5.74283 0 0 902133. 3121.57 0.40 0.06 0.0214571 0.0194562 98 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_106.v common 8.64 vpr 61.46 MiB -1 -1 0.23 21420 13 0.45 -1 -1 36024 -1 -1 21 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62932 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 22.9 MiB 1.54 1251 61.5 MiB 0.09 0.00 6.6851 -133.791 -6.6851 6.6851 0.99 0.000347939 0.000277231 0.0280134 0.0229559 40 2795 18 6.79088e+06 282912 706193. 2443.58 2.62 0.15768 0.137016 2757 44 1520 4812 921684 564923 7.061 7.061 -152.734 -7.061 0 0 926341. 3205.33 0.42 0.39 0.0544895 0.0484534 143 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_107.v common 8.42 vpr 60.88 MiB -1 -1 0.21 20988 10 0.24 -1 -1 35884 -1 -1 17 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62344 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 22.4 MiB 2.66 937 60.9 MiB 0.06 0.00 5.16312 -110.97 -5.16312 5.16312 1.07 0.000283532 0.000230937 0.0163072 0.0136772 30 2616 25 6.79088e+06 229024 556674. 1926.21 1.83 0.0887382 0.0780392 2030 17 1003 2476 135292 31545 5.16312 5.16312 -122.504 -5.16312 0 0 706193. 2443.58 0.35 0.07 0.0223618 0.0204912 101 130 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_108.v common 12.29 vpr 61.20 MiB -1 -1 0.23 20944 14 0.28 -1 -1 35760 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62664 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 22.7 MiB 3.85 1176 61.2 MiB 0.06 0.00 6.49828 -136.932 -6.49828 6.49828 1.08 0.000312248 0.000256699 0.017058 0.0144233 34 3351 41 6.79088e+06 242496 618332. 2139.56 4.02 0.154412 0.136007 2761 58 1950 5863 1188724 618855 7.12129 7.12129 -165.084 -7.12129 0 0 787024. 2723.27 0.36 0.45 0.0533311 0.0473401 110 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_109.v common 29.99 vpr 61.42 MiB -1 -1 0.29 21464 13 0.41 -1 -1 35980 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 22.9 MiB 3.53 1246 61.4 MiB 0.06 0.00 6.76345 -141.654 -6.76345 6.76345 1.05 0.000328615 0.00026511 0.0169387 0.0141852 38 3315 48 6.79088e+06 269440 678818. 2348.85 22.14 0.260506 0.228011 2704 28 1493 4122 304533 94137 6.83138 6.83138 -158.022 -6.83138 0 0 902133. 3121.57 0.41 0.13 0.035028 0.0316752 125 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_110.v common 12.47 vpr 60.86 MiB -1 -1 0.23 21212 12 0.23 -1 -1 35860 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62320 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 22.2 MiB 4.89 1080 60.9 MiB 0.06 0.00 5.53143 -122.579 -5.53143 5.53143 1.05 0.000276561 0.00021554 0.0167477 0.0138467 36 2812 26 6.79088e+06 229024 648988. 2245.63 3.61 0.116099 0.100432 2428 18 1018 2506 244606 88663 5.91503 5.91503 -141.807 -5.91503 0 0 828058. 2865.25 0.38 0.10 0.0212013 0.0191893 99 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_111.v common 15.63 vpr 61.33 MiB -1 -1 0.26 21388 12 0.29 -1 -1 36084 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62800 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 22.8 MiB 2.87 1215 61.3 MiB 0.08 0.00 5.95428 -132.725 -5.95428 5.95428 1.08 0.000346506 0.000281164 0.0242798 0.0200067 36 3120 29 6.79088e+06 242496 648988. 2245.63 8.49 0.235292 0.204552 2774 17 1278 3613 232238 50378 5.95428 5.95428 -148.775 -5.95428 0 0 828058. 2865.25 0.41 0.10 0.0313041 0.0288417 130 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_112.v common 13.05 vpr 61.57 MiB -1 -1 0.30 21440 13 0.41 -1 -1 36036 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63048 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 23.0 MiB 1.61 1415 61.6 MiB 0.05 0.00 6.47559 -141.344 -6.47559 6.47559 1.08 0.000369604 0.000304627 0.0159862 0.013607 34 4053 49 6.79088e+06 269440 618332. 2139.56 7.19 0.206515 0.182054 3234 15 1292 3687 235744 51490 7.31698 7.31698 -167.124 -7.31698 0 0 787024. 2723.27 0.36 0.09 0.0279898 0.0256617 143 189 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_113.v common 10.11 vpr 60.81 MiB -1 -1 0.23 20924 11 0.26 -1 -1 35652 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62268 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 22.4 MiB 2.76 1007 60.8 MiB 0.08 0.00 5.14855 -120.574 -5.14855 5.14855 1.13 0.000287172 0.000218408 0.0219981 0.0181795 46 2459 22 6.79088e+06 215552 828058. 2865.25 3.12 0.127496 0.110469 2083 16 1161 3052 154240 36889 5.23465 5.23465 -134.748 -5.23465 0 0 1.01997e+06 3529.29 0.44 0.06 0.0197907 0.0179747 106 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_114.v common 11.12 vpr 61.21 MiB -1 -1 0.23 21052 13 0.29 -1 -1 35932 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62684 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 22.7 MiB 3.49 1163 61.2 MiB 0.06 0.00 6.38062 -141.11 -6.38062 6.38062 1.08 0.000338223 0.000279867 0.017293 0.0146008 38 2991 18 6.79088e+06 202080 678818. 2348.85 3.63 0.143264 0.126343 2492 16 1073 2930 158638 35518 6.63122 6.63122 -158.362 -6.63122 0 0 902133. 3121.57 0.38 0.07 0.0241698 0.0221228 113 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_115.v common 8.65 vpr 61.01 MiB -1 -1 0.25 21236 13 0.36 -1 -1 36028 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62476 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 22.5 MiB 1.72 1346 61.0 MiB 0.06 0.00 6.40869 -145.602 -6.40869 6.40869 1.07 0.000362632 0.000278322 0.0172606 0.0143639 48 3092 20 6.79088e+06 255968 865456. 2994.66 2.57 0.140831 0.122449 2980 17 1432 3806 255861 55186 6.61233 6.61233 -159.872 -6.61233 0 0 1.05005e+06 3633.38 0.49 0.09 0.0274615 0.0251005 136 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_116.v common 12.16 vpr 61.24 MiB -1 -1 0.25 21264 11 0.27 -1 -1 36448 -1 -1 19 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62712 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 22.6 MiB 2.94 1027 61.2 MiB 0.06 0.00 5.25814 -106.616 -5.25814 5.25814 1.12 0.000314563 0.000256223 0.0194642 0.016377 36 2946 28 6.79088e+06 255968 648988. 2245.63 5.02 0.143923 0.125936 2299 16 1064 3063 179022 40776 5.50874 5.50874 -120.716 -5.50874 0 0 828058. 2865.25 0.40 0.08 0.0250809 0.0230506 116 154 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_117.v common 13.58 vpr 61.72 MiB -1 -1 0.29 21908 14 0.48 -1 -1 36064 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63200 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 23.2 MiB 2.20 1496 61.7 MiB 0.08 0.00 7.31171 -157.75 -7.31171 7.31171 1.12 0.000445009 0.000368751 0.0258627 0.0219626 36 4110 45 6.79088e+06 309856 648988. 2245.63 6.84 0.21642 0.189519 3260 18 1722 4411 279451 61022 7.77371 7.77371 -182.516 -7.77371 0 0 828058. 2865.25 0.40 0.11 0.0342282 0.0312643 159 223 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_118.v common 10.53 vpr 61.07 MiB -1 -1 0.21 20796 12 0.22 -1 -1 35876 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62540 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 22.5 MiB 3.38 1118 61.1 MiB 0.06 0.00 5.73939 -131.167 -5.73939 5.73939 1.08 0.000275381 0.000223803 0.0160219 0.0133616 38 2883 39 6.79088e+06 255968 678818. 2348.85 3.16 0.137344 0.120315 2303 16 968 2286 125520 27954 5.86469 5.86469 -143.518 -5.86469 0 0 902133. 3121.57 0.42 0.06 0.0207045 0.0189678 106 129 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_119.v common 12.02 vpr 61.07 MiB -1 -1 0.27 21832 13 0.41 -1 -1 36028 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62536 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 22.5 MiB 2.02 1323 61.1 MiB 0.06 0.00 6.78813 -146.215 -6.78813 6.78813 1.01 0.000343118 0.000281841 0.0186059 0.0156786 36 3775 21 6.79088e+06 269440 648988. 2245.63 5.87 0.162509 0.143074 3164 17 1455 4177 245232 54199 7.03873 7.03873 -161.176 -7.03873 0 0 828058. 2865.25 0.38 0.09 0.0272277 0.0249017 136 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_120.v common 12.14 vpr 60.99 MiB -1 -1 0.25 21120 13 0.26 -1 -1 35712 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62456 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 22.6 MiB 1.66 1086 61.0 MiB 0.05 0.00 6.29796 -139.093 -6.29796 6.29796 1.07 0.000272233 0.000219997 0.0131697 0.0109919 34 2935 21 6.79088e+06 269440 618332. 2139.56 6.44 0.181907 0.158154 2500 19 1141 2964 181213 41491 6.29796 6.29796 -155.046 -6.29796 0 0 787024. 2723.27 0.36 0.08 0.0243199 0.0221853 107 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_121.v common 8.75 vpr 61.26 MiB -1 -1 0.26 21476 12 0.32 -1 -1 36040 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 22.8 MiB 2.26 1220 61.3 MiB 0.08 0.00 5.99697 -133.805 -5.99697 5.99697 1.04 0.000343592 0.000278437 0.0224843 0.0186102 30 3538 26 6.79088e+06 255968 556674. 1926.21 2.47 0.10345 0.0898342 2656 17 1192 3567 203504 44481 6.24757 6.24757 -153.603 -6.24757 0 0 706193. 2443.58 0.33 0.08 0.0267495 0.0243606 128 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_122.v common 12.89 vpr 61.89 MiB -1 -1 0.29 22136 15 0.71 -1 -1 36484 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63376 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 23.5 MiB 1.63 1620 61.9 MiB 0.12 0.00 7.88782 -164.593 -7.88782 7.88782 1.06 0.000471698 0.000389112 0.0381039 0.0315156 40 4464 43 6.79088e+06 336800 706193. 2443.58 6.44 0.269399 0.235646 4004 28 2810 8344 664052 162185 8.80761 8.80761 -191.299 -8.80761 0 0 926341. 3205.33 0.41 0.23 0.0561289 0.0507881 183 255 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_123.v common 9.15 vpr 60.50 MiB -1 -1 0.20 20840 10 0.14 -1 -1 35732 -1 -1 12 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61956 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 22.1 MiB 2.23 729 60.5 MiB 0.04 0.00 4.08102 -99.715 -4.08102 4.08102 1.06 0.000194454 0.000156135 0.010178 0.00840823 34 2162 42 6.79088e+06 161664 618332. 2139.56 3.13 0.0963003 0.083499 1851 33 859 2080 316361 137094 4.46806 4.46806 -118.426 -4.46806 0 0 787024. 2723.27 0.36 0.13 0.0223454 0.0198463 66 81 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_124.v common 8.50 vpr 61.05 MiB -1 -1 0.23 20836 13 0.27 -1 -1 35888 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62520 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 22.6 MiB 2.29 960 61.1 MiB 0.08 0.00 6.33378 -126.745 -6.33378 6.33378 1.09 0.000297798 0.000236446 0.023478 0.0195775 30 3021 49 6.79088e+06 229024 556674. 1926.21 2.23 0.119622 0.104674 2258 18 1153 2856 141988 35820 6.62009 6.62009 -153.848 -6.62009 0 0 706193. 2443.58 0.33 0.07 0.0226434 0.0206828 103 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_125.v common 13.43 vpr 61.30 MiB -1 -1 0.25 20896 12 0.30 -1 -1 35732 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62768 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 22.7 MiB 2.86 1191 61.3 MiB 0.08 0.00 5.82898 -132.441 -5.82898 5.82898 1.09 0.000315209 0.000258025 0.0225915 0.0187989 36 3296 48 6.79088e+06 242496 648988. 2245.63 6.52 0.168644 0.14685 2738 19 1334 3336 202509 44920 6.20483 6.20483 -154.013 -6.20483 0 0 828058. 2865.25 0.37 0.08 0.0246286 0.0222466 117 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_126.v common 7.44 vpr 60.64 MiB -1 -1 0.20 20676 9 0.17 -1 -1 35552 -1 -1 18 25 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62092 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 22.1 MiB 1.27 724 60.6 MiB 0.05 0.00 4.14599 -80.1844 -4.14599 4.14599 1.06 0.000227793 0.000184833 0.0130822 0.010869 28 2303 37 6.79088e+06 242496 531479. 1839.03 2.43 0.0722781 0.0625064 2016 21 1036 2968 305839 88517 4.64719 4.64719 -103.459 -4.64719 0 0 648988. 2245.63 0.31 0.10 0.0200135 0.0181175 86 102 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_127.v common 10.19 vpr 61.60 MiB -1 -1 0.27 21344 12 0.36 -1 -1 36052 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63080 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 23.0 MiB 2.14 1374 61.6 MiB 0.09 0.00 6.16917 -139.856 -6.16917 6.16917 1.06 0.000375999 0.000303456 0.0280203 0.023175 40 3436 23 6.79088e+06 282912 706193. 2443.58 3.66 0.187377 0.163657 3321 31 2273 6553 604957 178864 6.56959 6.56959 -159.908 -6.56959 0 0 926341. 3205.33 0.41 0.22 0.0473591 0.0424741 143 205 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_128.v common 10.77 vpr 61.59 MiB -1 -1 0.29 21884 13 0.46 -1 -1 36100 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63068 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 23.1 MiB 2.83 1292 61.6 MiB 0.08 0.00 7.0925 -148.678 -7.0925 7.0925 1.05 0.000377974 0.000297816 0.0249903 0.0206737 38 3413 20 6.79088e+06 296384 678818. 2348.85 3.61 0.154649 0.133899 2799 15 1262 3709 200202 44933 7.5937 7.5937 -165.21 -7.5937 0 0 902133. 3121.57 0.38 0.08 0.0255458 0.0233996 147 197 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 9.81 vpr 61.49 MiB -1 -1 0.19 21240 1 0.02 -1 -1 33184 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62968 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 22.9 MiB 4.25 1039 61.5 MiB 0.13 0.00 4.34064 -128.517 -4.34064 4.34064 1.06 0.000245909 0.0002014 0.023479 0.0193644 34 2686 31 6.87369e+06 363320 618332. 2139.56 1.88 0.118413 0.10125 2062 23 1713 2801 166819 43196 4.8242 4.8242 -156.384 -4.8242 0 0 787024. 2723.27 0.36 0.07 0.0199264 0.0175827 142 47 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.33 vpr 61.51 MiB -1 -1 0.19 21220 1 0.02 -1 -1 33152 -1 -1 24 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62988 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 22.9 MiB 3.51 941 61.5 MiB 0.12 0.00 3.52915 -110.654 -3.52915 3.52915 1.05 0.000254338 0.000206361 0.0219483 0.0178264 28 2627 24 6.87369e+06 335372 531479. 1839.03 1.20 0.081748 0.0697563 2203 20 1815 2677 199389 50162 4.22286 4.22286 -144.595 -4.22286 0 0 648988. 2245.63 0.30 0.08 0.0184284 0.0163244 138 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 9.11 vpr 61.36 MiB -1 -1 0.18 21400 1 0.02 -1 -1 33080 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62836 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 22.7 MiB 3.60 1046 61.4 MiB 0.10 0.00 3.45035 -101.281 -3.45035 3.45035 1.08 0.000224693 0.000183484 0.0184098 0.015177 34 2526 22 6.87369e+06 293451 618332. 2139.56 1.86 0.0916443 0.0781899 2138 21 1335 1813 145141 33288 3.76266 3.76266 -124.81 -3.76266 0 0 787024. 2723.27 0.35 0.06 0.0150541 0.0132267 124 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.83 vpr 61.38 MiB -1 -1 0.19 21360 1 0.02 -1 -1 33208 -1 -1 29 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 22.8 MiB 1.43 870 61.4 MiB 0.11 0.00 3.55382 -99.0067 -3.55382 3.55382 1.07 0.000228488 0.000187193 0.0190002 0.0155584 34 2204 35 6.87369e+06 405241 618332. 2139.56 1.71 0.0959693 0.0808371 1775 21 1472 2602 161219 39832 3.6351 3.6351 -116.32 -3.6351 0 0 787024. 2723.27 0.35 0.07 0.0162664 0.0143292 124 25 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 9.18 vpr 61.60 MiB -1 -1 0.18 21380 1 0.02 -1 -1 33112 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63080 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 23.1 MiB 1.81 1021 61.6 MiB 0.13 0.00 3.69312 -111.419 -3.69312 3.69312 1.06 0.000257119 0.000201866 0.0227643 0.0184763 30 2414 25 6.87369e+06 377294 556674. 1926.21 3.70 0.121791 0.103715 1995 19 1369 2795 140527 36463 3.5768 3.5768 -127.838 -3.5768 0 0 706193. 2443.58 0.34 0.06 0.0162442 0.0144624 131 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 6.85 vpr 61.55 MiB -1 -1 0.18 21388 1 0.02 -1 -1 33228 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63032 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 22.9 MiB 2.02 1002 61.6 MiB 0.11 0.00 2.80487 -98.5221 -2.80487 2.80487 1.07 0.000247512 0.000201099 0.0208406 0.0171833 32 2627 43 6.87369e+06 419215 586450. 2029.24 1.18 0.0901885 0.0772203 2164 21 1435 2242 166861 39485 3.09961 3.09961 -123.63 -3.09961 0 0 744469. 2576.02 0.35 0.07 0.0199125 0.0176148 136 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 8.28 vpr 60.80 MiB -1 -1 0.18 21020 1 0.01 -1 -1 33240 -1 -1 19 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62260 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 22.2 MiB 3.19 771 60.8 MiB 0.08 0.00 2.94598 -87.9501 -2.94598 2.94598 1.04 0.000189344 0.000151969 0.0161711 0.0131189 34 1747 22 6.87369e+06 265503 618332. 2139.56 1.52 0.0702226 0.0587813 1520 19 1075 1794 124749 28404 2.81396 2.81396 -101.775 -2.81396 0 0 787024. 2723.27 0.36 0.05 0.0127403 0.0112488 97 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.44 vpr 61.33 MiB -1 -1 0.18 20884 1 0.01 -1 -1 33100 -1 -1 32 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62800 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 22.8 MiB 1.28 877 61.3 MiB 0.11 0.00 2.73725 -85.4974 -2.73725 2.73725 1.04 0.000218278 0.000165595 0.0191432 0.0154868 34 2236 20 6.87369e+06 447163 618332. 2139.56 1.57 0.0824588 0.0697239 1852 20 1125 1852 132909 31061 2.79596 2.79596 -98.5415 -2.79596 0 0 787024. 2723.27 0.36 0.06 0.0140709 0.0124132 119 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 8.73 vpr 61.29 MiB -1 -1 0.19 21296 1 0.02 -1 -1 33064 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62760 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 22.6 MiB 3.33 995 61.3 MiB 0.09 0.00 2.65757 -95.501 -2.65757 2.65757 1.09 0.000228386 0.000185836 0.0183768 0.0149094 34 2327 23 6.87369e+06 237555 618332. 2139.56 1.70 0.0888636 0.0750305 2031 22 1338 2002 170165 37763 3.15891 3.15891 -119.757 -3.15891 0 0 787024. 2723.27 0.36 0.07 0.0157584 0.013865 113 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 10.38 vpr 61.23 MiB -1 -1 0.17 21052 1 0.01 -1 -1 33096 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 22.8 MiB 5.28 853 61.2 MiB 0.05 0.00 3.21683 -106.52 -3.21683 3.21683 1.06 0.000218623 0.000177532 0.008996 0.00754034 34 2073 24 6.87369e+06 223581 618332. 2139.56 1.56 0.0783685 0.0667581 1756 19 1107 1825 128218 30640 3.14146 3.14146 -124.26 -3.14146 0 0 787024. 2723.27 0.37 0.06 0.0144382 0.0127429 107 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 9.56 vpr 61.27 MiB -1 -1 0.17 21236 1 0.01 -1 -1 33176 -1 -1 16 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62740 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 22.8 MiB 4.39 801 61.3 MiB 0.08 0.00 3.28893 -100.031 -3.28893 3.28893 1.07 0.000201826 0.000160796 0.0166121 0.0134839 34 1915 35 6.87369e+06 223581 618332. 2139.56 1.56 0.0840217 0.0702269 1667 20 984 1602 113884 26236 2.82596 2.82596 -107.342 -2.82596 0 0 787024. 2723.27 0.35 0.05 0.0136359 0.0119465 98 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 8.56 vpr 61.05 MiB -1 -1 0.17 21032 1 0.01 -1 -1 33196 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62516 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 22.5 MiB 3.28 882 61.1 MiB 0.08 0.00 2.8828 -95.63 -2.8828 2.8828 1.04 0.000201904 0.000161653 0.0145141 0.0118342 34 2208 21 6.87369e+06 237555 618332. 2139.56 1.71 0.0807224 0.0685232 1937 20 1234 1697 130684 30730 2.96931 2.96931 -117.134 -2.96931 0 0 787024. 2723.27 0.37 0.06 0.0141664 0.0125849 107 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 10.15 vpr 61.45 MiB -1 -1 0.18 21200 1 0.02 -1 -1 33128 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62924 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 22.9 MiB 5.00 1145 61.4 MiB 0.08 0.00 3.36593 -115.716 -3.36593 3.36593 0.96 0.000224291 0.000184054 0.0140733 0.0116304 34 2830 22 6.87369e+06 321398 618332. 2139.56 1.70 0.0901334 0.0767089 2398 19 1814 2765 226112 50650 3.40641 3.40641 -128.911 -3.40641 0 0 787024. 2723.27 0.34 0.08 0.0163699 0.0145466 142 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 8.20 vpr 61.14 MiB -1 -1 0.18 21200 1 0.02 -1 -1 33176 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62608 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 22.6 MiB 3.50 938 61.1 MiB 0.10 0.00 3.75618 -114.05 -3.75618 3.75618 1.05 0.000256697 0.00021161 0.0167373 0.0136872 32 2596 24 6.87369e+06 433189 586450. 2029.24 1.07 0.0646635 0.0546391 2154 22 1759 2853 222114 52087 4.26636 4.26636 -143.146 -4.26636 0 0 744469. 2576.02 0.33 0.08 0.0173929 0.0152459 133 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.97 vpr 60.78 MiB -1 -1 0.18 20840 1 0.01 -1 -1 33140 -1 -1 19 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62240 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 22.2 MiB 2.33 555 60.8 MiB 0.05 0.00 2.63557 -77.5695 -2.63557 2.63557 1.10 0.000193145 0.000155813 0.00969174 0.00794028 32 1758 26 6.87369e+06 265503 586450. 2029.24 1.00 0.0457041 0.0387728 1437 20 1061 1690 121178 32218 2.94931 2.94931 -96.7093 -2.94931 0 0 744469. 2576.02 0.34 0.05 0.0125834 0.011135 94 21 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.48 vpr 61.44 MiB -1 -1 0.19 21096 1 0.01 -1 -1 33128 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62916 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 22.9 MiB 2.87 1092 61.4 MiB 0.09 0.00 2.9366 -103.262 -2.9366 2.9366 1.10 0.000264015 0.000211194 0.0162596 0.0134074 34 2793 27 6.87369e+06 335372 618332. 2139.56 1.86 0.110985 0.0949974 2267 22 1660 2891 202998 47468 3.23591 3.23591 -128.151 -3.23591 0 0 787024. 2723.27 0.36 0.08 0.0210377 0.0187368 135 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 10.49 vpr 61.42 MiB -1 -1 0.17 21304 1 0.01 -1 -1 33216 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 22.9 MiB 5.31 1009 61.4 MiB 0.11 0.00 3.24063 -107.092 -3.24063 3.24063 1.00 0.00022027 0.00017981 0.022983 0.019024 34 2694 20 6.87369e+06 293451 618332. 2139.56 1.67 0.103513 0.0886371 2234 23 1824 2643 205513 47740 3.53651 3.53651 -131.449 -3.53651 0 0 787024. 2723.27 0.33 0.09 0.0195984 0.0171619 140 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 8.40 vpr 61.37 MiB -1 -1 0.18 21176 1 0.02 -1 -1 33072 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62840 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 22.7 MiB 3.59 614 61.4 MiB 0.07 0.00 2.46506 -85.7251 -2.46506 2.46506 1.09 0.000249965 0.000203849 0.0121833 0.0100563 30 1887 25 6.87369e+06 391268 556674. 1926.21 1.16 0.0641432 0.055202 1395 22 976 1465 83403 22702 2.56377 2.56377 -100.579 -2.56377 0 0 706193. 2443.58 0.35 0.05 0.0161297 0.0141431 109 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.29 vpr 60.99 MiB -1 -1 0.16 21068 1 0.01 -1 -1 33044 -1 -1 14 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62456 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 22.4 MiB 0.82 673 61.0 MiB 0.06 0.00 2.12623 -75.6732 -2.12623 2.12623 1.06 0.000170673 0.000136854 0.0111969 0.0090892 32 1560 20 6.87369e+06 195634 586450. 2029.24 0.95 0.0395272 0.0331082 1385 19 628 879 77650 17657 2.18312 2.18312 -92.411 -2.18312 0 0 744469. 2576.02 0.35 0.04 0.0103409 0.00907508 71 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 10.59 vpr 61.02 MiB -1 -1 0.18 21228 1 0.03 -1 -1 33104 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62480 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 22.4 MiB 4.14 884 61.0 MiB 0.07 0.00 3.93483 -120.47 -3.93483 3.93483 1.09 0.000224431 0.000183763 0.0132616 0.0109524 30 2181 39 6.87369e+06 265503 556674. 1926.21 2.81 0.111382 0.0957352 1716 20 970 1398 76474 19534 3.81851 3.81851 -138.363 -3.81851 0 0 706193. 2443.58 0.33 0.05 0.0143048 0.0126921 116 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.98 vpr 61.37 MiB -1 -1 0.18 21316 1 0.01 -1 -1 33080 -1 -1 35 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 22.8 MiB 1.24 1110 61.4 MiB 0.12 0.00 3.36899 -112.643 -3.36899 3.36899 1.10 0.000295101 0.000235135 0.0205571 0.0169484 28 2338 23 6.87369e+06 489084 531479. 1839.03 1.04 0.0721286 0.0617821 2202 23 1572 2454 174825 40351 3.8897 3.8897 -135.664 -3.8897 0 0 648988. 2245.63 0.31 0.07 0.0186118 0.0163767 137 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.59 vpr 61.62 MiB -1 -1 0.19 21388 1 0.01 -1 -1 33184 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63100 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 22.9 MiB 2.94 1128 61.6 MiB 0.08 0.00 3.42215 -108.212 -3.42215 3.42215 1.08 0.000268389 0.000219158 0.0144625 0.0120845 34 2918 23 6.87369e+06 307425 618332. 2139.56 1.98 0.115394 0.0994804 2252 17 1326 2159 150773 37024 4.00206 4.00206 -137.245 -4.00206 0 0 787024. 2723.27 0.37 0.06 0.0175104 0.0156178 142 59 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 9.10 vpr 60.70 MiB -1 -1 0.16 20828 1 0.01 -1 -1 33172 -1 -1 17 26 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62156 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 22.2 MiB 2.41 367 60.7 MiB 0.04 0.00 2.06503 -57.5314 -2.06503 2.06503 1.08 0.000153092 0.000124039 0.00770089 0.0062367 30 1160 23 6.87369e+06 237555 556674. 1926.21 3.22 0.0696137 0.059202 843 15 530 727 41920 12014 2.12817 2.12817 -70.72 -2.12817 0 0 706193. 2443.58 0.33 0.03 0.00799262 0.00709169 67 21 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.52 vpr 61.29 MiB -1 -1 0.18 20888 1 0.02 -1 -1 33076 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62760 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 22.7 MiB 1.44 1048 61.3 MiB 0.09 0.00 3.71512 -108.094 -3.71512 3.71512 1.08 0.000219886 0.000178409 0.0144586 0.0119205 28 2502 23 6.87369e+06 321398 531479. 1839.03 1.50 0.0635926 0.0549494 2285 23 1535 2694 214354 47790 4.0963 4.0963 -134.531 -4.0963 0 0 648988. 2245.63 0.30 0.08 0.0161811 0.0142083 119 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 5.07 vpr 60.54 MiB -1 -1 0.15 20624 1 0.01 -1 -1 33024 -1 -1 12 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61996 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 22.0 MiB 0.61 437 60.5 MiB 0.05 0.00 2.08703 -63.3418 -2.08703 2.08703 1.07 0.000145255 0.000115191 0.0103972 0.00843014 30 1325 50 6.87369e+06 167686 556674. 1926.21 1.00 0.0451866 0.0379322 886 18 437 487 26930 7903 2.15017 2.15017 -75.1711 -2.15017 0 0 706193. 2443.58 0.34 0.03 0.0086863 0.00769232 65 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.80 vpr 61.23 MiB -1 -1 0.17 20888 1 0.01 -1 -1 33204 -1 -1 30 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62704 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 22.6 MiB 1.23 905 61.2 MiB 0.11 0.00 3.51652 -102.223 -3.51652 3.51652 1.06 0.000229426 0.000186266 0.0190207 0.0155031 32 2133 20 6.87369e+06 419215 586450. 2029.24 0.97 0.0577079 0.0485348 1759 22 1135 1830 132910 31712 3.557 3.557 -115.451 -3.557 0 0 744469. 2576.02 0.33 0.06 0.0152483 0.0133661 120 21 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 7.57 vpr 61.10 MiB -1 -1 0.16 20652 1 0.01 -1 -1 33088 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62564 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 22.4 MiB 1.20 1032 61.1 MiB 0.13 0.00 2.86255 -94.4523 -2.86255 2.86255 1.05 0.000243868 0.000186429 0.0212949 0.0173735 28 2329 20 6.87369e+06 433189 531479. 1839.03 2.83 0.128061 0.109847 2034 20 1322 2342 148941 35610 2.79596 2.79596 -107.909 -2.79596 0 0 648988. 2245.63 0.31 0.06 0.0160115 0.0141712 130 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 8.04 vpr 61.58 MiB -1 -1 0.19 21152 1 0.02 -1 -1 33116 -1 -1 28 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63060 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 23.1 MiB 2.52 1068 61.6 MiB 0.08 0.00 3.71518 -110.843 -3.71518 3.71518 1.06 0.000250047 0.000203344 0.0141098 0.0116829 34 2495 45 6.87369e+06 391268 618332. 2139.56 1.86 0.1113 0.0953208 1986 21 1397 2395 153125 36971 3.95176 3.95176 -131.346 -3.95176 0 0 787024. 2723.27 0.37 0.07 0.0182014 0.0161876 131 47 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 6.42 vpr 61.18 MiB -1 -1 0.16 20912 1 0.01 -1 -1 33056 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62652 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 22.8 MiB 1.23 674 61.2 MiB 0.07 0.00 2.61357 -87.0778 -2.61357 2.61357 1.07 0.000206155 0.000166708 0.0167292 0.0136998 34 1906 22 6.87369e+06 223581 618332. 2139.56 1.60 0.0855032 0.0726304 1514 21 999 1608 115719 28568 2.90731 2.90731 -105.479 -2.90731 0 0 787024. 2723.27 0.36 0.05 0.0141707 0.0124145 99 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 6.46 vpr 60.80 MiB -1 -1 0.18 21064 1 0.01 -1 -1 33144 -1 -1 26 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62264 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 22.1 MiB 1.68 677 60.8 MiB 0.08 0.00 2.60257 -81.933 -2.60257 2.60257 1.13 0.000207283 0.000168568 0.0163026 0.0133795 32 1861 24 6.87369e+06 363320 586450. 2029.24 1.05 0.0549282 0.0466704 1535 20 1012 1562 142972 35772 2.90726 2.90726 -99.4266 -2.90726 0 0 744469. 2576.02 0.35 0.06 0.0131205 0.011572 97 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.94 vpr 60.75 MiB -1 -1 0.17 20876 1 0.01 -1 -1 33012 -1 -1 18 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62212 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 22.1 MiB 1.33 652 60.8 MiB 0.05 0.00 2.9549 -83.2998 -2.9549 2.9549 1.08 0.000201126 0.000163579 0.00880245 0.00728469 32 2056 24 6.87369e+06 251529 586450. 2029.24 1.02 0.0458276 0.0389938 1704 20 1142 2032 163983 38658 2.99426 2.99426 -104.445 -2.99426 0 0 744469. 2576.02 0.36 0.06 0.0137216 0.0121263 95 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.64 vpr 61.19 MiB -1 -1 0.16 20892 1 0.02 -1 -1 33172 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62660 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 22.6 MiB 1.01 919 61.2 MiB 0.08 0.00 3.20393 -101.789 -3.20393 3.20393 1.07 0.000198486 0.000161518 0.0155986 0.0128496 32 2330 25 6.87369e+06 237555 586450. 2029.24 1.05 0.0571443 0.0486882 1858 22 1298 2199 174040 39670 2.95226 2.95226 -117.219 -2.95226 0 0 744469. 2576.02 0.36 0.07 0.0164919 0.0147038 101 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 8.91 vpr 61.16 MiB -1 -1 0.16 21060 1 0.01 -1 -1 33224 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62632 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 22.8 MiB 1.21 635 61.2 MiB 0.08 0.00 2.8296 -83.9515 -2.8296 2.8296 1.08 0.000213568 0.000175032 0.0137988 0.0113796 30 1944 27 6.87369e+06 363320 556674. 1926.21 4.15 0.119349 0.103121 1385 19 822 1275 71433 18812 2.81396 2.81396 -99.7199 -2.81396 0 0 706193. 2443.58 0.33 0.04 0.0130587 0.011539 102 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 9.47 vpr 61.21 MiB -1 -1 0.19 21408 1 0.03 -1 -1 33232 -1 -1 25 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62684 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 22.8 MiB 4.31 701 61.2 MiB 0.08 0.00 2.42106 -79.5498 -2.42106 2.42106 1.08 0.000202614 0.000161151 0.0141838 0.0114955 34 1845 21 6.87369e+06 349346 618332. 2139.56 1.54 0.0748259 0.0627503 1488 20 1189 1752 120707 29007 2.31947 2.31947 -91.292 -2.31947 0 0 787024. 2723.27 0.35 0.05 0.0132833 0.0116408 106 48 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.88 vpr 61.77 MiB -1 -1 0.19 21332 1 0.02 -1 -1 33120 -1 -1 40 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63252 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 23.4 MiB 5.00 1212 61.8 MiB 0.16 0.00 3.27479 -102.475 -3.27479 3.27479 1.09 0.000272848 0.000222236 0.023205 0.0189813 30 2664 24 6.87369e+06 558954 556674. 1926.21 1.08 0.076622 0.0650006 2108 21 1253 2506 142567 33025 3.5821 3.5821 -119.379 -3.5821 0 0 706193. 2443.58 0.33 0.07 0.019942 0.0175161 156 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 10.73 vpr 61.62 MiB -1 -1 0.19 21328 1 0.01 -1 -1 33240 -1 -1 38 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63104 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 23.2 MiB 4.55 1078 61.6 MiB 0.10 0.00 3.13548 -110.984 -3.13548 3.13548 1.09 0.000355096 0.000300392 0.0179614 0.014963 30 2224 21 6.87369e+06 531006 556674. 1926.21 2.46 0.13114 0.112546 1884 22 1474 2499 127861 30654 2.72536 2.72536 -116.865 -2.72536 0 0 706193. 2443.58 0.34 0.07 0.0203033 0.0179515 148 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 8.40 vpr 61.23 MiB -1 -1 0.18 21320 1 0.01 -1 -1 33192 -1 -1 18 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62704 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 22.8 MiB 3.06 916 61.2 MiB 0.09 0.00 3.32193 -103.497 -3.32193 3.32193 1.06 0.000218498 0.000178387 0.0174935 0.0142211 34 2263 19 6.87369e+06 251529 618332. 2139.56 1.75 0.083259 0.0707981 1984 21 1343 2022 172907 38709 3.19191 3.19191 -116.828 -3.19191 0 0 787024. 2723.27 0.35 0.06 0.0143888 0.0126663 109 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.90 vpr 61.37 MiB -1 -1 0.18 21400 1 0.03 -1 -1 33212 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 22.7 MiB 3.54 964 61.4 MiB 0.09 0.00 2.9678 -98.2022 -2.9678 2.9678 1.07 0.000260635 0.000213339 0.0166177 0.0135976 34 2429 20 6.87369e+06 363320 618332. 2139.56 1.72 0.110029 0.0945701 1997 19 1494 2534 162498 38277 2.82701 2.82701 -111.827 -2.82701 0 0 787024. 2723.27 0.36 0.07 0.0190262 0.0169424 136 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 12.16 vpr 61.51 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33128 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62988 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 23.0 MiB 5.56 1319 61.5 MiB 0.13 0.00 4.27988 -133.727 -4.27988 4.27988 1.08 0.00026334 0.000213353 0.023717 0.0194218 34 3413 32 6.87369e+06 349346 618332. 2139.56 2.79 0.120986 0.103037 2761 22 2358 3444 279478 63836 5.0778 5.0778 -173.516 -5.0778 0 0 787024. 2723.27 0.36 0.10 0.0205048 0.018105 159 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 10.40 vpr 61.55 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33232 -1 -1 27 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63028 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 23.1 MiB 4.63 1180 61.6 MiB 0.09 0.00 4.44394 -140.492 -4.44394 4.44394 1.03 0.000276621 0.00022501 0.0144159 0.0119325 34 3085 26 6.87369e+06 377294 618332. 2139.56 2.18 0.111865 0.0967269 2571 22 1788 2763 234563 52152 4.4173 4.4173 -159.927 -4.4173 0 0 787024. 2723.27 0.36 0.09 0.0206277 0.0182441 152 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 9.92 vpr 61.55 MiB -1 -1 0.19 21388 1 0.01 -1 -1 33228 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63028 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 23.1 MiB 4.15 875 61.6 MiB 0.07 0.00 3.22963 -101.875 -3.22963 3.22963 1.09 0.000264748 0.000216605 0.0126971 0.0105915 34 2636 23 6.87369e+06 349346 618332. 2139.56 2.06 0.101714 0.0879812 2060 20 1537 2541 174739 44324 3.23861 3.23861 -121.623 -3.23861 0 0 787024. 2723.27 0.37 0.07 0.0171354 0.0151587 131 51 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 9.08 vpr 61.26 MiB -1 -1 0.17 21164 1 0.01 -1 -1 33056 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62728 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 22.6 MiB 3.65 1150 61.3 MiB 0.10 0.00 3.40015 -99.7026 -3.40015 3.40015 1.08 0.000227258 0.000186786 0.0189623 0.0155304 34 2632 42 6.87369e+06 279477 618332. 2139.56 1.76 0.103925 0.0886157 2190 21 1337 1934 142805 32953 3.81376 3.81376 -123.735 -3.81376 0 0 787024. 2723.27 0.36 0.06 0.016038 0.0142287 119 24 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 12.38 vpr 62.10 MiB -1 -1 0.21 21656 1 0.02 -1 -1 33272 -1 -1 38 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63588 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 23.6 MiB 4.78 1296 62.1 MiB 0.08 0.00 3.98488 -132.563 -3.98488 3.98488 1.05 0.000307011 0.000246533 0.0135552 0.0111881 30 2960 23 6.87369e+06 531006 556674. 1926.21 3.94 0.163235 0.139752 2373 25 1498 2482 137365 32628 4.05796 4.05796 -149.67 -4.05796 0 0 706193. 2443.58 0.33 0.07 0.0234706 0.0205108 173 84 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.92 vpr 61.12 MiB -1 -1 0.17 21020 1 0.01 -1 -1 33060 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62592 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 22.5 MiB 2.40 898 61.1 MiB 0.08 0.00 2.78925 -89.883 -2.78925 2.78925 1.05 0.0002026 0.000166027 0.0146679 0.0120318 30 1919 21 6.87369e+06 307425 556674. 1926.21 0.98 0.0532604 0.0452364 1693 18 877 1526 104576 23354 2.70766 2.70766 -103.435 -2.70766 0 0 706193. 2443.58 0.34 0.05 0.0123036 0.0108824 96 24 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 8.24 vpr 61.47 MiB -1 -1 0.19 21200 1 0.02 -1 -1 33248 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 22.9 MiB 3.41 1101 61.5 MiB 0.08 0.00 3.78918 -117.043 -3.78918 3.78918 1.06 0.000246297 0.000199546 0.0134115 0.0110908 30 2968 33 6.87369e+06 321398 556674. 1926.21 1.22 0.0730091 0.062675 2270 24 1463 2238 141422 34263 3.94966 3.94966 -136.513 -3.94966 0 0 706193. 2443.58 0.33 0.07 0.018463 0.0161983 140 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.61 vpr 61.60 MiB -1 -1 0.19 21324 1 0.02 -1 -1 33204 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63076 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 23.1 MiB 2.75 962 61.6 MiB 0.12 0.00 3.0399 -95.7697 -3.0399 3.0399 1.09 0.000262 0.000211043 0.0207406 0.017013 30 2550 22 6.87369e+06 447163 556674. 1926.21 1.15 0.0789036 0.0681126 1903 15 950 1700 97436 23404 2.88001 2.88001 -108.314 -2.88001 0 0 706193. 2443.58 0.34 0.05 0.0154356 0.0138833 132 50 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.38 vpr 61.33 MiB -1 -1 0.18 20724 1 0.02 -1 -1 33096 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62804 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 22.8 MiB 1.00 908 61.3 MiB 0.10 0.00 3.37079 -103.741 -3.37079 3.37079 1.09 0.00024129 0.000197726 0.0183097 0.0151238 34 2417 28 6.87369e+06 363320 618332. 2139.56 1.70 0.0964332 0.0824866 1938 23 1420 2578 180665 44063 3.8074 3.8074 -122.951 -3.8074 0 0 787024. 2723.27 0.36 0.07 0.0182239 0.0160702 123 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.40 vpr 61.54 MiB -1 -1 0.18 21240 1 0.02 -1 -1 33184 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63016 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 23.0 MiB 4.12 1039 61.5 MiB 0.06 0.00 3.93315 -120.25 -3.93315 3.93315 1.07 0.000250739 0.000204039 0.0114082 0.00954938 34 2501 29 6.87369e+06 307425 618332. 2139.56 1.62 0.100509 0.0859747 2090 21 1206 1662 107428 27935 3.3592 3.3592 -126.115 -3.3592 0 0 787024. 2723.27 0.37 0.06 0.0192998 0.0171376 136 52 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 9.94 vpr 61.54 MiB -1 -1 0.18 21300 1 0.02 -1 -1 33192 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63020 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 23.0 MiB 4.41 1077 61.5 MiB 0.11 0.00 2.9366 -100.222 -2.9366 2.9366 1.09 0.000293126 0.000235479 0.0195984 0.0161365 34 2577 25 6.87369e+06 447163 618332. 2139.56 1.76 0.106226 0.0905621 2140 21 1430 2362 150494 37066 3.39221 3.39221 -124.388 -3.39221 0 0 787024. 2723.27 0.36 0.07 0.0180551 0.015864 136 52 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 13.32 vpr 61.75 MiB -1 -1 0.18 21356 1 0.02 -1 -1 33160 -1 -1 35 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63232 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 23.4 MiB 4.25 975 61.8 MiB 0.13 0.00 3.24063 -106.811 -3.24063 3.24063 1.06 0.000273988 0.00021763 0.022698 0.0184705 30 2828 30 6.87369e+06 489084 556674. 1926.21 5.37 0.150302 0.129252 2076 22 1508 2551 157719 37283 3.24691 3.24691 -114.262 -3.24691 0 0 706193. 2443.58 0.34 0.07 0.0196934 0.0173095 144 59 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.92 vpr 61.43 MiB -1 -1 0.18 20912 1 0.01 -1 -1 33164 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62900 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 22.8 MiB 1.24 879 61.4 MiB 0.07 0.00 3.38179 -100.603 -3.38179 3.38179 1.09 0.00024131 0.000197667 0.0114308 0.00939068 32 2385 21 6.87369e+06 461137 586450. 2029.24 1.03 0.0524435 0.0444476 1957 18 1188 2084 150575 36013 3.9737 3.9737 -123.575 -3.9737 0 0 744469. 2576.02 0.34 0.06 0.013901 0.0122875 124 21 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.25 vpr 61.34 MiB -1 -1 0.17 21440 1 0.02 -1 -1 33108 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 22.8 MiB 2.89 1200 61.3 MiB 0.10 0.00 3.71838 -112.337 -3.71838 3.71838 1.01 0.000290228 0.000232341 0.0179926 0.0147438 34 2712 27 6.87369e+06 307425 618332. 2139.56 1.84 0.094594 0.0805565 2296 21 1676 2392 173880 40408 3.98006 3.98006 -133.012 -3.98006 0 0 787024. 2723.27 0.34 0.07 0.0162588 0.0143595 135 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.76 vpr 61.21 MiB -1 -1 0.20 21356 1 0.02 -1 -1 33236 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62684 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 22.6 MiB 2.95 1175 61.2 MiB 0.12 0.00 3.72318 -118.923 -3.72318 3.72318 1.07 0.000255995 0.000205423 0.021757 0.0178244 30 2817 22 6.87369e+06 307425 556674. 1926.21 1.13 0.0738658 0.0627667 2397 21 1538 2616 177909 40342 3.94696 3.94696 -140.095 -3.94696 0 0 706193. 2443.58 0.32 0.07 0.0178832 0.0157497 141 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 9.47 vpr 61.38 MiB -1 -1 0.19 21440 1 0.01 -1 -1 33152 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 22.7 MiB 4.03 1110 61.4 MiB 0.10 0.00 3.52545 -113.312 -3.52545 3.52545 1.06 0.000268596 0.000217392 0.0193791 0.0157925 34 2990 24 6.87369e+06 293451 618332. 2139.56 1.78 0.101111 0.0851393 2441 22 1511 2689 227080 50214 3.53716 3.53716 -130.206 -3.53716 0 0 787024. 2723.27 0.35 0.08 0.01856 0.0162387 135 74 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.70 vpr 60.96 MiB -1 -1 0.18 20772 1 0.02 -1 -1 33140 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62428 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 22.4 MiB 0.99 634 61.0 MiB 0.08 0.00 2.7886 -83.3638 -2.7886 2.7886 1.10 0.00019444 0.000156973 0.0153377 0.012285 32 2141 38 6.87369e+06 307425 586450. 2029.24 1.08 0.0592154 0.0498405 1573 22 1064 1731 130651 31954 3.19186 3.19186 -105.26 -3.19186 0 0 744469. 2576.02 0.34 0.05 0.0128282 0.0112193 93 20 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.06 vpr 61.48 MiB -1 -1 0.17 21160 1 0.01 -1 -1 33208 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62952 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 23.0 MiB 2.47 981 61.5 MiB 0.10 0.00 3.03076 -109.55 -3.03076 3.03076 1.08 0.000232223 0.000185327 0.0215163 0.0175021 34 2604 42 6.87369e+06 251529 618332. 2139.56 1.83 0.114497 0.0972213 2186 22 1709 2470 228982 50635 3.35021 3.35021 -133.47 -3.35021 0 0 787024. 2723.27 0.37 0.08 0.0190053 0.0168455 124 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 10.31 vpr 61.78 MiB -1 -1 0.19 21388 1 0.02 -1 -1 33232 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63264 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 23.3 MiB 4.16 1388 61.8 MiB 0.15 0.00 4.25892 -133.265 -4.25892 4.25892 1.08 0.000299614 0.000247809 0.0278594 0.0231325 34 3611 38 6.87369e+06 335372 618332. 2139.56 2.36 0.151117 0.130618 2944 20 2124 3294 251893 57445 4.74815 4.74815 -160.474 -4.74815 0 0 787024. 2723.27 0.36 0.09 0.0226857 0.0201735 166 28 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 9.51 vpr 61.55 MiB -1 -1 0.18 21316 1 0.02 -1 -1 33220 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63024 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 23.0 MiB 4.21 1017 61.5 MiB 0.13 0.00 3.35331 -110.762 -3.35331 3.35331 1.07 0.000267157 0.000212682 0.0227047 0.0184811 34 2146 21 6.87369e+06 475111 618332. 2139.56 1.56 0.0970815 0.0818289 1914 17 1202 1943 119081 28898 2.81766 2.81766 -116.211 -2.81766 0 0 787024. 2723.27 0.37 0.06 0.0150438 0.0134068 137 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 6.13 vpr 61.11 MiB -1 -1 0.18 20908 1 0.02 -1 -1 33128 -1 -1 25 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62572 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 22.7 MiB 1.08 677 61.1 MiB 0.05 0.00 2.8516 -88.1739 -2.8516 2.8516 1.08 0.000214221 0.000172116 0.0113747 0.00934009 28 2122 23 6.87369e+06 349346 531479. 1839.03 1.52 0.0550014 0.0470056 1676 19 1151 1863 137169 35284 3.35016 3.35016 -118.797 -3.35016 0 0 648988. 2245.63 0.30 0.06 0.0133037 0.011753 104 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 12.62 vpr 61.41 MiB -1 -1 0.17 21500 1 0.02 -1 -1 33260 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62888 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 22.9 MiB 6.65 1404 61.4 MiB 0.09 0.00 4.57575 -140.425 -4.57575 4.57575 1.03 0.0003229 0.000269955 0.0181988 0.0152529 34 3486 24 6.87369e+06 349346 618332. 2139.56 2.38 0.139336 0.121358 2876 21 2224 3382 279467 62563 5.2018 5.2018 -167.984 -5.2018 0 0 787024. 2723.27 0.35 0.10 0.0256612 0.0229835 171 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 9.09 vpr 61.34 MiB -1 -1 0.17 21088 1 0.02 -1 -1 33044 -1 -1 35 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62812 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 22.8 MiB 4.34 968 61.3 MiB 0.11 0.00 3.67302 -115.798 -3.67302 3.67302 1.08 0.000277886 0.000228057 0.0193434 0.0157467 32 2469 23 6.87369e+06 489084 586450. 2029.24 1.05 0.0645504 0.0545207 2081 22 1639 2614 196570 46374 3.7811 3.7811 -131.661 -3.7811 0 0 744469. 2576.02 0.33 0.08 0.0174098 0.0153054 135 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 7.64 vpr 61.08 MiB -1 -1 0.17 20700 1 0.02 -1 -1 33040 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62544 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 22.5 MiB 0.97 815 61.1 MiB 0.08 0.00 2.8436 -84.3427 -2.8436 2.8436 1.04 0.000188415 0.000152333 0.014476 0.0116825 28 2007 26 6.87369e+06 335372 531479. 1839.03 3.20 0.109465 0.0938326 1748 22 1156 2015 175268 39808 2.82396 2.82396 -101.16 -2.82396 0 0 648988. 2245.63 0.31 0.06 0.0128432 0.0112452 94 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 12.82 vpr 61.16 MiB -1 -1 0.18 21316 1 0.02 -1 -1 33216 -1 -1 37 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62624 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 22.6 MiB 3.16 1190 61.2 MiB 0.10 0.00 4.16767 -116.155 -4.16767 4.16767 1.06 0.00027059 0.000211312 0.0150967 0.012338 28 2882 22 6.87369e+06 517032 531479. 1839.03 6.03 0.135286 0.115767 2555 23 1644 3127 266202 57428 4.77015 4.77015 -144.042 -4.77015 0 0 648988. 2245.63 0.31 0.09 0.0192125 0.0168865 145 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 6.01 vpr 60.84 MiB -1 -1 0.15 20616 1 0.02 -1 -1 33128 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62304 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 22.2 MiB 1.02 796 60.8 MiB 0.08 0.00 2.8626 -91.2425 -2.8626 2.8626 1.02 0.000184521 0.000150317 0.0166456 0.013685 34 2011 21 6.87369e+06 265503 618332. 2139.56 1.56 0.0837405 0.0717149 1627 18 1114 1996 136773 32313 2.77996 2.77996 -105.826 -2.77996 0 0 787024. 2723.27 0.35 0.05 0.0129025 0.0114901 98 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 8.94 vpr 61.12 MiB -1 -1 0.17 21004 1 0.01 -1 -1 33180 -1 -1 34 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62588 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 22.6 MiB 3.62 732 61.1 MiB 0.07 0.00 3.06028 -90.6779 -3.06028 3.06028 1.09 0.000278376 0.000235811 0.0113157 0.00943629 28 2165 23 6.87369e+06 475111 531479. 1839.03 1.71 0.0611469 0.0530457 1789 23 1258 2316 201953 46088 3.02256 3.02256 -107.806 -3.02256 0 0 648988. 2245.63 0.31 0.08 0.0164355 0.0145532 109 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 11.17 vpr 61.39 MiB -1 -1 0.20 21288 1 0.02 -1 -1 33184 -1 -1 24 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62868 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 22.8 MiB 5.41 1134 61.4 MiB 0.09 0.00 3.32493 -104.798 -3.32493 3.32493 1.11 0.000263342 0.000216815 0.0155561 0.0128164 34 2854 23 6.87369e+06 335372 618332. 2139.56 2.00 0.109681 0.0947259 2437 23 1908 2951 225044 52583 3.21181 3.21181 -119.133 -3.21181 0 0 787024. 2723.27 0.36 0.08 0.0194347 0.0171733 138 56 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 8.28 vpr 61.53 MiB -1 -1 0.17 21096 1 0.02 -1 -1 33228 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63004 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 23.0 MiB 2.96 730 61.5 MiB 0.09 0.00 3.61045 -111.559 -3.61045 3.61045 1.06 0.00025833 0.000197736 0.0167058 0.0136446 34 2164 23 6.87369e+06 363320 618332. 2139.56 1.76 0.102417 0.087237 1782 20 1606 2454 160992 39941 3.80646 3.80646 -132.095 -3.80646 0 0 787024. 2723.27 0.35 0.07 0.0179604 0.0159318 132 51 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 10.15 vpr 61.57 MiB -1 -1 0.18 21248 1 0.01 -1 -1 33200 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63048 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 23.0 MiB 3.07 914 61.6 MiB 0.12 0.00 3.81848 -113.445 -3.81848 3.81848 1.05 0.000263107 0.000217562 0.0230463 0.0189917 34 3108 37 6.87369e+06 377294 618332. 2139.56 3.42 0.143872 0.125352 2316 22 1636 2817 273881 60964 4.17136 4.17136 -140.695 -4.17136 0 0 787024. 2723.27 0.36 0.10 0.0220284 0.0197288 133 48 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 11.59 vpr 61.22 MiB -1 -1 0.17 21128 1 0.02 -1 -1 33132 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62688 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 22.8 MiB 4.91 995 61.2 MiB 0.09 0.00 3.74452 -111.854 -3.74452 3.74452 1.06 0.000198504 0.000158964 0.0170062 0.0138535 30 2229 46 6.87369e+06 209608 556674. 1926.21 3.12 0.103764 0.087644 1892 22 1035 1476 107612 23795 3.15057 3.15057 -118.604 -3.15057 0 0 706193. 2443.58 0.33 0.05 0.0143341 0.0126296 103 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.50 vpr 61.34 MiB -1 -1 0.16 21248 1 0.02 -1 -1 33128 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62808 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 22.7 MiB 3.39 907 61.3 MiB 0.07 0.00 2.99776 -101.424 -2.99776 2.99776 1.00 0.00023662 0.000195399 0.01447 0.0120323 34 2567 22 6.87369e+06 237555 618332. 2139.56 1.68 0.0930007 0.0798825 2085 21 1468 2204 183040 42143 3.39421 3.39421 -127.22 -3.39421 0 0 787024. 2723.27 0.34 0.07 0.015801 0.0139474 114 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 8.99 vpr 61.54 MiB -1 -1 0.19 21296 1 0.02 -1 -1 33196 -1 -1 34 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63012 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 23.1 MiB 3.63 875 61.5 MiB 0.07 0.00 2.84355 -83.2556 -2.84355 2.84355 1.10 0.000265428 0.000216412 0.0115857 0.00957549 26 2524 30 6.87369e+06 475111 503264. 1741.40 1.74 0.0721744 0.0626619 2065 19 1189 2158 187638 43344 2.91626 2.91626 -103.99 -2.91626 0 0 618332. 2139.56 0.29 0.07 0.0153594 0.0135396 124 52 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 9.76 vpr 61.30 MiB -1 -1 0.18 20876 1 0.01 -1 -1 33208 -1 -1 35 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62768 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 22.8 MiB 2.65 864 61.3 MiB 0.10 0.00 3.27479 -89.0925 -3.27479 3.27479 1.08 0.000205026 0.000165539 0.0165761 0.0135276 26 2223 43 6.87369e+06 489084 503264. 1741.40 3.50 0.116829 0.0998851 1902 22 1351 2502 215753 47915 4.3099 4.3099 -115.4 -4.3099 0 0 618332. 2139.56 0.29 0.08 0.0157139 0.0139052 117 20 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 10.11 vpr 61.12 MiB -1 -1 0.17 21036 1 0.02 -1 -1 33052 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62584 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 22.5 MiB 3.81 895 61.1 MiB 0.08 0.00 3.16363 -102.549 -3.16363 3.16363 1.08 0.000237729 0.000196287 0.015011 0.012453 30 2109 34 6.87369e+06 237555 556674. 1926.21 2.75 0.118914 0.102089 1792 20 1151 2117 141165 31912 3.14956 3.14956 -123.867 -3.14956 0 0 706193. 2443.58 0.32 0.06 0.01536 0.0135512 105 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 9.43 vpr 61.42 MiB -1 -1 0.18 21348 1 0.02 -1 -1 33152 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 23.0 MiB 3.89 935 61.4 MiB 0.06 0.00 2.9238 -98.9551 -2.9238 2.9238 1.10 0.00024104 0.000196901 0.0115138 0.00961048 34 2671 25 6.87369e+06 237555 618332. 2139.56 1.88 0.106696 0.0924475 2255 21 1552 2274 178564 42053 3.33711 3.33711 -128.895 -3.33711 0 0 787024. 2723.27 0.36 0.07 0.0187806 0.0166979 122 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.02 vpr 61.26 MiB -1 -1 0.18 20760 1 0.02 -1 -1 33144 -1 -1 31 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62732 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 22.6 MiB 1.11 1003 61.3 MiB 0.12 0.00 3.72612 -109.979 -3.72612 3.72612 1.11 0.000235805 0.000194017 0.0198481 0.0163672 32 2677 46 6.87369e+06 433189 586450. 2029.24 1.14 0.0760432 0.0645898 2088 23 1282 2267 208020 44779 3.7514 3.7514 -120.958 -3.7514 0 0 744469. 2576.02 0.35 0.08 0.0169119 0.0149159 129 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.77 vpr 61.35 MiB -1 -1 0.17 21212 1 0.01 -1 -1 33220 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62824 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 22.7 MiB 4.38 1133 61.4 MiB 0.07 0.00 3.78918 -121.132 -3.78918 3.78918 1.01 0.000246265 0.000202003 0.0121191 0.0101738 34 3032 47 6.87369e+06 321398 618332. 2139.56 1.93 0.123529 0.107448 2509 21 1827 2797 198117 49265 3.92346 3.92346 -143.609 -3.92346 0 0 787024. 2723.27 0.35 0.08 0.0209289 0.0187653 147 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 11.50 vpr 61.42 MiB -1 -1 0.20 21088 1 0.02 -1 -1 33120 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62896 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 23.0 MiB 5.66 1091 61.4 MiB 0.13 0.00 4.36897 -130.626 -4.36897 4.36897 1.06 0.000299554 0.000245653 0.0217409 0.0176782 34 2745 23 6.87369e+06 503058 618332. 2139.56 2.10 0.111458 0.0947658 2282 20 1532 2536 204853 47745 4.18295 4.18295 -148.069 -4.18295 0 0 787024. 2723.27 0.36 0.08 0.0188671 0.0166309 147 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 9.37 vpr 61.43 MiB -1 -1 0.20 21284 1 0.02 -1 -1 33148 -1 -1 41 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62900 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 22.9 MiB 4.47 1164 61.4 MiB 0.13 0.00 3.63082 -121.144 -3.63082 3.63082 1.07 0.000275616 0.000222481 0.0191072 0.0155275 30 2658 26 6.87369e+06 572927 556674. 1926.21 1.17 0.0795542 0.0679028 2173 23 1429 2804 162514 38916 3.7371 3.7371 -137.548 -3.7371 0 0 706193. 2443.58 0.35 0.07 0.0206464 0.0182453 148 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.96 vpr 61.13 MiB -1 -1 0.17 20772 1 0.01 -1 -1 33252 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62596 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 22.4 MiB 3.36 755 61.1 MiB 0.06 0.00 3.16363 -96.6123 -3.16363 3.16363 1.07 0.000201608 0.00016449 0.0116732 0.00970072 32 2058 23 6.87369e+06 237555 586450. 2029.24 1.01 0.0500456 0.0426387 1680 22 1112 2026 141282 36654 3.06026 3.06026 -111.503 -3.06026 0 0 744469. 2576.02 0.35 0.06 0.0148184 0.0130516 99 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.37 vpr 61.58 MiB -1 -1 0.18 21332 1 0.01 -1 -1 33188 -1 -1 22 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63060 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 23.0 MiB 4.65 1004 61.6 MiB 0.08 0.00 3.55872 -115.575 -3.55872 3.55872 1.07 0.000265254 0.000217424 0.015452 0.0128195 28 2528 25 6.87369e+06 307425 531479. 1839.03 1.12 0.0792596 0.0686567 2327 20 1816 2840 229292 51894 4.1632 4.1632 -148.091 -4.1632 0 0 648988. 2245.63 0.30 0.09 0.0205645 0.0183237 136 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 9.56 vpr 61.48 MiB -1 -1 0.19 21364 1 0.02 -1 -1 33180 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62956 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 22.9 MiB 3.65 1169 61.5 MiB 0.09 0.00 4.00821 -124.531 -4.00821 4.00821 1.07 0.000251988 0.00020539 0.0154496 0.012687 34 2847 24 6.87369e+06 321398 618332. 2139.56 2.18 0.101175 0.0863361 2424 22 1672 2878 230574 51627 4.15306 4.15306 -145.002 -4.15306 0 0 787024. 2723.27 0.36 0.08 0.017606 0.0154722 140 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 8.82 vpr 61.41 MiB -1 -1 0.17 21212 1 0.02 -1 -1 33092 -1 -1 28 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62888 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 22.9 MiB 3.13 1151 61.4 MiB 0.12 0.00 4.43294 -130.131 -4.43294 4.43294 1.03 0.000237532 0.000194554 0.0228839 0.0189028 34 3157 33 6.87369e+06 391268 618332. 2139.56 2.15 0.129811 0.112806 2442 22 1779 2823 219440 49170 4.8685 4.8685 -152.738 -4.8685 0 0 787024. 2723.27 0.34 0.08 0.0197792 0.0176896 141 43 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 8.47 vpr 61.50 MiB -1 -1 0.20 21300 1 0.02 -1 -1 33164 -1 -1 32 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62976 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 22.9 MiB 3.82 1047 61.5 MiB 0.09 0.00 3.69518 -115.782 -3.69518 3.69518 1.08 0.000263395 0.000213557 0.0163065 0.0133442 30 2268 19 6.87369e+06 447163 556674. 1926.21 1.00 0.0617054 0.052128 1860 14 836 1357 71321 17794 2.96036 2.96036 -116.879 -2.96036 0 0 706193. 2443.58 0.33 0.04 0.0140144 0.0125222 135 78 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.87 vpr 61.71 MiB -1 -1 0.18 21164 1 0.02 -1 -1 33084 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63188 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 23.1 MiB 3.34 1030 61.7 MiB 0.08 0.00 3.73418 -116.831 -3.73418 3.73418 1.06 0.000260561 0.000211917 0.0144644 0.0118887 34 2624 22 6.87369e+06 293451 618332. 2139.56 1.82 0.100152 0.0851571 2316 21 1731 3036 242405 53889 3.85746 3.85746 -142.261 -3.85746 0 0 787024. 2723.27 0.36 0.09 0.0195972 0.0173483 132 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 8.63 vpr 61.69 MiB -1 -1 0.19 21240 1 0.01 -1 -1 33096 -1 -1 29 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63172 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 23.1 MiB 3.69 854 61.7 MiB 0.11 0.00 3.18563 -96.0763 -3.18563 3.18563 1.08 0.000269508 0.000222003 0.0212232 0.0174751 28 2374 25 6.87369e+06 405241 531479. 1839.03 1.32 0.0831054 0.0714517 1967 24 1695 2791 211573 49522 3.25791 3.25791 -113.987 -3.25791 0 0 648988. 2245.63 0.32 0.09 0.0225463 0.0198823 132 79 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.68 vpr 61.05 MiB -1 -1 0.15 20572 1 0.01 -1 -1 33096 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62516 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 22.5 MiB 0.85 785 61.1 MiB 0.08 0.00 3.18563 -100.278 -3.18563 3.18563 1.02 0.000191516 0.00015757 0.0132216 0.010935 34 1835 19 6.87369e+06 237555 618332. 2139.56 1.41 0.0661407 0.0560566 1614 16 806 1177 78620 19490 2.94401 2.94401 -106.301 -2.94401 0 0 787024. 2723.27 0.33 0.04 0.0109679 0.00981088 96 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 13.09 vpr 61.33 MiB -1 -1 0.17 21284 1 0.02 -1 -1 33152 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62804 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 22.7 MiB 6.21 1044 61.3 MiB 0.14 0.00 3.67482 -117.331 -3.67482 3.67482 1.05 0.000271699 0.000221171 0.0225813 0.0186063 26 3085 37 6.87369e+06 475111 503264. 1741.40 3.24 0.159873 0.137085 2579 23 1800 3031 295902 65803 4.5089 4.5089 -153.666 -4.5089 0 0 618332. 2139.56 0.29 0.11 0.0239138 0.0211412 137 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 11.23 vpr 61.68 MiB -1 -1 0.20 21380 1 0.03 -1 -1 33152 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63160 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 23.3 MiB 5.65 1076 61.7 MiB 0.08 0.00 3.54952 -122.98 -3.54952 3.54952 1.07 0.00029387 0.00023435 0.0146846 0.0120986 34 2639 22 6.87369e+06 293451 618332. 2139.56 1.86 0.10213 0.0866211 2282 20 1817 3012 210578 48448 3.7901 3.7901 -148.616 -3.7901 0 0 787024. 2723.27 0.36 0.08 0.0198406 0.0175664 142 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 9.97 vpr 61.23 MiB -1 -1 0.18 20884 1 0.02 -1 -1 33092 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62700 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 22.8 MiB 4.65 986 61.2 MiB 0.09 0.00 3.47382 -104.014 -3.47382 3.47382 1.10 0.000218168 0.00016953 0.0182648 0.0146968 34 2359 27 6.87369e+06 223581 618332. 2139.56 1.65 0.0830748 0.0699702 1872 23 1263 1690 134450 31773 3.4508 3.4508 -116.032 -3.4508 0 0 787024. 2723.27 0.35 0.06 0.014432 0.0126181 106 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.30 vpr 61.10 MiB -1 -1 0.16 20760 1 0.02 -1 -1 33156 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62568 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 22.5 MiB 0.94 891 61.1 MiB 0.07 0.00 3.17463 -98.8723 -3.17463 3.17463 1.01 0.000185364 0.000147147 0.013758 0.0113856 32 2082 21 6.87369e+06 279477 586450. 2029.24 0.96 0.0492322 0.0420594 1842 20 1184 1997 158722 35156 2.80771 2.80771 -108.139 -2.80771 0 0 744469. 2576.02 0.33 0.06 0.0140423 0.0125124 99 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 9.79 vpr 61.32 MiB -1 -1 0.18 21148 1 0.03 -1 -1 33076 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 22.7 MiB 4.24 1030 61.3 MiB 0.09 0.00 3.74338 -119.577 -3.74338 3.74338 1.09 0.000254879 0.000207213 0.0165519 0.0136403 34 2659 23 6.87369e+06 321398 618332. 2139.56 1.80 0.104704 0.0896433 2241 22 2003 2760 214818 48768 4.08806 4.08806 -144.22 -4.08806 0 0 787024. 2723.27 0.37 0.08 0.0194501 0.0172202 145 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 9.45 vpr 61.31 MiB -1 -1 0.19 21148 1 0.02 -1 -1 33104 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62780 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 22.7 MiB 3.55 1065 61.3 MiB 0.09 0.00 4.30764 -125.44 -4.30764 4.30764 1.08 0.000263318 0.00021209 0.0166295 0.0137432 34 3034 48 6.87369e+06 377294 618332. 2139.56 2.17 0.129796 0.111966 2334 23 1778 2676 178081 44463 4.87655 4.87655 -150.391 -4.87655 0 0 787024. 2723.27 0.36 0.08 0.0210576 0.0187555 142 53 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.68 vpr 61.38 MiB -1 -1 0.19 20940 1 0.02 -1 -1 33172 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 22.7 MiB 1.18 1123 61.4 MiB 0.09 0.00 4.12257 -117.553 -4.12257 4.12257 1.07 0.000269785 0.000218628 0.0133842 0.0109859 32 3613 50 6.87369e+06 503058 586450. 2029.24 1.83 0.0861561 0.0740423 2448 19 1543 2761 233473 54779 4.46745 4.46745 -143.584 -4.46745 0 0 744469. 2576.02 0.34 0.08 0.018012 0.0160588 157 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.68 vpr 61.30 MiB -1 -1 0.16 21340 1 0.02 -1 -1 33180 -1 -1 34 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62776 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 22.7 MiB 3.15 830 61.3 MiB 0.07 0.00 2.80025 -85.0933 -2.80025 2.80025 1.00 0.000300043 0.000256822 0.011412 0.0094804 28 2213 27 6.87369e+06 475111 531479. 1839.03 1.15 0.0677761 0.0589668 2013 22 1487 2661 196885 46291 3.05726 3.05726 -108.003 -3.05726 0 0 648988. 2245.63 0.29 0.07 0.0171782 0.0151437 119 47 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.84 vpr 60.99 MiB -1 -1 0.16 21032 1 0.01 -1 -1 33264 -1 -1 21 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62452 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 22.4 MiB 1.31 708 61.0 MiB 0.07 0.00 2.8908 -82.3931 -2.8908 2.8908 1.05 0.00019351 0.000159447 0.0151302 0.0124263 30 1591 21 6.87369e+06 293451 556674. 1926.21 0.98 0.0514494 0.0435793 1267 18 845 1300 67190 16039 2.62636 2.62636 -92.7742 -2.62636 0 0 706193. 2443.58 0.34 0.04 0.0115523 0.0102268 96 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 12.02 vpr 61.54 MiB -1 -1 0.18 21360 1 0.02 -1 -1 33256 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63020 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 23.0 MiB 4.97 1357 61.5 MiB 0.08 0.00 3.58845 -114.907 -3.58845 3.58845 1.10 0.000306581 0.000243453 0.0166586 0.0138567 34 4057 37 6.87369e+06 335372 618332. 2139.56 3.28 0.132765 0.114257 3001 25 2418 4077 350442 78903 4.03506 4.03506 -143.165 -4.03506 0 0 787024. 2723.27 0.35 0.12 0.0280135 0.0247795 165 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 11.96 vpr 61.55 MiB -1 -1 0.20 21356 1 0.02 -1 -1 33092 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63032 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 22.9 MiB 5.98 1006 61.6 MiB 0.08 0.00 4.58967 -138.33 -4.58967 4.58967 1.10 0.000308853 0.000257273 0.0158603 0.0131173 34 2756 37 6.87369e+06 307425 618332. 2139.56 2.20 0.110016 0.0937735 2213 19 1857 2891 218870 50302 4.61655 4.61655 -153.551 -4.61655 0 0 787024. 2723.27 0.36 0.08 0.0174075 0.015412 139 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 11.74 vpr 61.52 MiB -1 -1 0.18 21196 1 0.02 -1 -1 33084 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63000 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 23.1 MiB 6.25 1064 61.5 MiB 0.11 0.00 3.56965 -121.21 -3.56965 3.56965 1.08 0.000224042 0.000178939 0.0211083 0.0171236 34 2577 23 6.87369e+06 251529 618332. 2139.56 1.76 0.106616 0.0911277 2206 20 1451 2147 169893 38079 3.59816 3.59816 -143.362 -3.59816 0 0 787024. 2723.27 0.38 0.07 0.0183299 0.0164342 118 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 9.53 vpr 61.31 MiB -1 -1 0.19 21128 1 0.01 -1 -1 33152 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62784 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 22.9 MiB 1.71 849 61.3 MiB 0.10 0.00 3.98315 -107.338 -3.98315 3.98315 1.06 0.00025118 0.000189762 0.020458 0.0165772 36 2346 29 6.87369e+06 461137 648988. 2245.63 4.11 0.10575 0.090176 1706 24 1275 1992 138447 33796 3.7907 3.7907 -120.427 -3.7907 0 0 828058. 2865.25 0.37 0.06 0.0175238 0.01535 129 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 7.96 vpr 61.65 MiB -1 -1 0.19 21388 1 0.01 -1 -1 33208 -1 -1 34 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63132 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 23.0 MiB 2.78 1089 61.7 MiB 0.09 0.00 3.53465 -107.275 -3.53465 3.53465 1.11 0.000272109 0.000221647 0.0157754 0.0130053 26 2862 38 6.87369e+06 475111 503264. 1741.40 1.43 0.0848303 0.0729922 2567 22 1601 2662 212786 48146 4.06436 4.06436 -134.626 -4.06436 0 0 618332. 2139.56 0.31 0.08 0.020188 0.0178134 149 46 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 10.80 vpr 61.11 MiB -1 -1 0.18 21096 1 0.02 -1 -1 33184 -1 -1 31 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62576 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 22.7 MiB 2.74 833 61.1 MiB 0.08 0.00 2.8846 -84.6366 -2.8846 2.8846 1.01 0.000234586 0.000193133 0.0156305 0.0130211 30 2670 25 6.87369e+06 433189 556674. 1926.21 4.60 0.127903 0.111201 1821 19 1082 1903 121803 30427 3.03056 3.03056 -103.549 -3.03056 0 0 706193. 2443.58 0.32 0.05 0.0156867 0.0138891 124 46 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 11.11 vpr 61.66 MiB -1 -1 0.17 21236 1 0.02 -1 -1 33156 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63144 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 23.0 MiB 4.60 1220 61.7 MiB 0.12 0.00 3.82834 -125.472 -3.82834 3.82834 1.07 0.00026641 0.000210763 0.0243998 0.0203238 34 3485 48 6.87369e+06 307425 618332. 2139.56 2.76 0.15765 0.137634 2741 23 2140 3346 285812 64033 4.38286 4.38286 -159.301 -4.38286 0 0 787024. 2723.27 0.35 0.10 0.0207566 0.0184801 148 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 10.60 vpr 61.29 MiB -1 -1 0.18 21440 1 0.02 -1 -1 33188 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62756 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 22.9 MiB 4.33 1117 61.3 MiB 0.13 0.00 3.24063 -112.209 -3.24063 3.24063 1.02 0.000270431 0.000219781 0.0231706 0.0191898 30 2566 19 6.87369e+06 503058 556674. 1926.21 2.71 0.131835 0.113089 2045 20 1270 2067 118174 27697 2.99901 2.99901 -124.237 -2.99901 0 0 706193. 2443.58 0.31 0.06 0.0169475 0.0149659 147 59 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 7.40 vpr 61.21 MiB -1 -1 0.18 20840 1 0.03 -1 -1 33224 -1 -1 19 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62676 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 22.6 MiB 2.65 713 61.2 MiB 0.09 0.00 3.00718 -94.1551 -3.00718 3.00718 1.10 0.000202464 0.000163308 0.0187097 0.0152688 32 1767 45 6.87369e+06 265503 586450. 2029.24 1.07 0.0682632 0.05764 1466 21 1159 1666 119132 26407 2.95216 2.95216 -107.794 -2.95216 0 0 744469. 2576.02 0.34 0.06 0.0146225 0.0129397 101 28 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 8.97 vpr 61.38 MiB -1 -1 0.18 21212 1 0.02 -1 -1 33060 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 22.8 MiB 2.40 915 61.4 MiB 0.10 0.00 3.4413 -100.83 -3.4413 3.4413 1.06 0.00022222 0.000179118 0.0207498 0.0168556 30 2199 49 6.87369e+06 237555 556674. 1926.21 2.96 0.119186 0.100511 1884 20 1038 1445 108738 24508 3.26184 3.26184 -121.064 -3.26184 0 0 706193. 2443.58 0.34 0.05 0.0147746 0.0129874 112 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 7.18 vpr 61.54 MiB -1 -1 0.17 21384 1 0.01 -1 -1 33176 -1 -1 39 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63020 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 23.1 MiB 2.19 1016 61.5 MiB 0.09 0.00 3.57582 -106.19 -3.57582 3.57582 1.01 0.000270409 0.000228512 0.015398 0.0129968 26 2566 29 6.87369e+06 544980 503264. 1741.40 1.58 0.0784695 0.0685219 2257 20 1501 2775 230853 51905 4.019 4.019 -136.136 -4.019 0 0 618332. 2139.56 0.28 0.08 0.018803 0.0168489 135 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.70 vpr 61.24 MiB -1 -1 0.16 20816 1 0.01 -1 -1 33216 -1 -1 19 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62708 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 22.8 MiB 4.49 847 61.2 MiB 0.09 0.00 3.57718 -98.5661 -3.57718 3.57718 1.07 0.000198985 0.00016277 0.0166654 0.0138321 34 2014 22 6.87369e+06 265503 618332. 2139.56 1.58 0.0856854 0.073695 1658 23 1110 1475 97361 25487 3.31155 3.31155 -107.847 -3.31155 0 0 787024. 2723.27 0.37 0.05 0.015744 0.013958 107 25 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 10.43 vpr 61.16 MiB -1 -1 0.17 20972 1 0.01 -1 -1 33188 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62628 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 22.8 MiB 4.59 782 61.2 MiB 0.08 0.00 3.18563 -99.9623 -3.18563 3.18563 1.13 0.000201336 0.000162355 0.0159483 0.0130057 26 2821 38 6.87369e+06 209608 503264. 1741.40 2.14 0.0725497 0.0623873 2080 32 1927 3186 319205 79925 3.76336 3.76336 -131.978 -3.76336 0 0 618332. 2139.56 0.29 0.11 0.0206005 0.0180466 101 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 9.32 vpr 61.73 MiB -1 -1 0.18 21332 1 0.02 -1 -1 33176 -1 -1 37 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63208 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 23.1 MiB 3.89 917 61.7 MiB 0.15 0.00 3.06028 -98.8627 -3.06028 3.06028 1.08 0.000306402 0.000255428 0.028593 0.0236166 34 2180 21 6.87369e+06 517032 618332. 2139.56 1.68 0.123425 0.105989 1722 20 1379 2199 137520 32342 2.88996 2.88996 -111.12 -2.88996 0 0 787024. 2723.27 0.36 0.06 0.0179127 0.0158687 141 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 9.69 vpr 61.16 MiB -1 -1 0.17 20936 1 0.02 -1 -1 33152 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62624 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 22.8 MiB 4.33 726 61.2 MiB 0.05 0.00 3.0319 -91.087 -3.0319 3.0319 1.11 0.000231555 0.000184484 0.00954239 0.00801726 34 2142 24 6.87369e+06 237555 618332. 2139.56 1.68 0.082912 0.0715865 1709 22 1288 1863 126315 33129 3.56481 3.56481 -117.297 -3.56481 0 0 787024. 2723.27 0.36 0.06 0.0143463 0.0126165 105 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 8.77 vpr 61.38 MiB -1 -1 0.16 21096 1 0.02 -1 -1 33088 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 22.9 MiB 3.98 917 61.4 MiB 0.07 0.00 3.0289 -93.5431 -3.0289 3.0289 0.99 0.000272182 0.000227646 0.0111468 0.00936337 28 2447 24 6.87369e+06 433189 531479. 1839.03 1.43 0.071957 0.0625876 2089 20 1248 2136 161783 38004 3.24491 3.24491 -117.328 -3.24491 0 0 648988. 2245.63 0.30 0.07 0.0189821 0.016898 129 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 9.76 vpr 61.33 MiB -1 -1 0.20 21344 1 0.02 -1 -1 33236 -1 -1 32 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62804 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 22.9 MiB 4.95 849 61.3 MiB 0.09 0.00 2.9696 -99.9772 -2.9696 2.9696 1.05 0.000267307 0.000208883 0.0174792 0.014275 32 2885 26 6.87369e+06 447163 586450. 2029.24 1.13 0.0737779 0.0626259 1985 23 2023 2954 249126 58055 3.09661 3.09661 -122.395 -3.09661 0 0 744469. 2576.02 0.35 0.09 0.0206093 0.0179925 137 87 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 8.51 vpr 61.16 MiB -1 -1 0.17 20916 1 0.02 -1 -1 33192 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62628 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 22.7 MiB 3.26 663 61.2 MiB 0.07 0.00 2.8516 -85.6928 -2.8516 2.8516 1.05 0.000236979 0.00019427 0.0133418 0.0110701 34 1999 23 6.87369e+06 223581 618332. 2139.56 1.68 0.0915173 0.0785827 1539 22 1137 1839 127363 32856 2.95831 2.95831 -107.065 -2.95831 0 0 787024. 2723.27 0.36 0.06 0.0164906 0.0145143 99 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 7.75 vpr 61.01 MiB -1 -1 0.18 21052 1 0.01 -1 -1 33068 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62472 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 22.4 MiB 2.35 947 61.0 MiB 0.09 0.00 3.36109 -108.236 -3.36109 3.36109 1.07 0.00021977 0.000177825 0.0184678 0.0151817 34 2401 24 6.87369e+06 251529 618332. 2139.56 1.75 0.0941041 0.0802914 2061 19 1393 2115 182200 40922 3.30611 3.30611 -123.235 -3.30611 0 0 787024. 2723.27 0.37 0.06 0.0138523 0.0122647 114 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 9.03 vpr 60.99 MiB -1 -1 0.17 21164 1 0.03 -1 -1 33212 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62456 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 22.6 MiB 3.68 959 61.0 MiB 0.05 0.00 3.86978 -112.246 -3.86978 3.86978 1.09 0.000257938 0.000214481 0.00944878 0.00789058 34 2588 23 6.87369e+06 307425 618332. 2139.56 1.75 0.0909205 0.0781177 2139 21 1589 2273 155280 37964 3.85576 3.85576 -127.996 -3.85576 0 0 787024. 2723.27 0.36 0.07 0.0172009 0.0152194 132 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 9.21 vpr 61.31 MiB -1 -1 0.19 21296 1 0.02 -1 -1 33256 -1 -1 29 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62784 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 22.9 MiB 3.94 953 61.3 MiB 0.08 0.00 3.20763 -92.6716 -3.20763 3.20763 1.11 0.000244883 0.000200875 0.0138228 0.0114327 34 2130 19 6.87369e+06 405241 618332. 2139.56 1.57 0.0816278 0.0690081 1816 20 1029 1780 114614 27706 3.09131 3.09131 -107.309 -3.09131 0 0 787024. 2723.27 0.35 0.05 0.015136 0.0132686 123 49 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.48 vpr 61.65 MiB -1 -1 0.17 21220 1 0.01 -1 -1 33148 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63128 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 23.2 MiB 4.01 1160 61.6 MiB 0.11 0.00 4.14151 -136.868 -4.14151 4.14151 1.01 0.000271634 0.000223136 0.022482 0.0187537 34 2892 24 6.87369e+06 307425 618332. 2139.56 1.95 0.120832 0.104109 2401 21 1704 2579 203451 45704 4.05196 4.05196 -152.895 -4.05196 0 0 787024. 2723.27 0.34 0.07 0.0187961 0.0166497 151 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 7.00 vpr 60.90 MiB -1 -1 0.16 20756 1 0.01 -1 -1 32952 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62360 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 22.4 MiB 0.97 791 60.9 MiB 0.05 0.00 2.9769 -91.6903 -2.9769 2.9769 1.07 0.000202801 0.000158842 0.00974912 0.00807234 28 1908 20 6.87369e+06 237555 531479. 1839.03 2.53 0.0851932 0.0725395 1742 19 910 1443 96757 23211 2.94631 2.94631 -107.591 -2.94631 0 0 648988. 2245.63 0.31 0.05 0.0118853 0.0105618 92 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 7.52 vpr 61.71 MiB -1 -1 0.20 21212 1 0.02 -1 -1 33224 -1 -1 35 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63192 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 23.2 MiB 2.70 1114 61.7 MiB 0.14 0.00 3.50715 -120.695 -3.50715 3.50715 1.10 0.00028608 0.000229466 0.026075 0.0214098 30 2509 23 6.87369e+06 489084 556674. 1926.21 1.08 0.084303 0.0716132 2036 21 1480 2224 131814 31217 3.71516 3.71516 -140.914 -3.71516 0 0 706193. 2443.58 0.32 0.06 0.0176557 0.0154435 145 87 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 11.56 vpr 61.37 MiB -1 -1 0.19 21140 1 0.02 -1 -1 33100 -1 -1 16 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 22.9 MiB 6.35 808 61.4 MiB 0.08 0.00 2.9898 -106.443 -2.9898 2.9898 1.04 0.000243503 0.000193805 0.0174317 0.0141747 34 2146 22 6.87369e+06 223581 618332. 2139.56 1.62 0.0926826 0.0777724 1728 21 1497 2136 156375 37120 3.29991 3.29991 -129.477 -3.29991 0 0 787024. 2723.27 0.35 0.06 0.0170395 0.0148674 114 93 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 9.15 vpr 61.41 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33108 -1 -1 32 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62888 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 22.9 MiB 3.98 975 61.4 MiB 0.12 0.00 3.24063 -102.007 -3.24063 3.24063 1.06 0.000272391 0.000213503 0.0214036 0.0176116 28 2707 25 6.87369e+06 447163 531479. 1839.03 1.55 0.0886245 0.0767942 2209 19 1322 2181 167427 39552 3.12431 3.12431 -119.151 -3.12431 0 0 648988. 2245.63 0.30 0.07 0.0167629 0.0148186 134 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 11.65 vpr 61.61 MiB -1 -1 0.18 21776 1 0.02 -1 -1 33244 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63092 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 23.1 MiB 5.52 1278 61.6 MiB 0.12 0.00 4.56475 -139.986 -4.56475 4.56475 1.06 0.000313618 0.000260496 0.0202872 0.0169569 34 3321 24 6.87369e+06 349346 618332. 2139.56 2.42 0.14171 0.123701 2644 24 2197 3309 270459 61343 4.9322 4.9322 -166.818 -4.9322 0 0 787024. 2723.27 0.36 0.10 0.0260067 0.0231645 171 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.99 vpr 60.82 MiB -1 -1 0.15 21124 1 0.02 -1 -1 33092 -1 -1 15 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62276 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 22.3 MiB 1.70 628 60.8 MiB 0.05 0.00 2.53052 -79.2228 -2.53052 2.53052 1.00 0.000162266 0.000132155 0.00961407 0.00797162 30 1598 21 6.87369e+06 209608 556674. 1926.21 2.01 0.0712632 0.0604788 1316 21 717 977 65508 16189 2.45377 2.45377 -95.9183 -2.45377 0 0 706193. 2443.58 0.31 0.04 0.0109262 0.00960024 81 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 6.81 vpr 61.20 MiB -1 -1 0.18 21020 1 0.02 -1 -1 33072 -1 -1 19 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62672 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 22.8 MiB 1.59 694 61.2 MiB 0.07 0.00 3.14163 -97.4314 -3.14163 3.14163 1.09 0.00020238 0.000160933 0.0153849 0.012533 34 1747 23 6.87369e+06 265503 618332. 2139.56 1.55 0.0776369 0.0653766 1446 18 987 1522 96857 24427 3.08861 3.08861 -112.837 -3.08861 0 0 787024. 2723.27 0.36 0.05 0.013511 0.0119589 105 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.77 vpr 61.01 MiB -1 -1 0.16 21112 1 0.01 -1 -1 33132 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62476 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 22.4 MiB 1.49 757 61.0 MiB 0.09 0.00 2.9879 -98.3696 -2.9879 2.9879 1.06 0.00021395 0.000171639 0.0153117 0.0124803 34 2241 23 6.87369e+06 321398 618332. 2139.56 1.68 0.0820288 0.0691653 1828 25 1471 2595 200020 48746 3.18886 3.18886 -117.491 -3.18886 0 0 787024. 2723.27 0.35 0.07 0.0160706 0.0139724 109 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.50 vpr 61.07 MiB -1 -1 0.16 20840 1 0.01 -1 -1 33220 -1 -1 29 25 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62540 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 22.6 MiB 1.04 490 61.1 MiB 0.07 0.00 2.9029 -68.5197 -2.9029 2.9029 1.06 0.000169055 0.000135709 0.0130171 0.0106107 30 1250 20 6.87369e+06 405241 556674. 1926.21 0.94 0.0431164 0.0363484 1103 18 623 1072 56806 15102 2.80496 2.80496 -77.2883 -2.80496 0 0 706193. 2443.58 0.33 0.03 0.0101211 0.00893632 87 19 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 9.57 vpr 61.56 MiB -1 -1 0.18 21216 1 0.02 -1 -1 33248 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63040 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 22.9 MiB 3.83 1081 61.6 MiB 0.13 0.00 3.76805 -112.815 -3.76805 3.76805 1.09 0.000260808 0.000211433 0.0241769 0.0198528 34 3004 22 6.87369e+06 279477 618332. 2139.56 1.94 0.116446 0.0994928 2397 22 1632 2867 211615 50851 3.8217 3.8217 -130.542 -3.8217 0 0 787024. 2723.27 0.36 0.08 0.0191728 0.0168832 133 69 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 9.14 vpr 61.74 MiB -1 -1 0.18 21192 1 0.02 -1 -1 33276 -1 -1 31 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63224 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 23.3 MiB 4.01 1001 61.7 MiB 0.10 0.00 3.22963 -107.238 -3.22963 3.22963 1.01 0.000277967 0.000228614 0.0210021 0.0174209 34 2391 23 6.87369e+06 433189 618332. 2139.56 1.58 0.10628 0.0903072 1912 19 1507 2325 147343 36022 3.18561 3.18561 -123.42 -3.18561 0 0 787024. 2723.27 0.35 0.06 0.0172885 0.0152638 143 86 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 9.01 vpr 60.98 MiB -1 -1 0.17 21200 1 0.03 -1 -1 33200 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62440 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 22.5 MiB 3.41 1258 61.0 MiB 0.10 0.00 4.38637 -131.151 -4.38637 4.38637 1.00 0.000248347 0.000204868 0.0191522 0.0158869 36 2652 22 6.89349e+06 338252 648988. 2245.63 2.12 0.118326 0.102798 2401 20 1516 2252 161374 36471 4.58675 4.58675 -154.185 -4.58675 0 0 828058. 2865.25 0.36 0.07 0.0178283 0.0157469 149 47 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 8.26 vpr 61.36 MiB -1 -1 0.19 21296 1 0.02 -1 -1 33196 -1 -1 26 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62836 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 22.8 MiB 2.38 1124 61.4 MiB 0.12 0.00 3.89968 -121.108 -3.89968 3.89968 1.08 0.000266296 0.000214152 0.0228254 0.0185783 34 2938 30 6.89349e+06 366440 618332. 2139.56 2.13 0.119684 0.102261 2467 22 2152 3195 239254 54235 4.27363 4.27363 -142.824 -4.27363 0 0 787024. 2723.27 0.35 0.08 0.0181492 0.0159805 156 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 8.34 vpr 61.16 MiB -1 -1 0.18 21212 1 0.01 -1 -1 33192 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62624 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 22.6 MiB 2.76 1031 61.2 MiB 0.10 0.00 3.40339 -100.19 -3.40339 3.40339 1.05 0.000223712 0.00017925 0.0175426 0.0142999 36 2374 32 6.89349e+06 295971 648988. 2245.63 1.95 0.0937397 0.0796529 2073 20 1243 1747 129110 29331 3.7566 3.7566 -120.589 -3.7566 0 0 828058. 2865.25 0.36 0.05 0.0142232 0.0124848 125 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 8.29 vpr 61.10 MiB -1 -1 0.17 21284 1 0.02 -1 -1 33144 -1 -1 24 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62568 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 22.6 MiB 2.32 917 61.1 MiB 0.08 0.00 3.88408 -105.036 -3.88408 3.88408 1.06 0.000244801 0.000202192 0.0185584 0.0153599 36 2410 25 6.89349e+06 338252 648988. 2245.63 2.33 0.112724 0.0978042 1972 22 1400 2286 145265 35900 4.0542 4.0542 -123.007 -4.0542 0 0 828058. 2865.25 0.37 0.06 0.0174478 0.0154004 134 25 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.14 vpr 61.42 MiB -1 -1 0.18 21104 1 0.02 -1 -1 33108 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62892 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 23.0 MiB 2.05 1200 61.4 MiB 0.09 0.00 4.11871 -124.351 -4.11871 4.11871 1.06 0.00024513 0.000192732 0.0161436 0.013211 34 3142 29 6.89349e+06 324158 618332. 2139.56 2.43 0.11227 0.0965546 2587 20 1826 3136 263837 56262 4.32709 4.32709 -146.881 -4.32709 0 0 787024. 2723.27 0.36 0.09 0.0192816 0.0171698 142 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 8.49 vpr 61.47 MiB -1 -1 0.17 21388 1 0.01 -1 -1 33204 -1 -1 33 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 22.8 MiB 2.81 1237 61.5 MiB 0.14 0.00 3.29756 -105.675 -3.29756 3.29756 0.99 0.00025234 0.000206496 0.0229376 0.0189149 34 3214 30 6.89349e+06 465097 618332. 2139.56 2.17 0.125051 0.107711 2455 22 1721 2838 190555 44718 3.558 3.558 -127.601 -3.558 0 0 787024. 2723.27 0.34 0.08 0.0208293 0.0184784 162 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.84 vpr 60.54 MiB -1 -1 0.16 21076 1 0.01 -1 -1 33336 -1 -1 21 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61996 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 22.0 MiB 1.72 699 60.5 MiB 0.07 0.00 3.25123 -86.8223 -3.25123 3.25123 1.00 0.000186559 0.000153971 0.0134124 0.0111618 34 1793 30 6.89349e+06 295971 618332. 2139.56 1.77 0.0810613 0.0695556 1439 21 1119 1641 121542 28738 3.02626 3.02626 -99.2829 -3.02626 0 0 787024. 2723.27 0.33 0.05 0.0124663 0.0109265 107 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 6.06 vpr 60.77 MiB -1 -1 0.17 20724 1 0.01 -1 -1 33116 -1 -1 32 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62228 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 22.3 MiB 1.04 881 60.8 MiB 0.11 0.00 2.54074 -81.4081 -2.54074 2.54074 1.07 0.000220105 0.000178941 0.0193902 0.0157766 28 2351 20 6.89349e+06 451003 531479. 1839.03 1.46 0.0730747 0.0630346 1916 20 1075 1965 153303 34019 2.57631 2.57631 -97.5849 -2.57631 0 0 648988. 2245.63 0.31 0.06 0.0151295 0.0133784 119 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.81 vpr 60.96 MiB -1 -1 0.18 21392 1 0.01 -1 -1 33164 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62428 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 22.3 MiB 2.39 1101 61.0 MiB 0.08 0.00 2.92775 -104.147 -2.92775 2.92775 1.09 0.000251766 0.000190459 0.0170642 0.0140155 34 2627 24 6.89349e+06 281877 618332. 2139.56 1.72 0.0895318 0.0759084 2220 21 1579 2135 163867 36264 2.90321 2.90321 -119.019 -2.90321 0 0 787024. 2723.27 0.35 0.07 0.0170652 0.0151892 130 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 8.52 vpr 61.10 MiB -1 -1 0.17 20772 1 0.02 -1 -1 33096 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62564 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 22.6 MiB 3.08 868 61.1 MiB 0.08 0.00 3.15648 -104.589 -3.15648 3.15648 1.06 0.000218795 0.000176012 0.0128358 0.0105428 36 2114 26 6.89349e+06 253689 648988. 2245.63 1.84 0.0843268 0.0718427 1763 18 977 1313 91898 21696 3.0391 3.0391 -117.895 -3.0391 0 0 828058. 2865.25 0.37 0.05 0.0130981 0.0115479 120 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 8.41 vpr 60.79 MiB -1 -1 0.18 21244 1 0.02 -1 -1 33152 -1 -1 21 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62248 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 22.3 MiB 3.00 1110 60.8 MiB 0.10 0.00 3.45767 -107.436 -3.45767 3.45767 1.07 0.000232976 0.000185423 0.0209499 0.0169026 34 2408 24 6.89349e+06 295971 618332. 2139.56 1.75 0.0979698 0.0832147 1987 19 1264 1660 126428 27875 3.50195 3.50195 -125.119 -3.50195 0 0 787024. 2723.27 0.36 0.06 0.0145382 0.0128998 124 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.00 vpr 60.97 MiB -1 -1 0.16 21124 1 0.01 -1 -1 33132 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62436 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 22.3 MiB 2.06 871 61.0 MiB 0.04 0.00 2.911 -88.6667 -2.911 2.911 1.01 0.00020798 0.00016923 0.00791746 0.00659441 34 2208 23 6.89349e+06 239595 618332. 2139.56 1.57 0.0793777 0.0684944 1893 21 1161 1580 114252 27187 2.95271 2.95271 -108.648 -2.95271 0 0 787024. 2723.27 0.34 0.05 0.0146975 0.0129883 108 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 9.50 vpr 61.46 MiB -1 -1 0.17 21216 1 0.01 -1 -1 33108 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62936 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 23.0 MiB 2.78 950 61.5 MiB 0.05 0.00 3.19568 -103.713 -3.19568 3.19568 1.00 0.000246865 0.000194145 0.0110803 0.00927224 36 2842 49 6.89349e+06 324158 648988. 2245.63 3.24 0.130244 0.113888 2200 21 1834 2779 212783 50258 3.20956 3.20956 -122.448 -3.20956 0 0 828058. 2865.25 0.35 0.08 0.0198595 0.0177596 143 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.69 vpr 61.37 MiB -1 -1 0.19 21356 1 0.02 -1 -1 33140 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 22.8 MiB 2.64 1201 61.4 MiB 0.13 0.00 4.39437 -125.919 -4.39437 4.39437 1.08 0.000262861 0.000213553 0.0248053 0.0204369 34 3142 29 6.89349e+06 338252 618332. 2139.56 2.30 0.117452 0.100582 2482 23 1912 2737 245289 70143 4.72905 4.72905 -157.338 -4.72905 0 0 787024. 2723.27 0.36 0.09 0.0195787 0.0172213 153 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.89 vpr 60.84 MiB -1 -1 0.17 20852 1 0.02 -1 -1 33168 -1 -1 18 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62304 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 22.3 MiB 2.76 731 60.8 MiB 0.08 0.00 2.55142 -77.1868 -2.55142 2.55142 1.05 0.000183881 0.000147767 0.01595 0.0130402 34 1978 33 6.89349e+06 253689 618332. 2139.56 1.58 0.0769221 0.0647733 1672 22 1107 1628 110797 26051 2.77396 2.77396 -91.9874 -2.77396 0 0 787024. 2723.27 0.36 0.05 0.0128577 0.0112598 102 21 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 9.24 vpr 61.46 MiB -1 -1 0.18 21388 1 0.01 -1 -1 33096 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62932 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 22.9 MiB 3.06 1325 61.5 MiB 0.12 0.00 3.30814 -110.798 -3.30814 3.30814 1.08 0.000284841 0.000235505 0.0222975 0.0185256 34 3564 43 6.89349e+06 338252 618332. 2139.56 2.45 0.152504 0.132899 2897 21 2100 3357 265693 58229 3.84165 3.84165 -138.555 -3.84165 0 0 787024. 2723.27 0.36 0.10 0.0235755 0.0210026 159 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 8.45 vpr 61.36 MiB -1 -1 0.19 21152 1 0.02 -1 -1 33076 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62836 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 23.0 MiB 2.79 1170 61.4 MiB 0.10 0.00 3.31298 -112.589 -3.31298 3.31298 1.05 0.000243868 0.000196991 0.0202017 0.0165297 36 2765 19 6.89349e+06 310065 648988. 2245.63 1.98 0.111184 0.0957754 2480 18 1439 2121 170755 36836 3.23566 3.23566 -123.962 -3.23566 0 0 828058. 2865.25 0.38 0.07 0.0174034 0.0155378 142 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.88 vpr 61.02 MiB -1 -1 0.15 21360 1 0.02 -1 -1 33132 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62488 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 22.3 MiB 2.35 1120 61.0 MiB 0.08 0.00 2.80245 -104.484 -2.80245 2.80245 1.00 0.000236946 0.000192497 0.0127451 0.0105509 34 2839 46 6.89349e+06 295971 618332. 2139.56 2.13 0.110882 0.0960673 2307 18 1411 1899 139548 31386 2.85096 2.85096 -122.043 -2.85096 0 0 787024. 2723.27 0.34 0.06 0.0160061 0.0143055 131 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.78 vpr 60.82 MiB -1 -1 0.17 20912 1 0.02 -1 -1 33144 -1 -1 15 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62280 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 22.4 MiB 1.44 565 60.8 MiB 0.06 0.00 2.15123 -70.3042 -2.15123 2.15123 1.05 0.000167702 0.000134314 0.0124176 0.0100928 28 1551 24 6.89349e+06 211408 531479. 1839.03 0.89 0.0423196 0.0353926 1218 16 727 832 58313 15402 2.23532 2.23532 -88.5595 -2.23532 0 0 648988. 2245.63 0.30 0.03 0.00915037 0.00809009 82 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 8.05 vpr 61.05 MiB -1 -1 0.15 21340 1 0.02 -1 -1 33156 -1 -1 19 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62520 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 22.6 MiB 2.87 862 61.1 MiB 0.07 0.00 3.72732 -112.648 -3.72732 3.72732 0.98 0.000217595 0.000178449 0.0129972 0.010795 34 2294 30 6.89349e+06 267783 618332. 2139.56 1.83 0.0924566 0.0799411 1931 19 1242 1928 151617 35448 3.57316 3.57316 -130.757 -3.57316 0 0 787024. 2723.27 0.33 0.06 0.0140963 0.0125135 117 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.47 vpr 61.41 MiB -1 -1 0.18 21364 1 0.01 -1 -1 33244 -1 -1 34 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62884 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 23.0 MiB 1.52 1242 61.4 MiB 0.15 0.00 3.68693 -122.353 -3.68693 3.68693 1.05 0.000254459 0.000207523 0.0238228 0.0195647 30 2803 50 6.89349e+06 479191 556674. 1926.21 1.34 0.100326 0.0862154 2225 19 1364 2015 125569 28555 3.87094 3.87094 -142.439 -3.87094 0 0 706193. 2443.58 0.33 0.06 0.0174785 0.0155437 151 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 8.00 vpr 61.55 MiB -1 -1 0.20 21440 1 0.01 -1 -1 33204 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63024 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 23.0 MiB 2.01 1290 61.5 MiB 0.11 0.00 3.66325 -114.402 -3.66325 3.66325 1.04 0.000248749 0.000202577 0.0202073 0.0164628 34 3274 34 6.89349e+06 324158 618332. 2139.56 2.34 0.112143 0.0951626 2621 19 1790 2751 201484 45084 4.1775 4.1775 -139.491 -4.1775 0 0 787024. 2723.27 0.35 0.07 0.0168551 0.0148804 155 59 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 6.46 vpr 60.70 MiB -1 -1 0.15 20772 1 0.01 -1 -1 33112 -1 -1 19 26 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62152 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 22.1 MiB 1.57 529 60.7 MiB 0.05 0.00 2.07721 -58.856 -2.07721 2.07721 0.99 0.000146861 0.000120225 0.0110211 0.00912908 36 1214 20 6.89349e+06 267783 648988. 2245.63 1.60 0.0583814 0.0498368 1033 19 695 804 51423 12965 2.25542 2.25542 -69.8966 -2.25542 0 0 828058. 2865.25 0.35 0.03 0.00860259 0.00752749 76 21 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.54 vpr 61.05 MiB -1 -1 0.17 20652 1 0.01 -1 -1 33232 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62520 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 22.7 MiB 1.22 1021 61.1 MiB 0.07 0.00 3.52907 -106.406 -3.52907 3.52907 1.06 0.000230962 0.000187472 0.0120987 0.00993654 34 2171 21 6.89349e+06 324158 618332. 2139.56 1.70 0.0786988 0.0668911 1946 21 1256 2288 159603 36573 3.61695 3.61695 -121.77 -3.61695 0 0 787024. 2723.27 0.37 0.06 0.0144171 0.0126812 119 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 5.13 vpr 60.27 MiB -1 -1 0.14 20308 1 0.01 -1 -1 32896 -1 -1 12 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 61720 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 21.8 MiB 0.46 416 60.3 MiB 0.05 0.00 1.84032 -58.3779 -1.84032 1.84032 0.99 0.000137663 0.000111666 0.0101383 0.00832005 34 1180 47 6.89349e+06 169126 618332. 2139.56 1.42 0.0560824 0.0471854 913 15 474 609 37398 10533 1.77816 1.77816 -70.602 -1.77816 0 0 787024. 2723.27 0.34 0.03 0.00719409 0.00639139 65 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 7.78 vpr 61.22 MiB -1 -1 0.17 20888 1 0.01 -1 -1 33068 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62692 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 22.7 MiB 2.34 977 61.2 MiB 0.06 0.00 3.87678 -109.844 -3.87678 3.87678 1.08 0.000236532 0.000192424 0.00976327 0.00809229 36 2339 25 6.89349e+06 281877 648988. 2245.63 1.83 0.0874145 0.0749476 1896 19 1056 1595 108489 25357 3.47866 3.47866 -117.58 -3.47866 0 0 828058. 2865.25 0.36 0.05 0.0148266 0.0131496 125 21 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 5.95 vpr 61.10 MiB -1 -1 0.16 20796 1 0.02 -1 -1 33208 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62568 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 22.6 MiB 1.06 973 61.1 MiB 0.12 0.00 2.8286 -92.1764 -2.8286 2.8286 1.04 0.000234726 0.000182709 0.0194899 0.0156432 28 2351 43 6.89349e+06 436909 531479. 1839.03 1.35 0.0764899 0.0647565 2052 22 1401 2465 175820 41150 2.74281 2.74281 -106.691 -2.74281 0 0 648988. 2245.63 0.30 0.07 0.0153569 0.0134318 130 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.80 vpr 61.35 MiB -1 -1 0.17 21344 1 0.01 -1 -1 33072 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62820 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 22.9 MiB 3.04 1247 61.3 MiB 0.11 0.00 3.79978 -114.569 -3.79978 3.79978 1.05 0.000239531 0.000188956 0.0205821 0.0170176 34 3057 19 6.89349e+06 324158 618332. 2139.56 2.13 0.116656 0.100999 2565 20 1649 2479 197544 43667 4.03316 4.03316 -140.904 -4.03316 0 0 787024. 2723.27 0.35 0.07 0.0176991 0.0156788 142 47 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.42 vpr 61.15 MiB -1 -1 0.16 20972 1 0.02 -1 -1 33164 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62620 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 22.8 MiB 2.29 776 61.2 MiB 0.05 0.00 2.9839 -95.7394 -2.9839 2.9839 1.00 0.000206531 0.000168892 0.0103423 0.00858088 34 2342 26 6.89349e+06 239595 618332. 2139.56 1.77 0.085688 0.0736743 1689 21 1181 1690 114650 30315 2.80596 2.80596 -113.384 -2.80596 0 0 787024. 2723.27 0.33 0.05 0.0144413 0.0127722 112 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.93 vpr 60.87 MiB -1 -1 0.18 20852 1 0.01 -1 -1 33104 -1 -1 17 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62328 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 22.3 MiB 2.60 853 60.9 MiB 0.04 0.00 3.39112 -94.8274 -3.39112 3.39112 1.05 0.000194407 0.000156778 0.00678114 0.00565741 34 2120 20 6.89349e+06 239595 618332. 2139.56 1.78 0.0692078 0.05917 1745 24 984 1686 141041 32737 3.1662 3.1662 -109.366 -3.1662 0 0 787024. 2723.27 0.35 0.06 0.0153937 0.0135578 104 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 7.85 vpr 60.90 MiB -1 -1 0.15 20896 1 0.00 -1 -1 33012 -1 -1 20 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62364 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 22.3 MiB 2.21 886 60.9 MiB 0.08 0.00 3.27894 -96.9725 -3.27894 3.27894 1.01 0.000189604 0.000155351 0.0157187 0.0129994 36 2087 20 6.89349e+06 281877 648988. 2245.63 2.23 0.0877251 0.0759311 1801 18 1003 1668 126504 27944 3.21315 3.21315 -112.194 -3.21315 0 0 828058. 2865.25 0.35 0.05 0.0124924 0.0110676 107 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.56 vpr 60.85 MiB -1 -1 0.16 20592 1 0.01 -1 -1 33160 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62312 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 22.3 MiB 0.89 923 60.9 MiB 0.08 0.00 2.99448 -98.7262 -2.99448 2.99448 1.04 0.000195637 0.000156946 0.0147909 0.0120803 32 2361 40 6.89349e+06 239595 586450. 2029.24 1.17 0.0598431 0.0508048 1887 19 1211 2002 158768 35218 2.79106 2.79106 -114.205 -2.79106 0 0 744469. 2576.02 0.33 0.06 0.0119763 0.0105158 101 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.71 vpr 60.62 MiB -1 -1 0.18 21080 1 0.02 -1 -1 33208 -1 -1 18 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62072 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 22.0 MiB 2.23 974 60.6 MiB 0.09 0.00 2.82865 -93.3614 -2.82865 2.82865 1.05 0.000214908 0.000175057 0.017983 0.01467 34 2356 32 6.89349e+06 253689 618332. 2139.56 1.88 0.0884693 0.0749392 1902 19 947 1340 107411 24281 3.00446 3.00446 -112.549 -3.00446 0 0 787024. 2723.27 0.35 0.05 0.0131417 0.0116162 108 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.47 vpr 61.09 MiB -1 -1 0.16 21356 1 0.01 -1 -1 33144 -1 -1 22 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 22.6 MiB 2.48 841 61.1 MiB 0.05 0.00 2.71745 -82.4209 -2.71745 2.71745 0.99 0.000202773 0.000166629 0.00965086 0.0080248 36 1981 18 6.89349e+06 310065 648988. 2245.63 1.62 0.0769832 0.0660589 1732 22 1115 1543 103729 24240 2.72096 2.72096 -97.9504 -2.72096 0 0 828058. 2865.25 0.35 0.05 0.0139456 0.0121995 120 48 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 8.51 vpr 61.20 MiB -1 -1 0.18 21084 1 0.02 -1 -1 33196 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62668 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 22.6 MiB 2.33 1267 61.2 MiB 0.13 0.00 3.55515 -109.145 -3.55515 3.55515 1.06 0.000276106 0.000224789 0.0246042 0.0202685 34 3281 34 6.89349e+06 352346 618332. 2139.56 2.49 0.148716 0.12889 2530 20 1572 2586 192561 43123 3.7688 3.7688 -129.481 -3.7688 0 0 787024. 2723.27 0.36 0.08 0.02142 0.0191187 159 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 8.93 vpr 61.51 MiB -1 -1 0.19 21236 1 0.02 -1 -1 33220 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62984 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 23.1 MiB 2.90 1283 61.5 MiB 0.10 0.00 3.70207 -127.803 -3.70207 3.70207 1.06 0.000279706 0.000226236 0.0187949 0.0154239 36 3123 22 6.89349e+06 338252 648988. 2245.63 2.29 0.110496 0.0943985 2693 22 2386 3343 262151 57300 3.64405 3.64405 -144.351 -3.64405 0 0 828058. 2865.25 0.37 0.09 0.0205929 0.0182256 168 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.95 vpr 60.97 MiB -1 -1 0.17 21192 1 0.01 -1 -1 33108 -1 -1 18 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62432 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 22.3 MiB 1.67 893 61.0 MiB 0.09 0.00 3.26594 -99.975 -3.26594 3.26594 0.98 0.000198634 0.000162606 0.0168716 0.0139657 34 2244 27 6.89349e+06 253689 618332. 2139.56 1.91 0.0924233 0.0792675 1885 22 1226 1887 150201 33380 3.17996 3.17996 -111.968 -3.17996 0 0 787024. 2723.27 0.34 0.06 0.0140359 0.0123706 109 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.68 vpr 61.56 MiB -1 -1 0.18 21404 1 0.01 -1 -1 33148 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63036 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 23.0 MiB 3.12 1146 61.6 MiB 0.08 0.00 3.40229 -108.392 -3.40229 3.40229 1.06 0.000263295 0.000214019 0.0130448 0.0107542 34 3153 36 6.89349e+06 352346 618332. 2139.56 1.90 0.104287 0.0884263 2467 18 1704 2555 177578 41992 3.60535 3.60535 -129.143 -3.60535 0 0 787024. 2723.27 0.36 0.07 0.0166626 0.0148114 160 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 10.15 vpr 61.43 MiB -1 -1 0.19 21344 1 0.02 -1 -1 33124 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62908 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 22.8 MiB 3.74 1188 61.4 MiB 0.13 0.00 4.33027 -130.926 -4.33027 4.33027 1.04 0.000261255 0.000211439 0.0241769 0.0196971 34 3379 31 6.89349e+06 352346 618332. 2139.56 2.70 0.119988 0.102114 2711 22 2242 3273 304119 64755 4.65628 4.65628 -158.356 -4.65628 0 0 787024. 2723.27 0.35 0.10 0.0195417 0.0172288 163 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 8.30 vpr 61.63 MiB -1 -1 0.18 21344 1 0.02 -1 -1 33244 -1 -1 25 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63108 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 23.0 MiB 2.91 1113 61.6 MiB 0.12 0.00 4.70698 -136.361 -4.70698 4.70698 0.99 0.000251997 0.0001995 0.023824 0.0197414 36 2579 22 6.89349e+06 352346 648988. 2245.63 1.87 0.116619 0.0998098 2305 20 1558 2337 155199 35915 4.78558 4.78558 -164.062 -4.78558 0 0 828058. 2865.25 0.35 0.06 0.0181648 0.0160884 166 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 8.31 vpr 61.30 MiB -1 -1 0.17 21148 1 0.02 -1 -1 33144 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62776 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 22.8 MiB 2.75 1200 61.3 MiB 0.08 0.00 3.30198 -104.242 -3.30198 3.30198 1.05 0.000256977 0.000212365 0.0142765 0.0118553 34 3072 27 6.89349e+06 338252 618332. 2139.56 1.95 0.114547 0.0992074 2448 22 1901 2844 222668 49202 3.28506 3.28506 -120.732 -3.28506 0 0 787024. 2723.27 0.35 0.08 0.0202776 0.0179495 148 51 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.99 vpr 61.20 MiB -1 -1 0.16 21032 1 0.01 -1 -1 33060 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62672 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 22.7 MiB 2.62 1088 61.2 MiB 0.10 0.00 3.64925 -100.233 -3.64925 3.64925 1.04 0.000215234 0.000173933 0.0184922 0.0151072 34 2558 42 6.89349e+06 281877 618332. 2139.56 1.76 0.0929772 0.0784061 2102 21 1144 1654 140956 30578 3.7908 3.7908 -121.005 -3.7908 0 0 787024. 2723.27 0.35 0.06 0.0144434 0.0127345 120 24 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 9.13 vpr 61.79 MiB -1 -1 0.18 21640 1 0.01 -1 -1 33272 -1 -1 31 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63268 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 23.4 MiB 3.01 1381 61.8 MiB 0.11 0.00 4.07841 -129.195 -4.07841 4.07841 1.00 0.000342147 0.000285996 0.0193759 0.0162046 40 2965 24 6.89349e+06 436909 706193. 2443.58 2.48 0.148286 0.129707 2826 23 2606 3948 333180 80870 4.75539 4.75539 -155.673 -4.75539 0 0 926341. 3205.33 0.38 0.11 0.0251194 0.0222649 203 84 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 7.46 vpr 60.97 MiB -1 -1 0.18 20808 1 0.01 -1 -1 33180 -1 -1 18 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62436 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 22.4 MiB 2.31 950 61.0 MiB 0.06 0.00 2.974 -91.9843 -2.974 2.974 1.06 0.000197196 0.000159006 0.0113992 0.0093855 34 2075 22 6.89349e+06 253689 618332. 2139.56 1.54 0.0683161 0.0571922 1850 19 1070 1474 99561 23548 2.86421 2.86421 -106.445 -2.86421 0 0 787024. 2723.27 0.36 0.05 0.0130049 0.0115284 106 24 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.71 vpr 61.16 MiB -1 -1 0.17 21200 1 0.02 -1 -1 33148 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62632 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 22.8 MiB 2.03 1209 61.2 MiB 0.08 0.00 3.88972 -120.106 -3.88972 3.88972 1.01 0.000272228 0.000226574 0.014446 0.0121084 30 2954 24 6.89349e+06 324158 556674. 1926.21 1.25 0.0766469 0.0670949 2368 19 1439 2151 172062 37830 3.9298 3.9298 -137.987 -3.9298 0 0 706193. 2443.58 0.31 0.07 0.0171022 0.0153194 140 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 9.14 vpr 61.37 MiB -1 -1 0.19 21212 1 0.02 -1 -1 33044 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62844 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 22.8 MiB 3.21 1252 61.4 MiB 0.11 0.00 3.53859 -110.752 -3.53859 3.53859 1.06 0.000251998 0.000203652 0.0185848 0.0151681 36 2956 22 6.89349e+06 324158 648988. 2245.63 2.23 0.102913 0.0877354 2581 19 1432 2302 185193 39714 3.5863 3.5863 -127.508 -3.5863 0 0 828058. 2865.25 0.37 0.07 0.0160483 0.0141371 149 50 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.40 vpr 61.23 MiB -1 -1 0.17 20784 1 0.02 -1 -1 33248 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62696 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 22.8 MiB 0.82 958 61.2 MiB 0.11 0.00 3.37229 -104.564 -3.37229 3.37229 1.08 0.000219864 0.000177495 0.0176411 0.0144456 34 2534 17 6.89349e+06 366440 618332. 2139.56 1.90 0.0886851 0.0756021 2044 22 1361 2489 192096 42273 3.7266 3.7266 -120.929 -3.7266 0 0 787024. 2723.27 0.35 0.07 0.0174938 0.0155184 123 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 8.25 vpr 61.32 MiB -1 -1 0.16 21236 1 0.02 -1 -1 33220 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 22.8 MiB 2.41 1131 61.3 MiB 0.11 0.00 3.42271 -103.904 -3.42271 3.42271 1.07 0.000270397 0.000223443 0.0215493 0.0178725 34 2947 28 6.89349e+06 324158 618332. 2139.56 2.16 0.130621 0.113531 2382 21 1628 2276 173768 39521 3.50425 3.50425 -121.969 -3.50425 0 0 787024. 2723.27 0.35 0.07 0.0195892 0.0173747 148 52 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.64 vpr 61.34 MiB -1 -1 0.16 21164 1 0.02 -1 -1 33152 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62816 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 22.8 MiB 2.71 1304 61.3 MiB 0.12 0.00 3.44149 -111.983 -3.44149 3.44149 0.99 0.000228444 0.000183633 0.0219063 0.0179858 34 3338 40 6.89349e+06 338252 618332. 2139.56 2.46 0.137259 0.11892 2668 20 1717 2592 231313 48687 3.6594 3.6594 -133.554 -3.6594 0 0 787024. 2723.27 0.34 0.08 0.0189568 0.0168438 154 52 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 8.57 vpr 61.44 MiB -1 -1 0.18 21388 1 0.01 -1 -1 33140 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62912 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 22.8 MiB 2.62 1396 61.4 MiB 0.14 0.00 3.22384 -109.628 -3.22384 3.22384 1.07 0.000289278 0.000237436 0.0263633 0.021654 36 3048 42 6.89349e+06 366440 648988. 2245.63 2.20 0.133172 0.11383 2590 19 1759 2464 183679 40258 3.16896 3.16896 -125.206 -3.16896 0 0 828058. 2865.25 0.37 0.08 0.0205608 0.0183897 164 59 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.58 vpr 61.05 MiB -1 -1 0.16 21492 1 0.02 -1 -1 33164 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62512 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 22.4 MiB 2.17 1014 61.0 MiB 0.12 0.00 3.61195 -109.612 -3.61195 3.61195 0.99 0.00023215 0.00019149 0.0217786 0.0180625 34 2518 36 6.89349e+06 295971 618332. 2139.56 1.98 0.113061 0.0975515 2055 21 1272 1974 136128 32303 3.69676 3.69676 -122.815 -3.69676 0 0 787024. 2723.27 0.33 0.06 0.0167319 0.0148832 128 21 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.75 vpr 61.16 MiB -1 -1 0.17 21392 1 0.01 -1 -1 33200 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62632 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 22.6 MiB 2.39 1225 61.2 MiB 0.11 0.00 3.80778 -115.179 -3.80778 3.80778 1.04 0.000229419 0.000185359 0.0190308 0.0155228 34 2811 38 6.89349e+06 310065 618332. 2139.56 1.77 0.0982226 0.0829026 2348 19 1354 2003 161853 35542 3.6734 3.6734 -127.251 -3.6734 0 0 787024. 2723.27 0.35 0.06 0.0146353 0.0129319 135 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 9.15 vpr 61.46 MiB -1 -1 0.19 21392 1 0.01 -1 -1 33164 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62936 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 22.8 MiB 1.94 1139 61.5 MiB 0.12 0.00 3.69042 -112.227 -3.69042 3.69042 1.05 0.000259747 0.000209522 0.0216758 0.0177266 36 3576 41 6.89349e+06 338252 648988. 2245.63 3.48 0.128036 0.10969 2458 20 1615 2589 195821 44556 4.09879 4.09879 -136.365 -4.09879 0 0 828058. 2865.25 0.38 0.07 0.0172741 0.0152329 156 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.70 vpr 61.44 MiB -1 -1 0.18 21356 1 0.02 -1 -1 33124 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62912 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 23.0 MiB 3.51 1316 61.4 MiB 0.09 0.00 3.68195 -113.412 -3.68195 3.68195 1.04 0.000296506 0.000243686 0.0158686 0.0130884 36 3357 31 6.89349e+06 352346 648988. 2245.63 2.53 0.136071 0.118196 2830 21 2029 2997 224637 49522 3.76066 3.76066 -136.794 -3.76066 0 0 828058. 2865.25 0.37 0.08 0.020992 0.0185253 166 74 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 7.00 vpr 60.88 MiB -1 -1 0.15 21076 1 0.02 -1 -1 33036 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62340 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 22.4 MiB 2.13 903 60.9 MiB 0.08 0.00 2.79059 -90.9871 -2.79059 2.79059 0.99 0.000197069 0.000151745 0.0154977 0.0127328 34 1981 19 6.89349e+06 211408 618332. 2139.56 1.53 0.0733326 0.0623974 1843 16 896 1375 100954 22946 2.82791 2.82791 -102.713 -2.82791 0 0 787024. 2723.27 0.34 0.04 0.0108662 0.00967537 96 20 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.85 vpr 61.25 MiB -1 -1 0.18 21148 1 0.01 -1 -1 33088 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62716 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 22.8 MiB 1.94 1179 61.2 MiB 0.10 0.00 3.33199 -119.884 -3.33199 3.33199 1.05 0.000239295 0.000192232 0.018287 0.0148501 34 2956 35 6.89349e+06 281877 618332. 2139.56 2.28 0.103482 0.0876365 2470 24 2062 2817 236484 51196 3.8119 3.8119 -144.712 -3.8119 0 0 787024. 2723.27 0.35 0.08 0.0179366 0.0156904 138 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 9.28 vpr 61.11 MiB -1 -1 0.20 21392 1 0.02 -1 -1 33232 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62580 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 22.5 MiB 2.66 1391 61.1 MiB 0.09 0.00 4.36852 -134.015 -4.36852 4.36852 1.08 0.000324641 0.000264705 0.0165223 0.0137091 34 3502 41 6.89349e+06 352346 618332. 2139.56 2.90 0.128462 0.110647 2867 21 1888 3073 231159 51920 4.6913 4.6913 -157.147 -4.6913 0 0 787024. 2723.27 0.35 0.08 0.0206797 0.0183411 168 28 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 8.24 vpr 61.08 MiB -1 -1 0.16 21296 1 0.02 -1 -1 33200 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62548 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 22.6 MiB 2.57 1159 61.1 MiB 0.12 0.00 3.41266 -115.372 -3.41266 3.41266 1.05 0.000246895 0.000202523 0.0234786 0.0194649 36 2638 21 6.89349e+06 310065 648988. 2245.63 1.96 0.122091 0.105744 2161 27 1934 2865 304942 114623 2.99231 2.99231 -122.975 -2.99231 0 0 828058. 2865.25 0.38 0.12 0.022487 0.0198992 144 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 8.00 vpr 61.13 MiB -1 -1 0.17 20972 1 0.01 -1 -1 33152 -1 -1 27 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62596 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 22.7 MiB 2.05 932 61.1 MiB 0.10 0.00 3.30094 -102.658 -3.30094 3.30094 1.04 0.000212764 0.000173023 0.0169161 0.013761 36 2044 21 6.89349e+06 380534 648988. 2245.63 2.33 0.0863408 0.0735893 1779 19 1108 1820 134264 29925 3.23015 3.23015 -116.717 -3.23015 0 0 828058. 2865.25 0.38 0.06 0.0136045 0.0120128 118 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 12.62 vpr 61.76 MiB -1 -1 0.20 21348 1 0.02 -1 -1 33360 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63240 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 23.2 MiB 4.44 1565 61.8 MiB 0.16 0.00 5.17195 -155.429 -5.17195 5.17195 0.99 0.000294771 0.000241667 0.0276178 0.0228469 36 4017 34 6.89349e+06 380534 648988. 2245.63 4.47 0.16408 0.142996 3416 21 2691 4143 353533 73390 5.56279 5.56279 -182.682 -5.56279 0 0 828058. 2865.25 0.38 0.12 0.0245844 0.0219842 188 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 7.05 vpr 61.27 MiB -1 -1 0.16 21176 1 0.02 -1 -1 33100 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62736 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 22.6 MiB 1.94 993 61.3 MiB 0.08 0.00 3.82232 -117.019 -3.82232 3.82232 0.99 0.000248685 0.000204967 0.0155665 0.0129331 34 2563 20 6.89349e+06 295971 618332. 2139.56 1.72 0.0943068 0.0810138 2076 18 1533 2136 139418 33676 3.8446 3.8446 -133.96 -3.8446 0 0 787024. 2723.27 0.33 0.06 0.0150103 0.0133372 139 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.56 vpr 60.74 MiB -1 -1 0.17 20792 1 0.02 -1 -1 33056 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62196 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 22.3 MiB 0.82 765 60.7 MiB 0.08 0.00 2.8828 -83.572 -2.8828 2.8828 1.07 0.000184428 0.000149428 0.0155772 0.0127726 28 1965 23 6.89349e+06 338252 531479. 1839.03 1.23 0.056083 0.0481178 1658 20 971 1641 128868 29942 2.86046 2.86046 -100.786 -2.86046 0 0 648988. 2245.63 0.30 0.05 0.0121007 0.0106468 94 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 9.10 vpr 61.32 MiB -1 -1 0.17 21316 1 0.02 -1 -1 33100 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62792 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 22.9 MiB 2.70 1266 61.3 MiB 0.07 0.00 4.48477 -123.482 -4.48477 4.48477 1.06 0.000270269 0.000221579 0.0121801 0.0101281 36 2847 26 6.89349e+06 324158 648988. 2245.63 2.73 0.110493 0.0958487 2407 20 1380 2557 206046 44136 4.3757 4.3757 -138.898 -4.3757 0 0 828058. 2865.25 0.36 0.07 0.0167221 0.0147431 149 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 7.13 vpr 60.83 MiB -1 -1 0.15 20700 1 0.02 -1 -1 33160 -1 -1 19 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62292 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 22.3 MiB 0.86 721 60.8 MiB 0.08 0.00 2.81765 -86.7368 -2.81765 2.81765 1.00 0.000189541 0.000154691 0.0175378 0.0144785 36 2193 32 6.89349e+06 267783 648988. 2245.63 2.88 0.0994577 0.0863885 1501 24 1341 2307 150805 37058 2.94636 2.94636 -107.176 -2.94636 0 0 828058. 2865.25 0.35 0.06 0.0126399 0.0110251 98 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 7.34 vpr 61.17 MiB -1 -1 0.17 21016 1 0.02 -1 -1 33080 -1 -1 20 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62636 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 22.8 MiB 1.88 825 61.2 MiB 0.07 0.00 3.17368 -95.0926 -3.17368 3.17368 1.08 0.000213924 0.000174226 0.0121341 0.0100182 34 2095 18 6.89349e+06 281877 618332. 2139.56 1.83 0.0838822 0.0723286 1815 16 1178 1655 117893 28537 3.32951 3.32951 -115.26 -3.32951 0 0 787024. 2723.27 0.36 0.05 0.0121086 0.0108066 113 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 9.18 vpr 61.47 MiB -1 -1 0.18 21164 1 0.02 -1 -1 33264 -1 -1 26 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62948 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 23.0 MiB 3.70 1208 61.5 MiB 0.10 0.00 3.48129 -106.125 -3.48129 3.48129 1.06 0.000264769 0.000218117 0.0171011 0.0142336 34 3040 25 6.89349e+06 366440 618332. 2139.56 1.85 0.11381 0.0982653 2531 22 1547 2359 187006 41477 3.84985 3.84985 -131.506 -3.84985 0 0 787024. 2723.27 0.35 0.07 0.0183522 0.0161848 155 56 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 9.19 vpr 61.48 MiB -1 -1 0.19 21212 1 0.03 -1 -1 33124 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62952 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 23.0 MiB 2.67 1218 61.5 MiB 0.08 0.00 4.11834 -128.394 -4.11834 4.11834 1.08 0.000244242 0.000195746 0.0139291 0.011361 36 2953 34 6.89349e+06 310065 648988. 2245.63 2.79 0.119276 0.102916 2444 20 1778 2640 175267 41429 4.16865 4.16865 -146.224 -4.16865 0 0 828058. 2865.25 0.38 0.07 0.0180119 0.016005 151 51 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 8.26 vpr 61.29 MiB -1 -1 0.18 21236 1 0.01 -1 -1 33064 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62764 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 22.8 MiB 2.25 1186 61.3 MiB 0.08 0.00 4.28447 -124.001 -4.28447 4.28447 1.08 0.000257632 0.000210465 0.015469 0.0127454 34 3143 46 6.89349e+06 324158 618332. 2139.56 2.33 0.120796 0.10374 2565 20 1786 2706 194361 46461 4.36935 4.36935 -151.139 -4.36935 0 0 787024. 2723.27 0.35 0.07 0.0173778 0.0153648 150 48 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 8.11 vpr 60.95 MiB -1 -1 0.16 21124 1 0.02 -1 -1 33044 -1 -1 15 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62416 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 22.3 MiB 2.36 893 61.0 MiB 0.10 0.00 3.46187 -101.661 -3.46187 3.46187 1.05 0.000223584 0.000175649 0.0196809 0.0157061 36 2075 22 6.89349e+06 211408 648988. 2245.63 2.14 0.0972158 0.0834099 1831 18 836 1146 96744 21172 3.12985 3.12985 -113.88 -3.12985 0 0 828058. 2865.25 0.37 0.05 0.0130374 0.0116112 105 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.92 vpr 61.30 MiB -1 -1 0.17 21196 1 0.02 -1 -1 33240 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62772 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 22.7 MiB 2.30 1118 61.3 MiB 0.11 0.00 2.90565 -102.577 -2.90565 2.90565 1.08 0.000241452 0.000197659 0.0214619 0.0176801 34 2779 32 6.89349e+06 281877 618332. 2139.56 1.94 0.104723 0.0893477 2217 21 1481 2033 179305 38500 2.96246 2.96246 -121.494 -2.96246 0 0 787024. 2723.27 0.37 0.07 0.0156381 0.0137149 131 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 8.84 vpr 61.28 MiB -1 -1 0.18 21212 1 0.02 -1 -1 33184 -1 -1 26 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62748 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 22.9 MiB 2.85 1015 61.3 MiB 0.10 0.00 2.9531 -88.2342 -2.9531 2.9531 0.99 0.000226034 0.000183395 0.018977 0.0156161 34 2874 32 6.89349e+06 366440 618332. 2139.56 2.54 0.122023 0.105767 2188 22 1601 2346 206110 48711 3.11886 3.11886 -111.113 -3.11886 0 0 787024. 2723.27 0.34 0.07 0.017432 0.015415 142 52 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 7.73 vpr 61.11 MiB -1 -1 0.18 21032 1 0.01 -1 -1 33204 -1 -1 23 28 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62580 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 22.7 MiB 1.95 990 61.1 MiB 0.08 0.00 3.64305 -96.308 -3.64305 3.64305 1.04 0.000262547 0.000209201 0.0156765 0.0128445 34 2283 43 6.89349e+06 324158 618332. 2139.56 2.22 0.108212 0.0935343 1947 19 1033 1762 147294 31758 3.54926 3.54926 -108.47 -3.54926 0 0 787024. 2723.27 0.36 0.06 0.0141232 0.0125337 119 20 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.95 vpr 61.20 MiB -1 -1 0.19 21036 1 0.02 -1 -1 33068 -1 -1 21 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62672 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 22.6 MiB 3.35 1113 61.2 MiB 0.11 0.00 3.67032 -116.316 -3.67032 3.67032 1.04 0.000223017 0.000180624 0.0216629 0.0178057 34 2625 22 6.89349e+06 295971 618332. 2139.56 1.96 0.101444 0.0869962 2291 22 1813 2478 208844 45098 3.6316 3.6316 -135.968 -3.6316 0 0 787024. 2723.27 0.37 0.08 0.0171405 0.0151898 130 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.39 vpr 61.08 MiB -1 -1 0.18 21376 1 0.02 -1 -1 33132 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62544 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 22.6 MiB 2.95 1161 61.1 MiB 0.10 0.00 3.16084 -112.948 -3.16084 3.16084 1.05 0.00024742 0.000201465 0.0185839 0.0151544 34 3010 26 6.89349e+06 281877 618332. 2139.56 1.80 0.0942135 0.0796089 2380 19 1708 2321 169001 38530 3.0788 3.0788 -127.213 -3.0788 0 0 787024. 2723.27 0.35 0.06 0.0146977 0.0129221 138 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 6.35 vpr 61.05 MiB -1 -1 0.18 20664 1 0.02 -1 -1 33176 -1 -1 31 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62520 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 22.6 MiB 0.93 986 61.1 MiB 0.11 0.00 3.65542 -108.448 -3.65542 3.65542 1.03 0.000221745 0.000178845 0.017258 0.0140751 34 2492 22 6.89349e+06 436909 618332. 2139.56 1.84 0.0899521 0.0766653 2001 18 1084 1971 137124 31447 3.5008 3.5008 -119.573 -3.5008 0 0 787024. 2723.27 0.36 0.06 0.0139922 0.0124 129 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 8.14 vpr 61.44 MiB -1 -1 0.17 21388 1 0.02 -1 -1 33264 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62916 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 23.0 MiB 2.70 1169 61.4 MiB 0.09 0.00 3.78342 -123.913 -3.78342 3.78342 0.98 0.000250053 0.000205551 0.015404 0.0128658 34 2896 23 6.89349e+06 324158 618332. 2139.56 2.03 0.104916 0.090762 2506 20 1749 2673 218263 48288 3.8313 3.8313 -142.491 -3.8313 0 0 787024. 2723.27 0.34 0.08 0.0173503 0.0153792 148 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.60 vpr 61.57 MiB -1 -1 0.18 21232 1 0.01 -1 -1 33112 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63048 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 22.9 MiB 2.63 1296 61.6 MiB 0.11 0.00 4.36021 -134.245 -4.36021 4.36021 1.08 0.000284081 0.000232183 0.0177624 0.0148038 38 2894 22 6.89349e+06 380534 678818. 2348.85 2.23 0.117636 0.101785 2442 19 1738 2498 175401 39406 4.41609 4.41609 -156.782 -4.41609 0 0 902133. 3121.57 0.38 0.07 0.0181381 0.0161359 164 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 9.68 vpr 61.54 MiB -1 -1 0.19 21284 1 0.02 -1 -1 33104 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63020 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 23.1 MiB 2.71 1375 61.5 MiB 0.11 0.00 3.66297 -122.294 -3.66297 3.66297 0.98 0.000260236 0.00021167 0.0198727 0.0162572 36 3228 26 6.89349e+06 366440 648988. 2245.63 3.45 0.119246 0.102421 2847 21 1812 2661 215064 45582 3.6455 3.6455 -134.428 -3.6455 0 0 828058. 2865.25 0.35 0.08 0.0180973 0.0159061 164 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 8.13 vpr 61.00 MiB -1 -1 0.18 20972 1 0.02 -1 -1 33188 -1 -1 21 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62468 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 22.4 MiB 2.70 953 61.0 MiB 0.10 0.00 3.29223 -102.035 -3.29223 3.29223 1.06 0.000203766 0.000165391 0.0188275 0.0154761 34 2269 22 6.89349e+06 295971 618332. 2139.56 1.79 0.0858548 0.0730867 2022 19 1176 1697 142322 31093 3.11381 3.11381 -112.244 -3.11381 0 0 787024. 2723.27 0.36 0.06 0.0132135 0.0116962 112 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 10.20 vpr 61.51 MiB -1 -1 0.18 21328 1 0.02 -1 -1 33340 -1 -1 25 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62984 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 22.9 MiB 4.15 1121 61.5 MiB 0.08 0.00 4.18171 -128.104 -4.18171 4.18171 1.06 0.000268781 0.000219885 0.0142286 0.0117989 36 2792 22 6.89349e+06 352346 648988. 2245.63 2.35 0.105465 0.090743 2411 21 1814 2565 208468 47812 4.3521 4.3521 -154.44 -4.3521 0 0 828058. 2865.25 0.37 0.08 0.0183537 0.0162361 161 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.43 vpr 61.11 MiB -1 -1 0.16 21376 1 0.01 -1 -1 33252 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62576 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 22.6 MiB 1.77 1098 61.1 MiB 0.08 0.00 4.07275 -122.309 -4.07275 4.07275 0.98 0.000240356 0.000197184 0.0147123 0.0122422 30 2695 23 6.89349e+06 324158 556674. 1926.21 1.29 0.0725035 0.06275 2318 21 1255 2177 184809 38264 3.7934 3.7934 -135.342 -3.7934 0 0 706193. 2443.58 0.31 0.07 0.0159269 0.0140347 139 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 8.63 vpr 61.18 MiB -1 -1 0.19 21164 1 0.02 -1 -1 33192 -1 -1 23 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62644 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 22.7 MiB 2.68 1006 61.2 MiB 0.12 0.00 3.97284 -116.621 -3.97284 3.97284 1.06 0.000247944 0.000201743 0.0216424 0.0178384 36 2554 24 6.89349e+06 324158 648988. 2245.63 2.30 0.111555 0.0958526 2088 19 1454 2181 134932 33621 4.52555 4.52555 -139.147 -4.52555 0 0 828058. 2865.25 0.36 0.06 0.0168169 0.0149821 142 43 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 9.98 vpr 61.45 MiB -1 -1 0.16 21312 1 0.01 -1 -1 33188 -1 -1 27 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62924 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 22.8 MiB 2.92 1238 61.4 MiB 0.14 0.00 3.81135 -110.472 -3.81135 3.81135 1.05 0.000262857 0.000212062 0.0252006 0.020594 36 3402 31 6.89349e+06 380534 648988. 2245.63 3.44 0.13122 0.112793 2418 19 1735 2488 197960 44617 3.84329 3.84329 -133.739 -3.84329 0 0 828058. 2865.25 0.35 0.07 0.0175359 0.0155474 162 78 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 9.97 vpr 61.38 MiB -1 -1 0.17 21204 1 0.01 -1 -1 33196 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62852 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 22.8 MiB 3.94 1237 61.4 MiB 0.11 0.00 4.40537 -131.309 -4.40537 4.40537 1.03 0.000260663 0.000211697 0.0187742 0.0153393 36 2783 24 6.89349e+06 324158 648988. 2245.63 2.39 0.109463 0.0937498 2520 21 1742 2633 197501 43418 4.48239 4.48239 -152.56 -4.48239 0 0 828058. 2865.25 0.38 0.07 0.0180372 0.0159755 155 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.36 vpr 61.61 MiB -1 -1 0.17 21236 1 0.01 -1 -1 33136 -1 -1 30 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63092 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 23.0 MiB 2.21 1281 61.6 MiB 0.08 0.00 3.69395 -113.444 -3.69395 3.69395 0.97 0.000240733 0.000196376 0.0134952 0.011193 34 3080 23 6.89349e+06 422815 618332. 2139.56 1.78 0.100805 0.0864161 2504 20 1686 2282 151577 36171 3.534 3.534 -125.8 -3.534 0 0 787024. 2723.27 0.33 0.06 0.0166839 0.0147242 166 79 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.30 vpr 60.85 MiB -1 -1 0.15 20724 1 0.01 -1 -1 33112 -1 -1 17 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62308 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 22.3 MiB 0.72 883 60.8 MiB 0.07 0.00 3.26403 -103.063 -3.26403 3.26403 1.05 0.00019622 0.000161109 0.0131899 0.0109544 28 1996 20 6.89349e+06 239595 531479. 1839.03 1.15 0.0596112 0.0516119 1788 21 1013 1614 123924 28293 3.02931 3.02931 -110.206 -3.02931 0 0 648988. 2245.63 0.31 0.05 0.0122397 0.0107848 96 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 8.16 vpr 61.43 MiB -1 -1 0.16 21100 1 0.01 -1 -1 33228 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62908 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 22.9 MiB 2.16 1301 61.4 MiB 0.11 0.00 4.3966 -133.874 -4.3966 4.3966 0.97 0.000266187 0.000220701 0.019022 0.0157048 36 2970 30 6.89349e+06 352346 648988. 2245.63 2.59 0.123034 0.10646 2598 22 1981 2801 236420 50034 4.57895 4.57895 -155.349 -4.57895 0 0 828058. 2865.25 0.35 0.08 0.01835 0.0161862 156 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 10.63 vpr 61.17 MiB -1 -1 0.16 21236 1 0.02 -1 -1 33172 -1 -1 25 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62640 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 22.7 MiB 4.31 1378 61.2 MiB 0.10 0.00 4.24291 -141.463 -4.24291 4.24291 1.05 0.000295511 0.000246323 0.0173272 0.01441 36 3211 49 6.89349e+06 352346 648988. 2245.63 2.63 0.160274 0.139773 2794 23 2452 3584 263685 60257 4.41619 4.41619 -165.823 -4.41619 0 0 828058. 2865.25 0.37 0.10 0.0242934 0.0214462 171 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.82 vpr 60.97 MiB -1 -1 0.14 20888 1 0.01 -1 -1 33212 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62436 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 22.4 MiB 3.17 920 61.0 MiB 0.08 0.00 3.14102 -91.6633 -3.14102 3.14102 0.95 0.000187614 0.000151532 0.0149131 0.0122691 34 2232 25 6.89349e+06 253689 618332. 2139.56 1.43 0.0717849 0.0604581 1821 18 1139 1535 111662 26486 2.9535 2.9535 -105.722 -2.9535 0 0 787024. 2723.27 0.33 0.05 0.0114834 0.0101239 108 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.31 vpr 60.90 MiB -1 -1 0.16 20756 1 0.02 -1 -1 33072 -1 -1 20 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62360 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 22.4 MiB 0.81 842 60.9 MiB 0.08 0.00 3.20583 -99.6208 -3.20583 3.20583 1.06 0.000208685 0.000160847 0.014786 0.0122585 30 1897 24 6.89349e+06 281877 556674. 1926.21 0.99 0.0532733 0.0453956 1596 18 821 1424 86434 19683 2.83491 2.83491 -109.166 -2.83491 0 0 706193. 2443.58 0.33 0.05 0.0127367 0.0113065 99 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.74 vpr 61.38 MiB -1 -1 0.16 21340 1 0.02 -1 -1 33212 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62848 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 22.9 MiB 2.50 1188 61.4 MiB 0.12 0.00 3.71232 -121.165 -3.71232 3.71232 0.95 0.000244723 0.000200335 0.0213405 0.0175792 34 2908 39 6.89349e+06 324158 618332. 2139.56 1.95 0.116613 0.0996042 2487 18 1637 2332 182561 40102 3.95585 3.95585 -144.612 -3.95585 0 0 787024. 2723.27 0.32 0.06 0.0161431 0.0144113 145 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.23 vpr 61.35 MiB -1 -1 0.18 21164 1 0.01 -1 -1 33160 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62824 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 22.9 MiB 2.52 1221 61.4 MiB 0.11 0.00 3.87394 -118.249 -3.87394 3.87394 1.07 0.00025708 0.000210386 0.0221401 0.0183054 36 2712 22 6.89349e+06 324158 648988. 2245.63 2.03 0.125049 0.10795 2196 20 1326 1888 130714 31683 4.54369 4.54369 -146.206 -4.54369 0 0 828058. 2865.25 0.37 0.06 0.0183841 0.0162821 149 53 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 7.48 vpr 60.98 MiB -1 -1 0.16 20868 1 0.02 -1 -1 33212 -1 -1 36 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62440 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 22.5 MiB 0.87 1081 61.0 MiB 0.10 0.00 4.24801 -120.152 -4.24801 4.24801 0.97 0.000273459 0.000214326 0.0204706 0.0166823 36 2844 36 6.89349e+06 507378 648988. 2245.63 3.22 0.126798 0.109773 2145 24 1649 3077 220602 51682 4.35404 4.35404 -136.942 -4.35404 0 0 828058. 2865.25 0.33 0.08 0.0193832 0.0170681 157 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 8.05 vpr 61.39 MiB -1 -1 0.15 21296 1 0.01 -1 -1 33220 -1 -1 25 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62860 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 22.8 MiB 2.00 1083 61.4 MiB 0.08 0.00 2.95499 -89.5359 -2.95499 2.95499 1.04 0.000248454 0.000204326 0.0139693 0.0116325 36 2566 29 6.89349e+06 352346 648988. 2245.63 2.47 0.117191 0.102101 2134 22 1504 2374 204836 44612 3.04361 3.04361 -105.611 -3.04361 0 0 828058. 2865.25 0.37 0.08 0.0194809 0.0173056 136 47 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.39 vpr 60.68 MiB -1 -1 0.14 21036 1 0.00 -1 -1 33192 -1 -1 20 27 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62132 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 22.1 MiB 1.75 897 60.7 MiB 0.08 0.00 3.41829 -94.9364 -3.41829 3.41829 0.95 0.000173977 0.000140088 0.0154091 0.0126247 34 1925 22 6.89349e+06 281877 618332. 2139.56 1.42 0.0669503 0.0561678 1622 20 1105 1646 116556 26567 3.4748 3.4748 -113.302 -3.4748 0 0 787024. 2723.27 0.33 0.05 0.0116568 0.0102138 106 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 10.92 vpr 61.59 MiB -1 -1 0.19 21604 1 0.01 -1 -1 33252 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63064 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 23.0 MiB 3.94 1557 61.6 MiB 0.15 0.00 3.66879 -120.308 -3.66879 3.66879 1.07 0.000295917 0.000242588 0.0275001 0.022652 36 3715 23 6.89349e+06 380534 648988. 2245.63 3.18 0.162075 0.141115 3262 22 2232 3405 266425 58090 4.05785 4.05785 -142.78 -4.05785 0 0 828058. 2865.25 0.37 0.10 0.0251587 0.0223064 185 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.94 vpr 61.43 MiB -1 -1 0.18 21192 1 0.01 -1 -1 33176 -1 -1 24 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62904 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 22.8 MiB 2.47 1259 61.4 MiB 0.09 0.00 4.49447 -132.747 -4.49447 4.49447 0.97 0.000248125 0.000203468 0.016189 0.0134097 36 2758 24 6.89349e+06 338252 648988. 2245.63 2.10 0.11197 0.0973274 2360 21 1921 2884 193629 44020 4.50278 4.50278 -153.002 -4.50278 0 0 828058. 2865.25 0.33 0.07 0.017163 0.0151993 155 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 8.46 vpr 61.34 MiB -1 -1 0.18 21316 1 0.02 -1 -1 33192 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62808 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 22.8 MiB 2.72 1160 61.3 MiB 0.11 0.00 3.43229 -115.884 -3.43229 3.43229 1.07 0.000248965 0.000204499 0.0216421 0.0177919 34 2936 30 6.89349e+06 295971 618332. 2139.56 2.08 0.127691 0.110716 2415 20 1730 2291 192795 42132 3.55495 3.55495 -136.647 -3.55495 0 0 787024. 2723.27 0.35 0.08 0.0183531 0.0163057 137 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.81 vpr 61.31 MiB -1 -1 0.15 21140 1 0.02 -1 -1 33076 -1 -1 21 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62784 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 22.7 MiB 2.57 1007 61.3 MiB 0.10 0.00 4.09751 -115.077 -4.09751 4.09751 0.97 0.000223865 0.000184528 0.0185117 0.0152555 34 2739 25 6.89349e+06 295971 618332. 2139.56 1.82 0.102711 0.0884549 2209 33 1660 2495 356822 153977 3.7705 3.7705 -127.211 -3.7705 0 0 787024. 2723.27 0.33 0.14 0.024343 0.0214888 135 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 8.27 vpr 61.38 MiB -1 -1 0.19 21440 1 0.01 -1 -1 33244 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62856 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 22.8 MiB 2.62 1105 61.4 MiB 0.12 0.00 3.59285 -103.199 -3.59285 3.59285 1.05 0.000249343 0.000202558 0.0206227 0.0170807 34 3015 26 6.89349e+06 366440 618332. 2139.56 1.97 0.125513 0.108057 2452 20 1847 2805 189710 45331 4.0153 4.0153 -128.765 -4.0153 0 0 787024. 2723.27 0.36 0.08 0.0218451 0.0194924 163 46 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 8.21 vpr 61.35 MiB -1 -1 0.16 21344 1 0.01 -1 -1 33200 -1 -1 24 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62820 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 22.7 MiB 2.53 1087 61.3 MiB 0.10 0.00 3.39129 -98.5941 -3.39129 3.39129 0.96 0.000221514 0.00018144 0.0178508 0.0146714 34 3128 49 6.89349e+06 338252 618332. 2139.56 2.30 0.120589 0.103935 2500 20 1508 2340 184149 41383 3.6153 3.6153 -115.792 -3.6153 0 0 787024. 2723.27 0.33 0.07 0.0167997 0.0148913 140 46 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 9.20 vpr 61.33 MiB -1 -1 0.17 21344 1 0.03 -1 -1 33040 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62800 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 22.9 MiB 3.38 1226 61.3 MiB 0.12 0.00 3.88598 -125.894 -3.88598 3.88598 1.06 0.00027654 0.00022833 0.0216081 0.0178507 34 3163 21 6.89349e+06 310065 618332. 2139.56 2.15 0.12835 0.111781 2644 19 1775 2724 223385 49319 4.13269 4.13269 -148.622 -4.13269 0 0 787024. 2723.27 0.35 0.08 0.0196979 0.0176114 148 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 9.22 vpr 61.57 MiB -1 -1 0.16 21152 1 0.02 -1 -1 33148 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63044 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 22.9 MiB 3.23 1178 61.6 MiB 0.11 0.00 3.36014 -109.393 -3.36014 3.36014 0.97 0.000290363 0.000218965 0.0235477 0.0193461 42 3016 31 6.89349e+06 366440 744469. 2576.02 2.48 0.133735 0.115941 2321 19 1708 2417 195580 48741 3.33966 3.33966 -122.125 -3.33966 0 0 949917. 3286.91 0.40 0.07 0.0181254 0.0161154 167 59 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.37 vpr 61.03 MiB -1 -1 0.16 21072 1 0.02 -1 -1 33108 -1 -1 20 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62492 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 22.4 MiB 1.68 673 61.0 MiB 0.06 0.00 3.27503 -96.9696 -3.27503 3.27503 0.97 0.000188049 0.000152934 0.0133065 0.0109706 34 1896 28 6.89349e+06 281877 618332. 2139.56 1.40 0.0697533 0.0588333 1534 22 1347 1823 131929 31697 3.22201 3.22201 -111.607 -3.22201 0 0 787024. 2723.27 0.32 0.05 0.0132293 0.0116363 110 28 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 7.59 vpr 61.12 MiB -1 -1 0.18 21188 1 0.02 -1 -1 33064 -1 -1 20 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62592 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 22.6 MiB 1.67 952 61.1 MiB 0.10 0.00 3.30699 -101.384 -3.30699 3.30699 1.07 0.000222217 0.000181531 0.0198505 0.0163901 34 2835 34 6.89349e+06 281877 618332. 2139.56 2.27 0.121026 0.104913 2242 22 1719 2358 218452 48279 4.0434 4.0434 -134.54 -4.0434 0 0 787024. 2723.27 0.36 0.08 0.018433 0.0162719 125 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 7.39 vpr 61.04 MiB -1 -1 0.16 21276 1 0.01 -1 -1 33216 -1 -1 22 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62508 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 22.3 MiB 1.91 1154 61.0 MiB 0.10 0.00 3.81078 -113.674 -3.81078 3.81078 0.94 0.000229592 0.00018784 0.0195767 0.0161733 38 2409 22 6.89349e+06 310065 678818. 2348.85 2.12 0.103936 0.0897435 2122 20 1258 2117 163581 34354 3.56916 3.56916 -127.703 -3.56916 0 0 902133. 3121.57 0.36 0.06 0.015842 0.0140571 137 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 9.40 vpr 61.07 MiB -1 -1 0.18 20936 1 0.01 -1 -1 33176 -1 -1 19 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62540 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 22.5 MiB 3.87 694 61.1 MiB 0.05 0.00 3.19878 -85.7284 -3.19878 3.19878 1.07 0.000202963 0.000166044 0.00884635 0.00738544 34 2229 46 6.89349e+06 267783 618332. 2139.56 2.01 0.0970398 0.0839539 1615 19 904 1211 80809 21372 3.11035 3.11035 -102.491 -3.11035 0 0 787024. 2723.27 0.35 0.04 0.0123316 0.0109031 108 25 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 7.46 vpr 60.94 MiB -1 -1 0.15 21020 1 0.02 -1 -1 33068 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62400 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 22.5 MiB 2.47 979 60.9 MiB 0.08 0.00 3.39233 -109.257 -3.39233 3.39233 0.96 0.000194741 0.000158671 0.0152673 0.0125516 34 2384 22 6.89349e+06 253689 618332. 2139.56 1.70 0.0840991 0.0721889 2111 22 1517 2146 180723 38228 3.09851 3.09851 -120.971 -3.09851 0 0 787024. 2723.27 0.32 0.06 0.0136324 0.0119996 114 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 8.21 vpr 61.52 MiB -1 -1 0.19 21284 1 0.02 -1 -1 33220 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62996 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 22.9 MiB 2.37 1178 61.5 MiB 0.09 0.00 3.60497 -118.496 -3.60497 3.60497 1.09 0.000286158 0.000235391 0.0151835 0.0126028 34 3151 38 6.89349e+06 366440 618332. 2139.56 2.12 0.13428 0.116279 2520 20 2097 2888 239288 53007 3.57705 3.57705 -136 -3.57705 0 0 787024. 2723.27 0.36 0.09 0.0211651 0.018847 160 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.09 vpr 61.00 MiB -1 -1 0.15 21176 1 0.02 -1 -1 33220 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62468 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 22.4 MiB 2.40 979 61.0 MiB 0.08 0.00 2.80665 -92.5026 -2.80665 2.80665 0.96 0.000184532 0.000150002 0.015582 0.0127803 34 2235 20 6.89349e+06 239595 618332. 2139.56 1.44 0.0711888 0.0601196 1943 23 1231 1773 136727 30113 2.73581 2.73581 -107.47 -2.73581 0 0 787024. 2723.27 0.33 0.05 0.0133567 0.0116476 108 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 8.21 vpr 61.29 MiB -1 -1 0.18 21196 1 0.01 -1 -1 33088 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62760 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 22.8 MiB 2.52 1191 61.3 MiB 0.10 0.00 3.27699 -104.423 -3.27699 3.27699 1.03 0.000264173 0.000214568 0.0198033 0.0161903 34 3031 41 6.89349e+06 310065 618332. 2139.56 2.12 0.126685 0.108662 2396 19 1387 2007 150749 34510 3.69255 3.69255 -128.327 -3.69255 0 0 787024. 2723.27 0.34 0.06 0.0167173 0.0147945 146 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.26 vpr 61.56 MiB -1 -1 0.17 21212 1 0.02 -1 -1 33208 -1 -1 26 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63040 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 23.0 MiB 2.62 1347 61.6 MiB 0.09 0.00 3.91678 -126.311 -3.91678 3.91678 0.96 0.000255965 0.000208012 0.0170938 0.0140542 36 3154 25 6.89349e+06 366440 648988. 2245.63 2.26 0.116895 0.100882 2772 22 2193 3126 226954 50721 4.2821 4.2821 -156.086 -4.2821 0 0 828058. 2865.25 0.33 0.08 0.0184114 0.016168 170 87 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 9.07 vpr 61.31 MiB -1 -1 0.15 21284 1 0.02 -1 -1 33104 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62780 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 22.8 MiB 3.41 1055 61.3 MiB 0.08 0.00 3.0513 -95.8392 -3.0513 3.0513 1.05 0.00023566 0.000190666 0.0132313 0.0108647 34 2717 40 6.89349e+06 253689 618332. 2139.56 2.10 0.115116 0.0997911 2203 20 1550 2084 157388 36285 3.10776 3.10776 -116.2 -3.10776 0 0 787024. 2723.27 0.35 0.06 0.0159378 0.0141093 124 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.31 vpr 61.17 MiB -1 -1 0.13 21128 1 0.02 -1 -1 33224 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62640 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 22.8 MiB 1.47 936 61.2 MiB 0.09 0.00 3.37033 -107.324 -3.37033 3.37033 0.96 0.000207734 0.000162457 0.0172779 0.0142054 34 2389 21 6.89349e+06 253689 618332. 2139.56 1.52 0.0836213 0.0713649 2021 20 1332 2007 183319 38903 3.10426 3.10426 -117.831 -3.10426 0 0 787024. 2723.27 0.32 0.06 0.0137022 0.0121129 115 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.11 vpr 61.30 MiB -1 -1 0.16 21424 1 0.01 -1 -1 33180 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62776 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 22.7 MiB 2.20 966 61.3 MiB 0.06 0.00 4.11268 -114.665 -4.11268 4.11268 0.96 0.000222744 0.000179941 0.0110106 0.00918543 34 2578 27 6.89349e+06 310065 618332. 2139.56 1.59 0.0858104 0.0733936 2031 19 1285 1823 117898 28814 3.77296 3.77296 -126.798 -3.77296 0 0 787024. 2723.27 0.33 0.05 0.0145859 0.0129285 133 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.98 vpr 61.26 MiB -1 -1 0.18 21388 1 0.02 -1 -1 33196 -1 -1 25 29 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62732 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 22.6 MiB 2.62 1183 61.3 MiB 0.10 0.00 3.15468 -93.573 -3.15468 3.15468 1.06 0.000255866 0.000210479 0.0161956 0.0135007 34 2651 20 6.89349e+06 352346 618332. 2139.56 1.74 0.100237 0.0863954 2190 20 1499 2133 168525 37515 3.20291 3.20291 -110.108 -3.20291 0 0 787024. 2723.27 0.35 0.07 0.0175389 0.0155215 138 49 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 8.65 vpr 61.55 MiB -1 -1 0.17 21236 1 0.02 -1 -1 33152 -1 -1 24 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63024 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 23.2 MiB 2.56 1321 61.5 MiB 0.10 0.00 4.55604 -146.733 -4.55604 4.55604 0.98 0.000280761 0.000216199 0.0166643 0.0137753 38 3111 28 6.89349e+06 338252 678818. 2348.85 2.60 0.123785 0.10748 2697 20 1837 2949 230835 49398 4.44198 4.44198 -162.861 -4.44198 0 0 902133. 3121.57 0.36 0.08 0.0194876 0.017331 166 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.61 vpr 60.91 MiB -1 -1 0.14 20680 1 0.01 -1 -1 33052 -1 -1 17 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62376 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 22.5 MiB 0.71 674 60.9 MiB 0.05 0.00 2.85355 -86.9106 -2.85355 2.85355 0.97 0.000180516 0.000146527 0.00831239 0.00690249 28 2009 20 6.89349e+06 239595 531479. 1839.03 2.74 0.0858442 0.0733573 1741 20 998 1540 109675 26956 2.82591 2.82591 -106 -2.82591 0 0 648988. 2245.63 0.28 0.05 0.0121413 0.0107851 92 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.44 vpr 61.78 MiB -1 -1 0.18 21316 1 0.01 -1 -1 33280 -1 -1 27 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63260 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 23.3 MiB 2.46 1379 61.8 MiB 0.13 0.00 4.41033 -141.075 -4.41033 4.41033 0.99 0.000268448 0.000221399 0.0232781 0.0192301 36 3096 25 6.89349e+06 380534 648988. 2245.63 2.49 0.13138 0.113756 2684 22 2090 2832 216014 47820 5.03434 5.03434 -168.369 -5.03434 0 0 828058. 2865.25 0.34 0.08 0.0207318 0.0183504 175 87 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.56 vpr 61.54 MiB -1 -1 0.15 21380 1 0.02 -1 -1 33140 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63012 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 22.9 MiB 2.78 1374 61.5 MiB 0.07 0.00 3.98598 -139.217 -3.98598 3.98598 0.95 0.000245989 0.000201822 0.0128349 0.0106909 36 3208 24 6.89349e+06 324158 648988. 2245.63 2.43 0.111433 0.0966823 2776 21 2302 2908 248748 52482 4.24289 4.24289 -164.611 -4.24289 0 0 828058. 2865.25 0.35 0.08 0.0182443 0.0161768 160 93 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 7.69 vpr 61.50 MiB -1 -1 0.17 21440 1 0.02 -1 -1 33148 -1 -1 22 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62976 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 23.0 MiB 2.43 1314 61.5 MiB 0.08 0.00 3.22388 -104.824 -3.22388 3.22388 0.96 0.000274299 0.000226309 0.0162688 0.0134335 36 2663 30 6.89349e+06 310065 648988. 2245.63 1.94 0.108777 0.09398 2329 20 1499 2146 165544 36535 3.17166 3.17166 -119.124 -3.17166 0 0 828058. 2865.25 0.34 0.06 0.0168741 0.0149222 152 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 9.04 vpr 61.61 MiB -1 -1 0.17 21376 1 0.02 -1 -1 33112 -1 -1 26 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63092 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 23.2 MiB 3.23 1291 61.6 MiB 0.11 0.00 4.6371 -141.463 -4.6371 4.6371 0.97 0.000301992 0.000251827 0.018059 0.0149744 34 3481 50 6.89349e+06 366440 618332. 2139.56 2.41 0.142367 0.123536 2736 22 1988 3139 252080 57893 4.80225 4.80225 -163.5 -4.80225 0 0 787024. 2723.27 0.32 0.08 0.019402 0.0171463 172 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 6.08 vpr 60.64 MiB -1 -1 0.15 20928 1 0.01 -1 -1 33196 -1 -1 15 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62092 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 22.2 MiB 1.09 623 60.6 MiB 0.06 0.00 2.51156 -77.8391 -2.51156 2.51156 0.96 0.000155151 0.00012302 0.0111958 0.00910321 34 1731 21 6.89349e+06 211408 618332. 2139.56 1.75 0.0683919 0.0583031 1359 20 715 972 78838 17970 2.26632 2.26632 -89.9187 -2.26632 0 0 787024. 2723.27 0.32 0.04 0.0100365 0.00876661 82 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.40 vpr 61.09 MiB -1 -1 0.16 21020 1 0.02 -1 -1 33232 -1 -1 20 30 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62552 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 22.6 MiB 1.57 983 61.1 MiB 0.09 0.00 3.70827 -116.322 -3.70827 3.70827 0.97 0.000196796 0.000159908 0.017432 0.0143488 34 2223 21 6.89349e+06 281877 618332. 2139.56 1.50 0.0800238 0.067638 1928 22 1492 2242 174540 39423 3.4858 3.4858 -126.175 -3.4858 0 0 787024. 2723.27 0.33 0.07 0.015523 0.0137527 119 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.00 vpr 61.10 MiB -1 -1 0.16 20852 1 0.01 -1 -1 33156 -1 -1 18 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62568 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 22.6 MiB 2.40 1106 61.1 MiB 0.06 0.00 3.53059 -116.759 -3.53059 3.53059 0.97 0.000205082 0.00016634 0.00984052 0.008201 34 2904 49 6.89349e+06 253689 618332. 2139.56 2.30 0.106496 0.0925077 2440 19 1564 2728 227367 49903 3.7991 3.7991 -139.131 -3.7991 0 0 787024. 2723.27 0.32 0.07 0.0138968 0.0122869 120 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 6.37 vpr 60.66 MiB -1 -1 0.15 20868 1 0.01 -1 -1 33096 -1 -1 21 25 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62112 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 22.3 MiB 1.46 539 60.7 MiB 0.05 0.00 2.8908 -68.9801 -2.8908 2.8908 0.98 0.000153377 0.000123485 0.0111013 0.0091095 36 1346 21 6.89349e+06 295971 648988. 2245.63 1.61 0.062609 0.0531317 1191 17 812 1227 74159 19504 2.96951 2.96951 -83.6634 -2.96951 0 0 828058. 2865.25 0.34 0.03 0.0089277 0.00788045 92 19 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.52 vpr 61.61 MiB -1 -1 0.17 21388 1 0.02 -1 -1 33104 -1 -1 23 32 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63092 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 23.0 MiB 3.07 1337 61.6 MiB 0.08 0.00 3.57385 -113.436 -3.57385 3.57385 0.97 0.00026163 0.000215795 0.0149723 0.0123865 36 3072 20 6.89349e+06 324158 648988. 2245.63 2.05 0.111563 0.0967843 2652 20 1702 2590 170455 39764 3.83626 3.83626 -132.82 -3.83626 0 0 828058. 2865.25 0.35 0.07 0.0178074 0.01579 161 69 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 8.52 vpr 61.44 MiB -1 -1 0.18 21236 1 0.02 -1 -1 33308 -1 -1 29 31 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62912 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 22.9 MiB 2.88 1309 61.4 MiB 0.14 0.00 3.88258 -128.399 -3.88258 3.88258 0.99 0.000258596 0.000209372 0.0257017 0.0211217 34 3615 33 6.89349e+06 408721 618332. 2139.56 2.13 0.137884 0.118713 2908 22 2139 2972 249292 54698 4.37314 4.37314 -160.453 -4.37314 0 0 787024. 2723.27 0.33 0.09 0.0214225 0.0190123 179 86 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 6.52 vpr 53.16 MiB -1 -1 0.15 17548 14 0.32 -1 -1 32176 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54440 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 14.6 MiB 0.37 1389 53.2 MiB 0.04 0.00 6.52936 -137.096 -6.52936 6.52936 0.58 0.000167085 0.000135188 0.0100502 0.0083374 32 3881 45 6.55708e+06 325485 554710. 1919.41 3.22 0.120523 0.103813 22174 131602 -1 3423 47 2390 8119 950380 367097 0 0 950380 367097 8119 4736 0 0 28053 23056 0 0 54064 35635 0 0 8119 5583 0 0 424782 149788 0 0 427243 148299 0 0 8119 0 0 5729 12476 12169 69851 0 0 7.25056 7.25056 -165.952 -7.25056 0 0 701300. 2426.64 0.19 0.18 0.07 -1 -1 0.19 0.0227328 0.0199962 183 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 5.09 vpr 53.29 MiB -1 -1 0.25 17692 14 0.38 -1 -1 32376 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54564 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 14.6 MiB 0.54 1212 53.3 MiB 0.04 0.00 6.76976 -130.82 -6.76976 6.76976 0.58 0.000193666 0.000161187 0.0106125 0.00883452 28 3699 44 6.55708e+06 373705 500653. 1732.36 1.88 0.0668587 0.0587062 21310 115450 -1 3171 19 1590 4710 294141 67778 0 0 294141 67778 4710 2554 0 0 16187 13540 0 0 25500 19106 0 0 4710 2981 0 0 121366 14989 0 0 121668 14608 0 0 4710 0 0 3120 5855 6519 38198 0 0 7.17416 7.17416 -153.878 -7.17416 0 0 612192. 2118.31 0.17 0.06 0.06 -1 -1 0.17 0.0140193 0.0127089 184 181 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 5.69 vpr 53.26 MiB -1 -1 0.12 17472 11 0.30 -1 -1 32216 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 14.6 MiB 0.43 1329 53.3 MiB 0.05 0.00 5.87124 -120.512 -5.87124 5.87124 0.64 0.000181263 0.000140133 0.0110507 0.00902822 28 4037 43 6.55708e+06 313430 500653. 1732.36 2.47 0.0667267 0.0581822 21310 115450 -1 3260 27 1745 6552 571935 168183 0 0 571935 168183 6552 3069 0 0 21793 18165 0 0 35726 25169 0 0 6552 3673 0 0 247212 59673 0 0 254100 58434 0 0 6552 0 0 4807 11897 12099 72627 0 0 6.15344 6.15344 -139.362 -6.15344 0 0 612192. 2118.31 0.17 0.10 0.06 -1 -1 0.17 0.0163816 0.0146904 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 5.63 vpr 53.38 MiB -1 -1 0.16 17524 12 0.39 -1 -1 32204 -1 -1 30 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54664 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 14.9 MiB 0.67 1298 53.4 MiB 0.03 0.00 6.1983 -120.704 -6.1983 6.1983 0.58 0.000168876 0.000137044 0.00805426 0.00671427 36 3495 44 6.55708e+06 361650 612192. 2118.31 2.20 0.0966824 0.0852114 22750 144809 -1 2993 28 1377 4601 417723 148693 0 0 417723 148693 4601 2179 0 0 15122 12498 0 0 25467 17754 0 0 4601 2767 0 0 180694 56754 0 0 187238 56741 0 0 4601 0 0 3224 5822 6046 38271 0 0 6.78964 6.78964 -138.304 -6.78964 0 0 782063. 2706.10 0.20 0.09 0.08 -1 -1 0.20 0.017345 0.0155688 190 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 4.80 vpr 53.44 MiB -1 -1 0.24 17436 13 0.37 -1 -1 32188 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54720 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 14.9 MiB 0.57 1517 53.4 MiB 0.05 0.00 6.50744 -139.044 -6.50744 6.50744 0.75 0.000186964 0.000151778 0.0112939 0.00948046 30 3842 30 6.55708e+06 373705 526063. 1820.29 0.94 0.06202 0.054439 21886 126133 -1 3207 17 1492 4352 203820 49148 0 0 203820 49148 4352 2229 0 0 14028 11506 0 0 19513 14926 0 0 4352 2744 0 0 80198 8986 0 0 81377 8757 0 0 4352 0 0 2860 4923 4295 32414 0 0 6.5981 6.5981 -156.158 -6.5981 0 0 666494. 2306.21 0.19 0.05 0.07 -1 -1 0.19 0.0142449 0.0130289 210 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.53 vpr 53.31 MiB -1 -1 0.22 17544 13 0.29 -1 -1 32148 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 14.8 MiB 0.44 1415 53.3 MiB 0.04 0.00 6.3185 -131.425 -6.3185 6.3185 0.60 0.000182356 0.000145594 0.00941041 0.00784961 36 3592 27 6.55708e+06 385760 612192. 2118.31 3.44 0.133114 0.11606 22750 144809 -1 3134 17 1245 4000 209302 48204 0 0 209302 48204 4000 1784 0 0 13395 10705 0 0 20257 15092 0 0 4000 2260 0 0 82407 9309 0 0 85243 9054 0 0 4000 0 0 2755 4959 5509 34961 0 0 6.63024 6.63024 -147.594 -6.63024 0 0 782063. 2706.10 0.20 0.04 0.08 -1 -1 0.20 0.0133222 0.0121701 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.41 vpr 52.87 MiB -1 -1 0.18 17256 12 0.24 -1 -1 32096 -1 -1 27 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54140 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 14.3 MiB 0.29 1062 52.9 MiB 0.04 0.00 5.95024 -109.358 -5.95024 5.95024 0.92 0.000144071 0.000117315 0.00996486 0.00811834 30 2469 18 6.55708e+06 325485 526063. 1820.29 1.98 0.0660681 0.0562487 21886 126133 -1 2129 16 963 2662 117505 28698 0 0 117505 28698 2662 1226 0 0 8524 6810 0 0 11871 9063 0 0 2662 1522 0 0 46684 4951 0 0 45102 5126 0 0 2662 0 0 1699 2231 2407 17323 0 0 6.31084 6.31084 -123.284 -6.31084 0 0 666494. 2306.21 0.18 0.03 0.07 -1 -1 0.18 0.0098404 0.00894804 152 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.18 vpr 52.82 MiB -1 -1 0.19 17532 12 0.21 -1 -1 32292 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54092 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 14.3 MiB 0.27 1261 52.8 MiB 0.06 0.00 5.1068 -113.491 -5.1068 5.1068 0.95 0.000228802 0.000182738 0.0125762 0.0105383 36 3077 37 6.55708e+06 265210 612192. 2118.31 2.66 0.0747151 0.0655231 22750 144809 -1 2664 15 1037 3077 176903 40466 0 0 176903 40466 3077 1610 0 0 10518 8736 0 0 16229 12102 0 0 3077 1863 0 0 70854 8225 0 0 73148 7930 0 0 3077 0 0 2040 3962 4203 26262 0 0 5.68992 5.68992 -133.074 -5.68992 0 0 782063. 2706.10 0.20 0.04 0.08 -1 -1 0.20 0.00984658 0.00903783 140 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 6.12 vpr 52.78 MiB -1 -1 0.22 17580 12 0.19 -1 -1 32048 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54044 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 14.2 MiB 0.31 1233 52.8 MiB 0.08 0.00 5.43586 -115.338 -5.43586 5.43586 0.99 0.000259176 0.000211278 0.0179736 0.0150152 36 2808 19 6.55708e+06 313430 612192. 2118.31 2.37 0.0983909 0.0849787 22750 144809 -1 2483 15 1000 2603 152038 35488 0 0 152038 35488 2603 1439 0 0 9050 7439 0 0 14232 10686 0 0 2603 1716 0 0 60671 7282 0 0 62879 6926 0 0 2603 0 0 1603 2240 2483 16609 0 0 5.55806 5.55806 -131.568 -5.55806 0 0 782063. 2706.10 0.20 0.03 0.08 -1 -1 0.20 0.00998431 0.0091548 150 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.66 vpr 52.92 MiB -1 -1 0.19 17452 13 0.18 -1 -1 32028 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54188 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 14.3 MiB 0.36 1144 52.9 MiB 0.08 0.00 6.22784 -133.488 -6.22784 6.22784 0.78 0.000305924 0.000247864 0.0200863 0.0165705 34 3345 25 6.55708e+06 301375 585099. 2024.56 3.43 0.144678 0.126889 22462 138074 -1 2596 15 1165 3120 186825 45550 0 0 186825 45550 3120 1703 0 0 11091 8993 0 0 16943 12870 0 0 3120 2034 0 0 75188 10007 0 0 77363 9943 0 0 3120 0 0 1955 3184 3277 21964 0 0 6.61798 6.61798 -157.257 -6.61798 0 0 742403. 2568.87 0.21 0.04 0.07 -1 -1 0.21 0.0108939 0.0100145 157 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.10 vpr 52.70 MiB -1 -1 0.22 17612 12 0.22 -1 -1 31904 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53968 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 14.3 MiB 0.36 1091 52.7 MiB 0.08 0.00 5.79284 -116.37 -5.79284 5.79284 1.00 0.000256328 0.000209726 0.0186849 0.0155973 28 2783 23 6.55708e+06 289320 500653. 1732.36 2.31 0.0952438 0.0832217 21310 115450 -1 2414 26 918 2409 257210 102693 0 0 257210 102693 2409 1349 0 0 8382 6742 0 0 13994 10356 0 0 2409 1632 0 0 114801 42274 0 0 115215 40340 0 0 2409 0 0 1491 2261 2554 16305 0 0 6.03324 6.03324 -136.106 -6.03324 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0123213 0.0110618 132 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.04 vpr 52.73 MiB -1 -1 0.17 17632 12 0.17 -1 -1 32076 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53996 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 14.2 MiB 0.30 1224 52.7 MiB 0.03 0.00 5.35486 -125.963 -5.35486 5.35486 0.92 0.000150307 0.000121591 0.0077 0.00652764 28 3143 31 6.55708e+06 265210 500653. 1732.36 3.60 0.0925276 0.0810747 21310 115450 -1 2774 16 1096 2998 191188 43573 0 0 191188 43573 2998 1700 0 0 10435 8528 0 0 15990 11946 0 0 2998 1927 0 0 80159 9720 0 0 78608 9752 0 0 2998 0 0 1902 3377 3572 22131 0 0 5.83566 5.83566 -147.106 -5.83566 0 0 612192. 2118.31 0.17 0.04 0.07 -1 -1 0.17 0.00988592 0.00900461 146 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 8.20 vpr 53.29 MiB -1 -1 0.24 17440 13 0.27 -1 -1 32248 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54572 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 14.9 MiB 0.23 1442 53.3 MiB 0.06 0.00 6.60776 -142.469 -6.60776 6.60776 0.98 0.000346347 0.000288836 0.0133962 0.0114951 28 3749 31 6.55708e+06 361650 500653. 1732.36 4.60 0.12255 0.108402 21310 115450 -1 3232 18 1325 3790 231008 52889 0 0 231008 52889 3790 2016 0 0 13180 10691 0 0 20527 15524 0 0 3790 2316 0 0 94581 11343 0 0 95140 10999 0 0 3790 0 0 2465 4638 5257 32948 0 0 6.96836 6.96836 -161.405 -6.96836 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.013788 0.0125975 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 4.84 vpr 53.39 MiB -1 -1 0.24 17432 14 0.39 -1 -1 32320 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54668 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 14.7 MiB 0.41 1620 53.4 MiB 0.04 0.00 7.20676 -154.078 -7.20676 7.20676 0.76 0.000185126 0.000149037 0.00989222 0.00829103 30 3839 37 6.55708e+06 361650 526063. 1820.29 1.02 0.0679226 0.0598168 21886 126133 -1 3149 17 1408 4054 194194 46479 0 0 194194 46479 4054 1834 0 0 13299 10648 0 0 18515 14248 0 0 4054 2210 0 0 77025 8754 0 0 77247 8785 0 0 4054 0 0 2646 4426 4637 31311 0 0 7.48636 7.48636 -171.704 -7.48636 0 0 666494. 2306.21 0.19 0.05 0.08 -1 -1 0.19 0.0152992 0.0140279 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.63 vpr 52.91 MiB -1 -1 0.17 17204 11 0.24 -1 -1 32076 -1 -1 27 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54180 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 14.4 MiB 0.34 1113 52.9 MiB 0.02 0.00 5.89878 -113.462 -5.89878 5.89878 0.97 0.000153703 0.000120814 0.00531141 0.00451516 28 2723 18 6.55708e+06 325485 500653. 1732.36 1.04 0.0493638 0.0434133 21310 115450 -1 2443 17 1029 2879 164178 38754 0 0 164178 38754 2879 1705 0 0 9912 8073 0 0 15442 11565 0 0 2879 1984 0 0 64716 8050 0 0 68350 7377 0 0 2879 0 0 1850 3226 2832 19997 0 0 6.13918 6.13918 -127.95 -6.13918 0 0 612192. 2118.31 0.19 0.04 0.10 -1 -1 0.19 0.0103713 0.00944681 147 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.95 vpr 53.47 MiB -1 -1 0.23 17488 12 0.35 -1 -1 32228 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54756 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 14.9 MiB 0.31 1480 53.5 MiB 0.13 0.00 5.95024 -123.259 -5.95024 5.95024 0.77 0.000341163 0.000272374 0.0309652 0.0255273 36 4399 50 6.55708e+06 397815 612192. 2118.31 4.40 0.150828 0.131406 22750 144809 -1 3203 25 1532 5024 454992 160396 0 0 454992 160396 5024 2422 0 0 16828 13722 0 0 27065 19695 0 0 5024 2953 0 0 201614 63078 0 0 199437 58526 0 0 5024 0 0 3492 8413 8124 48913 0 0 6.47284 6.47284 -146.294 -6.47284 0 0 782063. 2706.10 0.21 0.10 0.08 -1 -1 0.21 0.020393 0.0185943 209 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 7.79 vpr 53.16 MiB -1 -1 0.20 17356 14 0.34 -1 -1 32208 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54432 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 14.5 MiB 0.40 1478 53.2 MiB 0.06 0.00 6.18864 -133.089 -6.18864 6.18864 1.01 0.000336868 0.000276041 0.014658 0.012303 36 3767 47 6.55708e+06 349595 612192. 2118.31 3.80 0.171015 0.151988 22750 144809 -1 3089 17 1374 4083 240340 53799 0 0 240340 53799 4083 1977 0 0 13833 11415 0 0 21724 15992 0 0 4083 2475 0 0 95904 11345 0 0 100713 10595 0 0 4083 0 0 2709 4979 5511 34418 0 0 6.42904 6.42904 -148.142 -6.42904 0 0 782063. 2706.10 0.23 0.05 0.12 -1 -1 0.23 0.0138249 0.0126102 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.78 vpr 52.83 MiB -1 -1 0.22 17360 12 0.18 -1 -1 31856 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 14.3 MiB 0.43 1184 52.8 MiB 0.06 0.00 5.7221 -133.678 -5.7221 5.7221 0.97 0.000275705 0.000226899 0.0133973 0.0111617 28 2709 18 6.55708e+06 277265 500653. 1732.36 3.12 0.104739 0.0918532 21310 115450 -1 2391 16 861 2478 136948 32380 0 0 136948 32380 2478 1355 0 0 8691 6958 0 0 12886 9846 0 0 2478 1532 0 0 54480 6411 0 0 55935 6278 0 0 2478 0 0 1617 2916 3025 19610 0 0 5.9625 5.9625 -149.294 -5.9625 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.0101516 0.00928124 140 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.48 vpr 52.29 MiB -1 -1 0.16 16908 10 0.11 -1 -1 31700 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53548 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 13.8 MiB 0.21 866 52.3 MiB 0.03 0.00 4.49614 -104.391 -4.49614 4.49614 1.00 0.000207342 0.000171736 0.00622234 0.00530128 26 2151 20 6.55708e+06 192880 477104. 1650.88 1.13 0.051955 0.0462204 21022 109990 -1 1809 13 625 1550 96030 22982 0 0 96030 22982 1550 916 0 0 5729 4666 0 0 8631 6657 0 0 1550 1065 0 0 39897 4833 0 0 38673 4845 0 0 1550 0 0 925 995 1231 8545 0 0 4.73654 4.73654 -118.935 -4.73654 0 0 585099. 2024.56 0.27 0.04 0.09 -1 -1 0.27 0.011493 0.0105331 91 84 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.54 vpr 52.90 MiB -1 -1 0.22 17468 13 0.23 -1 -1 32100 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54168 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 14.4 MiB 0.43 1233 52.9 MiB 0.03 0.00 5.77858 -122.39 -5.77858 5.77858 0.60 0.000153384 0.000126381 0.00651973 0.0056013 32 3543 35 6.55708e+06 289320 554710. 1919.41 3.14 0.141627 0.124459 22174 131602 -1 2689 24 1249 3416 243942 57714 0 0 243942 57714 3416 1937 0 0 12238 9797 0 0 21276 15448 0 0 3416 2276 0 0 102832 14165 0 0 100764 14091 0 0 3416 0 0 2167 3330 3411 22876 0 0 6.37958 6.37958 -147.976 -6.37958 0 0 701300. 2426.64 0.23 0.06 0.11 -1 -1 0.23 0.0185101 0.0170292 144 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.43 vpr 53.40 MiB -1 -1 0.22 17600 13 0.34 -1 -1 32256 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 14.8 MiB 0.54 1446 53.4 MiB 0.07 0.00 6.8013 -133.663 -6.8013 6.8013 1.01 0.000365782 0.000301735 0.0177787 0.0150242 30 3632 23 6.55708e+06 373705 526063. 1820.29 1.17 0.094283 0.083603 21886 126133 -1 3038 18 1345 4042 187625 45334 0 0 187625 45334 4042 1716 0 0 13447 10971 0 0 18204 14262 0 0 4042 2192 0 0 74711 7943 0 0 73179 8250 0 0 4042 0 0 2697 4896 5243 33818 0 0 6.93116 6.93116 -151.62 -6.93116 0 0 666494. 2306.21 0.25 0.05 0.11 -1 -1 0.25 0.0148223 0.0135272 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.53 vpr 53.20 MiB -1 -1 0.25 17716 13 0.39 -1 -1 32252 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54480 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 14.7 MiB 0.58 1526 53.2 MiB 0.04 0.00 6.6399 -141.079 -6.6399 6.6399 0.68 0.000174623 0.000141976 0.00859057 0.00717755 46 3540 18 6.55708e+06 325485 782063. 2706.10 2.32 0.119837 0.107452 24766 183262 -1 3073 17 1294 4376 229971 50638 0 0 229971 50638 4376 1813 0 0 13915 11673 0 0 21317 15264 0 0 4376 2360 0 0 91440 10082 0 0 94547 9446 0 0 4376 0 0 3082 5746 5633 38625 0 0 6.70864 6.70864 -154.66 -6.70864 0 0 958460. 3316.47 0.40 0.08 0.17 -1 -1 0.40 0.0249879 0.0229195 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.89 vpr 52.31 MiB -1 -1 0.16 16912 9 0.11 -1 -1 31564 -1 -1 24 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53564 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 13.9 MiB 0.21 729 52.3 MiB 0.03 0.00 4.2302 -82.3532 -4.2302 4.2302 0.74 9.7335e-05 7.9509e-05 0.00681979 0.00567541 26 1817 41 6.55708e+06 289320 477104. 1650.88 1.11 0.0522731 0.0458359 21022 109990 -1 1611 19 637 1613 94345 22209 0 0 94345 22209 1613 934 0 0 5490 4424 0 0 8880 6435 0 0 1613 1076 0 0 38649 4739 0 0 38100 4601 0 0 1613 0 0 976 1226 1484 9901 0 0 4.5908 4.5908 -95.5864 -4.5908 0 0 585099. 2024.56 0.26 0.05 0.08 -1 -1 0.26 0.0143711 0.0131059 87 69 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.06 vpr 53.30 MiB -1 -1 0.20 17584 13 0.38 -1 -1 32820 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 14.9 MiB 0.33 1436 53.3 MiB 0.08 0.00 6.4433 -127.373 -6.4433 6.4433 0.71 0.00032724 0.000268875 0.0191813 0.0158962 30 4226 35 6.55708e+06 301375 526063. 1820.29 2.42 0.0962314 0.0844703 21886 126133 -1 3178 32 1495 4528 384451 135019 0 0 384451 135019 4528 2173 0 0 14472 12252 0 0 21497 15952 0 0 4528 2630 0 0 174641 52313 0 0 164785 49699 0 0 4528 0 0 3033 5259 5609 35485 0 0 6.6837 6.6837 -146.261 -6.6837 0 0 666494. 2306.21 0.28 0.16 0.11 -1 -1 0.28 0.0397848 0.0361377 193 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 6.49 vpr 52.18 MiB -1 -1 0.14 17020 8 0.11 -1 -1 32068 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53432 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 13.6 MiB 0.16 572 52.2 MiB 0.07 0.00 3.37088 -74.2225 -3.37088 3.37088 0.72 0.000167737 0.000133983 0.0141719 0.0115605 34 1688 29 6.55708e+06 192880 585099. 2024.56 3.38 0.0986045 0.085149 22462 138074 -1 1334 14 612 1341 80611 21718 0 0 80611 21718 1341 809 0 0 4973 4012 0 0 7450 5889 0 0 1341 950 0 0 32384 5048 0 0 33122 5010 0 0 1341 0 0 729 784 1002 6574 0 0 3.62554 3.62554 -90.2316 -3.62554 0 0 742403. 2568.87 0.20 0.02 0.13 -1 -1 0.20 0.0058455 0.00530303 77 59 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.80 vpr 53.04 MiB -1 -1 0.20 17408 15 0.20 -1 -1 32768 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54312 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 14.5 MiB 0.44 1280 53.0 MiB 0.08 0.00 6.4785 -131.459 -6.4785 6.4785 0.66 0.000292387 0.000237344 0.0187398 0.0154892 38 3018 32 6.55708e+06 337540 638502. 2209.35 4.41 0.172887 0.151506 23326 155178 -1 2451 17 1132 3319 152764 37034 0 0 152764 37034 3319 1432 0 0 10830 8802 0 0 15838 11893 0 0 3319 1776 0 0 59737 6715 0 0 59721 6416 0 0 3319 0 0 2187 3215 3119 23060 0 0 6.8783 6.8783 -150.046 -6.8783 0 0 851065. 2944.86 0.22 0.04 0.09 -1 -1 0.22 0.0127491 0.0116553 165 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.88 vpr 53.14 MiB -1 -1 0.22 17612 13 0.30 -1 -1 32292 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 14.6 MiB 0.34 1368 53.1 MiB 0.03 0.00 5.80612 -130.083 -5.80612 5.80612 0.78 0.000177305 0.000146217 0.00720387 0.00612528 44 2983 23 6.55708e+06 313430 742403. 2568.87 3.13 0.113399 0.0997029 24478 177802 -1 2570 15 1018 2833 147835 34249 0 0 147835 34249 2833 1332 0 0 9467 7680 0 0 14274 10883 0 0 2833 1708 0 0 58991 6431 0 0 59437 6215 0 0 2833 0 0 1815 2784 2995 20915 0 0 6.13718 6.13718 -147.467 -6.13718 0 0 937218. 3242.97 0.39 0.06 0.15 -1 -1 0.39 0.0220178 0.0203446 168 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 7.54 vpr 53.25 MiB -1 -1 0.22 17448 13 0.36 -1 -1 32304 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 14.6 MiB 0.29 1374 53.3 MiB 0.07 0.00 6.5609 -138.596 -6.5609 6.5609 0.97 0.00020105 0.000158104 0.0164581 0.0134711 28 4106 46 6.55708e+06 349595 500653. 1732.36 3.62 0.123736 0.109113 21310 115450 -1 3284 20 1752 5516 364091 80469 0 0 364091 80469 5516 2841 0 0 18560 15140 0 0 29622 21509 0 0 5516 3400 0 0 151375 18901 0 0 153502 18678 0 0 5516 0 0 3764 7719 8297 48512 0 0 7.03004 7.03004 -162.585 -7.03004 0 0 612192. 2118.31 0.20 0.11 0.07 -1 -1 0.20 0.0250255 0.0225184 187 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 5.38 vpr 52.92 MiB -1 -1 0.20 17596 12 0.21 -1 -1 32064 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54188 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 14.4 MiB 0.43 1309 52.9 MiB 0.07 0.00 5.57998 -124.292 -5.57998 5.57998 0.87 0.000263116 0.000212897 0.0156532 0.0128937 34 3200 18 6.55708e+06 277265 585099. 2024.56 1.60 0.0632269 0.054888 22462 138074 -1 2819 18 1110 3240 205965 46142 0 0 205965 46142 3240 1785 0 0 11210 9181 0 0 18106 13261 0 0 3240 2091 0 0 83547 10119 0 0 86622 9705 0 0 3240 0 0 2130 3623 3844 24193 0 0 5.84992 5.84992 -142.369 -5.84992 0 0 742403. 2568.87 0.29 0.07 0.12 -1 -1 0.29 0.020188 0.0184526 147 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.83 vpr 52.77 MiB -1 -1 0.21 17324 11 0.17 -1 -1 32164 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54036 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 14.1 MiB 0.26 1043 52.8 MiB 0.06 0.00 5.26058 -113.411 -5.26058 5.26058 1.02 0.000252271 0.000206875 0.0145506 0.0121086 28 2742 20 6.55708e+06 277265 500653. 1732.36 1.14 0.0564502 0.0492017 21310 115450 -1 2328 16 935 2573 157684 36129 0 0 157684 36129 2573 1450 0 0 8890 7178 0 0 13453 10231 0 0 2573 1669 0 0 65227 7912 0 0 64968 7689 0 0 2573 0 0 1638 2622 2572 18009 0 0 5.74138 5.74138 -131.441 -5.74138 0 0 612192. 2118.31 0.19 0.06 0.11 -1 -1 0.19 0.0201895 0.0186698 131 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 7.00 vpr 52.91 MiB -1 -1 0.17 17256 11 0.22 -1 -1 32020 -1 -1 28 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54176 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 14.4 MiB 0.53 1012 52.9 MiB 0.07 0.00 5.29978 -104.369 -5.29978 5.29978 0.97 0.000277354 0.000229279 0.0174486 0.014608 30 2396 16 6.55708e+06 337540 526063. 1820.29 2.98 0.124182 0.108737 21886 126133 -1 1953 16 854 2338 107648 26441 0 0 107648 26441 2338 1120 0 0 7767 6079 0 0 10551 8344 0 0 2338 1348 0 0 41504 4913 0 0 43150 4637 0 0 2338 0 0 1484 2162 2175 15853 0 0 5.86158 5.86158 -122.232 -5.86158 0 0 666494. 2306.21 0.31 0.04 0.12 -1 -1 0.31 0.0159433 0.0148907 150 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 7.65 vpr 53.44 MiB -1 -1 0.14 17188 12 0.17 -1 -1 32216 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 14.6 MiB 0.32 1234 53.4 MiB 0.07 0.00 5.9619 -130.268 -5.9619 5.9619 0.65 0.000332149 0.000264684 0.0171386 0.0141092 26 3658 34 6.55708e+06 313430 477104. 1650.88 4.29 0.171106 0.151134 21022 109990 -1 3023 21 1399 3581 235870 57256 0 0 235870 57256 3581 2143 0 0 12682 10499 0 0 19749 14803 0 0 3581 2522 0 0 100303 13436 0 0 95974 13853 0 0 3581 0 0 2182 2763 3357 21425 0 0 6.5629 6.5629 -158.809 -6.5629 0 0 585099. 2024.56 0.26 0.09 0.10 -1 -1 0.26 0.0274502 0.0250239 181 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 7.75 vpr 52.88 MiB -1 -1 0.17 17216 12 0.24 -1 -1 32212 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54152 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 14.4 MiB 0.81 1048 52.9 MiB 0.11 0.01 5.95024 -121.701 -5.95024 5.95024 0.99 0.00024821 0.000199794 0.0207194 0.0174256 34 2791 50 6.55708e+06 277265 585099. 2024.56 3.39 0.174163 0.154311 22462 138074 -1 2337 19 1086 2939 162439 39713 0 0 162439 39713 2939 1487 0 0 10500 8744 0 0 16311 12423 0 0 2939 1830 0 0 64377 7752 0 0 65373 7477 0 0 2939 0 0 1853 2809 2942 20115 0 0 6.0037 6.0037 -136.862 -6.0037 0 0 742403. 2568.87 0.23 0.04 0.13 -1 -1 0.23 0.0124319 0.0113308 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 8.50 vpr 52.75 MiB -1 -1 0.12 17584 10 0.15 -1 -1 32040 -1 -1 22 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54012 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 14.3 MiB 0.17 1065 52.7 MiB 0.05 0.00 4.79906 -102.264 -4.79906 4.79906 0.72 0.00024383 0.00019699 0.0136375 0.0113395 28 2760 39 6.55708e+06 265210 500653. 1732.36 5.60 0.13219 0.117384 21310 115450 -1 2371 19 942 2889 175929 40436 0 0 175929 40436 2889 1539 0 0 10062 8438 0 0 15884 11760 0 0 2889 1759 0 0 72129 8355 0 0 72076 8585 0 0 2889 0 0 1947 3865 3965 25740 0 0 5.44186 5.44186 -124.411 -5.44186 0 0 612192. 2118.31 0.29 0.07 0.11 -1 -1 0.29 0.0208964 0.0190507 137 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.17 vpr 53.68 MiB -1 -1 0.24 17700 13 0.38 -1 -1 32232 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 15.2 MiB 0.34 1498 53.7 MiB 0.07 0.00 6.5589 -137.868 -6.5589 6.5589 1.01 0.000389821 0.000314459 0.018227 0.0152716 30 3693 27 6.55708e+06 373705 526063. 1820.29 1.92 0.122237 0.108388 21886 126133 -1 3051 16 1332 4345 209047 48999 0 0 209047 48999 4345 1852 0 0 13923 11342 0 0 20295 15185 0 0 4345 2300 0 0 83726 9108 0 0 82413 9212 0 0 4345 0 0 3013 6515 6535 43502 0 0 6.7967 6.7967 -153.557 -6.7967 0 0 666494. 2306.21 0.29 0.09 0.11 -1 -1 0.29 0.0295863 0.0271462 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 15.94 vpr 53.26 MiB -1 -1 0.23 17788 14 0.42 -1 -1 32680 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 14.7 MiB 0.65 1478 53.3 MiB 0.07 0.00 6.25538 -139.739 -6.25538 6.25538 0.95 0.000331902 0.00027218 0.0179163 0.0150364 28 4436 28 6.55708e+06 337540 500653. 1732.36 11.67 0.144946 0.127161 21310 115450 -1 3635 30 1580 4685 539549 198565 0 0 539549 198565 4685 2631 0 0 15900 12979 0 0 25961 18803 0 0 4685 3021 0 0 241575 79334 0 0 246743 81797 0 0 4685 0 0 3105 6671 6583 39972 0 0 6.81458 6.81458 -166.372 -6.81458 0 0 612192. 2118.31 0.17 0.11 0.06 -1 -1 0.17 0.0182813 0.0164031 191 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.08 vpr 52.92 MiB -1 -1 0.20 17432 12 0.20 -1 -1 32072 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54192 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 14.4 MiB 0.28 1173 52.9 MiB 0.06 0.00 6.2023 -123.636 -6.2023 6.2023 0.97 0.000282589 0.000233245 0.0133069 0.0112134 30 3009 43 6.55708e+06 349595 526063. 1820.29 1.35 0.0871406 0.0766452 21886 126133 -1 2482 17 1041 2908 152411 35513 0 0 152411 35513 2908 1488 0 0 9623 7683 0 0 13407 10327 0 0 2908 1730 0 0 60419 7456 0 0 63146 6829 0 0 2908 0 0 1867 3543 3010 22780 0 0 6.6021 6.6021 -142.188 -6.6021 0 0 666494. 2306.21 0.30 0.08 0.12 -1 -1 0.30 0.0233136 0.0213808 156 148 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.94 vpr 53.56 MiB -1 -1 0.23 17696 12 0.36 -1 -1 32260 -1 -1 33 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54848 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 14.9 MiB 0.57 1480 53.6 MiB 0.07 0.00 6.5197 -133.711 -6.5197 6.5197 0.72 0.000415494 0.000339876 0.0181485 0.0151041 36 3787 29 6.55708e+06 397815 612192. 2118.31 3.06 0.165065 0.147372 22750 144809 -1 3316 18 1545 4493 249906 59243 0 0 249906 59243 4493 2295 0 0 15448 12747 0 0 23467 18023 0 0 4493 2831 0 0 100166 11867 0 0 101839 11480 0 0 4493 0 0 2948 5136 5157 32998 0 0 6.7601 6.7601 -151.559 -6.7601 0 0 782063. 2706.10 0.30 0.10 0.12 -1 -1 0.30 0.0312679 0.0287107 218 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.09 vpr 53.42 MiB -1 -1 0.21 17836 14 0.35 -1 -1 32656 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54704 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1435 53.4 MiB 0.04 0.00 6.76976 -136.238 -6.76976 6.76976 0.65 0.000180218 0.000143744 0.00871027 0.00723421 30 3926 40 6.55708e+06 349595 526063. 1820.29 1.75 0.100954 0.0892511 21886 126133 -1 2952 20 1333 4044 189777 45018 0 0 189777 45018 4044 1837 0 0 12932 10417 0 0 18340 13795 0 0 4044 2276 0 0 73434 8529 0 0 76983 8164 0 0 4044 0 0 2711 3797 4184 30538 0 0 7.14002 7.14002 -155.895 -7.14002 0 0 666494. 2306.21 0.31 0.08 0.12 -1 -1 0.31 0.0291157 0.026591 202 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.77 vpr 53.23 MiB -1 -1 0.19 17752 13 0.28 -1 -1 32188 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54508 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 14.8 MiB 0.28 1410 53.2 MiB 0.09 0.00 6.54924 -133.182 -6.54924 6.54924 0.70 0.000326692 0.000264024 0.0209935 0.0171399 36 3588 34 6.55708e+06 337540 612192. 2118.31 2.43 0.166025 0.146396 22750 144809 -1 3032 19 1356 3969 218273 51471 0 0 218273 51471 3969 2003 0 0 13455 10834 0 0 20633 15560 0 0 3969 2433 0 0 87059 10290 0 0 89188 10351 0 0 3969 0 0 2613 3814 4650 28420 0 0 7.15024 7.15024 -153.256 -7.15024 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0269421 0.0247051 185 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 12.74 vpr 53.22 MiB -1 -1 0.22 17592 13 0.35 -1 -1 32192 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 14.6 MiB 0.46 1295 53.2 MiB 0.09 0.00 6.15144 -119.617 -6.15144 6.15144 1.05 0.000339815 0.000279206 0.021036 0.0176257 28 3972 50 6.55708e+06 313430 500653. 1732.36 8.45 0.199462 0.176226 21310 115450 -1 3160 27 1554 5412 425222 124396 0 0 425222 124396 5412 2710 0 0 17820 14650 0 0 28837 20471 0 0 5412 3140 0 0 184807 43245 0 0 182934 40180 0 0 5412 0 0 3858 9612 9086 55936 0 0 6.43304 6.43304 -141.606 -6.43304 0 0 612192. 2118.31 0.26 0.15 0.10 -1 -1 0.26 0.0328223 0.029683 179 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.53 vpr 53.09 MiB -1 -1 0.16 17440 12 0.25 -1 -1 32188 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 14.6 MiB 0.17 1325 53.1 MiB 0.03 0.00 5.76892 -119.845 -5.76892 5.76892 0.59 0.000170018 0.000134486 0.007699 0.00645775 28 3281 37 6.55708e+06 289320 500653. 1732.36 1.58 0.0844359 0.07523 21310 115450 -1 2813 22 1253 3646 225056 50660 0 0 225056 50660 3646 1866 0 0 12815 10340 0 0 19300 14682 0 0 3646 2140 0 0 91897 10995 0 0 93752 10637 0 0 3646 0 0 2393 5039 4932 32242 0 0 6.07244 6.07244 -140.255 -6.07244 0 0 612192. 2118.31 0.28 0.09 0.11 -1 -1 0.28 0.0266691 0.0241795 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.43 vpr 53.59 MiB -1 -1 0.20 18320 14 0.50 -1 -1 32408 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54880 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 15.1 MiB 0.50 1700 53.6 MiB 0.06 0.00 6.7555 -147.344 -6.7555 6.7555 0.89 0.00020653 0.000168433 0.0131132 0.0108912 36 4389 25 6.55708e+06 373705 612192. 2118.31 2.15 0.109569 0.0971923 22750 144809 -1 3698 18 1557 5197 295347 66321 0 0 295347 66321 5197 2547 0 0 17364 14369 0 0 27258 20123 0 0 5197 3099 0 0 117225 13559 0 0 123106 12624 0 0 5197 0 0 3640 7934 8230 52171 0 0 7.1991 7.1991 -166.714 -7.1991 0 0 782063. 2706.10 0.21 0.07 0.08 -1 -1 0.21 0.0217529 0.0198113 230 229 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 8.15 vpr 52.93 MiB -1 -1 0.15 17348 11 0.25 -1 -1 32196 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54200 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 14.5 MiB 0.43 1091 52.9 MiB 0.10 0.00 5.70218 -114.869 -5.70218 5.70218 1.03 0.000292035 0.000237519 0.024566 0.020342 36 3367 40 6.55708e+06 313430 612192. 2118.31 3.98 0.145913 0.127779 22750 144809 -1 2560 16 1224 3574 194343 47415 0 0 194343 47415 3574 1882 0 0 12221 9916 0 0 18811 14235 0 0 3574 2230 0 0 72985 10060 0 0 83178 9092 0 0 3574 0 0 2350 4203 3921 26964 0 0 5.82238 5.82238 -136.331 -5.82238 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0205183 0.0188483 163 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.61 vpr 53.35 MiB -1 -1 0.13 17584 13 0.33 -1 -1 32248 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 14.9 MiB 0.32 1379 53.4 MiB 0.05 0.00 6.48956 -129.592 -6.48956 6.48956 0.59 0.000184661 0.000143893 0.0119945 0.00983918 34 3374 22 6.55708e+06 337540 585099. 2024.56 4.43 0.186776 0.165184 22462 138074 -1 2911 18 1210 4065 247633 55280 0 0 247633 55280 4065 1837 0 0 13982 11318 0 0 23025 16622 0 0 4065 2232 0 0 102814 11339 0 0 99682 11932 0 0 4065 0 0 2855 5931 6531 41740 0 0 7.09056 7.09056 -152.828 -7.09056 0 0 742403. 2568.87 0.31 0.09 0.13 -1 -1 0.31 0.0281137 0.0256942 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 14.56 vpr 53.39 MiB -1 -1 0.24 17580 12 0.33 -1 -1 32144 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 14.8 MiB 0.63 1541 53.4 MiB 0.05 0.00 5.79284 -124.943 -5.79284 5.79284 0.75 0.000185775 0.000150994 0.011921 0.00998578 30 4024 28 6.55708e+06 349595 526063. 1820.29 10.71 0.141547 0.124139 21886 126133 -1 3352 16 1508 5077 267093 60608 0 0 267093 60608 5077 2239 0 0 16420 13597 0 0 23365 17595 0 0 5077 2770 0 0 107106 12650 0 0 110048 11757 0 0 5077 0 0 3569 8457 7894 51661 0 0 6.11424 6.11424 -145.745 -6.11424 0 0 666494. 2306.21 0.24 0.05 0.07 -1 -1 0.24 0.0140383 0.0128155 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 4.56 vpr 53.23 MiB -1 -1 0.12 17508 13 0.20 -1 -1 32148 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54504 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 14.8 MiB 0.23 1256 53.2 MiB 0.05 0.00 6.38724 -132.926 -6.38724 6.38724 0.61 0.000306676 0.000249203 0.0115348 0.00970675 28 3298 27 6.55708e+06 349595 500653. 1732.36 1.45 0.0673947 0.0596214 21310 115450 -1 2951 54 1382 4444 746637 396625 0 0 746637 396625 4444 2262 0 0 15157 12070 0 0 29138 19999 0 0 4444 2711 0 0 337556 178041 0 0 355898 181542 0 0 4444 0 0 3062 5294 5867 36865 0 0 6.51004 6.51004 -150.749 -6.51004 0 0 612192. 2118.31 0.26 0.30 0.10 -1 -1 0.26 0.0545938 0.0489094 183 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 8.35 vpr 53.26 MiB -1 -1 0.17 17424 13 0.28 -1 -1 32288 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 14.6 MiB 0.41 1396 53.3 MiB 0.04 0.00 5.85758 -132.307 -5.85758 5.85758 0.86 0.000179496 0.000146802 0.0104055 0.0087178 34 3579 42 6.55708e+06 313430 585099. 2024.56 4.35 0.189452 0.167857 22462 138074 -1 3012 15 1221 3676 219182 49812 0 0 219182 49812 3676 1871 0 0 12706 10332 0 0 20573 15126 0 0 3676 2259 0 0 88311 10235 0 0 90240 9989 0 0 3676 0 0 2455 4961 5114 33902 0 0 6.33838 6.33838 -150.89 -6.33838 0 0 742403. 2568.87 0.32 0.08 0.13 -1 -1 0.32 0.020762 0.0190363 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 13.65 vpr 53.30 MiB -1 -1 0.19 17584 12 0.29 -1 -1 32212 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54580 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 14.9 MiB 0.62 1487 53.3 MiB 0.07 0.00 6.19064 -133.107 -6.19064 6.19064 0.82 0.000395051 0.000317661 0.0169544 0.0142563 34 4249 42 6.55708e+06 361650 585099. 2024.56 9.52 0.210773 0.186634 22462 138074 -1 3556 27 1583 5557 564897 210046 0 0 564897 210046 5557 2716 0 0 19101 15888 0 0 31980 22811 0 0 5557 3284 0 0 250627 82966 0 0 252075 82381 0 0 5557 0 0 3974 10256 11043 63560 0 0 6.78198 6.78198 -156.198 -6.78198 0 0 742403. 2568.87 0.26 0.13 0.12 -1 -1 0.26 0.0205899 0.0184746 197 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.40 vpr 53.66 MiB -1 -1 0.23 17848 13 0.42 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 14.9 MiB 0.35 1538 53.7 MiB 0.08 0.00 6.42904 -135.783 -6.42904 6.42904 1.06 0.000387499 0.000319254 0.0190271 0.0160375 36 3811 33 6.55708e+06 373705 612192. 2118.31 4.28 0.194038 0.17045 22750 144809 -1 3239 19 1504 4639 252636 58698 0 0 252636 58698 4639 2135 0 0 15752 12764 0 0 24810 18390 0 0 4639 2652 0 0 101388 11538 0 0 101408 11219 0 0 4639 0 0 3135 5923 6104 39313 0 0 6.75044 6.75044 -155.802 -6.75044 0 0 782063. 2706.10 0.34 0.13 0.14 -1 -1 0.34 0.0382819 0.0350072 212 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 8.00 vpr 53.04 MiB -1 -1 0.15 17472 14 0.28 -1 -1 32240 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54312 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 14.5 MiB 0.34 1235 53.0 MiB 0.08 0.00 6.8411 -136.331 -6.8411 6.8411 1.01 0.000322925 0.000266378 0.0201231 0.0168033 30 3217 23 6.55708e+06 289320 526063. 1820.29 4.01 0.157315 0.138016 21886 126133 -1 2542 18 1143 3437 168156 39963 0 0 168156 39963 3437 1611 0 0 11231 9182 0 0 15870 12062 0 0 3437 1932 0 0 66990 7766 0 0 67191 7410 0 0 3437 0 0 2294 4057 3831 27437 0 0 7.0795 7.0795 -154.218 -7.0795 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.0252436 0.0231486 168 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 13.54 vpr 53.58 MiB -1 -1 0.22 17432 13 0.34 -1 -1 32252 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 14.9 MiB 0.47 1427 53.6 MiB 0.07 0.00 7.05196 -137.739 -7.05196 7.05196 1.05 0.000322412 0.000263862 0.0162207 0.0135078 32 3890 33 6.55708e+06 361650 554710. 1919.41 9.46 0.252658 0.224894 22174 131602 -1 3407 19 1564 4457 268876 63093 0 0 268876 63093 4457 2525 0 0 15753 12807 0 0 25935 19240 0 0 4457 3025 0 0 109364 12595 0 0 108910 12901 0 0 4457 0 0 2893 4952 5283 33587 0 0 7.05196 7.05196 -156.427 -7.05196 0 0 701300. 2426.64 0.21 0.06 0.07 -1 -1 0.21 0.0155332 0.0141137 198 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.00 vpr 53.51 MiB -1 -1 0.24 17772 13 0.34 -1 -1 32244 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 14.8 MiB 0.36 1560 53.5 MiB 0.03 0.00 6.42904 -136.281 -6.42904 6.42904 0.59 0.000180291 0.000146488 0.00805195 0.00675471 30 3711 20 6.55708e+06 373705 526063. 1820.29 1.52 0.069021 0.0607203 21886 126133 -1 3136 20 1394 4183 203514 47746 0 0 203514 47746 4183 1868 0 0 13599 11020 0 0 19421 14732 0 0 4183 2307 0 0 81375 8797 0 0 80753 9022 0 0 4183 0 0 2789 4744 5116 34276 0 0 6.66944 6.66944 -155.032 -6.66944 0 0 666494. 2306.21 0.29 0.08 0.11 -1 -1 0.29 0.0269011 0.0244085 213 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 13.23 vpr 53.63 MiB -1 -1 0.25 17812 12 0.38 -1 -1 32292 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 14.8 MiB 0.25 1449 53.6 MiB 0.08 0.00 6.3623 -133.588 -6.3623 6.3623 1.02 0.000397758 0.000331973 0.0195726 0.0165255 28 4397 26 6.55708e+06 397815 500653. 1732.36 9.21 0.200768 0.177755 21310 115450 -1 3578 20 1975 5584 363337 85319 0 0 363337 85319 5584 3134 0 0 18958 15300 0 0 29424 21757 0 0 5584 3744 0 0 150375 21011 0 0 153412 20373 0 0 5584 0 0 3609 5946 6686 38775 0 0 6.79164 6.79164 -161.203 -6.79164 0 0 612192. 2118.31 0.21 0.07 0.10 -1 -1 0.21 0.0172782 0.0157089 216 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.43 vpr 52.62 MiB -1 -1 0.13 17096 11 0.15 -1 -1 31880 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53888 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 14.0 MiB 0.33 1080 52.6 MiB 0.04 0.00 4.96872 -107.91 -4.96872 4.96872 0.87 0.000195676 0.00015846 0.00920107 0.0076335 30 2311 16 6.55708e+06 216990 526063. 1820.29 2.87 0.10436 0.0911769 21886 126133 -1 1998 15 761 1974 94094 22758 0 0 94094 22758 1974 988 0 0 6488 5043 0 0 9012 6985 0 0 1974 1157 0 0 37300 4375 0 0 37346 4210 0 0 1974 0 0 1213 1729 1835 12625 0 0 5.44952 5.44952 -125.573 -5.44952 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.015479 0.014195 125 121 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 12.18 vpr 52.98 MiB -1 -1 0.21 17440 13 0.27 -1 -1 32072 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54248 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 14.5 MiB 0.42 1271 53.0 MiB 0.03 0.00 6.14684 -129.703 -6.14684 6.14684 0.88 0.000164344 0.000132956 0.00692158 0.00581548 28 3635 29 6.55708e+06 289320 500653. 1732.36 8.29 0.149761 0.132802 21310 115450 -1 3058 16 1242 3631 231896 52555 0 0 231896 52555 3631 2027 0 0 12407 10085 0 0 19677 14459 0 0 3631 2354 0 0 95182 11892 0 0 97368 11738 0 0 3631 0 0 2389 4807 4751 28948 0 0 6.74018 6.74018 -155.389 -6.74018 0 0 612192. 2118.31 0.28 0.09 0.11 -1 -1 0.28 0.0239888 0.0220792 161 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 9.46 vpr 53.76 MiB -1 -1 0.25 18016 14 0.56 -1 -1 32456 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55052 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 15.3 MiB 0.23 1685 53.8 MiB 0.08 0.00 7.1167 -147.065 -7.1167 7.1167 1.02 0.000403119 0.000327009 0.0215924 0.017927 34 4561 39 6.55708e+06 397815 585099. 2024.56 5.45 0.273652 0.241615 22462 138074 -1 3790 19 1738 5334 302368 69728 0 0 302368 69728 5334 2544 0 0 18530 15210 0 0 28577 21396 0 0 5334 3215 0 0 122498 13477 0 0 122095 13886 0 0 5334 0 0 3596 6609 6555 44204 0 0 7.61881 7.61881 -173.477 -7.61881 0 0 742403. 2568.87 0.32 0.11 0.13 -1 -1 0.32 0.0352595 0.0320223 245 243 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.87 vpr 53.11 MiB -1 -1 0.24 17440 13 0.36 -1 -1 32284 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 14.5 MiB 0.52 1363 53.1 MiB 0.08 0.00 6.4759 -140.429 -6.4759 6.4759 0.87 0.000341793 0.000282193 0.021453 0.017971 34 3820 21 6.55708e+06 325485 585099. 2024.56 4.15 0.196047 0.172693 22462 138074 -1 3103 31 1607 4697 485574 199651 0 0 485574 199651 4697 2373 0 0 15842 12900 0 0 27010 18971 0 0 4697 2838 0 0 220987 84375 0 0 212341 78194 0 0 4697 0 0 3090 5409 5631 36391 0 0 7.0397 7.0397 -167.577 -7.0397 0 0 742403. 2568.87 0.20 0.12 0.07 -1 -1 0.20 0.0208009 0.0186529 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 9.82 vpr 52.84 MiB -1 -1 0.20 17508 11 0.21 -1 -1 32076 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54108 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 14.4 MiB 0.21 1079 52.8 MiB 0.05 0.00 5.48612 -114.762 -5.48612 5.48612 0.94 0.000244044 0.000201334 0.0121541 0.01017 28 2966 46 6.55708e+06 277265 500653. 1732.36 6.24 0.168687 0.150334 21310 115450 -1 2389 19 1017 3069 184403 41885 0 0 184403 41885 3069 1619 0 0 10331 8471 0 0 16132 11915 0 0 3069 1838 0 0 74638 9363 0 0 77164 8679 0 0 3069 0 0 2052 3764 3770 25105 0 0 6.04792 6.04792 -137.641 -6.04792 0 0 612192. 2118.31 0.20 0.12 0.09 -1 -1 0.20 0.0261267 0.0239444 139 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 16.48 vpr 53.93 MiB -1 -1 0.24 18404 15 0.70 -1 -1 32336 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55224 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 15.3 MiB 0.38 1805 53.9 MiB 0.08 0.00 8.10727 -154.659 -8.10727 8.10727 0.95 0.000423961 0.000341924 0.0206312 0.0173132 30 4719 27 6.55708e+06 409870 526063. 1820.29 12.12 0.238774 0.210949 21886 126133 -1 3757 17 1950 6189 310180 70997 0 0 310180 70997 6189 2693 0 0 19893 16407 0 0 28318 21338 0 0 6189 3246 0 0 125994 13527 0 0 123597 13786 0 0 6189 0 0 4239 10004 9444 61988 0 0 8.10927 8.10927 -172.367 -8.10927 0 0 666494. 2306.21 0.29 0.10 0.11 -1 -1 0.29 0.03106 0.0284556 257 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.63 vpr 53.32 MiB -1 -1 0.21 17488 13 0.40 -1 -1 32276 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54596 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 14.8 MiB 0.40 1381 53.3 MiB 0.06 0.00 6.61236 -135.377 -6.61236 6.61236 1.00 0.000365762 0.000302037 0.0148724 0.0126528 34 3390 27 6.55708e+06 337540 585099. 2024.56 2.33 0.140384 0.122812 22462 138074 -1 2978 17 1316 3859 214908 50966 0 0 214908 50966 3859 1895 0 0 13758 11214 0 0 20989 15884 0 0 3859 2351 0 0 85487 9964 0 0 86956 9658 0 0 3859 0 0 2543 4724 4879 31675 0 0 7.05396 7.05396 -156.874 -7.05396 0 0 742403. 2568.87 0.26 0.08 0.11 -1 -1 0.26 0.0279912 0.0258048 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.70 vpr 52.75 MiB -1 -1 0.15 17172 11 0.16 -1 -1 32024 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 14.3 MiB 0.40 1107 52.8 MiB 0.03 0.00 5.08892 -112.714 -5.08892 5.08892 0.93 0.000159745 0.000131797 0.00796292 0.00664389 28 3096 31 6.55708e+06 265210 500653. 1732.36 1.95 0.0669585 0.0569313 21310 115450 -1 2514 18 1218 3604 212006 49018 0 0 212006 49018 3604 1875 0 0 12183 10104 0 0 19544 14296 0 0 3604 2193 0 0 85939 10493 0 0 87132 10057 0 0 3604 0 0 2386 4702 4867 29969 0 0 5.5086 5.5086 -132.558 -5.5086 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0208824 0.0190247 141 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 6.31 vpr 53.39 MiB -1 -1 0.21 17476 12 0.37 -1 -1 32304 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 14.8 MiB 0.55 1539 53.4 MiB 0.09 0.00 6.2813 -128.323 -6.2813 6.2813 0.71 0.000321579 0.000259694 0.024337 0.0201222 30 3992 39 6.55708e+06 361650 526063. 1820.29 2.36 0.115127 0.100852 21886 126133 -1 3137 30 1873 6821 580030 231037 0 0 580030 231037 6821 3067 0 0 21361 17549 0 0 33417 23717 0 0 6821 3859 0 0 253959 92317 0 0 257651 90528 0 0 6821 0 0 4948 12989 12287 76327 0 0 6.5217 6.5217 -147.893 -6.5217 0 0 666494. 2306.21 0.31 0.23 0.11 -1 -1 0.31 0.047836 0.043521 213 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.90 vpr 53.06 MiB -1 -1 0.16 17168 12 0.24 -1 -1 32172 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54336 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 14.4 MiB 0.39 1179 53.1 MiB 0.03 0.00 6.02924 -125.819 -6.02924 6.02924 0.69 0.000148364 0.000120184 0.00691545 0.00581789 26 3589 50 6.55708e+06 313430 477104. 1650.88 3.78 0.112285 0.0983423 21022 109990 -1 2916 15 1223 3398 223401 52162 0 0 223401 52162 3398 2011 0 0 11929 9725 0 0 18610 13810 0 0 3398 2283 0 0 92746 12092 0 0 93320 12241 0 0 3398 0 0 2175 3445 3693 23431 0 0 6.75044 6.75044 -154.865 -6.75044 0 0 585099. 2024.56 0.25 0.08 0.10 -1 -1 0.25 0.0201796 0.0185648 153 148 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 4.57 vpr 52.74 MiB -1 -1 0.19 17328 12 0.22 -1 -1 32120 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54008 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 14.3 MiB 0.16 1022 52.7 MiB 0.06 0.00 5.58904 -114.558 -5.58904 5.58904 0.63 0.000250078 0.000203754 0.014894 0.0123061 26 2671 34 6.55708e+06 253155 477104. 1650.88 1.71 0.0864117 0.0761647 21022 109990 -1 2369 63 1593 5936 1233036 771905 0 0 1233036 771905 5936 3174 0 0 19141 16179 0 0 44946 27537 0 0 5936 3533 0 0 571988 363491 0 0 585089 357991 0 0 5936 0 0 4343 9389 9663 56127 0 0 6.34238 6.34238 -141.449 -6.34238 0 0 585099. 2024.56 0.16 0.28 0.06 -1 -1 0.16 0.0262402 0.0230389 140 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 5.23 vpr 53.18 MiB -1 -1 0.24 17424 12 0.37 -1 -1 32264 -1 -1 31 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 14.5 MiB 0.29 1329 53.2 MiB 0.04 0.00 5.28752 -103.836 -5.28752 5.28752 0.59 0.000186273 0.00014754 0.00990526 0.00824012 30 3640 37 6.55708e+06 373705 526063. 1820.29 1.96 0.0943437 0.0838046 21886 126133 -1 2941 51 1313 4517 788610 452704 0 0 788610 452704 4517 2206 0 0 14214 11747 0 0 26182 17772 0 0 4517 2616 0 0 362148 209703 0 0 377032 208660 0 0 4517 0 0 3204 7857 7903 48109 0 0 6.10198 6.10198 -124.116 -6.10198 0 0 666494. 2306.21 0.23 0.19 0.11 -1 -1 0.23 0.0270923 0.0239901 191 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 8.17 vpr 53.70 MiB -1 -1 0.24 17476 13 0.43 -1 -1 32232 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 15.1 MiB 0.56 1579 53.7 MiB 0.08 0.00 6.9587 -147.728 -6.9587 6.9587 1.00 0.000389986 0.000318336 0.0190117 0.0159132 36 4081 27 6.55708e+06 397815 612192. 2118.31 3.60 0.181334 0.160266 22750 144809 -1 3404 21 1709 4771 251029 59698 0 0 251029 59698 4771 2335 0 0 16152 13273 0 0 24694 18567 0 0 4771 2892 0 0 98382 11679 0 0 102259 10952 0 0 4771 0 0 3062 4835 5102 33340 0 0 7.13036 7.13036 -166.054 -7.13036 0 0 782063. 2706.10 0.34 0.10 0.15 -1 -1 0.34 0.0342827 0.0312489 238 235 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 10.09 vpr 53.43 MiB -1 -1 0.22 17520 12 0.29 -1 -1 32708 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 14.8 MiB 0.54 1278 53.4 MiB 0.11 0.00 6.3225 -124.058 -6.3225 6.3225 0.95 0.000332251 0.000272562 0.0283997 0.0233766 38 3379 23 6.55708e+06 385760 638502. 2209.35 5.76 0.276068 0.243342 23326 155178 -1 2601 16 1252 3842 182696 44822 0 0 182696 44822 3842 1614 0 0 12632 10394 0 0 18089 13765 0 0 3842 2017 0 0 72126 8378 0 0 72165 8654 0 0 3842 0 0 2590 4114 4779 32589 0 0 6.5629 6.5629 -142.761 -6.5629 0 0 851065. 2944.86 0.37 0.08 0.15 -1 -1 0.37 0.0246931 0.0226238 200 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 5.73 vpr 52.75 MiB -1 -1 0.18 17220 12 0.20 -1 -1 32092 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 14.1 MiB 0.70 1131 52.8 MiB 0.07 0.00 5.60752 -118.877 -5.60752 5.60752 0.80 0.000256306 0.000209211 0.0156951 0.0130864 28 2998 32 6.55708e+06 241100 500653. 1732.36 1.74 0.0693055 0.0604568 21310 115450 -1 2644 19 1175 3346 219317 48875 0 0 219317 48875 3346 1775 0 0 11425 9409 0 0 18091 13271 0 0 3346 2067 0 0 91713 11232 0 0 91396 11121 0 0 3346 0 0 2171 4041 4135 25489 0 0 6.05112 6.05112 -146.523 -6.05112 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0214302 0.0195142 126 119 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 8.41 vpr 52.83 MiB -1 -1 0.22 17428 12 0.26 -1 -1 32208 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54100 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 14.2 MiB 0.37 1202 52.8 MiB 0.04 0.00 5.65838 -117.036 -5.65838 5.65838 1.00 0.000289568 0.000235127 0.00989307 0.00845692 34 2988 23 6.55708e+06 289320 585099. 2024.56 4.30 0.181561 0.160939 22462 138074 -1 2708 21 1089 3370 271454 92902 0 0 271454 92902 3370 1686 0 0 11738 9541 0 0 19215 14194 0 0 3370 2034 0 0 116621 32882 0 0 117140 32565 0 0 3370 0 0 2281 3851 4449 26981 0 0 6.01898 6.01898 -134.595 -6.01898 0 0 742403. 2568.87 0.32 0.10 0.14 -1 -1 0.32 0.0226436 0.0204626 154 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 8.10 vpr 53.30 MiB -1 -1 0.14 17472 11 0.22 -1 -1 32056 -1 -1 30 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 14.6 MiB 0.14 1424 53.3 MiB 0.10 0.00 5.67264 -114.054 -5.67264 5.67264 1.02 0.000292786 0.000235451 0.024 0.0196709 36 3541 29 6.55708e+06 361650 612192. 2118.31 4.28 0.165786 0.146671 22750 144809 -1 2905 14 1069 3470 198673 44535 0 0 198673 44535 3470 1648 0 0 11753 9443 0 0 17999 13410 0 0 3470 2043 0 0 80561 9056 0 0 81420 8935 0 0 3470 0 0 2401 5076 5458 34537 0 0 6.51404 6.51404 -135.732 -6.51404 0 0 782063. 2706.10 0.35 0.08 0.14 -1 -1 0.35 0.0229923 0.021227 190 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 7.21 vpr 53.01 MiB -1 -1 0.19 17452 11 0.22 -1 -1 32096 -1 -1 27 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54280 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 14.6 MiB 0.12 1199 53.0 MiB 0.04 0.00 5.32672 -100.829 -5.32672 5.32672 0.61 0.000160476 0.000123413 0.00884661 0.00726531 30 2836 50 6.55708e+06 325485 526063. 1820.29 4.32 0.201148 0.177514 21886 126133 -1 2445 25 1084 3820 449528 220146 0 0 449528 220146 3820 1646 0 0 12226 9994 0 0 19997 14461 0 0 3820 2055 0 0 203552 94975 0 0 206113 97015 0 0 3820 0 0 2736 5537 6392 40367 0 0 5.66238 5.66238 -118.823 -5.66238 0 0 666494. 2306.21 0.28 0.16 0.11 -1 -1 0.28 0.0257789 0.0233154 172 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.10 vpr 52.76 MiB -1 -1 0.21 17472 13 0.26 -1 -1 32184 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 14.2 MiB 0.39 1136 52.8 MiB 0.06 0.00 6.2421 -116.725 -6.2421 6.2421 0.88 0.000270963 0.000218952 0.0130421 0.0108789 30 2619 19 6.55708e+06 301375 526063. 1820.29 3.24 0.111202 0.0968121 21886 126133 -1 2309 14 919 2821 132733 31883 0 0 132733 31883 2821 1297 0 0 9083 7480 0 0 12827 9725 0 0 2821 1568 0 0 52237 6007 0 0 52944 5806 0 0 2821 0 0 1902 3202 3171 22344 0 0 6.8431 6.8431 -139.41 -6.8431 0 0 666494. 2306.21 0.31 0.06 0.11 -1 -1 0.31 0.0190877 0.0175649 148 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.08 vpr 53.00 MiB -1 -1 0.20 17452 12 0.26 -1 -1 32040 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54268 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 14.5 MiB 0.25 1327 53.0 MiB 0.08 0.00 5.8809 -127.055 -5.8809 5.8809 0.88 0.000301217 0.000244365 0.0184424 0.0152337 30 3219 17 6.55708e+06 337540 526063. 1820.29 1.40 0.0876331 0.0770758 21886 126133 -1 2680 19 1137 3225 158232 37376 0 0 158232 37376 3225 1721 0 0 10458 8367 0 0 14526 11151 0 0 3225 1993 0 0 61908 7336 0 0 64890 6808 0 0 3225 0 0 2088 3722 3506 23973 0 0 6.2833 6.2833 -149.485 -6.2833 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0232525 0.0212218 174 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 7.19 vpr 53.22 MiB -1 -1 0.16 17588 13 0.40 -1 -1 32128 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 14.5 MiB 0.37 1304 53.2 MiB 0.07 0.00 6.36936 -127.634 -6.36936 6.36936 0.93 0.000302753 0.000244623 0.017287 0.0142342 30 2954 18 6.55708e+06 325485 526063. 1820.29 3.22 0.165353 0.144571 21886 126133 -1 2528 17 1100 3342 154061 36935 0 0 154061 36935 3342 1477 0 0 10866 8604 0 0 15451 11787 0 0 3342 1827 0 0 60465 6566 0 0 60595 6674 0 0 3342 0 0 2242 4046 3871 27253 0 0 6.85016 6.85016 -145.735 -6.85016 0 0 666494. 2306.21 0.27 0.07 0.11 -1 -1 0.27 0.0232765 0.0212792 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.33 vpr 53.18 MiB -1 -1 0.22 17692 14 0.30 -1 -1 32728 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54452 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 14.7 MiB 0.33 1400 53.2 MiB 0.07 0.00 6.76976 -136.855 -6.76976 6.76976 1.00 0.000348915 0.000286567 0.0195585 0.0163838 30 2961 24 6.55708e+06 337540 526063. 1820.29 3.32 0.175577 0.154652 21886 126133 -1 2605 15 1072 3281 155740 36733 0 0 155740 36733 3281 1406 0 0 10798 8696 0 0 14849 11469 0 0 3281 1703 0 0 62600 6682 0 0 60931 6777 0 0 3281 0 0 2209 4371 3989 29442 0 0 7.46142 7.46142 -156.808 -7.46142 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0210899 0.0193278 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 10.89 vpr 53.13 MiB -1 -1 0.24 17628 14 0.32 -1 -1 32236 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 14.6 MiB 0.36 1181 53.1 MiB 0.04 0.00 6.18664 -123.776 -6.18664 6.18664 0.85 0.000179366 0.000146441 0.00925119 0.00778464 28 3525 35 6.55708e+06 301375 500653. 1732.36 6.85 0.140093 0.123343 21310 115450 -1 2747 20 1554 4958 371698 109195 0 0 371698 109195 4958 2649 0 0 16827 13425 0 0 27445 19926 0 0 4958 3004 0 0 161220 37190 0 0 156290 33001 0 0 4958 0 0 3404 9205 7391 48768 0 0 6.97658 6.97658 -148.894 -6.97658 0 0 612192. 2118.31 0.30 0.15 0.09 -1 -1 0.30 0.0351518 0.0326277 175 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.45 vpr 53.55 MiB -1 -1 0.20 17652 13 0.43 -1 -1 32160 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 14.9 MiB 0.40 1332 53.6 MiB 0.05 0.00 6.57056 -128.279 -6.57056 6.57056 0.74 0.000201349 0.000158079 0.0118948 0.00982654 36 3590 41 6.55708e+06 349595 612192. 2118.31 3.60 0.163045 0.143588 22750 144809 -1 3011 16 1311 4074 236306 53514 0 0 236306 53514 4074 1953 0 0 13467 10720 0 0 20711 15335 0 0 4074 2403 0 0 92412 12275 0 0 101568 10828 0 0 4074 0 0 2763 5648 5211 35074 0 0 7.17156 7.17156 -149.181 -7.17156 0 0 782063. 2706.10 0.21 0.07 0.10 -1 -1 0.21 0.0169813 0.0153969 205 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.62 vpr 52.91 MiB -1 -1 0.20 17096 13 0.21 -1 -1 32064 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54176 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 14.3 MiB 0.54 1111 52.9 MiB 0.09 0.00 6.02664 -124.389 -6.02664 6.02664 0.80 0.000998581 0.000599401 0.0286647 0.0244992 28 3051 39 6.55708e+06 289320 500653. 1732.36 1.90 0.127405 0.11425 21310 115450 -1 2501 16 1102 2745 153868 37454 0 0 153868 37454 2745 1612 0 0 9813 7957 0 0 14490 11330 0 0 2745 1943 0 0 60617 7632 0 0 63458 6980 0 0 2745 0 0 1643 2418 2490 17448 0 0 6.47024 6.47024 -143.406 -6.47024 0 0 612192. 2118.31 0.27 0.06 0.10 -1 -1 0.27 0.0194233 0.0177984 147 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.10 vpr 53.45 MiB -1 -1 0.23 17700 13 0.44 -1 -1 32308 -1 -1 32 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54732 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 14.9 MiB 0.31 1418 53.4 MiB 0.04 0.00 6.56856 -134.323 -6.56856 6.56856 0.60 0.000196387 0.000160914 0.00937404 0.0079504 36 3697 41 6.55708e+06 385760 612192. 2118.31 1.73 0.101938 0.0898686 22750 144809 -1 3137 19 1568 4556 255745 58099 0 0 255745 58099 4556 2211 0 0 15447 12727 0 0 23827 17553 0 0 4556 2856 0 0 101175 11702 0 0 106184 11050 0 0 4556 0 0 2988 4538 4843 32179 0 0 6.92916 6.92916 -151.647 -6.92916 0 0 782063. 2706.10 0.32 0.09 0.13 -1 -1 0.32 0.0275998 0.0251132 203 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.70 vpr 53.24 MiB -1 -1 0.22 17776 14 0.40 -1 -1 32296 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 14.6 MiB 0.60 1354 53.2 MiB 0.06 0.00 6.49216 -139.653 -6.49216 6.49216 0.95 0.000314898 0.000258975 0.014657 0.0122872 30 3556 33 6.55708e+06 325485 526063. 1820.29 2.34 0.113969 0.10199 21886 126133 -1 2841 17 1207 3959 197523 45557 0 0 197523 45557 3959 1676 0 0 12724 10485 0 0 18319 13635 0 0 3959 2056 0 0 78557 9056 0 0 80005 8649 0 0 3959 0 0 2752 6126 5476 39663 0 0 6.9195 6.9195 -158.1 -6.9195 0 0 666494. 2306.21 0.31 0.09 0.10 -1 -1 0.31 0.0336064 0.0314336 181 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.36 vpr 53.20 MiB -1 -1 0.16 17428 13 0.29 -1 -1 32152 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 14.6 MiB 0.37 1380 53.2 MiB 0.11 0.00 6.42704 -130.4 -6.42704 6.42704 0.97 0.000507127 0.000362404 0.028902 0.0246343 38 3174 29 6.55708e+06 301375 638502. 2209.35 4.34 0.215069 0.192081 23326 155178 -1 2680 17 1115 3336 171100 38326 0 0 171100 38326 3336 1479 0 0 10625 8564 0 0 15912 11559 0 0 3336 1880 0 0 68721 7485 0 0 69170 7359 0 0 3336 0 0 2221 4126 4001 28032 0 0 6.74844 6.74844 -147.384 -6.74844 0 0 851065. 2944.86 0.37 0.07 0.15 -1 -1 0.37 0.0222298 0.0203337 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 17.14 vpr 53.12 MiB -1 -1 0.24 17716 13 0.29 -1 -1 32328 -1 -1 27 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 14.6 MiB 0.50 1365 53.1 MiB 0.03 0.00 6.25938 -118.558 -6.25938 6.25938 0.92 0.000165503 0.000134626 0.00681547 0.00577453 28 3841 44 6.55708e+06 325485 500653. 1732.36 13.02 0.148686 0.13151 21310 115450 -1 3204 26 1661 5190 510610 170391 0 0 510610 170391 5190 2864 0 0 17492 14173 0 0 28314 20352 0 0 5190 3278 0 0 231363 68705 0 0 223061 61019 0 0 5190 0 0 3529 8307 8562 48844 0 0 6.61998 6.61998 -137.375 -6.61998 0 0 612192. 2118.31 0.28 0.18 0.10 -1 -1 0.28 0.0330932 0.0300348 178 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.93 vpr 53.79 MiB -1 -1 0.19 17876 14 0.47 -1 -1 32296 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55084 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 14.8 MiB 0.36 1469 53.8 MiB 0.13 0.00 7.06464 -143.336 -7.06464 7.06464 0.97 0.000340714 0.000268912 0.0309653 0.0255512 38 3355 24 6.55708e+06 446035 638502. 2209.35 3.04 0.1458 0.12631 23326 155178 -1 2787 15 1340 3805 170987 41559 0 0 170987 41559 3805 1659 0 0 12442 10061 0 0 17750 13642 0 0 3805 2159 0 0 66536 6997 0 0 66649 7041 0 0 3805 0 0 2465 3086 3812 25522 0 0 7.18484 7.18484 -156.435 -7.18484 0 0 851065. 2944.86 0.23 0.04 0.08 -1 -1 0.23 0.0149438 0.0138142 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.74 vpr 53.15 MiB -1 -1 0.26 17720 11 0.35 -1 -1 32200 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 14.5 MiB 0.51 1219 53.2 MiB 0.08 0.00 5.81778 -116.006 -5.81778 5.81778 0.99 0.000322308 0.000263745 0.0195845 0.0163575 30 3010 20 6.55708e+06 349595 526063. 1820.29 2.76 0.134948 0.118298 21886 126133 -1 2581 14 1120 3231 154914 37209 0 0 154914 37209 3231 1459 0 0 10604 8644 0 0 14723 11397 0 0 3231 1773 0 0 60945 7152 0 0 62180 6784 0 0 3231 0 0 2111 3636 3836 26630 0 0 5.89878 5.89878 -128.657 -5.89878 0 0 666494. 2306.21 0.20 0.04 0.07 -1 -1 0.20 0.0136392 0.0126047 177 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 7.42 vpr 52.89 MiB -1 -1 0.11 17244 13 0.13 -1 -1 32284 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54156 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 14.4 MiB 0.38 1022 52.9 MiB 0.09 0.00 5.85758 -132.511 -5.85758 5.85758 0.76 0.000246428 0.000190965 0.0195943 0.0157936 34 3082 46 6.55708e+06 289320 585099. 2024.56 4.15 0.193482 0.171521 22462 138074 -1 2353 17 1042 2672 156093 37343 0 0 156093 37343 2672 1485 0 0 9424 7656 0 0 14514 10976 0 0 2672 1707 0 0 62608 7857 0 0 64203 7662 0 0 2672 0 0 1630 2315 2682 16673 0 0 6.20592 6.20592 -152.765 -6.20592 0 0 742403. 2568.87 0.32 0.06 0.13 -1 -1 0.32 0.0186478 0.017042 138 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.83 vpr 53.19 MiB -1 -1 0.21 17788 14 0.29 -1 -1 32296 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54468 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 14.6 MiB 0.41 1315 53.2 MiB 0.07 0.00 6.7973 -141.369 -6.7973 6.7973 0.76 0.000303414 0.000237015 0.0150749 0.0124317 40 2933 26 6.55708e+06 337540 666494. 2306.21 4.46 0.195102 0.173719 23614 160646 -1 2854 16 1127 3427 192542 44602 0 0 192542 44602 3427 1567 0 0 11976 9616 0 0 19494 14167 0 0 3427 1990 0 0 75877 8850 0 0 78341 8412 0 0 3427 0 0 2300 4383 4045 28621 0 0 7.3591 7.3591 -160.163 -7.3591 0 0 872365. 3018.56 0.23 0.04 0.09 -1 -1 0.23 0.0124684 0.0114636 179 172 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 6.23 vpr 53.72 MiB -1 -1 0.16 17720 15 0.39 -1 -1 32264 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55008 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 15.1 MiB 0.35 1635 53.7 MiB 0.05 0.00 7.65861 -154.57 -7.65861 7.65861 0.92 0.000226461 0.000185656 0.0120877 0.0102047 30 4639 29 6.55708e+06 397815 526063. 1820.29 2.21 0.112227 0.0997032 21886 126133 -1 3716 21 1844 5324 266944 63679 0 0 266944 63679 5324 2710 0 0 17082 14031 0 0 23944 18077 0 0 5324 3178 0 0 105491 13060 0 0 109779 12623 0 0 5324 0 0 3480 5796 5869 39709 0 0 8.10221 8.10221 -179.88 -8.10221 0 0 666494. 2306.21 0.26 0.09 0.12 -1 -1 0.26 0.0292646 0.026397 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.55 vpr 52.80 MiB -1 -1 0.18 17172 11 0.18 -1 -1 32120 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54072 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 14.2 MiB 0.34 1063 52.8 MiB 0.05 0.00 5.34158 -111.815 -5.34158 5.34158 0.99 0.000248059 0.000203863 0.0114541 0.0096047 26 2865 34 6.55708e+06 265210 477104. 1650.88 1.88 0.0778555 0.0687582 21022 109990 -1 2540 20 1105 3337 277798 73676 0 0 277798 73676 3337 1827 0 0 12036 10116 0 0 19740 14641 0 0 3337 2099 0 0 119477 22950 0 0 119871 22043 0 0 3337 0 0 2232 4958 4661 29226 0 0 5.98178 5.98178 -138.978 -5.98178 0 0 585099. 2024.56 0.18 0.06 0.10 -1 -1 0.18 0.0122573 0.0110566 129 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.90 vpr 53.05 MiB -1 -1 0.20 17212 12 0.24 -1 -1 32008 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 14.4 MiB 0.32 1303 53.1 MiB 0.05 0.00 5.73678 -124.456 -5.73678 5.73678 0.87 0.00017375 0.000143492 0.0104716 0.00877886 36 3232 24 6.55708e+06 313430 612192. 2118.31 3.10 0.105709 0.0931289 22750 144809 -1 2806 16 1186 3320 189039 42740 0 0 189039 42740 3320 1750 0 0 11018 8951 0 0 17265 12676 0 0 3320 2123 0 0 77185 8564 0 0 76931 8676 0 0 3320 0 0 2134 3242 3823 23419 0 0 6.04392 6.04392 -144.786 -6.04392 0 0 782063. 2706.10 0.34 0.07 0.14 -1 -1 0.34 0.0198019 0.0181563 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 4.73 vpr 53.48 MiB -1 -1 0.24 17768 12 0.40 -1 -1 32152 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 14.8 MiB 0.33 1480 53.5 MiB 0.07 0.00 5.87124 -132.597 -5.87124 5.87124 0.80 0.000205752 0.000161192 0.0175785 0.0144185 30 3833 50 6.55708e+06 385760 526063. 1820.29 1.19 0.0802169 0.0694151 21886 126133 -1 3077 17 1558 4625 228675 53466 0 0 228675 53466 4625 2064 0 0 14971 12354 0 0 21308 16093 0 0 4625 2528 0 0 92445 10127 0 0 90701 10300 0 0 4625 0 0 3067 5098 5993 37521 0 0 6.11164 6.11164 -150.79 -6.11164 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0291463 0.0267879 213 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 8.22 vpr 53.30 MiB -1 -1 0.25 17588 12 0.32 -1 -1 32152 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 14.7 MiB 0.35 1399 53.3 MiB 0.04 0.00 6.1611 -131.692 -6.1611 6.1611 0.59 0.000170547 0.000135378 0.00823001 0.00680704 42 3648 48 6.55708e+06 313430 701300. 2426.64 4.68 0.250763 0.221872 23902 167433 -1 3016 29 1278 4059 633979 317690 0 0 633979 317690 4059 1964 0 0 14246 11647 0 0 26456 18856 0 0 4059 2474 0 0 281051 137327 0 0 304108 145422 0 0 4059 0 0 2781 5766 5741 35835 0 0 6.4825 6.4825 -147.182 -6.4825 0 0 896083. 3100.63 0.38 0.24 0.15 -1 -1 0.38 0.0346545 0.0313829 181 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 8.87 vpr 53.71 MiB -1 -1 0.24 17852 14 0.56 -1 -1 32300 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55000 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 15.0 MiB 0.71 1590 53.7 MiB 0.05 0.00 7.45681 -149.023 -7.45681 7.45681 0.82 0.000224299 0.000169687 0.0122427 0.0102106 38 3964 23 6.55708e+06 373705 638502. 2209.35 4.30 0.198096 0.174113 23326 155178 -1 3459 29 1581 5267 511764 223794 0 0 511764 223794 5267 2166 0 0 16926 14130 0 0 27338 19670 0 0 5267 2825 0 0 228947 93851 0 0 228019 91152 0 0 5267 0 0 3686 6632 7221 45132 0 0 7.69922 7.69922 -164.445 -7.69922 0 0 851065. 2944.86 0.24 0.15 0.09 -1 -1 0.24 0.0328488 0.0297853 234 232 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 6.26 vpr 53.20 MiB -1 -1 0.22 17488 12 0.28 -1 -1 32276 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 14.6 MiB 0.59 1295 53.2 MiB 0.08 0.00 6.13918 -117.757 -6.13918 6.13918 0.78 0.000314065 0.000260788 0.0200371 0.0167237 28 3840 38 6.55708e+06 301375 500653. 1732.36 2.28 0.0815038 0.0715533 21310 115450 -1 3224 22 1351 4234 330087 69544 0 0 330087 69544 4234 2432 0 0 14328 11841 0 0 22651 16635 0 0 4234 2873 0 0 142469 18282 0 0 142171 17481 0 0 4234 0 0 2883 6254 6288 38263 0 0 6.31284 6.31284 -134.771 -6.31284 0 0 612192. 2118.31 0.27 0.12 0.10 -1 -1 0.27 0.024934 0.0225549 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.95 vpr 52.80 MiB -1 -1 0.19 17148 11 0.23 -1 -1 32024 -1 -1 26 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54064 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 14.3 MiB 0.37 995 52.8 MiB 0.08 0.00 5.54984 -99.8768 -5.54984 5.54984 1.01 0.000279581 0.000230189 0.0200968 0.0168126 30 2509 32 6.55708e+06 313430 526063. 1820.29 3.01 0.109981 0.095538 21886 126133 -1 2077 14 861 2578 121083 29684 0 0 121083 29684 2578 1284 0 0 8269 6766 0 0 11679 8789 0 0 2578 1494 0 0 47447 5795 0 0 48532 5556 0 0 2578 0 0 1717 2615 2927 19429 0 0 5.99144 5.99144 -117.03 -5.99144 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0174001 0.0160325 140 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.44 vpr 53.75 MiB -1 -1 0.26 17956 13 0.40 -1 -1 32376 -1 -1 40 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55044 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 15.6 MiB 0.55 1850 53.8 MiB 0.06 0.00 6.5217 -134.01 -6.5217 6.5217 0.60 0.000243001 0.000199223 0.0148068 0.0122903 38 4809 50 6.55708e+06 482200 638502. 2209.35 5.41 0.200656 0.178226 23326 155178 -1 3726 17 1852 6072 288807 68052 0 0 288807 68052 6072 2525 0 0 19523 15915 0 0 27675 20873 0 0 6072 3200 0 0 110784 13441 0 0 118681 12098 0 0 6072 0 0 4220 7971 8085 55492 0 0 6.8013 6.8013 -151.312 -6.8013 0 0 851065. 2944.86 0.35 0.11 0.12 -1 -1 0.35 0.0364648 0.0335062 286 285 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.99 vpr 53.21 MiB -1 -1 0.25 17736 14 0.34 -1 -1 32568 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 14.6 MiB 0.27 1321 53.2 MiB 0.11 0.00 6.68876 -132.38 -6.68876 6.68876 1.00 0.000320672 0.000261783 0.0274476 0.0227652 34 3832 41 6.55708e+06 337540 585099. 2024.56 1.95 0.118571 0.103341 22462 138074 -1 2888 17 1277 3380 193742 45462 0 0 193742 45462 3380 1778 0 0 11742 9515 0 0 18285 13700 0 0 3380 2163 0 0 76752 9417 0 0 80203 8889 0 0 3380 0 0 2103 3046 3469 22484 0 0 7.28976 7.28976 -157.072 -7.28976 0 0 742403. 2568.87 0.22 0.08 0.12 -1 -1 0.22 0.0231938 0.0210795 188 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 8.05 vpr 52.71 MiB -1 -1 0.22 17592 12 0.21 -1 -1 32112 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53976 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 14.2 MiB 0.39 1169 52.7 MiB 0.06 0.00 5.95024 -129.421 -5.95024 5.95024 0.98 0.000279393 0.000229883 0.0125207 0.0105973 28 2949 18 6.55708e+06 325485 500653. 1732.36 4.15 0.124749 0.110054 21310 115450 -1 2563 16 1039 2874 164174 38256 0 0 164174 38256 2874 1505 0 0 9982 7949 0 0 15193 11464 0 0 2874 1726 0 0 66720 7940 0 0 66531 7672 0 0 2874 0 0 1835 3039 3058 20538 0 0 6.22984 6.22984 -146.616 -6.22984 0 0 612192. 2118.31 0.27 0.08 0.10 -1 -1 0.27 0.0198877 0.0182909 145 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 5.92 vpr 53.09 MiB -1 -1 0.23 17436 13 0.36 -1 -1 32188 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 14.5 MiB 0.55 1363 53.1 MiB 0.06 0.00 6.4825 -135.398 -6.4825 6.4825 0.98 0.000300291 0.00025021 0.014771 0.0124146 28 3348 46 6.55708e+06 313430 500653. 1732.36 1.65 0.116249 0.103073 21310 115450 -1 2948 20 1198 3594 208794 48344 0 0 208794 48344 3594 1794 0 0 12402 9948 0 0 18955 14292 0 0 3594 2128 0 0 85569 10042 0 0 84680 10140 0 0 3594 0 0 2396 4673 4862 29791 0 0 7.0443 7.0443 -153.736 -7.0443 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0262198 0.023951 169 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 8.19 vpr 53.55 MiB -1 -1 0.25 17732 13 0.43 -1 -1 32308 -1 -1 35 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 15.1 MiB 0.34 1793 53.6 MiB 0.05 0.00 6.5197 -138.073 -6.5197 6.5197 0.67 0.000194039 0.000157239 0.0106389 0.00886743 36 4477 30 6.55708e+06 421925 612192. 2118.31 4.27 0.117441 0.103191 22750 144809 -1 3769 17 1457 4428 269135 58607 0 0 269135 58607 4428 2106 0 0 15013 11743 0 0 23032 17054 0 0 4428 2606 0 0 109513 12993 0 0 112721 12105 0 0 4428 0 0 2971 5864 5631 38094 0 0 6.9613 6.9613 -158.522 -6.9613 0 0 782063. 2706.10 0.33 0.10 0.14 -1 -1 0.33 0.0305485 0.0281228 233 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 8.61 vpr 53.24 MiB -1 -1 0.21 17548 11 0.34 -1 -1 32192 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1443 53.2 MiB 0.07 0.00 5.31404 -109.502 -5.31404 5.31404 1.01 0.00038267 0.000313538 0.0177626 0.0148594 36 3678 42 6.55708e+06 373705 612192. 2118.31 4.45 0.210296 0.184963 22750 144809 -1 3153 20 1355 4842 300118 65190 0 0 300118 65190 4842 2381 0 0 16206 13533 0 0 26252 19020 0 0 4842 2949 0 0 120057 14193 0 0 127919 13114 0 0 4842 0 0 3487 8073 8006 50028 0 0 5.67464 5.67464 -125.507 -5.67464 0 0 782063. 2706.10 0.35 0.11 0.14 -1 -1 0.35 0.0292809 0.026654 199 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.28 vpr 53.45 MiB -1 -1 0.25 17852 15 0.48 -1 -1 32336 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54736 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 14.9 MiB 0.68 1529 53.5 MiB 0.08 0.00 7.33722 -153.781 -7.33722 7.33722 1.00 0.000388415 0.000322462 0.0207224 0.0173232 30 3689 41 6.55708e+06 349595 526063. 1820.29 1.71 0.107175 0.0942174 21886 126133 -1 3027 16 1359 4338 207750 48920 0 0 207750 48920 4338 1871 0 0 13963 11440 0 0 20174 15121 0 0 4338 2177 0 0 83561 8988 0 0 81376 9323 0 0 4338 0 0 2979 5296 5642 37745 0 0 7.57761 7.57761 -171.801 -7.57761 0 0 666494. 2306.21 0.26 0.05 0.12 -1 -1 0.26 0.015118 0.0138672 202 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 6.26 vpr 53.35 MiB -1 -1 0.24 17960 13 0.43 -1 -1 32156 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 14.8 MiB 0.58 1400 53.4 MiB 0.06 0.00 6.7601 -144.101 -6.7601 6.7601 0.96 0.000337716 0.000275939 0.0148853 0.0125193 34 3560 23 6.55708e+06 361650 585099. 2024.56 1.85 0.112965 0.100115 22462 138074 -1 3067 17 1394 4241 238850 55392 0 0 238850 55392 4241 2132 0 0 14598 11791 0 0 23353 17078 0 0 4241 2542 0 0 95466 11092 0 0 96951 10757 0 0 4241 0 0 2847 5413 5655 36592 0 0 7.0815 7.0815 -163.573 -7.0815 0 0 742403. 2568.87 0.33 0.09 0.12 -1 -1 0.33 0.0318059 0.0295032 194 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.85 vpr 53.07 MiB -1 -1 0.17 17164 12 0.26 -1 -1 32120 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54340 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 14.4 MiB 0.60 1134 53.1 MiB 0.07 0.00 6.1611 -125.432 -6.1611 6.1611 0.95 0.000266301 0.000218127 0.0154011 0.0129293 30 2779 29 6.55708e+06 349595 526063. 1820.29 2.67 0.10645 0.0919373 21886 126133 -1 2400 17 1088 3117 150749 35955 0 0 150749 35955 3117 1485 0 0 10082 8270 0 0 14275 10846 0 0 3117 1870 0 0 60217 6785 0 0 59941 6699 0 0 3117 0 0 2029 2706 2843 19885 0 0 6.4407 6.4407 -142.527 -6.4407 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0193702 0.0176273 157 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.84 vpr 52.84 MiB -1 -1 0.13 17452 11 0.21 -1 -1 32120 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54112 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 14.3 MiB 0.25 1059 52.8 MiB 0.07 0.00 5.51064 -114.131 -5.51064 5.51064 0.79 0.000275021 0.000222753 0.0172762 0.0142333 32 3266 40 6.55708e+06 253155 554710. 1919.41 3.41 0.142538 0.123312 22174 131602 -1 2681 27 1624 4535 362931 110790 0 0 362931 110790 4535 2516 0 0 15971 13083 0 0 28197 20096 0 0 4535 3150 0 0 155910 36494 0 0 153783 35451 0 0 4535 0 0 2911 5080 5139 31647 0 0 6.22218 6.22218 -142.909 -6.22218 0 0 701300. 2426.64 0.29 0.15 0.12 -1 -1 0.29 0.029033 0.0261503 145 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 8.34 vpr 53.43 MiB -1 -1 0.20 17548 13 0.43 -1 -1 32300 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54716 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 14.9 MiB 0.60 1313 53.4 MiB 0.08 0.00 6.4805 -129.871 -6.4805 6.4805 0.95 0.000332079 0.000266727 0.0198652 0.0164747 38 3103 27 6.55708e+06 349595 638502. 2209.35 4.19 0.216053 0.190475 23326 155178 -1 2638 17 1294 4309 192975 46423 0 0 192975 46423 4309 1699 0 0 13891 11249 0 0 19604 14788 0 0 4309 2167 0 0 74789 8387 0 0 76073 8133 0 0 4309 0 0 3015 5755 5484 40029 0 0 6.7209 6.7209 -143.139 -6.7209 0 0 851065. 2944.86 0.22 0.04 0.09 -1 -1 0.22 0.0142452 0.0130698 203 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.30 vpr 52.73 MiB -1 -1 0.13 17172 10 0.20 -1 -1 32164 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54000 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 14.3 MiB 0.23 889 52.7 MiB 0.05 0.00 4.89172 -95.2749 -4.89172 4.89172 0.73 0.000131975 0.000105769 0.0114009 0.00934159 30 2728 31 6.55708e+06 289320 526063. 1820.29 2.16 0.0777292 0.0667181 21886 126133 -1 1864 21 1084 3647 166359 40711 0 0 166359 40711 3647 1503 0 0 11450 9517 0 0 16880 12258 0 0 3647 1841 0 0 63848 7930 0 0 66887 7662 0 0 3647 0 0 2563 4449 4609 32660 0 0 5.21312 5.21312 -112.058 -5.21312 0 0 666494. 2306.21 0.19 0.04 0.07 -1 -1 0.19 0.0112697 0.0101557 137 130 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 8.24 vpr 52.85 MiB -1 -1 0.20 17316 14 0.25 -1 -1 32092 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54120 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 14.3 MiB 0.66 1126 52.9 MiB 0.06 0.00 6.58503 -136.393 -6.58503 6.58503 0.95 0.000278623 0.000224955 0.0133399 0.010917 34 3082 37 6.55708e+06 289320 585099. 2024.56 4.07 0.171076 0.150242 22462 138074 -1 2524 17 1223 3572 199143 48270 0 0 199143 48270 3572 1778 0 0 12296 10104 0 0 19585 14334 0 0 3572 2216 0 0 82878 9632 0 0 77240 10206 0 0 3572 0 0 2349 3725 4817 27715 0 0 6.70924 6.70924 -153.326 -6.70924 0 0 742403. 2568.87 0.32 0.06 0.09 -1 -1 0.32 0.0151385 0.0137335 146 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 4.26 vpr 53.18 MiB -1 -1 0.16 17868 13 0.36 -1 -1 32216 -1 -1 30 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54452 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 14.6 MiB 0.26 1236 53.2 MiB 0.06 0.00 6.10764 -127.964 -6.10764 6.10764 0.70 0.000294783 0.000230696 0.0149767 0.0123489 30 3031 16 6.55708e+06 361650 526063. 1820.29 1.17 0.0845553 0.0746626 21886 126133 -1 2674 14 1167 3324 157974 38276 0 0 157974 38276 3324 1625 0 0 10899 8805 0 0 14819 11464 0 0 3324 1948 0 0 61759 7447 0 0 63849 6987 0 0 3324 0 0 2157 3364 3420 23877 0 0 6.51004 6.51004 -151.536 -6.51004 0 0 666494. 2306.21 0.19 0.04 0.07 -1 -1 0.19 0.0115549 0.0106468 180 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 7.32 vpr 52.71 MiB -1 -1 0.20 17248 12 0.20 -1 -1 32144 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53980 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 14.3 MiB 0.40 1067 52.7 MiB 0.08 0.00 5.24892 -114.596 -5.24892 5.24892 0.85 0.000266233 0.000219462 0.0189659 0.0155394 34 2839 42 6.55708e+06 313430 585099. 2024.56 3.51 0.156967 0.136638 22462 138074 -1 2178 35 1196 3495 348322 142821 0 0 348322 142821 3495 1588 0 0 11941 9604 0 0 21493 15105 0 0 3495 1991 0 0 156033 58387 0 0 151865 56146 0 0 3495 0 0 2299 3374 4498 25846 0 0 5.69052 5.69052 -132.511 -5.69052 0 0 742403. 2568.87 0.29 0.14 0.12 -1 -1 0.29 0.031124 0.0278999 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 7.96 vpr 53.35 MiB -1 -1 0.24 17436 12 0.26 -1 -1 32212 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 14.9 MiB 0.40 1430 53.4 MiB 0.07 0.00 5.67264 -123.683 -5.67264 5.67264 1.01 0.000375179 0.000293642 0.018912 0.0158189 34 3802 45 6.55708e+06 313430 585099. 2024.56 3.99 0.150176 0.133422 22462 138074 -1 3121 16 1206 3859 243682 54056 0 0 243682 54056 3859 1907 0 0 13700 11034 0 0 21408 15930 0 0 3859 2297 0 0 99540 11855 0 0 101316 11033 0 0 3859 0 0 2653 6624 6908 41976 0 0 6.15344 6.15344 -146.405 -6.15344 0 0 742403. 2568.87 0.20 0.08 0.07 -1 -1 0.20 0.0220154 0.0201075 195 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.82 vpr 53.29 MiB -1 -1 0.16 17848 13 0.41 -1 -1 32264 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54572 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 14.8 MiB 0.64 1307 53.3 MiB 0.06 0.00 6.5981 -129.393 -6.5981 6.5981 0.73 0.000240846 0.000204081 0.0146285 0.0121778 36 3475 28 6.55708e+06 349595 612192. 2118.31 3.68 0.160381 0.14245 22750 144809 -1 2836 15 1281 3881 213326 50083 0 0 213326 50083 3881 1861 0 0 13210 10798 0 0 20096 15168 0 0 3881 2219 0 0 84003 10436 0 0 88255 9601 0 0 3881 0 0 2600 4972 5328 34381 0 0 6.8385 6.8385 -146.163 -6.8385 0 0 782063. 2706.10 0.33 0.08 0.14 -1 -1 0.33 0.0250068 0.0230326 193 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.76 vpr 52.75 MiB -1 -1 0.20 17492 11 0.15 -1 -1 31892 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 14.2 MiB 0.25 1110 52.8 MiB 0.09 0.00 5.45012 -121.16 -5.45012 5.45012 0.79 0.000242672 0.000194983 0.0200147 0.016433 30 3019 24 6.55708e+06 301375 526063. 1820.29 3.42 0.149727 0.132085 21886 126133 -1 2445 17 1019 2970 153900 36262 0 0 153900 36262 2970 1545 0 0 9721 7849 0 0 13886 10606 0 0 2970 1820 0 0 61927 7408 0 0 62426 7034 0 0 2970 0 0 1951 3313 3222 21998 0 0 5.69052 5.69052 -140.835 -5.69052 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0185813 0.0169817 148 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.20 vpr 53.11 MiB -1 -1 0.21 17432 13 0.27 -1 -1 32156 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54384 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 14.4 MiB 0.38 1213 53.1 MiB 0.06 0.00 6.2813 -133.177 -6.2813 6.2813 0.60 0.000154302 0.00012472 0.0134316 0.0110179 36 3172 25 6.55708e+06 289320 612192. 2118.31 1.74 0.0928409 0.0812749 22750 144809 -1 2623 17 1066 2995 175416 40542 0 0 175416 40542 2995 1541 0 0 10213 8278 0 0 15768 11906 0 0 2995 1812 0 0 70522 8846 0 0 72923 8159 0 0 2995 0 0 1929 3301 3496 22449 0 0 6.4015 6.4015 -149.131 -6.4015 0 0 782063. 2706.10 0.32 0.07 0.12 -1 -1 0.32 0.0214172 0.0196666 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.87 vpr 53.11 MiB -1 -1 0.21 17440 13 0.29 -1 -1 32308 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54380 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 14.7 MiB 0.88 1353 53.1 MiB 0.07 0.00 6.4779 -141.216 -6.4779 6.4779 0.95 0.000336457 0.00026838 0.0188887 0.0157081 30 3565 27 6.55708e+06 337540 526063. 1820.29 1.38 0.0841133 0.0741654 21886 126133 -1 2903 21 1388 3942 197590 47294 0 0 197590 47294 3942 1887 0 0 12875 10483 0 0 18075 13839 0 0 3942 2301 0 0 77892 9702 0 0 80864 9082 0 0 3942 0 0 2554 4208 4264 28504 0 0 7.1181 7.1181 -163.937 -7.1181 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0266021 0.0241253 193 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 5.33 vpr 52.98 MiB -1 -1 0.22 17636 11 0.22 -1 -1 32152 -1 -1 27 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54248 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 14.4 MiB 0.25 1166 53.0 MiB 0.03 0.00 5.08892 -102.906 -5.08892 5.08892 0.62 0.000147755 0.000119841 0.00678901 0.00569313 36 2822 30 6.55708e+06 325485 612192. 2118.31 1.82 0.086771 0.0769251 22750 144809 -1 2381 16 928 2837 155209 35637 0 0 155209 35637 2837 1325 0 0 9493 7572 0 0 14732 10883 0 0 2837 1614 0 0 62174 7064 0 0 63136 7179 0 0 2837 0 0 1909 3776 4132 26368 0 0 5.58398 5.58398 -117.885 -5.58398 0 0 782063. 2706.10 0.34 0.06 0.14 -1 -1 0.34 0.0212321 0.0195184 160 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.41 vpr 53.67 MiB -1 -1 0.26 17960 14 0.39 -1 -1 32232 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54956 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 15.1 MiB 0.45 1605 53.7 MiB 0.03 0.00 7.0377 -151.842 -7.0377 7.0377 0.60 0.00024404 0.000196372 0.00790932 0.00671271 34 4371 27 6.55708e+06 421925 585099. 2024.56 1.59 0.080737 0.0712751 22462 138074 -1 3759 34 1793 5454 463890 164916 0 0 463890 164916 5454 2674 0 0 18658 15247 0 0 31833 22455 0 0 5454 3252 0 0 203209 63175 0 0 199282 58113 0 0 5454 0 0 3661 7156 6661 46806 0 0 7.1971 7.1971 -169.83 -7.1971 0 0 742403. 2568.87 0.31 0.19 0.13 -1 -1 0.31 0.0488804 0.0439864 224 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.60 vpr 52.84 MiB -1 -1 0.19 17336 12 0.19 -1 -1 32024 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54104 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 14.4 MiB 0.32 1156 52.8 MiB 0.05 0.00 5.57998 -121.761 -5.57998 5.57998 0.82 0.000258812 0.000211473 0.0116434 0.00962528 36 2690 47 6.55708e+06 337540 612192. 2118.31 2.89 0.120084 0.105781 22750 144809 -1 2273 19 1043 2689 153836 35375 0 0 153836 35375 2689 1420 0 0 9166 7410 0 0 14693 10713 0 0 2689 1705 0 0 62594 7062 0 0 62005 7065 0 0 2689 0 0 1646 2145 2581 16723 0 0 5.82038 5.82038 -136.665 -5.82038 0 0 782063. 2706.10 0.33 0.06 0.14 -1 -1 0.33 0.0195454 0.0176169 138 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.30 vpr 53.36 MiB -1 -1 0.26 17624 13 0.39 -1 -1 32568 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54640 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 14.9 MiB 0.56 1307 53.4 MiB 0.06 0.00 6.3969 -131.553 -6.3969 6.3969 0.77 0.000310041 0.000252248 0.0137975 0.0116715 30 3707 34 6.55708e+06 301375 526063. 1820.29 5.19 0.164708 0.14489 21886 126133 -1 3008 20 1402 4381 217912 51411 0 0 217912 51411 4381 1901 0 0 13850 11390 0 0 20116 14863 0 0 4381 2298 0 0 87013 10636 0 0 88171 10323 0 0 4381 0 0 2979 5587 6240 40393 0 0 6.5171 6.5171 -148.42 -6.5171 0 0 666494. 2306.21 0.29 0.10 0.10 -1 -1 0.29 0.0334677 0.030786 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 7.56 vpr 52.93 MiB -1 -1 0.22 17416 13 0.23 -1 -1 31864 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54204 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 14.4 MiB 0.34 1197 52.9 MiB 0.07 0.00 6.3205 -136.346 -6.3205 6.3205 0.91 0.000271223 0.000213127 0.0164093 0.0134132 28 3457 38 6.55708e+06 313430 500653. 1732.36 4.15 0.142397 0.124603 21310 115450 -1 2818 29 1214 3284 273116 89732 0 0 273116 89732 3284 1820 0 0 11333 9106 0 0 17788 13297 0 0 3284 2102 0 0 119354 33095 0 0 118073 30312 0 0 3284 0 0 2070 3029 3338 21561 0 0 6.3205 6.3205 -152.823 -6.3205 0 0 612192. 2118.31 0.20 0.10 0.06 -1 -1 0.20 0.026406 0.0237191 151 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 12.23 vpr 53.18 MiB -1 -1 0.22 17596 12 0.28 -1 -1 32252 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54452 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 14.6 MiB 0.31 1319 53.2 MiB 0.04 0.00 6.07244 -127.971 -6.07244 6.07244 0.79 0.000172852 0.000140438 0.00931849 0.00782077 28 3698 31 6.55708e+06 313430 500653. 1732.36 8.75 0.132795 0.116585 21310 115450 -1 2889 20 1197 3722 289014 86004 0 0 289014 86004 3722 1848 0 0 12650 10380 0 0 19881 14623 0 0 3722 2145 0 0 126325 28560 0 0 122714 28448 0 0 3722 0 0 2525 5406 5944 35503 0 0 6.31284 6.31284 -147.835 -6.31284 0 0 612192. 2118.31 0.20 0.11 0.07 -1 -1 0.20 0.0264957 0.0241501 176 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 8.87 vpr 53.98 MiB -1 -1 0.25 18376 15 0.46 -1 -1 32596 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55272 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 15.4 MiB 0.30 1764 54.0 MiB 0.16 0.00 7.2801 -147.709 -7.2801 7.2801 0.98 0.000460265 0.000373076 0.041761 0.0344911 42 5077 50 6.55708e+06 433980 701300. 2426.64 4.40 0.276323 0.240869 23902 167433 -1 3840 24 2069 7006 431271 107728 0 0 431271 107728 7006 2877 0 0 23202 19088 0 0 38351 27002 0 0 7006 3739 0 0 176256 27114 0 0 179450 27908 0 0 7006 0 0 4937 11325 11257 71987 0 0 7.67024 7.67024 -166.252 -7.67024 0 0 896083. 3100.63 0.41 0.17 0.15 -1 -1 0.41 0.0512028 0.0470276 256 255 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 7.13 vpr 52.23 MiB -1 -1 0.17 16908 10 0.12 -1 -1 31968 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53488 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 13.7 MiB 0.13 808 52.2 MiB 0.05 0.00 4.56326 -103.904 -4.56326 4.56326 0.96 0.000183252 0.000150054 0.00949961 0.00790747 26 2235 28 6.55708e+06 216990 477104. 1650.88 3.78 0.0924082 0.0805871 21022 109990 -1 1824 26 801 2035 119569 28520 0 0 119569 28520 2035 1204 0 0 7177 5825 0 0 11201 8314 0 0 2035 1375 0 0 48590 6005 0 0 48531 5797 0 0 2035 0 0 1234 1464 1842 11891 0 0 4.84286 4.84286 -120.448 -4.84286 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.016391 0.0145643 90 81 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 12.79 vpr 52.99 MiB -1 -1 0.22 17472 13 0.18 -1 -1 32204 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54260 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 14.4 MiB 0.21 1023 53.0 MiB 0.03 0.00 6.05678 -122.123 -6.05678 6.05678 0.82 0.000155289 0.000127007 0.00791426 0.00658564 28 3394 40 6.55708e+06 301375 500653. 1732.36 9.60 0.13825 0.122608 21310 115450 -1 2574 16 1069 2884 180281 43029 0 0 180281 43029 2884 1635 0 0 10181 8312 0 0 15806 12123 0 0 2884 1946 0 0 74253 9340 0 0 74273 9673 0 0 2884 0 0 1815 2346 2930 17957 0 0 6.21618 6.21618 -141.615 -6.21618 0 0 612192. 2118.31 0.18 0.04 0.06 -1 -1 0.18 0.0104347 0.00953629 143 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 9.16 vpr 53.05 MiB -1 -1 0.22 17612 12 0.19 -1 -1 32104 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 14.5 MiB 0.28 1248 53.1 MiB 0.05 0.00 6.46824 -134.482 -6.46824 6.46824 0.68 0.000163994 0.000133179 0.0110993 0.00928797 28 3554 28 6.55708e+06 289320 500653. 1732.36 5.75 0.151392 0.131813 21310 115450 -1 2878 16 1235 3276 191988 44553 0 0 191988 44553 3276 1848 0 0 11029 8912 0 0 17099 12921 0 0 3276 2165 0 0 78309 9572 0 0 78999 9135 0 0 3276 0 0 2041 3525 3541 22755 0 0 6.99084 6.99084 -156.606 -6.99084 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.021333 0.0195494 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.31 vpr 52.47 MiB -1 -1 0.18 17232 9 0.16 -1 -1 31928 -1 -1 22 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53732 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 14.1 MiB 0.21 812 52.5 MiB 0.04 0.00 4.28106 -80.808 -4.28106 4.28106 0.99 0.000209996 0.000171498 0.00916832 0.00770293 26 2476 34 6.55708e+06 265210 477104. 1650.88 1.77 0.0681205 0.0599615 21022 109990 -1 1949 19 883 2478 146123 34173 0 0 146123 34173 2478 1347 0 0 8527 6904 0 0 13361 9767 0 0 2478 1545 0 0 59479 7280 0 0 59800 7330 0 0 2478 0 0 1595 2647 2787 18257 0 0 4.76186 4.76186 -97.0068 -4.76186 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.0143197 0.0128741 111 102 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 5.36 vpr 53.38 MiB -1 -1 0.23 17764 12 0.32 -1 -1 32304 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1597 53.4 MiB 0.06 0.00 5.8025 -131.877 -5.8025 5.8025 0.65 0.000191119 0.0001574 0.0137772 0.0115068 34 3936 31 6.55708e+06 397815 585099. 2024.56 2.22 0.0981156 0.0861148 22462 138074 -1 3433 20 1538 4446 277469 63161 0 0 277469 63161 4446 2256 0 0 15975 13117 0 0 24646 18794 0 0 4446 2647 0 0 113241 13434 0 0 114715 12913 0 0 4446 0 0 2908 5027 5403 33314 0 0 6.39184 6.39184 -152.688 -6.39184 0 0 742403. 2568.87 0.20 0.06 0.07 -1 -1 0.20 0.0156756 0.0142842 212 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 14.75 vpr 53.36 MiB -1 -1 0.27 18076 13 0.42 -1 -1 32196 -1 -1 30 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54640 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 14.8 MiB 0.33 1360 53.4 MiB 0.06 0.00 7.01016 -140.144 -7.01016 7.01016 0.74 0.000191282 0.000155108 0.0144122 0.0119065 38 3457 25 6.55708e+06 361650 638502. 2209.35 11.06 0.28275 0.25043 23326 155178 -1 2862 15 1235 3976 188218 44403 0 0 188218 44403 3976 1751 0 0 12590 10251 0 0 18551 13655 0 0 3976 2105 0 0 74298 8337 0 0 74827 8304 0 0 3976 0 0 2741 4693 4849 35509 0 0 7.49096 7.49096 -158.825 -7.49096 0 0 851065. 2944.86 0.34 0.07 0.14 -1 -1 0.34 0.0251757 0.023276 200 197 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 8.33 vpr 53.35 MiB -1 -1 0.16 17576 1 0.01 -1 -1 29720 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54628 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 15.0 MiB 0.30 1046 53.3 MiB 0.08 0.00 4.42712 -130.161 -4.42712 4.42712 1.01 0.000236227 0.000193201 0.0127809 0.0106588 26 3343 40 6.64007e+06 401856 477104. 1650.88 4.98 0.123532 0.10809 21682 110474 -1 2375 21 1581 2445 161318 41786 0 0 161318 41786 2445 1885 0 0 8965 7293 0 0 13438 10482 0 0 2445 2027 0 0 65702 9670 0 0 68323 10429 0 0 2445 0 0 864 1144 904 8001 0 0 4.73068 4.73068 -161.841 -4.73068 0 0 585099. 2024.56 0.17 0.04 0.06 -1 -1 0.17 0.0101444 0.00907046 154 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.05 vpr 53.59 MiB -1 -1 0.16 17352 1 0.01 -1 -1 29712 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54876 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 14.9 MiB 0.16 937 53.6 MiB 0.06 0.00 3.90562 -118.037 -3.90562 3.90562 0.80 0.000143519 0.000117801 0.0118306 0.00983148 32 2464 30 6.64007e+06 301392 554710. 1919.41 1.23 0.0753823 0.0658953 22834 132086 -1 2046 23 1763 2677 218325 54384 0 0 218325 54384 2677 2156 0 0 9689 8130 0 0 15075 11331 0 0 2677 2378 0 0 100567 14852 0 0 87640 15537 0 0 2677 0 0 914 917 773 7109 0 0 4.41709 4.41709 -143.021 -4.41709 0 0 701300. 2426.64 0.21 0.05 0.10 -1 -1 0.21 0.0108524 0.00963557 139 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 6.39 vpr 53.19 MiB -1 -1 0.16 17560 1 0.02 -1 -1 29836 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 14.7 MiB 0.25 1048 53.2 MiB 0.07 0.00 3.51556 -106.006 -3.51556 3.51556 1.01 0.000202977 0.000163394 0.0106823 0.0089445 26 2658 25 6.64007e+06 288834 477104. 1650.88 2.86 0.0865275 0.0745667 21682 110474 -1 2235 20 1330 1872 130885 30398 0 0 130885 30398 1872 1474 0 0 6888 5717 0 0 10194 7960 0 0 1872 1603 0 0 54701 6832 0 0 55358 6812 0 0 1872 0 0 542 566 681 4967 0 0 3.86422 3.86422 -124.693 -3.86422 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0155876 0.0140174 126 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.10 vpr 53.00 MiB -1 -1 0.15 17276 1 0.01 -1 -1 29732 -1 -1 27 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54276 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 14.6 MiB 0.06 934 53.0 MiB 0.09 0.00 3.59876 -97.8405 -3.59876 3.59876 0.75 0.000209627 0.000170468 0.0134296 0.0110754 26 2320 19 6.64007e+06 339066 477104. 1650.88 1.53 0.0781776 0.0670273 21682 110474 -1 1928 22 1439 2619 167889 38908 0 0 167889 38908 2619 1852 0 0 9073 7397 0 0 15067 10991 0 0 2619 1981 0 0 66984 8674 0 0 71527 8013 0 0 2619 0 0 1180 1521 1468 10236 0 0 3.91603 3.91603 -122.237 -3.91603 0 0 585099. 2024.56 0.17 0.04 0.06 -1 -1 0.17 0.00919741 0.00818128 126 25 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.65 vpr 53.26 MiB -1 -1 0.15 17276 1 0.02 -1 -1 29720 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 14.7 MiB 0.07 842 53.3 MiB 0.05 0.00 3.68447 -104.662 -3.68447 3.68447 0.70 0.000118581 9.4927e-05 0.00819027 0.00670242 32 2610 20 6.64007e+06 288834 554710. 1919.41 0.84 0.047819 0.0408347 22834 132086 -1 2107 21 1539 2886 204539 46923 0 0 204539 46923 2886 2183 0 0 10267 8544 0 0 15484 11454 0 0 2886 2403 0 0 84430 11514 0 0 88586 10825 0 0 2886 0 0 1347 1644 1522 11011 0 0 3.62543 3.62543 -124.295 -3.62543 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0164813 0.0147832 130 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.14 vpr 53.25 MiB -1 -1 0.15 17492 1 0.02 -1 -1 29684 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 14.9 MiB 0.11 938 53.3 MiB 0.11 0.00 2.68419 -93.4922 -2.68419 2.68419 1.05 0.000265091 0.000219099 0.0173805 0.0143965 30 2129 19 6.64007e+06 426972 526063. 1820.29 0.82 0.0501615 0.0428957 22546 126617 -1 1770 19 1147 1922 94709 24746 0 0 94709 24746 1922 1260 0 0 6678 5413 0 0 8559 7036 0 0 1922 1375 0 0 37547 5118 0 0 38081 4544 0 0 1922 0 0 775 857 921 6973 0 0 2.70757 2.70757 -109.683 -2.70757 0 0 666494. 2306.21 0.19 0.03 0.10 -1 -1 0.19 0.00942853 0.00837989 142 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.81 vpr 52.81 MiB -1 -1 0.13 17504 1 0.01 -1 -1 29840 -1 -1 19 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54076 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 14.3 MiB 0.10 702 52.8 MiB 0.08 0.00 3.15021 -84.1663 -3.15021 3.15021 0.95 0.000178011 0.000144438 0.0149556 0.0123632 32 1489 18 6.64007e+06 238602 554710. 1919.41 0.82 0.0451909 0.0383053 22834 132086 -1 1337 19 809 1354 87072 20498 0 0 87072 20498 1354 906 0 0 4954 4055 0 0 7991 6019 0 0 1354 971 0 0 34885 4404 0 0 36534 4143 0 0 1354 0 0 545 550 498 4299 0 0 2.96937 2.96937 -95.0852 -2.96937 0 0 701300. 2426.64 0.19 0.04 0.08 -1 -1 0.19 0.0107026 0.00952452 93 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.45 vpr 52.94 MiB -1 -1 0.16 17068 1 0.01 -1 -1 29648 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54212 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 14.3 MiB 0.05 1011 52.9 MiB 0.05 0.00 2.7039 -85.5872 -2.7039 2.7039 0.91 0.000113802 9.2726e-05 0.00782366 0.00646266 26 2372 18 6.64007e+06 389298 477104. 1650.88 1.65 0.0491102 0.0419256 21682 110474 -1 2084 24 1215 2190 158274 35779 0 0 158274 35779 2190 1532 0 0 8177 6665 0 0 12193 9484 0 0 2190 1688 0 0 65279 8530 0 0 68245 7880 0 0 2190 0 0 975 1469 1589 10073 0 0 2.91617 2.91617 -101.878 -2.91617 0 0 585099. 2024.56 0.18 0.04 0.10 -1 -1 0.18 0.00922126 0.00811035 115 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.03 vpr 53.18 MiB -1 -1 0.18 17500 1 0.02 -1 -1 29692 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 14.7 MiB 0.24 923 53.2 MiB 0.08 0.00 2.88585 -100.036 -2.88585 2.88585 0.63 0.000210094 0.000161301 0.0139766 0.0115249 32 2017 18 6.64007e+06 251160 554710. 1919.41 0.90 0.0500635 0.0427058 22834 132086 -1 1855 22 1169 1685 134461 30117 0 0 134461 30117 1685 1447 0 0 6337 5335 0 0 9912 7618 0 0 1685 1504 0 0 59157 6664 0 0 55685 7549 0 0 1685 0 0 516 479 330 4042 0 0 3.01963 3.01963 -116.46 -3.01963 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.0159257 0.0141816 111 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.60 vpr 53.14 MiB -1 -1 0.10 17632 1 0.02 -1 -1 29732 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54420 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 14.5 MiB 0.17 862 53.1 MiB 0.08 0.00 3.13721 -104.225 -3.13721 3.13721 0.99 0.000212388 0.000172712 0.0144843 0.012009 26 2067 20 6.64007e+06 213486 477104. 1650.88 2.36 0.0880269 0.0756884 21682 110474 -1 1886 20 1242 1979 134979 31680 0 0 134979 31680 1979 1575 0 0 7151 6033 0 0 11060 8429 0 0 1979 1630 0 0 57435 6776 0 0 55375 7237 0 0 1979 0 0 737 911 936 6627 0 0 3.33077 3.33077 -122.75 -3.33077 0 0 585099. 2024.56 0.28 0.06 0.09 -1 -1 0.28 0.0150778 0.013536 112 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.01 vpr 53.10 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29716 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54372 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 14.5 MiB 0.12 802 53.1 MiB 0.04 0.00 3.22421 -92.1331 -3.22421 3.22421 0.80 0.000107224 8.5544e-05 0.00870812 0.00714638 30 1612 15 6.64007e+06 213486 526063. 1820.29 1.33 0.0478934 0.0403779 22546 126617 -1 1463 16 650 1002 56304 13497 0 0 56304 13497 1002 750 0 0 3378 2703 0 0 4379 3508 0 0 1002 827 0 0 22544 3096 0 0 23999 2613 0 0 1002 0 0 352 393 361 3052 0 0 2.89296 2.89296 -101.966 -2.89296 0 0 666494. 2306.21 0.29 0.03 0.11 -1 -1 0.29 0.0111467 0.0099924 98 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 6.07 vpr 53.10 MiB -1 -1 0.13 17352 1 0.01 -1 -1 29684 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54376 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 14.5 MiB 0.27 966 53.1 MiB 0.08 0.00 2.9925 -99.7736 -2.9925 2.9925 0.96 0.000186179 0.000150982 0.0131797 0.0108673 32 2125 22 6.64007e+06 226044 554710. 1919.41 2.66 0.0752599 0.0634687 22834 132086 -1 1812 22 1083 1459 94322 22407 0 0 94322 22407 1459 1168 0 0 5211 4304 0 0 7975 6074 0 0 1459 1250 0 0 40380 4746 0 0 37838 4865 0 0 1459 0 0 376 314 332 3301 0 0 2.94917 2.94917 -110.751 -2.94917 0 0 701300. 2426.64 0.28 0.05 0.11 -1 -1 0.28 0.0138325 0.0122186 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 6.03 vpr 53.41 MiB -1 -1 0.13 17404 1 0.01 -1 -1 29640 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54688 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 15.0 MiB 0.28 1104 53.4 MiB 0.12 0.00 3.65347 -120.082 -3.65347 3.65347 1.01 0.000222093 0.000171599 0.0187727 0.0152598 26 2966 28 6.64007e+06 301392 477104. 1650.88 2.49 0.1014 0.0867282 21682 110474 -1 2352 20 1798 2742 213817 47912 0 0 213817 47912 2742 2148 0 0 10117 8544 0 0 15255 11926 0 0 2742 2217 0 0 93151 11469 0 0 89810 11608 0 0 2742 0 0 944 1100 878 7590 0 0 3.65363 3.65363 -134.874 -3.65363 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0177658 0.0159977 139 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 6.35 vpr 53.47 MiB -1 -1 0.16 17680 1 0.02 -1 -1 29680 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 15.1 MiB 0.17 993 53.5 MiB 0.13 0.00 4.00586 -115.692 -4.00586 4.00586 0.75 0.000250817 0.00020516 0.0227233 0.0187882 28 2504 27 6.64007e+06 389298 500653. 1732.36 3.14 0.126961 0.109025 21970 115934 -1 2126 20 1257 2080 158897 35440 0 0 158897 35440 2080 1572 0 0 7458 6085 0 0 10935 8573 0 0 2080 1735 0 0 68039 8911 0 0 68305 8564 0 0 2080 0 0 823 913 1026 7102 0 0 3.97483 3.97483 -138.464 -3.97483 0 0 612192. 2118.31 0.27 0.06 0.10 -1 -1 0.27 0.0169213 0.0151655 134 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.35 vpr 52.83 MiB -1 -1 0.15 17080 1 0.02 -1 -1 29668 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 14.4 MiB 0.11 768 52.8 MiB 0.08 0.00 2.68419 -78.2312 -2.68419 2.68419 1.02 0.000185234 0.000151872 0.0156167 0.0128866 32 1614 17 6.64007e+06 263718 554710. 1919.41 0.91 0.0459924 0.0391477 22834 132086 -1 1507 18 851 1440 95952 22532 0 0 95952 22532 1440 1051 0 0 5297 4405 0 0 8220 6221 0 0 1440 1129 0 0 39945 4981 0 0 39610 4745 0 0 1440 0 0 589 555 498 4482 0 0 2.72777 2.72777 -92.6556 -2.72777 0 0 701300. 2426.64 0.33 0.05 0.11 -1 -1 0.33 0.0139061 0.0125613 98 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 6.09 vpr 53.46 MiB -1 -1 0.15 17512 1 0.02 -1 -1 29760 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 15.0 MiB 0.16 1108 53.5 MiB 0.07 0.00 3.2847 -105.502 -3.2847 3.2847 0.91 0.000141801 0.000114333 0.0131827 0.0108163 32 2458 21 6.64007e+06 276276 554710. 1919.41 2.92 0.123785 0.105704 22834 132086 -1 2176 20 1421 2536 175731 39240 0 0 175731 39240 2536 1747 0 0 9003 7325 0 0 14330 10764 0 0 2536 2167 0 0 77116 8210 0 0 70210 9027 0 0 2536 0 0 1115 1324 1404 9545 0 0 3.23137 3.23137 -119.81 -3.23137 0 0 701300. 2426.64 0.29 0.05 0.08 -1 -1 0.29 0.0122366 0.0110197 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 6.91 vpr 53.46 MiB -1 -1 0.16 17524 1 0.01 -1 -1 29728 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 15.1 MiB 0.26 1058 53.5 MiB 0.10 0.00 3.51127 -116.59 -3.51127 3.51127 0.94 0.000230214 0.000188237 0.0186813 0.0155184 28 2738 22 6.64007e+06 288834 500653. 1732.36 3.52 0.132223 0.115298 21970 115934 -1 2349 21 1588 2323 238272 66892 0 0 238272 66892 2323 2055 0 0 8389 6809 0 0 12681 9996 0 0 2323 2185 0 0 108672 22619 0 0 103884 23228 0 0 2323 0 0 735 776 789 6143 0 0 3.28703 3.28703 -126.826 -3.28703 0 0 612192. 2118.31 0.28 0.08 0.06 -1 -1 0.28 0.0159629 0.0142191 138 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.05 vpr 53.13 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29728 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 14.7 MiB 0.12 845 53.1 MiB 0.08 0.00 2.30864 -86.9176 -2.30864 2.30864 0.95 0.000206533 0.00016788 0.0120945 0.0100055 28 1903 19 6.64007e+06 364182 500653. 1732.36 0.83 0.0481308 0.0410047 21970 115934 -1 1771 18 865 1480 83992 19996 0 0 83992 19996 1480 932 0 0 5084 3943 0 0 7246 5579 0 0 1480 1068 0 0 34400 4311 0 0 34302 4163 0 0 1480 0 0 615 816 780 5837 0 0 2.15051 2.15051 -97.8247 -2.15051 0 0 612192. 2118.31 0.26 0.04 0.10 -1 -1 0.26 0.0133575 0.0119044 110 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 5.79 vpr 52.68 MiB -1 -1 0.15 17220 1 0.01 -1 -1 29660 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53940 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 14.2 MiB 0.05 699 52.7 MiB 0.05 0.00 1.89953 -67.0868 -1.89953 1.89953 1.02 0.000163059 0.000132232 0.0103716 0.00856942 32 1433 17 6.64007e+06 188370 554710. 1919.41 2.65 0.0693839 0.0585947 22834 132086 -1 1315 21 678 1025 93365 19604 0 0 93365 19604 1025 791 0 0 3949 3272 0 0 6494 5005 0 0 1025 843 0 0 40928 4928 0 0 39944 4765 0 0 1025 0 0 347 367 381 2972 0 0 2.04311 2.04311 -84.7495 -2.04311 0 0 701300. 2426.64 0.33 0.05 0.11 -1 -1 0.33 0.0120258 0.0107012 81 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.02 vpr 53.15 MiB -1 -1 0.16 17488 1 0.01 -1 -1 29792 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 14.7 MiB 0.15 807 53.2 MiB 0.09 0.00 3.93687 -117.769 -3.93687 3.93687 0.95 0.000194274 0.000158161 0.0182685 0.0150627 32 2259 24 6.64007e+06 251160 554710. 1919.41 0.92 0.0563937 0.0480715 22834 132086 -1 1702 21 1145 1663 110175 26457 0 0 110175 26457 1663 1376 0 0 5859 4808 0 0 9514 7132 0 0 1663 1555 0 0 46290 5852 0 0 45186 5734 0 0 1663 0 0 518 609 485 4423 0 0 3.69043 3.69043 -130.345 -3.69043 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00841437 0.00752748 128 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.44 vpr 53.15 MiB -1 -1 0.15 17352 1 0.02 -1 -1 29868 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 14.6 MiB 0.06 1064 53.2 MiB 0.08 0.00 3.49156 -112.794 -3.49156 3.49156 0.80 0.00022181 0.00018106 0.0127141 0.0105858 32 2333 23 6.64007e+06 389298 554710. 1919.41 0.57 0.0371123 0.0315709 22834 132086 -1 2116 24 1520 2444 176829 39827 0 0 176829 39827 2444 1787 0 0 9114 7490 0 0 14758 11018 0 0 2444 2012 0 0 72474 9165 0 0 75595 8355 0 0 2444 0 0 924 1322 1273 9037 0 0 3.76663 3.76663 -132.153 -3.76663 0 0 701300. 2426.64 0.23 0.05 0.12 -1 -1 0.23 0.0119629 0.0105858 135 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.45 vpr 53.77 MiB -1 -1 0.10 17616 1 0.01 -1 -1 29664 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55060 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 15.0 MiB 0.28 1153 53.8 MiB 0.14 0.00 3.65022 -113.615 -3.65022 3.65022 1.01 0.000252609 0.000205676 0.0235364 0.0194218 32 2711 20 6.64007e+06 313950 554710. 1919.41 0.80 0.0644352 0.0548516 22834 132086 -1 2357 19 1474 2351 186257 39820 0 0 186257 39820 2351 1911 0 0 8577 7094 0 0 13199 9898 0 0 2351 2140 0 0 81222 9381 0 0 78557 9396 0 0 2351 0 0 877 1124 1030 7662 0 0 3.90048 3.90048 -132.181 -3.90048 0 0 701300. 2426.64 0.32 0.07 0.13 -1 -1 0.32 0.0181993 0.016366 144 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.70 vpr 52.43 MiB -1 -1 0.09 17200 1 0.01 -1 -1 29728 -1 -1 18 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53684 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 13.8 MiB 0.13 424 52.4 MiB 0.05 0.00 1.89953 -53.7606 -1.89953 1.89953 0.80 0.00012985 0.000104195 0.00837777 0.00686493 28 1299 26 6.64007e+06 226044 500653. 1732.36 1.02 0.0383286 0.0330343 21970 115934 -1 1081 25 685 946 115865 47440 0 0 115865 47440 946 798 0 0 3530 2844 0 0 5212 4113 0 0 946 839 0 0 53327 19839 0 0 51904 19007 0 0 946 0 0 261 283 284 2428 0 0 2.06751 2.06751 -68.3536 -2.06751 0 0 612192. 2118.31 0.18 0.03 0.06 -1 -1 0.18 0.00631388 0.00550066 77 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 5.90 vpr 53.07 MiB -1 -1 0.11 17320 1 0.01 -1 -1 29824 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 14.4 MiB 0.06 941 53.1 MiB 0.09 0.00 4.00635 -102.194 -4.00635 4.00635 0.92 0.000219284 0.000178541 0.0150583 0.0124319 32 2150 23 6.64007e+06 263718 554710. 1919.41 2.66 0.105821 0.0910932 22834 132086 -1 1974 19 1089 2067 148114 33840 0 0 148114 33840 2067 1576 0 0 7469 6075 0 0 11730 8752 0 0 2067 1814 0 0 63518 7633 0 0 61263 7990 0 0 2067 0 0 978 1181 1170 8116 0 0 4.04602 4.04602 -124.592 -4.04602 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0147424 0.0132703 118 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 5.03 vpr 52.36 MiB -1 -1 0.12 16568 1 0.01 -1 -1 29612 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53620 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 13.8 MiB 0.13 409 52.4 MiB 0.03 0.00 2.08773 -59.2766 -2.08773 2.08773 1.01 0.000147724 0.000119852 0.00539279 0.00450888 28 1291 47 6.64007e+06 175812 500653. 1732.36 1.98 0.0523679 0.0450797 21970 115934 -1 872 15 508 596 42287 12656 0 0 42287 12656 596 561 0 0 2235 1797 0 0 3131 2603 0 0 596 567 0 0 18478 3729 0 0 17251 3399 0 0 596 0 0 88 90 100 1050 0 0 2.14231 2.14231 -71.1836 -2.14231 0 0 612192. 2118.31 0.17 0.02 0.10 -1 -1 0.17 0.00456109 0.00409609 79 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.25 vpr 53.02 MiB -1 -1 0.15 17448 1 0.01 -1 -1 29748 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 14.6 MiB 0.06 1016 53.0 MiB 0.12 0.00 3.62727 -105.452 -3.62727 3.62727 0.90 0.00021582 0.00017509 0.0201888 0.0166937 28 2100 23 6.64007e+06 376740 500653. 1732.36 0.91 0.0631962 0.0541312 21970 115934 -1 1890 18 904 1451 93378 21459 0 0 93378 21459 1451 1054 0 0 5241 4084 0 0 7768 6156 0 0 1451 1123 0 0 38937 4510 0 0 38530 4532 0 0 1451 0 0 547 564 593 4757 0 0 3.41203 3.41203 -115.281 -3.41203 0 0 612192. 2118.31 0.28 0.05 0.10 -1 -1 0.28 0.0140116 0.0125195 123 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.42 vpr 53.14 MiB -1 -1 0.14 17244 1 0.01 -1 -1 29872 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.7 MiB 0.07 995 53.1 MiB 0.04 0.00 3.0905 -90.605 -3.0905 3.0905 0.66 0.000117773 9.4902e-05 0.0061215 0.00506089 26 2230 22 6.64007e+06 389298 477104. 1650.88 0.68 0.0396712 0.034085 21682 110474 -1 1988 18 1127 1955 122072 29452 0 0 122072 29452 1955 1346 0 0 7285 5808 0 0 10833 8487 0 0 1955 1485 0 0 50253 6062 0 0 49791 6264 0 0 1955 0 0 828 1074 1160 7879 0 0 2.84296 2.84296 -106.319 -2.84296 0 0 585099. 2024.56 0.21 0.05 0.09 -1 -1 0.21 0.0148332 0.0133213 128 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.72 vpr 53.36 MiB -1 -1 0.14 17632 1 0.01 -1 -1 29692 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 14.7 MiB 0.12 1072 53.4 MiB 0.14 0.00 3.69347 -110.77 -3.69347 3.69347 1.03 0.000234631 0.000188681 0.0230768 0.0190064 28 2357 20 6.64007e+06 339066 500653. 1732.36 2.24 0.0906452 0.0769993 21970 115934 -1 2149 22 1255 2171 145664 32598 0 0 145664 32598 2171 1653 0 0 7475 6014 0 0 11411 8640 0 0 2171 1750 0 0 62208 7080 0 0 60228 7461 0 0 2171 0 0 916 1084 1048 7921 0 0 3.67063 3.67063 -128.321 -3.67063 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0179278 0.0160374 126 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.37 vpr 53.04 MiB -1 -1 0.14 17464 1 0.02 -1 -1 29732 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54316 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 14.5 MiB 0.08 862 53.0 MiB 0.08 0.00 2.42079 -85.6615 -2.42079 2.42079 1.02 0.000201968 0.000163933 0.0156274 0.0127941 32 1901 20 6.64007e+06 200928 554710. 1919.41 0.94 0.0527246 0.0449924 22834 132086 -1 1676 16 853 1394 104135 24023 0 0 104135 24023 1394 1048 0 0 5343 4439 0 0 8433 6593 0 0 1394 1113 0 0 43885 5603 0 0 43686 5227 0 0 1394 0 0 541 511 506 4224 0 0 2.70477 2.70477 -104.674 -2.70477 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0149938 0.0134222 101 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.10 vpr 52.82 MiB -1 -1 0.16 17516 1 0.02 -1 -1 29708 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54088 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 14.4 MiB 0.07 763 52.8 MiB 0.06 0.00 2.64019 -83.9557 -2.64019 2.64019 0.98 0.000192293 0.000156902 0.00999511 0.00837115 32 1639 22 6.64007e+06 288834 554710. 1919.41 0.73 0.032596 0.0277622 22834 132086 -1 1486 20 827 1318 93734 21507 0 0 93734 21507 1318 916 0 0 4945 4163 0 0 7450 5648 0 0 1318 1017 0 0 38139 5087 0 0 40564 4676 0 0 1318 0 0 491 435 547 4175 0 0 2.79977 2.79977 -96.967 -2.79977 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0125941 0.01116 97 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.20 vpr 52.82 MiB -1 -1 0.16 17660 1 0.01 -1 -1 29720 -1 -1 23 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54088 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 14.4 MiB 0.06 801 52.8 MiB 0.08 0.00 2.7119 -80.2775 -2.7119 2.7119 0.87 0.000100033 8.0701e-05 0.0137099 0.0112265 32 1728 21 6.64007e+06 288834 554710. 1919.41 2.09 0.0698015 0.0584364 22834 132086 -1 1585 18 900 1584 113583 25503 0 0 113583 25503 1584 1188 0 0 5825 4913 0 0 8968 6950 0 0 1584 1263 0 0 48925 5514 0 0 46697 5675 0 0 1584 0 0 684 557 628 5171 0 0 2.88197 2.88197 -97.4045 -2.88197 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.011789 0.0105595 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.79 vpr 52.88 MiB -1 -1 0.14 16896 1 0.01 -1 -1 29720 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54144 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 14.4 MiB 0.03 642 52.9 MiB 0.02 0.00 3.19341 -91.8339 -3.19341 3.19341 0.62 0.000101865 8.257e-05 0.0036287 0.00308847 30 1801 23 6.64007e+06 238602 526063. 1820.29 1.41 0.042013 0.0358369 22546 126617 -1 1461 22 1081 1813 94964 24425 0 0 94964 24425 1813 1364 0 0 6183 5027 0 0 8072 6550 0 0 1813 1505 0 0 35532 5266 0 0 41551 4713 0 0 1813 0 0 732 805 807 6071 0 0 2.76077 2.76077 -102.608 -2.76077 0 0 666494. 2306.21 0.27 0.03 0.11 -1 -1 0.27 0.0076958 0.00682114 110 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.93 vpr 52.99 MiB -1 -1 0.16 17512 1 0.02 -1 -1 29668 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54260 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 14.5 MiB 0.05 855 53.0 MiB 0.04 0.00 2.8301 -90.1273 -2.8301 2.8301 0.61 0.000115867 9.5043e-05 0.00669373 0.00549792 30 1725 20 6.64007e+06 339066 526063. 1820.29 1.69 0.0553193 0.0465925 22546 126617 -1 1581 20 745 1288 65243 15965 0 0 65243 15965 1288 823 0 0 4263 3426 0 0 5904 4592 0 0 1288 902 0 0 26605 2998 0 0 25895 3224 0 0 1288 0 0 543 514 637 4810 0 0 2.66357 2.66357 -99.2184 -2.66357 0 0 666494. 2306.21 0.19 0.02 0.07 -1 -1 0.19 0.00735448 0.0065531 103 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.00 vpr 53.06 MiB -1 -1 0.16 17352 1 0.01 -1 -1 29684 -1 -1 26 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54336 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 14.5 MiB 0.14 863 53.1 MiB 0.09 0.00 2.6377 -86.5358 -2.6377 2.6377 0.82 0.000182894 0.000146722 0.0157033 0.0129043 32 1849 20 6.64007e+06 326508 554710. 1919.41 2.23 0.0656914 0.0553374 22834 132086 -1 1656 16 866 1275 78464 19022 0 0 78464 19022 1275 953 0 0 4650 3810 0 0 6960 5327 0 0 1275 1068 0 0 32252 3999 0 0 32052 3865 0 0 1275 0 0 409 520 503 3931 0 0 2.36297 2.36297 -94.6637 -2.36297 0 0 701300. 2426.64 0.19 0.02 0.08 -1 -1 0.19 0.00697114 0.00626742 105 48 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 7.30 vpr 53.31 MiB -1 -1 0.17 17400 1 0.02 -1 -1 29648 -1 -1 38 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54592 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 14.8 MiB 0.16 1145 53.3 MiB 0.10 0.00 3.51556 -101.772 -3.51556 3.51556 0.83 0.000265237 0.000217639 0.0150819 0.0125253 28 2857 35 6.64007e+06 477204 500653. 1732.36 4.50 0.118409 0.103341 21970 115934 -1 2299 17 1146 2198 146583 32476 0 0 146583 32476 2198 1382 0 0 7653 6015 0 0 11160 8636 0 0 2198 1552 0 0 64365 7109 0 0 59009 7782 0 0 2198 0 0 1052 1863 1992 12181 0 0 3.71062 3.71062 -122.464 -3.71062 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.0094632 0.00850856 151 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 5.66 vpr 53.58 MiB -1 -1 0.17 17472 1 0.02 -1 -1 29748 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 15.0 MiB 0.14 1037 53.6 MiB 0.10 0.00 3.11521 -106.201 -3.11521 3.11521 1.09 0.000284517 0.000233749 0.0154142 0.0126274 30 2168 22 6.64007e+06 464646 526063. 1820.29 2.10 0.112318 0.096092 22546 126617 -1 1853 18 1349 2140 108427 25981 0 0 108427 25981 2140 1415 0 0 7104 5696 0 0 9230 7409 0 0 2140 1590 0 0 45012 4871 0 0 42801 5000 0 0 2140 0 0 791 975 1028 7534 0 0 2.85977 2.85977 -115.993 -2.85977 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0178142 0.015991 147 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.31 vpr 53.14 MiB -1 -1 0.16 17560 1 0.02 -1 -1 29688 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 14.5 MiB 0.19 843 53.1 MiB 0.05 0.00 3.48127 -104.434 -3.48127 3.48127 0.60 0.000185801 0.000149218 0.00708322 0.00585482 32 2095 21 6.64007e+06 238602 554710. 1919.41 1.88 0.0530886 0.0447143 22834 132086 -1 1780 17 956 1369 103528 23513 0 0 103528 23513 1369 1106 0 0 5238 4376 0 0 7674 6048 0 0 1369 1167 0 0 45839 5076 0 0 42039 5740 0 0 1369 0 0 413 401 426 3781 0 0 3.04663 3.04663 -113.526 -3.04663 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00717905 0.00644233 112 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 7.14 vpr 53.41 MiB -1 -1 0.17 17464 1 0.02 -1 -1 29736 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54696 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 15.0 MiB 0.14 985 53.4 MiB 0.09 0.00 3.41261 -105.742 -3.41261 3.41261 1.02 0.000244956 0.00019852 0.0156426 0.0129373 28 2708 26 6.64007e+06 313950 500653. 1732.36 3.65 0.13292 0.115487 21970 115934 -1 2259 19 1276 2243 168205 37731 0 0 168205 37731 2243 1538 0 0 8225 6809 0 0 11793 9477 0 0 2243 1645 0 0 71956 9347 0 0 71745 8915 0 0 2243 0 0 967 1182 1179 8315 0 0 3.15237 3.15237 -122.751 -3.15237 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0188663 0.0170167 138 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 9.05 vpr 53.53 MiB -1 -1 0.15 17724 1 0.01 -1 -1 29732 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54812 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 15.3 MiB 0.41 1272 53.5 MiB 0.13 0.00 4.67899 -142.805 -4.67899 4.67899 1.01 0.000273794 0.000227787 0.0214468 0.0178589 28 3457 26 6.64007e+06 364182 500653. 1732.36 5.49 0.132994 0.115363 21970 115934 -1 2626 20 1939 2907 204299 47032 0 0 204299 47032 2907 2470 0 0 9951 7938 0 0 15030 11469 0 0 2907 2598 0 0 90747 10715 0 0 82757 11842 0 0 2907 0 0 968 1145 917 7873 0 0 5.26895 5.26895 -173.742 -5.26895 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0111074 0.00997465 172 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.32 vpr 53.63 MiB -1 -1 0.15 17764 1 0.02 -1 -1 29728 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 15.0 MiB 0.38 1024 53.6 MiB 0.09 0.00 4.12201 -121.45 -4.12201 4.12201 0.99 0.000251642 0.00020407 0.0144425 0.012015 32 2849 25 6.64007e+06 339066 554710. 1919.41 0.83 0.0583232 0.0500845 22834 132086 -1 2274 23 1863 2919 206177 47249 0 0 206177 47249 2919 2193 0 0 10441 8717 0 0 17079 12483 0 0 2919 2362 0 0 87524 10825 0 0 85295 10669 0 0 2919 0 0 1056 1140 1111 8684 0 0 4.60548 4.60548 -147.371 -4.60548 0 0 701300. 2426.64 0.21 0.08 0.08 -1 -1 0.21 0.0208578 0.0186655 164 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.83 vpr 53.41 MiB -1 -1 0.14 17340 1 0.01 -1 -1 29776 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 15.0 MiB 0.13 1038 53.4 MiB 0.11 0.00 3.81567 -112.348 -3.81567 3.81567 0.78 0.000243734 0.000194837 0.0169717 0.013946 28 2455 22 6.64007e+06 389298 500653. 1732.36 2.15 0.0863636 0.0738218 21970 115934 -1 2217 17 1183 2053 131966 30969 0 0 131966 30969 2053 1482 0 0 7257 5807 0 0 10676 8497 0 0 2053 1627 0 0 54514 6955 0 0 55413 6601 0 0 2053 0 0 870 1286 1237 7994 0 0 3.41203 3.41203 -125.003 -3.41203 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00900802 0.00810601 135 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 6.00 vpr 53.11 MiB -1 -1 0.15 17340 1 0.01 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54380 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 14.7 MiB 0.22 972 53.1 MiB 0.07 0.00 3.46356 -95.4486 -3.46356 3.46356 0.78 0.000119717 9.6268e-05 0.0117929 0.00971669 30 2237 22 6.64007e+06 288834 526063. 1820.29 3.08 0.114799 0.0989634 22546 126617 -1 1766 21 983 1453 83203 19713 0 0 83203 19713 1453 1184 0 0 4922 3918 0 0 6502 5218 0 0 1453 1261 0 0 35559 3946 0 0 33314 4186 0 0 1453 0 0 470 481 498 4130 0 0 3.46143 3.46143 -109.196 -3.46143 0 0 666494. 2306.21 0.18 0.03 0.10 -1 -1 0.18 0.00865734 0.00775714 119 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.24 vpr 53.69 MiB -1 -1 0.17 17776 1 0.02 -1 -1 29988 -1 -1 40 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 15.5 MiB 0.16 1263 53.7 MiB 0.08 0.00 4.04253 -135.234 -4.04253 4.04253 0.59 0.000161961 0.000131331 0.0128196 0.010622 28 3135 22 6.64007e+06 502320 500653. 1732.36 0.60 0.0459524 0.039214 21970 115934 -1 2560 18 1430 2291 144476 33254 0 0 144476 33254 2291 1687 0 0 7907 6342 0 0 11547 8951 0 0 2291 1837 0 0 60480 7402 0 0 59960 7035 0 0 2291 0 0 861 1223 1316 9041 0 0 4.23489 4.23489 -152.675 -4.23489 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0227496 0.0204961 174 84 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.84 vpr 52.87 MiB -1 -1 0.15 17184 1 0.01 -1 -1 29772 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54136 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 14.4 MiB 0.09 726 52.9 MiB 0.04 0.00 3.1015 -82.8434 -3.1015 3.1015 0.96 0.00010227 7.9878e-05 0.00734472 0.00607138 32 1718 18 6.64007e+06 263718 554710. 1919.41 2.72 0.0843013 0.0724181 22834 132086 -1 1511 18 811 1368 93469 21184 0 0 93469 21184 1368 1029 0 0 4778 3908 0 0 7463 5461 0 0 1368 1117 0 0 39598 4689 0 0 38894 4980 0 0 1368 0 0 557 564 647 4668 0 0 2.88077 2.88077 -99.6798 -2.88077 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0113072 0.0100858 101 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 6.81 vpr 53.66 MiB -1 -1 0.17 17560 1 0.01 -1 -1 29728 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 15.0 MiB 0.27 1164 53.7 MiB 0.12 0.00 4.15901 -127.454 -4.15901 4.15901 1.01 0.000225531 0.000181413 0.0212053 0.0175171 32 2762 22 6.64007e+06 313950 554710. 1919.41 3.17 0.138092 0.119104 22834 132086 -1 2304 20 1364 1912 130588 30254 0 0 130588 30254 1912 1650 0 0 7185 6031 0 0 10699 8337 0 0 1912 1733 0 0 54798 6238 0 0 54082 6265 0 0 1912 0 0 548 566 555 5017 0 0 4.19688 4.19688 -141.797 -4.19688 0 0 701300. 2426.64 0.25 0.05 0.12 -1 -1 0.25 0.0148944 0.0132362 144 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.21 vpr 53.40 MiB -1 -1 0.09 17404 1 0.01 -1 -1 29692 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 14.8 MiB 0.09 938 53.4 MiB 0.05 0.00 3.2547 -96.3729 -3.2547 3.2547 0.82 0.000128214 0.000103885 0.00701051 0.00580239 28 2544 25 6.64007e+06 414414 500653. 1732.36 2.58 0.0628079 0.0537369 21970 115934 -1 2040 18 1201 2133 138262 34033 0 0 138262 34033 2133 1560 0 0 7513 6205 0 0 11229 8817 0 0 2133 1685 0 0 56813 7966 0 0 58441 7800 0 0 2133 0 0 932 1189 1241 8443 0 0 2.94797 2.94797 -111.186 -2.94797 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0170677 0.0154111 131 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.14 vpr 53.07 MiB -1 -1 0.16 17244 1 0.01 -1 -1 29680 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54340 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 14.7 MiB 0.03 1001 53.1 MiB 0.08 0.00 3.34016 -104.784 -3.34016 3.34016 0.59 0.000121467 9.9557e-05 0.0135064 0.0111031 32 2447 19 6.64007e+06 301392 554710. 1919.41 0.67 0.0440121 0.0373919 22834 132086 -1 2118 19 1205 2245 161696 36444 0 0 161696 36444 2245 1720 0 0 8261 6788 0 0 12928 9704 0 0 2245 1860 0 0 66801 8625 0 0 69216 7747 0 0 2245 0 0 1040 1302 1175 8878 0 0 3.74283 3.74283 -126.33 -3.74283 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0135315 0.012152 123 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.19 vpr 53.42 MiB -1 -1 0.09 17484 1 0.02 -1 -1 29716 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 14.9 MiB 0.32 1042 53.4 MiB 0.12 0.00 3.67818 -109.821 -3.67818 3.67818 0.92 0.000243325 0.000198045 0.0210557 0.0174179 32 2713 23 6.64007e+06 301392 554710. 1919.41 0.90 0.0624896 0.0531992 22834 132086 -1 2139 18 1259 1765 132747 30385 0 0 132747 30385 1765 1482 0 0 6467 5324 0 0 10043 7759 0 0 1765 1571 0 0 55085 7476 0 0 57622 6773 0 0 1765 0 0 506 587 551 4707 0 0 3.48943 3.48943 -122.7 -3.48943 0 0 701300. 2426.64 0.22 0.03 0.12 -1 -1 0.22 0.00926514 0.00831363 138 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 6.17 vpr 53.42 MiB -1 -1 0.14 17488 1 0.01 -1 -1 29804 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 15.0 MiB 0.13 968 53.4 MiB 0.14 0.00 2.9151 -98.0492 -2.9151 2.9151 0.84 0.000254112 0.000207174 0.0228699 0.0189069 32 2462 25 6.64007e+06 401856 554710. 1919.41 3.16 0.144923 0.125027 22834 132086 -1 2107 18 1189 2066 146985 33316 0 0 146985 33316 2066 1454 0 0 7506 6177 0 0 11397 8553 0 0 2066 1607 0 0 60560 8176 0 0 63390 7349 0 0 2066 0 0 877 1330 1490 9369 0 0 3.10537 3.10537 -112.697 -3.10537 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0180384 0.0163056 133 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.44 vpr 53.53 MiB -1 -1 0.17 17488 1 0.01 -1 -1 29700 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 14.9 MiB 0.10 1147 53.5 MiB 0.08 0.00 3.71747 -115.643 -3.71747 3.71747 0.64 0.000238213 0.000196067 0.0111956 0.0092701 32 2558 19 6.64007e+06 464646 554710. 1919.41 0.71 0.0496986 0.0422637 22834 132086 -1 2345 17 1213 1880 133718 29783 0 0 133718 29783 1880 1412 0 0 6735 5533 0 0 10504 7821 0 0 1880 1561 0 0 55241 7092 0 0 57478 6364 0 0 1880 0 0 667 897 708 5934 0 0 3.35083 3.35083 -128.612 -3.35083 0 0 701300. 2426.64 0.21 0.04 0.09 -1 -1 0.21 0.0118168 0.0106334 145 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.58 vpr 53.14 MiB -1 -1 0.17 17272 1 0.02 -1 -1 29664 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 14.6 MiB 0.04 968 53.1 MiB 0.07 0.00 3.36216 -101.877 -3.36216 3.36216 0.89 0.000124545 0.000100806 0.0110365 0.00909794 32 2135 20 6.64007e+06 364182 554710. 1919.41 2.78 0.0943441 0.0796964 22834 132086 -1 1848 19 1181 1951 133114 29964 0 0 133114 29964 1951 1405 0 0 7196 5882 0 0 10773 8197 0 0 1951 1536 0 0 55428 6582 0 0 55815 6362 0 0 1951 0 0 770 1116 931 7146 0 0 3.67963 3.67963 -119.437 -3.67963 0 0 701300. 2426.64 0.21 0.03 0.07 -1 -1 0.21 0.0090905 0.0081299 122 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.37 vpr 53.51 MiB -1 -1 0.14 17476 1 0.02 -1 -1 29776 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 14.7 MiB 0.19 1100 53.5 MiB 0.03 0.00 3.96206 -114.577 -3.96206 3.96206 0.84 0.00012398 0.000101069 0.00524713 0.00448773 26 2523 28 6.64007e+06 301392 477104. 1650.88 1.75 0.0572462 0.048784 21682 110474 -1 2265 20 1355 1994 132927 31596 0 0 132927 31596 1994 1624 0 0 7338 6111 0 0 11032 8630 0 0 1994 1797 0 0 55523 6518 0 0 55046 6916 0 0 1994 0 0 639 675 702 5364 0 0 3.87483 3.87483 -133.126 -3.87483 0 0 585099. 2024.56 0.19 0.04 0.06 -1 -1 0.19 0.0103265 0.00927119 133 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.71 vpr 53.74 MiB -1 -1 0.15 17616 1 0.02 -1 -1 29748 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55028 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 15.0 MiB 0.29 1093 53.7 MiB 0.13 0.00 4.03253 -120.813 -4.03253 4.03253 0.95 0.000234494 0.000190192 0.021472 0.0176127 32 3086 25 6.64007e+06 313950 554710. 1919.41 1.12 0.0847676 0.0739747 22834 132086 -1 2367 20 1505 2501 185158 41296 0 0 185158 41296 2501 2102 0 0 9046 7396 0 0 13720 10317 0 0 2501 2310 0 0 79025 9797 0 0 78365 9374 0 0 2501 0 0 996 1192 1013 8242 0 0 4.22489 4.22489 -138.818 -4.22489 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.018749 0.0168233 148 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.71 vpr 53.46 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29788 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 15.1 MiB 0.16 1122 53.5 MiB 0.06 0.00 3.37636 -107.7 -3.37636 3.37636 0.59 0.000129683 0.000104112 0.011279 0.00925481 32 2779 21 6.64007e+06 276276 554710. 1919.41 2.70 0.0897121 0.0764433 22834 132086 -1 2429 17 1375 2440 189319 40413 0 0 189319 40413 2440 1844 0 0 8509 7009 0 0 13642 9792 0 0 2440 2122 0 0 80471 9997 0 0 81817 9649 0 0 2440 0 0 1065 1070 955 8024 0 0 3.53642 3.53642 -127.001 -3.53642 0 0 701300. 2426.64 0.32 0.08 0.11 -1 -1 0.32 0.0227681 0.0206637 136 74 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.69 vpr 52.90 MiB -1 -1 0.16 17412 1 0.01 -1 -1 29780 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54172 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 14.4 MiB 0.06 612 52.9 MiB 0.09 0.00 2.7119 -78.5001 -2.7119 2.7119 1.02 0.000189212 0.000154358 0.0141443 0.0116611 26 1952 44 6.64007e+06 301392 477104. 1650.88 2.34 0.0815239 0.0698933 21682 110474 -1 1461 18 873 1358 87504 21972 0 0 87504 21972 1358 1054 0 0 4870 3738 0 0 6892 5357 0 0 1358 1122 0 0 35908 5609 0 0 37118 5092 0 0 1358 0 0 485 633 613 4543 0 0 2.77597 2.77597 -96.3472 -2.77597 0 0 585099. 2024.56 0.27 0.04 0.11 -1 -1 0.27 0.0119943 0.010761 97 20 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 6.67 vpr 53.32 MiB -1 -1 0.16 17444 1 0.01 -1 -1 29824 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54596 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 14.7 MiB 0.28 1015 53.3 MiB 0.07 0.00 3.21396 -113.796 -3.21396 3.21396 1.03 0.000246586 0.000203254 0.0104604 0.00877531 28 2498 16 6.64007e+06 276276 500653. 1732.36 3.03 0.109112 0.0942394 21970 115934 -1 2182 23 1479 2112 147458 33641 0 0 147458 33641 2112 1792 0 0 7460 5894 0 0 11125 8706 0 0 2112 1979 0 0 63041 7500 0 0 61608 7770 0 0 2112 0 0 633 620 513 5144 0 0 3.21737 3.21737 -132.833 -3.21737 0 0 612192. 2118.31 0.29 0.07 0.10 -1 -1 0.29 0.0181602 0.0160495 127 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.44 vpr 53.53 MiB -1 -1 0.16 17912 1 0.02 -1 -1 29760 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 15.2 MiB 0.28 1417 53.5 MiB 0.12 0.00 4.40441 -137.453 -4.40441 4.40441 1.00 0.000264203 0.000212745 0.0191426 0.0158427 32 3308 41 6.64007e+06 364182 554710. 1919.41 1.69 0.105254 0.0911026 22834 132086 -1 2710 20 1762 2876 198556 47613 0 0 198556 47613 2876 2339 0 0 10949 9260 0 0 16728 13122 0 0 2876 2473 0 0 80686 10717 0 0 84441 9702 0 0 2876 0 0 1114 1241 1159 8996 0 0 4.55228 4.55228 -156.172 -4.55228 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0218209 0.0197257 169 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.20 vpr 53.39 MiB -1 -1 0.15 17464 1 0.01 -1 -1 29740 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54672 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 14.8 MiB 0.11 987 53.4 MiB 0.08 0.00 3.50652 -107.562 -3.50652 3.50652 0.96 0.000219541 0.000176689 0.0120686 0.0101071 26 2343 23 6.64007e+06 401856 477104. 1650.88 2.33 0.119882 0.105521 21682 110474 -1 2006 21 1266 1996 123318 29731 0 0 123318 29731 1996 1451 0 0 7217 5698 0 0 10658 8240 0 0 1996 1561 0 0 50081 6460 0 0 51370 6321 0 0 1996 0 0 730 856 878 6876 0 0 3.25677 3.25677 -121.832 -3.25677 0 0 585099. 2024.56 0.18 0.04 0.09 -1 -1 0.18 0.0104067 0.00926814 133 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 6.09 vpr 53.05 MiB -1 -1 0.16 17344 1 0.01 -1 -1 29668 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 14.4 MiB 0.06 762 53.1 MiB 0.06 0.00 2.7859 -87.0748 -2.7859 2.7859 1.03 0.000199082 0.000161165 0.0104533 0.00874861 30 1659 20 6.64007e+06 326508 526063. 1820.29 2.70 0.0779694 0.0666176 22546 126617 -1 1530 19 861 1536 83950 20558 0 0 83950 20558 1536 1003 0 0 5254 4432 0 0 7155 5713 0 0 1536 1114 0 0 33375 4252 0 0 35094 4044 0 0 1536 0 0 675 701 811 6125 0 0 2.68857 2.68857 -99.1432 -2.68857 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0132215 0.011824 104 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.80 vpr 53.68 MiB -1 -1 0.18 17764 1 0.02 -1 -1 29804 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 15.5 MiB 0.37 1347 53.7 MiB 0.15 0.00 5.15149 -153.628 -5.15149 5.15149 1.01 0.00029468 0.000243159 0.028043 0.0234129 32 3111 21 6.64007e+06 339066 554710. 1919.41 1.10 0.0857928 0.0739579 22834 132086 -1 2653 20 1931 2781 184157 42988 0 0 184157 42988 2781 2291 0 0 10371 8702 0 0 15855 12061 0 0 2781 2453 0 0 76147 8891 0 0 76222 8590 0 0 2781 0 0 850 1005 1144 8116 0 0 5.17674 5.17674 -169.727 -5.17674 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.02096 0.0188986 170 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.40 vpr 53.35 MiB -1 -1 0.15 17496 1 0.02 -1 -1 29648 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 14.7 MiB 0.16 913 53.4 MiB 0.06 0.00 3.69147 -113.746 -3.69147 3.69147 1.01 0.000240981 0.00019865 0.0098862 0.00833787 32 2150 19 6.64007e+06 414414 554710. 1919.41 0.97 0.0538277 0.0466002 22834 132086 -1 1913 18 1277 2014 132462 30284 0 0 132462 30284 2014 1439 0 0 7210 5899 0 0 11333 8501 0 0 2014 1606 0 0 52089 7001 0 0 57802 5838 0 0 2014 0 0 737 976 918 7269 0 0 3.64783 3.64783 -125.589 -3.64783 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0139383 0.0124563 130 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.49 vpr 52.73 MiB -1 -1 0.14 16960 1 0.01 -1 -1 29580 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53992 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 14.1 MiB 0.07 875 52.7 MiB 0.07 0.00 2.8441 -84.0966 -2.8441 2.8441 0.94 0.000156119 0.000126349 0.0108751 0.00894463 26 1931 19 6.64007e+06 288834 477104. 1650.88 0.68 0.030467 0.0258826 21682 110474 -1 1727 21 984 1774 125047 28820 0 0 125047 28820 1774 1232 0 0 6504 5512 0 0 9917 7499 0 0 1774 1371 0 0 53311 6337 0 0 51767 6869 0 0 1774 0 0 790 1029 1258 7593 0 0 2.90117 2.90117 -101.126 -2.90117 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.0117815 0.0104992 100 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 8.32 vpr 53.54 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29732 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54824 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 15.0 MiB 0.11 996 53.5 MiB 0.06 0.00 4.55432 -111.157 -4.55432 4.55432 1.03 0.000136765 0.000111487 0.0107316 0.0090171 28 2710 26 6.64007e+06 426972 500653. 1732.36 4.90 0.111987 0.0976318 21970 115934 -1 2122 19 1118 2303 148271 35459 0 0 148271 35459 2303 1483 0 0 7962 6247 0 0 11690 9011 0 0 2303 1604 0 0 59784 8467 0 0 64229 8647 0 0 2303 0 0 1185 2196 2455 14043 0 0 4.31888 4.31888 -132.825 -4.31888 0 0 612192. 2118.31 0.27 0.06 0.10 -1 -1 0.27 0.0166158 0.0149266 139 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 5.23 vpr 52.83 MiB -1 -1 0.14 16980 1 0.01 -1 -1 29644 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 14.4 MiB 0.06 636 52.8 MiB 0.06 0.00 2.7651 -83.8458 -2.7651 2.7651 0.94 0.00018351 0.000143329 0.00839125 0.00691915 30 1668 20 6.64007e+06 251160 526063. 1820.29 2.05 0.075828 0.0654701 22546 126617 -1 1377 19 869 1552 82194 20493 0 0 82194 20493 1552 1082 0 0 5146 4083 0 0 6847 5400 0 0 1552 1201 0 0 34201 4354 0 0 32896 4373 0 0 1552 0 0 683 553 798 5494 0 0 2.64177 2.64177 -96.5673 -2.64177 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0120386 0.0107695 104 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.71 vpr 53.00 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29704 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54276 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 14.4 MiB 0.11 872 53.0 MiB 0.07 0.00 3.22421 -90.956 -3.22421 3.22421 0.70 0.000113449 9.1407e-05 0.0106156 0.00866711 30 1720 19 6.64007e+06 414414 526063. 1820.29 0.74 0.0408236 0.0346337 22546 126617 -1 1560 19 723 1403 82478 18554 0 0 82478 18554 1403 844 0 0 4644 3826 0 0 6463 4995 0 0 1403 943 0 0 36649 3562 0 0 31916 4384 0 0 1403 0 0 680 707 852 6224 0 0 2.84657 2.84657 -100.54 -2.84657 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.0122726 0.0109427 105 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 6.30 vpr 53.54 MiB -1 -1 0.15 17340 1 0.01 -1 -1 29836 -1 -1 26 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 15.0 MiB 0.22 917 53.5 MiB 0.12 0.00 3.84787 -110.757 -3.84787 3.84787 1.01 0.000237358 0.000192812 0.0223153 0.0185219 32 2433 25 6.64007e+06 326508 554710. 1919.41 2.89 0.135301 0.116273 22834 132086 -1 2102 21 1534 2296 146756 35138 0 0 146756 35138 2296 1807 0 0 8109 6700 0 0 12493 9322 0 0 2296 1897 0 0 61172 7509 0 0 60390 7903 0 0 2296 0 0 762 811 683 6134 0 0 3.82483 3.82483 -127.869 -3.82483 0 0 701300. 2426.64 0.30 0.06 0.11 -1 -1 0.30 0.0161655 0.014456 139 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.76 vpr 53.36 MiB -1 -1 0.18 17564 1 0.02 -1 -1 29700 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54640 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 14.8 MiB 0.13 925 53.4 MiB 0.06 0.00 3.64276 -112.993 -3.64276 3.64276 1.01 0.000234017 0.000190535 0.00972625 0.00819596 28 2144 24 6.64007e+06 301392 500653. 1732.36 2.32 0.0907531 0.0779286 21970 115934 -1 1945 22 1459 2270 151414 35459 0 0 151414 35459 2270 1692 0 0 8269 6640 0 0 12231 9773 0 0 2270 1839 0 0 65249 7443 0 0 61125 8072 0 0 2270 0 0 811 764 955 6990 0 0 3.79303 3.79303 -130.827 -3.79303 0 0 612192. 2118.31 0.29 0.07 0.11 -1 -1 0.29 0.0191646 0.0170997 130 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 6.14 vpr 53.41 MiB -1 -1 0.17 17676 1 0.01 -1 -1 29804 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54696 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 14.7 MiB 0.09 1055 53.4 MiB 0.12 0.00 3.83895 -115.935 -3.83895 3.83895 0.89 0.000246178 0.000201695 0.0204626 0.0170593 32 2456 18 6.64007e+06 351624 554710. 1919.41 3.06 0.126473 0.108433 22834 132086 -1 2151 19 1242 2252 155825 35419 0 0 155825 35419 2252 1629 0 0 8173 6887 0 0 12566 9549 0 0 2252 1883 0 0 66925 7475 0 0 63657 7996 0 0 2252 0 0 1010 1222 1132 8562 0 0 3.51823 3.51823 -128.445 -3.51823 0 0 701300. 2426.64 0.28 0.05 0.12 -1 -1 0.28 0.0125194 0.0111852 133 48 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.59 vpr 53.07 MiB -1 -1 0.14 17560 1 0.01 -1 -1 29748 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54340 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 14.5 MiB 0.27 918 53.1 MiB 0.04 0.00 3.75438 -111.435 -3.75438 3.75438 0.68 0.000102419 8.299e-05 0.00636936 0.00527249 26 2221 18 6.64007e+06 213486 477104. 1650.88 0.53 0.0264194 0.0225817 21682 110474 -1 1889 18 941 1289 91196 21957 0 0 91196 21957 1289 1080 0 0 4826 3919 0 0 6998 5594 0 0 1289 1122 0 0 38356 4936 0 0 38438 5306 0 0 1289 0 0 348 397 372 3160 0 0 3.51843 3.51843 -124.499 -3.51843 0 0 585099. 2024.56 0.27 0.05 0.08 -1 -1 0.27 0.0152421 0.0138606 105 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.65 vpr 53.19 MiB -1 -1 0.12 17484 1 0.02 -1 -1 29760 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 14.7 MiB 0.25 901 53.2 MiB 0.05 0.00 3.24616 -105.943 -3.24616 3.24616 0.89 0.000110873 8.8376e-05 0.00944615 0.00770131 32 2143 21 6.64007e+06 238602 554710. 1919.41 0.56 0.0311741 0.0263817 22834 132086 -1 1816 18 1142 1696 116135 26730 0 0 116135 26730 1696 1347 0 0 6047 5021 0 0 9264 6956 0 0 1696 1443 0 0 48514 6152 0 0 48918 5811 0 0 1696 0 0 554 507 508 4373 0 0 3.07163 3.07163 -116.196 -3.07163 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00810894 0.0072483 113 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.64 vpr 53.17 MiB -1 -1 0.18 17508 1 0.01 -1 -1 29664 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54444 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 14.6 MiB 0.10 1034 53.2 MiB 0.06 0.00 2.9203 -83.2961 -2.9203 2.9203 0.60 0.000119252 9.4932e-05 0.00942528 0.00771156 26 2432 22 6.64007e+06 414414 477104. 1650.88 2.14 0.0814517 0.0698467 21682 110474 -1 2067 18 1028 1749 134027 28998 0 0 134027 28998 1749 1268 0 0 6340 5015 0 0 9584 7324 0 0 1749 1365 0 0 57975 7135 0 0 56630 6891 0 0 1749 0 0 721 1154 1281 7833 0 0 3.12537 3.12537 -102.23 -3.12537 0 0 585099. 2024.56 0.27 0.06 0.10 -1 -1 0.27 0.0169009 0.0152367 123 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 5.30 vpr 52.94 MiB -1 -1 0.16 17484 1 0.02 -1 -1 29752 -1 -1 35 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54208 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 14.3 MiB 0.06 819 52.9 MiB 0.11 0.00 3.52655 -87.4544 -3.52655 3.52655 0.96 0.000196316 0.000161223 0.0146311 0.0118416 28 1999 22 6.64007e+06 439530 500653. 1732.36 2.14 0.070985 0.0605425 21970 115934 -1 1720 16 825 1555 94886 22639 0 0 94886 22639 1555 951 0 0 5585 4468 0 0 8011 6321 0 0 1555 1040 0 0 38161 5115 0 0 40019 4744 0 0 1555 0 0 730 1073 1107 7651 0 0 3.67263 3.67263 -105.082 -3.67263 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.012741 0.0114951 115 20 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.67 vpr 53.11 MiB -1 -1 0.17 17420 1 0.01 -1 -1 29876 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54380 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 14.5 MiB 0.14 753 53.1 MiB 0.07 0.00 3.29461 -94.272 -3.29461 3.29461 1.01 0.000205262 0.000164259 0.0139716 0.0115111 30 1907 30 6.64007e+06 226044 526063. 1820.29 3.14 0.125523 0.107467 22546 126617 -1 1501 20 1066 1832 105155 27017 0 0 105155 27017 1832 1286 0 0 6148 4902 0 0 7972 6401 0 0 1832 1418 0 0 42313 6688 0 0 45058 6322 0 0 1832 0 0 766 766 816 6074 0 0 3.05117 3.05117 -106.8 -3.05117 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0152893 0.0136365 108 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.13 vpr 53.18 MiB -1 -1 0.11 17648 1 0.02 -1 -1 29796 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 14.6 MiB 0.22 1048 53.2 MiB 0.09 0.00 3.14796 -108.689 -3.14796 3.14796 0.90 0.000295238 0.000244951 0.0163457 0.0141193 32 2255 19 6.64007e+06 263718 554710. 1919.41 0.82 0.0535226 0.0462161 22834 132086 -1 1964 19 1151 1726 118148 26003 0 0 118148 26003 1726 1272 0 0 5991 4790 0 0 8979 6602 0 0 1726 1544 0 0 50511 5973 0 0 49215 5822 0 0 1726 0 0 575 525 457 4433 0 0 2.97343 2.97343 -119.106 -2.97343 0 0 701300. 2426.64 0.22 0.05 0.07 -1 -1 0.22 0.0151585 0.0135189 121 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.57 vpr 53.04 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29728 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54316 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 14.6 MiB 0.05 1027 53.0 MiB 0.12 0.00 3.58627 -107.127 -3.58627 3.58627 0.97 0.000208067 0.000170817 0.0177424 0.0147043 30 2241 22 6.64007e+06 401856 526063. 1820.29 2.76 0.122191 0.107402 22546 126617 -1 1979 19 1103 1994 107486 25153 0 0 107486 25153 1994 1315 0 0 6693 5305 0 0 9085 7232 0 0 1994 1573 0 0 45103 4681 0 0 42617 5047 0 0 1994 0 0 891 1018 1032 7625 0 0 3.57043 3.57043 -121.114 -3.57043 0 0 666494. 2306.21 0.19 0.03 0.07 -1 -1 0.19 0.00825856 0.00741389 127 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.54 vpr 53.52 MiB -1 -1 0.16 17648 1 0.01 -1 -1 29652 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 15.0 MiB 0.31 1171 53.5 MiB 0.09 0.00 4.22773 -138.276 -4.22773 4.22773 1.02 0.000121503 9.7444e-05 0.014365 0.0118751 28 2913 24 6.64007e+06 301392 500653. 1732.36 3.10 0.125922 0.109671 21970 115934 -1 2581 20 1489 2230 154494 35707 0 0 154494 35707 2230 1863 0 0 7905 6424 0 0 11526 9128 0 0 2230 1953 0 0 66232 8164 0 0 64371 8175 0 0 2230 0 0 741 752 684 5983 0 0 4.46508 4.46508 -158.544 -4.46508 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00986587 0.00885332 146 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.96 vpr 53.66 MiB -1 -1 0.17 17276 1 0.02 -1 -1 29816 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 15.0 MiB 0.18 1096 53.7 MiB 0.07 0.00 4.17072 -122.236 -4.17072 4.17072 0.86 0.00015071 0.000123313 0.01208 0.00993936 32 2451 19 6.64007e+06 426972 554710. 1919.41 0.79 0.0527639 0.0451921 22834 132086 -1 2140 24 1321 2225 146845 34186 0 0 146845 34186 2225 1643 0 0 8038 6805 0 0 12833 9540 0 0 2225 1729 0 0 60898 7352 0 0 60626 7117 0 0 2225 0 0 904 951 956 7808 0 0 4.02748 4.02748 -137.106 -4.02748 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0192262 0.0171024 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.64 vpr 53.52 MiB -1 -1 0.14 17680 1 0.02 -1 -1 29676 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 15.0 MiB 0.14 1122 53.5 MiB 0.07 0.00 3.58327 -116.354 -3.58327 3.58327 0.60 0.00013861 0.000112382 0.00922059 0.0075752 28 2544 21 6.64007e+06 464646 500653. 1732.36 0.78 0.0507611 0.04399 21970 115934 -1 2225 17 1245 2197 134856 32162 0 0 134856 32162 2197 1451 0 0 7816 6360 0 0 11559 9029 0 0 2197 1619 0 0 56615 6825 0 0 54472 6878 0 0 2197 0 0 952 1140 1075 8360 0 0 3.55223 3.55223 -132.959 -3.55223 0 0 612192. 2118.31 0.29 0.07 0.09 -1 -1 0.29 0.0225405 0.0204168 140 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.69 vpr 52.95 MiB -1 -1 0.13 17512 1 0.02 -1 -1 29708 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54216 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 14.4 MiB 0.11 782 52.9 MiB 0.05 0.00 3.00301 -92.2666 -3.00301 3.00301 0.60 0.000106185 8.5648e-05 0.00817489 0.00672947 26 2159 23 6.64007e+06 238602 477104. 1650.88 2.09 0.0738608 0.0639606 21682 110474 -1 1802 21 1122 1874 140581 31906 0 0 140581 31906 1874 1537 0 0 6770 5653 0 0 10215 7849 0 0 1874 1630 0 0 61959 7474 0 0 57889 7763 0 0 1874 0 0 752 673 813 6000 0 0 3.09217 3.09217 -112.077 -3.09217 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0145683 0.012949 104 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.79 vpr 53.57 MiB -1 -1 0.16 17540 1 0.01 -1 -1 29688 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54856 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 15.0 MiB 0.17 968 53.6 MiB 0.06 0.00 3.80967 -114.716 -3.80967 3.80967 0.92 0.00023913 0.000193522 0.0111614 0.00941255 26 2630 42 6.64007e+06 288834 477104. 1650.88 2.40 0.117487 0.102874 21682 110474 -1 2168 23 1784 2760 239334 50710 0 0 239334 50710 2760 2227 0 0 9901 8188 0 0 15727 11838 0 0 2760 2344 0 0 108070 12226 0 0 100116 13887 0 0 2760 0 0 976 1068 1080 8434 0 0 3.87103 3.87103 -135.728 -3.87103 0 0 585099. 2024.56 0.25 0.08 0.10 -1 -1 0.25 0.0205874 0.0183824 138 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 7.84 vpr 53.30 MiB -1 -1 0.16 17516 1 0.02 -1 -1 29792 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 14.9 MiB 0.16 1216 53.3 MiB 0.06 0.00 4.18044 -127.998 -4.18044 4.18044 0.61 0.000132623 0.000107584 0.00913854 0.00751675 26 2987 36 6.64007e+06 326508 477104. 1650.88 5.21 0.119274 0.103725 21682 110474 -1 2505 19 1633 2573 194587 43177 0 0 194587 43177 2573 2074 0 0 9409 7736 0 0 13980 10737 0 0 2573 2193 0 0 82225 10413 0 0 83827 10024 0 0 2573 0 0 940 1455 1870 10530 0 0 4.23643 4.23643 -145.234 -4.23643 0 0 585099. 2024.56 0.25 0.07 0.09 -1 -1 0.25 0.016979 0.0153225 140 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.49 vpr 53.41 MiB -1 -1 0.11 17348 1 0.01 -1 -1 29752 -1 -1 30 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54696 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 15.0 MiB 0.18 1079 53.4 MiB 0.12 0.00 4.22421 -124.775 -4.22421 4.22421 0.69 0.000223036 0.000181444 0.0200858 0.0166338 32 2481 27 6.64007e+06 376740 554710. 1919.41 0.82 0.0536285 0.0456618 22834 132086 -1 2210 20 1302 1955 143226 31946 0 0 143226 31946 1955 1605 0 0 7272 5964 0 0 10556 8243 0 0 1955 1716 0 0 63585 6662 0 0 57903 7756 0 0 1955 0 0 653 697 686 5917 0 0 4.17788 4.17788 -138.054 -4.17788 0 0 701300. 2426.64 0.25 0.06 0.10 -1 -1 0.25 0.0176912 0.0156983 148 43 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.18 vpr 53.45 MiB -1 -1 0.18 17352 1 0.02 -1 -1 29696 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54732 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 15.0 MiB 0.20 955 53.4 MiB 0.12 0.00 3.42407 -103.017 -3.42407 3.42407 0.94 0.000240957 0.000198791 0.0209666 0.0172099 32 2216 22 6.64007e+06 414414 554710. 1919.41 0.83 0.0634247 0.0536572 22834 132086 -1 1813 21 1168 1957 125923 29542 0 0 125923 29542 1957 1421 0 0 7198 5901 0 0 10985 8391 0 0 1957 1696 0 0 50815 6397 0 0 53011 5736 0 0 1957 0 0 789 908 743 6635 0 0 3.18063 3.18063 -115.658 -3.18063 0 0 701300. 2426.64 0.20 0.03 0.07 -1 -1 0.20 0.0109362 0.00983313 135 78 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.56 vpr 53.32 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29764 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 14.9 MiB 0.13 1097 53.3 MiB 0.12 0.00 4.09306 -121.368 -4.09306 4.09306 1.02 0.000272272 0.000225674 0.0197935 0.0165516 32 2595 19 6.64007e+06 263718 554710. 1919.41 1.00 0.0674262 0.0580804 22834 132086 -1 2302 17 1366 2373 160672 36584 0 0 160672 36584 2373 1616 0 0 8420 6947 0 0 13055 9600 0 0 2373 1829 0 0 65525 8512 0 0 68926 8080 0 0 2373 0 0 1007 915 1039 7786 0 0 3.87083 3.87083 -142.314 -3.87083 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0166306 0.0149913 134 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.99 vpr 53.34 MiB -1 -1 0.15 17404 1 0.02 -1 -1 29740 -1 -1 31 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54624 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 14.9 MiB 0.18 979 53.3 MiB 0.10 0.00 4.03206 -115.193 -4.03206 4.03206 1.02 0.000243272 0.000187724 0.016881 0.0139468 30 1959 21 6.64007e+06 389298 526063. 1820.29 2.49 0.0950871 0.0806839 22546 126617 -1 1750 16 892 1429 69362 17596 0 0 69362 17596 1429 979 0 0 4870 3928 0 0 6289 5141 0 0 1429 1023 0 0 27328 3474 0 0 28017 3051 0 0 1429 0 0 537 609 340 4239 0 0 3.53623 3.53623 -124.388 -3.53623 0 0 666494. 2306.21 0.29 0.05 0.11 -1 -1 0.29 0.0173788 0.0157337 132 79 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.27 vpr 52.62 MiB -1 -1 0.09 16960 1 0.01 -1 -1 29696 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53880 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 14.0 MiB 0.05 723 52.6 MiB 0.05 0.00 3.02901 -92.9822 -3.02901 3.02901 0.62 9.5003e-05 7.6216e-05 0.0088096 0.00721915 28 1718 21 6.64007e+06 188370 500653. 1732.36 2.03 0.0698171 0.0596411 21970 115934 -1 1614 21 927 1436 108654 24804 0 0 108654 24804 1436 1240 0 0 5141 4135 0 0 7667 5981 0 0 1436 1290 0 0 47827 5885 0 0 45147 6273 0 0 1436 0 0 509 606 557 4228 0 0 3.14437 3.14437 -108.665 -3.14437 0 0 612192. 2118.31 0.18 0.04 0.06 -1 -1 0.18 0.01143 0.0101608 96 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.70 vpr 53.37 MiB -1 -1 0.16 17500 1 0.02 -1 -1 29656 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 14.9 MiB 0.25 909 53.4 MiB 0.12 0.00 3.69947 -111.39 -3.69947 3.69947 1.02 0.000251787 0.000204743 0.0199185 0.0164266 32 2389 22 6.64007e+06 401856 554710. 1919.41 1.04 0.0673538 0.0576464 22834 132086 -1 2021 22 1269 2121 174308 37498 0 0 174308 37498 2121 1752 0 0 7781 6380 0 0 11943 9081 0 0 2121 1851 0 0 79298 8639 0 0 71044 9795 0 0 2121 0 0 852 1091 894 7464 0 0 3.70183 3.70183 -128.887 -3.70183 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0207352 0.0186297 132 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.61 vpr 53.48 MiB -1 -1 0.18 17676 1 0.01 -1 -1 29820 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 15.0 MiB 0.17 1111 53.5 MiB 0.10 0.00 3.95187 -126.029 -3.95187 3.95187 0.93 0.000239825 0.000197071 0.0182003 0.0149992 32 2479 23 6.64007e+06 276276 554710. 1919.41 2.41 0.0932342 0.0790605 22834 132086 -1 2276 22 1980 3203 214994 49845 0 0 214994 49845 3203 2377 0 0 11683 9726 0 0 19068 14069 0 0 3203 2589 0 0 86494 10721 0 0 91343 10363 0 0 3203 0 0 1223 1382 1372 10300 0 0 4.06523 4.06523 -144.101 -4.06523 0 0 701300. 2426.64 0.19 0.05 0.07 -1 -1 0.19 0.0110766 0.0098401 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.47 vpr 53.05 MiB -1 -1 0.08 17468 1 0.02 -1 -1 29756 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 14.5 MiB 0.25 962 53.1 MiB 0.08 0.00 3.43261 -105.637 -3.43261 3.43261 1.04 0.000205385 0.000172233 0.0138753 0.0116298 26 2304 19 6.64007e+06 251160 477104. 1650.88 0.98 0.0566077 0.0494563 21682 110474 -1 1915 20 1040 1385 101667 23226 0 0 101667 23226 1385 1201 0 0 5101 4222 0 0 7429 5807 0 0 1385 1260 0 0 43685 5269 0 0 42682 5467 0 0 1385 0 0 345 274 280 2990 0 0 3.20083 3.20083 -116.26 -3.20083 0 0 585099. 2024.56 0.26 0.05 0.10 -1 -1 0.26 0.0131838 0.0118021 109 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 5.28 vpr 52.77 MiB -1 -1 0.15 16880 1 0.02 -1 -1 29660 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54036 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 14.3 MiB 0.05 881 52.8 MiB 0.07 0.00 3.02901 -93.2662 -3.02901 3.02901 1.02 0.000175811 0.000141482 0.011945 0.00986995 30 1743 19 6.64007e+06 263718 526063. 1820.29 1.94 0.0748915 0.0643872 22546 126617 -1 1631 21 995 1666 96665 22106 0 0 96665 22106 1666 1206 0 0 5558 4272 0 0 7226 5804 0 0 1666 1332 0 0 39007 5042 0 0 41542 4450 0 0 1666 0 0 671 671 626 5378 0 0 2.76557 2.76557 -105.353 -2.76557 0 0 666494. 2306.21 0.28 0.04 0.10 -1 -1 0.28 0.0122281 0.0108643 106 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.78 vpr 53.68 MiB -1 -1 0.16 17324 1 0.02 -1 -1 29812 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 15.0 MiB 0.26 1109 53.7 MiB 0.14 0.00 4.18573 -134.334 -4.18573 4.18573 1.00 0.000239336 0.000194132 0.0227366 0.018769 28 3032 27 6.64007e+06 326508 500653. 1732.36 3.15 0.12858 0.111104 21970 115934 -1 2587 21 1818 2464 224352 48457 0 0 224352 48457 2464 2093 0 0 8974 7420 0 0 13109 10454 0 0 2464 2173 0 0 99528 13514 0 0 97813 12803 0 0 2464 0 0 646 720 735 5887 0 0 4.36909 4.36909 -163.101 -4.36909 0 0 612192. 2118.31 0.27 0.09 0.09 -1 -1 0.27 0.0253359 0.0230598 144 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.56 vpr 53.64 MiB -1 -1 0.16 17652 1 0.01 -1 -1 29736 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 15.0 MiB 0.15 1185 53.6 MiB 0.12 0.00 4.18102 -130.32 -4.18102 4.18102 1.00 0.000245724 0.000200762 0.020307 0.0168578 28 2775 21 6.64007e+06 364182 500653. 1732.36 1.23 0.0745533 0.0644628 21970 115934 -1 2445 20 1577 2470 176864 38778 0 0 176864 38778 2470 1844 0 0 8467 6609 0 0 12636 9557 0 0 2470 2078 0 0 76724 8879 0 0 74097 9811 0 0 2470 0 0 893 939 1051 7913 0 0 4.41048 4.41048 -147.886 -4.41048 0 0 612192. 2118.31 0.29 0.08 0.09 -1 -1 0.29 0.020521 0.0183564 155 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.94 vpr 53.51 MiB -1 -1 0.09 17324 1 0.01 -1 -1 29716 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 14.8 MiB 0.09 1217 53.5 MiB 0.13 0.00 4.49732 -123.789 -4.49732 4.49732 0.66 0.000253059 0.000204981 0.0192718 0.0159542 24 3445 33 6.64007e+06 452088 448715. 1552.65 3.01 0.0864362 0.07502 21394 104001 -1 2667 21 1667 2802 216487 48565 0 0 216487 48565 2802 2190 0 0 10480 8294 0 0 15617 11635 0 0 2802 2364 0 0 95731 11798 0 0 89055 12284 0 0 2802 0 0 1135 1395 1487 10551 0 0 4.84388 4.84388 -153.071 -4.84388 0 0 554710. 1919.41 0.24 0.08 0.10 -1 -1 0.24 0.0197301 0.017778 153 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.80 vpr 53.18 MiB -1 -1 0.15 17492 1 0.01 -1 -1 29860 -1 -1 32 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 14.7 MiB 0.14 941 53.2 MiB 0.08 0.00 2.7269 -84.2568 -2.7269 2.7269 0.99 0.000211253 0.000170571 0.012092 0.0100161 32 2070 16 6.64007e+06 401856 554710. 1919.41 2.40 0.0887467 0.0751733 22834 132086 -1 1866 23 1438 2469 162403 37070 0 0 162403 37070 2469 1749 0 0 8941 7230 0 0 14259 10385 0 0 2469 2089 0 0 68568 7674 0 0 65697 7943 0 0 2469 0 0 1031 1250 1119 8739 0 0 2.80477 2.80477 -101.175 -2.80477 0 0 701300. 2426.64 0.28 0.05 0.11 -1 -1 0.28 0.0120225 0.0106789 121 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.56 vpr 52.83 MiB -1 -1 0.14 17204 1 0.02 -1 -1 29912 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 14.4 MiB 0.05 715 52.8 MiB 0.04 0.00 2.8251 -80.2893 -2.8251 2.8251 0.76 0.000126144 9.2573e-05 0.00725578 0.00595269 32 1515 21 6.64007e+06 263718 554710. 1919.41 0.74 0.0352169 0.029753 22834 132086 -1 1351 22 1078 1595 113825 26607 0 0 113825 26607 1595 1254 0 0 6021 5035 0 0 9930 7657 0 0 1595 1336 0 0 47007 5691 0 0 47677 5634 0 0 1595 0 0 517 608 584 4620 0 0 2.87997 2.87997 -95.1792 -2.87997 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00743619 0.00656913 97 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.42 vpr 53.57 MiB -1 -1 0.13 17748 1 0.02 -1 -1 29880 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54856 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 15.2 MiB 0.26 1381 53.6 MiB 0.13 0.00 3.46936 -117.004 -3.46936 3.46936 0.96 0.00025214 0.000199089 0.0245574 0.0200913 28 3428 21 6.64007e+06 326508 500653. 1732.36 1.16 0.0698621 0.0597211 21970 115934 -1 2824 21 1835 3049 212412 46712 0 0 212412 46712 3049 2375 0 0 10444 8471 0 0 15884 12111 0 0 3049 2496 0 0 91728 10483 0 0 88258 10776 0 0 3049 0 0 1214 1443 1313 9959 0 0 3.91103 3.91103 -137.533 -3.91103 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0116329 0.0103494 170 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.63 vpr 53.37 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29732 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 14.9 MiB 0.32 843 53.4 MiB 0.11 0.00 4.40113 -127.812 -4.40113 4.40113 0.96 0.000239939 0.000189173 0.0217947 0.0178983 32 2838 48 6.64007e+06 288834 554710. 1919.41 1.19 0.087452 0.0754742 22834 132086 -1 2135 24 1582 2578 193181 47947 0 0 193181 47947 2578 2259 0 0 9555 7854 0 0 15470 11462 0 0 2578 2351 0 0 79728 12333 0 0 83272 11688 0 0 2578 0 0 996 1358 1338 9128 0 0 4.74788 4.74788 -149.657 -4.74788 0 0 701300. 2426.64 0.21 0.05 0.08 -1 -1 0.21 0.0124152 0.0109803 152 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.83 vpr 53.31 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29716 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 14.8 MiB 0.32 924 53.3 MiB 0.11 0.00 3.86515 -111.058 -3.86515 3.86515 0.87 0.000225917 0.000172364 0.0193852 0.0159196 32 2345 20 6.64007e+06 238602 554710. 1919.41 2.44 0.106643 0.0907693 22834 132086 -1 1944 16 1052 1536 104578 24438 0 0 104578 24438 1536 1286 0 0 5563 4560 0 0 8366 6238 0 0 1536 1333 0 0 44334 5580 0 0 43243 5441 0 0 1536 0 0 484 353 484 3935 0 0 3.83082 3.83082 -127.381 -3.83082 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0140956 0.0127729 128 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.72 vpr 53.37 MiB -1 -1 0.11 17500 1 0.02 -1 -1 29672 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 14.8 MiB 0.07 954 53.4 MiB 0.08 0.00 4.24618 -108.493 -4.24618 4.24618 0.77 0.000118669 9.4762e-05 0.011364 0.00921228 30 2269 22 6.64007e+06 376740 526063. 1820.29 2.80 0.102768 0.0876144 22546 126617 -1 1777 19 954 1564 93721 21530 0 0 93721 21530 1564 1130 0 0 5271 3990 0 0 6973 5640 0 0 1564 1241 0 0 40135 4690 0 0 38214 4839 0 0 1564 0 0 610 617 595 5026 0 0 3.61042 3.61042 -118.868 -3.61042 0 0 666494. 2306.21 0.20 0.05 0.08 -1 -1 0.20 0.0152727 0.0136705 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.23 vpr 53.40 MiB -1 -1 0.16 17592 1 0.02 -1 -1 29732 -1 -1 34 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54680 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 14.8 MiB 0.15 1045 53.4 MiB 0.14 0.00 4.02106 -114.421 -4.02106 4.02106 0.93 0.000248206 0.000199986 0.0239852 0.0199223 30 2071 18 6.64007e+06 426972 526063. 1820.29 2.88 0.131556 0.112482 22546 126617 -1 1813 16 776 1267 68557 16673 0 0 68557 16673 1267 890 0 0 4449 3467 0 0 5501 4629 0 0 1267 969 0 0 27718 3443 0 0 28355 3275 0 0 1267 0 0 491 624 680 4908 0 0 3.62562 3.62562 -124.029 -3.62562 0 0 666494. 2306.21 0.22 0.03 0.12 -1 -1 0.22 0.0097722 0.00885739 145 46 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.30 vpr 53.35 MiB -1 -1 0.16 17280 1 0.01 -1 -1 29716 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54628 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 14.8 MiB 0.13 999 53.3 MiB 0.08 0.00 2.8933 -92.6295 -2.8933 2.8933 0.67 0.000221453 0.000181834 0.013131 0.0108805 32 2352 19 6.64007e+06 389298 554710. 1919.41 2.57 0.101493 0.0861898 22834 132086 -1 2048 20 1121 1981 141306 31950 0 0 141306 31950 1981 1422 0 0 7294 5952 0 0 11453 8636 0 0 1981 1585 0 0 58284 7461 0 0 60313 6894 0 0 1981 0 0 860 1086 1009 7534 0 0 3.00217 3.00217 -107.751 -3.00217 0 0 701300. 2426.64 0.21 0.03 0.12 -1 -1 0.21 0.0088715 0.00792002 124 46 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.88 vpr 53.44 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29644 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1205 53.4 MiB 0.14 0.00 4.01133 -129.919 -4.01133 4.01133 0.99 0.000236167 0.000191754 0.0227646 0.0189016 32 2761 24 6.64007e+06 313950 554710. 1919.41 3.18 0.144058 0.124713 22834 132086 -1 2421 20 1881 2887 214443 47174 0 0 214443 47174 2887 2246 0 0 10306 8658 0 0 16028 11745 0 0 2887 2492 0 0 93412 10893 0 0 88923 11140 0 0 2887 0 0 1006 975 1047 7927 0 0 3.98829 3.98829 -143.609 -3.98829 0 0 701300. 2426.64 0.31 0.08 0.12 -1 -1 0.31 0.0194822 0.0175986 148 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.93 vpr 53.62 MiB -1 -1 0.11 17680 1 0.01 -1 -1 29788 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54908 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 15.0 MiB 0.12 1175 53.6 MiB 0.10 0.00 3.95787 -124.511 -3.95787 3.95787 0.96 0.000306108 0.000254461 0.0164697 0.0137341 26 2755 23 6.64007e+06 452088 477104. 1650.88 1.95 0.102023 0.0877355 21682 110474 -1 2322 18 1279 1961 128509 29780 0 0 128509 29780 1961 1410 0 0 7071 5638 0 0 10486 8203 0 0 1961 1542 0 0 53428 6299 0 0 53602 6688 0 0 1961 0 0 682 785 747 5985 0 0 3.62143 3.62143 -136.26 -3.62143 0 0 585099. 2024.56 0.16 0.03 0.06 -1 -1 0.16 0.00983458 0.00881582 144 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.51 vpr 52.97 MiB -1 -1 0.12 17412 1 0.01 -1 -1 29884 -1 -1 17 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54240 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 14.5 MiB 0.07 694 53.0 MiB 0.07 0.00 3.00701 -90.6307 -3.00701 3.00701 0.99 0.000183622 0.000149696 0.0152278 0.0125466 28 1506 22 6.64007e+06 213486 500653. 1732.36 2.38 0.0951231 0.0814188 21970 115934 -1 1444 21 984 1460 109229 25178 0 0 109229 25178 1460 1177 0 0 5469 4436 0 0 7959 6456 0 0 1460 1273 0 0 48105 5770 0 0 44776 6066 0 0 1460 0 0 476 534 573 4077 0 0 2.84177 2.84177 -101.683 -2.84177 0 0 612192. 2118.31 0.28 0.05 0.10 -1 -1 0.28 0.0138156 0.0123077 91 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 6.24 vpr 53.21 MiB -1 -1 0.16 17340 1 0.01 -1 -1 29688 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 14.8 MiB 0.21 936 53.2 MiB 0.08 0.00 3.19816 -104.438 -3.19816 3.19816 0.97 0.000208527 0.000169695 0.0141106 0.0116009 28 2160 20 6.64007e+06 263718 500653. 1732.36 2.80 0.0881585 0.0759898 21970 115934 -1 1891 19 1216 1651 113867 26953 0 0 113867 26953 1651 1355 0 0 6018 5078 0 0 8881 7064 0 0 1651 1440 0 0 45759 6318 0 0 49907 5698 0 0 1651 0 0 435 385 435 3776 0 0 3.44623 3.44623 -122.871 -3.44623 0 0 612192. 2118.31 0.29 0.05 0.11 -1 -1 0.29 0.012912 0.0114411 117 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.39 vpr 53.30 MiB -1 -1 0.15 17592 1 0.01 -1 -1 29728 -1 -1 37 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 14.7 MiB 0.07 988 53.3 MiB 0.09 0.00 3.81067 -104.23 -3.81067 3.81067 1.01 0.000221222 0.000179727 0.015648 0.0132716 26 2404 30 6.64007e+06 464646 477104. 1650.88 1.34 0.0719132 0.0628838 21682 110474 -1 1920 21 1348 2432 147252 35662 0 0 147252 35662 2432 1575 0 0 8658 6914 0 0 13331 10175 0 0 2432 1759 0 0 59901 7798 0 0 60498 7441 0 0 2432 0 0 1084 1294 1600 10258 0 0 3.83283 3.83283 -124.947 -3.83283 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0148358 0.0131608 129 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.54 vpr 53.02 MiB -1 -1 0.15 17680 1 0.02 -1 -1 29864 -1 -1 22 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 14.4 MiB 0.25 810 53.0 MiB 0.09 0.00 3.45927 -96.3797 -3.45927 3.45927 0.96 0.00018606 0.000151864 0.0149356 0.0123264 26 2642 31 6.64007e+06 276276 477104. 1650.88 2.33 0.0679466 0.0581524 21682 110474 -1 1926 19 1233 1622 133934 29871 0 0 133934 29871 1622 1440 0 0 5799 4747 0 0 8398 6415 0 0 1622 1499 0 0 57701 8192 0 0 58792 7578 0 0 1622 0 0 389 367 374 3576 0 0 3.45223 3.45223 -114.747 -3.45223 0 0 585099. 2024.56 0.25 0.05 0.09 -1 -1 0.25 0.0118365 0.0106102 109 25 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.89 vpr 52.90 MiB -1 -1 0.14 17372 1 0.01 -1 -1 29776 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54168 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 14.4 MiB 0.15 858 52.9 MiB 0.08 0.00 3.02501 -96.4425 -3.02501 3.02501 0.75 0.00018789 0.000152788 0.0155499 0.0128855 32 1844 22 6.64007e+06 213486 554710. 1919.41 0.91 0.0499629 0.0426065 22834 132086 -1 1631 20 1241 2125 136463 31494 0 0 136463 31494 2125 1572 0 0 7386 6197 0 0 11963 8707 0 0 2125 1709 0 0 56464 6670 0 0 56400 6639 0 0 2125 0 0 884 809 1033 7035 0 0 3.00317 3.00317 -109.695 -3.00317 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00769276 0.00685016 108 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 6.21 vpr 53.33 MiB -1 -1 0.18 17352 1 0.02 -1 -1 29756 -1 -1 36 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54612 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 14.8 MiB 0.15 961 53.3 MiB 0.08 0.00 3.32061 -101.644 -3.32061 3.32061 1.02 0.000240891 0.000192686 0.0131274 0.0109306 26 2252 23 6.64007e+06 452088 477104. 1650.88 2.81 0.111677 0.0965292 21682 110474 -1 1967 21 1401 2207 139818 32995 0 0 139818 32995 2207 1535 0 0 8012 6558 0 0 11747 8978 0 0 2207 1682 0 0 58057 7077 0 0 57588 7165 0 0 2207 0 0 806 1047 1110 7722 0 0 3.22376 3.22376 -117.601 -3.22376 0 0 585099. 2024.56 0.21 0.04 0.10 -1 -1 0.21 0.0113379 0.0101045 136 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 6.08 vpr 52.95 MiB -1 -1 0.13 17572 1 0.01 -1 -1 29760 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54220 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 14.3 MiB 0.27 804 52.9 MiB 0.07 0.00 3.15716 -98.0967 -3.15716 3.15716 1.02 0.000186547 0.000151328 0.0113792 0.00949803 26 2169 48 6.64007e+06 251160 477104. 1650.88 2.58 0.0902307 0.0776361 21682 110474 -1 1820 18 1081 1516 116057 26328 0 0 116057 26328 1516 1306 0 0 5342 4254 0 0 7839 5984 0 0 1516 1357 0 0 49924 6788 0 0 49920 6639 0 0 1516 0 0 435 422 392 3635 0 0 3.19183 3.19183 -118.905 -3.19183 0 0 585099. 2024.56 0.26 0.05 0.09 -1 -1 0.26 0.0145602 0.013226 107 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.45 vpr 53.30 MiB -1 -1 0.14 17584 1 0.01 -1 -1 29664 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 14.7 MiB 0.12 924 53.3 MiB 0.11 0.00 3.01201 -96.9928 -3.01201 3.01201 0.99 0.000217557 0.000172901 0.0174436 0.0140453 26 2707 41 6.64007e+06 401856 477104. 1650.88 4.11 0.119902 0.103424 21682 110474 -1 2034 22 1268 2184 155363 35482 0 0 155363 35482 2184 1589 0 0 8003 6297 0 0 11437 8919 0 0 2184 1718 0 0 65693 8658 0 0 65862 8301 0 0 2184 0 0 916 1584 1455 9791 0 0 2.79777 2.79777 -111.82 -2.79777 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.018959 0.0169533 127 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.34 vpr 53.50 MiB -1 -1 0.11 17748 1 0.01 -1 -1 29792 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 15.0 MiB 0.29 888 53.5 MiB 0.09 0.00 3.50555 -107.078 -3.50555 3.50555 0.99 0.000248722 0.000207236 0.0147616 0.0123638 32 2180 19 6.64007e+06 401856 554710. 1919.41 0.85 0.058819 0.0503836 22834 132086 -1 1817 19 1289 1875 117083 29016 0 0 117083 29016 1875 1426 0 0 6858 5689 0 0 10630 8146 0 0 1875 1597 0 0 48019 6238 0 0 47826 5920 0 0 1875 0 0 586 718 690 5533 0 0 3.33103 3.33103 -126.524 -3.33103 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.01715 0.0153152 138 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.51 vpr 53.08 MiB -1 -1 0.17 17448 1 0.02 -1 -1 29720 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54352 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 14.5 MiB 0.19 850 53.1 MiB 0.07 0.00 2.6639 -86.0825 -2.6639 2.6639 0.99 0.00019301 0.000155486 0.0142776 0.0117431 32 1899 20 6.64007e+06 213486 554710. 1919.41 2.25 0.0716612 0.0607912 22834 132086 -1 1658 17 969 1518 100027 23293 0 0 100027 23293 1518 1277 0 0 5455 4372 0 0 8322 6285 0 0 1518 1453 0 0 41089 5163 0 0 42125 4743 0 0 1518 0 0 549 599 385 4273 0 0 2.62357 2.62357 -99.5771 -2.62357 0 0 701300. 2426.64 0.19 0.03 0.10 -1 -1 0.19 0.00872479 0.00782389 104 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.89 vpr 53.16 MiB -1 -1 0.14 17280 1 0.02 -1 -1 29668 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54432 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 14.7 MiB 0.26 977 53.2 MiB 0.10 0.00 3.43507 -111.507 -3.43507 3.43507 0.83 0.000578573 0.000539135 0.0168681 0.0139335 32 2185 21 6.64007e+06 263718 554710. 1919.41 0.87 0.0477952 0.0404111 22834 132086 -1 2000 20 1306 1951 145495 32684 0 0 145495 32684 1951 1636 0 0 7277 6071 0 0 10929 8380 0 0 1951 1777 0 0 61134 7636 0 0 62253 7184 0 0 1951 0 0 645 630 539 5055 0 0 3.19163 3.19163 -121.579 -3.19163 0 0 701300. 2426.64 0.27 0.06 0.10 -1 -1 0.27 0.0155237 0.0139861 117 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.63 vpr 53.26 MiB -1 -1 0.13 17468 1 0.01 -1 -1 29744 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 14.6 MiB 0.23 946 53.3 MiB 0.06 0.00 3.94507 -117.623 -3.94507 3.94507 0.98 0.000226061 0.000184965 0.00894671 0.00752608 32 2415 21 6.64007e+06 288834 554710. 1919.41 2.20 0.0781907 0.06626 22834 132086 -1 2049 21 1608 2121 146760 36179 0 0 146760 36179 2121 1773 0 0 8133 6947 0 0 13094 10276 0 0 2121 1900 0 0 60130 7775 0 0 61161 7508 0 0 2121 0 0 513 509 473 4656 0 0 3.89603 3.89603 -132.637 -3.89603 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0179155 0.0160378 130 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.26 vpr 53.26 MiB -1 -1 0.11 17644 1 0.01 -1 -1 29684 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 14.7 MiB 0.11 833 53.3 MiB 0.07 0.00 3.80467 -99.0065 -3.80467 3.80467 0.98 0.000222451 0.000182092 0.0110799 0.00918121 28 2099 20 6.64007e+06 364182 500653. 1732.36 2.09 0.0804892 0.069638 21970 115934 -1 1830 16 836 1416 84748 21249 0 0 84748 21249 1416 1045 0 0 5129 4180 0 0 7496 5970 0 0 1416 1152 0 0 34356 4552 0 0 34935 4350 0 0 1416 0 0 580 671 795 5698 0 0 3.52123 3.52123 -109.058 -3.52123 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.0132781 0.0119347 122 49 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.64 vpr 53.72 MiB -1 -1 0.16 17540 1 0.02 -1 -1 29712 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 14.9 MiB 0.25 963 53.7 MiB 0.11 0.00 4.33064 -135.119 -4.33064 4.33064 0.95 0.000241677 0.000194084 0.0212979 0.0176313 32 2690 50 6.64007e+06 301392 554710. 1919.41 1.19 0.0955791 0.0828483 22834 132086 -1 2212 20 1846 2709 203095 49058 0 0 203095 49058 2709 2229 0 0 10471 9014 0 0 16362 12864 0 0 2709 2325 0 0 88829 10357 0 0 82015 12269 0 0 2709 0 0 863 1008 941 7853 0 0 4.33509 4.33509 -152.349 -4.33509 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0219771 0.0199573 154 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 5.55 vpr 52.61 MiB -1 -1 0.14 16904 1 0.01 -1 -1 29560 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53876 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 14.0 MiB 0.05 593 52.6 MiB 0.07 0.00 2.9943 -79.9285 -2.9943 2.9943 0.97 0.000163852 0.000130787 0.0139598 0.0114972 28 1651 19 6.64007e+06 226044 500653. 1732.36 2.41 0.0781226 0.067144 21970 115934 -1 1434 19 776 1267 76013 19115 0 0 76013 19115 1267 982 0 0 4519 3625 0 0 6477 5154 0 0 1267 1034 0 0 30906 4304 0 0 31577 4016 0 0 1267 0 0 491 554 380 3854 0 0 2.71476 2.71476 -94.5986 -2.71476 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.0121778 0.0109719 96 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 6.20 vpr 53.55 MiB -1 -1 0.14 17716 1 0.01 -1 -1 29740 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 14.9 MiB 0.16 971 53.6 MiB 0.04 0.00 3.39956 -113.266 -3.39956 3.39956 0.78 0.000144668 0.00011777 0.0066849 0.00558912 26 2813 32 6.64007e+06 426972 477104. 1650.88 3.22 0.107521 0.0933687 21682 110474 -1 2275 27 1879 2837 261980 64984 0 0 261980 64984 2837 2372 0 0 10097 7977 0 0 16624 12362 0 0 2837 2463 0 0 113712 20273 0 0 115873 19537 0 0 2837 0 0 958 1315 1255 8929 0 0 4.22383 4.22383 -143.682 -4.22383 0 0 585099. 2024.56 0.25 0.09 0.10 -1 -1 0.25 0.0219693 0.0193871 145 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.16 vpr 53.09 MiB -1 -1 0.15 17648 1 0.02 -1 -1 29684 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54364 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 14.6 MiB 0.17 882 53.1 MiB 0.06 0.00 2.8021 -101.718 -2.8021 2.8021 0.97 0.000236776 0.000189832 0.012636 0.0103799 32 1882 17 6.64007e+06 213486 554710. 1919.41 0.92 0.0527181 0.0447932 22834 132086 -1 1623 20 1243 1792 121510 27193 0 0 121510 27193 1792 1350 0 0 6309 5086 0 0 9878 7300 0 0 1792 1481 0 0 51198 5921 0 0 50541 6055 0 0 1792 0 0 549 498 465 4516 0 0 2.79977 2.79977 -116.458 -2.79977 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.016141 0.014312 114 93 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.33 vpr 53.34 MiB -1 -1 0.09 17500 1 0.02 -1 -1 29720 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54624 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 14.7 MiB 0.13 938 53.3 MiB 0.08 0.00 3.57727 -110.382 -3.57727 3.57727 0.62 0.000131082 0.000102183 0.0118641 0.00963719 32 2068 15 6.64007e+06 401856 554710. 1919.41 0.84 0.0524912 0.0448808 22834 132086 -1 1883 22 987 1438 106708 24358 0 0 106708 24358 1438 1156 0 0 5455 4303 0 0 7834 6099 0 0 1438 1216 0 0 44405 6077 0 0 46138 5507 0 0 1438 0 0 451 688 680 4963 0 0 3.33383 3.33383 -115.159 -3.33383 0 0 701300. 2426.64 0.24 0.04 0.12 -1 -1 0.24 0.0135554 0.0121935 131 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 10.34 vpr 53.45 MiB -1 -1 0.17 17540 1 0.03 -1 -1 29772 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54728 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 15.1 MiB 0.33 1340 53.4 MiB 0.14 0.01 5.27469 -159.481 -5.27469 5.27469 0.87 0.000594308 0.0005097 0.02463 0.0204467 30 3449 24 6.64007e+06 339066 526063. 1820.29 6.77 0.15065 0.132326 22546 126617 -1 2555 26 1869 2664 179496 41698 0 0 179496 41698 2664 2054 0 0 8812 6963 0 0 11930 9380 0 0 2664 2164 0 0 79479 10052 0 0 73947 11085 0 0 2664 0 0 795 920 967 7434 0 0 5.62434 5.62434 -178.11 -5.62434 0 0 666494. 2306.21 0.29 0.09 0.10 -1 -1 0.29 0.0292264 0.0265067 170 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.24 vpr 52.77 MiB -1 -1 0.14 17236 1 0.01 -1 -1 29592 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54036 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 14.2 MiB 0.17 730 52.8 MiB 0.06 0.00 2.6949 -85.8356 -2.6949 2.6949 0.94 8.3633e-05 6.6524e-05 0.00990759 0.00812915 26 1704 19 6.64007e+06 226044 477104. 1650.88 1.00 0.0448018 0.039007 21682 110474 -1 1475 14 680 867 67067 15482 0 0 67067 15482 867 739 0 0 3302 2706 0 0 4712 3813 0 0 867 773 0 0 29866 3586 0 0 27453 3865 0 0 867 0 0 187 145 194 1767 0 0 2.20051 2.20051 -90.9143 -2.20051 0 0 585099. 2024.56 0.26 0.03 0.10 -1 -1 0.26 0.00995555 0.00904327 87 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.12 vpr 53.00 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29724 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54268 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 14.5 MiB 0.12 823 53.0 MiB 0.07 0.00 3.52781 -103.731 -3.52781 3.52781 1.00 0.000195598 0.000158376 0.0133727 0.011066 32 1677 18 6.64007e+06 200928 554710. 1919.41 0.83 0.0470308 0.0402551 22834 132086 -1 1545 21 948 1604 131721 28662 0 0 131721 28662 1604 1221 0 0 5879 4611 0 0 9660 7351 0 0 1604 1329 0 0 59083 6764 0 0 53891 7386 0 0 1604 0 0 656 844 815 5571 0 0 3.31157 3.31157 -114.275 -3.31157 0 0 701300. 2426.64 0.20 0.04 0.13 -1 -1 0.20 0.00958865 0.00840535 92 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.32 vpr 53.12 MiB -1 -1 0.17 17512 1 0.01 -1 -1 29748 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 14.5 MiB 0.06 878 53.1 MiB 0.11 0.00 2.8981 -97.1524 -2.8981 2.8981 1.00 0.000201824 0.000164257 0.0184835 0.0151879 32 2066 23 6.64007e+06 263718 554710. 1919.41 0.94 0.0574517 0.049017 22834 132086 -1 1856 19 1162 2084 152947 33725 0 0 152947 33725 2084 1555 0 0 7439 6120 0 0 11765 8590 0 0 2084 1652 0 0 66731 7643 0 0 62844 8165 0 0 2084 0 0 922 889 891 7236 0 0 2.73457 2.73457 -110.687 -2.73457 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0137667 0.012291 115 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.29 vpr 52.71 MiB -1 -1 0.15 17140 1 0.01 -1 -1 29792 -1 -1 27 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53972 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 14.2 MiB 0.05 498 52.7 MiB 0.06 0.00 2.6929 -63.3531 -2.6929 2.6929 1.00 0.000169441 0.000140046 0.0112865 0.00919772 28 1465 34 6.64007e+06 339066 500653. 1732.36 1.09 0.0504429 0.0435855 21970 115934 -1 1223 21 732 1244 86849 21862 0 0 86849 21862 1244 982 0 0 4670 3869 0 0 6730 5357 0 0 1244 1063 0 0 35184 5446 0 0 37777 5145 0 0 1244 0 0 512 674 681 4905 0 0 2.76677 2.76677 -75.8206 -2.76677 0 0 612192. 2118.31 0.27 0.04 0.06 -1 -1 0.27 0.0108757 0.00969529 89 19 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 7.75 vpr 53.30 MiB -1 -1 0.17 17448 1 0.01 -1 -1 29708 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 14.9 MiB 0.18 977 53.3 MiB 0.12 0.00 3.73696 -113.519 -3.73696 3.73696 0.83 0.000255754 0.000203244 0.0215597 0.0175689 28 2870 23 6.64007e+06 263718 500653. 1732.36 4.64 0.152339 0.132959 21970 115934 -1 2437 21 1399 2455 210044 53926 0 0 210044 53926 2455 1928 0 0 8568 7023 0 0 12569 9621 0 0 2455 2059 0 0 91865 16858 0 0 92132 16437 0 0 2455 0 0 1056 1354 1165 8480 0 0 3.93103 3.93103 -138.054 -3.93103 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0102983 0.00913956 136 69 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.91 vpr 53.63 MiB -1 -1 0.17 17540 1 0.01 -1 -1 29808 -1 -1 35 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 15.0 MiB 0.19 919 53.6 MiB 0.09 0.00 3.48461 -113.085 -3.48461 3.48461 0.97 0.000279302 0.000229831 0.0150072 0.0124904 30 2153 20 6.64007e+06 439530 526063. 1820.29 2.55 0.10995 0.0942253 22546 126617 -1 1864 19 1229 1964 113173 26571 0 0 113173 26571 1964 1364 0 0 6612 5107 0 0 8457 6863 0 0 1964 1501 0 0 47269 5683 0 0 46907 6053 0 0 1964 0 0 735 823 822 6214 0 0 3.10897 3.10897 -122.024 -3.10897 0 0 666494. 2306.21 0.25 0.05 0.07 -1 -1 0.25 0.0180926 0.0162137 143 86 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.95 vpr 53.25 MiB -1 -1 0.14 17464 1 0.03 -1 -1 29732 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 14.8 MiB 0.45 1084 53.3 MiB 0.15 0.00 4.10361 -122.482 -4.10361 4.10361 1.01 0.000251747 0.000207002 0.0227377 0.0187805 32 2676 30 6.65987e+06 380340 554710. 1919.41 1.07 0.077087 0.0663359 22834 132086 -1 2167 20 1561 2461 165899 40926 0 0 165899 40926 2461 1889 0 0 9655 8232 0 0 14990 11808 0 0 2461 2028 0 0 67416 8575 0 0 68916 8394 0 0 2461 0 0 900 1129 1047 8251 0 0 4.30897 4.30897 -143.206 -4.30897 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0191622 0.0173266 152 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.04 vpr 53.34 MiB -1 -1 0.15 17580 1 0.02 -1 -1 29812 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54620 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 14.7 MiB 0.34 1130 53.3 MiB 0.08 0.00 3.90862 -119.942 -3.90862 3.90862 0.71 0.000241285 0.00019662 0.0140159 0.0115455 32 2644 22 6.65987e+06 291594 554710. 1919.41 0.84 0.0490176 0.0421787 22834 132086 -1 2352 18 1509 2257 198253 42601 0 0 198253 42601 2257 1909 0 0 8696 7420 0 0 13325 10490 0 0 2257 1998 0 0 83727 11044 0 0 87991 9740 0 0 2257 0 0 748 722 622 5845 0 0 4.22583 4.22583 -143.33 -4.22583 0 0 701300. 2426.64 0.23 0.04 0.12 -1 -1 0.23 0.0103191 0.00934817 138 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.59 vpr 53.17 MiB -1 -1 0.10 17644 1 0.01 -1 -1 29752 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54444 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 14.6 MiB 0.12 1078 53.2 MiB 0.07 0.00 3.21404 -100.176 -3.21404 3.21404 1.10 0.000223581 0.000184935 0.0110026 0.00932487 30 2211 19 6.65987e+06 291594 526063. 1820.29 2.30 0.0861613 0.0748494 22546 126617 -1 1918 16 910 1280 67072 16737 0 0 67072 16737 1280 976 0 0 4451 3642 0 0 5699 4724 0 0 1280 1065 0 0 27317 3059 0 0 27045 3271 0 0 1280 0 0 370 321 371 3206 0 0 3.17971 3.17971 -114.132 -3.17971 0 0 666494. 2306.21 0.25 0.04 0.07 -1 -1 0.25 0.013329 0.0120819 126 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.34 vpr 52.94 MiB -1 -1 0.17 17484 1 0.01 -1 -1 29776 -1 -1 27 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54212 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 14.4 MiB 0.10 920 52.9 MiB 0.08 0.00 3.39544 -91.96 -3.39544 3.39544 0.95 0.000224069 0.000185064 0.0131625 0.0110747 28 2050 20 6.65987e+06 342306 500653. 1732.36 2.40 0.114789 0.101048 21970 115934 -1 1915 21 1479 2745 169488 40952 0 0 169488 40952 2745 1856 0 0 9992 8347 0 0 15257 12008 0 0 2745 2115 0 0 68292 8382 0 0 70457 8244 0 0 2745 0 0 1266 1596 1640 11065 0 0 3.30391 3.30391 -111.304 -3.30391 0 0 612192. 2118.31 0.17 0.04 0.08 -1 -1 0.17 0.00911653 0.00816983 126 25 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.27 vpr 53.12 MiB -1 -1 0.15 17500 1 0.01 -1 -1 29684 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54400 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 14.5 MiB 0.12 879 53.1 MiB 0.10 0.00 3.48115 -101.76 -3.48115 3.48115 1.02 0.000214518 0.000176987 0.0168092 0.014031 32 2720 23 6.65987e+06 291594 554710. 1919.41 0.90 0.0532312 0.045977 22834 132086 -1 2094 23 1627 3030 207045 49022 0 0 207045 49022 3030 2382 0 0 11282 9650 0 0 17420 13401 0 0 3030 2551 0 0 85014 10678 0 0 87269 10360 0 0 3030 0 0 1403 1826 1708 11811 0 0 3.41891 3.41891 -121.07 -3.41891 0 0 701300. 2426.64 0.29 0.08 0.08 -1 -1 0.29 0.0190618 0.0169247 130 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.80 vpr 53.50 MiB -1 -1 0.14 17600 1 0.01 -1 -1 29664 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54780 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 14.8 MiB 0.19 1020 53.5 MiB 0.10 0.00 2.68684 -97.3166 -2.68684 2.68684 1.01 0.000279666 0.000232464 0.0171788 0.0143407 28 2402 22 6.65987e+06 418374 500653. 1732.36 2.61 0.120057 0.103648 21970 115934 -1 2084 20 1245 1969 135441 32526 0 0 135441 32526 1969 1453 0 0 7396 6095 0 0 10727 8851 0 0 1969 1567 0 0 58775 6793 0 0 54605 7767 0 0 1969 0 0 724 782 886 6679 0 0 2.84691 2.84691 -114.651 -2.84691 0 0 612192. 2118.31 0.25 0.06 0.10 -1 -1 0.25 0.0165088 0.0147538 141 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.00 vpr 52.73 MiB -1 -1 0.15 17216 1 0.01 -1 -1 29852 -1 -1 18 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53996 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 14.2 MiB 0.20 700 52.7 MiB 0.07 0.00 3.02895 -80.9401 -3.02895 3.02895 0.83 0.000174944 0.000140501 0.0133914 0.0109788 32 1579 21 6.65987e+06 228204 554710. 1919.41 0.89 0.0441265 0.0375384 22834 132086 -1 1370 20 870 1510 116542 26963 0 0 116542 26963 1510 1152 0 0 5836 5096 0 0 9695 7407 0 0 1510 1211 0 0 49804 5977 0 0 48187 6120 0 0 1510 0 0 640 706 713 5181 0 0 2.64031 2.64031 -92.3857 -2.64031 0 0 701300. 2426.64 0.21 0.03 0.11 -1 -1 0.21 0.00809251 0.00723476 94 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.51 vpr 52.91 MiB -1 -1 0.15 16920 1 0.02 -1 -1 29620 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54184 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 14.4 MiB 0.05 984 52.9 MiB 0.09 0.00 2.58264 -81.2303 -2.58264 2.58264 1.02 0.000201607 0.000164704 0.0136616 0.0114162 30 2093 19 6.65987e+06 393018 526063. 1820.29 2.34 0.0857349 0.0739019 22546 126617 -1 1864 16 765 1314 78493 18348 0 0 78493 18348 1314 895 0 0 4596 3632 0 0 5929 4927 0 0 1314 973 0 0 32049 4018 0 0 33291 3903 0 0 1314 0 0 549 708 703 5446 0 0 2.32211 2.32211 -91.6006 -2.32211 0 0 666494. 2306.21 0.18 0.02 0.07 -1 -1 0.18 0.0072812 0.00659253 115 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.03 vpr 53.12 MiB -1 -1 0.16 17364 1 0.01 -1 -1 29744 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 14.5 MiB 0.18 857 53.1 MiB 0.05 0.00 2.68253 -94.1668 -2.68253 2.68253 0.97 0.000213068 0.000173343 0.00893431 0.00747388 32 2011 20 6.65987e+06 240882 554710. 1919.41 0.85 0.0456855 0.0392394 22834 132086 -1 1822 18 1013 1458 110453 25890 0 0 110453 25890 1458 1235 0 0 5730 4826 0 0 8634 6901 0 0 1458 1266 0 0 49075 5286 0 0 44098 6376 0 0 1458 0 0 445 408 253 3454 0 0 2.84931 2.84931 -113.244 -2.84931 0 0 701300. 2426.64 0.19 0.03 0.08 -1 -1 0.19 0.00868881 0.00780309 111 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.97 vpr 52.92 MiB -1 -1 0.15 17644 1 0.02 -1 -1 29660 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54192 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 14.5 MiB 0.28 731 52.9 MiB 0.09 0.00 2.98475 -97.7196 -2.98475 2.98475 0.99 0.000211781 0.000171701 0.0171696 0.0140836 32 2059 20 6.65987e+06 215526 554710. 1919.41 2.45 0.101131 0.086077 22834 132086 -1 1675 19 1155 1839 131497 31510 0 0 131497 31510 1839 1509 0 0 7035 5953 0 0 10343 8107 0 0 1839 1641 0 0 53907 7469 0 0 56534 6831 0 0 1839 0 0 684 891 830 6148 0 0 2.94591 2.94591 -111.163 -2.94591 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0166942 0.0151799 113 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.43 vpr 52.85 MiB -1 -1 0.16 17604 1 0.02 -1 -1 29652 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54116 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 14.3 MiB 0.27 760 52.8 MiB 0.03 0.00 3.37455 -95.1617 -3.37455 3.37455 0.81 0.000106262 8.5124e-05 0.00523424 0.00436059 28 1599 19 6.65987e+06 215526 500653. 1732.36 2.17 0.0822157 0.0707055 21970 115934 -1 1475 16 730 1088 69135 16933 0 0 69135 16933 1088 800 0 0 3950 3280 0 0 5596 4532 0 0 1088 869 0 0 28821 3619 0 0 28592 3833 0 0 1088 0 0 358 235 378 3013 0 0 2.89197 2.89197 -101.537 -2.89197 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.013063 0.0118686 98 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.18 vpr 53.02 MiB -1 -1 0.15 17592 1 0.02 -1 -1 29660 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 14.3 MiB 0.18 971 53.0 MiB 0.05 0.00 2.91589 -98.643 -2.91589 2.91589 0.96 0.000183058 0.000149492 0.00922234 0.00771597 26 2339 24 6.65987e+06 215526 477104. 1650.88 0.90 0.0477207 0.0412254 21682 110474 -1 2026 30 1451 1926 222933 82481 0 0 222933 82481 1926 1637 0 0 7515 6582 0 0 12918 9866 0 0 1926 1725 0 0 100061 30583 0 0 98587 32088 0 0 1926 0 0 475 462 479 4352 0 0 2.94331 2.94331 -115.105 -2.94331 0 0 585099. 2024.56 0.25 0.09 0.10 -1 -1 0.25 0.0185936 0.0165316 106 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 7.36 vpr 53.40 MiB -1 -1 0.15 17496 1 0.02 -1 -1 29716 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 14.8 MiB 0.22 942 53.4 MiB 0.04 0.00 3.37501 -109.706 -3.37501 3.37501 0.63 0.000144153 0.000114535 0.00871667 0.00719408 30 2541 28 6.65987e+06 304272 526063. 1820.29 4.57 0.126418 0.110923 22546 126617 -1 1843 23 1438 2267 121122 30583 0 0 121122 30583 2267 1661 0 0 7519 5958 0 0 9863 7876 0 0 2267 1764 0 0 48252 6380 0 0 50954 6944 0 0 2267 0 0 829 909 806 6479 0 0 2.99031 2.99031 -116.205 -2.99031 0 0 666494. 2306.21 0.19 0.04 0.07 -1 -1 0.19 0.0111471 0.00994869 139 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 6.22 vpr 53.20 MiB -1 -1 0.16 17576 1 0.01 -1 -1 29660 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 14.7 MiB 0.20 986 53.2 MiB 0.07 0.00 3.76229 -110.216 -3.76229 3.76229 0.68 0.000129464 0.000104298 0.0100641 0.00829052 26 2586 24 6.65987e+06 380340 477104. 1650.88 3.06 0.107667 0.0935371 21682 110474 -1 2169 22 1594 2624 198934 46792 0 0 198934 46792 2624 1929 0 0 9978 8543 0 0 15320 12161 0 0 2624 2133 0 0 85946 11077 0 0 82442 10949 0 0 2624 0 0 1030 1278 1408 9170 0 0 3.89071 3.89071 -131.876 -3.89071 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0244691 0.0222175 133 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 5.98 vpr 52.64 MiB -1 -1 0.16 17236 1 0.01 -1 -1 29668 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53904 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 14.2 MiB 0.15 752 52.6 MiB 0.07 0.00 2.62193 -75.4789 -2.62193 2.62193 0.93 0.00018152 0.000147858 0.0115253 0.00959798 32 1724 19 6.65987e+06 266238 554710. 1919.41 2.82 0.0818901 0.0694465 22834 132086 -1 1596 19 900 1499 114988 27307 0 0 114988 27307 1499 1132 0 0 5910 5141 0 0 9603 7672 0 0 1499 1226 0 0 49006 6058 0 0 47471 6078 0 0 1499 0 0 599 635 568 4699 0 0 2.86591 2.86591 -96.436 -2.86591 0 0 701300. 2426.64 0.24 0.05 0.08 -1 -1 0.24 0.0121556 0.0108454 98 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.35 vpr 53.25 MiB -1 -1 0.16 17664 1 0.02 -1 -1 29712 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 14.8 MiB 0.43 1122 53.3 MiB 0.06 0.00 3.1755 -101.138 -3.1755 3.1755 0.75 0.000144725 0.000118456 0.0114283 0.00951477 32 2588 21 6.65987e+06 266238 554710. 1919.41 0.88 0.0618957 0.0535689 22834 132086 -1 2317 20 1375 2480 184513 42078 0 0 184513 42078 2480 1975 0 0 9234 7785 0 0 14867 11337 0 0 2480 2157 0 0 75480 9933 0 0 79972 8891 0 0 2480 0 0 1105 1513 1394 9672 0 0 3.40776 3.40776 -119.927 -3.40776 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0207023 0.0186777 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.48 vpr 53.30 MiB -1 -1 0.16 17292 1 0.01 -1 -1 29700 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 14.8 MiB 0.22 1051 53.3 MiB 0.11 0.00 3.39001 -113.61 -3.39001 3.39001 0.94 0.000224317 0.000182441 0.0215471 0.0179411 32 2589 21 6.65987e+06 266238 554710. 1919.41 2.08 0.0728941 0.0614818 22834 132086 -1 2095 22 1582 2271 169912 39465 0 0 169912 39465 2271 1901 0 0 8581 7422 0 0 13718 10659 0 0 2271 2032 0 0 74935 8195 0 0 68136 9256 0 0 2271 0 0 689 738 828 5990 0 0 3.10577 3.10577 -120.457 -3.10577 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0180448 0.0161483 137 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.14 vpr 52.95 MiB -1 -1 0.15 17420 1 0.02 -1 -1 29824 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54216 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 14.4 MiB 0.24 843 52.9 MiB 0.08 0.00 2.24964 -86.04 -2.24964 2.24964 0.89 0.000215377 0.000174611 0.0126827 0.0104011 28 1976 23 6.65987e+06 367662 500653. 1732.36 1.92 0.0734137 0.0623429 21970 115934 -1 1805 19 995 1609 118312 27342 0 0 118312 27342 1609 1123 0 0 6034 5098 0 0 9144 7189 0 0 1609 1285 0 0 51257 6047 0 0 48659 6600 0 0 1609 0 0 614 847 925 6105 0 0 2.15051 2.15051 -96.7949 -2.15051 0 0 612192. 2118.31 0.25 0.05 0.06 -1 -1 0.25 0.015711 0.0141029 110 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.77 vpr 52.54 MiB -1 -1 0.13 17260 1 0.01 -1 -1 29768 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53800 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 14.0 MiB 0.14 607 52.5 MiB 0.03 0.00 1.87027 -65.7134 -1.87027 1.87027 0.87 8.4229e-05 6.6773e-05 0.00577946 0.00470255 28 1335 21 6.65987e+06 190170 500653. 1732.36 1.68 0.0561647 0.0481244 21970 115934 -1 1245 17 573 766 55951 13565 0 0 55951 13565 766 645 0 0 2923 2472 0 0 4026 3380 0 0 766 660 0 0 23480 3315 0 0 23990 3093 0 0 766 0 0 193 188 164 1791 0 0 1.80465 1.80465 -75.9207 -1.80465 0 0 612192. 2118.31 0.28 0.02 0.10 -1 -1 0.28 0.00617309 0.0055712 81 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 6.38 vpr 52.98 MiB -1 -1 0.13 17268 1 0.01 -1 -1 29780 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54252 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 14.5 MiB 0.39 920 53.0 MiB 0.10 0.00 3.85375 -116.465 -3.85375 3.85375 0.73 0.000231636 0.000184264 0.0170528 0.0139315 28 2421 25 6.65987e+06 240882 500653. 1732.36 3.37 0.108836 0.0941398 21970 115934 -1 1940 20 1232 1769 140769 32773 0 0 140769 32773 1769 1578 0 0 6762 5516 0 0 9699 7985 0 0 1769 1616 0 0 58707 8684 0 0 62063 7394 0 0 1769 0 0 537 533 448 4471 0 0 3.57937 3.57937 -132.597 -3.57937 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0165268 0.0150113 127 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.84 vpr 53.18 MiB -1 -1 0.14 17692 1 0.01 -1 -1 29780 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 14.8 MiB 0.06 1053 53.2 MiB 0.11 0.00 3.36036 -109.189 -3.36036 3.36036 0.85 0.000231601 0.000189633 0.017993 0.0148291 30 2104 31 6.65987e+06 393018 526063. 1820.29 2.66 0.11646 0.0999099 22546 126617 -1 1879 19 1052 1686 102005 23529 0 0 102005 23529 1686 1155 0 0 5988 4830 0 0 7854 6553 0 0 1686 1265 0 0 41679 5141 0 0 43112 4585 0 0 1686 0 0 634 649 617 5606 0 0 3.39343 3.39343 -123.011 -3.39343 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0165748 0.014958 135 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 6.43 vpr 53.57 MiB -1 -1 0.16 17752 1 0.02 -1 -1 29708 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 14.8 MiB 0.28 1125 53.6 MiB 0.08 0.00 3.36484 -108.843 -3.36484 3.36484 0.88 0.000129086 0.000103437 0.0125209 0.0102713 28 3137 27 6.65987e+06 291594 500653. 1732.36 3.09 0.128245 0.111138 21970 115934 -1 2513 20 1729 2617 214199 47773 0 0 214199 47773 2617 2128 0 0 9625 7995 0 0 14506 11743 0 0 2617 2398 0 0 93018 12058 0 0 91816 11451 0 0 2617 0 0 888 1042 1009 7870 0 0 3.68491 3.68491 -129.445 -3.68491 0 0 612192. 2118.31 0.27 0.08 0.10 -1 -1 0.27 0.0196328 0.0177526 142 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.29 vpr 52.31 MiB -1 -1 0.15 17252 1 0.01 -1 -1 29680 -1 -1 18 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53568 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 13.9 MiB 0.31 375 52.3 MiB 0.05 0.00 1.89953 -52.6788 -1.89953 1.89953 0.79 0.000133911 0.000107324 0.00931969 0.00762216 28 1149 22 6.65987e+06 228204 500653. 1732.36 1.06 0.0415917 0.036008 21970 115934 -1 1029 16 578 785 66971 17479 0 0 66971 17479 785 677 0 0 2972 2448 0 0 4132 3374 0 0 785 708 0 0 29261 5088 0 0 29036 5184 0 0 785 0 0 207 236 212 1972 0 0 1.95411 1.95411 -69.652 -1.95411 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.0083054 0.00743758 77 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.13 vpr 52.94 MiB -1 -1 0.14 17036 1 0.01 -1 -1 29804 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54212 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 14.5 MiB 0.10 939 52.9 MiB 0.08 0.00 3.88509 -98.6856 -3.88509 3.88509 0.97 0.0002006 0.000167408 0.0134808 0.0112786 28 2218 23 6.65987e+06 266238 500653. 1732.36 1.02 0.0617928 0.054123 21970 115934 -1 2000 22 1135 2302 156699 37494 0 0 156699 37494 2302 1806 0 0 8248 6987 0 0 12526 9600 0 0 2302 2009 0 0 67282 8379 0 0 64039 8713 0 0 2302 0 0 1167 1399 1460 9608 0 0 4.05717 4.05717 -118.763 -4.05717 0 0 612192. 2118.31 0.26 0.04 0.10 -1 -1 0.26 0.0106396 0.00959174 118 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.80 vpr 52.34 MiB -1 -1 0.11 16700 1 0.01 -1 -1 29556 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53592 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 13.7 MiB 0.12 424 52.3 MiB 0.03 0.00 1.99767 -57.2824 -1.99767 1.99767 0.88 7.379e-05 5.8545e-05 0.00528095 0.00430242 32 1144 43 6.65987e+06 177492 554710. 1919.41 0.80 0.0329656 0.0281933 22834 132086 -1 847 18 555 647 37589 11394 0 0 37589 11394 647 584 0 0 2558 2152 0 0 3962 3212 0 0 647 592 0 0 14694 2478 0 0 15081 2376 0 0 647 0 0 92 86 88 1097 0 0 2.14125 2.14125 -71.2859 -2.14125 0 0 701300. 2426.64 0.24 0.03 0.07 -1 -1 0.24 0.00862145 0.00763216 79 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 6.31 vpr 53.05 MiB -1 -1 0.16 17536 1 0.02 -1 -1 29716 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54324 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 14.6 MiB 0.12 1016 53.1 MiB 0.12 0.00 3.45215 -103.063 -3.45215 3.45215 1.05 0.000197138 0.000160181 0.0189047 0.015636 28 2218 31 6.65987e+06 380340 500653. 1732.36 2.83 0.141148 0.123993 21970 115934 -1 1960 16 925 1458 116161 25287 0 0 116161 25287 1458 1099 0 0 5469 4403 0 0 7781 6332 0 0 1458 1166 0 0 51612 5865 0 0 48383 6422 0 0 1458 0 0 533 659 698 4934 0 0 3.24865 3.24865 -113.541 -3.24865 0 0 612192. 2118.31 0.22 0.03 0.11 -1 -1 0.22 0.00839145 0.0076018 123 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.45 vpr 53.00 MiB -1 -1 0.15 17240 1 0.02 -1 -1 29720 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54276 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.4 MiB 0.11 1106 53.0 MiB 0.08 0.00 3.00424 -91.3036 -3.00424 3.00424 0.74 0.000120463 9.6948e-05 0.0109749 0.00909817 30 2159 29 6.65987e+06 393018 526063. 1820.29 2.47 0.102585 0.0880366 22546 126617 -1 1948 19 960 1799 98507 23589 0 0 98507 23589 1799 1113 0 0 6254 5022 0 0 8581 6966 0 0 1799 1236 0 0 41479 4341 0 0 38595 4911 0 0 1799 0 0 839 877 1222 7689 0 0 2.74677 2.74677 -104.291 -2.74677 0 0 666494. 2306.21 0.19 0.03 0.09 -1 -1 0.19 0.00917662 0.00826706 128 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.91 vpr 53.04 MiB -1 -1 0.14 17408 1 0.01 -1 -1 29724 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54308 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1003 53.0 MiB 0.10 0.00 3.35004 -101.734 -3.35004 3.35004 0.87 0.000221035 0.000178697 0.0148327 0.0121595 32 2559 26 6.65987e+06 329628 554710. 1919.41 2.62 0.109212 0.0930598 22834 132086 -1 2130 25 1517 2611 202710 47918 0 0 202710 47918 2611 1833 0 0 10101 8440 0 0 16292 12553 0 0 2611 2018 0 0 85023 11448 0 0 86072 11626 0 0 2611 0 0 1094 1544 1405 9832 0 0 3.62739 3.62739 -123.092 -3.62739 0 0 701300. 2426.64 0.28 0.05 0.12 -1 -1 0.28 0.0109451 0.00973456 125 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.05 vpr 52.67 MiB -1 -1 0.15 17212 1 0.01 -1 -1 29732 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53932 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 14.1 MiB 0.05 751 52.7 MiB 0.08 0.00 2.29953 -80.4749 -2.29953 2.29953 0.86 0.000185483 0.000149454 0.0152921 0.0126268 32 1956 24 6.65987e+06 202848 554710. 1919.41 0.91 0.0534642 0.0456939 22834 132086 -1 1619 17 1004 1590 116953 28105 0 0 116953 28105 1590 1263 0 0 6278 5359 0 0 9631 7803 0 0 1590 1357 0 0 48014 6371 0 0 49850 5952 0 0 1590 0 0 586 637 612 4779 0 0 2.61365 2.61365 -99.3719 -2.61365 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0129844 0.0116883 101 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.96 vpr 52.77 MiB -1 -1 0.13 17100 1 0.00 -1 -1 29688 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54040 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 14.3 MiB 0.10 770 52.8 MiB 0.06 0.00 2.39767 -80.2446 -2.39767 2.39767 0.91 0.000179429 0.000145226 0.00977788 0.00816119 32 1731 20 6.65987e+06 291594 554710. 1919.41 0.88 0.0421278 0.0361939 22834 132086 -1 1494 20 906 1435 105188 24238 0 0 105188 24238 1435 988 0 0 5497 4617 0 0 8361 6654 0 0 1435 1136 0 0 43761 5624 0 0 44699 5219 0 0 1435 0 0 529 481 544 4469 0 0 2.63045 2.63045 -94.2528 -2.63045 0 0 701300. 2426.64 0.22 0.03 0.12 -1 -1 0.22 0.0075264 0.00673174 97 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.79 vpr 52.68 MiB -1 -1 0.14 17436 1 0.02 -1 -1 29620 -1 -1 23 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53940 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 14.2 MiB 0.05 805 52.7 MiB 0.11 0.00 2.64264 -80.9203 -2.64264 2.64264 0.70 0.000238877 0.000193958 0.0184259 0.0151038 30 1734 21 6.65987e+06 291594 526063. 1820.29 2.97 0.0981583 0.0837275 22546 126617 -1 1487 16 676 1173 70053 16359 0 0 70053 16359 1173 887 0 0 4008 3254 0 0 5336 4357 0 0 1173 965 0 0 28972 3602 0 0 29391 3294 0 0 1173 0 0 497 546 462 3924 0 0 2.52731 2.52731 -90.7171 -2.52731 0 0 666494. 2306.21 0.30 0.04 0.10 -1 -1 0.30 0.011473 0.010364 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.00 vpr 52.82 MiB -1 -1 0.15 17072 1 0.01 -1 -1 29680 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54084 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 14.3 MiB 0.11 674 52.8 MiB 0.02 0.00 2.87775 -86.3082 -2.87775 2.87775 0.90 9.8262e-05 7.8864e-05 0.00377868 0.00321054 32 2003 24 6.65987e+06 240882 554710. 1919.41 0.88 0.0377304 0.0326431 22834 132086 -1 1603 19 1120 1744 120228 30644 0 0 120228 30644 1744 1412 0 0 6673 5689 0 0 10863 8454 0 0 1744 1546 0 0 45799 7046 0 0 53405 6497 0 0 1744 0 0 624 782 692 5470 0 0 2.87891 2.87891 -107.503 -2.87891 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0139996 0.0126214 110 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 5.41 vpr 52.91 MiB -1 -1 0.14 17528 1 0.02 -1 -1 29720 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54184 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 14.3 MiB 0.08 890 52.9 MiB 0.08 0.00 2.62364 -84.7948 -2.62364 2.62364 0.98 0.000191561 0.000156221 0.0122665 0.0100123 26 2019 27 6.65987e+06 342306 477104. 1650.88 2.38 0.0854703 0.0735865 21682 110474 -1 1800 20 1043 1737 123558 28050 0 0 123558 28050 1737 1253 0 0 6398 5170 0 0 9669 7509 0 0 1737 1382 0 0 54451 5987 0 0 49566 6749 0 0 1737 0 0 694 802 803 6378 0 0 2.75865 2.75865 -104.202 -2.75865 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.013922 0.0124973 103 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.06 vpr 52.87 MiB -1 -1 0.13 17484 1 0.01 -1 -1 29756 -1 -1 25 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54140 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 14.2 MiB 0.25 799 52.9 MiB 0.07 0.00 2.43438 -82.3684 -2.43438 2.43438 0.78 0.000195731 0.000158701 0.0114158 0.00948906 32 1833 22 6.65987e+06 316950 554710. 1919.41 2.07 0.072718 0.0615139 22834 132086 -1 1699 21 1195 1772 130796 30653 0 0 130796 30653 1772 1355 0 0 6762 5623 0 0 10956 8603 0 0 1772 1478 0 0 56020 6709 0 0 53514 6885 0 0 1772 0 0 577 682 717 5436 0 0 2.29551 2.29551 -92.1482 -2.29551 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0148409 0.013263 105 48 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.39 vpr 53.59 MiB -1 -1 0.14 17644 1 0.02 -1 -1 29704 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54876 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 15.1 MiB 0.31 1245 53.6 MiB 0.13 0.00 3.03052 -94.831 -3.03052 3.03052 1.00 0.000248871 0.000197604 0.0214346 0.0174872 30 2564 21 6.65987e+06 469086 526063. 1820.29 2.73 0.118244 0.100752 22546 126617 -1 2203 20 1042 2095 117396 26581 0 0 117396 26581 2095 1324 0 0 6984 5517 0 0 9263 7391 0 0 2095 1470 0 0 47852 5689 0 0 49107 5190 0 0 2095 0 0 1053 1487 2011 11752 0 0 3.14659 3.14659 -111.368 -3.14659 0 0 666494. 2306.21 0.31 0.06 0.11 -1 -1 0.31 0.01936 0.0174794 150 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 6.54 vpr 53.42 MiB -1 -1 0.17 17500 1 0.01 -1 -1 29720 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 14.8 MiB 0.31 1003 53.4 MiB 0.06 0.00 2.89575 -98.1764 -2.89575 2.89575 0.95 0.000161351 0.000133644 0.00975576 0.00801692 32 2216 22 6.65987e+06 456408 554710. 1919.41 2.93 0.125369 0.106452 22834 132086 -1 2029 22 1798 2696 194904 44951 0 0 194904 44951 2696 1983 0 0 10167 8677 0 0 16530 12589 0 0 2696 2188 0 0 84451 9467 0 0 78364 10047 0 0 2696 0 0 898 1084 1152 8618 0 0 2.86171 2.86171 -115.079 -2.86171 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0197387 0.0176301 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.29 vpr 52.89 MiB -1 -1 0.16 17472 1 0.02 -1 -1 29720 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54160 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 14.2 MiB 0.30 738 52.9 MiB 0.05 0.00 3.35895 -96.9547 -3.35895 3.35895 0.92 0.000103226 8.2858e-05 0.0074376 0.00622287 28 2006 21 6.65987e+06 215526 500653. 1732.36 1.01 0.0464461 0.0403808 21970 115934 -1 1755 20 983 1417 109655 29016 0 0 109655 29016 1417 1178 0 0 5262 4298 0 0 7610 6143 0 0 1417 1233 0 0 47602 8201 0 0 46347 7963 0 0 1417 0 0 434 421 561 4095 0 0 3.22477 3.22477 -111.904 -3.22477 0 0 612192. 2118.31 0.21 0.03 0.06 -1 -1 0.21 0.00897719 0.00806558 109 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.75 vpr 53.26 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29932 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 14.6 MiB 0.29 1083 53.3 MiB 0.11 0.00 3.41155 -107.597 -3.41155 3.41155 0.72 0.000255821 0.000194822 0.0207778 0.017194 32 2568 22 6.65987e+06 304272 554710. 1919.41 2.61 0.126028 0.107597 22834 132086 -1 2281 22 1376 2418 185686 42746 0 0 185686 42746 2418 1966 0 0 9263 7829 0 0 14879 11495 0 0 2418 2074 0 0 80470 9503 0 0 76238 9879 0 0 2418 0 0 1042 1279 1252 8931 0 0 3.14337 3.14337 -117.799 -3.14337 0 0 701300. 2426.64 0.31 0.07 0.11 -1 -1 0.31 0.0204813 0.0183757 137 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 6.19 vpr 53.28 MiB -1 -1 0.18 17852 1 0.02 -1 -1 29712 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 15.1 MiB 0.41 1348 53.3 MiB 0.11 0.00 4.38047 -133.32 -4.38047 4.38047 0.98 0.000225835 0.000186976 0.0182839 0.0152302 32 3046 23 6.65987e+06 342306 554710. 1919.41 2.58 0.115334 0.0992667 22834 132086 -1 2623 23 2236 3268 243986 55561 0 0 243986 55561 3268 2664 0 0 12388 10342 0 0 19791 15058 0 0 3268 2923 0 0 103064 12048 0 0 102207 12526 0 0 3268 0 0 1032 900 1073 8337 0 0 4.34623 4.34623 -151.899 -4.34623 0 0 701300. 2426.64 0.20 0.05 0.07 -1 -1 0.20 0.0133406 0.0120757 170 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.46 vpr 53.58 MiB -1 -1 0.16 17368 1 0.01 -1 -1 29700 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 15.0 MiB 1.50 1065 53.6 MiB 0.13 0.00 4.00075 -117.157 -4.00075 4.00075 0.95 0.000243125 0.000197885 0.0234814 0.0193375 32 2715 22 6.65987e+06 316950 554710. 1919.41 0.69 0.0625654 0.0531651 22834 132086 -1 2323 20 1705 2597 219213 47406 0 0 219213 47406 2597 2098 0 0 9954 8362 0 0 14876 11696 0 0 2597 2239 0 0 98187 11197 0 0 91002 11814 0 0 2597 0 0 892 1027 888 7414 0 0 4.41923 4.41923 -150.557 -4.41923 0 0 701300. 2426.64 0.30 0.08 0.08 -1 -1 0.30 0.0229541 0.0208403 162 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.87 vpr 53.26 MiB -1 -1 0.17 17420 1 0.02 -1 -1 29764 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 14.8 MiB 0.25 856 53.3 MiB 0.08 0.00 3.37089 -97.7088 -3.37089 3.37089 0.98 0.000255715 0.000211162 0.0125803 0.0105267 28 2522 41 6.65987e+06 367662 500653. 1732.36 1.39 0.0772736 0.067656 21970 115934 -1 2006 23 1465 2461 148158 38042 0 0 148158 38042 2461 1764 0 0 8829 7424 0 0 13413 10521 0 0 2461 1916 0 0 60997 8341 0 0 59997 8076 0 0 2461 0 0 996 1231 1222 8852 0 0 2.97525 2.97525 -110.998 -2.97525 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.0184519 0.0165017 133 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.96 vpr 52.96 MiB -1 -1 0.13 17664 1 0.01 -1 -1 29820 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54228 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 14.5 MiB 0.20 1064 53.0 MiB 0.09 0.00 3.22104 -93.8179 -3.22104 3.22104 0.98 0.00018997 0.000154417 0.0149733 0.0124733 32 2277 22 6.65987e+06 278916 554710. 1919.41 2.69 0.104636 0.0898252 22834 132086 -1 2004 18 1224 1831 133000 30938 0 0 133000 30938 1831 1458 0 0 7263 6038 0 0 10588 8436 0 0 1831 1540 0 0 55261 6913 0 0 56226 6553 0 0 1831 0 0 607 693 810 5537 0 0 3.46799 3.46799 -112.746 -3.46799 0 0 701300. 2426.64 0.20 0.03 0.12 -1 -1 0.20 0.00849198 0.00765193 118 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 6.16 vpr 53.51 MiB -1 -1 0.18 17852 1 0.01 -1 -1 29936 -1 -1 38 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 15.2 MiB 0.33 1307 53.5 MiB 0.12 0.00 3.94735 -130.391 -3.94735 3.94735 1.01 0.000158682 0.000127649 0.0185102 0.0152768 30 2969 29 6.65987e+06 481764 526063. 1820.29 2.47 0.11385 0.0979858 22546 126617 -1 2437 21 1601 2535 140228 33352 0 0 140228 33352 2535 1741 0 0 8662 7104 0 0 11267 9190 0 0 2535 1899 0 0 57064 6650 0 0 58165 6768 0 0 2535 0 0 934 1351 1272 9774 0 0 3.79291 3.79291 -145.665 -3.79291 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0247588 0.0222713 172 84 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.33 vpr 52.68 MiB -1 -1 0.15 17400 1 0.02 -1 -1 29736 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53944 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 14.2 MiB 0.13 741 52.7 MiB 0.05 0.00 2.74078 -78.476 -2.74078 2.74078 1.04 0.000193795 0.000159499 0.00870099 0.00728018 28 1909 21 6.65987e+06 266238 500653. 1732.36 2.12 0.0653219 0.0558417 21970 115934 -1 1650 21 996 1749 120673 28838 0 0 120673 28838 1749 1292 0 0 6495 5467 0 0 9987 7886 0 0 1749 1370 0 0 51363 6028 0 0 49330 6795 0 0 1749 0 0 753 798 864 6216 0 0 2.64539 2.64539 -98.0766 -2.64539 0 0 612192. 2118.31 0.29 0.05 0.09 -1 -1 0.29 0.0148139 0.01333 101 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.26 vpr 53.50 MiB -1 -1 0.16 17368 1 0.01 -1 -1 29712 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54788 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 14.8 MiB 0.19 1226 53.5 MiB 0.11 0.00 3.8195 -115.518 -3.8195 3.8195 0.97 0.000226398 0.000184825 0.0202372 0.0168325 28 2816 27 6.65987e+06 291594 500653. 1732.36 0.95 0.0677032 0.0587891 21970 115934 -1 2405 22 1407 1965 145447 33847 0 0 145447 33847 1965 1670 0 0 7520 6267 0 0 11221 9171 0 0 1965 1761 0 0 60458 7743 0 0 62318 7235 0 0 1965 0 0 558 606 695 5302 0 0 3.99251 3.99251 -135.355 -3.99251 0 0 612192. 2118.31 0.21 0.05 0.10 -1 -1 0.21 0.0143051 0.0127984 142 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.89 vpr 53.19 MiB -1 -1 0.16 17528 1 0.02 -1 -1 29656 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 14.8 MiB 0.18 935 53.2 MiB 0.07 0.00 3.1757 -96.1015 -3.1757 3.1757 0.92 0.000234306 0.000189573 0.0109393 0.00909593 30 2419 20 6.65987e+06 418374 526063. 1820.29 2.64 0.0981923 0.0840644 22546 126617 -1 1852 23 1089 2079 116400 28087 0 0 116400 28087 2079 1501 0 0 6929 5510 0 0 9349 7315 0 0 2079 1586 0 0 46831 6106 0 0 49133 6069 0 0 2079 0 0 990 1165 1203 8585 0 0 2.74651 2.74651 -105.848 -2.74651 0 0 666494. 2306.21 0.21 0.06 0.10 -1 -1 0.21 0.018637 0.0165367 131 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 6.56 vpr 52.93 MiB -1 -1 0.16 17320 1 0.01 -1 -1 29764 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54200 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 14.4 MiB 0.10 1001 52.9 MiB 0.11 0.00 3.15084 -101.746 -3.15084 3.15084 0.91 0.000210763 0.000171396 0.0174075 0.0145106 34 2254 21 6.65987e+06 304272 585099. 2024.56 3.30 0.105446 0.0912306 23122 138558 -1 1959 21 1292 2563 172276 38930 0 0 172276 38930 2563 1678 0 0 9262 7631 0 0 14281 11088 0 0 2563 1976 0 0 74763 7881 0 0 68844 8676 0 0 2563 0 0 1271 1621 1719 11026 0 0 3.35599 3.35599 -114.412 -3.35599 0 0 742403. 2568.87 0.33 0.07 0.13 -1 -1 0.33 0.0168083 0.0150642 123 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.08 vpr 53.16 MiB -1 -1 0.16 17564 1 0.02 -1 -1 29780 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54436 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 14.7 MiB 0.40 1093 53.2 MiB 0.11 0.00 3.33475 -103.887 -3.33475 3.33475 1.00 0.000257339 0.00021117 0.0202351 0.0167358 28 2713 30 6.65987e+06 278916 500653. 1732.36 1.33 0.0829678 0.0721658 21970 115934 -1 2325 20 1165 1640 133636 30650 0 0 133636 30650 1640 1432 0 0 6186 5125 0 0 8804 7142 0 0 1640 1475 0 0 56919 8095 0 0 58447 7381 0 0 1640 0 0 475 609 638 4576 0 0 3.50731 3.50731 -122.711 -3.50731 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0174113 0.0156521 136 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.63 vpr 53.46 MiB -1 -1 0.15 17600 1 0.02 -1 -1 29788 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 14.8 MiB 0.46 941 53.5 MiB 0.10 0.00 2.9071 -94.6052 -2.9071 2.9071 0.76 0.000236424 0.000189136 0.0160117 0.0130402 32 2577 25 6.65987e+06 393018 554710. 1919.41 1.03 0.0663049 0.056868 22834 132086 -1 2025 18 1260 2164 151113 35373 0 0 151113 35373 2164 1528 0 0 8025 6647 0 0 12731 9592 0 0 2164 1706 0 0 61965 8148 0 0 64064 7752 0 0 2164 0 0 904 1536 1318 9596 0 0 3.12451 3.12451 -109.621 -3.12451 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0183983 0.016621 132 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 6.24 vpr 53.44 MiB -1 -1 0.18 17528 1 0.02 -1 -1 29736 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 14.7 MiB 0.44 1111 53.4 MiB 0.12 0.00 3.47495 -108.938 -3.47495 3.47495 0.71 0.000148323 0.000116685 0.0179718 0.0144552 30 2401 21 6.65987e+06 456408 526063. 1820.29 2.76 0.112966 0.0957984 22546 126617 -1 2051 20 1043 1578 94653 21637 0 0 94653 21637 1578 1203 0 0 5423 4254 0 0 6944 5745 0 0 1578 1281 0 0 40688 4470 0 0 38442 4684 0 0 1578 0 0 535 603 576 4744 0 0 3.19151 3.19151 -123.682 -3.19151 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0175969 0.0157713 144 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.92 vpr 53.02 MiB -1 -1 0.12 17484 1 0.01 -1 -1 29652 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54288 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 14.5 MiB 0.10 854 53.0 MiB 0.09 0.00 3.20104 -95.0693 -3.20104 3.20104 0.83 0.000196206 0.000156965 0.0142863 0.011477 32 2200 24 6.65987e+06 367662 554710. 1919.41 3.02 0.117383 0.100458 22834 132086 -1 1814 21 1349 2126 164406 38161 0 0 164406 38161 2126 1567 0 0 8401 6907 0 0 12864 10239 0 0 2126 1668 0 0 74061 8418 0 0 64828 9362 0 0 2126 0 0 777 914 946 7069 0 0 3.44705 3.44705 -111.984 -3.44705 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.016224 0.0145639 122 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.60 vpr 53.14 MiB -1 -1 0.09 17528 1 0.02 -1 -1 29764 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54420 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 14.7 MiB 0.09 1150 53.1 MiB 0.08 0.00 3.71955 -112.95 -3.71955 3.71955 0.92 0.000235767 0.000193047 0.0130557 0.0109349 28 2455 21 6.65987e+06 291594 500653. 1732.36 2.44 0.0910547 0.0782478 21970 115934 -1 2182 21 1417 2108 125001 31141 0 0 125001 31141 2108 1634 0 0 7783 6473 0 0 11460 9317 0 0 2108 1811 0 0 51532 5728 0 0 50010 6178 0 0 2108 0 0 691 710 712 5679 0 0 3.49637 3.49637 -127.553 -3.49637 0 0 612192. 2118.31 0.24 0.05 0.11 -1 -1 0.24 0.0125456 0.0113242 133 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 8.96 vpr 53.50 MiB -1 -1 0.17 17788 1 0.02 -1 -1 29788 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54788 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 15.0 MiB 0.34 1154 53.5 MiB 0.08 0.00 3.54855 -110.543 -3.54855 3.54855 0.86 0.000140176 0.000113186 0.013144 0.0108734 28 3155 26 6.65987e+06 291594 500653. 1732.36 5.45 0.120003 0.104374 21970 115934 -1 2516 24 1908 3094 236058 52838 0 0 236058 52838 3094 2537 0 0 11176 9296 0 0 16463 12988 0 0 3094 2814 0 0 105574 12301 0 0 96657 12902 0 0 3094 0 0 1186 1426 1564 10296 0 0 3.95331 3.95331 -132.429 -3.95331 0 0 612192. 2118.31 0.27 0.08 0.10 -1 -1 0.27 0.0202986 0.0180728 146 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.84 vpr 53.45 MiB -1 -1 0.17 17588 1 0.02 -1 -1 29688 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54728 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 14.7 MiB 0.20 978 53.4 MiB 0.07 0.00 3.13344 -101.178 -3.13344 3.13344 0.70 0.000143135 0.000115239 0.0132694 0.0109061 32 2685 19 6.65987e+06 266238 554710. 1919.41 0.82 0.0560669 0.0480396 22834 132086 -1 2183 20 1508 2650 202713 46271 0 0 202713 46271 2650 1967 0 0 10199 8559 0 0 15379 12162 0 0 2650 2129 0 0 89103 10093 0 0 82732 11361 0 0 2650 0 0 1142 1136 1023 8613 0 0 3.43505 3.43505 -123.49 -3.43505 0 0 701300. 2426.64 0.20 0.05 0.07 -1 -1 0.20 0.0119078 0.0106517 135 74 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.48 vpr 52.75 MiB -1 -1 0.12 17104 1 0.01 -1 -1 29704 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 14.3 MiB 0.10 620 52.8 MiB 0.05 0.00 2.66984 -76.8361 -2.66984 2.66984 0.66 9.608e-05 7.6745e-05 0.00783826 0.00641906 28 1892 32 6.65987e+06 304272 500653. 1732.36 0.80 0.0338929 0.0289622 21970 115934 -1 1525 19 853 1325 97437 25039 0 0 97437 25039 1325 1063 0 0 4941 4126 0 0 7311 6065 0 0 1325 1138 0 0 41312 6249 0 0 41223 6398 0 0 1325 0 0 472 512 630 4353 0 0 3.03625 3.03625 -90.2131 -3.03625 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.0117758 0.0105207 97 20 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.99 vpr 53.31 MiB -1 -1 0.14 17512 1 0.02 -1 -1 29736 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 14.9 MiB 0.17 955 53.3 MiB 0.07 0.00 3.1319 -108.89 -3.1319 3.1319 0.96 0.000217157 0.00017528 0.0111057 0.00926845 26 2742 29 6.65987e+06 253560 477104. 1650.88 2.68 0.108341 0.093873 21682 110474 -1 2191 21 1523 2136 174542 39720 0 0 174542 39720 2136 1833 0 0 8042 6791 0 0 11779 9373 0 0 2136 1863 0 0 78088 9337 0 0 72361 10523 0 0 2136 0 0 613 649 594 5218 0 0 3.13457 3.13457 -128.798 -3.13457 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0170612 0.0153177 125 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 8.52 vpr 53.39 MiB -1 -1 0.13 17836 1 0.01 -1 -1 29872 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 15.1 MiB 0.13 1262 53.4 MiB 0.10 0.00 4.11964 -123.718 -4.11964 4.11964 0.71 0.00032275 0.000271746 0.0165214 0.0137573 30 3122 21 6.65987e+06 354984 526063. 1820.29 5.54 0.143738 0.125592 22546 126617 -1 2341 22 1626 2583 144719 34348 0 0 144719 34348 2583 1909 0 0 8811 6925 0 0 11653 9482 0 0 2583 2076 0 0 59973 6823 0 0 59116 7133 0 0 2583 0 0 957 910 912 7614 0 0 4.09251 4.09251 -140.759 -4.09251 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.0195132 0.0175673 168 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.74 vpr 53.18 MiB -1 -1 0.15 17696 1 0.02 -1 -1 29636 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 14.8 MiB 0.27 1007 53.2 MiB 0.07 0.00 3.42226 -106.623 -3.42226 3.42226 0.96 0.000232175 0.000189575 0.0111643 0.00933381 32 2210 20 6.65987e+06 393018 554710. 1919.41 2.29 0.0935818 0.0796152 22834 132086 -1 1982 19 1165 1939 130482 30839 0 0 130482 30839 1939 1349 0 0 7290 6179 0 0 12023 9161 0 0 1939 1512 0 0 53164 6359 0 0 54127 6279 0 0 1939 0 0 774 921 1020 7196 0 0 3.00411 3.00411 -116.365 -3.00411 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0171503 0.0155065 133 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.85 vpr 52.91 MiB -1 -1 0.17 17392 1 0.01 -1 -1 29756 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54184 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 14.3 MiB 0.05 789 52.9 MiB 0.08 0.00 2.66464 -82.7242 -2.66464 2.66464 1.02 0.000213604 0.000176622 0.0136416 0.0114485 28 1899 23 6.65987e+06 329628 500653. 1732.36 2.75 0.0854677 0.0741345 21970 115934 -1 1626 21 933 1682 126331 27680 0 0 126331 27680 1682 1182 0 0 6031 4810 0 0 8863 7077 0 0 1682 1303 0 0 54583 6497 0 0 53490 6811 0 0 1682 0 0 749 930 950 6951 0 0 2.66845 2.66845 -98.0292 -2.66845 0 0 612192. 2118.31 0.19 0.03 0.11 -1 -1 0.19 0.00868668 0.00773173 104 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.81 vpr 53.49 MiB -1 -1 0.18 17852 1 0.01 -1 -1 29848 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54776 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 15.3 MiB 0.34 1475 53.5 MiB 0.14 0.00 4.66752 -143.891 -4.66752 4.66752 0.79 0.000276006 0.000225265 0.025254 0.0209643 30 3232 28 6.65987e+06 316950 526063. 1820.29 3.29 0.150245 0.130763 22546 126617 -1 2760 22 1730 2523 160668 36520 0 0 160668 36520 2523 2093 0 0 8783 6922 0 0 11189 9340 0 0 2523 2242 0 0 66352 8291 0 0 69298 7632 0 0 2523 0 0 793 962 903 7347 0 0 4.61657 4.61657 -162.526 -4.61657 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.0216465 0.0194028 168 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 6.32 vpr 53.25 MiB -1 -1 0.16 17484 1 0.02 -1 -1 29756 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54528 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 14.7 MiB 0.31 993 53.2 MiB 0.12 0.00 3.48015 -111.627 -3.48015 3.48015 0.97 0.000226862 0.000184556 0.0207978 0.0171918 32 2303 22 6.65987e+06 405696 554710. 1919.41 2.79 0.0984349 0.0838241 22834 132086 -1 1974 21 1319 1853 129689 30372 0 0 129689 30372 1853 1400 0 0 6947 5846 0 0 10572 8288 0 0 1853 1537 0 0 53018 7026 0 0 55446 6275 0 0 1853 0 0 534 610 680 5491 0 0 3.42591 3.42591 -124.375 -3.42591 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0176117 0.0158674 130 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.93 vpr 52.56 MiB -1 -1 0.14 17080 1 0.01 -1 -1 29636 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53820 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 14.1 MiB 0.05 866 52.6 MiB 0.05 0.00 2.48032 -77.5068 -2.48032 2.48032 0.93 0.000166181 0.000134517 0.0083369 0.00694274 28 1896 21 6.65987e+06 291594 500653. 1732.36 0.89 0.0421813 0.0364083 21970 115934 -1 1664 20 913 1605 116557 26709 0 0 116557 26709 1605 1081 0 0 5788 4733 0 0 8891 6850 0 0 1605 1177 0 0 50821 5957 0 0 47847 6911 0 0 1605 0 0 692 982 922 6597 0 0 2.75365 2.75365 -96.6564 -2.75365 0 0 612192. 2118.31 0.20 0.03 0.09 -1 -1 0.20 0.0076504 0.00686206 100 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 7.07 vpr 53.24 MiB -1 -1 0.10 17364 1 0.02 -1 -1 29772 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 14.8 MiB 0.10 1095 53.2 MiB 0.10 0.00 3.84189 -101.264 -3.84189 3.84189 0.71 0.000242953 0.000197547 0.0155708 0.0128944 28 2766 27 6.65987e+06 431052 500653. 1732.36 4.30 0.154363 0.134115 21970 115934 -1 2309 23 1591 3004 244193 67376 0 0 244193 67376 3004 1932 0 0 10770 8529 0 0 16561 12904 0 0 3004 2106 0 0 103828 20951 0 0 107026 20954 0 0 3004 0 0 1413 2602 2837 17068 0 0 4.28185 4.28185 -132.369 -4.28185 0 0 612192. 2118.31 0.19 0.06 0.10 -1 -1 0.19 0.0120176 0.0106633 139 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.84 vpr 52.76 MiB -1 -1 0.14 16920 1 0.02 -1 -1 29652 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 14.3 MiB 0.10 691 52.8 MiB 0.05 0.00 2.66284 -81.2339 -2.66284 2.66284 0.64 0.000172397 0.000138632 0.00850407 0.00704921 28 1821 23 6.65987e+06 253560 500653. 1732.36 2.30 0.0727588 0.0626787 21970 115934 -1 1652 21 1087 1827 116472 29411 0 0 116472 29411 1827 1375 0 0 6567 5568 0 0 9930 7923 0 0 1827 1522 0 0 48071 6850 0 0 48250 6173 0 0 1827 0 0 740 750 834 6201 0 0 2.86165 2.86165 -105.593 -2.86165 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0136875 0.012293 104 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.97 vpr 52.83 MiB -1 -1 0.15 17628 1 0.01 -1 -1 29776 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 14.2 MiB 0.11 841 52.8 MiB 0.07 0.00 3.07989 -86.9107 -3.07989 3.07989 0.61 0.000112923 9.1525e-05 0.0103094 0.00849479 26 1966 17 6.65987e+06 418374 477104. 1650.88 0.60 0.0314055 0.0267497 21682 110474 -1 1741 21 989 1602 117407 26616 0 0 117407 26616 1602 1172 0 0 6104 4927 0 0 8980 7113 0 0 1602 1282 0 0 50973 5833 0 0 48146 6289 0 0 1602 0 0 613 756 717 6018 0 0 2.60605 2.60605 -100.041 -2.60605 0 0 585099. 2024.56 0.23 0.03 0.10 -1 -1 0.23 0.00965739 0.00865429 105 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.99 vpr 53.42 MiB -1 -1 0.15 17492 1 0.02 -1 -1 29840 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 14.7 MiB 0.30 1025 53.4 MiB 0.15 0.00 3.29375 -101.303 -3.29375 3.29375 0.86 0.000243909 0.000198406 0.0244711 0.0202952 30 2415 24 6.65987e+06 304272 526063. 1820.29 2.71 0.127211 0.110235 22546 126617 -1 2013 20 1239 1871 116186 27010 0 0 116186 27010 1871 1538 0 0 6280 5134 0 0 8271 6666 0 0 1871 1634 0 0 47834 6631 0 0 50059 5407 0 0 1871 0 0 632 670 570 5021 0 0 3.15297 3.15297 -110.627 -3.15297 0 0 666494. 2306.21 0.21 0.05 0.07 -1 -1 0.21 0.0171584 0.0153908 138 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.79 vpr 53.07 MiB -1 -1 0.17 17264 1 0.01 -1 -1 29828 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54348 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 14.6 MiB 0.19 1016 53.1 MiB 0.09 0.00 3.5135 -109.138 -3.5135 3.5135 0.97 0.000265238 0.00022017 0.0158564 0.0132268 30 2116 21 6.65987e+06 304272 526063. 1820.29 2.42 0.12734 0.111493 22546 126617 -1 1867 19 1077 1679 105248 23978 0 0 105248 23978 1679 1237 0 0 5765 4658 0 0 7352 6071 0 0 1679 1390 0 0 43912 5487 0 0 44861 5135 0 0 1679 0 0 602 855 570 5358 0 0 3.40491 3.40491 -122.621 -3.40491 0 0 666494. 2306.21 0.26 0.03 0.11 -1 -1 0.26 0.0105982 0.00957425 130 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 6.67 vpr 53.29 MiB -1 -1 0.13 17528 1 0.02 -1 -1 29684 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54568 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 14.8 MiB 0.24 1055 53.3 MiB 0.10 0.00 3.75584 -112.749 -3.75584 3.75584 0.96 0.000242645 0.000199676 0.0172117 0.0142773 28 2589 21 6.65987e+06 342306 500653. 1732.36 3.37 0.122303 0.105906 21970 115934 -1 2232 20 1209 2152 189773 40150 0 0 189773 40150 2152 1665 0 0 7954 6561 0 0 11642 9318 0 0 2152 1809 0 0 84848 9987 0 0 81025 10810 0 0 2152 0 0 943 1135 1213 8317 0 0 3.52611 3.52611 -127.581 -3.52611 0 0 612192. 2118.31 0.18 0.04 0.07 -1 -1 0.18 0.0106069 0.00949999 132 48 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.95 vpr 52.89 MiB -1 -1 0.16 17512 1 0.02 -1 -1 29652 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54164 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 14.3 MiB 0.25 983 52.9 MiB 0.05 0.00 3.5308 -105.115 -3.5308 3.5308 1.03 0.000195423 0.000159079 0.00883407 0.00747222 30 1987 20 6.65987e+06 202848 526063. 1820.29 2.35 0.0654487 0.0558656 22546 126617 -1 1689 23 791 1065 57553 14375 0 0 57553 14375 1065 855 0 0 3727 3011 0 0 4700 3955 0 0 1065 923 0 0 24436 2749 0 0 22560 2882 0 0 1065 0 0 274 206 253 2362 0 0 3.15571 3.15571 -112.339 -3.15571 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0150075 0.0134096 103 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.95 vpr 53.04 MiB -1 -1 0.16 17576 1 0.01 -1 -1 29836 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54312 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 14.5 MiB 0.24 936 53.0 MiB 0.05 0.00 3.09498 -102.254 -3.09498 3.09498 0.96 0.000205771 0.000166992 0.0100555 0.00841217 32 2214 22 6.65987e+06 240882 554710. 1919.41 2.53 0.0923368 0.0784103 22834 132086 -1 1912 22 1173 1725 120388 28827 0 0 120388 28827 1725 1432 0 0 6641 5611 0 0 9983 7881 0 0 1725 1483 0 0 49914 6303 0 0 50400 6117 0 0 1725 0 0 552 558 516 4455 0 0 3.04865 3.04865 -117.416 -3.04865 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0163178 0.0145388 111 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 6.77 vpr 53.17 MiB -1 -1 0.16 17648 1 0.02 -1 -1 29708 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54444 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 14.6 MiB 0.25 970 53.2 MiB 0.11 0.00 2.55652 -78.2693 -2.55652 2.55652 1.01 0.000234536 0.000192293 0.0180656 0.0149846 26 2308 20 6.65987e+06 418374 477104. 1650.88 3.24 0.11795 0.10166 21682 110474 -1 1972 21 1112 1927 134019 30314 0 0 134019 30314 1927 1311 0 0 7185 5905 0 0 10446 8250 0 0 1927 1459 0 0 58261 6499 0 0 54273 6890 0 0 1927 0 0 815 1138 1384 8658 0 0 2.66645 2.66645 -98.5902 -2.66645 0 0 585099. 2024.56 0.23 0.04 0.10 -1 -1 0.23 0.0104871 0.00929162 123 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 6.29 vpr 52.92 MiB -1 -1 0.17 17576 1 0.01 -1 -1 29708 -1 -1 35 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54192 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 14.5 MiB 0.15 773 52.9 MiB 0.09 0.00 3.16278 -78.7825 -3.16278 3.16278 1.01 0.000176092 0.000141908 0.0146496 0.0121435 28 2055 34 6.65987e+06 443730 500653. 1732.36 3.05 0.10636 0.0919614 21970 115934 -1 1697 24 1154 2205 144685 34629 0 0 144685 34629 2205 1374 0 0 8109 6650 0 0 12503 9761 0 0 2205 1515 0 0 57820 8037 0 0 61843 7292 0 0 2205 0 0 1051 1811 1760 11395 0 0 3.24679 3.24679 -98.5965 -3.24679 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00878196 0.0077713 115 20 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.17 vpr 52.79 MiB -1 -1 0.16 17604 1 0.01 -1 -1 29864 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54056 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 14.4 MiB 0.24 827 52.8 MiB 0.09 0.00 3.29355 -97.6112 -3.29355 3.29355 1.02 0.000222679 0.000182773 0.0183147 0.0151695 28 2040 19 6.65987e+06 215526 500653. 1732.36 2.62 0.102606 0.0882563 21970 115934 -1 1781 19 1004 1766 118717 27158 0 0 118717 27158 1766 1266 0 0 6298 5303 0 0 8973 7072 0 0 1766 1395 0 0 48167 6407 0 0 51747 5715 0 0 1766 0 0 762 875 707 6064 0 0 2.84971 2.84971 -107.399 -2.84971 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0176335 0.0160561 108 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.79 vpr 53.17 MiB -1 -1 0.16 17368 1 0.02 -1 -1 29688 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54448 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 14.6 MiB 0.23 993 53.2 MiB 0.07 0.00 2.94464 -103.892 -2.94464 2.94464 0.64 0.00012542 0.000101121 0.0116933 0.00958429 32 2440 18 6.65987e+06 253560 554710. 1919.41 0.61 0.0347394 0.0293539 22834 132086 -1 2068 20 1407 2050 173152 38478 0 0 173152 38478 2050 1696 0 0 7825 6417 0 0 12008 9374 0 0 2050 1781 0 0 74496 9984 0 0 74723 9226 0 0 2050 0 0 643 602 620 5201 0 0 2.85111 2.85111 -119.684 -2.85111 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0160299 0.0143615 120 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.35 vpr 53.03 MiB -1 -1 0.15 17300 1 0.02 -1 -1 29644 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54304 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 14.5 MiB 0.09 1036 53.0 MiB 0.12 0.00 3.27404 -99.2302 -3.27404 3.27404 0.95 0.000212763 0.000173915 0.0177711 0.0147013 32 2377 25 6.65987e+06 405696 554710. 1919.41 0.95 0.0578099 0.0494629 22834 132086 -1 2100 25 1532 2794 207033 45982 0 0 207033 45982 2794 2079 0 0 10616 8516 0 0 16649 12592 0 0 2794 2298 0 0 87751 10084 0 0 86429 10413 0 0 2794 0 0 1262 1683 1615 11142 0 0 3.37911 3.37911 -116.825 -3.37911 0 0 701300. 2426.64 0.29 0.10 0.12 -1 -1 0.29 0.0194033 0.0173817 127 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.57 vpr 53.49 MiB -1 -1 0.15 17364 1 0.02 -1 -1 29664 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 14.7 MiB 0.27 1119 53.5 MiB 0.06 0.00 3.98521 -126.961 -3.98521 3.98521 0.72 0.000121128 9.7489e-05 0.00857308 0.00709462 30 2528 20 6.65987e+06 278916 526063. 1820.29 2.68 0.0994355 0.0861864 22546 126617 -1 2056 20 1152 1741 101079 23848 0 0 101079 23848 1741 1386 0 0 6069 4809 0 0 7646 6374 0 0 1741 1438 0 0 46346 4270 0 0 37536 5571 0 0 1741 0 0 589 558 474 4594 0 0 3.74071 3.74071 -137.557 -3.74071 0 0 666494. 2306.21 0.29 0.05 0.11 -1 -1 0.29 0.0175577 0.0158729 144 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 6.50 vpr 53.21 MiB -1 -1 0.17 17668 1 0.02 -1 -1 29760 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54488 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 14.7 MiB 0.36 933 53.2 MiB 0.13 0.00 3.92821 -111.484 -3.92821 3.92821 1.02 0.000250146 0.000205675 0.0233211 0.0193826 30 2138 22 6.65987e+06 405696 526063. 1820.29 2.74 0.115345 0.0992664 22546 126617 -1 1632 21 1125 1967 89347 23507 0 0 89347 23507 1967 1221 0 0 6508 5244 0 0 8781 6960 0 0 1967 1309 0 0 33956 4564 0 0 36168 4209 0 0 1967 0 0 842 1078 915 7550 0 0 3.64083 3.64083 -121.487 -3.64083 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0201847 0.018151 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.91 vpr 53.43 MiB -1 -1 0.13 17528 1 0.01 -1 -1 29708 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1113 53.4 MiB 0.07 0.00 3.30775 -109.49 -3.30775 3.30775 0.63 0.000140465 0.000114444 0.010029 0.00833654 28 2766 24 6.65987e+06 469086 500653. 1732.36 1.12 0.0694211 0.0606979 21970 115934 -1 2312 23 1461 2581 176251 41037 0 0 176251 41037 2581 1894 0 0 9450 7789 0 0 14019 10878 0 0 2581 2118 0 0 76541 8918 0 0 71079 9440 0 0 2581 0 0 1120 1472 1416 10065 0 0 3.44291 3.44291 -129.418 -3.44291 0 0 612192. 2118.31 0.25 0.04 0.11 -1 -1 0.25 0.0118094 0.0104886 140 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.39 vpr 52.70 MiB -1 -1 0.14 17236 1 0.02 -1 -1 29708 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53960 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 14.2 MiB 0.18 879 52.7 MiB 0.09 0.00 2.76049 -88.2512 -2.76049 2.76049 0.99 0.000192208 0.000156464 0.0165533 0.0137283 30 1821 22 6.65987e+06 240882 526063. 1820.29 2.22 0.0917208 0.0793105 22546 126617 -1 1562 18 788 1348 71287 16728 0 0 71287 16728 1348 947 0 0 4359 3455 0 0 5898 4577 0 0 1348 1152 0 0 29574 3293 0 0 28760 3304 0 0 1348 0 0 560 534 497 4317 0 0 2.46385 2.46385 -96.0168 -2.46385 0 0 666494. 2306.21 0.31 0.04 0.12 -1 -1 0.31 0.0124661 0.0112344 105 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 6.32 vpr 53.22 MiB -1 -1 0.17 17488 1 0.02 -1 -1 29780 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54500 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 14.8 MiB 0.25 982 53.2 MiB 0.11 0.00 3.80967 -110.655 -3.80967 3.80967 1.01 0.000247552 0.000202638 0.0212586 0.0177527 26 2651 25 6.65987e+06 266238 477104. 1650.88 2.92 0.130092 0.112695 21682 110474 -1 2136 20 1620 2473 201203 44488 0 0 201203 44488 2473 2041 0 0 9152 7767 0 0 13837 10895 0 0 2473 2117 0 0 90143 10347 0 0 83125 11321 0 0 2473 0 0 853 807 895 7242 0 0 3.76163 3.76163 -137.588 -3.76163 0 0 585099. 2024.56 0.20 0.04 0.09 -1 -1 0.20 0.0104165 0.00935009 137 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 7.09 vpr 53.48 MiB -1 -1 0.17 17480 1 0.01 -1 -1 29708 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54760 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 14.8 MiB 0.29 1220 53.5 MiB 0.06 0.00 3.6954 -114.819 -3.6954 3.6954 0.59 0.000122535 9.8914e-05 0.00897642 0.00745032 28 3006 29 6.65987e+06 304272 500653. 1732.36 4.28 0.0990488 0.0861424 21970 115934 -1 2441 20 1552 2478 196893 43123 0 0 196893 43123 2478 1967 0 0 9001 7335 0 0 13627 10822 0 0 2478 2112 0 0 83768 10892 0 0 85541 9995 0 0 2478 0 0 926 1482 1526 10070 0 0 4.07331 4.07331 -138.928 -4.07331 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0175917 0.0157894 138 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 6.32 vpr 53.25 MiB -1 -1 0.14 17532 1 0.01 -1 -1 29828 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54524 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 14.8 MiB 0.44 1090 53.2 MiB 0.13 0.00 4.1579 -123.706 -4.1579 4.1579 1.03 0.00023054 0.000188209 0.0223261 0.0184847 28 2628 21 6.65987e+06 354984 500653. 1732.36 2.48 0.131158 0.113703 21970 115934 -1 2293 20 1542 2423 160724 37866 0 0 160724 37866 2423 1855 0 0 8744 7122 0 0 12899 10228 0 0 2423 1960 0 0 68485 8374 0 0 65750 8327 0 0 2423 0 0 881 988 1049 7959 0 0 4.32503 4.32503 -145.024 -4.32503 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0193408 0.0174847 146 43 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.64 vpr 53.44 MiB -1 -1 0.15 17368 1 0.02 -1 -1 29744 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54720 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 14.8 MiB 0.78 987 53.4 MiB 0.08 0.00 3.25995 -100.389 -3.25995 3.25995 0.59 0.000128065 0.00010234 0.0127067 0.0104693 32 2262 21 6.65987e+06 393018 554710. 1919.41 2.32 0.0918934 0.0773349 22834 132086 -1 1988 21 1346 2251 157085 38008 0 0 157085 38008 2251 1640 0 0 8891 7578 0 0 14261 11223 0 0 2251 1931 0 0 64849 7937 0 0 64582 7699 0 0 2251 0 0 905 967 948 7569 0 0 2.99311 2.99311 -112.884 -2.99311 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0189659 0.0169951 133 78 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 6.37 vpr 53.39 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29720 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54672 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 14.8 MiB 0.24 1027 53.4 MiB 0.12 0.00 3.76955 -112.412 -3.76955 3.76955 1.02 0.000124518 9.9516e-05 0.0228869 0.0189542 32 2788 30 6.65987e+06 253560 554710. 1919.41 2.68 0.114736 0.0986761 22834 132086 -1 2301 21 1796 3175 245816 55288 0 0 245816 55288 3175 2559 0 0 11828 10044 0 0 18735 14181 0 0 3175 2702 0 0 104369 13138 0 0 104534 12664 0 0 3175 0 0 1379 1655 1492 11033 0 0 3.71631 3.71631 -134.272 -3.71631 0 0 701300. 2426.64 0.30 0.08 0.11 -1 -1 0.30 0.0197044 0.017797 133 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 6.98 vpr 53.53 MiB -1 -1 0.17 17288 1 0.01 -1 -1 29724 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 14.9 MiB 0.44 901 53.5 MiB 0.08 0.00 3.57869 -100.167 -3.57869 3.57869 1.01 0.00025225 0.000204125 0.0131033 0.0109822 28 2312 21 6.65987e+06 367662 500653. 1732.36 3.17 0.139806 0.122965 21970 115934 -1 2026 19 1321 2231 150541 35367 0 0 150541 35367 2231 1651 0 0 7905 6384 0 0 11364 8893 0 0 2231 1955 0 0 64460 7904 0 0 62350 8580 0 0 2231 0 0 910 1036 1052 7551 0 0 2.98265 2.98265 -111.215 -2.98265 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.0185893 0.0167392 131 79 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.67 vpr 52.67 MiB -1 -1 0.12 16924 1 0.01 -1 -1 29708 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53932 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 14.2 MiB 0.10 735 52.7 MiB 0.05 0.00 2.87075 -90.6997 -2.87075 2.87075 0.96 0.000103133 8.329e-05 0.00861767 0.00717174 28 1794 22 6.65987e+06 190170 500653. 1732.36 0.58 0.0289472 0.0247001 21970 115934 -1 1717 20 962 1430 110945 26299 0 0 110945 26299 1430 1215 0 0 5497 4620 0 0 7897 6534 0 0 1430 1264 0 0 49087 6091 0 0 45604 6575 0 0 1430 0 0 468 558 525 4029 0 0 2.58325 2.58325 -104.553 -2.58325 0 0 612192. 2118.31 0.23 0.04 0.11 -1 -1 0.23 0.0113156 0.0100603 96 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 6.34 vpr 53.34 MiB -1 -1 0.09 17676 1 0.01 -1 -1 29744 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54624 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 14.9 MiB 0.19 1060 53.3 MiB 0.09 0.00 3.45695 -112.304 -3.45695 3.45695 0.97 0.000247676 0.000199896 0.013721 0.0113379 32 2356 23 6.65987e+06 380340 554710. 1919.41 3.03 0.12256 0.104677 22834 132086 -1 2052 19 1295 2214 165139 38069 0 0 165139 38069 2214 1649 0 0 8503 7161 0 0 14122 10789 0 0 2214 1878 0 0 74770 7545 0 0 63316 9047 0 0 2214 0 0 919 1063 861 7635 0 0 3.50931 3.50931 -124.737 -3.50931 0 0 701300. 2426.64 0.26 0.04 0.12 -1 -1 0.26 0.0103548 0.00929561 130 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 6.22 vpr 53.25 MiB -1 -1 0.16 17652 1 0.01 -1 -1 29788 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 14.7 MiB 0.32 999 53.3 MiB 0.11 0.00 3.86981 -120.613 -3.86981 3.86981 1.02 0.000278177 0.000227669 0.0188734 0.0158138 30 2354 22 6.65987e+06 253560 526063. 1820.29 2.53 0.109913 0.0950042 22546 126617 -1 2034 21 1518 2473 127088 31017 0 0 127088 31017 2473 1721 0 0 8252 6486 0 0 11016 8807 0 0 2473 1883 0 0 50151 6143 0 0 52723 5977 0 0 2473 0 0 955 740 948 7472 0 0 3.34017 3.34017 -131.265 -3.34017 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0189427 0.0169803 147 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.81 vpr 52.90 MiB -1 -1 0.15 17084 1 0.01 -1 -1 29832 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54168 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 14.2 MiB 0.25 969 52.9 MiB 0.04 0.00 3.29515 -98.7591 -3.29515 3.29515 0.92 0.000116878 9.6039e-05 0.00755403 0.00627861 30 1924 17 6.65987e+06 240882 526063. 1820.29 1.49 0.0566154 0.0488462 22546 126617 -1 1663 19 775 1027 62164 14746 0 0 62164 14746 1027 865 0 0 3603 2864 0 0 4657 3905 0 0 1027 901 0 0 26371 3072 0 0 25479 3139 0 0 1027 0 0 252 144 223 2170 0 0 2.80731 2.80731 -105.751 -2.80731 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0136899 0.0123341 111 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 6.14 vpr 52.80 MiB -1 -1 0.13 17036 1 0.02 -1 -1 29668 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54068 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 14.3 MiB 0.11 834 52.8 MiB 0.07 0.00 2.99601 -91.814 -2.99601 2.99601 1.05 0.000169786 0.000136978 0.01056 0.00873001 32 1876 20 6.65987e+06 266238 554710. 1919.41 2.88 0.0958683 0.0820428 22834 132086 -1 1769 20 1069 1725 136220 31724 0 0 136220 31724 1725 1348 0 0 6764 5785 0 0 11442 8907 0 0 1725 1424 0 0 57865 7246 0 0 56699 7014 0 0 1725 0 0 656 698 735 5550 0 0 2.85171 2.85171 -105.401 -2.85171 0 0 701300. 2426.64 0.31 0.05 0.12 -1 -1 0.31 0.0135764 0.012204 106 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 7.90 vpr 53.46 MiB -1 -1 0.16 17452 1 0.01 -1 -1 29692 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1127 53.5 MiB 0.11 0.00 4.06447 -131.03 -4.06447 4.06447 0.98 0.000255173 0.000210623 0.0179258 0.0149424 26 3212 37 6.65987e+06 316950 477104. 1650.88 4.67 0.143846 0.125827 21682 110474 -1 2603 23 1799 2356 214913 46948 0 0 214913 46948 2356 2116 0 0 8931 7416 0 0 13573 10807 0 0 2356 2252 0 0 97964 11437 0 0 89733 12920 0 0 2356 0 0 557 587 598 5234 0 0 4.30203 4.30203 -156.955 -4.30203 0 0 585099. 2024.56 0.19 0.05 0.10 -1 -1 0.19 0.0128827 0.0115619 144 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 6.59 vpr 53.41 MiB -1 -1 0.15 17608 1 0.01 -1 -1 29756 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 14.7 MiB 0.32 1211 53.4 MiB 0.07 0.00 4.05969 -121.436 -4.05969 4.05969 0.60 0.00012447 9.9275e-05 0.0103324 0.00846571 26 3130 46 6.65987e+06 354984 477104. 1650.88 3.92 0.096192 0.0832422 21682 110474 -1 2638 21 1484 2417 196312 43977 0 0 196312 43977 2417 1900 0 0 9165 7529 0 0 13950 11141 0 0 2417 2056 0 0 86701 10297 0 0 81662 11054 0 0 2417 0 0 933 1125 1219 8404 0 0 4.41637 4.41637 -150.378 -4.41637 0 0 585099. 2024.56 0.24 0.07 0.09 -1 -1 0.24 0.0189583 0.0171029 151 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 8.92 vpr 53.41 MiB -1 -1 0.16 17348 1 0.02 -1 -1 29720 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 14.7 MiB 0.07 1215 53.4 MiB 0.12 0.00 4.21996 -116.591 -4.21996 4.21996 0.98 0.000288983 0.000233579 0.0179129 0.0147396 24 3700 49 6.65987e+06 456408 448715. 1552.65 5.59 0.15926 0.138874 21394 104001 -1 2826 29 2158 3944 513438 149743 0 0 513438 149743 3944 3027 0 0 15353 12553 0 0 25625 19044 0 0 3944 3334 0 0 235801 57399 0 0 228771 54386 0 0 3944 0 0 1786 2945 2757 17524 0 0 4.68157 4.68157 -151.638 -4.68157 0 0 554710. 1919.41 0.23 0.10 0.08 -1 -1 0.23 0.0143845 0.0128519 153 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.80 vpr 52.95 MiB -1 -1 0.18 17692 1 0.01 -1 -1 29752 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54216 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 14.4 MiB 0.25 851 52.9 MiB 0.05 0.00 2.72584 -83.5123 -2.72584 2.72584 0.74 0.000112321 9.0488e-05 0.00799976 0.00656448 26 2022 20 6.65987e+06 393018 477104. 1650.88 1.79 0.0793207 0.0684028 21682 110474 -1 1820 23 1378 2341 164779 39007 0 0 164779 39007 2341 1647 0 0 8774 7412 0 0 13977 10817 0 0 2341 1779 0 0 71458 8175 0 0 65888 9177 0 0 2341 0 0 963 1139 1099 8206 0 0 2.78691 2.78691 -100.149 -2.78691 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0174719 0.0155116 120 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.59 vpr 52.76 MiB -1 -1 0.15 17308 1 0.01 -1 -1 29808 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 14.3 MiB 0.05 701 52.8 MiB 0.06 0.00 2.7331 -79.0895 -2.7331 2.7331 0.85 0.000162781 0.000128798 0.0116133 0.00948429 32 1545 23 6.65987e+06 266238 554710. 1919.41 1.82 0.0567455 0.0475178 22834 132086 -1 1428 21 1024 1550 110556 26630 0 0 110556 26630 1550 1239 0 0 6157 5411 0 0 9598 7527 0 0 1550 1349 0 0 46911 5407 0 0 44790 5697 0 0 1550 0 0 526 542 641 4601 0 0 2.93917 2.93917 -94.6025 -2.93917 0 0 701300. 2426.64 0.22 0.05 0.07 -1 -1 0.22 0.0121337 0.0107971 97 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.85 vpr 53.48 MiB -1 -1 0.17 17608 1 0.01 -1 -1 29832 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54760 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 15.3 MiB 0.20 1269 53.5 MiB 0.09 0.00 3.17598 -108.18 -3.17598 3.17598 1.01 0.000269672 0.000218203 0.0154326 0.0127937 32 3655 25 6.65987e+06 329628 554710. 1919.41 1.19 0.0841558 0.0734837 22834 132086 -1 2972 23 2248 3731 308500 67309 0 0 308500 67309 3731 2908 0 0 14281 12227 0 0 22247 17200 0 0 3731 3067 0 0 137321 15343 0 0 127189 16564 0 0 3731 0 0 1483 1820 1512 12162 0 0 3.70259 3.70259 -135.42 -3.70259 0 0 701300. 2426.64 0.30 0.11 0.12 -1 -1 0.30 0.0271249 0.0244378 170 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 7.74 vpr 53.43 MiB -1 -1 0.18 17420 1 0.01 -1 -1 29824 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 14.8 MiB 1.21 991 53.4 MiB 0.09 0.00 4.2111 -122.698 -4.2111 4.2111 1.01 0.000235834 0.000194223 0.0182822 0.0152327 28 2631 26 6.65987e+06 266238 500653. 1732.36 3.33 0.116915 0.101942 21970 115934 -1 2195 20 1632 2603 199801 44746 0 0 199801 44746 2603 2112 0 0 9630 7884 0 0 14082 11438 0 0 2603 2181 0 0 89280 10186 0 0 81603 10945 0 0 2603 0 0 971 1203 1268 8789 0 0 4.27697 4.27697 -144.956 -4.27697 0 0 612192. 2118.31 0.24 0.04 0.08 -1 -1 0.24 0.0105596 0.00945602 150 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.21 vpr 53.11 MiB -1 -1 0.16 17500 1 0.01 -1 -1 29676 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 14.5 MiB 0.71 844 53.1 MiB 0.06 0.00 3.4165 -105.635 -3.4165 3.4165 0.59 0.0002119 0.000171828 0.0101363 0.00833895 28 2143 20 6.65987e+06 228204 500653. 1732.36 2.07 0.0738153 0.0629766 21970 115934 -1 1758 18 987 1453 108394 26656 0 0 108394 26656 1453 1187 0 0 5460 4485 0 0 8103 6547 0 0 1453 1252 0 0 46832 6807 0 0 45093 6378 0 0 1453 0 0 466 404 494 3853 0 0 3.38936 3.38936 -122.855 -3.38936 0 0 612192. 2118.31 0.29 0.05 0.10 -1 -1 0.29 0.0159881 0.0143583 126 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.01 vpr 53.19 MiB -1 -1 0.16 17372 1 0.02 -1 -1 29712 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 14.6 MiB 0.08 1076 53.2 MiB 0.09 0.00 3.7622 -103.397 -3.7622 3.7622 0.81 0.000228472 0.000187924 0.0148797 0.0122422 30 2070 22 6.65987e+06 380340 526063. 1820.29 2.21 0.0743744 0.0627029 22546 126617 -1 1833 16 789 1255 67907 15893 0 0 67907 15893 1255 832 0 0 4230 3257 0 0 5344 4350 0 0 1255 936 0 0 26672 3571 0 0 29151 2947 0 0 1255 0 0 466 520 378 3831 0 0 3.24665 3.24665 -112.873 -3.24665 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0130331 0.0118086 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.44 vpr 53.39 MiB -1 -1 0.16 17584 1 0.01 -1 -1 29716 -1 -1 33 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 14.8 MiB 0.16 1100 53.4 MiB 0.10 0.00 3.83975 -111.213 -3.83975 3.83975 0.94 0.000256494 0.00021116 0.0150431 0.0126053 26 2876 25 6.65987e+06 418374 477104. 1650.88 3.17 0.11166 0.0967135 21682 110474 -1 2320 23 1358 2398 164071 38027 0 0 164071 38027 2398 1719 0 0 8888 6989 0 0 12823 10239 0 0 2398 1901 0 0 71415 8279 0 0 66149 8900 0 0 2398 0 0 1040 1688 1738 10732 0 0 3.61825 3.61825 -121.781 -3.61825 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0193944 0.0173529 144 46 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.83 vpr 53.08 MiB -1 -1 0.14 17528 1 0.02 -1 -1 29764 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54352 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 14.5 MiB 0.16 1003 53.1 MiB 0.09 0.00 2.8933 -92.9901 -2.8933 2.8933 1.01 0.000238674 0.000195767 0.0152192 0.0127454 32 2350 27 6.65987e+06 393018 554710. 1919.41 2.55 0.0933597 0.0793518 22834 132086 -1 2119 19 1278 2117 156262 36355 0 0 156262 36355 2117 1554 0 0 8125 6933 0 0 12983 10067 0 0 2117 1681 0 0 64930 8261 0 0 65990 7859 0 0 2117 0 0 839 913 992 7293 0 0 2.77171 2.77171 -103.488 -2.77171 0 0 701300. 2426.64 0.24 0.05 0.08 -1 -1 0.24 0.0135583 0.0120006 124 46 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 7.49 vpr 53.51 MiB -1 -1 0.16 17464 1 0.01 -1 -1 29740 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 14.8 MiB 0.18 1224 53.5 MiB 0.11 0.00 3.7303 -122.563 -3.7303 3.7303 0.76 0.000241242 0.000199939 0.0187619 0.0156525 28 3191 36 6.65987e+06 304272 500653. 1732.36 4.37 0.154727 0.135669 21970 115934 -1 2574 21 1994 2940 203971 47129 0 0 203971 47129 2940 2366 0 0 10502 8816 0 0 15704 12404 0 0 2940 2504 0 0 87925 10394 0 0 83960 10645 0 0 2940 0 0 946 939 974 7691 0 0 4.14451 4.14451 -151.6 -4.14451 0 0 612192. 2118.31 0.29 0.09 0.11 -1 -1 0.29 0.0206313 0.0186765 147 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.80 vpr 53.34 MiB -1 -1 0.17 17588 1 0.02 -1 -1 29672 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54616 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 14.7 MiB 0.44 1090 53.3 MiB 0.09 0.00 3.63475 -114.492 -3.63475 3.63475 0.67 0.000137535 0.00011034 0.0140551 0.0115455 28 2461 21 6.65987e+06 431052 500653. 1732.36 0.64 0.0405826 0.0343709 21970 115934 -1 2217 17 1149 1839 120109 27839 0 0 120109 27839 1839 1357 0 0 6682 5403 0 0 9294 7554 0 0 1839 1459 0 0 49117 6357 0 0 51338 5709 0 0 1839 0 0 690 752 820 5963 0 0 3.17811 3.17811 -123.539 -3.17811 0 0 612192. 2118.31 0.27 0.05 0.10 -1 -1 0.27 0.016206 0.0146112 143 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.72 vpr 52.56 MiB -1 -1 0.10 17108 1 0.02 -1 -1 29772 -1 -1 17 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53820 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 14.1 MiB 0.16 522 52.6 MiB 0.08 0.00 2.88681 -82.7562 -2.88681 2.88681 1.03 0.00018713 0.000150394 0.0164195 0.013443 32 1387 26 6.65987e+06 215526 554710. 1919.41 2.29 0.0668649 0.0561222 22834 132086 -1 1153 21 933 1325 96576 24501 0 0 96576 24501 1325 1041 0 0 5083 4423 0 0 9097 7145 0 0 1325 1156 0 0 38457 5488 0 0 41289 5248 0 0 1325 0 0 392 453 386 3420 0 0 3.01517 3.01517 -95.0243 -3.01517 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.0154741 0.0138617 92 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 6.15 vpr 53.02 MiB -1 -1 0.15 17360 1 0.02 -1 -1 29624 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 14.5 MiB 0.29 1023 53.0 MiB 0.10 0.00 3.1971 -103.501 -3.1971 3.1971 1.00 0.000213493 0.000172186 0.0180033 0.0148943 28 2216 20 6.65987e+06 253560 500653. 1732.36 2.58 0.0868101 0.0734658 21970 115934 -1 1926 20 1283 1693 122277 28040 0 0 122277 28040 1693 1435 0 0 6171 5124 0 0 8678 7052 0 0 1693 1510 0 0 52601 6291 0 0 51441 6628 0 0 1693 0 0 410 305 434 3662 0 0 3.13177 3.13177 -118.29 -3.13177 0 0 612192. 2118.31 0.26 0.05 0.09 -1 -1 0.26 0.0143574 0.012829 116 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 6.83 vpr 53.11 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29780 -1 -1 37 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54384 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 14.5 MiB 0.10 994 53.1 MiB 0.10 0.00 3.56815 -98.3274 -3.56815 3.56815 0.84 0.000235626 0.000192208 0.0150063 0.0125261 26 2426 36 6.65987e+06 469086 477104. 1650.88 3.66 0.140043 0.121658 21682 110474 -1 1961 19 1272 2321 150025 37427 0 0 150025 37427 2321 1506 0 0 8992 7400 0 0 13445 10683 0 0 2321 1655 0 0 61542 8244 0 0 61404 7939 0 0 2321 0 0 1049 1360 1540 9984 0 0 3.70565 3.70565 -123.482 -3.70565 0 0 585099. 2024.56 0.28 0.06 0.10 -1 -1 0.28 0.0176508 0.0159791 129 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 6.84 vpr 52.88 MiB -1 -1 0.16 17528 1 0.01 -1 -1 29752 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54152 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 14.2 MiB 0.25 766 52.9 MiB 0.06 0.00 3.42635 -91.4949 -3.42635 3.42635 1.02 0.000196463 0.000161141 0.00900391 0.00754567 26 2169 24 6.65987e+06 266238 477104. 1650.88 3.50 0.10304 0.0899553 21682 110474 -1 1777 22 1158 1483 106155 26400 0 0 106155 26400 1483 1344 0 0 5876 4884 0 0 8814 7115 0 0 1483 1378 0 0 44199 5847 0 0 44300 5832 0 0 1483 0 0 325 351 336 3181 0 0 3.16871 3.16871 -105.502 -3.16871 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.0183169 0.0167598 110 25 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.93 vpr 52.74 MiB -1 -1 0.10 17396 1 0.01 -1 -1 29664 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54004 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 14.1 MiB 0.15 814 52.7 MiB 0.06 0.00 2.90269 -93.5111 -2.90269 2.90269 0.60 0.000101587 8.1371e-05 0.0115725 0.00950081 30 1839 22 6.65987e+06 202848 526063. 1820.29 0.56 0.0324148 0.0273868 22546 126617 -1 1605 23 1118 1989 111092 25761 0 0 111092 25761 1989 1356 0 0 6547 5151 0 0 8612 6828 0 0 1989 1578 0 0 47006 5166 0 0 44949 5682 0 0 1989 0 0 871 1051 939 7012 0 0 2.61131 2.61131 -101.243 -2.61131 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.01443 0.0128559 109 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.97 vpr 53.44 MiB -1 -1 0.16 17364 1 0.02 -1 -1 29748 -1 -1 35 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54720 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 14.7 MiB 0.19 933 53.4 MiB 0.13 0.00 3.14515 -96.7165 -3.14515 3.14515 0.60 0.000229818 0.000184781 0.02101 0.017193 30 1942 22 6.65987e+06 443730 526063. 1820.29 2.29 0.100232 0.0842254 22546 126617 -1 1802 17 995 1574 81363 19677 0 0 81363 19677 1574 1040 0 0 5268 4226 0 0 6713 5457 0 0 1574 1127 0 0 32394 4123 0 0 33840 3704 0 0 1574 0 0 579 679 740 5446 0 0 2.79096 2.79096 -107.779 -2.79096 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0160149 0.0144566 135 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.94 vpr 52.88 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29708 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54144 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 14.3 MiB 0.20 826 52.9 MiB 0.06 0.00 3.0359 -96.4877 -3.0359 3.0359 1.01 0.000206976 0.000167006 0.0102494 0.00849455 26 2315 29 6.65987e+06 240882 477104. 1650.88 2.71 0.078397 0.0675119 21682 110474 -1 1963 18 1158 1657 144601 34515 0 0 144601 34515 1657 1379 0 0 6511 5523 0 0 9586 7802 0 0 1657 1546 0 0 61438 9376 0 0 63752 8889 0 0 1657 0 0 499 509 551 4214 0 0 3.22197 3.22197 -116.23 -3.22197 0 0 585099. 2024.56 0.18 0.04 0.06 -1 -1 0.18 0.00865961 0.00778101 108 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.78 vpr 53.07 MiB -1 -1 0.14 17496 1 0.01 -1 -1 29744 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54340 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 14.7 MiB 0.33 1014 53.1 MiB 0.11 0.00 2.82075 -93.8051 -2.82075 2.82075 1.00 0.000261535 0.000217569 0.0179449 0.0148842 26 2495 26 6.65987e+06 393018 477104. 1650.88 4.15 0.11377 0.0981069 21682 110474 -1 2163 23 1306 2279 193061 41448 0 0 193061 41448 2279 1598 0 0 8701 7197 0 0 13246 10485 0 0 2279 1758 0 0 84860 9874 0 0 81696 10536 0 0 2279 0 0 973 1411 1665 10344 0 0 2.67651 2.67651 -108.672 -2.67651 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0200265 0.0179221 126 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.37 vpr 53.29 MiB -1 -1 0.11 17744 1 0.01 -1 -1 29948 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54564 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 14.7 MiB 1.04 943 53.3 MiB 0.13 0.00 3.50555 -111.405 -3.50555 3.50555 1.01 0.000250214 0.00019978 0.0223357 0.0183816 32 2184 20 6.65987e+06 405696 554710. 1919.41 0.96 0.0690306 0.058776 22834 132086 -1 1991 23 1464 1986 154136 36207 0 0 154136 36207 1986 1629 0 0 7656 6521 0 0 12753 9888 0 0 1986 1720 0 0 64833 8492 0 0 64922 7957 0 0 1986 0 0 522 551 561 5026 0 0 3.29183 3.29183 -129.054 -3.29183 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0193134 0.0171356 138 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.95 vpr 52.91 MiB -1 -1 0.15 17540 1 0.01 -1 -1 29832 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54180 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 14.3 MiB 0.29 759 52.9 MiB 0.07 0.00 2.54264 -82.2128 -2.54264 2.54264 1.01 0.000233164 0.000183485 0.0119754 0.00977991 28 1974 22 6.65987e+06 215526 500653. 1732.36 2.63 0.0896083 0.0771747 21970 115934 -1 1684 20 817 1286 96576 22495 0 0 96576 22495 1286 1018 0 0 4606 3821 0 0 6786 5339 0 0 1286 1039 0 0 41854 5529 0 0 40758 5749 0 0 1286 0 0 469 414 409 3606 0 0 2.73671 2.73671 -105.81 -2.73671 0 0 612192. 2118.31 0.19 0.03 0.10 -1 -1 0.19 0.00857665 0.0076478 104 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.15 vpr 53.02 MiB -1 -1 0.15 17500 1 0.02 -1 -1 29800 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 14.5 MiB 0.17 965 53.0 MiB 0.11 0.00 3.35195 -108.382 -3.35195 3.35195 0.94 0.000190539 0.0001535 0.0185864 0.0152878 32 2288 22 6.65987e+06 240882 554710. 1919.41 0.90 0.054555 0.0461099 22834 132086 -1 1982 22 1303 1919 157599 35134 0 0 157599 35134 1919 1649 0 0 7478 6415 0 0 11778 9270 0 0 1919 1713 0 0 70779 7552 0 0 63726 8535 0 0 1919 0 0 616 573 477 4817 0 0 3.02531 3.02531 -117.799 -3.02531 0 0 701300. 2426.64 0.21 0.04 0.12 -1 -1 0.21 0.00874694 0.00780184 115 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 6.28 vpr 53.24 MiB -1 -1 0.14 17584 1 0.01 -1 -1 29792 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 14.7 MiB 0.13 897 53.2 MiB 0.03 0.00 3.7011 -110.351 -3.7011 3.7011 0.59 0.000117407 9.4585e-05 0.00568966 0.00476206 28 2758 48 6.65987e+06 278916 500653. 1732.36 3.41 0.0890571 0.0761967 21970 115934 -1 2148 24 1623 2320 170606 42155 0 0 170606 42155 2320 1889 0 0 8694 7172 0 0 12374 10136 0 0 2320 2009 0 0 72565 9710 0 0 72333 11239 0 0 2320 0 0 697 762 751 5996 0 0 4.16751 4.16751 -134.655 -4.16751 0 0 612192. 2118.31 0.27 0.07 0.10 -1 -1 0.27 0.0199985 0.0180266 130 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 7.34 vpr 53.09 MiB -1 -1 0.17 17500 1 0.02 -1 -1 29732 -1 -1 28 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 14.5 MiB 0.52 805 53.1 MiB 0.05 0.00 3.59335 -92.7366 -3.59335 3.59335 0.64 0.000124997 0.000101308 0.00787912 0.00661351 26 2741 44 6.65987e+06 354984 477104. 1650.88 4.28 0.113097 0.0988304 21682 110474 -1 1801 22 1037 1677 139387 34990 0 0 139387 34990 1677 1334 0 0 6307 5140 0 0 9429 7492 0 0 1677 1390 0 0 59370 9550 0 0 60927 10084 0 0 1677 0 0 640 911 847 6431 0 0 3.29871 3.29871 -109.577 -3.29871 0 0 585099. 2024.56 0.24 0.06 0.06 -1 -1 0.24 0.0168904 0.0148824 121 49 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 6.81 vpr 53.38 MiB -1 -1 0.17 17744 1 0.01 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 15.1 MiB 0.31 1189 53.4 MiB 0.09 0.00 4.06506 -132.8 -4.06506 4.06506 0.98 0.000262061 0.000215279 0.0148206 0.0123739 32 2820 25 6.65987e+06 291594 554710. 1919.41 3.16 0.126222 0.108781 22834 132086 -1 2378 22 1988 2929 208830 48342 0 0 208830 48342 2929 2233 0 0 11158 9579 0 0 17614 13614 0 0 2929 2441 0 0 87116 10169 0 0 87084 10306 0 0 2929 0 0 941 1092 988 8494 0 0 4.15071 4.15071 -152.032 -4.15071 0 0 701300. 2426.64 0.30 0.07 0.11 -1 -1 0.30 0.0199174 0.0178635 153 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.13 vpr 52.68 MiB -1 -1 0.15 17012 1 0.02 -1 -1 29560 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53948 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 14.0 MiB 0.10 601 52.7 MiB 0.08 0.00 2.79204 -75.5102 -2.79204 2.79204 0.95 0.000160604 0.000129832 0.0149157 0.0122025 28 1769 25 6.65987e+06 228204 500653. 1732.36 0.90 0.0495096 0.0423716 21970 115934 -1 1444 26 858 1400 151542 58713 0 0 151542 58713 1400 1149 0 0 5154 4201 0 0 8498 6495 0 0 1400 1200 0 0 66412 22679 0 0 68678 22989 0 0 1400 0 0 542 614 503 4329 0 0 2.70676 2.70676 -94.2005 -2.70676 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.01496 0.0133593 96 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 6.72 vpr 53.45 MiB -1 -1 0.16 17780 1 0.02 -1 -1 29912 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54732 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 14.8 MiB 0.36 1037 53.4 MiB 0.12 0.00 3.2391 -111.852 -3.2391 3.2391 0.98 0.000267227 0.000218875 0.0211017 0.0175164 32 2424 24 6.65987e+06 418374 554710. 1919.41 3.08 0.145328 0.124092 22834 132086 -1 2111 24 1786 2515 196609 44885 0 0 196609 44885 2515 2132 0 0 9827 8245 0 0 15448 12073 0 0 2515 2245 0 0 83710 10412 0 0 82594 9778 0 0 2515 0 0 729 754 753 6641 0 0 3.56537 3.56537 -133.61 -3.56537 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0205574 0.018262 144 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.12 vpr 52.98 MiB -1 -1 0.17 17460 1 0.02 -1 -1 29724 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54252 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 14.4 MiB 0.25 897 53.0 MiB 0.08 0.00 2.8021 -103.521 -2.8021 2.8021 0.72 0.000248529 0.000196916 0.0165261 0.0134185 32 1890 22 6.65987e+06 202848 554710. 1919.41 0.91 0.0588092 0.0498339 22834 132086 -1 1748 21 1402 2033 169263 37685 0 0 169263 37685 2033 1817 0 0 7696 6591 0 0 12540 9320 0 0 2033 1898 0 0 75000 8789 0 0 69961 9270 0 0 2033 0 0 631 693 623 5410 0 0 2.84877 2.84877 -119.989 -2.84877 0 0 701300. 2426.64 0.28 0.07 0.11 -1 -1 0.28 0.0182657 0.0163141 115 93 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.46 vpr 53.18 MiB -1 -1 0.16 17540 1 0.01 -1 -1 29640 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 14.8 MiB 0.40 984 53.2 MiB 0.13 0.00 3.2349 -102.001 -3.2349 3.2349 0.97 0.0002468 0.000202029 0.0207192 0.0171741 28 2298 22 6.65987e+06 393018 500653. 1732.36 0.82 0.0625552 0.0536661 21970 115934 -1 2026 19 951 1477 105056 24617 0 0 105056 24617 1477 1083 0 0 5595 4417 0 0 7731 6371 0 0 1477 1147 0 0 45327 5742 0 0 43449 5857 0 0 1477 0 0 526 822 766 5595 0 0 3.09131 3.09131 -110.047 -3.09131 0 0 612192. 2118.31 0.28 0.05 0.11 -1 -1 0.28 0.0171119 0.0153891 130 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.28 vpr 53.35 MiB -1 -1 0.17 17736 1 0.01 -1 -1 29816 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 15.0 MiB 0.37 1155 53.4 MiB 0.07 0.00 4.95012 -147.764 -4.95012 4.95012 0.60 0.000149327 0.000121314 0.0117642 0.00976993 32 3049 23 6.65987e+06 316950 554710. 1919.41 3.99 0.140104 0.12189 22834 132086 -1 2549 20 1817 2523 196879 45852 0 0 196879 45852 2523 2136 0 0 9984 8321 0 0 14477 11762 0 0 2523 2213 0 0 86581 10339 0 0 80791 11081 0 0 2523 0 0 706 903 795 6769 0 0 4.87997 4.87997 -161.569 -4.87997 0 0 701300. 2426.64 0.32 0.08 0.13 -1 -1 0.32 0.0229564 0.020711 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.58 vpr 52.46 MiB -1 -1 0.13 17248 1 0.01 -1 -1 29688 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53724 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 13.9 MiB 0.20 764 52.5 MiB 0.03 0.00 2.57364 -83.2175 -2.57364 2.57364 0.69 9.0873e-05 7.1806e-05 0.00593099 0.00489441 26 1718 30 6.65987e+06 215526 477104. 1650.88 0.89 0.0416999 0.0359361 21682 110474 -1 1582 19 878 1132 97090 22488 0 0 97090 22488 1132 979 0 0 4308 3570 0 0 6476 5167 0 0 1132 1036 0 0 41706 6001 0 0 42336 5735 0 0 1132 0 0 254 184 258 2336 0 0 2.28691 2.28691 -93.3323 -2.28691 0 0 585099. 2024.56 0.26 0.04 0.09 -1 -1 0.26 0.0103277 0.00922331 86 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.14 vpr 52.82 MiB -1 -1 0.15 17576 1 0.02 -1 -1 29672 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54084 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 14.3 MiB 0.14 640 52.8 MiB 0.07 0.00 3.13515 -91.4221 -3.13515 3.13515 0.99 0.000219908 0.000182767 0.0140964 0.0117932 28 1695 21 6.65987e+06 202848 500653. 1732.36 0.80 0.0412166 0.0352333 21970 115934 -1 1444 19 882 1438 109966 26104 0 0 109966 26104 1438 1189 0 0 5410 4541 0 0 7930 6464 0 0 1438 1258 0 0 47000 6334 0 0 46750 6318 0 0 1438 0 0 556 729 617 4744 0 0 2.79977 2.79977 -104.731 -2.79977 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0138773 0.0124597 92 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.34 vpr 52.96 MiB -1 -1 0.10 17368 1 0.01 -1 -1 29700 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54228 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 14.5 MiB 0.04 810 53.0 MiB 0.08 0.00 2.77684 -92.0932 -2.77684 2.77684 0.72 0.000212172 0.000171877 0.0119317 0.00982672 32 2091 45 6.65987e+06 266238 554710. 1919.41 0.74 0.0406894 0.0343638 22834 132086 -1 1915 21 1312 2338 186768 42418 0 0 186768 42418 2338 1798 0 0 8867 7548 0 0 14652 11041 0 0 2338 1942 0 0 85741 9194 0 0 72832 10895 0 0 2338 0 0 1026 1069 1120 8309 0 0 2.66051 2.66051 -108.319 -2.66051 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0143591 0.0127919 115 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.81 vpr 52.40 MiB -1 -1 0.14 17100 1 0.01 -1 -1 29884 -1 -1 27 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53660 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 13.8 MiB 0.06 561 52.4 MiB 0.05 0.00 2.46938 -60.1973 -2.46938 2.46938 0.58 0.000146687 0.000117954 0.00809236 0.00661635 28 1339 25 6.65987e+06 342306 500653. 1732.36 1.47 0.0427476 0.0359664 21970 115934 -1 1139 17 586 1040 64279 16034 0 0 64279 16034 1040 714 0 0 3838 3015 0 0 5609 4466 0 0 1040 794 0 0 25330 3737 0 0 27422 3308 0 0 1040 0 0 454 559 465 4056 0 0 2.48439 2.48439 -69.5592 -2.48439 0 0 612192. 2118.31 0.27 0.03 0.10 -1 -1 0.27 0.0100306 0.00900758 89 19 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.37 vpr 53.49 MiB -1 -1 0.17 17696 1 0.02 -1 -1 29784 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 14.8 MiB 0.22 1005 53.5 MiB 0.12 0.00 3.37318 -107.601 -3.37318 3.37318 0.93 0.00024353 0.000199675 0.0233874 0.0192667 32 2779 22 6.65987e+06 253560 554710. 1919.41 0.97 0.0669112 0.0569445 22834 132086 -1 2341 22 1572 2778 222845 51465 0 0 222845 51465 2778 2155 0 0 10829 9431 0 0 17776 13758 0 0 2778 2341 0 0 94124 12125 0 0 94560 11655 0 0 2778 0 0 1206 1356 1242 9394 0 0 3.67945 3.67945 -127.141 -3.67945 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0192446 0.0171333 135 69 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.40 vpr 53.65 MiB -1 -1 0.17 17624 1 0.02 -1 -1 29760 -1 -1 33 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 14.9 MiB 0.45 1045 53.7 MiB 0.13 0.00 3.36335 -113.348 -3.36335 3.36335 1.00 0.000307852 0.000252741 0.023361 0.0193228 32 2297 17 6.65987e+06 418374 554710. 1919.41 0.76 0.057161 0.0485552 22834 132086 -1 2035 18 1248 1925 125573 29258 0 0 125573 29258 1925 1384 0 0 7082 5907 0 0 10999 8574 0 0 1925 1534 0 0 51704 5989 0 0 51938 5870 0 0 1925 0 0 677 719 603 5654 0 0 3.30177 3.30177 -128.117 -3.30177 0 0 701300. 2426.64 0.20 0.04 0.08 -1 -1 0.20 0.0109062 0.00976824 142 86 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.09 vpr 54.01 MiB -1 -1 0.17 17344 1 0.01 -1 -1 29736 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55304 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 15.3 MiB 2.92 780 54.0 MiB 0.05 0.00 4.5465 -130.223 -4.5465 4.5465 0.63 0.000122786 9.8012e-05 0.0115633 0.00958348 46 2566 28 6.95648e+06 188184 828058. 2865.25 2.08 0.0769718 0.0667994 28066 200906 -1 1908 21 1278 1874 141570 32309 0 0 141570 32309 1874 1489 0 0 6153 5369 0 0 9992 7040 0 0 1874 1586 0 0 62975 7937 0 0 58702 8888 0 0 1874 0 0 596 536 652 5236 0 0 4.26531 4.26531 -145.395 -4.26531 0 0 1.01997e+06 3529.29 0.42 0.06 0.19 -1 -1 0.42 0.0190846 0.0172253 81 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 10.23 vpr 54.00 MiB -1 -1 0.17 17348 1 0.02 -1 -1 29744 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55292 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 15.4 MiB 1.84 732 54.0 MiB 0.08 0.00 3.66177 -110.219 -3.66177 3.66177 0.63 0.000219911 0.000179297 0.0194561 0.016034 48 2268 42 6.95648e+06 217135 865456. 2994.66 5.62 0.195307 0.168694 28354 207349 -1 1915 22 1857 2593 235289 58650 0 0 235289 58650 2593 2257 0 0 8924 7961 0 0 16344 10881 0 0 2593 2428 0 0 98626 17364 0 0 106209 17759 0 0 2593 0 0 736 771 678 6250 0 0 4.65691 4.65691 -151.319 -4.65691 0 0 1.05005e+06 3633.38 0.40 0.08 0.19 -1 -1 0.40 0.019294 0.0173327 80 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 5.70 vpr 53.62 MiB -1 -1 0.15 17580 1 0.01 -1 -1 29796 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 15.2 MiB 1.34 1085 53.6 MiB 0.05 0.00 3.10314 -104.306 -3.10314 3.10314 0.61 0.000116975 9.3896e-05 0.0114068 0.00942801 38 2672 46 6.95648e+06 217135 678818. 2348.85 1.72 0.0843521 0.074246 26626 170182 -1 2161 20 1350 1832 139864 29306 0 0 139864 29306 1832 1529 0 0 5917 5058 0 0 9234 6486 0 0 1832 1599 0 0 60304 7560 0 0 60745 7074 0 0 1832 0 0 482 468 462 4428 0 0 3.56641 3.56641 -124.343 -3.56641 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0153535 0.0138002 76 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 15.28 vpr 53.75 MiB -1 -1 0.14 17680 1 0.02 -1 -1 29860 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55040 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 15.1 MiB 0.43 705 53.8 MiB 0.10 0.00 3.48718 -97.0557 -3.48718 3.48718 1.04 0.000218544 0.000178585 0.0213777 0.0177108 38 2421 22 6.95648e+06 275038 678818. 2348.85 11.32 0.156934 0.136324 26626 170182 -1 2018 24 1706 2827 234540 50095 0 0 234540 50095 2827 2276 0 0 8530 7498 0 0 14639 9372 0 0 2827 2404 0 0 107586 13987 0 0 98131 14558 0 0 2827 0 0 1121 1337 1528 9855 0 0 4.02656 4.02656 -128.378 -4.02656 0 0 902133. 3121.57 0.37 0.09 0.14 -1 -1 0.37 0.0216537 0.019585 71 25 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.21 vpr 53.94 MiB -1 -1 0.11 17572 1 0.02 -1 -1 29656 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55232 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 15.4 MiB 0.74 762 53.9 MiB 0.08 0.00 3.67069 -105.476 -3.67069 3.67069 1.02 0.000240111 0.000196314 0.0184878 0.0153837 46 2479 35 6.95648e+06 231611 828058. 2865.25 2.10 0.0740165 0.0637691 28066 200906 -1 1780 22 1335 2285 175056 38549 0 0 175056 38549 2285 1631 0 0 7129 6370 0 0 12888 8183 0 0 2285 1731 0 0 74390 10018 0 0 76079 10616 0 0 2285 0 0 950 835 1027 7527 0 0 4.26241 4.26241 -134.696 -4.26241 0 0 1.01997e+06 3529.29 0.43 0.07 0.20 -1 -1 0.43 0.0198569 0.0178745 73 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 14.89 vpr 53.95 MiB -1 -1 0.17 17680 1 0.01 -1 -1 29660 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55240 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 15.3 MiB 1.13 905 53.9 MiB 0.09 0.00 2.5393 -97.273 -2.5393 2.5393 1.00 0.000212203 0.000169977 0.0212908 0.0173942 38 2520 24 6.95648e+06 303989 678818. 2348.85 10.56 0.134383 0.115365 26626 170182 -1 2135 22 1549 2383 186948 38742 0 0 186948 38742 2383 1883 0 0 7353 6427 0 0 12022 8043 0 0 2383 2064 0 0 79099 10915 0 0 83708 9410 0 0 2383 0 0 834 1000 1067 7692 0 0 3.18757 3.18757 -124.145 -3.18757 0 0 902133. 3121.57 0.23 0.04 0.10 -1 -1 0.23 0.01117 0.00996622 79 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.54 vpr 53.36 MiB -1 -1 0.13 17140 1 0.01 -1 -1 29988 -1 -1 13 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54644 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 14.8 MiB 4.75 480 53.4 MiB 0.03 0.00 2.92458 -76.9784 -2.92458 2.92458 0.60 9.6399e-05 7.6401e-05 0.00691042 0.00568769 36 1531 26 6.95648e+06 188184 648988. 2245.63 1.14 0.0327635 0.0277474 26050 158493 -1 1203 19 819 1277 93690 22151 0 0 93690 22151 1277 971 0 0 4453 3794 0 0 7178 5157 0 0 1277 1002 0 0 38761 5663 0 0 40744 5564 0 0 1277 0 0 458 545 398 3804 0 0 3.07997 3.07997 -95.5345 -3.07997 0 0 828058. 2865.25 0.21 0.03 0.09 -1 -1 0.21 0.00747371 0.0067107 52 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.55 vpr 53.65 MiB -1 -1 0.16 16944 1 0.01 -1 -1 29688 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54936 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 15.1 MiB 0.46 690 53.6 MiB 0.04 0.00 2.37175 -75.9172 -2.37175 2.37175 0.69 0.000105676 8.4871e-05 0.00791074 0.00653076 38 2202 24 6.95648e+06 361892 678818. 2348.85 2.09 0.0525159 0.0450855 26626 170182 -1 1605 17 1023 1626 110861 25460 0 0 110861 25460 1626 1222 0 0 5128 4379 0 0 7860 5517 0 0 1626 1301 0 0 44041 7109 0 0 50580 5932 0 0 1626 0 0 603 805 744 5940 0 0 2.83332 2.83332 -99.0837 -2.83332 0 0 902133. 3121.57 0.36 0.05 0.13 -1 -1 0.36 0.0126288 0.0113719 69 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 12.60 vpr 53.92 MiB -1 -1 0.16 17488 1 0.02 -1 -1 29756 -1 -1 11 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55212 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 15.0 MiB 1.89 622 53.9 MiB 0.07 0.00 2.76819 -94.347 -2.76819 2.76819 1.01 0.000205444 0.000163641 0.0160137 0.0131848 38 2485 46 6.95648e+06 159232 678818. 2348.85 7.53 0.147793 0.127284 26626 170182 -1 1688 22 1304 1853 152857 33628 0 0 152857 33628 1853 1556 0 0 5611 4843 0 0 9586 6179 0 0 1853 1568 0 0 63602 10445 0 0 70352 9037 0 0 1853 0 0 549 558 429 4487 0 0 3.54537 3.54537 -121.256 -3.54537 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.00939111 0.00840364 66 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 5.80 vpr 53.51 MiB -1 -1 0.16 17468 1 0.02 -1 -1 29648 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 15.0 MiB 1.22 654 53.5 MiB 0.07 0.00 2.66488 -92.923 -2.66488 2.66488 0.96 0.00020179 0.000163434 0.0177658 0.014664 38 1798 23 6.95648e+06 144757 678818. 2348.85 1.43 0.0536451 0.0455878 26626 170182 -1 1458 21 1232 1763 130634 28562 0 0 130634 28562 1763 1473 0 0 5437 4733 0 0 8808 5896 0 0 1763 1516 0 0 56735 7159 0 0 56128 7785 0 0 1763 0 0 531 471 598 4767 0 0 3.05082 3.05082 -116.723 -3.05082 0 0 902133. 3121.57 0.24 0.03 0.16 -1 -1 0.24 0.00879222 0.00785932 59 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 10.63 vpr 53.48 MiB -1 -1 0.15 17412 1 0.01 -1 -1 29804 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 15.0 MiB 2.02 525 53.5 MiB 0.05 0.00 2.79013 -84.0225 -2.79013 2.79013 0.94 0.000195177 0.000157 0.0128714 0.0106098 38 1723 47 6.95648e+06 173708 678818. 2348.85 5.37 0.151559 0.131226 26626 170182 -1 1198 23 1109 1508 105559 26257 0 0 105559 26257 1508 1356 0 0 4849 4234 0 0 8033 5421 0 0 1508 1398 0 0 42684 6837 0 0 46977 7011 0 0 1508 0 0 399 412 541 3924 0 0 3.45492 3.45492 -110.111 -3.45492 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0144567 0.012833 55 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 14.47 vpr 53.60 MiB -1 -1 0.13 17324 1 0.01 -1 -1 29680 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54888 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 15.1 MiB 1.77 596 53.6 MiB 0.07 0.00 2.73393 -92.8543 -2.73393 2.73393 1.03 0.000178097 0.000142175 0.0156059 0.0128673 46 1797 22 6.95648e+06 144757 828058. 2865.25 9.45 0.143282 0.123544 28066 200906 -1 1303 25 1228 1595 117448 28126 0 0 117448 28126 1595 1409 0 0 5095 4487 0 0 9064 6014 0 0 1595 1465 0 0 53776 6510 0 0 46323 8241 0 0 1595 0 0 367 320 332 3348 0 0 3.25722 3.25722 -112.378 -3.25722 0 0 1.01997e+06 3529.29 0.28 0.04 0.12 -1 -1 0.28 0.0104911 0.00931321 62 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 9.95 vpr 53.99 MiB -1 -1 0.15 17568 1 0.02 -1 -1 29768 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55288 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 15.4 MiB 1.90 809 54.0 MiB 0.06 0.00 3.29778 -109.097 -3.29778 3.29778 0.93 0.000213216 0.000170783 0.0142028 0.0117428 54 2559 23 6.95648e+06 217135 949917. 3286.91 4.92 0.153635 0.134886 29506 232905 -1 2066 22 1623 2400 215677 46197 0 0 215677 46197 2400 1913 0 0 7624 6651 0 0 13098 8663 0 0 2400 2222 0 0 90271 14129 0 0 99884 12619 0 0 2400 0 0 777 650 729 6130 0 0 3.59152 3.59152 -129.042 -3.59152 0 0 1.17392e+06 4061.99 0.45 0.07 0.22 -1 -1 0.45 0.0148549 0.0132376 83 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 13.53 vpr 53.84 MiB -1 -1 0.11 17348 1 0.01 -1 -1 29632 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 15.3 MiB 0.91 850 53.8 MiB 0.10 0.00 3.72883 -115.484 -3.72883 3.72883 1.03 0.000241599 0.000194716 0.021587 0.0177109 36 2803 33 6.95648e+06 318465 648988. 2245.63 9.22 0.148651 0.128108 26050 158493 -1 2224 22 1843 2620 260512 51560 0 0 260512 51560 2620 2158 0 0 8117 7086 0 0 14136 9240 0 0 2620 2287 0 0 114690 15980 0 0 118329 14809 0 0 2620 0 0 777 928 830 7093 0 0 4.46842 4.46842 -151.614 -4.46842 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0188039 0.0167995 75 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 6.42 vpr 53.51 MiB -1 -1 0.16 17184 1 0.01 -1 -1 29720 -1 -1 13 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 14.9 MiB 1.50 520 53.5 MiB 0.07 0.00 2.6566 -75.3148 -2.6566 2.6566 0.98 0.000180381 0.000147223 0.0151658 0.0125176 38 1953 26 6.95648e+06 188184 678818. 2348.85 1.61 0.0555155 0.0470521 26626 170182 -1 1394 22 1007 1547 128569 27442 0 0 128569 27442 1547 1276 0 0 4686 4038 0 0 8030 5061 0 0 1547 1306 0 0 57772 7540 0 0 54987 8221 0 0 1547 0 0 540 564 454 4229 0 0 2.92072 2.92072 -96.6549 -2.92072 0 0 902133. 3121.57 0.35 0.05 0.15 -1 -1 0.35 0.0136628 0.0122101 55 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 18.18 vpr 53.98 MiB -1 -1 0.17 17348 1 0.01 -1 -1 29676 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55280 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 15.3 MiB 1.33 769 54.0 MiB 0.06 0.00 2.5613 -93.5955 -2.5613 2.5613 1.01 0.000143937 0.000115362 0.0136631 0.0112218 38 2715 47 6.95648e+06 246087 678818. 2348.85 13.32 0.186079 0.161786 26626 170182 -1 1843 21 1614 2485 204093 48507 0 0 204093 48507 2485 2045 0 0 7858 6877 0 0 12979 8719 0 0 2485 2106 0 0 89811 14052 0 0 88475 14708 0 0 2485 0 0 871 1028 1041 7817 0 0 3.12497 3.12497 -121.308 -3.12497 0 0 902133. 3121.57 0.37 0.08 0.16 -1 -1 0.37 0.021367 0.0193042 76 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 16.85 vpr 53.90 MiB -1 -1 0.16 17552 1 0.02 -1 -1 29740 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 15.3 MiB 1.68 850 53.9 MiB 0.05 0.00 3.53151 -112.684 -3.53151 3.53151 0.59 0.000222685 0.000180799 0.0100633 0.00831869 40 2184 28 6.95648e+06 202660 706193. 2443.58 12.54 0.165257 0.143517 26914 176310 -1 1862 33 2058 2853 314330 121355 0 0 314330 121355 2853 2393 0 0 9582 8422 0 0 19820 12353 0 0 2853 2540 0 0 143954 51044 0 0 135268 44603 0 0 2853 0 0 795 991 789 7018 0 0 3.76272 3.76272 -134.837 -3.76272 0 0 926341. 3205.33 0.36 0.12 0.16 -1 -1 0.36 0.0256934 0.0229312 79 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.99 vpr 53.71 MiB -1 -1 0.14 17488 1 0.02 -1 -1 29692 -1 -1 9 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 15.1 MiB 0.87 655 53.7 MiB 0.04 0.00 1.91376 -73.9178 -1.91376 1.91376 0.60 0.0001682 0.0001363 0.010578 0.00868666 44 1932 49 6.95648e+06 130281 787024. 2723.27 3.36 0.0985359 0.0844875 27778 195446 -1 1333 22 1240 1834 140227 35310 0 0 140227 35310 1834 1502 0 0 6010 5360 0 0 10064 7013 0 0 1834 1560 0 0 57315 10824 0 0 63170 9051 0 0 1834 0 0 594 763 941 5824 0 0 2.20038 2.20038 -100.478 -2.20038 0 0 997811. 3452.63 0.41 0.07 0.17 -1 -1 0.41 0.01932 0.0173152 57 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.89 vpr 53.25 MiB -1 -1 0.14 17236 1 0.01 -1 -1 29784 -1 -1 9 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54524 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 14.9 MiB 0.45 409 53.2 MiB 0.04 0.00 1.85256 -62.0324 -1.85256 1.85256 1.03 0.000169642 0.000137598 0.0092011 0.00767037 40 1188 34 6.95648e+06 130281 706193. 2443.58 2.04 0.0675849 0.0586379 26914 176310 -1 972 28 838 1124 122824 37705 0 0 122824 37705 1124 993 0 0 4006 3542 0 0 7608 5023 0 0 1124 997 0 0 59094 13616 0 0 49868 13534 0 0 1124 0 0 286 305 299 2614 0 0 2.29278 2.29278 -85.1161 -2.29278 0 0 926341. 3205.33 0.36 0.05 0.16 -1 -1 0.36 0.0128216 0.0112469 43 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.57 vpr 53.68 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29892 -1 -1 12 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 15.1 MiB 1.90 742 53.7 MiB 0.04 0.00 3.3794 -109.326 -3.3794 3.3794 0.59 0.000103061 8.2806e-05 0.00787284 0.00650893 36 2444 30 6.95648e+06 173708 648988. 2245.63 3.15 0.0615291 0.0533784 26050 158493 -1 1884 25 1620 2208 200505 43874 0 0 200505 43874 2208 1931 0 0 7014 6119 0 0 12108 7930 0 0 2208 1995 0 0 86631 12725 0 0 90336 13174 0 0 2208 0 0 588 612 615 5249 0 0 3.86396 3.86396 -144.477 -3.86396 0 0 828058. 2865.25 0.35 0.07 0.13 -1 -1 0.35 0.0174167 0.0155608 69 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.22 vpr 53.86 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29760 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 15.3 MiB 0.84 706 53.9 MiB 0.07 0.00 3.07689 -100.762 -3.07689 3.07689 1.01 0.00022877 0.00018316 0.0134466 0.0111822 44 2201 23 6.95648e+06 289514 787024. 2723.27 1.87 0.0795303 0.0687893 27778 195446 -1 1642 21 1446 2096 159482 35234 0 0 159482 35234 2096 1735 0 0 6621 5786 0 0 11275 7596 0 0 2096 1838 0 0 72752 7966 0 0 64642 10313 0 0 2096 0 0 650 781 758 6259 0 0 3.59836 3.59836 -126.988 -3.59836 0 0 997811. 3452.63 0.41 0.04 0.17 -1 -1 0.41 0.0106665 0.00949134 75 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 7.54 vpr 54.10 MiB -1 -1 0.12 17752 1 0.02 -1 -1 29712 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55400 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 15.7 MiB 1.06 845 54.1 MiB 0.04 0.00 3.8447 -110.914 -3.8447 3.8447 0.59 0.000130165 0.000104716 0.0103022 0.00854694 58 2167 28 6.95648e+06 202660 997811. 3452.63 3.77 0.108916 0.0940344 30370 251734 -1 1828 21 1557 2373 207528 49852 0 0 207528 49852 2373 1898 0 0 7798 6779 0 0 14658 9364 0 0 2373 2065 0 0 82282 15918 0 0 98044 13828 0 0 2373 0 0 816 802 923 6990 0 0 4.16201 4.16201 -136.4 -4.16201 0 0 1.25153e+06 4330.55 0.40 0.08 0.15 -1 -1 0.40 0.0202971 0.0182859 82 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 7.85 vpr 53.07 MiB -1 -1 0.14 17224 1 0.01 -1 -1 29700 -1 -1 13 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54348 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 14.5 MiB 1.09 314 53.1 MiB 0.04 0.00 1.85256 -53.7981 -1.85256 1.85256 0.83 0.000138583 0.000110951 0.00899078 0.00748228 36 1162 27 6.95648e+06 188184 648988. 2245.63 3.62 0.0651193 0.0552489 26050 158493 -1 795 19 572 674 49121 13054 0 0 49121 13054 674 619 0 0 2248 1986 0 0 3750 2618 0 0 674 622 0 0 19779 3872 0 0 21996 3337 0 0 674 0 0 102 55 51 1122 0 0 2.18748 2.18748 -70.7297 -2.18748 0 0 828058. 2865.25 0.35 0.03 0.15 -1 -1 0.35 0.00943914 0.00841213 44 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 9.01 vpr 53.47 MiB -1 -1 0.12 17164 1 0.01 -1 -1 29872 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 14.9 MiB 0.90 694 53.5 MiB 0.08 0.00 3.81446 -97.9552 -3.81446 3.81446 1.05 0.00021135 0.000170554 0.0173312 0.0144161 46 2179 26 6.95648e+06 217135 828058. 2865.25 4.59 0.138277 0.119664 28066 200906 -1 1603 25 1277 2039 173287 38980 0 0 173287 38980 2039 1734 0 0 6499 5684 0 0 11982 7629 0 0 2039 1816 0 0 76265 10794 0 0 74463 11323 0 0 2039 0 0 762 788 880 6505 0 0 3.80186 3.80186 -121.606 -3.80186 0 0 1.01997e+06 3529.29 0.40 0.07 0.17 -1 -1 0.40 0.0169009 0.0150685 66 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.19 vpr 53.11 MiB -1 -1 0.08 16824 1 0.01 -1 -1 29528 -1 -1 8 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54380 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 14.5 MiB 0.34 450 53.1 MiB 0.04 0.00 1.77736 -58.1192 -1.77736 1.77736 0.95 0.000130277 0.000103877 0.00843249 0.00693778 34 1420 43 6.95648e+06 115805 618332. 2139.56 2.98 0.0757233 0.0641673 25762 151098 -1 1084 19 690 784 73950 17709 0 0 73950 17709 784 772 0 0 2806 2450 0 0 4742 3316 0 0 784 775 0 0 31949 5298 0 0 32885 5098 0 0 784 0 0 94 57 89 1212 0 0 2.23278 2.23278 -80.7205 -2.23278 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.0086503 0.00770998 42 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.74 vpr 53.84 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29660 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 15.2 MiB 0.81 962 53.8 MiB 0.05 0.00 3.51071 -104.741 -3.51071 3.51071 0.59 0.000118785 9.6626e-05 0.00991138 0.00814765 36 2631 34 6.95648e+06 217135 648988. 2245.63 3.34 0.0593997 0.0510583 26050 158493 -1 2109 22 1402 2244 229760 44257 0 0 229760 44257 2244 1882 0 0 7048 6144 0 0 12631 8046 0 0 2244 1957 0 0 103997 12818 0 0 101596 13410 0 0 2244 0 0 842 1074 1157 7765 0 0 3.86096 3.86096 -128.765 -3.86096 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0106484 0.00955764 68 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 6.11 vpr 53.66 MiB -1 -1 0.11 17164 1 0.02 -1 -1 29820 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 15.0 MiB 0.65 722 53.7 MiB 0.09 0.00 2.4561 -83.8122 -2.4561 2.4561 1.03 0.000219008 0.000177328 0.0177484 0.0146958 44 2015 22 6.95648e+06 303989 787024. 2723.27 1.95 0.0745418 0.0646202 27778 195446 -1 1672 23 1396 2198 156268 34664 0 0 156268 34664 2198 1602 0 0 7146 6294 0 0 12521 8458 0 0 2198 1800 0 0 65317 8525 0 0 66888 7985 0 0 2198 0 0 802 839 993 7364 0 0 2.88332 2.88332 -107.023 -2.88332 0 0 997811. 3452.63 0.40 0.05 0.19 -1 -1 0.40 0.0139345 0.0124347 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 10.28 vpr 53.93 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29720 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55224 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 15.4 MiB 0.91 804 53.9 MiB 0.08 0.00 3.60953 -107.514 -3.60953 3.60953 1.03 0.000238567 0.000194838 0.0194686 0.0161705 50 2162 31 6.95648e+06 275038 902133. 3121.57 5.79 0.155228 0.134345 28642 213929 -1 1711 22 1152 1741 133585 29526 0 0 133585 29526 1741 1348 0 0 5795 4944 0 0 10008 6760 0 0 1741 1494 0 0 55336 7541 0 0 58964 7439 0 0 1741 0 0 589 495 616 4909 0 0 3.78591 3.78591 -123.971 -3.78591 0 0 1.08113e+06 3740.92 0.44 0.07 0.21 -1 -1 0.44 0.0178528 0.0160687 72 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.35 vpr 53.60 MiB -1 -1 0.16 17512 1 0.01 -1 -1 29820 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 15.2 MiB 0.73 709 53.6 MiB 0.04 0.00 2.58755 -80.3309 -2.58755 2.58755 0.59 0.000104181 8.2736e-05 0.0096275 0.0078699 38 1976 22 6.95648e+06 144757 678818. 2348.85 3.10 0.0721673 0.0605834 26626 170182 -1 1640 21 1022 1596 140711 29296 0 0 140711 29296 1596 1270 0 0 5096 4482 0 0 8268 5695 0 0 1596 1317 0 0 61593 8606 0 0 62562 7926 0 0 1596 0 0 574 496 552 4478 0 0 2.82072 2.82072 -104.849 -2.82072 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0167482 0.0150945 55 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 7.52 vpr 53.38 MiB -1 -1 0.15 17596 1 0.02 -1 -1 29720 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 14.7 MiB 0.25 560 53.4 MiB 0.05 0.00 2.73513 -79.2304 -2.73513 2.73513 0.61 0.000197645 0.000150016 0.0117704 0.0096143 34 2174 50 6.95648e+06 260562 618332. 2139.56 4.63 0.12984 0.11296 25762 151098 -1 1454 27 1238 1693 301642 132638 0 0 301642 132638 1693 1469 0 0 5867 5093 0 0 11554 7594 0 0 1693 1516 0 0 143043 59975 0 0 137792 56991 0 0 1693 0 0 455 553 500 4379 0 0 3.09012 3.09012 -104.602 -3.09012 0 0 787024. 2723.27 0.21 0.07 0.10 -1 -1 0.21 0.0102617 0.00905964 57 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 4.74 vpr 53.47 MiB -1 -1 0.15 17492 1 0.01 -1 -1 29620 -1 -1 16 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54756 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 14.9 MiB 0.41 459 53.5 MiB 0.04 0.00 2.5594 -74.5966 -2.5594 2.5594 0.81 9.513e-05 7.5772e-05 0.00813921 0.00664508 44 1638 24 6.95648e+06 231611 787024. 2723.27 1.36 0.0352869 0.0297492 27778 195446 -1 1227 22 1004 1544 119393 28689 0 0 119393 28689 1544 1329 0 0 5084 4448 0 0 8746 6089 0 0 1544 1382 0 0 51833 6826 0 0 50642 8615 0 0 1544 0 0 540 491 497 4314 0 0 3.01797 3.01797 -93.1854 -3.01797 0 0 997811. 3452.63 0.39 0.05 0.18 -1 -1 0.39 0.0127467 0.0113246 57 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 8.73 vpr 53.26 MiB -1 -1 0.15 16980 1 0.01 -1 -1 29732 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 14.6 MiB 0.55 581 53.3 MiB 0.06 0.00 2.72875 -87.4867 -2.72875 2.72875 1.03 0.000185003 0.000150485 0.0137869 0.0115594 42 2029 37 6.95648e+06 144757 744469. 2576.02 4.74 0.114462 0.0987514 27202 183097 -1 1362 23 1062 1548 120987 31315 0 0 120987 31315 1548 1358 0 0 5542 4845 0 0 9531 6739 0 0 1548 1403 0 0 49963 8644 0 0 52855 8326 0 0 1548 0 0 486 543 505 4146 0 0 3.05697 3.05697 -113.332 -3.05697 0 0 949917. 3286.91 0.36 0.05 0.16 -1 -1 0.36 0.0137875 0.0122526 58 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.59 vpr 53.61 MiB -1 -1 0.16 17328 1 0.01 -1 -1 29700 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54892 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 15.1 MiB 0.48 529 53.6 MiB 0.08 0.00 2.64098 -82.2636 -2.64098 2.64098 1.01 0.00130157 0.00125647 0.0168265 0.0141134 46 1899 29 6.95648e+06 275038 828058. 2865.25 4.74 0.123109 0.106659 28066 200906 -1 1377 23 1046 1571 133014 35367 0 0 133014 35367 1571 1223 0 0 5064 4395 0 0 8645 5849 0 0 1571 1355 0 0 58107 10572 0 0 58056 11973 0 0 1571 0 0 525 599 547 4760 0 0 2.82232 2.82232 -102.41 -2.82232 0 0 1.01997e+06 3529.29 0.29 0.04 0.19 -1 -1 0.29 0.00899362 0.00800162 61 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.80 vpr 53.67 MiB -1 -1 0.15 17676 1 0.02 -1 -1 29844 -1 -1 12 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54956 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 15.2 MiB 1.23 668 53.7 MiB 0.06 0.00 2.4721 -83.5049 -2.4721 2.4721 0.69 0.000185867 0.000148448 0.0137556 0.011303 36 2416 50 6.95648e+06 173708 648988. 2245.63 5.95 0.140669 0.122102 26050 158493 -1 1680 20 1179 1611 149523 32431 0 0 149523 32431 1611 1423 0 0 5409 4796 0 0 9016 6296 0 0 1611 1460 0 0 64996 9703 0 0 66880 8753 0 0 1611 0 0 432 498 498 4129 0 0 2.85532 2.85532 -107.919 -2.85532 0 0 828058. 2865.25 0.25 0.04 0.09 -1 -1 0.25 0.00878401 0.00783511 61 48 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 6.49 vpr 54.13 MiB -1 -1 0.17 17628 1 0.03 -1 -1 29664 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55432 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 15.7 MiB 0.60 868 54.1 MiB 0.06 0.00 3.28368 -98.6728 -3.28368 3.28368 0.60 0.000131392 0.000105899 0.0126855 0.0104247 40 2953 25 6.95648e+06 303989 706193. 2443.58 3.44 0.119027 0.10496 26914 176310 -1 2195 22 1667 2703 221244 49511 0 0 221244 49511 2703 2171 0 0 8974 7765 0 0 16178 10788 0 0 2703 2307 0 0 90775 13684 0 0 99911 12796 0 0 2703 0 0 1036 1667 1614 11048 0 0 3.95042 3.95042 -127.584 -3.95042 0 0 926341. 3205.33 0.25 0.05 0.13 -1 -1 0.25 0.0130608 0.0117856 84 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 9.70 vpr 54.11 MiB -1 -1 0.14 17276 1 0.02 -1 -1 29840 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55412 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 15.7 MiB 0.86 770 54.1 MiB 0.08 0.00 2.72278 -96.163 -2.72278 2.72278 0.92 0.000247026 0.000198575 0.0187394 0.015214 46 2464 37 6.95648e+06 347416 828058. 2865.25 5.61 0.216428 0.190206 28066 200906 -1 1838 23 1838 2649 189146 44421 0 0 189146 44421 2649 2002 0 0 8162 7219 0 0 13944 9202 0 0 2649 2202 0 0 81084 11343 0 0 80658 12453 0 0 2649 0 0 811 965 878 7441 0 0 3.34357 3.34357 -128.534 -3.34357 0 0 1.01997e+06 3529.29 0.43 0.08 0.20 -1 -1 0.43 0.0222933 0.0199595 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.98 vpr 53.61 MiB -1 -1 0.17 17496 1 0.02 -1 -1 29728 -1 -1 11 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54896 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 15.1 MiB 2.26 821 53.6 MiB 0.07 0.00 3.28867 -109.385 -3.28867 3.28867 0.99 0.000196994 0.000161769 0.0162454 0.0135474 44 2007 22 6.95648e+06 159232 787024. 2723.27 3.30 0.0910789 0.0776627 27778 195446 -1 1694 24 1187 1598 132758 26983 0 0 132758 26983 1598 1310 0 0 5210 4663 0 0 9052 6065 0 0 1598 1385 0 0 60822 6310 0 0 54478 7250 0 0 1598 0 0 411 391 376 3938 0 0 3.31262 3.31262 -122.918 -3.31262 0 0 997811. 3452.63 0.39 0.06 0.15 -1 -1 0.39 0.017614 0.0157173 63 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 9.26 vpr 54.06 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29844 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55356 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 15.4 MiB 0.92 687 54.1 MiB 0.04 0.00 3.10309 -100.143 -3.10309 3.10309 0.98 0.000135784 0.000109085 0.00971568 0.00807204 54 1687 25 6.95648e+06 231611 949917. 3286.91 4.77 0.130776 0.112094 29506 232905 -1 1349 24 1407 2057 131618 32515 0 0 131618 32515 2057 1548 0 0 6531 5653 0 0 11127 7341 0 0 2057 1640 0 0 51721 8049 0 0 58125 8284 0 0 2057 0 0 650 631 489 5319 0 0 3.01687 3.01687 -112.499 -3.01687 0 0 1.17392e+06 4061.99 0.45 0.06 0.22 -1 -1 0.45 0.0188449 0.016719 76 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 10.89 vpr 54.25 MiB -1 -1 0.19 17712 1 0.02 -1 -1 29872 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55556 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 15.7 MiB 2.46 974 54.3 MiB 0.10 0.00 4.36076 -138.18 -4.36076 4.36076 0.99 0.000244068 0.000199939 0.0219536 0.018169 40 3400 33 6.95648e+06 231611 706193. 2443.58 5.17 0.116647 0.101134 26914 176310 -1 2661 31 2974 4230 639201 191377 0 0 639201 191377 4230 3934 0 0 13745 12304 0 0 29449 17199 0 0 4230 3976 0 0 293291 77503 0 0 294256 76461 0 0 4230 0 0 1256 1442 1484 10924 0 0 5.3871 5.3871 -182.692 -5.3871 0 0 926341. 3205.33 0.24 0.18 0.13 -1 -1 0.24 0.0251228 0.0224571 97 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.00 vpr 54.14 MiB -1 -1 0.17 17736 1 0.02 -1 -1 29708 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55436 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 15.7 MiB 2.66 896 54.1 MiB 0.10 0.00 3.74289 -121.686 -3.74289 3.74289 1.00 0.000238597 0.000192725 0.0238002 0.0197141 40 2849 23 6.95648e+06 231611 706193. 2443.58 2.90 0.130013 0.113838 26914 176310 -1 2375 21 1830 2589 255717 53262 0 0 255717 53262 2589 2340 0 0 8597 7409 0 0 15708 10192 0 0 2589 2367 0 0 112312 15882 0 0 113922 15072 0 0 2589 0 0 759 843 779 6488 0 0 4.50506 4.50506 -159.122 -4.50506 0 0 926341. 3205.33 0.37 0.09 0.17 -1 -1 0.37 0.020244 0.0181017 88 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.42 vpr 54.00 MiB -1 -1 0.17 17484 1 0.01 -1 -1 29776 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55292 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 15.4 MiB 1.30 786 54.0 MiB 0.05 0.00 3.35282 -107.728 -3.35282 3.35282 0.59 0.000128396 0.000103171 0.0113326 0.00939115 40 2384 35 6.95648e+06 318465 706193. 2443.58 2.41 0.0812993 0.070769 26914 176310 -1 1954 23 1596 2293 197711 45127 0 0 197711 45127 2293 1895 0 0 7723 6707 0 0 13730 9195 0 0 2293 1955 0 0 86202 12458 0 0 85470 12917 0 0 2293 0 0 697 800 817 6397 0 0 4.06441 4.06441 -133.747 -4.06441 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0171408 0.0152877 78 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.69 vpr 53.80 MiB -1 -1 0.15 17272 1 0.02 -1 -1 29788 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55092 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 15.2 MiB 1.01 774 53.8 MiB 0.04 0.00 3.28678 -93.8223 -3.28678 3.28678 0.60 0.000112711 9.059e-05 0.00990862 0.00818725 50 1882 20 6.95648e+06 202660 902133. 3121.57 3.13 0.0813848 0.0697164 28642 213929 -1 1650 19 1235 1705 135821 30527 0 0 135821 30527 1705 1432 0 0 5795 5040 0 0 10169 6956 0 0 1705 1548 0 0 56284 7940 0 0 60163 7611 0 0 1705 0 0 470 395 429 4039 0 0 3.59742 3.59742 -114.593 -3.59742 0 0 1.08113e+06 3740.92 0.41 0.05 0.15 -1 -1 0.41 0.0135427 0.0121702 71 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 20.21 vpr 54.66 MiB -1 -1 0.19 17616 1 0.02 -1 -1 29940 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 15.9 MiB 1.89 938 54.7 MiB 0.07 0.00 3.82007 -126.941 -3.82007 3.82007 0.74 0.000172642 0.000140684 0.015118 0.0124936 44 2924 31 6.95648e+06 318465 787024. 2723.27 15.29 0.208776 0.182239 27778 195446 -1 2267 21 1869 2741 203507 45051 0 0 203507 45051 2741 2169 0 0 8782 7923 0 0 15037 10352 0 0 2741 2295 0 0 85246 11171 0 0 88960 11141 0 0 2741 0 0 872 1033 940 8294 0 0 4.34521 4.34521 -154.248 -4.34521 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.0224818 0.0201945 93 84 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 11.81 vpr 53.52 MiB -1 -1 0.15 17136 1 0.01 -1 -1 29672 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54800 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 14.9 MiB 0.64 507 53.5 MiB 0.06 0.00 2.73795 -80.0594 -2.73795 2.73795 0.95 0.000169397 0.000135273 0.0139904 0.0114053 38 1688 27 6.95648e+06 217135 678818. 2348.85 8.03 0.167654 0.145974 26626 170182 -1 1257 32 1461 2039 131363 33244 0 0 131363 33244 2039 1752 0 0 6373 5496 0 0 11228 7409 0 0 2039 1879 0 0 53021 8395 0 0 56663 8313 0 0 2039 0 0 578 763 655 5395 0 0 3.31877 3.31877 -104.26 -3.31877 0 0 902133. 3121.57 0.36 0.06 0.16 -1 -1 0.36 0.0177451 0.0155717 56 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 10.71 vpr 53.96 MiB -1 -1 0.18 17344 1 0.02 -1 -1 29756 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55256 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 15.4 MiB 1.59 926 54.0 MiB 0.07 0.00 4.15207 -123.08 -4.15207 4.15207 1.03 0.000143422 0.00011832 0.0155707 0.0128659 62 2048 22 6.95648e+06 217135 1.05005e+06 3633.38 5.34 0.134763 0.115345 30946 263737 -1 1573 18 1223 1818 120980 26575 0 0 120980 26575 1818 1331 0 0 5829 4999 0 0 10442 6637 0 0 1818 1528 0 0 49708 6003 0 0 51365 6077 0 0 1818 0 0 595 558 589 5122 0 0 4.27006 4.27006 -134.472 -4.27006 0 0 1.30136e+06 4502.97 0.54 0.06 0.27 -1 -1 0.54 0.0176429 0.016089 84 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 8.21 vpr 53.98 MiB -1 -1 0.17 17572 1 0.01 -1 -1 29740 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55272 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 15.4 MiB 0.95 984 54.0 MiB 0.04 0.00 2.70675 -96.4586 -2.70675 2.70675 0.92 0.000144804 0.000115423 0.0100028 0.00830058 46 2386 34 6.95648e+06 246087 828058. 2865.25 4.02 0.118271 0.10199 28066 200906 -1 1936 19 1389 2171 164986 34234 0 0 164986 34234 2171 1726 0 0 6914 6065 0 0 11601 7882 0 0 2171 1878 0 0 72274 8380 0 0 69855 8303 0 0 2171 0 0 782 756 870 6633 0 0 3.00887 3.00887 -115.337 -3.00887 0 0 1.01997e+06 3529.29 0.36 0.06 0.12 -1 -1 0.36 0.0175912 0.0157979 73 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 9.20 vpr 53.61 MiB -1 -1 0.15 17216 1 0.01 -1 -1 29716 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54896 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 15.0 MiB 0.79 658 53.6 MiB 0.04 0.00 3.72678 -98.6793 -3.72678 3.72678 0.59 0.0001156 9.2385e-05 0.00857227 0.00708079 48 2329 28 6.95648e+06 231611 865456. 2994.66 5.69 0.129228 0.1129 28354 207349 -1 1706 23 1358 2302 232665 54823 0 0 232665 54823 2302 1851 0 0 8147 7093 0 0 15557 10162 0 0 2302 1986 0 0 100779 16162 0 0 103578 17569 0 0 2302 0 0 944 1226 1057 8415 0 0 4.22272 4.22272 -129.651 -4.22272 0 0 1.05005e+06 3633.38 0.44 0.08 0.20 -1 -1 0.44 0.0169529 0.0151778 68 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.32 vpr 53.95 MiB -1 -1 0.16 17588 1 0.01 -1 -1 29780 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55244 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 15.4 MiB 3.17 812 53.9 MiB 0.04 0.00 3.65675 -114.769 -3.65675 3.65675 0.60 0.000127404 0.000103056 0.00987623 0.00822129 44 2631 29 6.95648e+06 202660 787024. 2723.27 1.61 0.0592419 0.0510347 27778 195446 -1 1913 22 1495 2021 153370 32988 0 0 153370 32988 2021 1718 0 0 6404 5643 0 0 11003 7363 0 0 2021 1759 0 0 65697 8393 0 0 66224 8112 0 0 2021 0 0 526 556 531 4914 0 0 3.66536 3.66536 -129.872 -3.66536 0 0 997811. 3452.63 0.27 0.04 0.18 -1 -1 0.27 0.0107083 0.00960322 78 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 8.41 vpr 54.17 MiB -1 -1 0.17 17588 1 0.02 -1 -1 29744 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55472 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 15.4 MiB 1.98 793 54.2 MiB 0.04 0.00 2.6818 -93.1302 -2.6818 2.6818 0.59 0.00013438 0.00010867 0.00953706 0.00789721 40 2754 47 6.95648e+06 246087 706193. 2443.58 3.80 0.0900671 0.0784613 26914 176310 -1 2178 22 1529 2319 355383 110504 0 0 355383 110504 2319 1951 0 0 7912 6818 0 0 14643 9924 0 0 2319 2026 0 0 170517 45564 0 0 157673 44221 0 0 2319 0 0 790 1144 1025 7816 0 0 3.55387 3.55387 -137.793 -3.55387 0 0 926341. 3205.33 0.37 0.12 0.15 -1 -1 0.37 0.0219028 0.0196747 75 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.90 vpr 54.03 MiB -1 -1 0.15 17468 1 0.01 -1 -1 29736 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55328 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 15.6 MiB 1.09 948 54.0 MiB 0.11 0.00 3.54708 -116.454 -3.54708 3.54708 1.03 0.000258948 0.000210319 0.0237642 0.0196273 46 2600 24 6.95648e+06 376368 828058. 2865.25 4.25 0.138582 0.119307 28066 200906 -1 2124 24 1568 2238 183926 37207 0 0 183926 37207 2238 1842 0 0 6906 6079 0 0 11287 7531 0 0 2238 1933 0 0 78435 10488 0 0 82822 9334 0 0 2238 0 0 670 770 817 6173 0 0 3.86882 3.86882 -138.629 -3.86882 0 0 1.01997e+06 3529.29 0.40 0.07 0.15 -1 -1 0.40 0.0199864 0.0177009 83 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.23 vpr 53.77 MiB -1 -1 0.16 17632 1 0.01 -1 -1 29688 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55060 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 15.1 MiB 1.37 667 53.8 MiB 0.07 0.00 3.76413 -96.7364 -3.76413 3.76413 1.04 0.000213305 0.000173824 0.0160448 0.0132009 46 2318 43 6.95648e+06 318465 828058. 2865.25 3.26 0.101537 0.087751 28066 200906 -1 1723 22 1247 1925 154980 36310 0 0 154980 36310 1925 1617 0 0 5955 5140 0 0 10442 6691 0 0 1925 1726 0 0 65200 10483 0 0 69533 10653 0 0 1925 0 0 678 864 665 6072 0 0 3.83602 3.83602 -120.792 -3.83602 0 0 1.01997e+06 3529.29 0.42 0.07 0.18 -1 -1 0.42 0.0180251 0.016234 69 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 16.93 vpr 53.95 MiB -1 -1 0.15 17500 1 0.01 -1 -1 29700 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 15.4 MiB 3.02 772 54.0 MiB 0.04 0.00 3.53127 -107.031 -3.53127 3.53127 0.61 0.000121536 9.7625e-05 0.00837355 0.00704446 40 2694 49 6.95648e+06 188184 706193. 2443.58 11.35 0.202732 0.178732 26914 176310 -1 2068 24 2032 2693 269810 58593 0 0 269810 58593 2693 2363 0 0 9057 7862 0 0 16529 10719 0 0 2693 2419 0 0 112813 18564 0 0 126025 16666 0 0 2693 0 0 661 787 752 6231 0 0 4.06362 4.06362 -138.602 -4.06362 0 0 926341. 3205.33 0.25 0.09 0.14 -1 -1 0.25 0.0193802 0.0173533 79 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 8.71 vpr 54.13 MiB -1 -1 0.16 17616 1 0.02 -1 -1 29812 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55432 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 15.7 MiB 1.39 895 54.1 MiB 0.08 0.00 3.62077 -114.441 -3.62077 3.62077 0.62 0.000241779 0.000195965 0.0195289 0.015965 48 2649 30 6.95648e+06 217135 865456. 2994.66 4.35 0.122396 0.106717 28354 207349 -1 2109 23 1738 2694 259664 55283 0 0 259664 55283 2694 2356 0 0 9077 8025 0 0 16424 10809 0 0 2694 2512 0 0 111830 15208 0 0 116945 16373 0 0 2694 0 0 956 1139 1100 8339 0 0 4.1683 4.1683 -138.358 -4.1683 0 0 1.05005e+06 3633.38 0.42 0.09 0.19 -1 -1 0.42 0.0204683 0.0183702 85 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 8.71 vpr 54.10 MiB -1 -1 0.16 17568 1 0.01 -1 -1 29708 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55400 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 15.6 MiB 2.62 922 54.1 MiB 0.05 0.00 3.495 -112.016 -3.495 3.495 0.59 0.000132264 0.000105108 0.0124419 0.0102163 44 2868 32 6.95648e+06 188184 787024. 2723.27 3.40 0.0840977 0.0706943 27778 195446 -1 2218 21 1674 2784 230648 47124 0 0 230648 47124 2784 2236 0 0 8545 7669 0 0 15753 9988 0 0 2784 2348 0 0 101741 12559 0 0 99041 12324 0 0 2784 0 0 1110 1008 1106 8324 0 0 4.14472 4.14472 -140.875 -4.14472 0 0 997811. 3452.63 0.40 0.08 0.18 -1 -1 0.40 0.0191894 0.0171901 76 74 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.60 vpr 53.42 MiB -1 -1 0.14 17092 1 0.01 -1 -1 29772 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 14.8 MiB 0.32 595 53.4 MiB 0.07 0.00 2.50468 -76.3166 -2.50468 2.50468 1.05 0.000176197 0.000140042 0.0144103 0.011814 46 1328 20 6.95648e+06 260562 828058. 2865.25 3.80 0.0961587 0.0820761 28066 200906 -1 1123 20 797 1146 66735 16040 0 0 66735 16040 1146 858 0 0 3618 3066 0 0 5788 4033 0 0 1146 915 0 0 27086 3454 0 0 27951 3714 0 0 1146 0 0 349 253 376 3064 0 0 2.97862 2.97862 -95.4369 -2.97862 0 0 1.01997e+06 3529.29 0.40 0.04 0.17 -1 -1 0.40 0.0122086 0.0109463 57 20 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 19.20 vpr 54.05 MiB -1 -1 0.15 17444 1 0.01 -1 -1 29844 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55352 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 15.5 MiB 1.81 717 54.1 MiB 0.07 0.00 3.12585 -110.981 -3.12585 3.12585 1.02 0.000239599 0.000196929 0.017097 0.0141391 44 2658 38 6.95648e+06 173708 787024. 2723.27 13.90 0.182535 0.158913 27778 195446 -1 1915 21 1553 2199 213317 43949 0 0 213317 43949 2199 1915 0 0 6652 5980 0 0 11754 7678 0 0 2199 1953 0 0 106219 11408 0 0 84294 15015 0 0 2199 0 0 646 647 588 5372 0 0 3.57622 3.57622 -137.547 -3.57622 0 0 997811. 3452.63 0.33 0.08 0.16 -1 -1 0.33 0.0180417 0.016122 76 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 10.05 vpr 54.23 MiB -1 -1 0.16 17844 1 0.01 -1 -1 29860 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55528 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 15.7 MiB 2.32 1163 54.2 MiB 0.11 0.00 4.09082 -131.665 -4.09082 4.09082 1.04 0.000267694 0.000219616 0.0246499 0.0204429 46 3361 24 6.95648e+06 231611 828058. 2865.25 4.06 0.13567 0.119125 28066 200906 -1 2593 21 2074 3087 267532 53668 0 0 267532 53668 3087 2400 0 0 9423 8240 0 0 16787 10582 0 0 3087 2549 0 0 118747 15494 0 0 116401 14403 0 0 3087 0 0 1013 1034 817 8369 0 0 4.63216 4.63216 -159.587 -4.63216 0 0 1.01997e+06 3529.29 0.43 0.10 0.19 -1 -1 0.43 0.0257363 0.0234789 97 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.24 vpr 53.85 MiB -1 -1 0.16 17680 1 0.01 -1 -1 29732 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55140 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 15.3 MiB 0.79 737 53.8 MiB 0.05 0.00 3.65681 -116.442 -3.65681 3.65681 0.60 0.000126652 0.000100922 0.011481 0.00944444 44 2305 38 6.95648e+06 246087 787024. 2723.27 3.81 0.0992854 0.0848593 27778 195446 -1 1663 21 1431 1921 161204 35503 0 0 161204 35503 1921 1629 0 0 6254 5454 0 0 11008 7579 0 0 1921 1700 0 0 68248 9921 0 0 71852 9220 0 0 1921 0 0 490 431 598 4838 0 0 3.38676 3.38676 -130.506 -3.38676 0 0 997811. 3452.63 0.38 0.06 0.18 -1 -1 0.38 0.0162433 0.0145412 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.86 vpr 53.69 MiB -1 -1 0.17 17280 1 0.01 -1 -1 29736 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54976 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 15.2 MiB 0.41 600 53.7 MiB 0.06 0.00 2.4249 -80.7573 -2.4249 2.4249 0.88 0.000187775 0.000153443 0.0134487 0.0111362 38 1893 40 6.95648e+06 289514 678818. 2348.85 2.60 0.0791155 0.0686946 26626 170182 -1 1274 24 1095 1713 120604 28895 0 0 120604 28895 1713 1325 0 0 5589 4847 0 0 9753 6682 0 0 1713 1480 0 0 51649 7515 0 0 50187 7046 0 0 1713 0 0 618 699 794 5662 0 0 3.30942 3.30942 -109.655 -3.30942 0 0 902133. 3121.57 0.35 0.05 0.16 -1 -1 0.35 0.0159051 0.0140903 62 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 10.02 vpr 54.36 MiB -1 -1 0.18 17736 1 0.02 -1 -1 29848 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55664 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 15.7 MiB 2.12 1146 54.4 MiB 0.12 0.00 4.96239 -146.728 -4.96239 4.96239 1.04 0.00029346 0.000240279 0.0290532 0.0241833 46 2817 46 6.95648e+06 217135 828058. 2865.25 4.20 0.154603 0.134849 28066 200906 -1 2328 25 2101 3034 221383 50396 0 0 221383 50396 3034 2499 0 0 9427 8462 0 0 16499 10657 0 0 3034 2628 0 0 93316 14767 0 0 96073 11383 0 0 3034 0 0 933 966 941 8236 0 0 5.10115 5.10115 -170.375 -5.10115 0 0 1.01997e+06 3529.29 0.43 0.09 0.18 -1 -1 0.43 0.0255574 0.0229894 95 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.61 vpr 53.90 MiB -1 -1 0.15 17680 1 0.01 -1 -1 29708 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 15.3 MiB 1.49 811 53.9 MiB 0.10 0.00 3.8351 -110.429 -3.8351 3.8351 0.81 0.000238366 0.000193032 0.0203215 0.016706 38 2158 32 6.95648e+06 332941 678818. 2348.85 1.96 0.0875656 0.0750575 26626 170182 -1 1821 22 1457 2162 156923 33690 0 0 156923 33690 2162 1602 0 0 6770 5897 0 0 11081 7438 0 0 2162 1728 0 0 68323 8583 0 0 66425 8442 0 0 2162 0 0 705 800 802 6887 0 0 4.00242 4.00242 -134.537 -4.00242 0 0 902133. 3121.57 0.37 0.07 0.16 -1 -1 0.37 0.0192449 0.0173229 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.27 vpr 53.27 MiB -1 -1 0.11 17056 1 0.01 -1 -1 29576 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54548 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 14.8 MiB 0.32 535 53.3 MiB 0.04 0.00 2.4091 -75.5035 -2.4091 2.4091 0.66 0.000107401 8.4857e-05 0.00786441 0.00646215 40 1542 31 6.95648e+06 188184 706193. 2443.58 2.31 0.063176 0.0541457 26914 176310 -1 1368 27 1222 1836 191127 67663 0 0 191127 67663 1836 1480 0 0 6405 5769 0 0 12789 8159 0 0 1836 1564 0 0 89137 25655 0 0 79124 25036 0 0 1836 0 0 614 563 806 5529 0 0 3.08992 3.08992 -100.195 -3.08992 0 0 926341. 3205.33 0.23 0.05 0.09 -1 -1 0.23 0.00873043 0.00772317 51 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 6.92 vpr 53.93 MiB -1 -1 0.13 17508 1 0.02 -1 -1 29704 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55228 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 15.4 MiB 0.52 1072 53.9 MiB 0.07 0.00 4.05287 -111.696 -4.05287 4.05287 0.71 0.000159574 0.000129417 0.0134951 0.0110696 40 2883 32 6.95648e+06 347416 706193. 2443.58 3.70 0.103995 0.0913188 26914 176310 -1 2468 24 1742 3091 309069 59327 0 0 309069 59327 3091 2210 0 0 10110 8676 0 0 19299 11789 0 0 3091 2414 0 0 136558 17428 0 0 136920 16810 0 0 3091 0 0 1349 2400 2281 14985 0 0 4.99986 4.99986 -151.369 -4.99986 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0200341 0.0179326 80 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.12 vpr 53.38 MiB -1 -1 0.13 16948 1 0.02 -1 -1 29668 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54664 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 14.8 MiB 1.23 516 53.4 MiB 0.03 0.00 2.4781 -80.6966 -2.4781 2.4781 0.73 9.3734e-05 7.4021e-05 0.00744285 0.0060709 44 1548 25 6.95648e+06 202660 787024. 2723.27 3.12 0.0582392 0.0490319 27778 195446 -1 1098 20 1133 1561 89862 23400 0 0 89862 23400 1561 1231 0 0 4954 4357 0 0 8303 5751 0 0 1561 1298 0 0 36771 5005 0 0 36712 5758 0 0 1561 0 0 428 451 329 3759 0 0 2.88957 2.88957 -101.974 -2.88957 0 0 997811. 3452.63 0.33 0.04 0.11 -1 -1 0.33 0.0102675 0.00926143 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.50 vpr 53.75 MiB -1 -1 0.17 17336 1 0.01 -1 -1 29720 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55036 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 15.2 MiB 0.86 591 53.7 MiB 0.07 0.00 2.93563 -88.6218 -2.93563 2.93563 1.01 0.000185985 0.000147915 0.0154951 0.0126269 38 2039 28 6.95648e+06 246087 678818. 2348.85 3.22 0.094225 0.0815827 26626 170182 -1 1542 27 1388 1992 160225 34858 0 0 160225 34858 1992 1646 0 0 6082 5346 0 0 10720 6688 0 0 1992 1721 0 0 69553 9748 0 0 69886 9709 0 0 1992 0 0 604 718 805 5969 0 0 3.15127 3.15127 -108.033 -3.15127 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0177942 0.0158533 60 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 10.06 vpr 54.03 MiB -1 -1 0.17 17464 1 0.01 -1 -1 29776 -1 -1 16 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55324 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 15.4 MiB 1.81 797 54.0 MiB 0.09 0.00 3.04378 -95.0414 -3.04378 3.04378 1.01 0.000248976 0.000202683 0.0226924 0.0187538 46 2575 26 6.95648e+06 231611 828058. 2865.25 4.79 0.155719 0.135064 28066 200906 -1 2016 23 1790 2653 231311 48830 0 0 231311 48830 2653 2266 0 0 8116 7254 0 0 14869 9179 0 0 2653 2335 0 0 96791 14634 0 0 106229 13162 0 0 2653 0 0 863 860 664 6766 0 0 3.76976 3.76976 -120.288 -3.76976 0 0 1.01997e+06 3529.29 0.40 0.08 0.18 -1 -1 0.40 0.0188667 0.0168273 80 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 7.57 vpr 53.94 MiB -1 -1 0.10 17556 1 0.01 -1 -1 29776 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55236 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 15.3 MiB 1.51 735 53.9 MiB 0.09 0.00 3.78498 -109.488 -3.78498 3.78498 1.05 0.000238586 0.000196142 0.0226509 0.0188942 40 2296 35 6.95648e+06 231611 706193. 2443.58 2.64 0.1196 0.103827 26914 176310 -1 1882 22 1568 2199 203432 45503 0 0 203432 45503 2199 1898 0 0 7574 6484 0 0 13383 8975 0 0 2199 1972 0 0 88215 12908 0 0 89862 13266 0 0 2199 0 0 631 688 611 5615 0 0 4.31542 4.31542 -144.133 -4.31542 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0201654 0.0181325 72 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 12.31 vpr 53.96 MiB -1 -1 0.16 17348 1 0.01 -1 -1 29696 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55260 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 15.4 MiB 2.34 693 54.0 MiB 0.06 0.00 3.69889 -112.465 -3.69889 3.69889 0.93 0.000226667 0.000181248 0.0140421 0.0116028 58 1835 21 6.95648e+06 202660 997811. 3452.63 6.44 0.14453 0.1249 30370 251734 -1 1413 19 1126 1767 127922 30143 0 0 127922 30143 1767 1417 0 0 5920 5127 0 0 10192 7085 0 0 1767 1523 0 0 52365 7021 0 0 55911 7970 0 0 1767 0 0 641 662 680 5416 0 0 3.78146 3.78146 -123.857 -3.78146 0 0 1.25153e+06 4330.55 0.48 0.05 0.24 -1 -1 0.48 0.016899 0.0152696 73 48 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 15.57 vpr 53.54 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29640 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54824 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 15.0 MiB 2.47 697 53.5 MiB 0.04 0.00 3.30448 -105.071 -3.30448 3.30448 0.83 0.000103637 8.3616e-05 0.00800029 0.00663803 40 2051 38 6.95648e+06 144757 706193. 2443.58 10.12 0.157943 0.137901 26914 176310 -1 1840 22 1313 1760 214226 51197 0 0 214226 51197 1760 1623 0 0 6227 5440 0 0 11654 7466 0 0 1760 1652 0 0 95584 18481 0 0 97241 16535 0 0 1760 0 0 447 532 475 4122 0 0 3.53352 3.53352 -124.09 -3.53352 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.00938531 0.00837778 61 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.07 vpr 53.79 MiB -1 -1 0.16 17460 1 0.02 -1 -1 29684 -1 -1 12 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55084 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 15.3 MiB 2.37 681 53.8 MiB 0.06 0.00 3.03002 -96.7398 -3.03002 3.03002 0.97 0.000189542 0.000152167 0.0139457 0.0115354 46 1956 27 6.95648e+06 173708 828058. 2865.25 2.37 0.0598418 0.0509894 28066 200906 -1 1363 20 1158 1701 116624 27405 0 0 116624 27405 1701 1490 0 0 5329 4756 0 0 8444 5806 0 0 1701 1518 0 0 48073 7419 0 0 51376 6416 0 0 1701 0 0 543 285 534 4149 0 0 3.45216 3.45216 -118.228 -3.45216 0 0 1.01997e+06 3529.29 0.38 0.05 0.17 -1 -1 0.38 0.0142837 0.0127837 68 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 6.78 vpr 53.82 MiB -1 -1 0.17 17508 1 0.02 -1 -1 29672 -1 -1 22 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55116 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 15.4 MiB 0.95 704 53.8 MiB 0.04 0.00 2.4971 -77.8648 -2.4971 2.4971 0.71 0.000123681 9.9409e-05 0.00931659 0.00776623 44 2052 48 6.95648e+06 318465 787024. 2723.27 2.98 0.09191 0.0786567 27778 195446 -1 1563 22 1068 1624 121830 27310 0 0 121830 27310 1624 1242 0 0 5512 4717 0 0 8849 6384 0 0 1624 1346 0 0 51339 6638 0 0 52882 6983 0 0 1624 0 0 556 596 649 5203 0 0 2.86137 2.86137 -97.5164 -2.86137 0 0 997811. 3452.63 0.32 0.03 0.18 -1 -1 0.32 0.00959242 0.00854693 71 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 6.67 vpr 53.66 MiB -1 -1 0.17 17556 1 0.01 -1 -1 29716 -1 -1 28 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 15.1 MiB 0.57 872 53.7 MiB 0.09 0.00 3.07194 -87.3504 -3.07194 3.07194 0.98 0.000190401 0.000157971 0.0180161 0.014859 36 2153 20 6.95648e+06 405319 648988. 2245.63 3.04 0.0872686 0.0759424 26050 158493 -1 1832 22 1257 1987 161411 33209 0 0 161411 33209 1987 1437 0 0 6536 5610 0 0 11116 7552 0 0 1987 1555 0 0 70569 8606 0 0 69216 8449 0 0 1987 0 0 730 976 1054 7365 0 0 3.69166 3.69166 -115.534 -3.69166 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00854333 0.00759208 72 20 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.74 vpr 53.82 MiB -1 -1 0.17 17572 1 0.02 -1 -1 29704 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55108 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 15.2 MiB 0.96 533 53.8 MiB 0.04 0.00 2.92163 -90.3796 -2.92163 2.92163 0.94 0.00011752 9.4178e-05 0.0105623 0.00870947 46 1667 38 6.95648e+06 173708 828058. 2865.25 4.53 0.114768 0.0984836 28066 200906 -1 1340 19 1302 1801 134501 33715 0 0 134501 33715 1801 1472 0 0 5687 5107 0 0 9501 6373 0 0 1801 1523 0 0 55513 9579 0 0 60198 9661 0 0 1801 0 0 499 525 438 4497 0 0 2.94267 2.94267 -110.524 -2.94267 0 0 1.01997e+06 3529.29 0.31 0.05 0.11 -1 -1 0.31 0.0134876 0.0120136 60 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.25 vpr 53.81 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29732 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55104 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 15.3 MiB 1.40 670 53.8 MiB 0.04 0.00 2.80395 -99.113 -2.80395 2.80395 0.60 0.000120521 9.6205e-05 0.0100141 0.0082274 50 2343 47 6.95648e+06 159232 902133. 3121.57 2.42 0.0903735 0.0776794 28642 213929 -1 1828 20 1551 2225 185960 45504 0 0 185960 45504 2225 1802 0 0 7392 6545 0 0 13501 8766 0 0 2225 1829 0 0 76450 13715 0 0 84167 12847 0 0 2225 0 0 674 683 396 5326 0 0 3.49016 3.49016 -126.573 -3.49016 0 0 1.08113e+06 3740.92 0.28 0.05 0.12 -1 -1 0.28 0.0123223 0.0110204 72 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 6.60 vpr 53.65 MiB -1 -1 0.16 17336 1 0.01 -1 -1 29692 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 14.9 MiB 0.54 708 53.7 MiB 0.09 0.00 3.86008 -100.949 -3.86008 3.86008 0.99 0.00020616 0.000162583 0.0165047 0.0134795 48 1910 21 6.95648e+06 347416 865456. 2994.66 2.58 0.0914799 0.0792911 28354 207349 -1 1618 20 1079 1742 137431 32428 0 0 137431 32428 1742 1393 0 0 5998 4993 0 0 10889 7266 0 0 1742 1511 0 0 58493 8587 0 0 58567 8678 0 0 1742 0 0 663 753 716 5712 0 0 4.04847 4.04847 -117.76 -4.04847 0 0 1.05005e+06 3633.38 0.40 0.05 0.19 -1 -1 0.40 0.0139535 0.0125011 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 5.52 vpr 54.09 MiB -1 -1 0.16 17468 1 0.02 -1 -1 29812 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55392 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 15.5 MiB 1.55 1014 54.1 MiB 0.05 0.00 3.69477 -123.999 -3.69477 3.69477 0.60 0.000139625 0.00011384 0.0121457 0.0100472 48 2919 31 6.95648e+06 188184 865456. 2994.66 1.57 0.0560951 0.0480924 28354 207349 -1 2384 20 1651 2383 218270 44458 0 0 218270 44458 2383 1981 0 0 7984 7049 0 0 14072 9407 0 0 2383 2070 0 0 95453 11969 0 0 95995 11982 0 0 2383 0 0 732 703 715 5997 0 0 4.25156 4.25156 -151.272 -4.25156 0 0 1.05005e+06 3633.38 0.29 0.05 0.12 -1 -1 0.29 0.0114494 0.0103304 82 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 19.54 vpr 54.01 MiB -1 -1 0.18 17352 1 0.01 -1 -1 29744 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55308 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 15.6 MiB 1.40 832 54.0 MiB 0.11 0.00 3.62123 -110.719 -3.62123 3.62123 1.01 0.000240367 0.000194268 0.0232552 0.0191814 44 2668 47 6.95648e+06 347416 787024. 2723.27 14.54 0.192329 0.166254 27778 195446 -1 2017 24 1697 2788 264945 55162 0 0 264945 55162 2788 2195 0 0 8503 7579 0 0 17205 10255 0 0 2788 2305 0 0 110302 17473 0 0 123359 15355 0 0 2788 0 0 1091 1326 1211 9596 0 0 3.87666 3.87666 -139.562 -3.87666 0 0 997811. 3452.63 0.42 0.09 0.19 -1 -1 0.42 0.0231095 0.0207146 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 8.25 vpr 54.12 MiB -1 -1 0.15 17340 1 0.02 -1 -1 29644 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55420 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 15.7 MiB 0.75 888 54.1 MiB 0.04 0.00 3.31672 -108.057 -3.31672 3.31672 0.62 0.000131751 0.000104335 0.00898099 0.00745604 46 2885 34 6.95648e+06 332941 828058. 2865.25 4.75 0.144248 0.12432 28066 200906 -1 2136 20 1665 2704 248110 53329 0 0 248110 53329 2704 2303 0 0 8260 7373 0 0 13754 9029 0 0 2704 2379 0 0 102438 17008 0 0 118250 15237 0 0 2704 0 0 1039 1208 896 8783 0 0 4.09166 4.09166 -142.091 -4.09166 0 0 1.01997e+06 3529.29 0.42 0.09 0.20 -1 -1 0.42 0.0203725 0.018334 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.94 vpr 53.57 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29812 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54860 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 15.2 MiB 0.95 619 53.6 MiB 0.05 0.00 2.97316 -86.1705 -2.97316 2.97316 1.01 0.000180514 0.000144817 0.0118609 0.00979124 38 2040 23 6.95648e+06 173708 678818. 2348.85 1.64 0.0600369 0.0518117 26626 170182 -1 1522 22 1202 1873 134205 29343 0 0 134205 29343 1873 1576 0 0 5626 4892 0 0 9283 6058 0 0 1873 1715 0 0 56986 7497 0 0 58564 7605 0 0 1873 0 0 671 813 716 5559 0 0 3.31047 3.31047 -112.597 -3.31047 0 0 902133. 3121.57 0.35 0.05 0.16 -1 -1 0.35 0.0146391 0.0131089 57 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.84 vpr 54.11 MiB -1 -1 0.17 17532 1 0.01 -1 -1 29724 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55412 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 15.5 MiB 1.15 624 54.1 MiB 0.07 0.00 3.71763 -109.951 -3.71763 3.71763 0.75 0.000251051 0.000205082 0.0179662 0.0149279 48 1875 25 6.95648e+06 202660 865456. 2994.66 4.46 0.150664 0.129387 28354 207349 -1 1550 23 1719 2329 181014 45925 0 0 181014 45925 2329 2055 0 0 7854 6914 0 0 13529 9382 0 0 2329 2120 0 0 73596 12871 0 0 81377 12583 0 0 2329 0 0 610 735 597 5653 0 0 4.40727 4.40727 -138.148 -4.40727 0 0 1.05005e+06 3633.38 0.44 0.06 0.18 -1 -1 0.44 0.0149786 0.0135411 76 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.58 vpr 53.94 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29724 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55232 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 15.3 MiB 1.62 831 53.9 MiB 0.09 0.00 4.0079 -118.65 -4.0079 4.0079 0.96 0.000241014 0.000199134 0.0200033 0.0165507 48 2485 34 6.95648e+06 202660 865456. 2994.66 5.48 0.183435 0.159948 28354 207349 -1 2020 23 1792 2728 237768 53570 0 0 237768 53570 2728 2342 0 0 8985 7959 0 0 17643 11042 0 0 2728 2459 0 0 95978 15338 0 0 109706 14430 0 0 2728 0 0 936 1208 1373 9817 0 0 4.17991 4.17991 -142.159 -4.17991 0 0 1.05005e+06 3633.38 0.42 0.09 0.18 -1 -1 0.42 0.02143 0.0193363 80 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.51 vpr 54.18 MiB -1 -1 0.17 17588 1 0.02 -1 -1 29732 -1 -1 14 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55484 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 15.4 MiB 2.25 789 54.2 MiB 0.07 0.00 4.65305 -124.989 -4.65305 4.65305 0.96 0.000226813 0.00018486 0.0190389 0.015827 46 2382 23 6.95648e+06 202660 828058. 2865.25 3.14 0.106759 0.093267 28066 200906 -1 1738 24 1249 1877 143234 32202 0 0 143234 32202 1877 1434 0 0 6048 5356 0 0 10251 6967 0 0 1877 1541 0 0 59022 8984 0 0 64159 7920 0 0 1877 0 0 628 569 687 5331 0 0 4.68631 4.68631 -143.556 -4.68631 0 0 1.01997e+06 3529.29 0.25 0.04 0.11 -1 -1 0.25 0.0115742 0.01038 79 43 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 6.93 vpr 53.88 MiB -1 -1 0.15 17468 1 0.02 -1 -1 29844 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55176 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 15.2 MiB 2.04 915 53.9 MiB 0.09 0.00 3.74802 -120.904 -3.74802 3.74802 0.82 0.000168601 0.000138528 0.0142514 0.0118021 42 2509 45 6.95648e+06 303989 744469. 2576.02 1.77 0.0831989 0.0723755 27202 183097 -1 2016 25 1337 1990 172596 34300 0 0 172596 34300 1990 1685 0 0 6421 5549 0 0 11221 7560 0 0 1990 1772 0 0 75773 8713 0 0 75201 9021 0 0 1990 0 0 653 643 851 5867 0 0 3.56056 3.56056 -133.953 -3.56056 0 0 949917. 3286.91 0.38 0.07 0.17 -1 -1 0.38 0.0200614 0.0178308 74 78 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 17.89 vpr 53.89 MiB -1 -1 0.17 17352 1 0.01 -1 -1 29712 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55188 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 15.3 MiB 1.36 741 53.9 MiB 0.07 0.00 3.75683 -113.635 -3.75683 3.75683 1.03 0.000249051 0.000203454 0.0158114 0.0133469 44 2530 32 6.95648e+06 188184 787024. 2723.27 12.98 0.176653 0.153584 27778 195446 -1 1808 21 1585 2664 201252 43920 0 0 201252 43920 2664 2057 0 0 7924 6918 0 0 14031 8980 0 0 2664 2147 0 0 89626 11197 0 0 84343 12621 0 0 2664 0 0 1079 1034 979 8140 0 0 4.06946 4.06946 -137.548 -4.06946 0 0 997811. 3452.63 0.40 0.07 0.18 -1 -1 0.40 0.0196718 0.0176928 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 9.00 vpr 54.02 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29744 -1 -1 16 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55316 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 15.4 MiB 1.38 736 54.0 MiB 0.06 0.00 3.52027 -107.674 -3.52027 3.52027 0.95 0.000234095 0.00018972 0.0161631 0.0133269 36 2861 37 6.95648e+06 231611 648988. 2245.63 4.30 0.132814 0.1172 26050 158493 -1 2119 21 1560 2330 236702 50104 0 0 236702 50104 2330 1946 0 0 7538 6661 0 0 12857 8791 0 0 2330 2080 0 0 109953 15383 0 0 101694 15243 0 0 2330 0 0 770 901 867 6628 0 0 3.94732 3.94732 -135.777 -3.94732 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0202095 0.0181466 73 79 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 12.81 vpr 53.39 MiB -1 -1 0.15 16904 1 0.02 -1 -1 29632 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54668 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 14.8 MiB 1.11 589 53.4 MiB 0.05 0.00 2.91658 -85.9297 -2.91658 2.91658 0.95 0.000165453 0.000133668 0.0123852 0.0102462 40 1558 35 6.95648e+06 144757 706193. 2443.58 8.41 0.179847 0.159253 26914 176310 -1 1271 20 948 1379 115011 28308 0 0 115011 28308 1379 1223 0 0 4875 4234 0 0 8793 5923 0 0 1379 1250 0 0 47375 8140 0 0 51210 7538 0 0 1379 0 0 431 304 489 3543 0 0 3.13067 3.13067 -108.133 -3.13067 0 0 926341. 3205.33 0.38 0.06 0.17 -1 -1 0.38 0.014797 0.0134089 53 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 20.09 vpr 53.95 MiB -1 -1 0.14 17340 1 0.01 -1 -1 29828 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55240 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 15.4 MiB 3.45 778 53.9 MiB 0.09 0.00 4.03466 -110.618 -4.03466 4.03466 1.01 0.000237159 0.000190301 0.0196661 0.0160319 46 2485 47 6.95648e+06 332941 828058. 2865.25 13.32 0.219057 0.190205 28066 200906 -1 1859 21 1345 2150 196169 41490 0 0 196169 41490 2150 1665 0 0 6652 5836 0 0 11738 7549 0 0 2150 1753 0 0 85205 12135 0 0 88274 12552 0 0 2150 0 0 805 943 953 7149 0 0 3.92886 3.92886 -134.978 -3.92886 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0147164 0.0131105 76 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 8.10 vpr 54.11 MiB -1 -1 0.16 17632 1 0.01 -1 -1 29768 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55412 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 15.7 MiB 0.78 698 54.1 MiB 0.04 0.00 3.62238 -115.71 -3.62238 3.62238 0.62 0.000132138 0.000104876 0.0086865 0.00725646 46 2703 39 6.95648e+06 188184 828058. 2865.25 4.36 0.106007 0.0905628 28066 200906 -1 1896 25 2042 2945 225039 54801 0 0 225039 54801 2945 2542 0 0 8813 7865 0 0 15199 9745 0 0 2945 2607 0 0 93699 16121 0 0 101438 15921 0 0 2945 0 0 903 909 1011 7980 0 0 4.29196 4.29196 -151.9 -4.29196 0 0 1.01997e+06 3529.29 0.40 0.05 0.19 -1 -1 0.40 0.0129833 0.0115168 78 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 6.13 vpr 53.60 MiB -1 -1 0.16 17488 1 0.01 -1 -1 29716 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 15.1 MiB 1.82 696 53.6 MiB 0.04 0.00 3.40598 -99.7982 -3.40598 3.40598 0.59 9.8444e-05 7.8572e-05 0.00952189 0.00777567 38 2592 32 6.95648e+06 159232 678818. 2348.85 2.05 0.0505279 0.042993 26626 170182 -1 1704 22 1289 1657 140619 30958 0 0 140619 30958 1657 1522 0 0 5224 4602 0 0 9070 5950 0 0 1657 1537 0 0 60869 8506 0 0 62142 8841 0 0 1657 0 0 368 382 396 3587 0 0 3.52322 3.52322 -120.515 -3.52322 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.00886983 0.00792058 68 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 6.47 vpr 53.48 MiB -1 -1 0.15 17000 1 0.01 -1 -1 29624 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54768 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 14.9 MiB 1.20 514 53.5 MiB 0.03 0.00 2.78823 -83.9509 -2.78823 2.78823 0.60 9.5441e-05 7.577e-05 0.00753009 0.00618261 44 1671 21 6.95648e+06 188184 787024. 2723.27 2.72 0.0583555 0.0496618 27778 195446 -1 1225 21 1084 1529 109833 26648 0 0 109833 26648 1529 1228 0 0 5029 4481 0 0 8817 6121 0 0 1529 1315 0 0 46172 6338 0 0 46757 7165 0 0 1529 0 0 445 445 355 3828 0 0 2.83642 2.83642 -104.562 -2.83642 0 0 997811. 3452.63 0.30 0.03 0.11 -1 -1 0.30 0.0084956 0.00761619 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.57 vpr 53.97 MiB -1 -1 0.12 17684 1 0.02 -1 -1 29644 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55264 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 15.3 MiB 1.74 891 54.0 MiB 0.10 0.00 3.75407 -125.263 -3.75407 3.75407 0.94 0.000226678 0.00018584 0.0230298 0.0190751 46 2592 23 6.95648e+06 217135 828058. 2865.25 5.41 0.163807 0.141593 28066 200906 -1 2059 23 1920 2529 209636 44691 0 0 209636 44691 2529 2167 0 0 7835 7046 0 0 13641 8795 0 0 2529 2242 0 0 90189 12387 0 0 92913 12054 0 0 2529 0 0 609 509 587 5486 0 0 4.25921 4.25921 -150.551 -4.25921 0 0 1.01997e+06 3529.29 0.42 0.09 0.20 -1 -1 0.42 0.023203 0.0210322 85 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 6.79 vpr 53.93 MiB -1 -1 0.16 17632 1 0.01 -1 -1 29652 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55220 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 15.3 MiB 0.80 948 53.9 MiB 0.07 0.00 4.05782 -123.881 -4.05782 4.05782 0.98 0.000216537 0.000173736 0.0162785 0.0133509 40 3129 47 6.95648e+06 202660 706193. 2443.58 2.98 0.0972719 0.0840097 26914 176310 -1 2283 22 1805 2507 240987 52267 0 0 240987 52267 2507 2187 0 0 8601 7551 0 0 15584 10471 0 0 2507 2208 0 0 101247 15490 0 0 110541 14360 0 0 2507 0 0 702 859 723 6683 0 0 4.97326 4.97326 -158.84 -4.97326 0 0 926341. 3205.33 0.24 0.08 0.10 -1 -1 0.24 0.0190714 0.0171203 82 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 6.66 vpr 53.98 MiB -1 -1 0.17 17248 1 0.01 -1 -1 29780 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55276 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 15.3 MiB 0.51 877 54.0 MiB 0.09 0.00 4.04672 -117.123 -4.04672 4.04672 0.85 0.000230938 0.000188982 0.0219249 0.0181212 46 2511 31 6.95648e+06 246087 828058. 2865.25 2.90 0.100237 0.0866359 28066 200906 -1 1844 20 1454 2462 160547 40002 0 0 160547 40002 2462 1931 0 0 8136 7195 0 0 13113 9238 0 0 2462 2049 0 0 66828 9903 0 0 67546 9686 0 0 2462 0 0 1008 1271 1347 9290 0 0 4.43176 4.43176 -142.055 -4.43176 0 0 1.01997e+06 3529.29 0.41 0.07 0.19 -1 -1 0.41 0.0194943 0.0176464 83 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.84 vpr 53.85 MiB -1 -1 0.17 17680 1 0.01 -1 -1 29704 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55144 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 15.1 MiB 0.78 713 53.9 MiB 0.07 0.00 2.79923 -80.772 -2.79923 2.79923 0.63 0.000208259 0.000169824 0.0150205 0.0124755 38 2493 48 6.95648e+06 303989 678818. 2348.85 4.37 0.119295 0.102961 26626 170182 -1 1741 20 1489 2372 179694 38230 0 0 179694 38230 2372 1897 0 0 7067 6199 0 0 11159 7466 0 0 2372 2067 0 0 76487 10266 0 0 80237 10335 0 0 2372 0 0 883 1012 1138 7631 0 0 2.97097 2.97097 -103.888 -2.97097 0 0 902133. 3121.57 0.34 0.09 0.14 -1 -1 0.34 0.0173005 0.0156274 69 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 8.10 vpr 53.51 MiB -1 -1 0.16 17012 1 0.02 -1 -1 29764 -1 -1 14 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 14.9 MiB 0.63 413 53.5 MiB 0.05 0.00 2.4231 -71.4569 -2.4231 2.4231 0.86 0.000195317 0.000156879 0.0132653 0.0109216 40 1313 27 6.95648e+06 202660 706193. 2443.58 4.15 0.099928 0.084595 26914 176310 -1 1051 27 1136 1442 204038 87354 0 0 204038 87354 1442 1327 0 0 5157 4433 0 0 9300 6456 0 0 1442 1344 0 0 99500 37571 0 0 87197 36223 0 0 1442 0 0 306 282 356 3068 0 0 3.24222 3.24222 -97.542 -3.24222 0 0 926341. 3205.33 0.36 0.11 0.16 -1 -1 0.36 0.0159833 0.0141971 54 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 12.82 vpr 54.56 MiB -1 -1 0.15 17756 1 0.02 -1 -1 29760 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55872 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 16.0 MiB 1.43 945 54.6 MiB 0.10 0.00 3.20225 -108.056 -3.20225 3.20225 0.83 0.00025278 0.000202776 0.0253916 0.0208711 56 2910 37 6.95648e+06 231611 973134. 3367.25 7.89 0.22567 0.196182 29794 239141 -1 2200 21 1867 2966 221895 53535 0 0 221895 53535 2966 2217 0 0 9759 8526 0 0 18069 11662 0 0 2966 2639 0 0 91752 14920 0 0 96383 13571 0 0 2966 0 0 1099 1258 1162 9321 0 0 3.93436 3.93436 -134.868 -3.93436 0 0 1.19926e+06 4149.71 0.48 0.08 0.24 -1 -1 0.48 0.0220255 0.0198102 95 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 15.09 vpr 54.08 MiB -1 -1 0.11 17628 1 0.01 -1 -1 29780 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55376 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 15.5 MiB 3.55 1034 54.1 MiB 0.05 0.00 4.4652 -129.112 -4.4652 4.4652 0.63 0.000127033 0.00010182 0.0115803 0.00954456 38 2526 33 6.95648e+06 217135 678818. 2348.85 8.94 0.16287 0.141078 26626 170182 -1 2220 24 1849 2785 273039 52911 0 0 273039 52911 2785 2460 0 0 8525 7574 0 0 15806 9717 0 0 2785 2503 0 0 118784 16130 0 0 124354 14527 0 0 2785 0 0 936 1257 1267 8883 0 0 4.54496 4.54496 -152.985 -4.54496 0 0 902133. 3121.57 0.36 0.09 0.16 -1 -1 0.36 0.0194109 0.0172189 82 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 10.20 vpr 53.90 MiB -1 -1 0.17 17284 1 0.01 -1 -1 29688 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 15.5 MiB 2.38 724 53.9 MiB 0.04 0.00 3.05184 -103.821 -3.05184 3.05184 0.60 0.000111528 8.8438e-05 0.0102638 0.00840041 42 2561 46 6.95648e+06 159232 744469. 2576.02 5.28 0.156059 0.136418 27202 183097 -1 1832 22 1398 1985 247039 68554 0 0 247039 68554 1985 1686 0 0 6550 5662 0 0 12124 7856 0 0 1985 1750 0 0 116332 25860 0 0 108063 25740 0 0 1985 0 0 587 536 467 4989 0 0 3.83726 3.83726 -137.262 -3.83726 0 0 949917. 3286.91 0.33 0.05 0.17 -1 -1 0.33 0.0101849 0.00908071 70 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 10.04 vpr 53.86 MiB -1 -1 0.12 17444 1 0.01 -1 -1 29704 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 15.4 MiB 0.43 784 53.9 MiB 0.10 0.00 3.48277 -101.047 -3.48277 3.48277 1.05 0.000238133 0.000193961 0.0203612 0.0169414 46 2430 46 6.95648e+06 318465 828058. 2865.25 6.31 0.153233 0.132747 28066 200906 -1 1676 22 1328 2016 140615 32161 0 0 140615 32161 2016 1519 0 0 6241 5432 0 0 10300 6888 0 0 2016 1630 0 0 58509 8298 0 0 61533 8394 0 0 2016 0 0 688 518 755 5759 0 0 3.65916 3.65916 -119.327 -3.65916 0 0 1.01997e+06 3529.29 0.26 0.04 0.11 -1 -1 0.26 0.01109 0.00986956 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.63 vpr 54.08 MiB -1 -1 0.14 17444 1 0.02 -1 -1 29812 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55376 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 15.7 MiB 1.02 1005 54.1 MiB 0.10 0.00 3.78193 -116.027 -3.78193 3.78193 1.04 0.000261971 0.000213966 0.0209559 0.0173757 36 2783 28 6.95648e+06 361892 648988. 2245.63 2.44 0.0819378 0.070925 26050 158493 -1 2307 23 1742 2605 214126 44107 0 0 214126 44107 2605 1979 0 0 8424 7143 0 0 13780 9500 0 0 2605 2150 0 0 93454 11867 0 0 93258 11468 0 0 2605 0 0 863 914 1064 8104 0 0 3.95437 3.95437 -139.372 -3.95437 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.011511 0.0102518 83 46 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 9.36 vpr 53.85 MiB -1 -1 0.15 17632 1 0.01 -1 -1 29852 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55144 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 15.4 MiB 1.27 814 53.9 MiB 0.06 0.00 2.87605 -86.2274 -2.87605 2.87605 1.03 0.000221723 0.000180474 0.0148241 0.0123441 44 2305 25 6.95648e+06 231611 787024. 2723.27 4.55 0.133913 0.115927 27778 195446 -1 1790 20 1339 2148 160888 34547 0 0 160888 34547 2148 1777 0 0 6795 5992 0 0 12313 8004 0 0 2148 1965 0 0 66777 8805 0 0 70707 8004 0 0 2148 0 0 809 807 917 6723 0 0 2.90357 2.90357 -104.39 -2.90357 0 0 997811. 3452.63 0.42 0.06 0.19 -1 -1 0.42 0.0166326 0.0149192 68 46 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 24.89 vpr 54.08 MiB -1 -1 0.17 17348 1 0.02 -1 -1 29720 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55376 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 15.4 MiB 1.77 893 54.1 MiB 0.06 0.00 3.74967 -123.553 -3.74967 3.74967 0.89 0.000139873 0.00011301 0.013853 0.0116842 54 2931 31 6.95648e+06 202660 949917. 3286.91 19.66 0.208094 0.18263 29506 232905 -1 2050 25 2027 2994 270833 59142 0 0 270833 59142 2994 2339 0 0 9334 8319 0 0 17679 10908 0 0 2994 2593 0 0 115545 18002 0 0 122287 16981 0 0 2994 0 0 967 858 905 7720 0 0 4.5566 4.5566 -148.656 -4.5566 0 0 1.17392e+06 4061.99 0.46 0.10 0.23 -1 -1 0.46 0.0234133 0.0211707 88 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 4.67 vpr 54.12 MiB -1 -1 0.14 17464 1 0.01 -1 -1 29668 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55420 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 15.4 MiB 0.94 796 54.1 MiB 0.04 0.00 3.82593 -122.096 -3.82593 3.82593 0.58 0.000130285 0.000103283 0.00973925 0.00802868 44 2376 33 6.95648e+06 260562 787024. 2723.27 1.39 0.051439 0.0435763 27778 195446 -1 1848 20 1406 1938 144915 33450 0 0 144915 33450 1938 1618 0 0 6346 5638 0 0 10512 7398 0 0 1938 1754 0 0 66741 7537 0 0 57440 9505 0 0 1938 0 0 532 377 596 4673 0 0 3.89702 3.89702 -138.145 -3.89702 0 0 997811. 3452.63 0.26 0.04 0.10 -1 -1 0.26 0.0107494 0.00962263 80 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 11.12 vpr 53.39 MiB -1 -1 0.11 17468 1 0.01 -1 -1 29764 -1 -1 12 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 14.8 MiB 5.03 544 53.4 MiB 0.06 0.00 3.14061 -84.355 -3.14061 3.14061 0.92 0.000186099 0.000150053 0.0145166 0.0120289 34 1636 26 6.95648e+06 173708 618332. 2139.56 3.34 0.119238 0.104092 25762 151098 -1 1373 22 1073 1419 135448 33015 0 0 135448 33015 1419 1208 0 0 4788 4054 0 0 7773 5536 0 0 1419 1239 0 0 59988 10808 0 0 60061 10170 0 0 1419 0 0 346 477 473 3525 0 0 3.12202 3.12202 -107.8 -3.12202 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0141447 0.0126044 53 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 7.67 vpr 53.59 MiB -1 -1 0.16 17596 1 0.01 -1 -1 29664 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54880 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 15.0 MiB 1.43 690 53.6 MiB 0.05 0.00 3.06285 -102.823 -3.06285 3.06285 1.02 0.000216701 0.00017556 0.0132932 0.0110655 46 2191 36 6.95648e+06 159232 828058. 2865.25 2.81 0.108597 0.0952322 28066 200906 -1 1530 21 1169 1496 115649 26501 0 0 115649 26501 1496 1350 0 0 4832 4301 0 0 7639 5293 0 0 1496 1412 0 0 49133 7099 0 0 51053 7046 0 0 1496 0 0 327 314 303 3094 0 0 3.30982 3.30982 -123.384 -3.30982 0 0 1.01997e+06 3529.29 0.39 0.05 0.16 -1 -1 0.39 0.0154011 0.0138219 64 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 14.75 vpr 53.79 MiB -1 -1 0.11 17352 1 0.01 -1 -1 29752 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55084 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 15.3 MiB 0.82 788 53.8 MiB 0.05 0.00 3.27268 -97.37 -3.27268 3.27268 0.60 0.000116808 9.3364e-05 0.00977679 0.00803326 46 2138 22 6.95648e+06 332941 828058. 2865.25 11.37 0.137684 0.119449 28066 200906 -1 1637 21 1411 2240 159172 36943 0 0 159172 36943 2240 1732 0 0 6897 5948 0 0 11625 7749 0 0 2240 1863 0 0 66815 9678 0 0 69355 9973 0 0 2240 0 0 829 1226 990 8011 0 0 3.89096 3.89096 -127.361 -3.89096 0 0 1.01997e+06 3529.29 0.40 0.06 0.19 -1 -1 0.40 0.0167535 0.0150541 77 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 5.71 vpr 53.63 MiB -1 -1 0.15 17344 1 0.02 -1 -1 29712 -1 -1 13 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 15.1 MiB 1.40 640 53.6 MiB 0.03 0.00 3.40298 -95.8492 -3.40298 3.40298 0.59 9.6419e-05 7.6197e-05 0.00688826 0.00566835 38 2277 35 6.95648e+06 188184 678818. 2348.85 2.08 0.0466623 0.0399806 26626 170182 -1 1594 23 1296 1667 125953 29235 0 0 125953 29235 1667 1481 0 0 5393 4815 0 0 8951 6048 0 0 1667 1534 0 0 54748 7373 0 0 53527 7984 0 0 1667 0 0 371 288 399 3513 0 0 3.44612 3.44612 -113.461 -3.44612 0 0 902133. 3121.57 0.22 0.03 0.09 -1 -1 0.22 0.00852617 0.00761985 67 25 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.01 vpr 53.58 MiB -1 -1 0.14 17656 1 0.01 -1 -1 29768 -1 -1 9 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 15.1 MiB 1.62 596 53.6 MiB 0.06 0.00 3.19126 -90.8265 -3.19126 3.19126 1.06 0.000194452 0.00015747 0.0147623 0.0122251 38 1898 23 6.95648e+06 130281 678818. 2348.85 1.97 0.0702489 0.0607569 26626 170182 -1 1495 22 1268 1879 141725 31669 0 0 141725 31669 1879 1516 0 0 5784 5041 0 0 9327 6347 0 0 1879 1657 0 0 61322 8326 0 0 61534 8782 0 0 1879 0 0 611 728 752 5412 0 0 3.53087 3.53087 -114.382 -3.53087 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0139478 0.0124363 56 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 8.39 vpr 53.86 MiB -1 -1 0.17 17464 1 0.01 -1 -1 29788 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 15.2 MiB 1.18 714 53.9 MiB 0.05 0.00 2.92943 -95.3143 -2.92943 2.92943 0.88 0.00014609 0.000118358 0.0121493 0.0101677 46 2015 29 6.95648e+06 347416 828058. 2865.25 4.04 0.137373 0.119044 28066 200906 -1 1524 22 1641 2182 161082 37758 0 0 161082 37758 2182 1714 0 0 6914 6047 0 0 11071 7584 0 0 2182 1897 0 0 68018 9908 0 0 70715 10608 0 0 2182 0 0 541 727 580 5504 0 0 3.17197 3.17197 -118.357 -3.17197 0 0 1.01997e+06 3529.29 0.25 0.04 0.14 -1 -1 0.25 0.0110004 0.00982907 79 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.39 vpr 53.54 MiB -1 -1 0.16 17460 1 0.01 -1 -1 29752 -1 -1 12 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 15.1 MiB 2.08 704 53.5 MiB 0.07 0.00 3.35097 -100.684 -3.35097 3.35097 0.72 0.00017524 0.000141415 0.0146945 0.0120545 38 2096 26 6.95648e+06 173708 678818. 2348.85 2.71 0.0839474 0.0727597 26626 170182 -1 1730 20 1127 1603 138842 29166 0 0 138842 29166 1603 1389 0 0 5122 4500 0 0 8631 5664 0 0 1603 1457 0 0 61815 8318 0 0 60068 7838 0 0 1603 0 0 476 458 386 3875 0 0 3.41012 3.41012 -120.098 -3.41012 0 0 902133. 3121.57 0.29 0.03 0.16 -1 -1 0.29 0.00844954 0.00763628 64 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 17.86 vpr 53.89 MiB -1 -1 0.17 17676 1 0.01 -1 -1 29712 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55184 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 15.3 MiB 1.37 742 53.9 MiB 0.09 0.00 2.7068 -90.0117 -2.7068 2.7068 1.05 0.000249961 0.000203396 0.0195514 0.0161833 40 2112 39 6.95648e+06 318465 706193. 2443.58 12.92 0.192961 0.167214 26914 176310 -1 1890 28 1451 2287 316674 112039 0 0 316674 112039 2287 1781 0 0 7695 6793 0 0 16296 10073 0 0 2287 1859 0 0 141976 46480 0 0 146133 45053 0 0 2287 0 0 836 1398 1338 8851 0 0 3.21237 3.21237 -117.433 -3.21237 0 0 926341. 3205.33 0.34 0.11 0.16 -1 -1 0.34 0.0211783 0.0188892 71 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.94 vpr 53.91 MiB -1 -1 0.19 17832 1 0.02 -1 -1 29792 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55200 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 15.3 MiB 2.13 814 53.9 MiB 0.07 0.00 3.533 -117.428 -3.533 3.533 1.03 0.000252209 0.000204638 0.0184011 0.0152336 40 2421 30 6.95648e+06 217135 706193. 2443.58 2.22 0.101906 0.0887165 26914 176310 -1 2111 22 1640 2227 243981 49026 0 0 243981 49026 2227 1898 0 0 7379 6351 0 0 13365 8721 0 0 2227 2000 0 0 107882 15691 0 0 110901 14365 0 0 2227 0 0 587 834 858 6074 0 0 3.83481 3.83481 -142.023 -3.83481 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0181764 0.0160614 73 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 13.89 vpr 53.63 MiB -1 -1 0.16 17572 1 0.01 -1 -1 29728 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 15.1 MiB 1.60 613 53.6 MiB 0.06 0.00 2.4011 -79.9159 -2.4011 2.4011 1.04 0.000202475 0.000161757 0.015285 0.0125403 40 1756 42 6.95648e+06 144757 706193. 2443.58 8.85 0.152176 0.131332 26914 176310 -1 1624 21 1093 1676 168135 40153 0 0 168135 40153 1676 1488 0 0 5787 5109 0 0 10445 6853 0 0 1676 1535 0 0 72973 12252 0 0 75578 12916 0 0 1676 0 0 583 572 622 4777 0 0 3.83282 3.83282 -124.038 -3.83282 0 0 926341. 3205.33 0.35 0.07 0.15 -1 -1 0.35 0.0196887 0.0178001 57 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 10.75 vpr 53.72 MiB -1 -1 0.15 17488 1 0.01 -1 -1 29684 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55008 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 15.1 MiB 1.70 639 53.7 MiB 0.07 0.00 3.41698 -108.659 -3.41698 3.41698 0.85 0.000202804 0.000165424 0.0164964 0.0135976 50 2048 24 6.95648e+06 159232 902133. 3121.57 5.89 0.145519 0.126419 28642 213929 -1 1584 19 1257 1849 150550 36675 0 0 150550 36675 1849 1635 0 0 5937 5240 0 0 10670 6999 0 0 1849 1739 0 0 62573 10460 0 0 67672 10602 0 0 1849 0 0 592 550 428 4603 0 0 3.69951 3.69951 -128.816 -3.69951 0 0 1.08113e+06 3740.92 0.41 0.06 0.20 -1 -1 0.41 0.0140463 0.0126711 70 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.54 vpr 53.73 MiB -1 -1 0.13 17276 1 0.02 -1 -1 29684 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55020 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 15.2 MiB 2.61 782 53.7 MiB 0.05 0.00 3.43217 -105.396 -3.43217 3.43217 0.61 0.000113247 9.0603e-05 0.0111757 0.0091583 44 2710 33 6.95648e+06 202660 787024. 2723.27 3.49 0.0922859 0.0788032 27778 195446 -1 1843 24 1573 2137 180531 39949 0 0 180531 39949 2137 1792 0 0 7081 6270 0 0 11679 8179 0 0 2137 1879 0 0 77197 10682 0 0 80300 11147 0 0 2137 0 0 564 520 496 4905 0 0 3.69672 3.69672 -128.722 -3.69672 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0106116 0.00952054 79 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 11.95 vpr 53.81 MiB -1 -1 0.17 17280 1 0.01 -1 -1 29764 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55100 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 15.4 MiB 1.03 670 53.8 MiB 0.04 0.00 3.49208 -97.3048 -3.49208 3.49208 0.69 0.000121224 9.7006e-05 0.00880413 0.0072325 40 2132 28 6.95648e+06 303989 706193. 2443.58 7.95 0.166907 0.146844 26914 176310 -1 1734 27 1295 1840 203122 63707 0 0 203122 63707 1840 1582 0 0 6223 5365 0 0 12307 7727 0 0 1840 1650 0 0 93094 24468 0 0 87818 22915 0 0 1840 0 0 545 563 695 5431 0 0 3.66846 3.66846 -117.084 -3.66846 0 0 926341. 3205.33 0.38 0.09 0.17 -1 -1 0.38 0.0206541 0.0183562 71 49 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 18.01 vpr 54.34 MiB -1 -1 0.17 17732 1 0.02 -1 -1 29728 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55644 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 15.7 MiB 1.82 786 54.3 MiB 0.10 0.00 4.1332 -128.78 -4.1332 4.1332 1.03 0.000268859 0.000217759 0.0241168 0.0200516 46 2644 42 6.95648e+06 202660 828058. 2865.25 12.54 0.259627 0.22821 28066 200906 -1 1868 26 2120 3048 233428 54736 0 0 233428 54736 3048 2446 0 0 9399 8459 0 0 17316 11157 0 0 3048 2577 0 0 96252 16038 0 0 104365 14059 0 0 3048 0 0 928 1064 739 8287 0 0 4.2692 4.2692 -151.014 -4.2692 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0236671 0.0211697 89 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.66 vpr 53.27 MiB -1 -1 0.15 17080 1 0.01 -1 -1 29576 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54548 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 14.8 MiB 1.11 736 53.3 MiB 0.04 0.00 3.10444 -85.1218 -3.10444 3.10444 0.62 9.0236e-05 7.1874e-05 0.00752638 0.00616668 36 1978 22 6.95648e+06 188184 648988. 2245.63 3.10 0.0790397 0.0678841 26050 158493 -1 1647 19 882 1429 114811 23707 0 0 114811 23707 1429 1102 0 0 4525 3906 0 0 7899 5171 0 0 1429 1149 0 0 49686 6244 0 0 49843 6135 0 0 1429 0 0 547 484 574 4304 0 0 3.04112 3.04112 -108.168 -3.04112 0 0 828058. 2865.25 0.26 0.03 0.14 -1 -1 0.26 0.00694741 0.00625534 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.38 vpr 54.23 MiB -1 -1 0.16 17540 1 0.01 -1 -1 29736 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55528 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 15.7 MiB 1.22 761 54.2 MiB 0.09 0.00 3.08669 -108.971 -3.08669 3.08669 0.97 0.000243336 0.000199372 0.020984 0.0173087 40 2363 25 6.95648e+06 361892 706193. 2443.58 1.92 0.0794799 0.067734 26914 176310 -1 1926 20 1628 2133 186763 41277 0 0 186763 41277 2133 1870 0 0 7111 6093 0 0 12663 8228 0 0 2133 1954 0 0 80098 11703 0 0 82625 11429 0 0 2133 0 0 505 489 512 4967 0 0 4.05846 4.05846 -149.472 -4.05846 0 0 926341. 3205.33 0.29 0.04 0.15 -1 -1 0.29 0.0109714 0.00982406 81 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.45 vpr 53.97 MiB -1 -1 0.11 17648 1 0.02 -1 -1 29720 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55264 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 15.4 MiB 3.63 686 54.0 MiB 0.07 0.00 2.45985 -95.9692 -2.45985 2.45985 0.87 0.000234314 0.000187263 0.0178629 0.0146282 38 1997 23 6.95648e+06 144757 678818. 2348.85 4.55 0.138359 0.118215 26626 170182 -1 1619 23 1492 2101 182088 37774 0 0 182088 37774 2101 1807 0 0 6389 5746 0 0 11320 7222 0 0 2101 1849 0 0 80401 10423 0 0 79776 10727 0 0 2101 0 0 609 601 701 5570 0 0 3.25012 3.25012 -127.98 -3.25012 0 0 902133. 3121.57 0.37 0.07 0.16 -1 -1 0.37 0.0194219 0.0173105 61 93 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.73 vpr 53.99 MiB -1 -1 0.15 17500 1 0.01 -1 -1 29672 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55288 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 15.3 MiB 0.85 720 54.0 MiB 0.09 0.00 3.41878 -102.947 -3.41878 3.41878 0.96 0.000222797 0.000179264 0.0196061 0.0161159 44 2334 35 6.95648e+06 318465 787024. 2723.27 3.96 0.136892 0.11793 27778 195446 -1 1733 19 1110 1686 121083 28367 0 0 121083 28367 1686 1308 0 0 5602 4872 0 0 9179 6477 0 0 1686 1410 0 0 48077 7744 0 0 54853 6556 0 0 1686 0 0 576 771 710 5779 0 0 3.75166 3.75166 -127.108 -3.75166 0 0 997811. 3452.63 0.26 0.05 0.10 -1 -1 0.26 0.0155619 0.0139681 75 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 25.73 vpr 54.52 MiB -1 -1 0.15 17596 1 0.02 -1 -1 29764 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55828 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 15.9 MiB 2.07 1061 54.5 MiB 0.06 0.00 4.78798 -139.36 -4.78798 4.78798 0.90 0.000150527 0.000121266 0.0148303 0.0123171 46 3544 30 6.95648e+06 217135 828058. 2865.25 20.43 0.185936 0.161149 28066 200906 -1 2468 23 2257 3243 288220 62127 0 0 288220 62127 3243 2874 0 0 10046 8859 0 0 18578 11683 0 0 3243 3023 0 0 127353 17926 0 0 125757 17762 0 0 3243 0 0 986 1207 1310 9288 0 0 5.24985 5.24985 -171.981 -5.24985 0 0 1.01997e+06 3529.29 0.28 0.09 0.11 -1 -1 0.28 0.0188955 0.0168917 95 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 10.39 vpr 53.38 MiB -1 -1 0.14 17296 1 0.01 -1 -1 29700 -1 -1 11 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 14.8 MiB 2.95 456 53.4 MiB 0.05 0.00 2.18845 -73.9237 -2.18845 2.18845 1.11 0.000158926 0.000127657 0.0108707 0.0089911 46 1114 22 6.95648e+06 159232 828058. 2865.25 3.96 0.0997132 0.08584 28066 200906 -1 854 20 626 803 56029 13830 0 0 56029 13830 803 697 0 0 2677 2325 0 0 4477 3111 0 0 803 736 0 0 22446 3899 0 0 24823 3062 0 0 803 0 0 177 99 136 1569 0 0 2.19282 2.19282 -83.0476 -2.19282 0 0 1.01997e+06 3529.29 0.42 0.04 0.20 -1 -1 0.42 0.0108612 0.00966488 52 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.80 vpr 53.60 MiB -1 -1 0.11 17500 1 0.01 -1 -1 29660 -1 -1 11 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54884 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 15.1 MiB 1.65 511 53.6 MiB 0.05 0.00 3.12499 -93.1161 -3.12499 3.12499 0.69 0.000186171 0.000148968 0.0125788 0.0104433 36 2157 50 6.95648e+06 159232 648988. 2245.63 2.50 0.0934824 0.0808333 26050 158493 -1 1558 27 1344 1955 193025 42786 0 0 193025 42786 1955 1790 0 0 6483 5786 0 0 11798 7678 0 0 1955 1804 0 0 83432 13134 0 0 87402 12594 0 0 1955 0 0 611 895 809 5874 0 0 3.33453 3.33453 -120.74 -3.33453 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0155801 0.0137112 54 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 6.87 vpr 53.70 MiB -1 -1 0.14 17648 1 0.01 -1 -1 29744 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 15.1 MiB 0.43 597 53.7 MiB 0.04 0.00 2.6818 -90.2955 -2.6818 2.6818 0.71 0.000110334 8.7522e-05 0.00833775 0.00681993 44 2160 38 6.95648e+06 144757 787024. 2723.27 3.51 0.0777652 0.0660607 27778 195446 -1 1662 25 1270 2003 191665 40011 0 0 191665 40011 2003 1658 0 0 6138 5493 0 0 12449 7493 0 0 2003 1709 0 0 88287 11012 0 0 80785 12646 0 0 2003 0 0 733 702 628 5750 0 0 3.05407 3.05407 -114.136 -3.05407 0 0 997811. 3452.63 0.32 0.06 0.13 -1 -1 0.32 0.0156424 0.0138259 59 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.14 vpr 53.20 MiB -1 -1 0.14 17292 1 0.02 -1 -1 29860 -1 -1 18 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54480 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 14.7 MiB 0.52 409 53.2 MiB 0.03 0.00 2.84753 -63.1202 -2.84753 2.84753 0.65 8.0311e-05 6.2707e-05 0.00553147 0.00448781 40 1371 28 6.95648e+06 260562 706193. 2443.58 2.84 0.0460328 0.0384415 26914 176310 -1 1196 22 913 1342 152198 55276 0 0 152198 55276 1342 1159 0 0 4943 4376 0 0 9380 6492 0 0 1342 1204 0 0 68248 21014 0 0 66943 21031 0 0 1342 0 0 429 557 539 4161 0 0 2.91067 2.91067 -85.5535 -2.91067 0 0 926341. 3205.33 0.33 0.06 0.09 -1 -1 0.33 0.0108674 0.00964654 53 19 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 23.38 vpr 54.01 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29736 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55304 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 15.3 MiB 2.02 963 54.0 MiB 0.05 0.00 3.30725 -112.346 -3.30725 3.30725 0.66 0.000126753 0.000101198 0.0109304 0.00899095 40 2995 48 6.95648e+06 173708 706193. 2443.58 18.27 0.139325 0.119853 26914 176310 -1 2632 22 1816 3082 320999 63966 0 0 320999 63966 3082 2682 0 0 9790 8563 0 0 18445 11405 0 0 3082 2781 0 0 146953 18665 0 0 139647 19870 0 0 3082 0 0 1266 1546 1444 10072 0 0 4.17092 4.17092 -148.428 -4.17092 0 0 926341. 3205.33 0.37 0.10 0.17 -1 -1 0.37 0.0229811 0.0207777 73 69 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 15.50 vpr 54.20 MiB -1 -1 0.15 17824 1 0.01 -1 -1 29764 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55504 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 15.7 MiB 0.75 729 54.2 MiB 0.07 0.00 3.43898 -113.427 -3.43898 3.43898 0.61 0.00024719 0.000199893 0.0166377 0.0137794 38 2797 42 6.95648e+06 246087 678818. 2348.85 12.12 0.213125 0.18561 26626 170182 -1 1915 20 1636 2227 189344 42280 0 0 189344 42280 2227 1951 0 0 7077 6092 0 0 11215 7835 0 0 2227 2006 0 0 80720 12485 0 0 85878 11911 0 0 2227 0 0 591 792 731 5833 0 0 4.07741 4.07741 -135.426 -4.07741 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0214314 0.0193727 80 86 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 7.93 vpr 53.81 MiB -1 -1 0.15 17560 1 0.01 -1 -1 29792 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55104 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 15.2 MiB 2.05 830 53.8 MiB 0.09 0.00 4.0552 -121.219 -4.0552 4.0552 1.03 0.00024662 0.000202158 0.0204438 0.0169821 48 2218 33 6.99608e+06 220735 865456. 2994.66 2.28 0.108686 0.0940243 28354 207349 -1 1999 22 1678 2328 177407 40333 0 0 177407 40333 2328 1934 0 0 8038 6958 0 0 13608 9513 0 0 2328 2007 0 0 79908 9161 0 0 71197 10760 0 0 2328 0 0 650 658 601 5923 0 0 4.11391 4.11391 -141.008 -4.11391 0 0 1.05005e+06 3633.38 0.39 0.07 0.19 -1 -1 0.39 0.0181973 0.0163483 88 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 7.27 vpr 54.03 MiB -1 -1 0.18 17680 1 0.02 -1 -1 29824 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55328 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 15.5 MiB 1.39 976 54.0 MiB 0.05 0.00 4.0159 -121.783 -4.0159 4.0159 0.60 0.000125417 0.000100967 0.0119911 0.00986576 48 2799 28 6.99608e+06 250167 865456. 2994.66 3.25 0.0771107 0.0653649 28354 207349 -1 2274 19 1950 2824 234374 52448 0 0 234374 52448 2824 2487 0 0 9081 7849 0 0 15904 10697 0 0 2824 2567 0 0 97591 14476 0 0 106150 14372 0 0 2824 0 0 874 861 739 7046 0 0 4.52904 4.52904 -158.134 -4.52904 0 0 1.05005e+06 3633.38 0.37 0.05 0.19 -1 -1 0.37 0.0102718 0.00925995 99 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.27 vpr 53.63 MiB -1 -1 0.13 17408 1 0.01 -1 -1 29776 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 15.0 MiB 0.95 797 53.6 MiB 0.09 0.00 2.90939 -89.5228 -2.90939 2.90939 1.04 0.000209456 0.000170181 0.0200935 0.0165865 44 2579 24 6.99608e+06 206020 787024. 2723.27 4.72 0.123554 0.106082 27778 195446 -1 1772 20 1189 1650 117044 27027 0 0 117044 27027 1650 1356 0 0 5409 4804 0 0 9118 6260 0 0 1650 1419 0 0 49111 6520 0 0 50106 6668 0 0 1650 0 0 461 475 365 4015 0 0 3.26727 3.26727 -113.928 -3.26727 0 0 997811. 3452.63 0.42 0.06 0.19 -1 -1 0.42 0.0164271 0.0147728 76 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 7.07 vpr 53.61 MiB -1 -1 0.18 17484 1 0.01 -1 -1 29720 -1 -1 16 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54896 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 15.0 MiB 1.69 774 53.6 MiB 0.09 0.00 3.29948 -94.7551 -3.29948 3.29948 0.65 0.000219545 0.000178064 0.0194344 0.0160503 40 2046 34 6.99608e+06 235451 706193. 2443.58 2.55 0.0972532 0.0839188 26914 176310 -1 1811 25 1707 2671 190500 44398 0 0 190500 44398 2671 2136 0 0 8493 7331 0 0 16007 9912 0 0 2671 2245 0 0 81922 11786 0 0 78736 10988 0 0 2671 0 0 964 1432 959 8820 0 0 3.87511 3.87511 -121.857 -3.87511 0 0 926341. 3205.33 0.37 0.07 0.15 -1 -1 0.37 0.01751 0.0155218 78 25 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 23.59 vpr 53.69 MiB -1 -1 0.12 17472 1 0.02 -1 -1 29756 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 15.2 MiB 2.92 895 53.7 MiB 0.08 0.00 3.89209 -117.832 -3.89209 3.89209 1.05 0.000222145 0.000178578 0.0185704 0.0153699 40 3150 26 6.99608e+06 206020 706193. 2443.58 17.35 0.185058 0.160738 26914 176310 -1 2408 21 1739 2875 287551 61260 0 0 287551 61260 2875 2318 0 0 9114 8030 0 0 16629 10671 0 0 2875 2432 0 0 128931 18671 0 0 127127 19138 0 0 2875 0 0 1136 1503 1375 10045 0 0 4.61221 4.61221 -156.419 -4.61221 0 0 926341. 3205.33 0.26 0.06 0.10 -1 -1 0.26 0.0109136 0.00977226 81 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 13.15 vpr 53.90 MiB -1 -1 0.13 17356 1 0.02 -1 -1 29676 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 15.4 MiB 3.41 1013 53.9 MiB 0.10 0.00 2.83586 -100.209 -2.83586 2.83586 1.03 0.000255002 0.000209165 0.0215936 0.0178896 44 3462 35 6.99608e+06 250167 787024. 2723.27 6.21 0.174733 0.151997 27778 195446 -1 2379 24 1787 2866 238746 52337 0 0 238746 52337 2866 2208 0 0 8705 7703 0 0 15150 10002 0 0 2866 2330 0 0 111103 14285 0 0 98056 15809 0 0 2866 0 0 1079 1097 1542 9724 0 0 3.43231 3.43231 -127.3 -3.43231 0 0 997811. 3452.63 0.37 0.08 0.17 -1 -1 0.37 0.0191464 0.0170584 97 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 8.01 vpr 53.43 MiB -1 -1 0.16 17524 1 0.00 -1 -1 29880 -1 -1 15 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 14.9 MiB 1.92 566 53.4 MiB 0.08 0.00 3.12612 -90.5264 -3.12612 3.12612 0.92 0.000163786 0.000131324 0.0107339 0.00876323 38 2018 39 6.99608e+06 220735 678818. 2348.85 2.80 0.090601 0.0790148 26626 170182 -1 1498 23 1287 1908 141472 31014 0 0 141472 31014 1908 1500 0 0 5914 5184 0 0 10131 6622 0 0 1908 1543 0 0 56954 8764 0 0 64657 7401 0 0 1908 0 0 621 695 546 5336 0 0 3.30256 3.30256 -109.674 -3.30256 0 0 902133. 3121.57 0.37 0.06 0.16 -1 -1 0.37 0.0141877 0.0126027 66 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 11.54 vpr 53.48 MiB -1 -1 0.09 16960 1 0.01 -1 -1 29656 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 14.9 MiB 0.43 687 53.5 MiB 0.08 0.00 2.2484 -73.2053 -2.2484 2.2484 1.03 0.000209306 0.000169124 0.0153091 0.0126554 38 2105 50 6.99608e+06 367892 678818. 2348.85 7.98 0.154539 0.134844 26626 170182 -1 1586 23 1027 1754 112040 26885 0 0 112040 26885 1754 1262 0 0 5427 4700 0 0 8446 5839 0 0 1754 1374 0 0 45808 7290 0 0 48851 6420 0 0 1754 0 0 727 1059 978 7280 0 0 2.61902 2.61902 -94.2026 -2.61902 0 0 902133. 3121.57 0.24 0.03 0.10 -1 -1 0.24 0.0091384 0.00810407 69 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 6.91 vpr 53.81 MiB -1 -1 0.17 17392 1 0.01 -1 -1 29768 -1 -1 14 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55100 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 15.3 MiB 1.08 859 53.8 MiB 0.08 0.00 2.73924 -98.6677 -2.73924 2.73924 0.94 0.000204963 0.000168746 0.0171486 0.0141107 40 2744 37 6.99608e+06 206020 706193. 2443.58 2.70 0.0945865 0.082072 26914 176310 -1 2121 22 1681 2265 208531 45702 0 0 208531 45702 2265 1989 0 0 7708 6598 0 0 13555 9117 0 0 2265 2064 0 0 90265 13184 0 0 92473 12750 0 0 2265 0 0 584 636 558 5211 0 0 3.44046 3.44046 -123.307 -3.44046 0 0 926341. 3205.33 0.23 0.04 0.14 -1 -1 0.23 0.00926903 0.00824857 87 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.58 vpr 53.58 MiB -1 -1 0.13 17468 1 0.01 -1 -1 29672 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 14.9 MiB 0.85 830 53.6 MiB 0.04 0.00 3.30642 -114.786 -3.30642 3.30642 0.69 0.000111787 8.8812e-05 0.00950476 0.00778431 44 2233 23 6.99608e+06 191304 787024. 2723.27 3.86 0.0844795 0.0720851 27778 195446 -1 1744 22 1366 1753 128199 27639 0 0 128199 27639 1753 1491 0 0 5573 4878 0 0 9237 6415 0 0 1753 1539 0 0 54908 6791 0 0 54975 6525 0 0 1753 0 0 387 345 385 3644 0 0 3.47486 3.47486 -132.486 -3.47486 0 0 997811. 3452.63 0.40 0.06 0.15 -1 -1 0.40 0.0180828 0.0162886 75 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 5.68 vpr 53.58 MiB -1 -1 0.09 17352 1 0.01 -1 -1 29808 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 15.2 MiB 0.76 796 53.6 MiB 0.07 0.00 3.10933 -99.3661 -3.10933 3.10933 1.03 0.000202973 0.000163423 0.015247 0.0126357 42 2475 33 6.99608e+06 206020 744469. 2576.02 1.85 0.0745365 0.0637533 27202 183097 -1 1735 17 1336 1820 167613 41768 0 0 167613 41768 1820 1573 0 0 5858 5161 0 0 10117 6838 0 0 1820 1646 0 0 75948 13112 0 0 72050 13438 0 0 1820 0 0 484 360 484 4180 0 0 3.7652 3.7652 -124.323 -3.7652 0 0 949917. 3286.91 0.23 0.04 0.10 -1 -1 0.23 0.00786654 0.00708109 83 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.57 vpr 53.36 MiB -1 -1 0.13 17684 1 0.01 -1 -1 29812 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54644 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 14.9 MiB 0.86 816 53.4 MiB 0.04 0.00 2.6205 -95.5835 -2.6205 2.6205 1.00 0.00011102 8.8898e-05 0.00910721 0.00750784 38 2284 28 6.99608e+06 161872 678818. 2348.85 4.61 0.1048 0.089951 26626 170182 -1 1914 22 1342 1718 149010 30599 0 0 149010 30599 1718 1469 0 0 5237 4627 0 0 8884 5787 0 0 1718 1513 0 0 67137 8360 0 0 64316 8843 0 0 1718 0 0 376 421 345 3612 0 0 3.22842 3.22842 -118.387 -3.22842 0 0 902133. 3121.57 0.33 0.05 0.12 -1 -1 0.33 0.0135237 0.0119976 66 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 7.86 vpr 53.73 MiB -1 -1 0.16 17340 1 0.02 -1 -1 29632 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55016 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 15.1 MiB 1.07 996 53.7 MiB 0.09 0.00 3.30642 -115.552 -3.30642 3.30642 1.02 0.000244915 0.000200058 0.0190261 0.0157553 38 3042 28 6.99608e+06 220735 678818. 2348.85 3.35 0.117169 0.103437 26626 170182 -1 2466 21 1657 2395 208805 42195 0 0 208805 42195 2395 2058 0 0 7360 6353 0 0 12158 7907 0 0 2395 2168 0 0 92956 12079 0 0 91541 11630 0 0 2395 0 0 738 806 756 6193 0 0 3.85876 3.85876 -141.93 -3.85876 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0159468 0.0142543 87 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 15.01 vpr 53.93 MiB -1 -1 0.17 17648 1 0.01 -1 -1 29736 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55228 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 15.5 MiB 1.72 1014 53.9 MiB 0.09 0.00 3.86116 -112.629 -3.86116 3.86116 0.97 0.00023118 0.000184958 0.0197155 0.0162077 60 2786 44 6.99608e+06 250167 1.01997e+06 3529.29 9.59 0.192486 0.166702 30658 258169 -1 1849 22 1894 2645 187966 46129 0 0 187966 46129 2645 2170 0 0 8455 7277 0 0 14259 9481 0 0 2645 2342 0 0 78292 13281 0 0 81670 11578 0 0 2645 0 0 751 699 817 6724 0 0 4.13571 4.13571 -142.622 -4.13571 0 0 1.27783e+06 4421.56 0.57 0.08 0.25 -1 -1 0.57 0.0223777 0.020234 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 11.32 vpr 53.19 MiB -1 -1 0.14 17252 1 0.01 -1 -1 29772 -1 -1 13 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54468 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 14.6 MiB 3.35 565 53.2 MiB 0.03 0.00 2.5552 -72.0312 -2.5552 2.5552 1.02 0.000102694 8.2513e-05 0.00672108 0.00557863 44 1974 39 6.99608e+06 191304 787024. 2723.27 4.61 0.105703 0.0914277 27778 195446 -1 1242 19 975 1370 93261 22462 0 0 93261 22462 1370 1121 0 0 4433 3889 0 0 7195 5060 0 0 1370 1165 0 0 39800 5268 0 0 39093 5959 0 0 1370 0 0 395 369 206 3146 0 0 2.85427 2.85427 -91.5543 -2.85427 0 0 997811. 3452.63 0.37 0.04 0.18 -1 -1 0.37 0.0118296 0.010604 64 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.98 vpr 54.03 MiB -1 -1 0.18 17404 1 0.02 -1 -1 29724 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55328 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 15.5 MiB 1.46 1110 54.0 MiB 0.06 0.00 2.99159 -104.514 -2.99159 2.99159 0.95 0.000233377 0.000190526 0.0138157 0.011548 38 3198 28 6.99608e+06 235451 678818. 2348.85 2.24 0.0766976 0.0665129 26626 170182 -1 2501 23 2024 3095 227048 48719 0 0 227048 48719 3095 2446 0 0 9445 8422 0 0 15316 10257 0 0 3095 2611 0 0 103096 12274 0 0 93001 12709 0 0 3095 0 0 1071 1147 1345 9620 0 0 4.09081 4.09081 -144.267 -4.09081 0 0 902133. 3121.57 0.33 0.08 0.14 -1 -1 0.33 0.0180227 0.0159744 96 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.42 vpr 53.71 MiB -1 -1 0.15 17348 1 0.02 -1 -1 29732 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 15.2 MiB 0.70 834 53.7 MiB 0.09 0.00 3.40815 -107.803 -3.40815 3.40815 0.79 0.00023411 0.000190369 0.0199622 0.0165614 42 2876 30 6.99608e+06 220735 744469. 2576.02 5.00 0.144672 0.124531 27202 183097 -1 2060 23 1652 2259 200758 43161 0 0 200758 43161 2259 2083 0 0 7633 6564 0 0 12948 9016 0 0 2259 2121 0 0 86206 11463 0 0 89453 11914 0 0 2259 0 0 607 647 580 5307 0 0 3.37756 3.37756 -123.831 -3.37756 0 0 949917. 3286.91 0.24 0.04 0.10 -1 -1 0.24 0.0105128 0.00936569 84 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.60 vpr 53.66 MiB -1 -1 0.13 17648 1 0.01 -1 -1 29824 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 15.2 MiB 0.96 859 53.7 MiB 0.04 0.00 2.59239 -95.4645 -2.59239 2.59239 0.69 0.000121062 9.7235e-05 0.00939442 0.00775542 46 2528 50 6.99608e+06 220735 828058. 2865.25 2.69 0.0978213 0.0848337 28066 200906 -1 1769 23 1823 2248 157905 36982 0 0 157905 36982 2248 1975 0 0 6929 6070 0 0 11685 7563 0 0 2248 2060 0 0 69363 9460 0 0 65432 9854 0 0 2248 0 0 425 487 424 4712 0 0 2.82976 2.82976 -115.789 -2.82976 0 0 1.01997e+06 3529.29 0.42 0.07 0.12 -1 -1 0.42 0.0184003 0.0164453 89 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.78 vpr 53.21 MiB -1 -1 0.14 17412 1 0.01 -1 -1 29648 -1 -1 10 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54484 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 14.8 MiB 1.50 584 53.2 MiB 0.05 0.00 1.95956 -74.3324 -1.95956 1.95956 0.76 0.000145029 0.000115385 0.0120429 0.00979924 36 1532 25 6.99608e+06 147157 648988. 2245.63 2.44 0.0595114 0.0500532 26050 158493 -1 1212 18 732 803 71140 16078 0 0 71140 16078 803 757 0 0 2937 2587 0 0 4276 3267 0 0 803 762 0 0 31376 4282 0 0 30945 4423 0 0 803 0 0 71 56 71 1143 0 0 2.11243 2.11243 -86.5055 -2.11243 0 0 828058. 2865.25 0.24 0.04 0.14 -1 -1 0.24 0.0104376 0.00940868 52 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.20 vpr 53.53 MiB -1 -1 0.15 17464 1 0.02 -1 -1 29796 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 15.0 MiB 1.85 882 53.5 MiB 0.04 0.00 3.02472 -102.017 -3.02472 3.02472 0.60 0.000191806 0.000155292 0.00950097 0.00788184 38 2177 28 6.99608e+06 191304 678818. 2348.85 1.84 0.0505176 0.0431522 26626 170182 -1 1911 21 1537 2117 202282 40806 0 0 202282 40806 2117 1909 0 0 6534 5774 0 0 11079 7154 0 0 2117 1928 0 0 94707 10787 0 0 85728 13254 0 0 2117 0 0 580 375 597 4955 0 0 3.57611 3.57611 -134.669 -3.57611 0 0 902133. 3121.57 0.36 0.07 0.15 -1 -1 0.36 0.0153389 0.0136776 72 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 10.84 vpr 53.74 MiB -1 -1 0.17 17352 1 0.02 -1 -1 29712 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55032 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 15.2 MiB 1.63 779 53.7 MiB 0.09 0.00 3.38154 -106.186 -3.38154 3.38154 0.96 0.000222174 0.000180486 0.0211147 0.0174252 46 2358 26 6.99608e+06 294314 828058. 2865.25 5.76 0.160551 0.14024 28066 200906 -1 1874 22 1707 2576 212448 46466 0 0 212448 46466 2576 2106 0 0 8038 7197 0 0 13385 8876 0 0 2576 2197 0 0 91297 12461 0 0 94576 13629 0 0 2576 0 0 869 930 1023 8084 0 0 4.0598 4.0598 -137.619 -4.0598 0 0 1.01997e+06 3529.29 0.38 0.07 0.18 -1 -1 0.38 0.0189101 0.01697 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 13.34 vpr 53.90 MiB -1 -1 0.10 17716 1 0.01 -1 -1 29712 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 15.4 MiB 2.56 1255 53.9 MiB 0.08 0.00 3.72134 -121.721 -3.72134 3.72134 1.00 0.000241144 0.000194137 0.0171814 0.0141163 38 3427 37 6.99608e+06 235451 678818. 2348.85 7.42 0.116513 0.101293 26626 170182 -1 2727 20 2028 2996 256320 49896 0 0 256320 49896 2996 2475 0 0 8968 7805 0 0 14402 9593 0 0 2996 2624 0 0 114025 14077 0 0 112933 13322 0 0 2996 0 0 968 1112 1256 8824 0 0 4.05711 4.05711 -143.247 -4.05711 0 0 902133. 3121.57 0.32 0.09 0.16 -1 -1 0.32 0.0210987 0.0191113 100 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 7.59 vpr 53.00 MiB -1 -1 0.14 17072 1 0.01 -1 -1 29692 -1 -1 13 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54268 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 14.4 MiB 2.44 406 53.0 MiB 0.03 0.00 2.2286 -62.8623 -2.2286 2.2286 0.67 0.000127122 0.000101499 0.00619214 0.00504586 36 1597 38 6.99608e+06 191304 648988. 2245.63 2.51 0.0607874 0.0525407 26050 158493 -1 995 21 791 879 78023 18058 0 0 78023 18058 879 844 0 0 2922 2524 0 0 4857 3329 0 0 879 850 0 0 33402 5179 0 0 35084 5332 0 0 879 0 0 88 75 97 1315 0 0 2.38147 2.38147 -76.067 -2.38147 0 0 828058. 2865.25 0.24 0.03 0.09 -1 -1 0.24 0.00643311 0.00567634 53 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.38 vpr 53.46 MiB -1 -1 0.15 17324 1 0.02 -1 -1 29716 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54748 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 14.9 MiB 0.88 689 53.5 MiB 0.07 0.00 3.7303 -91.18 -3.7303 3.7303 0.84 0.000194235 0.00015505 0.0146629 0.0120507 44 2305 26 6.99608e+06 220735 787024. 2723.27 3.87 0.0941587 0.0796733 27778 195446 -1 1559 22 1150 1942 139130 32563 0 0 139130 32563 1942 1587 0 0 6059 5280 0 0 10169 6877 0 0 1942 1712 0 0 60256 7756 0 0 58762 9351 0 0 1942 0 0 792 988 807 6725 0 0 3.78966 3.78966 -120.217 -3.78966 0 0 997811. 3452.63 0.28 0.04 0.18 -1 -1 0.28 0.0091611 0.00816016 66 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.87 vpr 52.88 MiB -1 -1 0.14 16716 1 0.01 -1 -1 29564 -1 -1 8 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54148 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 14.4 MiB 0.26 394 52.9 MiB 0.05 0.00 1.65401 -54.7665 -1.65401 1.65401 0.97 0.000140483 0.000114032 0.00939728 0.00775418 36 1186 20 6.99608e+06 117725 648988. 2245.63 1.57 0.0430325 0.0368497 26050 158493 -1 938 17 628 726 61036 15077 0 0 61036 15077 726 686 0 0 2508 2240 0 0 3996 2931 0 0 726 690 0 0 24252 4604 0 0 28828 3926 0 0 726 0 0 98 36 110 1200 0 0 2.17998 2.17998 -71.9415 -2.17998 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.00507968 0.00454632 42 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 9.54 vpr 53.54 MiB -1 -1 0.13 17648 1 0.01 -1 -1 29740 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 14.9 MiB 1.41 989 53.5 MiB 0.05 0.00 3.59843 -105.336 -3.59843 3.59843 0.96 0.000129058 0.000105235 0.0110336 0.00913058 36 2662 24 6.99608e+06 206020 648988. 2245.63 5.11 0.133817 0.117756 26050 158493 -1 2251 21 1412 2028 173425 35108 0 0 173425 35108 2028 1734 0 0 6386 5565 0 0 10823 7204 0 0 2028 1797 0 0 76005 9554 0 0 76155 9254 0 0 2028 0 0 616 596 663 5439 0 0 3.93781 3.93781 -130.565 -3.93781 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00902432 0.00808613 73 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.75 vpr 53.41 MiB -1 -1 0.16 17184 1 0.02 -1 -1 29756 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 14.8 MiB 0.60 772 53.4 MiB 0.04 0.00 2.34075 -79.5041 -2.34075 2.34075 0.60 0.000112053 8.9577e-05 0.0085513 0.00706796 42 2317 43 6.99608e+06 309029 744469. 2576.02 3.41 0.0971947 0.083491 27202 183097 -1 1659 22 1409 2323 172041 40008 0 0 172041 40008 2323 1720 0 0 7860 6880 0 0 13420 9128 0 0 2323 1860 0 0 70514 10564 0 0 75601 9856 0 0 2323 0 0 914 982 1270 8353 0 0 3.10587 3.10587 -107.333 -3.10587 0 0 949917. 3286.91 0.38 0.06 0.18 -1 -1 0.38 0.0164477 0.0145678 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 8.68 vpr 53.78 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29740 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55068 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 15.2 MiB 1.45 892 53.8 MiB 0.09 0.00 3.45778 -104.549 -3.45778 3.45778 1.04 0.00021873 0.000174831 0.0189909 0.0155583 40 3175 44 6.99608e+06 220735 706193. 2443.58 3.91 0.108218 0.0939898 26914 176310 -1 2285 24 1990 3061 289450 70897 0 0 289450 70897 3061 2593 0 0 9914 8689 0 0 19141 11826 0 0 3061 2733 0 0 127410 22364 0 0 126863 22692 0 0 3061 0 0 1071 1289 1348 9635 0 0 4.18872 4.18872 -137.022 -4.18872 0 0 926341. 3205.33 0.31 0.06 0.10 -1 -1 0.31 0.0116762 0.0103825 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 9.66 vpr 53.52 MiB -1 -1 0.09 17352 1 0.02 -1 -1 29872 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 15.1 MiB 2.84 826 53.5 MiB 0.06 0.00 2.63455 -89.7695 -2.63455 2.63455 1.02 0.000187443 0.000150995 0.0137092 0.0112751 36 2433 36 6.99608e+06 176588 648988. 2245.63 3.48 0.101781 0.0888583 26050 158493 -1 1931 21 1210 1714 138850 29793 0 0 138850 29793 1714 1441 0 0 5603 4790 0 0 9373 6500 0 0 1714 1558 0 0 59908 8082 0 0 60538 7422 0 0 1714 0 0 504 446 516 4382 0 0 3.16327 3.16327 -118.692 -3.16327 0 0 828058. 2865.25 0.34 0.06 0.15 -1 -1 0.34 0.0154521 0.0138302 69 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 6.89 vpr 53.51 MiB -1 -1 0.16 17088 1 0.01 -1 -1 29680 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 15.0 MiB 1.74 723 53.5 MiB 0.06 0.00 2.92097 -88.8022 -2.92097 2.92097 0.96 0.000181122 0.000145422 0.0138643 0.0113746 44 1864 29 6.99608e+06 206020 787024. 2723.27 1.98 0.0674116 0.0582388 27778 195446 -1 1551 19 1173 1798 139336 30321 0 0 139336 30321 1798 1440 0 0 5783 5170 0 0 9664 6563 0 0 1798 1501 0 0 55338 8683 0 0 64955 6964 0 0 1798 0 0 625 561 707 5393 0 0 3.17871 3.17871 -108.692 -3.17871 0 0 997811. 3452.63 0.30 0.04 0.10 -1 -1 0.30 0.0106314 0.00962052 66 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 11.65 vpr 53.22 MiB -1 -1 0.15 17308 1 0.02 -1 -1 29660 -1 -1 18 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 14.8 MiB 0.98 631 53.2 MiB 0.08 0.00 2.61364 -82.2635 -2.61364 2.61364 1.03 0.000186389 0.000151472 0.0159837 0.0131611 36 2392 42 6.99608e+06 264882 648988. 2245.63 7.46 0.125724 0.108696 26050 158493 -1 1654 19 1197 1877 157826 34865 0 0 157826 34865 1877 1542 0 0 6076 5278 0 0 10266 7146 0 0 1877 1609 0 0 65772 10063 0 0 71958 9227 0 0 1877 0 0 680 755 664 5730 0 0 3.37901 3.37901 -113.842 -3.37901 0 0 828058. 2865.25 0.22 0.03 0.10 -1 -1 0.22 0.00732389 0.00653205 69 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 5.02 vpr 53.28 MiB -1 -1 0.15 17056 1 0.01 -1 -1 29728 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 14.7 MiB 0.46 561 53.3 MiB 0.04 0.00 2.68955 -87.1588 -2.68955 2.68955 0.98 0.000114474 9.0937e-05 0.00912751 0.00752096 40 1597 25 6.99608e+06 147157 706193. 2443.58 1.22 0.0418499 0.0355536 26914 176310 -1 1314 21 1142 1702 131581 31591 0 0 131581 31591 1702 1340 0 0 5598 4966 0 0 9845 6507 0 0 1702 1408 0 0 58142 7929 0 0 54592 9441 0 0 1702 0 0 560 566 500 4634 0 0 3.16887 3.16887 -114.14 -3.16887 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.014237 0.0127289 58 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 5.54 vpr 53.54 MiB -1 -1 0.10 17504 1 0.02 -1 -1 29740 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54820 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 15.1 MiB 0.65 897 53.5 MiB 0.03 0.00 2.62898 -90.3488 -2.62898 2.62898 0.60 9.9045e-05 7.9747e-05 0.00549818 0.00459055 38 2303 34 6.99608e+06 191304 678818. 2348.85 2.71 0.0566901 0.048022 26626 170182 -1 1989 21 1203 1600 143206 28589 0 0 143206 28589 1600 1420 0 0 5045 4381 0 0 8030 5529 0 0 1600 1441 0 0 64026 7722 0 0 62905 8096 0 0 1600 0 0 397 501 488 4136 0 0 3.02182 3.02182 -113.711 -3.02182 0 0 902133. 3121.57 0.27 0.03 0.09 -1 -1 0.27 0.00832538 0.00745163 69 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.36 vpr 53.61 MiB -1 -1 0.14 17404 1 0.01 -1 -1 29788 -1 -1 15 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54892 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 15.0 MiB 2.39 966 53.6 MiB 0.03 0.00 2.45385 -87.8965 -2.45385 2.45385 0.70 0.000105977 8.5054e-05 0.00764479 0.00646066 44 2122 22 6.99608e+06 220735 787024. 2723.27 3.25 0.0782299 0.06778 27778 195446 -1 1899 18 1385 1817 131321 27921 0 0 131321 27921 1817 1535 0 0 5764 5073 0 0 9659 6468 0 0 1817 1577 0 0 60866 5641 0 0 51398 7627 0 0 1817 0 0 432 183 591 4109 0 0 2.73202 2.73202 -105.57 -2.73202 0 0 997811. 3452.63 0.41 0.05 0.19 -1 -1 0.41 0.0141491 0.0127533 77 48 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 23.97 vpr 53.86 MiB -1 -1 0.15 17436 1 0.02 -1 -1 29688 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55152 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 15.2 MiB 1.44 1088 53.9 MiB 0.06 0.00 3.53733 -102.777 -3.53733 3.53733 0.98 0.000244767 0.000200851 0.0144083 0.012143 40 3287 28 6.99608e+06 235451 706193. 2443.58 19.09 0.212869 0.187125 26914 176310 -1 2618 20 1718 2703 227368 49511 0 0 227368 49511 2703 2121 0 0 8869 7565 0 0 15380 10322 0 0 2703 2276 0 0 99640 13323 0 0 98073 13904 0 0 2703 0 0 985 1406 1562 10816 0 0 3.87017 3.87017 -133.44 -3.87017 0 0 926341. 3205.33 0.38 0.08 0.17 -1 -1 0.38 0.0209549 0.0189777 92 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 8.57 vpr 54.32 MiB -1 -1 0.15 17444 1 0.01 -1 -1 29780 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55628 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 15.5 MiB 1.88 1168 54.3 MiB 0.09 0.00 3.42916 -124.529 -3.42916 3.42916 0.97 0.000236818 0.000194319 0.0213505 0.017767 40 3232 28 6.99608e+06 279598 706193. 2443.58 3.20 0.0981959 0.0848332 26914 176310 -1 2912 22 2638 3670 383276 83109 0 0 383276 83109 3670 3150 0 0 11633 10351 0 0 21749 13608 0 0 3670 3326 0 0 173638 26380 0 0 168916 26294 0 0 3670 0 0 1032 1260 1165 9623 0 0 4.1148 4.1148 -162.364 -4.1148 0 0 926341. 3205.33 0.37 0.11 0.17 -1 -1 0.37 0.0208254 0.0186064 106 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.60 vpr 53.36 MiB -1 -1 0.14 17480 1 0.01 -1 -1 29680 -1 -1 11 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 14.8 MiB 1.57 911 53.4 MiB 0.06 0.00 2.87547 -98.0114 -2.87547 2.87547 0.98 0.000186705 0.000151649 0.0135773 0.0113481 38 2183 24 6.99608e+06 161872 678818. 2348.85 3.66 0.0913294 0.0780856 26626 170182 -1 1873 21 1345 1985 165227 33180 0 0 165227 33180 1985 1658 0 0 5933 5290 0 0 10180 6478 0 0 1985 1708 0 0 68474 10037 0 0 76670 8009 0 0 1985 0 0 640 771 915 6133 0 0 3.07697 3.07697 -116.995 -3.07697 0 0 902133. 3121.57 0.39 0.07 0.14 -1 -1 0.39 0.0157732 0.0141958 66 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 19.18 vpr 54.02 MiB -1 -1 0.18 17276 1 0.02 -1 -1 29816 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55316 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 15.6 MiB 1.86 1112 54.0 MiB 0.09 0.00 2.89729 -104.102 -2.89729 2.89729 0.98 0.000239154 0.000196523 0.0196011 0.0162683 38 3049 45 6.99608e+06 250167 678818. 2348.85 13.86 0.191884 0.16651 26626 170182 -1 2498 22 1782 2504 188147 39544 0 0 188147 39544 2504 2123 0 0 7754 6740 0 0 12033 8301 0 0 2504 2163 0 0 81202 10336 0 0 82150 9881 0 0 2504 0 0 722 851 711 6680 0 0 3.55136 3.55136 -134.565 -3.55136 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0201404 0.0180482 99 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 21.75 vpr 54.14 MiB -1 -1 0.17 17912 1 0.01 -1 -1 29860 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55444 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 15.5 MiB 2.02 1067 54.1 MiB 0.08 0.00 4.12206 -131.019 -4.12206 4.12206 0.88 0.000255331 0.000196028 0.0172408 0.0143308 40 3457 49 6.99608e+06 250167 706193. 2443.58 16.54 0.147303 0.127192 26914 176310 -1 2873 23 2600 3661 392810 81712 0 0 392810 81712 3661 3382 0 0 11791 10442 0 0 22001 13902 0 0 3661 3438 0 0 178846 25149 0 0 172850 25399 0 0 3661 0 0 1061 1017 1137 8998 0 0 5.0031 5.0031 -173.027 -5.0031 0 0 926341. 3205.33 0.23 0.07 0.11 -1 -1 0.23 0.0118316 0.0105916 104 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 12.50 vpr 53.95 MiB -1 -1 0.14 17732 1 0.01 -1 -1 29836 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55240 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 15.4 MiB 3.98 1127 53.9 MiB 0.09 0.00 4.31328 -138.743 -4.31328 4.31328 1.04 0.000253971 0.000205547 0.0191665 0.0158671 44 3222 22 6.99608e+06 264882 787024. 2723.27 4.98 0.161198 0.140388 27778 195446 -1 2471 21 1874 2644 233862 47273 0 0 233862 47273 2644 2184 0 0 8446 7348 0 0 14134 9629 0 0 2644 2273 0 0 105356 12546 0 0 100638 13293 0 0 2644 0 0 770 519 704 6339 0 0 4.59134 4.59134 -166.878 -4.59134 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.017814 0.0159315 103 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 11.60 vpr 53.88 MiB -1 -1 0.15 17560 1 0.02 -1 -1 29836 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55172 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 15.3 MiB 2.64 911 53.9 MiB 0.06 0.00 3.12612 -101.65 -3.12612 3.12612 1.01 0.000167732 0.000122418 0.0143933 0.011892 48 2940 39 6.99608e+06 235451 865456. 2994.66 5.38 0.154094 0.133833 28354 207349 -1 2215 22 1742 2362 219480 49160 0 0 219480 49160 2362 2106 0 0 7970 6961 0 0 14207 9436 0 0 2362 2169 0 0 90513 14702 0 0 102066 13786 0 0 2362 0 0 620 670 750 5978 0 0 3.41986 3.41986 -124.849 -3.41986 0 0 1.05005e+06 3633.38 0.42 0.08 0.20 -1 -1 0.42 0.0193831 0.0173709 93 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.86 vpr 53.58 MiB -1 -1 0.16 17272 1 0.01 -1 -1 29728 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 15.0 MiB 1.03 862 53.6 MiB 0.05 0.00 3.47308 -98.4296 -3.47308 3.47308 0.62 0.000115263 9.3632e-05 0.0111816 0.00927615 44 2620 28 6.99608e+06 206020 787024. 2723.27 4.23 0.110844 0.0955793 27778 195446 -1 1977 20 1300 1847 149468 31353 0 0 149468 31353 1847 1436 0 0 5821 5151 0 0 10000 6586 0 0 1847 1567 0 0 64104 8426 0 0 65849 8187 0 0 1847 0 0 547 525 418 4637 0 0 3.61352 3.61352 -115.205 -3.61352 0 0 997811. 3452.63 0.25 0.03 0.11 -1 -1 0.25 0.00850674 0.00763108 72 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 30.15 vpr 54.22 MiB -1 -1 0.18 17844 1 0.02 -1 -1 29948 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55524 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 16.0 MiB 1.60 1477 54.2 MiB 0.10 0.00 3.8744 -137.164 -3.8744 3.8744 1.01 0.000295873 0.000238876 0.0190176 0.0157326 40 4178 30 6.99608e+06 309029 706193. 2443.58 24.90 0.231204 0.201088 26914 176310 -1 3695 22 2797 4127 415063 80577 0 0 415063 80577 4127 3713 0 0 13090 11430 0 0 24358 15203 0 0 4127 3833 0 0 181443 23275 0 0 187918 23123 0 0 4127 0 0 1330 1808 1906 12855 0 0 5.36794 5.36794 -189.19 -5.36794 0 0 926341. 3205.33 0.37 0.13 0.17 -1 -1 0.37 0.0246131 0.0220426 129 84 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 11.03 vpr 53.43 MiB -1 -1 0.09 17200 1 0.01 -1 -1 29752 -1 -1 11 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 15.0 MiB 3.20 530 53.4 MiB 0.06 0.00 2.5612 -80.5114 -2.5612 2.5612 1.01 0.000190961 0.000155434 0.0144481 0.0119707 46 1773 35 6.99608e+06 161872 828058. 2865.25 4.75 0.115572 0.0990733 28066 200906 -1 1207 20 1136 1478 83796 22265 0 0 83796 22265 1478 1246 0 0 4739 4150 0 0 7445 5331 0 0 1478 1289 0 0 35158 4803 0 0 33498 5446 0 0 1478 0 0 342 314 189 3021 0 0 2.95667 2.95667 -99.1062 -2.95667 0 0 1.01997e+06 3529.29 0.40 0.05 0.17 -1 -1 0.40 0.0129103 0.0114714 65 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.85 vpr 53.70 MiB -1 -1 0.13 17404 1 0.02 -1 -1 29872 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54992 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 15.2 MiB 0.70 937 53.7 MiB 0.05 0.00 3.70767 -117.828 -3.70767 3.70767 0.60 0.00011869 9.4705e-05 0.0116947 0.00957731 44 2949 48 6.99608e+06 220735 787024. 2723.27 3.57 0.092183 0.0787171 27778 195446 -1 2070 20 1628 2361 184707 39862 0 0 184707 39862 2361 2072 0 0 7307 6501 0 0 12945 8459 0 0 2361 2149 0 0 79321 10444 0 0 80412 10237 0 0 2361 0 0 733 877 788 6721 0 0 4.47591 4.47591 -144.994 -4.47591 0 0 997811. 3452.63 0.39 0.06 0.16 -1 -1 0.39 0.0161516 0.0148015 85 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.48 vpr 53.87 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29744 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55164 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 15.3 MiB 1.44 1079 53.9 MiB 0.07 0.00 3.12594 -104.104 -3.12594 3.12594 1.01 0.000236491 0.000190457 0.0152303 0.0125963 50 2674 46 6.99608e+06 220735 902133. 3121.57 4.77 0.134082 0.116062 28642 213929 -1 2209 19 1330 2035 177169 39871 0 0 177169 39871 2035 1631 0 0 6818 5818 0 0 11487 7856 0 0 2035 1780 0 0 76420 11058 0 0 78374 11728 0 0 2035 0 0 705 743 740 6023 0 0 3.27882 3.27882 -122.124 -3.27882 0 0 1.08113e+06 3740.92 0.30 0.04 0.17 -1 -1 0.30 0.0105433 0.00948825 91 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 8.61 vpr 53.38 MiB -1 -1 0.14 17224 1 0.02 -1 -1 29760 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54656 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 14.8 MiB 1.04 679 53.4 MiB 0.06 0.00 3.61243 -98.3379 -3.61243 3.61243 0.64 0.000196244 0.000158624 0.0144553 0.0120287 52 1876 49 6.99608e+06 235451 926341. 3205.33 5.04 0.111516 0.0955686 29218 227130 -1 1418 19 1047 1821 119944 28135 0 0 119944 28135 1821 1428 0 0 5720 4967 0 0 10255 6650 0 0 1821 1518 0 0 49411 6429 0 0 50916 7143 0 0 1821 0 0 774 971 781 6721 0 0 3.71251 3.71251 -112.002 -3.71251 0 0 1.14541e+06 3963.36 0.28 0.03 0.20 -1 -1 0.28 0.0084088 0.00755741 68 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 10.97 vpr 53.68 MiB -1 -1 0.16 17484 1 0.02 -1 -1 29732 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 15.1 MiB 1.55 934 53.7 MiB 0.08 0.00 3.39715 -105.948 -3.39715 3.39715 1.05 0.000241519 0.000196401 0.0207224 0.0172145 38 3177 37 6.99608e+06 220735 678818. 2348.85 5.92 0.14019 0.12382 26626 170182 -1 2213 23 1737 2267 182383 39167 0 0 182383 39167 2267 2042 0 0 7025 6097 0 0 11245 7663 0 0 2267 2118 0 0 81124 10443 0 0 78455 10804 0 0 2267 0 0 530 668 601 5342 0 0 3.74246 3.74246 -132.263 -3.74246 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0198723 0.017733 90 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.17 vpr 54.00 MiB -1 -1 0.10 17680 1 0.01 -1 -1 29728 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55296 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 15.3 MiB 1.39 1037 54.0 MiB 0.09 0.00 3.02259 -101.392 -3.02259 3.02259 0.77 0.00023711 0.000193522 0.0209554 0.0173361 44 3264 29 6.99608e+06 220735 787024. 2723.27 4.75 0.124966 0.107381 27778 195446 -1 2290 22 1576 2410 213588 48644 0 0 213588 48644 2410 1946 0 0 7717 6737 0 0 13275 9125 0 0 2410 2097 0 0 93323 14742 0 0 94453 13997 0 0 2410 0 0 834 952 1073 8337 0 0 3.41406 3.41406 -129.456 -3.41406 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.019184 0.0172165 92 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 12.53 vpr 54.07 MiB -1 -1 0.15 17464 1 0.02 -1 -1 29760 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55364 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 15.4 MiB 2.88 973 54.1 MiB 0.10 0.00 3.15907 -105.825 -3.15907 3.15907 1.03 0.000256958 0.000210431 0.022496 0.0187573 50 2831 23 6.99608e+06 235451 902133. 3121.57 5.95 0.170718 0.147804 28642 213929 -1 2112 21 1909 2550 210849 47157 0 0 210849 47157 2550 2087 0 0 8316 7179 0 0 13630 9330 0 0 2550 2157 0 0 96875 12503 0 0 86928 13901 0 0 2550 0 0 641 750 724 6215 0 0 3.34751 3.34751 -123.007 -3.34751 0 0 1.08113e+06 3740.92 0.44 0.08 0.21 -1 -1 0.44 0.0203593 0.0182876 101 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.38 vpr 53.71 MiB -1 -1 0.15 17484 1 0.02 -1 -1 29712 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 15.0 MiB 1.25 764 53.7 MiB 0.07 0.00 3.71143 -99.6524 -3.71143 3.71143 1.03 0.000224346 0.000183029 0.0169399 0.0141052 46 2220 35 6.99608e+06 206020 828058. 2865.25 2.61 0.0907492 0.078427 28066 200906 -1 1633 20 1198 1827 119371 30181 0 0 119371 30181 1827 1545 0 0 5883 5271 0 0 9378 6553 0 0 1827 1625 0 0 47742 7787 0 0 52714 7400 0 0 1827 0 0 629 635 594 5357 0 0 3.92211 3.92211 -123.782 -3.92211 0 0 1.01997e+06 3529.29 0.39 0.05 0.19 -1 -1 0.39 0.0156403 0.014071 74 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 6.38 vpr 53.80 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29696 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55088 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 15.2 MiB 1.91 765 53.8 MiB 0.04 0.00 3.46208 -104.17 -3.46208 3.46208 0.67 0.000115781 9.2548e-05 0.00938007 0.00779888 46 2449 27 6.99608e+06 191304 828058. 2865.25 1.71 0.051239 0.043613 28066 200906 -1 1790 21 1539 2078 152663 37113 0 0 152663 37113 2078 1763 0 0 6699 6057 0 0 11104 7577 0 0 2078 1833 0 0 65803 9718 0 0 64901 10165 0 0 2078 0 0 539 554 490 4773 0 0 4.30096 4.30096 -135.218 -4.30096 0 0 1.01997e+06 3529.29 0.27 0.04 0.11 -1 -1 0.27 0.0101133 0.00907557 81 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 7.03 vpr 53.95 MiB -1 -1 0.17 17772 1 0.01 -1 -1 29744 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55244 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 15.4 MiB 1.17 988 53.9 MiB 0.09 0.00 3.43501 -109.106 -3.43501 3.43501 1.01 0.000237121 0.00019253 0.0196011 0.0162901 46 2930 28 6.99608e+06 235451 828058. 2865.25 2.64 0.107397 0.0931189 28066 200906 -1 2033 22 1812 2722 167792 40689 0 0 167792 40689 2722 2258 0 0 8569 7587 0 0 13830 9356 0 0 2722 2335 0 0 69263 9805 0 0 70686 9348 0 0 2722 0 0 910 951 648 7565 0 0 4.15891 4.15891 -134.079 -4.15891 0 0 1.01997e+06 3529.29 0.40 0.07 0.18 -1 -1 0.40 0.019139 0.0171658 99 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 9.66 vpr 54.04 MiB -1 -1 0.18 17756 1 0.02 -1 -1 29660 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55340 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 15.4 MiB 1.04 1119 54.0 MiB 0.09 0.00 3.11332 -104.683 -3.11332 3.11332 0.96 0.00024048 0.000193002 0.0202259 0.0165061 48 3405 33 6.99608e+06 235451 865456. 2994.66 5.38 0.163635 0.14269 28354 207349 -1 2664 24 2268 3378 307906 66299 0 0 307906 66299 3378 2726 0 0 11118 9862 0 0 20362 13163 0 0 3378 3007 0 0 127032 19628 0 0 142638 17913 0 0 3378 0 0 1110 1105 1201 9294 0 0 4.13672 4.13672 -142.578 -4.13672 0 0 1.05005e+06 3633.38 0.42 0.09 0.20 -1 -1 0.42 0.0191148 0.017318 104 74 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.28 vpr 53.22 MiB -1 -1 0.13 17272 1 0.02 -1 -1 29708 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 14.5 MiB 0.47 606 53.2 MiB 0.03 0.00 2.58978 -78.1679 -2.58978 2.58978 0.60 9.7522e-05 7.7311e-05 0.00783891 0.00640889 48 1488 26 6.99608e+06 147157 865456. 2994.66 3.24 0.0663481 0.0561079 28354 207349 -1 1153 16 786 1076 70061 19671 0 0 70061 19671 1076 877 0 0 3940 3437 0 0 6423 4835 0 0 1076 966 0 0 27115 4984 0 0 30431 4572 0 0 1076 0 0 290 282 288 2668 0 0 2.97282 2.97282 -95.9258 -2.97282 0 0 1.05005e+06 3633.38 0.43 0.04 0.21 -1 -1 0.43 0.0117703 0.0106709 60 20 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 18.65 vpr 53.85 MiB -1 -1 0.17 17500 1 0.02 -1 -1 29752 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55140 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 15.3 MiB 1.00 880 53.8 MiB 0.08 0.00 3.31348 -119.119 -3.31348 3.31348 0.96 0.000217537 0.000176941 0.0181617 0.015036 40 3203 38 6.99608e+06 220735 706193. 2443.58 14.24 0.13875 0.119341 26914 176310 -1 2623 22 2238 2961 332718 68351 0 0 332718 68351 2961 2674 0 0 9310 8299 0 0 17572 10886 0 0 2961 2770 0 0 158803 20272 0 0 141111 23450 0 0 2961 0 0 723 698 731 6559 0 0 4.50881 4.50881 -160.233 -4.50881 0 0 926341. 3205.33 0.38 0.10 0.17 -1 -1 0.38 0.0198213 0.0178767 93 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.59 vpr 53.97 MiB -1 -1 0.11 17772 1 0.01 -1 -1 29876 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55264 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 15.5 MiB 0.84 1196 54.0 MiB 0.05 0.00 4.10482 -128.774 -4.10482 4.10482 0.60 0.000152162 0.00012445 0.0112719 0.00931575 46 3768 28 6.99608e+06 235451 828058. 2865.25 3.83 0.106449 0.0932361 28066 200906 -1 2817 20 1899 2965 237936 47330 0 0 237936 47330 2965 2456 0 0 9002 7835 0 0 14539 9653 0 0 2965 2601 0 0 99016 13808 0 0 109449 10977 0 0 2965 0 0 1066 1279 1128 9022 0 0 4.89076 4.89076 -158.919 -4.89076 0 0 1.01997e+06 3529.29 0.38 0.08 0.18 -1 -1 0.38 0.0196717 0.0177102 98 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 9.53 vpr 53.81 MiB -1 -1 0.09 17712 1 0.01 -1 -1 29680 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55100 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 15.3 MiB 0.82 838 53.8 MiB 0.09 0.00 3.52245 -112.99 -3.52245 3.52245 1.04 0.000237987 0.00019375 0.0209369 0.0173944 44 2681 27 6.99608e+06 220735 787024. 2723.27 5.47 0.14215 0.122771 27778 195446 -1 1832 21 1653 2272 160896 36630 0 0 160896 36630 2272 1849 0 0 6935 6102 0 0 12015 7913 0 0 2272 1997 0 0 71146 8911 0 0 66256 9858 0 0 2272 0 0 619 683 689 5877 0 0 3.47186 3.47186 -128.76 -3.47186 0 0 997811. 3452.63 0.27 0.04 0.11 -1 -1 0.27 0.0107566 0.00964778 85 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 18.40 vpr 53.54 MiB -1 -1 0.16 17336 1 0.01 -1 -1 29732 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54824 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 15.0 MiB 1.61 688 53.5 MiB 0.08 0.00 3.02694 -92.7898 -3.02694 3.02694 1.01 0.000205473 0.000168 0.0160991 0.0134312 36 2570 45 6.99608e+06 294314 648988. 2245.63 13.44 0.170289 0.148188 26050 158493 -1 1769 20 1260 2046 178947 37969 0 0 178947 37969 2046 1636 0 0 6420 5490 0 0 11340 7322 0 0 2046 1756 0 0 79407 10474 0 0 77688 11291 0 0 2046 0 0 786 1003 1019 7532 0 0 3.47436 3.47436 -118.761 -3.47436 0 0 828058. 2865.25 0.31 0.06 0.13 -1 -1 0.31 0.0150223 0.0134746 72 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 22.50 vpr 54.23 MiB -1 -1 0.16 17668 1 0.00 -1 -1 29800 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55536 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 15.6 MiB 2.25 1349 54.2 MiB 0.06 0.00 4.83158 -151.15 -4.83158 4.83158 0.75 0.000153583 0.000124496 0.0130438 0.0109016 44 3848 42 6.99608e+06 264882 787024. 2723.27 17.25 0.142111 0.122659 27778 195446 -1 2904 21 2545 3812 304112 60260 0 0 304112 60260 3812 2985 0 0 11403 10076 0 0 20273 12799 0 0 3812 3122 0 0 130470 16246 0 0 134342 15032 0 0 3812 0 0 1267 1569 1353 11249 0 0 5.27418 5.27418 -179.289 -5.27418 0 0 997811. 3452.63 0.25 0.06 0.11 -1 -1 0.25 0.0126611 0.0113599 116 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 7.65 vpr 53.69 MiB -1 -1 0.17 17688 1 0.01 -1 -1 29636 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 15.2 MiB 0.81 734 53.7 MiB 0.04 0.00 3.97864 -114.648 -3.97864 3.97864 0.61 0.000122827 9.8311e-05 0.00831921 0.00696313 40 2586 39 6.99608e+06 206020 706193. 2443.58 4.04 0.0835255 0.0722111 26914 176310 -1 1905 23 1716 2294 185454 41715 0 0 185454 41715 2294 2017 0 0 7447 6363 0 0 12581 8373 0 0 2294 2062 0 0 81600 11234 0 0 79238 11666 0 0 2294 0 0 578 789 719 5902 0 0 4.19065 4.19065 -143.841 -4.19065 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0174494 0.0155627 83 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 6.51 vpr 53.07 MiB -1 -1 0.14 16980 1 0.01 -1 -1 29540 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54348 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 14.6 MiB 0.26 523 53.1 MiB 0.06 0.00 2.4029 -74.0791 -2.4029 2.4029 1.04 0.000176543 0.00014351 0.0120754 0.00998825 40 1877 34 6.99608e+06 191304 706193. 2443.58 3.03 0.0621219 0.0528888 26914 176310 -1 1434 22 1051 1610 138741 36141 0 0 138741 36141 1610 1405 0 0 5585 4840 0 0 9914 6631 0 0 1610 1445 0 0 58183 10610 0 0 61839 11210 0 0 1610 0 0 559 642 786 5189 0 0 2.88167 2.88167 -101.418 -2.88167 0 0 926341. 3205.33 0.37 0.05 0.17 -1 -1 0.37 0.00938311 0.00843447 51 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 10.96 vpr 53.87 MiB -1 -1 0.17 17348 1 0.01 -1 -1 29684 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55164 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 15.3 MiB 1.67 1068 53.9 MiB 0.08 0.00 3.87622 -110.067 -3.87622 3.87622 0.97 0.000225881 0.000185047 0.018236 0.0153033 54 2492 24 6.99608e+06 235451 949917. 3286.91 5.67 0.153955 0.13249 29506 232905 -1 1996 20 1328 2136 140501 30259 0 0 140501 30259 2136 1533 0 0 6765 5937 0 0 11480 7549 0 0 2136 1669 0 0 58633 6903 0 0 59351 6668 0 0 2136 0 0 808 1109 1291 8916 0 0 4.26726 4.26726 -130.38 -4.26726 0 0 1.17392e+06 4061.99 0.48 0.06 0.23 -1 -1 0.48 0.018703 0.0168537 85 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.62 vpr 53.34 MiB -1 -1 0.14 17068 1 0.01 -1 -1 29688 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54616 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 14.7 MiB 1.09 487 53.3 MiB 0.03 0.00 2.5722 -81.981 -2.5722 2.5722 0.59 9.4644e-05 7.5283e-05 0.00712841 0.00583315 40 1831 29 6.99608e+06 206020 706193. 2443.58 2.85 0.0674975 0.0567499 26914 176310 -1 1432 24 1339 1891 140956 36096 0 0 140956 36096 1891 1616 0 0 6118 5220 0 0 10784 7103 0 0 1891 1684 0 0 58116 10205 0 0 62156 10268 0 0 1891 0 0 552 582 581 4934 0 0 3.10097 3.10097 -112.233 -3.10097 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.0139702 0.0123822 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 9.10 vpr 53.54 MiB -1 -1 0.16 17512 1 0.02 -1 -1 29720 -1 -1 13 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54824 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 15.0 MiB 0.59 671 53.5 MiB 0.07 0.00 2.90847 -90.17 -2.90847 2.90847 1.02 0.00019944 0.000162056 0.0148226 0.0123426 44 1941 27 6.99608e+06 191304 787024. 2723.27 5.10 0.127717 0.110405 27778 195446 -1 1361 17 1069 1443 87391 21254 0 0 87391 21254 1443 1238 0 0 4673 4079 0 0 7786 5381 0 0 1443 1308 0 0 34497 5000 0 0 37549 4248 0 0 1443 0 0 374 455 408 3720 0 0 3.28551 3.28551 -109.515 -3.28551 0 0 997811. 3452.63 0.38 0.04 0.16 -1 -1 0.38 0.0122338 0.0110427 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.47 vpr 53.94 MiB -1 -1 0.18 17504 1 0.01 -1 -1 29784 -1 -1 18 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55232 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 15.3 MiB 2.14 1111 53.9 MiB 0.09 0.00 3.40046 -109.052 -3.40046 3.40046 0.97 0.000224481 0.000181961 0.0197916 0.0163868 38 3389 47 6.99608e+06 264882 678818. 2348.85 2.97 0.100675 0.0880282 26626 170182 -1 2540 21 1841 2724 227152 46905 0 0 227152 46905 2724 2190 0 0 8358 7356 0 0 13709 9179 0 0 2724 2412 0 0 100967 12703 0 0 98670 13065 0 0 2724 0 0 883 753 824 7054 0 0 4.1331 4.1331 -141.362 -4.1331 0 0 902133. 3121.57 0.30 0.08 0.15 -1 -1 0.30 0.0180993 0.0162619 97 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 9.70 vpr 53.77 MiB -1 -1 0.15 17324 1 0.02 -1 -1 29768 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55064 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 15.1 MiB 1.74 1138 53.8 MiB 0.09 0.00 3.50518 -121.326 -3.50518 3.50518 1.02 0.000249165 0.000203339 0.0214979 0.0178888 44 2818 33 6.99608e+06 220735 787024. 2723.27 4.45 0.14196 0.122749 27778 195446 -1 2227 22 1692 2362 173067 35966 0 0 173067 35966 2362 1968 0 0 7354 6435 0 0 12038 8191 0 0 2362 2030 0 0 74028 8736 0 0 74923 8606 0 0 2362 0 0 670 552 651 5713 0 0 4.13911 4.13911 -146.135 -4.13911 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0187536 0.0168195 93 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 8.80 vpr 53.84 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29712 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55128 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 15.2 MiB 2.78 1004 53.8 MiB 0.08 0.00 3.79817 -117.764 -3.79817 3.79817 1.02 0.000250808 0.000206454 0.0175387 0.0146335 38 3351 41 6.99608e+06 220735 678818. 2348.85 2.57 0.107332 0.0937582 26626 170182 -1 2422 20 1922 2755 201444 43299 0 0 201444 43299 2755 2357 0 0 8429 7421 0 0 13590 9068 0 0 2755 2484 0 0 86852 11189 0 0 87063 10780 0 0 2755 0 0 833 853 859 7472 0 0 4.28345 4.28345 -148.955 -4.28345 0 0 902133. 3121.57 0.33 0.07 0.14 -1 -1 0.33 0.0171025 0.0152898 90 48 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.56 vpr 53.47 MiB -1 -1 0.13 17348 1 0.01 -1 -1 29756 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 15.0 MiB 2.52 810 53.5 MiB 0.05 0.00 3.18112 -104.147 -3.18112 3.18112 0.82 0.000100448 7.9732e-05 0.0100516 0.00819004 46 1976 23 6.99608e+06 161872 828058. 2865.25 3.98 0.0769463 0.0660577 28066 200906 -1 1654 17 1136 1504 126812 25990 0 0 126812 25990 1504 1341 0 0 4771 4206 0 0 7972 5261 0 0 1504 1378 0 0 52805 7405 0 0 58256 6399 0 0 1504 0 0 368 231 367 3246 0 0 3.35756 3.35756 -117.683 -3.35756 0 0 1.01997e+06 3529.29 0.38 0.05 0.18 -1 -1 0.38 0.0116641 0.0104837 67 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.12 vpr 53.71 MiB -1 -1 0.09 17472 1 0.01 -1 -1 29732 -1 -1 14 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54996 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 15.2 MiB 1.09 785 53.7 MiB 0.05 0.00 3.04907 -100.076 -3.04907 3.04907 0.59 0.000108934 8.6493e-05 0.0102416 0.00839972 40 2430 33 6.99608e+06 206020 706193. 2443.58 4.49 0.118271 0.101834 26914 176310 -1 2149 20 1703 2403 211887 48110 0 0 211887 48110 2403 2191 0 0 7972 7027 0 0 14454 9685 0 0 2403 2236 0 0 86491 14248 0 0 98164 12723 0 0 2403 0 0 700 740 656 5899 0 0 3.37777 3.37777 -128.551 -3.37777 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0155379 0.0139391 86 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 16.31 vpr 53.84 MiB -1 -1 0.16 17560 1 0.01 -1 -1 29728 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 15.3 MiB 1.18 842 53.8 MiB 0.09 0.00 2.82424 -91.6434 -2.82424 2.82424 0.94 0.000201905 0.000161622 0.016784 0.0137543 40 2578 23 6.99608e+06 279598 706193. 2443.58 11.89 0.170713 0.149126 26914 176310 -1 2185 18 1632 2360 223372 50355 0 0 223372 50355 2360 2022 0 0 8174 7122 0 0 14668 9780 0 0 2360 2110 0 0 95557 15271 0 0 100253 14050 0 0 2360 0 0 728 1204 1118 8208 0 0 3.35301 3.35301 -119.072 -3.35301 0 0 926341. 3205.33 0.29 0.05 0.17 -1 -1 0.29 0.0111776 0.0100083 91 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.00 vpr 53.49 MiB -1 -1 0.14 17564 1 0.02 -1 -1 29784 -1 -1 17 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54776 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 14.9 MiB 0.60 740 53.5 MiB 0.08 0.00 3.06285 -86.9863 -3.06285 3.06285 1.03 0.000202698 0.000164734 0.0181055 0.0149382 44 2105 23 6.99608e+06 250167 787024. 2723.27 3.97 0.119279 0.102643 27778 195446 -1 1512 19 1165 1670 106024 24141 0 0 106024 24141 1670 1274 0 0 5339 4661 0 0 8770 6017 0 0 1670 1361 0 0 44787 5371 0 0 43788 5457 0 0 1670 0 0 505 623 568 5056 0 0 3.58362 3.58362 -106.147 -3.58362 0 0 997811. 3452.63 0.31 0.03 0.19 -1 -1 0.31 0.00851811 0.00770076 71 20 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.99 vpr 53.72 MiB -1 -1 0.16 17560 1 0.01 -1 -1 29780 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55008 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 15.2 MiB 2.06 878 53.7 MiB 0.05 0.00 3.66581 -114.714 -3.66581 3.66581 0.68 0.000110015 8.8305e-05 0.00974175 0.00800686 42 2792 26 6.99608e+06 220735 744469. 2576.02 4.32 0.124994 0.109189 27202 183097 -1 2127 18 1622 2192 192877 41253 0 0 192877 41253 2192 2013 0 0 7320 6459 0 0 12486 8457 0 0 2192 2088 0 0 84321 11146 0 0 84366 11090 0 0 2192 0 0 570 437 563 4986 0 0 4.04565 4.04565 -141.948 -4.04565 0 0 949917. 3286.91 0.35 0.06 0.16 -1 -1 0.35 0.014384 0.012977 87 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 9.01 vpr 53.76 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29772 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55052 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 15.2 MiB 1.01 871 53.8 MiB 0.05 0.00 2.893 -98.0663 -2.893 2.893 0.85 0.000112559 8.9075e-05 0.0101027 0.0081792 46 3038 37 6.99608e+06 206020 828058. 2865.25 4.65 0.110504 0.0959248 28066 200906 -1 1892 21 1743 2421 189115 41389 0 0 189115 41389 2421 1990 0 0 7567 6606 0 0 11949 8181 0 0 2421 2082 0 0 81951 10895 0 0 82806 11635 0 0 2421 0 0 678 644 414 5513 0 0 3.28342 3.28342 -122.592 -3.28342 0 0 1.01997e+06 3529.29 0.42 0.07 0.20 -1 -1 0.42 0.0181947 0.01638 93 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 18.31 vpr 53.46 MiB -1 -1 0.14 17288 1 0.01 -1 -1 29744 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 14.9 MiB 0.46 764 53.5 MiB 0.08 0.00 3.86008 -101.909 -3.86008 3.86008 0.95 0.000192203 0.000158188 0.0155173 0.0128703 44 2586 31 6.99608e+06 353176 787024. 2723.27 14.49 0.159185 0.139024 27778 195446 -1 1816 17 989 1720 126571 28110 0 0 126571 28110 1720 1339 0 0 5568 4781 0 0 9014 6412 0 0 1720 1433 0 0 51676 7590 0 0 56873 6555 0 0 1720 0 0 731 775 874 6356 0 0 3.69046 3.69046 -120.973 -3.69046 0 0 997811. 3452.63 0.44 0.06 0.17 -1 -1 0.44 0.0146787 0.0133139 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 6.28 vpr 53.76 MiB -1 -1 0.16 17676 1 0.03 -1 -1 29664 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 15.2 MiB 1.95 880 53.8 MiB 0.05 0.00 3.62631 -119.782 -3.62631 3.62631 0.59 0.000129577 0.000103946 0.012543 0.0102988 44 3060 35 6.99608e+06 206020 787024. 2723.27 1.64 0.0618476 0.0527222 27778 195446 -1 2112 21 1753 2569 185234 42043 0 0 185234 42043 2569 2157 0 0 7837 7018 0 0 13591 8866 0 0 2569 2255 0 0 76667 11095 0 0 82001 10652 0 0 2569 0 0 816 713 683 6413 0 0 4.28795 4.28795 -147.864 -4.28795 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0187996 0.0169142 86 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.70 vpr 54.07 MiB -1 -1 0.16 17492 1 0.02 -1 -1 29748 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55368 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 15.5 MiB 0.85 1114 54.1 MiB 0.08 0.00 4.133 -132.854 -4.133 4.133 0.92 0.000247979 0.000203339 0.017548 0.0144853 46 3231 43 6.99608e+06 250167 828058. 2865.25 3.76 0.12247 0.107583 28066 200906 -1 2408 23 2023 2798 242392 50169 0 0 242392 50169 2798 2448 0 0 8758 7804 0 0 14909 9689 0 0 2798 2550 0 0 105296 14556 0 0 107833 13122 0 0 2798 0 0 775 983 843 7383 0 0 5.27664 5.27664 -165.12 -5.27664 0 0 1.01997e+06 3529.29 0.29 0.05 0.16 -1 -1 0.29 0.0118923 0.0106324 102 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 10.68 vpr 53.91 MiB -1 -1 0.16 17680 1 0.01 -1 -1 29676 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55204 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 15.4 MiB 1.07 1025 53.9 MiB 0.11 0.00 3.60146 -116.782 -3.60146 3.60146 1.03 0.000265573 0.000216839 0.0239419 0.0198303 54 3232 50 6.99608e+06 250167 949917. 3286.91 5.83 0.173336 0.149437 29506 232905 -1 2315 22 2115 3124 269229 57677 0 0 269229 57677 3124 2581 0 0 9695 8537 0 0 17066 10950 0 0 3124 2791 0 0 113129 16696 0 0 123091 16122 0 0 3124 0 0 1009 1455 1373 9493 0 0 4.1206 4.1206 -145.247 -4.1206 0 0 1.17392e+06 4061.99 0.49 0.09 0.22 -1 -1 0.49 0.0214578 0.0191421 104 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.01 vpr 53.36 MiB -1 -1 0.15 17572 1 0.01 -1 -1 29816 -1 -1 13 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54644 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 14.8 MiB 1.10 675 53.4 MiB 0.07 0.00 3.51145 -100.51 -3.51145 3.51145 0.97 0.000181613 0.000147322 0.0148404 0.0122646 38 2638 41 6.99608e+06 191304 678818. 2348.85 1.65 0.0502758 0.0425245 26626 170182 -1 1826 21 1383 1959 178699 38217 0 0 178699 38217 1959 1658 0 0 6013 5310 0 0 10376 6610 0 0 1959 1718 0 0 76959 11766 0 0 81433 11155 0 0 1959 0 0 576 623 613 4963 0 0 3.45286 3.45286 -118.612 -3.45286 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0126761 0.0113351 71 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.99 vpr 53.88 MiB -1 -1 0.15 17464 1 0.01 -1 -1 29756 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55168 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 15.4 MiB 1.26 947 53.9 MiB 0.09 0.00 4.42536 -130.692 -4.42536 4.42536 1.02 0.000257804 0.000210957 0.0216594 0.0179987 44 3238 39 6.99608e+06 264882 787024. 2723.27 3.22 0.126201 0.11009 27778 195446 -1 1985 21 1894 2690 184793 45428 0 0 184793 45428 2690 2333 0 0 8633 7591 0 0 14272 9892 0 0 2690 2378 0 0 71943 12649 0 0 84565 10585 0 0 2690 0 0 796 795 621 6648 0 0 5.3736 5.3736 -161.745 -5.3736 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0173651 0.0155686 104 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 9.17 vpr 53.70 MiB -1 -1 0.15 17340 1 0.01 -1 -1 29736 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54988 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 15.1 MiB 1.40 937 53.7 MiB 0.05 0.00 3.72804 -113.999 -3.72804 3.72804 0.82 0.000133555 0.000107739 0.0121819 0.0100926 52 2582 25 6.99608e+06 206020 926341. 3205.33 4.43 0.102016 0.0874913 29218 227130 -1 1998 24 1683 2880 250259 50999 0 0 250259 50999 2880 2282 0 0 8450 7409 0 0 15333 9401 0 0 2880 2424 0 0 106175 15092 0 0 114541 14391 0 0 2880 0 0 1197 1919 2110 12736 0 0 4.05756 4.05756 -133.324 -4.05756 0 0 1.14541e+06 3963.36 0.44 0.08 0.17 -1 -1 0.44 0.0192962 0.0172752 82 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 13.14 vpr 53.67 MiB -1 -1 0.16 17588 1 0.01 -1 -1 29760 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 15.1 MiB 1.27 1138 53.7 MiB 0.09 0.00 4.18675 -123.068 -4.18675 4.18675 0.93 0.000225029 0.000184861 0.0205187 0.0171005 36 2907 29 6.99608e+06 250167 648988. 2245.63 9.02 0.119464 0.102753 26050 158493 -1 2446 20 1631 2352 209949 42297 0 0 209949 42297 2352 1918 0 0 7567 6579 0 0 13019 8708 0 0 2352 1985 0 0 93212 11222 0 0 91447 11885 0 0 2352 0 0 721 834 895 6634 0 0 4.41876 4.41876 -149.014 -4.41876 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0164773 0.0148254 87 43 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 9.77 vpr 53.95 MiB -1 -1 0.18 17404 1 0.02 -1 -1 29740 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55240 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 15.4 MiB 2.80 1187 53.9 MiB 0.10 0.00 3.54046 -115.118 -3.54046 3.54046 0.78 0.000255541 0.000202823 0.0202488 0.0165744 40 3018 31 6.99608e+06 294314 706193. 2443.58 3.99 0.112185 0.0979407 26914 176310 -1 2825 22 2481 3419 373931 71652 0 0 373931 71652 3419 3076 0 0 11153 9729 0 0 20608 13059 0 0 3419 3249 0 0 163576 21851 0 0 171756 20688 0 0 3419 0 0 938 1206 1228 9325 0 0 4.2604 4.2604 -153.579 -4.2604 0 0 926341. 3205.33 0.32 0.06 0.16 -1 -1 0.32 0.0110604 0.00987749 108 78 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 12.15 vpr 53.91 MiB -1 -1 0.17 17344 1 0.02 -1 -1 29680 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55208 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 15.4 MiB 2.14 927 53.9 MiB 0.10 0.00 4.00366 -121.91 -4.00366 4.00366 1.04 0.000262448 0.000207941 0.0214239 0.0177245 56 2587 24 6.99608e+06 250167 973134. 3367.25 6.26 0.175621 0.152112 29794 239141 -1 2151 19 1662 2381 228015 49933 0 0 228015 49933 2381 2064 0 0 8177 7023 0 0 14545 9673 0 0 2381 2183 0 0 99971 14142 0 0 100560 14848 0 0 2381 0 0 719 668 566 6026 0 0 4.77861 4.77861 -155.865 -4.77861 0 0 1.19926e+06 4149.71 0.46 0.08 0.22 -1 -1 0.46 0.0188483 0.0170303 95 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 12.26 vpr 54.06 MiB -1 -1 0.17 17492 1 0.02 -1 -1 29736 -1 -1 20 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55356 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 15.5 MiB 2.97 1026 54.1 MiB 0.10 0.00 3.28125 -103.829 -3.28125 3.28125 1.03 0.000235084 0.000188847 0.0219901 0.0180976 44 3051 27 6.99608e+06 294314 787024. 2723.27 5.65 0.191332 0.166468 27778 195446 -1 2277 22 2011 2696 221243 47383 0 0 221243 47383 2696 2362 0 0 8667 7580 0 0 15138 10178 0 0 2696 2449 0 0 95003 12623 0 0 97043 12191 0 0 2696 0 0 685 810 689 6406 0 0 3.52016 3.52016 -121.41 -3.52016 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.019629 0.0175862 109 79 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 13.09 vpr 53.15 MiB -1 -1 0.13 16836 1 0.01 -1 -1 29672 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 14.6 MiB 1.54 550 53.2 MiB 0.06 0.00 2.91658 -83.73 -2.91658 2.91658 0.92 0.000173429 0.000140988 0.0129691 0.0107094 40 1756 24 6.99608e+06 147157 706193. 2443.58 8.43 0.108669 0.0932182 26914 176310 -1 1539 24 1175 1822 160623 41586 0 0 160623 41586 1822 1518 0 0 5950 5337 0 0 11112 6960 0 0 1822 1559 0 0 69574 12414 0 0 70343 13798 0 0 1822 0 0 647 762 678 5385 0 0 3.05367 3.05367 -113.247 -3.05367 0 0 926341. 3205.33 0.27 0.04 0.16 -1 -1 0.27 0.00815248 0.00723965 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 9.36 vpr 54.11 MiB -1 -1 0.17 17488 1 0.02 -1 -1 29720 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55412 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 15.5 MiB 0.83 984 54.1 MiB 0.09 0.00 4.21916 -133.154 -4.21916 4.21916 0.97 0.000250107 0.00020095 0.0181891 0.0149885 52 2622 26 6.99608e+06 250167 926341. 3205.33 5.21 0.158078 0.137506 29218 227130 -1 1969 22 1795 2573 186230 41187 0 0 186230 41187 2573 2225 0 0 8143 7062 0 0 14071 9289 0 0 2573 2344 0 0 76576 10324 0 0 82294 9943 0 0 2573 0 0 778 747 860 6932 0 0 4.88974 4.88974 -153.305 -4.88974 0 0 1.14541e+06 3963.36 0.47 0.08 0.22 -1 -1 0.47 0.0206616 0.0185667 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 17.83 vpr 54.06 MiB -1 -1 0.15 17276 1 0.02 -1 -1 29872 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55360 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 15.5 MiB 1.12 1065 54.1 MiB 0.05 0.00 3.9997 -135.29 -3.9997 3.9997 0.61 0.000132482 0.000105573 0.0120455 0.00986381 40 3464 43 6.99608e+06 250167 706193. 2443.58 14.23 0.207759 0.18166 26914 176310 -1 2613 24 2905 4022 333837 77748 0 0 333837 77748 4022 3474 0 0 12659 11235 0 0 24243 14904 0 0 4022 3548 0 0 140666 24030 0 0 148225 20557 0 0 4022 0 0 1117 1436 1090 10001 0 0 5.17054 5.17054 -174.204 -5.17054 0 0 926341. 3205.33 0.23 0.06 0.09 -1 -1 0.23 0.012129 0.0107973 109 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 9.23 vpr 53.49 MiB -1 -1 0.15 17552 1 0.02 -1 -1 29836 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54776 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 15.0 MiB 1.19 741 53.5 MiB 0.08 0.00 3.03397 -94.6537 -3.03397 3.03397 0.99 0.000193851 0.00015901 0.0172043 0.0142073 38 2475 49 6.99608e+06 161872 678818. 2348.85 4.68 0.145462 0.126895 26626 170182 -1 1854 20 1205 1496 128577 28387 0 0 128577 28387 1496 1400 0 0 4873 4269 0 0 7431 5357 0 0 1496 1422 0 0 54085 8452 0 0 59196 7487 0 0 1496 0 0 291 287 312 2996 0 0 3.71161 3.71161 -126.961 -3.71161 0 0 902133. 3121.57 0.37 0.05 0.15 -1 -1 0.37 0.0139826 0.0124967 69 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 8.56 vpr 53.09 MiB -1 -1 0.16 16944 1 0.01 -1 -1 29592 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54368 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 14.6 MiB 0.61 491 53.1 MiB 0.06 0.00 2.78823 -83.0214 -2.78823 2.78823 1.02 0.000183386 0.000147514 0.0124401 0.0101844 44 1835 49 6.99608e+06 191304 787024. 2723.27 4.53 0.120175 0.10389 27778 195446 -1 1229 19 1022 1562 93459 24288 0 0 93459 24288 1562 1205 0 0 5057 4516 0 0 8861 6119 0 0 1562 1250 0 0 38414 5197 0 0 38003 6001 0 0 1562 0 0 540 568 370 4314 0 0 2.98662 2.98662 -102.237 -2.98662 0 0 997811. 3452.63 0.38 0.04 0.18 -1 -1 0.38 0.0115184 0.0103249 56 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 18.51 vpr 53.68 MiB -1 -1 0.17 17536 1 0.01 -1 -1 29764 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54972 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 15.1 MiB 0.68 901 53.7 MiB 0.05 0.00 3.70481 -122.064 -3.70481 3.70481 0.73 0.000124499 0.000100214 0.0113229 0.00933001 42 3145 50 6.99608e+06 220735 744469. 2576.02 14.64 0.175405 0.152033 27202 183097 -1 2360 22 1926 2520 252155 51858 0 0 252155 51858 2520 2233 0 0 8075 7129 0 0 14937 9617 0 0 2520 2313 0 0 114041 14697 0 0 110062 15869 0 0 2520 0 0 594 523 600 5425 0 0 4.53895 4.53895 -154.258 -4.53895 0 0 949917. 3286.91 0.39 0.09 0.16 -1 -1 0.39 0.0202999 0.0182636 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.94 vpr 53.86 MiB -1 -1 0.17 17280 1 0.01 -1 -1 29700 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55156 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 15.2 MiB 1.50 977 53.9 MiB 0.06 0.00 3.63687 -112.427 -3.63687 3.63687 0.66 0.000126526 9.8359e-05 0.0120268 0.00976247 46 2733 24 6.99608e+06 220735 828058. 2865.25 3.97 0.101949 0.0881242 28066 200906 -1 2023 22 1679 2329 146614 35742 0 0 146614 35742 2329 2013 0 0 7178 6303 0 0 11646 7866 0 0 2329 2075 0 0 58760 9828 0 0 64372 7657 0 0 2329 0 0 650 601 732 6072 0 0 4.28925 4.28925 -143.302 -4.28925 0 0 1.01997e+06 3529.29 0.25 0.04 0.11 -1 -1 0.25 0.0110613 0.00996364 95 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 23.37 vpr 53.81 MiB -1 -1 0.17 17164 1 0.02 -1 -1 29740 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55104 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 15.3 MiB 0.51 891 53.8 MiB 0.10 0.00 3.76881 -112.186 -3.76881 3.76881 0.97 0.000240391 0.000196042 0.0236189 0.0194901 44 3121 49 6.99608e+06 250167 787024. 2723.27 19.53 0.234377 0.205109 27778 195446 -1 1990 19 1517 2531 177963 41261 0 0 177963 41261 2531 1996 0 0 7894 6856 0 0 13258 9046 0 0 2531 2110 0 0 72418 10729 0 0 79331 10524 0 0 2531 0 0 1014 1117 1132 8954 0 0 4.02335 4.02335 -138.533 -4.02335 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0202654 0.0182787 83 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 14.99 vpr 53.83 MiB -1 -1 0.17 17272 1 0.02 -1 -1 29840 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55120 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 15.3 MiB 1.36 875 53.8 MiB 0.08 0.00 3.06347 -88.1464 -3.06347 3.06347 1.02 0.000206014 0.000165699 0.0183015 0.0151117 38 2817 32 6.99608e+06 235451 678818. 2348.85 10.17 0.166193 0.14415 26626 170182 -1 2190 23 1826 2622 218393 47076 0 0 218393 47076 2622 2152 0 0 8207 7216 0 0 13288 8988 0 0 2622 2295 0 0 97751 12738 0 0 93903 13687 0 0 2622 0 0 796 884 770 7030 0 0 3.31366 3.31366 -116.638 -3.31366 0 0 902133. 3121.57 0.36 0.08 0.16 -1 -1 0.36 0.019738 0.0177882 86 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 8.71 vpr 53.32 MiB -1 -1 0.14 17080 1 0.02 -1 -1 29740 -1 -1 15 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54604 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 14.7 MiB 1.24 514 53.3 MiB 0.06 0.00 2.96122 -84.2305 -2.96122 2.96122 1.03 0.000184414 0.000150532 0.0133594 0.0111298 38 1686 46 6.99608e+06 220735 678818. 2348.85 4.08 0.0948021 0.0824063 26626 170182 -1 1126 18 892 1272 81249 21695 0 0 81249 21695 1272 1030 0 0 4191 3626 0 0 6144 4595 0 0 1272 1053 0 0 35435 5184 0 0 32935 6207 0 0 1272 0 0 380 396 296 3266 0 0 3.57972 3.57972 -108.609 -3.57972 0 0 902133. 3121.57 0.36 0.04 0.16 -1 -1 0.36 0.0121377 0.0109076 66 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 10.93 vpr 54.21 MiB -1 -1 0.10 17536 1 0.02 -1 -1 29844 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55516 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 15.8 MiB 1.04 1143 54.2 MiB 0.12 0.00 3.54614 -117.741 -3.54614 3.54614 0.98 0.000270645 0.000220197 0.0275702 0.0227107 46 4101 46 6.99608e+06 264882 828058. 2865.25 6.39 0.163064 0.143032 28066 200906 -1 2767 22 2290 3454 242197 54591 0 0 242197 54591 3454 2837 0 0 10341 9236 0 0 17168 11235 0 0 3454 3043 0 0 104494 13786 0 0 103286 14454 0 0 3454 0 0 1164 1376 1307 10219 0 0 4.90815 4.90815 -157.921 -4.90815 0 0 1.01997e+06 3529.29 0.41 0.09 0.19 -1 -1 0.41 0.0245335 0.0221309 111 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 9.38 vpr 53.86 MiB -1 -1 0.18 17788 1 0.01 -1 -1 29804 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 15.4 MiB 2.35 1060 53.9 MiB 0.08 0.00 4.22373 -123.342 -4.22373 4.22373 0.59 0.000222008 0.000178276 0.017335 0.0142935 44 3319 44 6.99608e+06 250167 787024. 2723.27 3.89 0.0994308 0.084452 27778 195446 -1 2255 22 2103 2974 258951 55188 0 0 258951 55188 2974 2702 0 0 9245 8026 0 0 16428 10651 0 0 2974 2820 0 0 118393 15291 0 0 108937 15698 0 0 2974 0 0 871 1217 1102 8496 0 0 5.02875 5.02875 -160.335 -5.02875 0 0 997811. 3452.63 0.42 0.09 0.19 -1 -1 0.42 0.021853 0.0197798 100 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 5.15 vpr 53.80 MiB -1 -1 0.16 17344 1 0.01 -1 -1 29732 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55088 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 15.3 MiB 0.81 891 53.8 MiB 0.05 0.00 3.46994 -123.233 -3.46994 3.46994 0.58 0.000113209 9.005e-05 0.0112052 0.00913443 44 2752 44 6.99608e+06 206020 787024. 2723.27 1.78 0.0754385 0.0651589 27778 195446 -1 2008 20 1476 1821 133822 30218 0 0 133822 30218 1821 1632 0 0 5893 5202 0 0 9438 6708 0 0 1821 1666 0 0 54934 7961 0 0 59915 7049 0 0 1821 0 0 345 231 270 3357 0 0 3.75925 3.75925 -142.506 -3.75925 0 0 997811. 3452.63 0.38 0.05 0.18 -1 -1 0.38 0.015162 0.0136048 91 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 17.89 vpr 53.70 MiB -1 -1 0.17 17560 1 0.01 -1 -1 29652 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 15.2 MiB 0.82 903 53.7 MiB 0.08 0.00 3.34348 -105.474 -3.34348 3.34348 0.96 0.000214242 0.000172707 0.0168808 0.0138989 38 3296 42 6.99608e+06 220735 678818. 2348.85 14.00 0.180956 0.157102 26626 170182 -1 2143 19 1391 1881 161934 34811 0 0 161934 34811 1881 1650 0 0 5831 5016 0 0 9033 6254 0 0 1881 1679 0 0 72868 9651 0 0 70440 10561 0 0 1881 0 0 490 528 449 4602 0 0 3.95806 3.95806 -130.79 -3.95806 0 0 902133. 3121.57 0.26 0.04 0.09 -1 -1 0.26 0.00931162 0.00840215 81 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.13 vpr 53.86 MiB -1 -1 0.18 17500 1 0.02 -1 -1 29736 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 15.4 MiB 1.75 938 53.9 MiB 0.05 0.00 3.32588 -101.51 -3.32588 3.32588 0.85 0.000144252 0.000117191 0.010848 0.0090125 44 3018 33 6.99608e+06 250167 787024. 2723.27 3.04 0.110477 0.0959249 27778 195446 -1 2029 24 2043 2961 221987 50511 0 0 221987 50511 2961 2339 0 0 9553 8266 0 0 15844 11111 0 0 2961 2483 0 0 95127 13125 0 0 95541 13187 0 0 2961 0 0 918 1230 1256 9177 0 0 3.89111 3.89111 -126.339 -3.89111 0 0 997811. 3452.63 0.41 0.08 0.16 -1 -1 0.41 0.0223914 0.0200661 97 46 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.91 vpr 53.79 MiB -1 -1 0.17 17280 1 0.01 -1 -1 29688 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55080 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 15.3 MiB 1.96 873 53.8 MiB 0.08 0.00 3.01479 -92.6038 -3.01479 3.01479 1.02 0.000224935 0.000183683 0.0186106 0.015498 48 2413 26 6.99608e+06 250167 865456. 2994.66 5.29 0.139537 0.121103 28354 207349 -1 1949 19 1497 2234 194271 44634 0 0 194271 44634 2234 1845 0 0 7766 6751 0 0 13438 9362 0 0 2234 2045 0 0 81893 12189 0 0 86706 12442 0 0 2234 0 0 737 839 885 6731 0 0 3.15966 3.15966 -112.821 -3.15966 0 0 1.05005e+06 3633.38 0.44 0.07 0.19 -1 -1 0.44 0.0162876 0.0145879 88 46 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 11.05 vpr 53.86 MiB -1 -1 0.17 17504 1 0.02 -1 -1 29624 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55152 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 15.2 MiB 1.05 961 53.9 MiB 0.07 0.00 3.64008 -117.108 -3.64008 3.64008 1.05 0.000227639 0.000182562 0.0164174 0.0135386 46 3423 35 6.99608e+06 206020 828058. 2865.25 6.35 0.162339 0.140728 28066 200906 -1 2429 37 2647 3955 319044 69519 0 0 319044 69519 3955 3584 0 0 11019 9882 0 0 21736 12255 0 0 3955 3751 0 0 135560 19375 0 0 142819 20672 0 0 3955 0 0 1308 1387 1341 10629 0 0 4.13101 4.13101 -147.788 -4.13101 0 0 1.01997e+06 3529.29 0.41 0.11 0.19 -1 -1 0.41 0.025929 0.0228742 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 9.59 vpr 54.03 MiB -1 -1 0.17 17492 1 0.02 -1 -1 29684 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55328 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 15.5 MiB 3.18 944 54.0 MiB 0.08 0.00 2.94423 -100.616 -2.94423 2.94423 1.01 0.000249847 0.000201053 0.0201044 0.0165608 46 3045 41 6.99608e+06 235451 828058. 2865.25 2.90 0.117953 0.102639 28066 200906 -1 2032 25 1997 2776 217651 63367 0 0 217651 63367 2776 2306 0 0 8398 7393 0 0 14237 9259 0 0 2776 2432 0 0 90462 21826 0 0 99002 20151 0 0 2776 0 0 779 965 987 7379 0 0 3.54046 3.54046 -128.383 -3.54046 0 0 1.01997e+06 3529.29 0.39 0.08 0.17 -1 -1 0.39 0.0226553 0.020277 103 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.49 vpr 53.38 MiB -1 -1 0.12 17644 1 0.02 -1 -1 29808 -1 -1 14 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 14.9 MiB 1.64 641 53.4 MiB 0.05 0.00 3.37515 -97.7741 -3.37515 3.37515 0.96 0.000178484 0.000143831 0.0122612 0.0101538 38 1922 28 6.99608e+06 206020 678818. 2348.85 2.60 0.100179 0.0883742 26626 170182 -1 1462 20 1197 1595 118074 26336 0 0 118074 26336 1595 1397 0 0 4953 4258 0 0 7572 5251 0 0 1595 1439 0 0 48806 7348 0 0 53553 6643 0 0 1595 0 0 398 516 439 3864 0 0 3.46986 3.46986 -117.76 -3.46986 0 0 902133. 3121.57 0.36 0.05 0.16 -1 -1 0.36 0.0130345 0.0115842 70 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.77 vpr 53.67 MiB -1 -1 0.17 17568 1 0.01 -1 -1 29676 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54956 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 15.0 MiB 2.44 810 53.7 MiB 0.05 0.00 3.25478 -109.359 -3.25478 3.25478 0.77 0.000127206 0.000101025 0.0106931 0.00874561 38 2745 49 6.99608e+06 206020 678818. 2348.85 2.13 0.0829653 0.071926 26626 170182 -1 1972 21 1597 2191 168561 37055 0 0 168561 37055 2191 1912 0 0 6801 5986 0 0 10718 7409 0 0 2191 2058 0 0 74134 9763 0 0 72526 9927 0 0 2191 0 0 594 466 592 5031 0 0 3.78725 3.78725 -134.851 -3.78725 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0161056 0.0144437 79 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 11.88 vpr 53.56 MiB -1 -1 0.14 17584 1 0.02 -1 -1 29764 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54844 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 15.1 MiB 0.92 844 53.6 MiB 0.05 0.00 3.32768 -101.882 -3.32768 3.32768 0.81 0.000127321 0.000103646 0.00991939 0.00825249 46 2139 22 6.99608e+06 220735 828058. 2865.25 8.05 0.10793 0.0927664 28066 200906 -1 1628 20 1286 2007 129147 30616 0 0 129147 30616 2007 1473 0 0 6117 5344 0 0 10551 6762 0 0 2007 1642 0 0 52889 8160 0 0 55576 7235 0 0 2007 0 0 721 807 862 6615 0 0 3.52721 3.52721 -121.332 -3.52721 0 0 1.01997e+06 3529.29 0.39 0.05 0.19 -1 -1 0.39 0.0158062 0.0142207 80 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.84 vpr 53.43 MiB -1 -1 0.16 17500 1 0.01 -1 -1 29776 -1 -1 13 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54708 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 15.0 MiB 1.12 643 53.4 MiB 0.04 0.00 3.14827 -89.4705 -3.14827 3.14827 0.60 9.5449e-05 7.5932e-05 0.00778772 0.00638382 42 2107 23 6.99608e+06 191304 744469. 2576.02 3.36 0.0760494 0.0643011 27202 183097 -1 1506 22 1280 1629 124875 28131 0 0 124875 28131 1629 1457 0 0 5431 4729 0 0 9392 6409 0 0 1629 1488 0 0 56334 6400 0 0 50460 7648 0 0 1629 0 0 349 284 269 3265 0 0 3.16821 3.16821 -104.477 -3.16821 0 0 949917. 3286.91 0.25 0.04 0.14 -1 -1 0.25 0.00947265 0.00848664 68 25 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.17 vpr 53.52 MiB -1 -1 0.10 17564 1 0.02 -1 -1 29644 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 15.0 MiB 0.95 763 53.5 MiB 0.05 0.00 3.53345 -108.361 -3.53345 3.53345 0.60 0.000103476 8.3254e-05 0.00948733 0.00779711 38 2314 30 6.99608e+06 176588 678818. 2348.85 1.92 0.0495428 0.0422119 26626 170182 -1 1791 18 1385 1859 151728 31530 0 0 151728 31530 1859 1570 0 0 5618 4873 0 0 8851 5895 0 0 1859 1669 0 0 66654 9021 0 0 66887 8502 0 0 1859 0 0 474 555 545 4417 0 0 3.36257 3.36257 -123.643 -3.36257 0 0 902133. 3121.57 0.22 0.03 0.09 -1 -1 0.22 0.0077514 0.0069734 73 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 11.45 vpr 54.00 MiB -1 -1 0.11 17348 1 0.01 -1 -1 29868 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55292 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 15.5 MiB 1.16 1203 54.0 MiB 0.05 0.00 3.61381 -124.262 -3.61381 3.61381 0.61 0.000136911 0.000110969 0.0107331 0.00901779 38 3037 34 6.99608e+06 250167 678818. 2348.85 7.73 0.0995674 0.0849566 26626 170182 -1 2581 22 2017 2693 216042 43980 0 0 216042 43980 2693 2365 0 0 8172 7169 0 0 13048 8810 0 0 2693 2440 0 0 94766 11755 0 0 94670 11441 0 0 2693 0 0 676 772 718 6441 0 0 4.29945 4.29945 -155.884 -4.29945 0 0 902133. 3121.57 0.22 0.05 0.09 -1 -1 0.22 0.0112107 0.0100284 101 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.52 vpr 53.32 MiB -1 -1 0.12 17352 1 0.01 -1 -1 29800 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 14.8 MiB 0.64 883 53.3 MiB 0.08 0.00 2.97897 -98.1156 -2.97897 2.97897 0.78 0.000176748 0.000142167 0.0165212 0.0136411 46 2159 25 6.99608e+06 191304 828058. 2865.25 3.17 0.0838233 0.0715687 28066 200906 -1 1848 20 1043 1485 116733 24263 0 0 116733 24263 1485 1287 0 0 4717 4108 0 0 7476 5164 0 0 1485 1336 0 0 50583 6501 0 0 50987 5867 0 0 1485 0 0 442 188 397 3396 0 0 2.99891 2.99891 -112.909 -2.99891 0 0 1.01997e+06 3529.29 0.38 0.05 0.18 -1 -1 0.38 0.0126377 0.0112892 71 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.69 vpr 53.80 MiB -1 -1 0.17 17488 1 0.01 -1 -1 29648 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55096 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 15.2 MiB 1.36 1032 53.8 MiB 0.09 0.00 2.87229 -97.048 -2.87229 2.87229 0.98 0.000242307 0.000197236 0.0195853 0.0161824 38 2645 24 6.99608e+06 220735 678818. 2348.85 3.88 0.10504 0.0889725 26626 170182 -1 2170 18 1388 1888 136946 28942 0 0 136946 28942 1888 1633 0 0 5949 5145 0 0 8700 6298 0 0 1888 1676 0 0 59235 7402 0 0 59286 6788 0 0 1888 0 0 500 677 437 5116 0 0 3.36186 3.36186 -123.04 -3.36186 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0159169 0.0142627 91 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 14.94 vpr 54.12 MiB -1 -1 0.17 17836 1 0.01 -1 -1 29760 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55416 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 15.5 MiB 3.34 1070 54.1 MiB 0.08 0.00 3.79017 -128.672 -3.79017 3.79017 0.96 0.000268396 0.000215815 0.018369 0.0150945 58 2754 27 6.99608e+06 294314 997811. 3452.63 7.94 0.18248 0.157556 30370 251734 -1 2326 22 2090 2930 245323 52975 0 0 245323 52975 2930 2507 0 0 9470 8224 0 0 16672 11173 0 0 2930 2618 0 0 98931 15137 0 0 114390 13316 0 0 2930 0 0 840 892 847 7579 0 0 4.78094 4.78094 -157.357 -4.78094 0 0 1.25153e+06 4330.55 0.47 0.08 0.24 -1 -1 0.47 0.0191233 0.0170229 113 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 17.95 vpr 53.62 MiB -1 -1 0.16 17684 1 0.01 -1 -1 29704 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54904 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 15.0 MiB 2.37 783 53.6 MiB 0.07 0.00 2.79904 -94.1176 -2.79904 2.79904 1.02 0.000216399 0.000176595 0.0164797 0.0136482 42 2630 45 6.99608e+06 176588 744469. 2576.02 12.16 0.138983 0.119767 27202 183097 -1 1864 23 1534 2067 193554 41792 0 0 193554 41792 2067 1772 0 0 6879 6034 0 0 12391 8376 0 0 2067 1826 0 0 82457 12075 0 0 87693 11709 0 0 2067 0 0 533 575 539 4884 0 0 3.37781 3.37781 -119.649 -3.37781 0 0 949917. 3286.91 0.35 0.07 0.17 -1 -1 0.35 0.0164553 0.014725 80 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 7.55 vpr 53.44 MiB -1 -1 0.15 17532 1 0.02 -1 -1 29824 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 14.9 MiB 0.90 753 53.4 MiB 0.07 0.00 3.26242 -104.65 -3.26242 3.26242 1.03 0.000208116 0.000168826 0.0154402 0.0127287 40 2539 29 6.99608e+06 161872 706193. 2443.58 3.15 0.101632 0.0890806 26914 176310 -1 1939 21 1449 2123 193622 42066 0 0 193622 42066 2123 1900 0 0 6770 6023 0 0 12726 7942 0 0 2123 1917 0 0 82607 12501 0 0 87273 11783 0 0 2123 0 0 674 752 682 5579 0 0 3.70146 3.70146 -130.424 -3.70146 0 0 926341. 3205.33 0.38 0.08 0.15 -1 -1 0.38 0.0175761 0.0159127 72 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 6.83 vpr 53.54 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29744 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54820 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 15.1 MiB 1.70 789 53.5 MiB 0.05 0.00 3.29468 -101.987 -3.29468 3.29468 0.87 0.000129611 0.000104507 0.0121248 0.00997567 44 2346 24 6.99608e+06 206020 787024. 2723.27 1.74 0.0637381 0.0551284 27778 195446 -1 1747 23 1738 2423 152829 36802 0 0 152829 36802 2423 2007 0 0 7527 6690 0 0 13330 8720 0 0 2423 2085 0 0 63912 8787 0 0 63214 8513 0 0 2423 0 0 685 508 705 5813 0 0 3.64952 3.64952 -125.848 -3.64952 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0188978 0.016985 79 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 10.14 vpr 53.70 MiB -1 -1 0.16 17508 1 0.02 -1 -1 29824 -1 -1 18 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54988 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 15.2 MiB 1.77 872 53.7 MiB 0.07 0.00 2.89747 -87.5406 -2.89747 2.89747 0.95 0.0002115 0.000166579 0.0159477 0.0132164 44 2291 44 6.99608e+06 264882 787024. 2723.27 5.02 0.134145 0.1155 27778 195446 -1 1861 19 1369 2031 151066 34376 0 0 151066 34376 2031 1659 0 0 6438 5634 0 0 11374 7393 0 0 2031 1758 0 0 63101 8835 0 0 66091 9097 0 0 2031 0 0 662 820 952 6777 0 0 3.26306 3.26306 -106.55 -3.26306 0 0 997811. 3452.63 0.41 0.06 0.17 -1 -1 0.41 0.0158928 0.0143004 88 49 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 11.65 vpr 53.88 MiB -1 -1 0.16 17716 1 0.01 -1 -1 29792 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55172 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 15.3 MiB 1.76 995 53.9 MiB 0.04 0.00 4.60269 -144.768 -4.60269 4.60269 0.82 0.000139574 0.000112935 0.00890522 0.00746217 40 3839 40 6.99608e+06 250167 706193. 2443.58 6.69 0.0892057 0.0779399 26914 176310 -1 3072 23 2560 3897 461186 103281 0 0 461186 103281 3897 3366 0 0 12160 10787 0 0 23526 14373 0 0 3897 3479 0 0 205886 36284 0 0 211820 34992 0 0 3897 0 0 1337 1627 1746 12065 0 0 5.34414 5.34414 -178.538 -5.34414 0 0 926341. 3205.33 0.32 0.10 0.17 -1 -1 0.32 0.0146791 0.0131106 105 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.38 vpr 53.15 MiB -1 -1 0.11 16904 1 0.01 -1 -1 29544 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54424 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 14.7 MiB 1.09 565 53.1 MiB 0.05 0.00 2.70223 -73.7785 -2.70223 2.70223 1.03 0.000179746 0.000145235 0.0111764 0.0093884 36 2111 23 6.99608e+06 191304 648988. 2245.63 2.01 0.0581137 0.0505182 26050 158493 -1 1546 18 996 1545 130365 29123 0 0 130365 29123 1545 1261 0 0 5073 4451 0 0 8391 5644 0 0 1545 1332 0 0 56182 8243 0 0 57629 8192 0 0 1545 0 0 549 528 533 4425 0 0 3.01197 3.01197 -101.358 -3.01197 0 0 828058. 2865.25 0.32 0.05 0.13 -1 -1 0.32 0.012302 0.0111633 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.27 vpr 54.20 MiB -1 -1 0.16 17616 1 0.01 -1 -1 29740 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55496 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 15.8 MiB 2.56 1287 54.2 MiB 0.05 0.00 3.87123 -135.445 -3.87123 3.87123 0.60 0.000135305 0.000107702 0.0114861 0.00942574 44 3578 33 6.99608e+06 294314 787024. 2723.27 2.07 0.0913056 0.0791251 27778 195446 -1 2723 21 2322 2921 229396 48331 0 0 229396 48331 2921 2534 0 0 9260 8158 0 0 15478 10563 0 0 2921 2769 0 0 102006 11557 0 0 96810 12750 0 0 2921 0 0 599 565 509 6104 0 0 4.8308 4.8308 -177.707 -4.8308 0 0 997811. 3452.63 0.38 0.08 0.18 -1 -1 0.38 0.0206877 0.0186171 116 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 11.20 vpr 54.21 MiB -1 -1 0.12 17560 1 0.00 -1 -1 29744 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55516 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 15.5 MiB 0.97 1263 54.2 MiB 0.08 0.00 3.58352 -133.165 -3.58352 3.58352 0.95 0.000212995 0.000169433 0.0190147 0.015501 38 3681 47 6.99608e+06 235451 678818. 2348.85 6.90 0.139475 0.122188 26626 170182 -1 3032 23 2943 3708 419514 78155 0 0 419514 78155 3708 3290 0 0 11180 10059 0 0 19343 12235 0 0 3708 3352 0 0 200322 22877 0 0 181253 26342 0 0 3708 0 0 765 844 889 7836 0 0 4.7256 4.7256 -178.909 -4.7256 0 0 902133. 3121.57 0.31 0.11 0.16 -1 -1 0.31 0.0196292 0.017614 110 93 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 6.64 vpr 53.90 MiB -1 -1 0.10 17352 1 0.02 -1 -1 29700 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 15.3 MiB 1.71 1092 53.9 MiB 0.08 0.00 3.03377 -103.431 -3.03377 3.03377 0.99 0.000252387 0.000206626 0.0183718 0.0153277 38 2984 32 6.99608e+06 220735 678818. 2348.85 1.65 0.0625735 0.0534266 26626 170182 -1 2399 19 1645 2240 193139 39676 0 0 193139 39676 2240 1897 0 0 7053 6224 0 0 11557 7625 0 0 2240 1955 0 0 83387 11564 0 0 86662 10411 0 0 2240 0 0 595 875 860 6480 0 0 3.21021 3.21021 -120.917 -3.21021 0 0 902133. 3121.57 0.30 0.05 0.16 -1 -1 0.30 0.0110743 0.00994762 94 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.64 vpr 53.95 MiB -1 -1 0.18 17604 1 0.02 -1 -1 29868 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 15.4 MiB 0.80 1058 54.0 MiB 0.06 0.00 4.66142 -135.651 -4.66142 4.66142 0.59 0.000137413 0.000109897 0.0134109 0.0110167 48 3106 23 6.99608e+06 220735 865456. 2994.66 6.10 0.158337 0.138908 28354 207349 -1 2386 22 2083 3096 246017 53092 0 0 246017 53092 3096 2491 0 0 10045 8899 0 0 17911 11799 0 0 3096 2559 0 0 102084 14186 0 0 109785 13158 0 0 3096 0 0 1013 1084 1133 8888 0 0 4.96951 4.96951 -164.794 -4.96951 0 0 1.05005e+06 3633.38 0.42 0.09 0.19 -1 -1 0.42 0.0221467 0.0199241 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 8.44 vpr 53.21 MiB -1 -1 0.14 17184 1 0.01 -1 -1 29760 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54488 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 14.7 MiB 0.84 496 53.2 MiB 0.05 0.00 2.28455 -79.4386 -2.28455 2.28455 1.01 0.000154968 0.000124372 0.0109762 0.00896617 38 1551 23 6.99608e+06 176588 678818. 2348.85 4.29 0.0952536 0.0812282 26626 170182 -1 1206 19 732 924 75032 16666 0 0 75032 16666 924 814 0 0 3045 2665 0 0 4554 3223 0 0 924 838 0 0 34586 4258 0 0 30999 4868 0 0 924 0 0 192 163 147 1810 0 0 2.31212 2.31212 -91.2109 -2.31212 0 0 902133. 3121.57 0.34 0.04 0.15 -1 -1 0.34 0.0109489 0.00985288 53 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.63 vpr 53.29 MiB -1 -1 0.13 17484 1 0.02 -1 -1 29724 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54564 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 14.8 MiB 4.07 925 53.3 MiB 0.06 0.00 3.15062 -102.03 -3.15062 3.15062 1.02 0.000180792 0.00014699 0.0134859 0.0110809 36 2263 39 6.99608e+06 206020 648988. 2245.63 2.31 0.0973632 0.0852373 26050 158493 -1 1905 21 1346 2020 285932 88591 0 0 285932 88591 2020 1795 0 0 6285 5514 0 0 11562 7338 0 0 2020 1827 0 0 134660 35566 0 0 129385 36551 0 0 2020 0 0 674 955 971 6428 0 0 3.42976 3.42976 -130.802 -3.42976 0 0 828058. 2865.25 0.24 0.11 0.13 -1 -1 0.24 0.0187209 0.0168434 68 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 7.50 vpr 53.60 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29752 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54888 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 15.0 MiB 0.67 772 53.6 MiB 0.04 0.00 3.05994 -98.0945 -3.05994 3.05994 0.84 0.000114976 9.2352e-05 0.00809051 0.00670091 42 2968 50 6.99608e+06 250167 744469. 2576.02 3.75 0.0966194 0.0833009 27202 183097 -1 2025 23 1554 2429 243793 51435 0 0 243793 51435 2429 1966 0 0 7866 6899 0 0 14556 9284 0 0 2429 2087 0 0 109473 15205 0 0 107040 15994 0 0 2429 0 0 875 870 825 7259 0 0 3.41511 3.41511 -128.462 -3.41511 0 0 949917. 3286.91 0.34 0.08 0.11 -1 -1 0.34 0.0155148 0.0136854 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.02 vpr 53.14 MiB -1 -1 0.10 17220 1 0.02 -1 -1 29832 -1 -1 16 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 14.7 MiB 1.21 554 53.1 MiB 0.05 0.00 2.74423 -65.6094 -2.74423 2.74423 0.96 0.00014417 0.000116608 0.011914 0.00986287 34 1923 48 6.99608e+06 235451 618332. 2139.56 1.94 0.0616646 0.0530187 25762 151098 -1 1392 20 960 1283 101347 23236 0 0 101347 23236 1283 1080 0 0 4446 3810 0 0 7529 5191 0 0 1283 1114 0 0 42991 6055 0 0 43815 5986 0 0 1283 0 0 323 318 401 3187 0 0 3.10727 3.10727 -88.1395 -3.10727 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00628538 0.00560269 59 19 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 9.57 vpr 53.79 MiB -1 -1 0.14 17348 1 0.01 -1 -1 29680 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55084 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 15.3 MiB 3.52 1227 53.8 MiB 0.09 0.00 3.25282 -113.242 -3.25282 3.25282 1.04 0.000258028 0.000210213 0.0207164 0.0171365 44 3286 24 6.99608e+06 250167 787024. 2723.27 2.52 0.0975579 0.0847623 27778 195446 -1 2650 20 1952 2884 233322 47059 0 0 233322 47059 2884 2437 0 0 8991 7851 0 0 14637 10115 0 0 2884 2591 0 0 106997 11350 0 0 96929 12715 0 0 2884 0 0 932 858 983 7763 0 0 3.52302 3.52302 -134.326 -3.52302 0 0 997811. 3452.63 0.40 0.06 0.19 -1 -1 0.40 0.0135578 0.0122692 103 69 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 25.18 vpr 54.39 MiB -1 -1 0.17 17672 1 0.02 -1 -1 29800 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55696 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 15.7 MiB 3.02 1233 54.4 MiB 0.11 0.00 3.62001 -123.826 -3.62001 3.62001 1.04 0.000278402 0.000227357 0.023887 0.0196013 38 3545 42 6.99608e+06 279598 678818. 2348.85 18.54 0.238774 0.208876 26626 170182 -1 2845 24 2591 3434 312166 62890 0 0 312166 62890 3434 3021 0 0 10685 9397 0 0 17973 11933 0 0 3434 3130 0 0 136506 18578 0 0 140134 16831 0 0 3434 0 0 843 689 769 7733 0 0 4.33065 4.33065 -158.569 -4.33065 0 0 902133. 3121.57 0.36 0.10 0.16 -1 -1 0.36 0.0245071 0.0220608 117 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 10.47 vpr 53.43 MiB -1 -1 0.22 17428 14 0.25 -1 -1 32284 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54708 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 14.9 MiB 2.08 1237 53.4 MiB 0.07 0.00 7.10026 -148.534 -7.10026 7.10026 1.09 0.000331223 0.000272055 0.0201571 0.0169148 38 3280 21 6.79088e+06 255968 678818. 2348.85 4.50 0.165448 0.147493 25966 169698 -1 2687 16 1295 3612 203409 45472 0 0 203409 45472 3612 1757 0 0 11151 9628 0 0 17579 12124 0 0 3612 2155 0 0 84244 10016 0 0 83211 9792 0 0 3612 0 0 2317 3528 3122 24645 0 0 7.72675 7.72675 -166.656 -7.72675 0 0 902133. 3121.57 0.36 0.08 0.15 -1 -1 0.36 0.024502 0.0224715 130 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 8.59 vpr 53.55 MiB -1 -1 0.22 17704 14 0.25 -1 -1 32300 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 15.0 MiB 2.41 1058 53.5 MiB 0.06 0.00 6.62009 -132.696 -6.62009 6.62009 0.96 0.000314394 0.000255387 0.0184917 0.015449 34 3041 22 6.79088e+06 255968 618332. 2139.56 2.59 0.11026 0.0971974 25102 150614 -1 2605 20 1511 4010 230345 52972 0 0 230345 52972 4010 2330 0 0 12808 10904 0 0 22167 14948 0 0 4010 2703 0 0 93526 10947 0 0 93824 11140 0 0 4010 0 0 2499 4155 4417 28179 0 0 6.9456 6.9456 -155.395 -6.9456 0 0 787024. 2723.27 0.33 0.06 0.13 -1 -1 0.33 0.0200108 0.0184485 125 181 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 18.78 vpr 53.50 MiB -1 -1 0.20 17524 11 0.24 -1 -1 32136 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 15.0 MiB 3.73 1246 53.5 MiB 0.05 0.00 5.60634 -125.864 -5.60634 5.60634 0.69 0.00020538 0.000164329 0.0128382 0.0105803 30 3741 40 6.79088e+06 255968 556674. 1926.21 12.12 0.151949 0.131986 24526 138013 -1 2965 20 1354 3950 224488 49591 0 0 224488 49591 3950 2154 0 0 12136 10295 0 0 18194 12961 0 0 3950 2458 0 0 93281 11009 0 0 92977 10714 0 0 3950 0 0 2596 5005 4469 31372 0 0 5.85694 5.85694 -146.625 -5.85694 0 0 706193. 2443.58 0.31 0.08 0.13 -1 -1 0.31 0.0261686 0.0238713 130 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 13.91 vpr 53.52 MiB -1 -1 0.22 17572 12 0.32 -1 -1 32184 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 15.0 MiB 1.43 1212 53.5 MiB 0.06 0.00 6.04387 -122.765 -6.04387 6.04387 1.02 0.000205551 0.000162693 0.0164901 0.0137455 34 3662 49 6.79088e+06 323328 618332. 2139.56 8.89 0.205391 0.180284 25102 150614 -1 2983 21 1599 4781 352585 74720 0 0 352585 74720 4781 2785 0 0 15503 13238 0 0 27635 18299 0 0 4781 3183 0 0 145038 19450 0 0 154847 17765 0 0 4781 0 0 3182 5557 5747 36459 0 0 6.24408 6.24408 -139.552 -6.24408 0 0 787024. 2723.27 0.21 0.07 0.08 -1 -1 0.21 0.0177533 0.0161198 136 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 13.17 vpr 53.76 MiB -1 -1 0.16 17592 13 0.37 -1 -1 32320 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 15.3 MiB 1.92 1416 53.8 MiB 0.06 0.00 6.66616 -146.72 -6.66616 6.66616 1.02 0.000196794 0.000152561 0.0153938 0.0128342 36 4213 46 6.79088e+06 296384 648988. 2245.63 7.42 0.152222 0.133559 25390 158009 -1 3393 17 1620 4228 289921 63664 0 0 289921 63664 4228 2486 0 0 14271 12143 0 0 23691 17054 0 0 4228 2793 0 0 122150 14553 0 0 121353 14635 0 0 4228 0 0 2608 3453 4231 26824 0 0 7.13591 7.13591 -170.232 -7.13591 0 0 828058. 2865.25 0.33 0.10 0.10 -1 -1 0.33 0.0300103 0.0276578 152 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 9.76 vpr 53.66 MiB -1 -1 0.22 17360 13 0.24 -1 -1 32260 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 15.1 MiB 2.10 1211 53.7 MiB 0.10 0.00 6.15798 -129.643 -6.15798 6.15798 0.97 0.000343789 0.000281393 0.0285771 0.0235974 36 3786 39 6.79088e+06 255968 648988. 2245.63 4.08 0.164317 0.144722 25390 158009 -1 3035 21 1654 5054 309892 69378 0 0 309892 69378 5054 2731 0 0 15922 13909 0 0 27902 18717 0 0 5054 3198 0 0 125978 15950 0 0 129982 14873 0 0 5054 0 0 3400 6210 6457 42889 0 0 6.79218 6.79218 -154.332 -6.79218 0 0 828058. 2865.25 0.21 0.08 0.10 -1 -1 0.21 0.0198201 0.0180003 137 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 6.91 vpr 53.15 MiB -1 -1 0.17 17356 12 0.24 -1 -1 32140 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54424 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 14.7 MiB 1.81 725 53.1 MiB 0.08 0.00 5.74632 -98.4824 -5.74632 5.74632 1.02 0.000261329 0.000212461 0.0185694 0.0155206 34 2491 46 6.79088e+06 282912 618332. 2139.56 1.66 0.0767919 0.0662225 25102 150614 -1 1869 20 1066 2384 138357 35389 0 0 138357 35389 2384 1440 0 0 8291 7062 0 0 13778 10036 0 0 2384 1641 0 0 53254 7753 0 0 58266 7457 0 0 2384 0 0 1318 1595 1664 11927 0 0 6.53383 6.53383 -126.083 -6.53383 0 0 787024. 2723.27 0.22 0.05 0.08 -1 -1 0.22 0.0180667 0.0163523 106 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 16.99 vpr 53.14 MiB -1 -1 0.20 17580 12 0.24 -1 -1 32184 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 14.7 MiB 3.37 1024 53.1 MiB 0.05 0.00 5.27734 -112.658 -5.27734 5.27734 0.62 0.000134987 0.000108227 0.0115196 0.00946053 36 3273 49 6.79088e+06 229024 648988. 2245.63 10.64 0.177995 0.156969 25390 158009 -1 2476 23 1309 3554 343060 122944 0 0 343060 122944 3554 2071 0 0 11342 9801 0 0 20107 13568 0 0 3554 2344 0 0 154801 48353 0 0 149702 46807 0 0 3554 0 0 2245 3966 4506 26937 0 0 5.43486 5.43486 -133.48 -5.43486 0 0 828058. 2865.25 0.33 0.13 0.14 -1 -1 0.33 0.0266034 0.0242417 106 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 9.18 vpr 53.14 MiB -1 -1 0.19 17356 12 0.23 -1 -1 32164 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 14.6 MiB 3.32 1137 53.1 MiB 0.06 0.00 5.57489 -120.87 -5.57489 5.57489 0.94 0.000166431 0.000133701 0.0139367 0.0114617 38 3094 20 6.79088e+06 269440 678818. 2348.85 2.44 0.0736399 0.0639694 25966 169698 -1 2539 16 1225 3079 169607 38198 0 0 169607 38198 3079 1721 0 0 9655 8313 0 0 15246 10569 0 0 3079 1918 0 0 69422 7758 0 0 69126 7919 0 0 3079 0 0 1854 2154 3116 18923 0 0 5.82549 5.82549 -136.818 -5.82549 0 0 902133. 3121.57 0.35 0.04 0.14 -1 -1 0.35 0.0110116 0.0101073 113 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 10.02 vpr 53.32 MiB -1 -1 0.20 17580 13 0.25 -1 -1 32012 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 14.8 MiB 1.94 1084 53.3 MiB 0.03 0.00 6.24757 -138.238 -6.24757 6.24757 0.59 0.00014953 0.000121077 0.0065229 0.00553259 36 3234 25 6.79088e+06 202080 648988. 2245.63 5.17 0.0967387 0.0857549 25390 158009 -1 2536 44 1209 3018 789579 437005 0 0 789579 437005 3018 1784 0 0 10044 8738 0 0 20547 13761 0 0 3018 2109 0 0 385870 213878 0 0 367082 196735 0 0 3018 0 0 1809 2586 2574 17527 0 0 6.96017 6.96017 -164.043 -6.96017 0 0 828058. 2865.25 0.28 0.31 0.09 -1 -1 0.28 0.0443896 0.0399877 106 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 6.62 vpr 52.89 MiB -1 -1 0.18 17436 12 0.24 -1 -1 31896 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54164 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 14.4 MiB 1.69 862 52.9 MiB 0.07 0.00 5.74288 -117.899 -5.74288 5.74288 0.97 0.000243169 0.000199034 0.0197842 0.0164291 30 2467 37 6.79088e+06 229024 556674. 1926.21 1.43 0.101056 0.0896485 24526 138013 -1 1996 16 913 2197 121369 28935 0 0 121369 28935 2197 1345 0 0 7125 6048 0 0 10429 7659 0 0 2197 1516 0 0 48436 6377 0 0 50985 5990 0 0 2197 0 0 1284 1844 2068 14155 0 0 6.33018 6.33018 -141.162 -6.33018 0 0 706193. 2443.58 0.30 0.05 0.13 -1 -1 0.30 0.0163091 0.0148295 96 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 7.05 vpr 52.95 MiB -1 -1 0.19 17272 12 0.19 -1 -1 32140 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54224 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 14.3 MiB 2.52 1009 53.0 MiB 0.04 0.00 5.05901 -123.851 -5.05901 5.05901 0.59 0.000136741 0.000109781 0.00888729 0.00736727 38 2826 17 6.79088e+06 229024 678818. 2348.85 1.95 0.0645602 0.0561088 25966 169698 -1 2326 15 987 2650 160707 35444 0 0 160707 35444 2650 1486 0 0 8336 7166 0 0 13054 9033 0 0 2650 1746 0 0 65499 8410 0 0 68518 7603 0 0 2650 0 0 1663 2410 2436 17281 0 0 5.27041 5.27041 -139.18 -5.27041 0 0 902133. 3121.57 0.26 0.06 0.09 -1 -1 0.26 0.0172761 0.0158421 101 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 10.78 vpr 53.54 MiB -1 -1 0.21 17452 13 0.35 -1 -1 32236 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 15.0 MiB 2.45 1286 53.5 MiB 0.07 0.00 6.64585 -137.945 -6.64585 6.64585 1.02 0.000350312 0.000289421 0.0196001 0.0166002 40 2867 25 6.79088e+06 269440 706193. 2443.58 4.38 0.188319 0.164502 26254 175826 -1 2737 19 1281 3391 196122 45196 0 0 196122 45196 3391 1848 0 0 11250 9538 0 0 19242 13200 0 0 3391 2139 0 0 78735 9351 0 0 80113 9120 0 0 3391 0 0 2110 3599 3404 24202 0 0 6.89645 6.89645 -155.433 -6.89645 0 0 926341. 3205.33 0.37 0.08 0.17 -1 -1 0.37 0.0289522 0.026517 134 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 13.02 vpr 53.62 MiB -1 -1 0.20 17504 14 0.29 -1 -1 32184 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 15.1 MiB 2.35 1352 53.6 MiB 0.09 0.00 7.43701 -154.463 -7.43701 7.43701 1.03 0.000328266 0.000267125 0.0255631 0.0213617 36 3958 46 6.79088e+06 296384 648988. 2245.63 6.79 0.189114 0.165682 25390 158009 -1 3055 16 1402 3572 200841 46731 0 0 200841 46731 3572 1997 0 0 11799 9943 0 0 18598 13448 0 0 3572 2306 0 0 81260 9531 0 0 82040 9506 0 0 3572 0 0 2170 3268 3662 24036 0 0 7.68761 7.68761 -176.655 -7.68761 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0264838 0.0243505 151 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 6.76 vpr 53.15 MiB -1 -1 0.19 17188 11 0.21 -1 -1 31992 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54424 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 14.7 MiB 2.65 881 53.1 MiB 0.05 0.00 5.52794 -107.849 -5.52794 5.52794 0.61 0.000140539 0.000114317 0.0129774 0.0107358 34 2825 33 6.79088e+06 282912 618332. 2139.56 1.64 0.0674079 0.0583116 25102 150614 -1 2307 20 1277 3161 197054 44884 0 0 197054 44884 3161 1973 0 0 10234 8601 0 0 17333 11866 0 0 3161 2234 0 0 80124 10543 0 0 83041 9667 0 0 3161 0 0 1884 3018 2864 18951 0 0 5.90384 5.90384 -131.103 -5.90384 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.0115942 0.0105037 106 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 10.86 vpr 53.79 MiB -1 -1 0.23 17868 12 0.37 -1 -1 32232 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55076 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 15.3 MiB 1.63 1364 53.8 MiB 0.09 0.00 5.82898 -132.025 -5.82898 5.82898 0.96 0.000336684 0.000276315 0.0247907 0.0207118 46 3335 26 6.79088e+06 323328 828058. 2865.25 5.86 0.226613 0.198621 27406 200422 -1 2665 18 1295 4140 193244 45210 0 0 193244 45210 4140 1733 0 0 12838 11261 0 0 20330 14130 0 0 4140 2175 0 0 74621 8189 0 0 77175 7722 0 0 4140 0 0 2845 3863 4158 32978 0 0 6.25527 6.25527 -150.615 -6.25527 0 0 1.01997e+06 3529.29 0.25 0.04 0.11 -1 -1 0.25 0.0151237 0.0138748 145 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 10.57 vpr 53.59 MiB -1 -1 0.17 17580 14 0.32 -1 -1 32236 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54880 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 14.9 MiB 2.77 1257 53.6 MiB 0.08 0.00 6.72425 -145.511 -6.72425 6.72425 0.96 0.000323246 0.000261305 0.0219241 0.0181086 40 3432 36 6.79088e+06 255968 706193. 2443.58 3.85 0.154729 0.136329 26254 175826 -1 3011 28 1584 5098 585946 205562 0 0 585946 205562 5098 2784 0 0 15847 13723 0 0 32287 18804 0 0 5098 3257 0 0 266549 84442 0 0 261067 82552 0 0 5098 0 0 3514 7077 7663 45410 0 0 7.04976 7.04976 -161.848 -7.04976 0 0 926341. 3205.33 0.35 0.20 0.16 -1 -1 0.35 0.0364695 0.0333393 126 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 6.90 vpr 53.25 MiB -1 -1 0.13 17360 12 0.16 -1 -1 31856 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54528 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 14.5 MiB 2.02 1074 53.2 MiB 0.03 0.00 5.84017 -134.266 -5.84017 5.84017 0.94 0.000151311 0.000122971 0.00893785 0.00752909 34 2771 33 6.79088e+06 202080 618332. 2139.56 1.77 0.079026 0.0685559 25102 150614 -1 2272 17 971 2560 157180 35736 0 0 157180 35736 2560 1438 0 0 8577 7352 0 0 14646 10258 0 0 2560 1620 0 0 65457 7606 0 0 63380 7462 0 0 2560 0 0 1589 2248 2693 17458 0 0 6.04038 6.04038 -149.616 -6.04038 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0183182 0.0166159 105 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 8.18 vpr 52.59 MiB -1 -1 0.12 16952 10 0.13 -1 -1 31688 -1 -1 13 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53856 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 14.2 MiB 2.63 619 52.6 MiB 0.06 0.00 4.04526 -95.3188 -4.04526 4.04526 0.84 0.000187764 0.000151132 0.0149929 0.0122653 38 1804 37 6.79088e+06 175136 678818. 2348.85 2.75 0.0936363 0.0816912 25966 169698 -1 1381 16 683 1511 85672 21093 0 0 85672 21093 1511 985 0 0 4913 4229 0 0 7407 5345 0 0 1511 1067 0 0 33203 5023 0 0 37127 4444 0 0 1511 0 0 828 1080 915 7422 0 0 4.17056 4.17056 -109.015 -4.17056 0 0 902133. 3121.57 0.22 0.02 0.09 -1 -1 0.22 0.00716581 0.00655128 66 84 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 9.56 vpr 53.14 MiB -1 -1 0.21 17516 13 0.24 -1 -1 32036 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 14.7 MiB 2.80 1112 53.1 MiB 0.09 0.00 6.04392 -131.248 -6.04392 6.04392 1.04 0.000266994 0.000217554 0.0227615 0.0186581 36 2795 29 6.79088e+06 242496 648988. 2245.63 3.03 0.127815 0.111807 25390 158009 -1 2366 17 1097 2484 145742 34259 0 0 145742 34259 2484 1509 0 0 8411 7141 0 0 13413 9878 0 0 2484 1707 0 0 58869 7152 0 0 60081 6872 0 0 2484 0 0 1387 1621 1786 13212 0 0 6.33018 6.33018 -151.527 -6.33018 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0179557 0.0163626 107 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 20.74 vpr 53.66 MiB -1 -1 0.23 17436 13 0.36 -1 -1 32248 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 15.1 MiB 2.21 1337 53.7 MiB 0.12 0.00 6.50592 -140.561 -6.50592 6.50592 1.04 0.00037517 0.000299164 0.0327979 0.0274895 40 3281 27 6.79088e+06 282912 706193. 2443.58 14.26 0.327694 0.288437 26254 175826 -1 3105 37 2093 6707 853071 412160 0 0 853071 412160 6707 3298 0 0 20439 17508 0 0 44461 26004 0 0 6707 4142 0 0 390472 185119 0 0 384285 176089 0 0 6707 0 0 4614 9256 9005 55956 0 0 6.70613 6.70613 -158.413 -6.70613 0 0 926341. 3205.33 0.34 0.33 0.15 -1 -1 0.34 0.0536024 0.0489033 143 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 10.85 vpr 53.66 MiB -1 -1 0.15 17716 13 0.25 -1 -1 32152 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 15.0 MiB 3.01 1408 53.7 MiB 0.09 0.00 6.34142 -140.43 -6.34142 6.34142 1.03 0.000346207 0.000281409 0.0239692 0.0199357 38 3653 35 6.79088e+06 282912 678818. 2348.85 4.10 0.185094 0.164233 25966 169698 -1 3095 19 1423 4259 244933 52862 0 0 244933 52862 4259 2234 0 0 13239 11385 0 0 20510 14342 0 0 4259 2613 0 0 97888 11813 0 0 104778 10475 0 0 4259 0 0 2836 5718 4747 34008 0 0 6.70608 6.70608 -159.434 -6.70608 0 0 902133. 3121.57 0.34 0.08 0.14 -1 -1 0.34 0.02703 0.0247775 141 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 5.66 vpr 52.55 MiB -1 -1 0.16 16908 9 0.07 -1 -1 31684 -1 -1 18 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53816 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 14.0 MiB 1.22 703 52.6 MiB 0.03 0.00 3.8527 -79.1624 -3.8527 3.8527 0.66 8.8273e-05 7.0712e-05 0.00670284 0.00552807 34 1709 19 6.79088e+06 242496 618332. 2139.56 2.01 0.0462402 0.0391701 25102 150614 -1 1541 16 668 1604 96600 22785 0 0 96600 22785 1604 1004 0 0 5513 4762 0 0 9608 6671 0 0 1604 1097 0 0 39943 4516 0 0 38328 4735 0 0 1604 0 0 936 1137 1248 9189 0 0 3.978 3.978 -91.5527 -3.978 0 0 787024. 2723.27 0.22 0.04 0.08 -1 -1 0.22 0.010692 0.0096641 67 69 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 8.50 vpr 53.55 MiB -1 -1 0.17 17548 13 0.35 -1 -1 32748 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 15.0 MiB 2.32 1259 53.6 MiB 0.06 0.00 6.74893 -135.263 -6.74893 6.74893 1.01 0.00032711 0.000266471 0.0152325 0.0128404 38 3552 25 6.79088e+06 309856 678818. 2348.85 2.33 0.125029 0.110624 25966 169698 -1 2819 17 1414 3925 196978 46834 0 0 196978 46834 3925 1971 0 0 12401 10808 0 0 18781 13420 0 0 3925 2424 0 0 76560 9447 0 0 81386 8764 0 0 3925 0 0 2511 3513 3540 25401 0 0 7.75133 7.75133 -163.02 -7.75133 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0250018 0.0229931 136 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 7.69 vpr 52.38 MiB -1 -1 0.14 17056 8 0.09 -1 -1 32052 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53632 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 13.8 MiB 2.34 775 52.4 MiB 0.04 0.00 3.54052 -84.3897 -3.54052 3.54052 1.01 0.000167283 0.000135766 0.00928282 0.00771487 34 1899 34 6.79088e+06 148192 618332. 2139.56 2.05 0.0602545 0.0523127 25102 150614 -1 1586 12 576 1297 72894 17434 0 0 72894 17434 1297 790 0 0 4232 3650 0 0 7149 5035 0 0 1297 907 0 0 29238 3588 0 0 29681 3464 0 0 1297 0 0 721 658 964 6682 0 0 3.62662 3.62662 -97.2633 -3.62662 0 0 787024. 2723.27 0.30 0.03 0.13 -1 -1 0.30 0.00828468 0.0075728 60 59 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 8.12 vpr 53.38 MiB -1 -1 0.21 17520 15 0.31 -1 -1 32684 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54664 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 14.7 MiB 2.83 1241 53.4 MiB 0.05 0.00 7.14721 -147.603 -7.14721 7.14721 0.82 0.000175072 0.000142652 0.0138213 0.0115361 40 2978 25 6.79088e+06 242496 706193. 2443.58 1.70 0.0987937 0.086331 26254 175826 -1 2829 16 1258 3495 226737 49534 0 0 226737 49534 3495 1945 0 0 11699 9879 0 0 19621 13565 0 0 3495 2247 0 0 90821 11716 0 0 97606 10182 0 0 3495 0 0 2237 3826 3558 25838 0 0 7.64841 7.64841 -168.576 -7.64841 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.020823 0.0191185 121 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 9.73 vpr 53.60 MiB -1 -1 0.20 17548 13 0.22 -1 -1 32120 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 15.0 MiB 2.35 1187 53.6 MiB 0.05 0.00 5.69249 -126.522 -5.69249 5.69249 0.59 0.000157982 0.000127667 0.0136925 0.0113823 38 3463 35 6.79088e+06 242496 678818. 2348.85 4.84 0.0936115 0.0814807 25966 169698 -1 2739 17 1260 3600 217432 46260 0 0 217432 46260 3600 2006 0 0 10896 9306 0 0 17383 11701 0 0 3600 2375 0 0 89802 10700 0 0 92151 10172 0 0 3600 0 0 2340 3675 3788 26441 0 0 5.94309 5.94309 -143.729 -5.94309 0 0 902133. 3121.57 0.22 0.05 0.09 -1 -1 0.22 0.0128275 0.011721 117 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 8.84 vpr 53.46 MiB -1 -1 0.21 17436 13 0.30 -1 -1 32248 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 15.0 MiB 1.97 1308 53.5 MiB 0.08 0.00 6.41212 -141.876 -6.41212 6.41212 0.95 0.000311988 0.000254789 0.0220247 0.018371 34 3513 49 6.79088e+06 242496 618332. 2139.56 3.13 0.145058 0.128792 25102 150614 -1 3086 19 1413 4031 254170 55025 0 0 254170 55025 4031 2152 0 0 12976 10867 0 0 22845 15196 0 0 4031 2490 0 0 103235 12508 0 0 107052 11812 0 0 4031 0 0 2618 4680 5103 31140 0 0 6.56543 6.56543 -161.96 -6.56543 0 0 787024. 2723.27 0.33 0.09 0.14 -1 -1 0.33 0.0275893 0.0252324 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 10.42 vpr 53.28 MiB -1 -1 0.17 17424 12 0.18 -1 -1 32088 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54556 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 14.8 MiB 2.57 978 53.3 MiB 0.06 0.00 5.61414 -124.304 -5.61414 5.61414 0.98 0.000245676 0.000201015 0.0161106 0.0134986 40 2492 42 6.79088e+06 215552 706193. 2443.58 4.40 0.172258 0.15108 26254 175826 -1 2287 22 1127 2721 266714 89333 0 0 266714 89333 2721 1673 0 0 9266 7998 0 0 16556 11243 0 0 2721 1930 0 0 116573 33290 0 0 118877 33199 0 0 2721 0 0 1594 2328 2128 15613 0 0 5.73944 5.73944 -138.182 -5.73944 0 0 926341. 3205.33 0.27 0.07 0.16 -1 -1 0.27 0.013958 0.0126712 103 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 7.84 vpr 53.05 MiB -1 -1 0.20 17244 11 0.18 -1 -1 32036 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 14.5 MiB 1.62 759 53.1 MiB 0.06 0.00 5.19894 -108.246 -5.19894 5.19894 0.60 0.000231088 0.000186158 0.0131284 0.0108026 46 2193 31 6.79088e+06 242496 828058. 2865.25 3.32 0.114832 0.100836 27406 200422 -1 1655 17 930 2308 134742 39212 0 0 134742 39212 2308 1294 0 0 7276 6220 0 0 11793 8060 0 0 2308 1533 0 0 52358 11143 0 0 58699 10962 0 0 2308 0 0 1378 1677 1893 13062 0 0 5.44954 5.44954 -126.698 -5.44954 0 0 1.01997e+06 3529.29 0.41 0.07 0.16 -1 -1 0.41 0.0210629 0.0192174 95 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 10.42 vpr 53.19 MiB -1 -1 0.20 17096 11 0.22 -1 -1 32144 -1 -1 21 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 14.8 MiB 2.02 956 53.2 MiB 0.08 0.00 5.49223 -110.214 -5.49223 5.49223 0.92 0.000263298 0.00021547 0.0213769 0.0178373 36 2408 28 6.79088e+06 282912 648988. 2245.63 4.95 0.158858 0.137871 25390 158009 -1 2209 25 1046 2882 265597 99155 0 0 265597 99155 2882 1597 0 0 9431 8125 0 0 17116 11599 0 0 2882 1833 0 0 116260 38749 0 0 117026 37252 0 0 2882 0 0 1836 2771 3304 20315 0 0 5.61753 5.61753 -123.904 -5.61753 0 0 828058. 2865.25 0.34 0.10 0.15 -1 -1 0.34 0.0229891 0.020705 109 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 9.37 vpr 53.66 MiB -1 -1 0.16 17316 12 0.27 -1 -1 32156 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 15.0 MiB 2.49 1239 53.7 MiB 0.05 0.00 5.78208 -135.974 -5.78208 5.78208 0.84 0.000158453 0.000127916 0.0136677 0.0113467 42 3377 48 6.79088e+06 229024 744469. 2576.02 3.99 0.133091 0.113964 26542 182613 -1 2635 18 1352 3304 204276 44877 0 0 204276 44877 3304 1877 0 0 10883 9113 0 0 18454 12614 0 0 3304 2287 0 0 82474 9857 0 0 85857 9129 0 0 3304 0 0 1952 2361 2488 18909 0 0 6.10759 6.10759 -157.865 -6.10759 0 0 949917. 3286.91 0.23 0.04 0.10 -1 -1 0.23 0.0131725 0.0120613 119 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 13.74 vpr 53.23 MiB -1 -1 0.21 17172 12 0.17 -1 -1 32164 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54504 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 14.8 MiB 2.01 1097 53.2 MiB 0.04 0.00 5.67678 -121.664 -5.67678 5.67678 0.89 0.000142642 0.000115828 0.0112941 0.00939973 34 3021 48 6.79088e+06 229024 618332. 2139.56 8.37 0.153369 0.134745 25102 150614 -1 2488 17 1167 2899 190707 42263 0 0 190707 42263 2899 1712 0 0 9685 8352 0 0 16488 11457 0 0 2899 1944 0 0 79251 9496 0 0 79485 9302 0 0 2899 0 0 1732 2793 2711 18651 0 0 6.30328 6.30328 -144.974 -6.30328 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0199191 0.0181911 101 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 9.40 vpr 53.09 MiB -1 -1 0.22 17432 10 0.17 -1 -1 32048 -1 -1 17 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 14.5 MiB 2.02 1022 53.1 MiB 0.07 0.00 4.98748 -112.632 -4.98748 4.98748 1.01 0.000255096 0.000209938 0.0185528 0.0155065 34 2679 20 6.79088e+06 229024 618332. 2139.56 3.69 0.0881873 0.0759495 25102 150614 -1 2289 15 956 2536 161064 36241 0 0 161064 36241 2536 1476 0 0 8623 7317 0 0 14392 10173 0 0 2536 1649 0 0 65480 8062 0 0 67497 7564 0 0 2536 0 0 1580 2712 2856 19030 0 0 5.11278 5.11278 -128.323 -5.11278 0 0 787024. 2723.27 0.34 0.07 0.14 -1 -1 0.34 0.0198685 0.0183135 103 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 9.08 vpr 53.98 MiB -1 -1 0.25 17696 13 0.40 -1 -1 32312 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55280 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 15.4 MiB 2.38 1265 54.0 MiB 0.07 0.00 6.6851 -136.449 -6.6851 6.6851 0.61 0.000205362 0.00016748 0.0193647 0.0160634 46 3138 19 6.79088e+06 282912 828058. 2865.25 3.32 0.1492 0.129187 27406 200422 -1 2597 17 1303 3944 201607 45949 0 0 201607 45949 3944 1880 0 0 12131 10343 0 0 19383 13186 0 0 3944 2248 0 0 78235 9573 0 0 83970 8719 0 0 3944 0 0 2641 4838 4860 35691 0 0 7.1394 7.1394 -155.104 -7.1394 0 0 1.01997e+06 3529.29 0.36 0.05 0.17 -1 -1 0.36 0.0160165 0.0147542 149 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 25.05 vpr 53.68 MiB -1 -1 0.24 17688 14 0.44 -1 -1 32704 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 15.1 MiB 2.82 1318 53.7 MiB 0.11 0.00 6.74118 -149.152 -6.74118 6.74118 0.98 0.000339026 0.000269203 0.0315074 0.0262374 38 3767 26 6.79088e+06 242496 678818. 2348.85 18.21 0.260077 0.228316 25966 169698 -1 2953 19 1531 4295 220390 49760 0 0 220390 49760 4295 2129 0 0 12947 11369 0 0 20643 13966 0 0 4295 2523 0 0 92382 9592 0 0 85828 10181 0 0 4295 0 0 2764 4208 3946 30221 0 0 6.82728 6.82728 -164.43 -6.82728 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0253564 0.0231257 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 9.95 vpr 53.06 MiB -1 -1 0.20 17548 12 0.20 -1 -1 32112 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54336 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 14.4 MiB 2.74 1065 53.1 MiB 0.04 0.00 5.82898 -130.877 -5.82898 5.82898 0.77 0.00013788 0.00011123 0.011038 0.00913471 36 2817 22 6.79088e+06 215552 648988. 2245.63 3.97 0.109704 0.0957088 25390 158009 -1 2305 15 945 2547 157475 34212 0 0 157475 34212 2547 1447 0 0 8115 6797 0 0 13643 9333 0 0 2547 1665 0 0 64725 7620 0 0 65898 7350 0 0 2547 0 0 1602 2987 2605 19185 0 0 6.20488 6.20488 -148.293 -6.20488 0 0 828058. 2865.25 0.28 0.05 0.15 -1 -1 0.28 0.0138747 0.0128521 101 148 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 10.52 vpr 53.74 MiB -1 -1 0.24 17784 12 0.38 -1 -1 32228 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55032 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 15.3 MiB 2.87 1407 53.7 MiB 0.10 0.00 6.09421 -131.041 -6.09421 6.09421 1.03 0.00020041 0.000162825 0.0272774 0.0226661 40 3548 50 6.79088e+06 323328 706193. 2443.58 3.52 0.142802 0.125158 26254 175826 -1 3312 21 1732 5326 354666 74516 0 0 354666 74516 5326 2838 0 0 16631 14347 0 0 31174 19644 0 0 5326 3324 0 0 149926 16960 0 0 146283 17403 0 0 5326 0 0 3594 5940 6346 40296 0 0 6.37282 6.37282 -148.229 -6.37282 0 0 926341. 3205.33 0.37 0.12 0.17 -1 -1 0.37 0.0331175 0.0302145 146 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 7.70 vpr 53.68 MiB -1 -1 0.18 17756 14 0.31 -1 -1 32656 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 15.1 MiB 1.70 1312 53.7 MiB 0.05 0.00 6.92457 -142.131 -6.92457 6.92457 0.59 0.000181866 0.000147343 0.0123104 0.0102242 36 3731 21 6.79088e+06 296384 648988. 2245.63 3.06 0.133021 0.11675 25390 158009 -1 3029 18 1413 3773 226717 51828 0 0 226717 51828 3773 2126 0 0 12739 10788 0 0 20942 15050 0 0 3773 2504 0 0 92810 10786 0 0 92680 10574 0 0 3773 0 0 2360 3158 3538 23917 0 0 7.59796 7.59796 -165.718 -7.59796 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0154364 0.0141571 142 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 8.33 vpr 53.52 MiB -1 -1 0.25 17624 13 0.27 -1 -1 32284 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 15.0 MiB 1.69 1338 53.5 MiB 0.05 0.00 6.9357 -143.111 -6.9357 6.9357 0.59 0.000170442 0.000137825 0.0121035 0.0100201 38 3659 24 6.79088e+06 309856 678818. 2348.85 3.69 0.155158 0.138708 25966 169698 -1 2789 18 1273 3289 180181 40138 0 0 180181 40138 3289 1736 0 0 10151 8683 0 0 15645 11034 0 0 3289 2073 0 0 73788 8495 0 0 74019 8117 0 0 3289 0 0 2016 2601 2684 19900 0 0 7.3116 7.3116 -162.296 -7.3116 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0233873 0.0212217 136 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 9.32 vpr 53.48 MiB -1 -1 0.24 17496 13 0.34 -1 -1 32228 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54768 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 15.1 MiB 1.86 1209 53.5 MiB 0.06 0.00 6.34148 -132.773 -6.34148 6.34148 0.98 0.000331602 0.000273561 0.0165551 0.0141146 40 3272 20 6.79088e+06 282912 706193. 2443.58 4.13 0.162576 0.145812 26254 175826 -1 2937 19 1269 3743 251726 53410 0 0 251726 53410 3743 2202 0 0 12156 10331 0 0 22002 14346 0 0 3743 2541 0 0 104049 12053 0 0 106033 11937 0 0 3743 0 0 2474 4923 5063 31873 0 0 7.00712 7.00712 -148.882 -7.00712 0 0 926341. 3205.33 0.23 0.05 0.13 -1 -1 0.23 0.0144899 0.0132429 125 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 10.21 vpr 53.18 MiB -1 -1 0.21 17428 12 0.25 -1 -1 32192 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 14.6 MiB 2.60 1028 53.2 MiB 0.06 0.00 5.69249 -123.088 -5.69249 5.69249 1.02 0.000297944 0.000242903 0.0160302 0.0133454 36 2974 34 6.79088e+06 215552 648988. 2245.63 3.86 0.149168 0.131959 25390 158009 -1 2454 17 1148 3061 206066 44557 0 0 206066 44557 3061 1801 0 0 9991 8563 0 0 16549 11609 0 0 3061 2076 0 0 84645 10691 0 0 88759 9817 0 0 3061 0 0 1913 3936 3777 24389 0 0 5.94653 5.94653 -141.71 -5.94653 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0204029 0.0185326 111 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 7.72 vpr 53.86 MiB -1 -1 0.27 18268 14 0.48 -1 -1 32496 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55152 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 15.3 MiB 0.99 1357 53.9 MiB 0.05 0.00 7.21858 -146.942 -7.21858 7.21858 0.60 0.000224761 0.000185904 0.0135764 0.0113793 40 4074 31 6.79088e+06 282912 706193. 2443.58 3.62 0.10957 0.0956849 26254 175826 -1 3614 32 1767 5300 566320 175021 0 0 566320 175021 5300 3017 0 0 17300 14727 0 0 32349 21093 0 0 5300 3476 0 0 250172 66086 0 0 255899 66622 0 0 5300 0 0 3533 8022 8291 48766 0 0 7.47266 7.47266 -170.146 -7.47266 0 0 926341. 3205.33 0.24 0.12 0.16 -1 -1 0.24 0.0249078 0.0224805 159 229 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 8.10 vpr 53.25 MiB -1 -1 0.13 17272 11 0.24 -1 -1 32224 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54528 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 14.8 MiB 2.37 1150 53.2 MiB 0.05 0.00 5.36687 -118.436 -5.36687 5.36687 0.73 0.000155661 0.000126706 0.0128189 0.0106827 38 3175 20 6.79088e+06 215552 678818. 2348.85 2.55 0.0937331 0.0820207 25966 169698 -1 2613 18 1262 3552 197360 43435 0 0 197360 43435 3552 1904 0 0 10869 9312 0 0 17245 11813 0 0 3552 2256 0 0 80348 9391 0 0 81794 8759 0 0 3552 0 0 2290 3302 3194 23380 0 0 5.65667 5.65667 -137.674 -5.65667 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0226437 0.0207356 112 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 8.86 vpr 53.49 MiB -1 -1 0.23 17788 13 0.35 -1 -1 32260 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 15.0 MiB 1.85 1268 53.5 MiB 0.04 0.00 6.50941 -139.443 -6.50941 6.50941 0.60 0.000174713 0.000139681 0.0122575 0.0101988 38 3210 41 6.79088e+06 269440 678818. 2348.85 4.05 0.154147 0.13672 25966 169698 -1 2633 18 1222 4123 220047 47910 0 0 220047 47910 4123 1820 0 0 12589 10802 0 0 20296 13668 0 0 4123 2152 0 0 87452 10197 0 0 91464 9271 0 0 4123 0 0 2901 5429 5333 38006 0 0 6.97141 6.97141 -155.855 -6.97141 0 0 902133. 3121.57 0.30 0.08 0.14 -1 -1 0.30 0.0253029 0.023051 137 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 8.45 vpr 53.93 MiB -1 -1 0.21 17472 12 0.33 -1 -1 32312 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55224 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 15.0 MiB 2.33 1089 53.9 MiB 0.04 0.00 6.07958 -128.612 -6.07958 6.07958 0.64 0.000202028 0.00016446 0.00900904 0.00764727 38 3871 47 6.79088e+06 282912 678818. 2348.85 2.76 0.12216 0.106555 25966 169698 -1 2774 19 1445 4635 241989 56026 0 0 241989 56026 4635 2237 0 0 14074 12154 0 0 22042 15106 0 0 4635 2588 0 0 95317 12350 0 0 101286 11591 0 0 4635 0 0 3190 5736 5362 40089 0 0 6.08302 6.08302 -144.399 -6.08302 0 0 902133. 3121.57 0.33 0.09 0.15 -1 -1 0.33 0.0308941 0.0283321 146 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 9.93 vpr 53.43 MiB -1 -1 0.21 17548 13 0.35 -1 -1 32204 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 15.0 MiB 1.76 1228 53.4 MiB 0.05 0.00 6.47021 -140.162 -6.47021 6.47021 1.03 0.000328257 0.000268382 0.0121405 0.0103136 38 2904 20 6.79088e+06 296384 678818. 2348.85 4.28 0.176094 0.154727 25966 169698 -1 2454 20 1163 3102 155781 35998 0 0 155781 35998 3102 1575 0 0 9751 8318 0 0 14907 10630 0 0 3102 1932 0 0 63931 6665 0 0 60988 6878 0 0 3102 0 0 1939 2371 2700 19184 0 0 6.72076 6.72076 -157.191 -6.72076 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0233193 0.0211143 131 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 12.22 vpr 53.55 MiB -1 -1 0.23 17584 13 0.29 -1 -1 32364 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 15.1 MiB 3.27 1270 53.6 MiB 0.06 0.00 6.09426 -134.354 -6.09426 6.09426 0.89 0.000182576 0.000148749 0.0169689 0.0141823 44 3190 23 6.79088e+06 242496 787024. 2723.27 5.32 0.211102 0.18664 27118 194962 -1 2574 19 1257 3438 198758 43046 0 0 198758 43046 3438 1757 0 0 10846 9238 0 0 18054 12362 0 0 3438 2143 0 0 80199 9159 0 0 82783 8387 0 0 3438 0 0 2181 3844 3411 26580 0 0 6.29447 6.29447 -148.373 -6.29447 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0229152 0.0206689 124 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 10.61 vpr 53.71 MiB -1 -1 0.20 17432 12 0.32 -1 -1 32268 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54996 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 15.1 MiB 1.97 1406 53.7 MiB 0.06 0.00 6.29447 -141.655 -6.29447 6.29447 0.93 0.000320528 0.000254511 0.016831 0.0140548 38 3843 49 6.79088e+06 269440 678818. 2348.85 5.21 0.207462 0.186063 25966 169698 -1 2992 28 1333 4329 493619 209300 0 0 493619 209300 4329 2119 0 0 12991 11203 0 0 23956 15124 0 0 4329 2470 0 0 224102 90818 0 0 223912 87566 0 0 4329 0 0 2996 6259 6129 42215 0 0 6.41977 6.41977 -155.444 -6.41977 0 0 902133. 3121.57 0.34 0.18 0.15 -1 -1 0.34 0.0373206 0.0339916 140 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 9.37 vpr 53.72 MiB -1 -1 0.23 17736 13 0.30 -1 -1 32724 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 15.2 MiB 2.10 1384 53.7 MiB 0.06 0.00 6.47021 -143.401 -6.47021 6.47021 0.98 0.000350217 0.000288944 0.0161867 0.01377 44 3454 49 6.79088e+06 269440 787024. 2723.27 3.32 0.167393 0.146343 27118 194962 -1 2837 17 1324 3894 206100 46538 0 0 206100 46538 3894 1960 0 0 12172 10333 0 0 19924 13710 0 0 3894 2319 0 0 83132 8976 0 0 83084 9240 0 0 3894 0 0 2570 3969 4185 29136 0 0 7.09671 7.09671 -165.622 -7.09671 0 0 997811. 3452.63 0.42 0.08 0.19 -1 -1 0.42 0.0283465 0.026081 145 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 10.12 vpr 53.45 MiB -1 -1 0.22 17440 14 0.37 -1 -1 32256 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54736 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 15.0 MiB 1.78 1112 53.5 MiB 0.05 0.00 6.71317 -135.676 -6.71317 6.71317 0.91 0.00027994 0.000228588 0.0138788 0.0116417 40 2611 22 6.79088e+06 269440 706193. 2443.58 4.80 0.234718 0.20975 26254 175826 -1 2568 22 1394 4095 248913 56263 0 0 248913 56263 4095 2181 0 0 13634 11725 0 0 24382 16119 0 0 4095 2625 0 0 100953 11980 0 0 101754 11633 0 0 4095 0 0 2701 4608 4988 31626 0 0 6.96377 6.96377 -155.043 -6.96377 0 0 926341. 3205.33 0.37 0.09 0.17 -1 -1 0.37 0.0291559 0.0265269 125 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 12.43 vpr 53.52 MiB -1 -1 0.23 17584 13 0.35 -1 -1 32224 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 15.0 MiB 2.93 1171 53.5 MiB 0.10 0.00 6.62696 -130.6 -6.62696 6.62696 1.01 0.00034455 0.0002821 0.0269716 0.0224817 38 3675 27 6.79088e+06 282912 678818. 2348.85 5.60 0.162481 0.142691 25966 169698 -1 2736 18 1464 4001 211963 49029 0 0 211963 49029 4001 2177 0 0 12541 10747 0 0 18925 13572 0 0 4001 2594 0 0 84354 10357 0 0 88141 9582 0 0 4001 0 0 2537 3563 4265 27834 0 0 7.12816 7.12816 -154.333 -7.12816 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0247429 0.0225149 136 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 10.33 vpr 53.56 MiB -1 -1 0.25 17724 13 0.34 -1 -1 32196 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54848 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 14.9 MiB 2.35 1366 53.6 MiB 0.03 0.00 6.41212 -141.541 -6.41212 6.41212 0.59 0.000180576 0.000146075 0.00899951 0.00773311 40 3328 23 6.79088e+06 282912 706193. 2443.58 4.86 0.202272 0.178575 26254 175826 -1 3142 38 2072 6060 636765 252894 0 0 636765 252894 6060 3326 0 0 19025 16239 0 0 37872 23332 0 0 6060 3950 0 0 284192 105776 0 0 283556 100271 0 0 6060 0 0 3988 7141 6439 45472 0 0 7.12472 7.12472 -166.887 -7.12472 0 0 926341. 3205.33 0.23 0.15 0.11 -1 -1 0.23 0.0264583 0.023806 144 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 19.25 vpr 53.71 MiB -1 -1 0.25 17784 12 0.38 -1 -1 32320 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 15.0 MiB 1.87 1375 53.7 MiB 0.07 0.00 6.36178 -137.635 -6.36178 6.36178 0.59 0.000337668 0.000277101 0.0174731 0.0145553 36 4081 46 6.79088e+06 282912 648988. 2245.63 14.22 0.293652 0.262297 25390 158009 -1 3302 19 1602 4391 305141 67276 0 0 305141 67276 4391 2520 0 0 14172 12135 0 0 24005 16528 0 0 4391 2887 0 0 130806 16491 0 0 127376 16715 0 0 4391 0 0 2789 4096 4914 29696 0 0 6.69843 6.69843 -158.751 -6.69843 0 0 828058. 2865.25 0.35 0.11 0.15 -1 -1 0.35 0.0308266 0.0282004 147 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 6.87 vpr 52.97 MiB -1 -1 0.18 17100 11 0.11 -1 -1 31792 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54244 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 14.5 MiB 1.31 1004 53.0 MiB 0.07 0.00 5.23038 -117.085 -5.23038 5.23038 0.95 0.000222674 0.000182031 0.0176581 0.0145198 36 2579 27 6.79088e+06 188608 648988. 2245.63 2.25 0.0953158 0.0825778 25390 158009 -1 2248 19 882 2325 149135 33507 0 0 149135 33507 2325 1395 0 0 7803 6654 0 0 12979 9240 0 0 2325 1558 0 0 62649 7283 0 0 61054 7377 0 0 2325 0 0 1443 2296 2300 15564 0 0 5.44178 5.44178 -132.855 -5.44178 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0182113 0.0165738 91 121 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 9.95 vpr 53.41 MiB -1 -1 0.20 17484 13 0.19 -1 -1 32212 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 14.8 MiB 1.96 1119 53.4 MiB 0.07 0.00 6.49822 -140.987 -6.49822 6.49822 0.99 0.000292522 0.00023684 0.0172629 0.0143316 44 2912 19 6.79088e+06 269440 787024. 2723.27 4.51 0.152019 0.133437 27118 194962 -1 2350 13 1014 2643 143149 32471 0 0 143149 32471 2643 1358 0 0 8411 7119 0 0 13329 9397 0 0 2643 1572 0 0 57813 6603 0 0 58310 6422 0 0 2643 0 0 1629 2199 2166 16707 0 0 6.62352 6.62352 -153.48 -6.62352 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0172074 0.0158053 118 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 11.58 vpr 53.95 MiB -1 -1 0.25 17964 14 0.56 -1 -1 32444 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 15.5 MiB 1.51 1416 54.0 MiB 0.11 0.00 7.7695 -154.348 -7.7695 7.7695 0.99 0.00039946 0.000323729 0.030263 0.0250825 46 3695 20 6.79088e+06 323328 828058. 2865.25 5.77 0.263139 0.23202 27406 200422 -1 3006 16 1662 4846 244526 56211 0 0 244526 56211 4846 2162 0 0 14972 12881 0 0 23047 16062 0 0 4846 2727 0 0 97191 11426 0 0 99624 10953 0 0 4846 0 0 3184 5081 4542 34847 0 0 7.9417 7.9417 -170.346 -7.9417 0 0 1.01997e+06 3529.29 0.39 0.09 0.18 -1 -1 0.39 0.03168 0.0291547 171 243 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 8.08 vpr 53.74 MiB -1 -1 0.24 17428 13 0.34 -1 -1 32256 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55032 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 15.0 MiB 1.90 1241 53.7 MiB 0.06 0.00 6.58432 -143.713 -6.58432 6.58432 0.91 0.000297466 0.000241447 0.0144422 0.0121641 38 3262 28 6.79088e+06 282912 678818. 2348.85 2.77 0.109789 0.0962037 25966 169698 -1 2642 16 1259 3408 170227 40168 0 0 170227 40168 3408 1797 0 0 10612 9185 0 0 16428 11570 0 0 3408 2095 0 0 68976 7679 0 0 67395 7842 0 0 3408 0 0 2149 2875 3357 23997 0 0 6.58432 6.58432 -158.874 -6.58432 0 0 902133. 3121.57 0.22 0.04 0.10 -1 -1 0.22 0.0136795 0.012609 134 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 8.01 vpr 52.99 MiB -1 -1 0.14 17536 11 0.22 -1 -1 31996 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54264 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 14.4 MiB 0.95 923 53.0 MiB 0.07 0.00 5.44189 -119.087 -5.44189 5.44189 0.91 0.0002651 0.000214881 0.0176874 0.014605 30 2932 46 6.79088e+06 229024 556674. 1926.21 3.62 0.103086 0.0903387 24526 138013 -1 2321 23 1312 3685 228517 49290 0 0 228517 49290 3685 2133 0 0 11200 9775 0 0 18405 12253 0 0 3685 2424 0 0 94456 11634 0 0 97086 11071 0 0 3685 0 0 2373 4090 3495 25931 0 0 5.72815 5.72815 -137.285 -5.72815 0 0 706193. 2443.58 0.28 0.08 0.12 -1 -1 0.28 0.023129 0.0208663 101 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 11.50 vpr 54.14 MiB -1 -1 0.26 18400 15 0.65 -1 -1 32288 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55444 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 15.5 MiB 1.20 1646 54.1 MiB 0.09 0.00 7.77725 -160.767 -7.77725 7.77725 1.03 0.000432955 0.000356631 0.0266068 0.0224709 46 3881 28 6.79088e+06 336800 828058. 2865.25 6.13 0.332893 0.294999 27406 200422 -1 3201 25 1691 5045 439322 171171 0 0 439322 171171 5045 2161 0 0 15706 13466 0 0 26162 17939 0 0 5045 2741 0 0 191595 67498 0 0 195769 67366 0 0 5045 0 0 3354 5688 6250 41821 0 0 8.15315 8.15315 -178.815 -8.15315 0 0 1.01997e+06 3529.29 0.25 0.10 0.11 -1 -1 0.25 0.0244998 0.0223466 179 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 9.72 vpr 53.62 MiB -1 -1 0.19 17472 13 0.39 -1 -1 32212 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54904 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 15.2 MiB 1.44 1304 53.6 MiB 0.09 0.00 6.47021 -144.885 -6.47021 6.47021 0.94 0.000340489 0.000265005 0.0251626 0.0208471 36 3506 28 6.79088e+06 269440 648988. 2245.63 4.51 0.168751 0.147459 25390 158009 -1 3036 17 1476 3910 235101 52605 0 0 235101 52605 3910 2274 0 0 12839 11003 0 0 20972 14858 0 0 3910 2590 0 0 94473 11408 0 0 98997 10472 0 0 3910 0 0 2434 3998 4482 28084 0 0 7.04981 7.04981 -170.812 -7.04981 0 0 828058. 2865.25 0.35 0.09 0.14 -1 -1 0.35 0.0302651 0.0278617 139 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 6.11 vpr 53.00 MiB -1 -1 0.10 17164 11 0.11 -1 -1 32028 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54268 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 14.4 MiB 1.62 1010 53.0 MiB 0.04 0.00 5.40613 -117.216 -5.40613 5.40613 0.60 0.000141005 0.000114932 0.0102029 0.00853895 36 2523 32 6.79088e+06 175136 648988. 2245.63 1.88 0.0687261 0.0595189 25390 158009 -1 2174 15 907 2249 133269 30489 0 0 133269 30489 2249 1265 0 0 7414 6323 0 0 11982 8607 0 0 2249 1430 0 0 53720 6713 0 0 55655 6151 0 0 2249 0 0 1342 2076 1918 14309 0 0 5.65673 5.65673 -134.053 -5.65673 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0170895 0.0157108 94 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 15.71 vpr 53.52 MiB -1 -1 0.20 17744 12 0.38 -1 -1 32188 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 15.1 MiB 0.94 1333 53.5 MiB 0.09 0.00 6.25876 -134.034 -6.25876 6.25876 0.67 0.000390297 0.000319513 0.025793 0.0214671 36 3533 29 6.79088e+06 269440 648988. 2245.63 11.69 0.255053 0.226217 25390 158009 -1 3088 17 1440 4443 271377 60182 0 0 271377 60182 4443 2259 0 0 14542 12488 0 0 24956 17234 0 0 4443 2620 0 0 111280 12804 0 0 111713 12777 0 0 4443 0 0 3003 6767 7733 45554 0 0 6.42321 6.42321 -154.146 -6.42321 0 0 828058. 2865.25 0.27 0.09 0.14 -1 -1 0.27 0.0253186 0.0230201 146 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 9.72 vpr 53.26 MiB -1 -1 0.18 17164 12 0.17 -1 -1 32104 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 14.8 MiB 1.37 1135 53.3 MiB 0.05 0.00 6.07963 -128.01 -6.07963 6.07963 0.75 0.000263743 0.000213259 0.0112672 0.0094428 36 3175 27 6.79088e+06 242496 648988. 2245.63 5.05 0.148091 0.133179 25390 158009 -1 2715 21 1197 3094 275506 84060 0 0 275506 84060 3094 1896 0 0 10172 8590 0 0 17598 12244 0 0 3094 2213 0 0 120331 29786 0 0 121217 29331 0 0 3094 0 0 1897 2989 3061 20041 0 0 6.63117 6.63117 -152.001 -6.63117 0 0 828058. 2865.25 0.33 0.11 0.15 -1 -1 0.33 0.026069 0.0238384 113 148 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 8.26 vpr 53.07 MiB -1 -1 0.21 17492 12 0.16 -1 -1 32132 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54348 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 14.4 MiB 1.34 1035 53.1 MiB 0.04 0.00 6.13346 -126.584 -6.13346 6.13346 0.94 0.000280723 0.000224176 0.00945464 0.00789562 36 2576 25 6.79088e+06 229024 648988. 2245.63 3.62 0.131924 0.115788 25390 158009 -1 2220 17 874 2420 144778 33057 0 0 144778 33057 2420 1332 0 0 8113 6940 0 0 13521 9640 0 0 2420 1516 0 0 58120 7006 0 0 60184 6623 0 0 2420 0 0 1546 2735 2767 18470 0 0 6.63466 6.63466 -144.115 -6.63466 0 0 828058. 2865.25 0.31 0.04 0.13 -1 -1 0.31 0.0120259 0.0109842 106 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 9.75 vpr 53.62 MiB -1 -1 0.25 17480 12 0.25 -1 -1 32184 -1 -1 26 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54904 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 15.1 MiB 2.50 1294 53.6 MiB 0.04 0.00 5.90743 -119.276 -5.90743 5.90743 0.62 0.000177185 0.000138743 0.0102355 0.00852354 38 3217 41 6.79088e+06 350272 678818. 2348.85 4.00 0.141419 0.126472 25966 169698 -1 2556 15 1228 3686 189913 42170 0 0 189913 42170 3686 1754 0 0 11134 9469 0 0 17361 11890 0 0 3686 2078 0 0 75151 8805 0 0 78895 8174 0 0 3686 0 0 2458 4890 4124 31610 0 0 6.49473 6.49473 -138.055 -6.49473 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.0232312 0.0212955 140 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 14.14 vpr 54.05 MiB -1 -1 0.22 17428 13 0.43 -1 -1 32272 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55344 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 15.2 MiB 1.19 1408 54.0 MiB 0.05 0.00 6.67386 -140.77 -6.67386 6.67386 0.71 0.000200277 0.000160951 0.0119191 0.00993423 36 4471 35 6.79088e+06 309856 648988. 2245.63 9.68 0.22869 0.201734 25390 158009 -1 3327 21 2132 5070 296179 68615 0 0 296179 68615 5070 3046 0 0 16436 14181 0 0 27048 19093 0 0 5070 3443 0 0 117974 14686 0 0 124581 14166 0 0 5070 0 0 2938 3856 4671 29197 0 0 6.97136 6.97136 -163.682 -6.97136 0 0 828058. 2865.25 0.33 0.11 0.15 -1 -1 0.33 0.0354265 0.0323845 160 235 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 7.35 vpr 53.54 MiB -1 -1 0.24 17488 12 0.26 -1 -1 32824 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 15.0 MiB 1.59 1329 53.5 MiB 0.05 0.00 6.32248 -137.179 -6.32248 6.32248 0.84 0.000306987 0.00024422 0.0134719 0.0110637 38 3620 30 6.79088e+06 269440 678818. 2348.85 2.34 0.124672 0.109817 25966 169698 -1 2913 19 1519 4404 241285 53250 0 0 241285 53250 4404 2188 0 0 13472 11695 0 0 21500 14695 0 0 4404 2713 0 0 98178 11200 0 0 99327 10759 0 0 4404 0 0 2885 5232 4850 34241 0 0 6.75647 6.75647 -157.96 -6.75647 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0164663 0.0151272 140 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 9.48 vpr 52.89 MiB -1 -1 0.20 17096 12 0.19 -1 -1 32088 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54160 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 14.4 MiB 2.58 1026 52.9 MiB 0.08 0.00 5.99697 -124.075 -5.99697 5.99697 1.01 0.000263797 0.000216367 0.0202882 0.0168692 36 2562 24 6.79088e+06 202080 648988. 2245.63 3.40 0.11361 0.0986057 25390 158009 -1 2167 19 832 2302 145773 32176 0 0 145773 32176 2302 1300 0 0 7588 6474 0 0 12403 8777 0 0 2302 1503 0 0 60175 7197 0 0 61003 6925 0 0 2302 0 0 1470 2590 2255 16683 0 0 6.49812 6.49812 -146.123 -6.49812 0 0 828058. 2865.25 0.28 0.06 0.10 -1 -1 0.28 0.0184955 0.0168278 93 119 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 13.40 vpr 53.23 MiB -1 -1 0.23 17432 12 0.28 -1 -1 32144 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54504 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 14.8 MiB 1.34 1028 53.2 MiB 0.05 0.00 6.09963 -126.252 -6.09963 6.09963 0.58 0.000144689 0.000116032 0.0114596 0.00943815 34 3345 30 6.79088e+06 255968 618332. 2139.56 9.08 0.19113 0.167887 25102 150614 -1 2501 19 1113 3060 190245 42897 0 0 190245 42897 3060 1779 0 0 9918 8477 0 0 17118 11633 0 0 3060 2074 0 0 76595 9742 0 0 80494 9192 0 0 3060 0 0 1947 3071 3233 21639 0 0 6.51468 6.51468 -144.496 -6.51468 0 0 787024. 2723.27 0.20 0.05 0.14 -1 -1 0.20 0.01333 0.0122249 111 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 10.09 vpr 53.43 MiB -1 -1 0.15 17596 11 0.26 -1 -1 32040 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 15.0 MiB 1.84 1255 53.4 MiB 0.06 0.00 5.62872 -116.237 -5.62872 5.62872 1.02 0.000316848 0.000258913 0.0166957 0.0140552 36 3356 38 6.79088e+06 269440 648988. 2245.63 4.63 0.145632 0.126849 25390 158009 -1 2797 18 1171 3592 245816 52139 0 0 245816 52139 3592 2040 0 0 11586 9940 0 0 19366 13386 0 0 3592 2293 0 0 99828 12953 0 0 107852 11527 0 0 3592 0 0 2421 4857 5357 32531 0 0 6.12992 6.12992 -134.265 -6.12992 0 0 828058. 2865.25 0.32 0.05 0.14 -1 -1 0.32 0.0142578 0.0130481 125 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 7.65 vpr 53.42 MiB -1 -1 0.19 17360 11 0.25 -1 -1 32108 -1 -1 19 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 14.8 MiB 1.60 1041 53.4 MiB 0.04 0.00 5.48104 -108.223 -5.48104 5.48104 0.84 0.000267088 0.000214862 0.0106002 0.00893415 36 2792 26 6.79088e+06 255968 648988. 2245.63 2.75 0.0865725 0.0757689 25390 158009 -1 2423 18 1107 3315 226448 51406 0 0 226448 51406 3315 1758 0 0 10835 9458 0 0 18856 12866 0 0 3315 2035 0 0 91784 13050 0 0 98343 12239 0 0 3315 0 0 2208 4089 4273 28537 0 0 5.73164 5.73164 -124.873 -5.73164 0 0 828058. 2865.25 0.31 0.09 0.11 -1 -1 0.31 0.0259348 0.0238864 116 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 10.81 vpr 53.20 MiB -1 -1 0.22 17436 13 0.28 -1 -1 32072 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54472 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 14.7 MiB 2.43 1019 53.2 MiB 0.08 0.00 6.0762 -123.922 -6.0762 6.0762 1.05 0.000283403 0.000230899 0.0217727 0.0181641 36 3056 25 6.79088e+06 242496 648988. 2245.63 4.73 0.170911 0.149689 25390 158009 -1 2341 18 1051 2899 168033 38650 0 0 168033 38650 2899 1546 0 0 9539 8209 0 0 15859 11179 0 0 2899 1807 0 0 68266 8107 0 0 68571 7802 0 0 2899 0 0 1848 2672 2662 19321 0 0 6.0762 6.0762 -138.786 -6.0762 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.011597 0.0105635 108 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 8.96 vpr 53.35 MiB -1 -1 0.21 17520 12 0.27 -1 -1 32224 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 14.7 MiB 2.77 1033 53.4 MiB 0.07 0.00 5.79322 -128.672 -5.79322 5.79322 1.03 0.00030129 0.000245403 0.018968 0.0158392 40 2631 17 6.79088e+06 242496 706193. 2443.58 2.35 0.132327 0.116465 26254 175826 -1 2517 17 1238 3336 200686 46403 0 0 200686 46403 3336 1854 0 0 11018 9256 0 0 19162 13023 0 0 3336 2176 0 0 77421 10690 0 0 86413 9404 0 0 3336 0 0 2098 3219 3251 22132 0 0 5.87932 5.87932 -145.848 -5.87932 0 0 926341. 3205.33 0.37 0.08 0.17 -1 -1 0.37 0.0248569 0.0228097 120 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 6.21 vpr 53.27 MiB -1 -1 0.16 17424 13 0.34 -1 -1 32264 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54552 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 14.8 MiB 1.80 1208 53.3 MiB 0.09 0.00 6.92806 -142.087 -6.92806 6.92806 0.60 0.000291823 0.000235478 0.0259122 0.0214035 36 3266 27 6.79088e+06 282912 648988. 2245.63 1.36 0.0779094 0.066896 25390 158009 -1 2597 17 1289 3515 186434 43872 0 0 186434 43872 3515 1772 0 0 11698 9908 0 0 18345 13353 0 0 3515 2142 0 0 74444 8421 0 0 74917 8276 0 0 3515 0 0 2226 3266 3303 23920 0 0 7.76595 7.76595 -165.154 -7.76595 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0141268 0.0128904 137 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 15.20 vpr 53.48 MiB -1 -1 0.20 17844 14 0.34 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54760 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 14.9 MiB 1.64 1332 53.5 MiB 0.08 0.00 7.39006 -154.208 -7.39006 7.39006 0.84 0.000312518 0.000252507 0.0229703 0.01903 36 3846 25 6.79088e+06 269440 648988. 2245.63 10.03 0.152851 0.134461 25390 158009 -1 3081 19 1443 4102 253701 55197 0 0 253701 55197 4102 2187 0 0 12958 11120 0 0 22171 15009 0 0 4102 2490 0 0 105442 12299 0 0 104926 12092 0 0 4102 0 0 2659 4716 5437 33628 0 0 7.64066 7.64066 -176.264 -7.64066 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0265055 0.0242406 132 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 10.14 vpr 53.37 MiB -1 -1 0.23 17772 14 0.31 -1 -1 32220 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54652 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 14.7 MiB 2.50 1041 53.4 MiB 0.06 0.00 6.96371 -135.673 -6.96371 6.96371 0.59 0.000171186 0.000132275 0.016486 0.0133398 36 3431 33 6.79088e+06 229024 648988. 2245.63 4.61 0.143082 0.126701 25390 158009 -1 2502 17 1247 3530 209743 49428 0 0 209743 49428 3530 1895 0 0 11531 9755 0 0 19137 13496 0 0 3530 2155 0 0 82340 11347 0 0 89675 10780 0 0 3530 0 0 2283 4143 4341 29437 0 0 7.08901 7.08901 -151.69 -7.08901 0 0 828058. 2865.25 0.35 0.08 0.14 -1 -1 0.35 0.0237825 0.0216617 122 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 10.06 vpr 53.46 MiB -1 -1 0.25 17772 13 0.46 -1 -1 32156 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 14.8 MiB 2.37 1352 53.5 MiB 0.07 0.00 6.83498 -141.936 -6.83498 6.83498 1.04 0.000393119 0.000308315 0.0198466 0.0165998 40 3330 20 6.79088e+06 296384 706193. 2443.58 3.52 0.163004 0.144683 26254 175826 -1 3178 19 1487 4123 293912 62654 0 0 293912 62654 4123 2161 0 0 13999 11994 0 0 24712 16668 0 0 4123 2613 0 0 124056 14559 0 0 122899 14659 0 0 4123 0 0 2636 4975 5181 32325 0 0 7.12478 7.12478 -162.281 -7.12478 0 0 926341. 3205.33 0.36 0.10 0.17 -1 -1 0.36 0.0299416 0.027417 144 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 8.70 vpr 53.13 MiB -1 -1 0.22 17204 13 0.25 -1 -1 32132 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 14.7 MiB 2.23 1000 53.1 MiB 0.06 0.00 6.04387 -125.188 -6.04387 6.04387 1.05 0.000285016 0.00023457 0.0146822 0.012374 36 2718 17 6.79088e+06 242496 648988. 2245.63 2.78 0.09938 0.0870599 25390 158009 -1 2242 17 1003 2585 161055 36735 0 0 161055 36735 2585 1465 0 0 8481 7336 0 0 14033 9729 0 0 2585 1702 0 0 65378 8524 0 0 67993 7979 0 0 2585 0 0 1582 1958 2574 16405 0 0 6.41977 6.41977 -143.364 -6.41977 0 0 828058. 2865.25 0.33 0.06 0.12 -1 -1 0.33 0.0194712 0.0177411 104 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 12.76 vpr 53.64 MiB -1 -1 0.25 17736 13 0.59 -1 -1 32336 -1 -1 22 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54928 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 15.2 MiB 2.33 1333 53.6 MiB 0.07 0.00 6.79146 -140.595 -6.79146 6.79146 1.03 0.000359738 0.000294656 0.0187885 0.0158359 44 3534 25 6.79088e+06 296384 787024. 2723.27 6.17 0.216939 0.191146 27118 194962 -1 2886 17 1518 4127 221393 49278 0 0 221393 49278 4127 1954 0 0 12898 11131 0 0 21162 14603 0 0 4127 2453 0 0 87982 9962 0 0 91097 9175 0 0 4127 0 0 2609 3768 3531 27087 0 0 6.97485 6.97485 -158.589 -6.97485 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0257885 0.0234655 145 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 10.79 vpr 53.36 MiB -1 -1 0.24 17520 14 0.38 -1 -1 32160 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 14.9 MiB 2.15 1288 53.4 MiB 0.04 0.00 6.80702 -148.946 -6.80702 6.80702 0.82 0.000186169 0.000149236 0.011708 0.00972095 46 2966 18 6.79088e+06 242496 828058. 2865.25 4.82 0.16532 0.145144 27406 200422 -1 2524 15 1162 3441 185985 40849 0 0 185985 40849 3441 1590 0 0 10765 9259 0 0 17087 11776 0 0 3441 1981 0 0 74617 8286 0 0 76634 7957 0 0 3441 0 0 2279 4031 3785 27434 0 0 7.25783 7.25783 -164.531 -7.25783 0 0 1.01997e+06 3529.29 0.40 0.07 0.17 -1 -1 0.40 0.023226 0.0213648 128 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 8.29 vpr 53.43 MiB -1 -1 0.24 17488 13 0.31 -1 -1 32320 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 14.8 MiB 2.43 1164 53.4 MiB 0.06 0.00 6.15803 -135.979 -6.15803 6.15803 1.00 0.000323956 0.000267292 0.0168866 0.014304 36 3081 27 6.79088e+06 255968 648988. 2245.63 2.18 0.121453 0.107752 25390 158009 -1 2675 17 1303 3369 205568 45572 0 0 205568 45572 3369 1898 0 0 10892 9347 0 0 18171 12548 0 0 3369 2149 0 0 86069 9669 0 0 83698 9961 0 0 3369 0 0 2066 3116 3566 23113 0 0 6.40863 6.40863 -152.927 -6.40863 0 0 828058. 2865.25 0.22 0.05 0.15 -1 -1 0.22 0.0141905 0.0130562 124 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 7.43 vpr 53.50 MiB -1 -1 0.25 17868 13 0.26 -1 -1 32140 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54780 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 14.8 MiB 2.06 1051 53.5 MiB 0.06 0.00 6.13113 -121.375 -6.13113 6.13113 0.59 0.000164422 0.000133129 0.0148087 0.0123175 36 3244 35 6.79088e+06 255968 648988. 2245.63 2.43 0.0844257 0.0729592 25390 158009 -1 2707 20 1613 4252 284132 62796 0 0 284132 62796 4252 2510 0 0 13484 11753 0 0 23436 15740 0 0 4252 2869 0 0 116979 15378 0 0 121729 14546 0 0 4252 0 0 2639 5158 4908 32057 0 0 6.40858 6.40858 -140.488 -6.40858 0 0 828058. 2865.25 0.35 0.10 0.15 -1 -1 0.35 0.0256197 0.0230424 121 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 11.20 vpr 53.76 MiB -1 -1 0.24 17436 14 0.49 -1 -1 32300 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 15.3 MiB 2.08 1423 53.8 MiB 0.11 0.00 6.92457 -146.586 -6.92457 6.92457 1.00 0.000374892 0.000307466 0.0330006 0.0276004 44 3914 26 6.79088e+06 282912 787024. 2723.27 5.00 0.211571 0.186157 27118 194962 -1 3225 17 1522 4550 270679 58412 0 0 270679 58412 4550 2364 0 0 14061 12293 0 0 23798 16227 0 0 4550 2813 0 0 108459 12882 0 0 115261 11833 0 0 4550 0 0 3028 5094 5137 34567 0 0 7.54758 7.54758 -167.176 -7.54758 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0239624 0.0219553 154 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 10.13 vpr 53.43 MiB -1 -1 0.17 17844 11 0.39 -1 -1 32172 -1 -1 23 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 15.0 MiB 2.62 1221 53.4 MiB 0.04 0.00 6.13002 -122.072 -6.13002 6.13002 0.86 0.000173302 0.000142141 0.0095797 0.00807917 36 3535 45 6.79088e+06 309856 648988. 2245.63 4.20 0.200516 0.178894 25390 158009 -1 2762 18 1435 4175 253228 55470 0 0 253228 55470 4175 2164 0 0 13367 11431 0 0 22785 15541 0 0 4175 2514 0 0 103206 12126 0 0 105520 11694 0 0 4175 0 0 2740 4944 4953 32772 0 0 6.38062 6.38062 -137.427 -6.38062 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0255531 0.0234699 136 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 9.84 vpr 53.14 MiB -1 -1 0.15 17164 13 0.20 -1 -1 32172 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 14.5 MiB 3.76 1159 53.1 MiB 0.04 0.00 6.02924 -138.116 -6.02924 6.02924 1.03 0.000263702 0.000216395 0.00947961 0.00810144 36 3021 19 6.79088e+06 188608 648988. 2245.63 2.39 0.0895048 0.0795143 25390 158009 -1 2512 26 1212 2948 325409 116383 0 0 325409 116383 2948 1919 0 0 9350 7974 0 0 17855 11463 0 0 2948 2153 0 0 148404 47962 0 0 143904 44912 0 0 2948 0 0 1736 2507 2524 16319 0 0 6.32674 6.32674 -156.073 -6.32674 0 0 828058. 2865.25 0.34 0.13 0.15 -1 -1 0.34 0.0281293 0.0256377 98 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 8.08 vpr 53.46 MiB -1 -1 0.22 17776 14 0.32 -1 -1 32312 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 15.1 MiB 2.12 1201 53.5 MiB 0.06 0.00 6.96377 -145.84 -6.96377 6.96377 0.94 0.000167284 0.000135123 0.0175074 0.0146616 36 3349 46 6.79088e+06 229024 648988. 2245.63 2.19 0.117945 0.103622 25390 158009 -1 2728 21 1303 3366 204858 45960 0 0 204858 45960 3366 1990 0 0 11090 9439 0 0 18119 12736 0 0 3366 2241 0 0 82951 10183 0 0 85966 9371 0 0 3366 0 0 2063 3658 3546 24061 0 0 7.55106 7.55106 -166.918 -7.55106 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0277215 0.0252488 122 172 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 7.44 vpr 54.17 MiB -1 -1 0.26 17920 15 0.56 -1 -1 32188 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55468 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 15.3 MiB 1.57 1439 54.2 MiB 0.07 0.00 7.55804 -160.496 -7.55804 7.55804 0.75 0.000207286 0.000168281 0.0189269 0.0157067 44 3828 34 6.79088e+06 309856 787024. 2723.27 2.67 0.128891 0.111807 27118 194962 -1 3085 19 1786 4745 252243 57061 0 0 252243 57061 4745 2293 0 0 14961 12990 0 0 24882 17165 0 0 4745 2784 0 0 100231 11156 0 0 102679 10673 0 0 4745 0 0 2959 3801 4575 30298 0 0 7.93394 7.93394 -174.894 -7.93394 0 0 997811. 3452.63 0.25 0.06 0.10 -1 -1 0.25 0.0188547 0.0172842 163 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 7.51 vpr 53.08 MiB -1 -1 0.13 17240 11 0.19 -1 -1 32128 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54356 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 14.5 MiB 2.06 939 53.1 MiB 0.06 0.00 5.75402 -124.095 -5.75402 5.75402 0.95 0.000244081 0.000200122 0.0142336 0.0119591 30 3008 34 6.79088e+06 202080 556674. 1926.21 2.10 0.0572068 0.0499287 24526 138013 -1 2217 25 1096 3079 297475 111879 0 0 297475 111879 3079 1637 0 0 9356 8043 0 0 15866 10554 0 0 3079 1896 0 0 128817 44256 0 0 137278 45493 0 0 3079 0 0 1983 4094 3324 24730 0 0 6.12992 6.12992 -142.791 -6.12992 0 0 706193. 2443.58 0.28 0.11 0.12 -1 -1 0.28 0.0235617 0.0213698 97 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 8.83 vpr 53.31 MiB -1 -1 0.19 17184 12 0.24 -1 -1 32100 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 14.8 MiB 1.70 942 53.3 MiB 0.08 0.00 5.70019 -121.214 -5.70019 5.70019 0.96 0.000268899 0.000216275 0.020821 0.0171179 38 3133 27 6.79088e+06 229024 678818. 2348.85 3.80 0.109101 0.0946969 25966 169698 -1 2320 17 1308 3565 185216 45111 0 0 185216 45111 3565 2037 0 0 11127 9782 0 0 17181 12048 0 0 3565 2364 0 0 71352 9837 0 0 78426 9043 0 0 3565 0 0 2257 3209 3223 23042 0 0 5.9865 5.9865 -143.332 -5.9865 0 0 902133. 3121.57 0.31 0.04 0.15 -1 -1 0.31 0.0136281 0.012546 112 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 10.18 vpr 53.63 MiB -1 -1 0.22 17364 12 0.28 -1 -1 32160 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 15.0 MiB 1.53 1374 53.6 MiB 0.03 0.00 6.21181 -135.033 -6.21181 6.21181 0.59 0.00019678 0.000160886 0.00887468 0.00756316 36 3693 24 6.79088e+06 255968 648988. 2245.63 5.83 0.132786 0.115653 25390 158009 -1 3170 21 1639 5089 336791 72250 0 0 336791 72250 5089 2827 0 0 15901 13907 0 0 27896 18552 0 0 5089 3279 0 0 140343 17097 0 0 142473 16588 0 0 5089 0 0 3450 6804 7016 44651 0 0 7.08891 7.08891 -161.559 -7.08891 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0252571 0.0226976 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 11.42 vpr 53.66 MiB -1 -1 0.24 17584 12 0.31 -1 -1 32180 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 15.0 MiB 1.91 1373 53.7 MiB 0.06 0.00 6.29447 -134.471 -6.29447 6.29447 1.02 0.000308519 0.000250554 0.0161535 0.0135915 38 3651 40 6.79088e+06 242496 678818. 2348.85 5.47 0.142597 0.125736 25966 169698 -1 3021 29 1715 5126 475691 185268 0 0 475691 185268 5126 2698 0 0 14788 13106 0 0 26488 16867 0 0 5126 3260 0 0 211759 76106 0 0 212404 73231 0 0 5126 0 0 3411 5432 5929 38410 0 0 6.33018 6.33018 -152.882 -6.33018 0 0 902133. 3121.57 0.36 0.19 0.16 -1 -1 0.36 0.03913 0.0357354 130 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 11.16 vpr 53.90 MiB -1 -1 0.23 18052 14 0.45 -1 -1 32356 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 15.3 MiB 2.28 1479 53.9 MiB 0.06 0.00 7.3152 -150.802 -7.3152 7.3152 0.87 0.000378758 0.000304586 0.0154421 0.0130518 40 3643 47 6.79088e+06 296384 706193. 2443.58 5.34 0.227365 0.198054 26254 175826 -1 3411 22 1944 5895 328979 73607 0 0 328979 73607 5895 2825 0 0 18772 15746 0 0 32581 21500 0 0 5895 3588 0 0 132694 15055 0 0 133142 14893 0 0 5895 0 0 3951 6288 7814 45932 0 0 7.6911 7.6911 -170.177 -7.6911 0 0 926341. 3205.33 0.22 0.07 0.09 -1 -1 0.22 0.0192555 0.0174769 167 232 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 10.85 vpr 53.30 MiB -1 -1 0.14 17448 12 0.29 -1 -1 32220 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 14.7 MiB 2.10 987 53.3 MiB 0.08 0.00 6.07188 -116.947 -6.07188 6.07188 0.97 0.000302886 0.000233061 0.0212505 0.01762 44 2667 22 6.79088e+06 255968 787024. 2723.27 5.01 0.165692 0.144445 27118 194962 -1 2043 16 990 2923 142810 34327 0 0 142810 34327 2923 1452 0 0 9154 7645 0 0 14682 10193 0 0 2923 1785 0 0 53794 6860 0 0 59334 6392 0 0 2923 0 0 1933 3013 2771 21954 0 0 6.11878 6.11878 -128.537 -6.11878 0 0 997811. 3452.63 0.40 0.06 0.16 -1 -1 0.40 0.021502 0.0197729 121 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 13.84 vpr 53.10 MiB -1 -1 0.20 17208 11 0.22 -1 -1 32052 -1 -1 19 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54372 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 14.5 MiB 2.72 956 53.1 MiB 0.08 0.00 5.54262 -105.114 -5.54262 5.54262 1.11 0.000263108 0.000220185 0.0218619 0.0182924 28 2812 41 6.79088e+06 255968 531479. 1839.03 7.38 0.170712 0.149786 23950 126010 -1 2295 19 1073 2662 165609 38132 0 0 165609 38132 2662 1720 0 0 8742 7389 0 0 14340 10201 0 0 2662 1911 0 0 67676 8672 0 0 69527 8239 0 0 2662 0 0 1589 2581 2678 16912 0 0 6.16912 6.16912 -125.528 -6.16912 0 0 648988. 2245.63 0.29 0.08 0.11 -1 -1 0.29 0.0230754 0.0210766 104 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 13.29 vpr 54.26 MiB -1 -1 0.23 18240 13 0.49 -1 -1 32332 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55560 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 15.5 MiB 2.04 1827 54.3 MiB 0.09 0.00 6.73311 -141.588 -6.73311 6.73311 0.96 0.00043403 0.000354165 0.0265713 0.0223793 40 4493 22 6.79088e+06 350272 706193. 2443.58 7.15 0.228762 0.204072 26254 175826 -1 4433 26 2054 6283 536336 143969 0 0 536336 143969 6283 3312 0 0 20624 17599 0 0 36469 24160 0 0 6283 3942 0 0 232022 48513 0 0 234655 46443 0 0 6283 0 0 4229 8706 8561 54399 0 0 7.23431 7.23431 -168.406 -7.23431 0 0 926341. 3205.33 0.34 0.18 0.16 -1 -1 0.34 0.0466868 0.0424622 188 285 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 7.44 vpr 53.49 MiB -1 -1 0.23 17768 14 0.35 -1 -1 32528 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54776 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 15.0 MiB 2.33 1170 53.5 MiB 0.04 0.00 6.8027 -138.833 -6.8027 6.8027 0.63 0.000187571 0.000153761 0.0112403 0.00942757 30 3394 40 6.79088e+06 296384 556674. 1926.21 1.93 0.0793433 0.0695041 24526 138013 -1 2702 20 1334 3663 197644 44721 0 0 197644 44721 3663 2072 0 0 11363 9674 0 0 17235 12147 0 0 3663 2299 0 0 80302 9351 0 0 81418 9178 0 0 3663 0 0 2329 3549 3211 24370 0 0 7.29271 7.29271 -161.4 -7.29271 0 0 706193. 2443.58 0.20 0.05 0.12 -1 -1 0.20 0.0150458 0.0136796 130 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 5.98 vpr 53.13 MiB -1 -1 0.22 17524 12 0.21 -1 -1 32092 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54404 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 14.7 MiB 1.36 1143 53.1 MiB 0.03 0.00 5.77407 -129.388 -5.77407 5.77407 0.59 0.000139831 0.000112043 0.00771944 0.00643716 38 2856 21 6.79088e+06 242496 678818. 2348.85 1.82 0.0719534 0.0626483 25966 169698 -1 2344 18 1071 2705 165356 35886 0 0 165356 35886 2705 1540 0 0 8595 7244 0 0 13281 9321 0 0 2705 1712 0 0 68634 8397 0 0 69436 7672 0 0 2705 0 0 1634 2369 2114 15982 0 0 6.35018 6.35018 -149.287 -6.35018 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0208377 0.0190657 109 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 18.18 vpr 53.50 MiB -1 -1 0.22 17596 13 0.38 -1 -1 32248 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 15.0 MiB 1.87 1220 53.5 MiB 0.09 0.00 6.71317 -142.432 -6.71317 6.71317 0.75 0.000315292 0.000255217 0.025382 0.0210607 36 3582 23 6.79088e+06 242496 648988. 2245.63 12.80 0.164681 0.143033 25390 158009 -1 2949 27 1283 3520 410011 147385 0 0 410011 147385 3520 1875 0 0 11514 9737 0 0 21285 14354 0 0 3520 2157 0 0 187506 60705 0 0 182666 58557 0 0 3520 0 0 2237 3445 3601 24567 0 0 7.08907 7.08907 -163.2 -7.08907 0 0 828058. 2865.25 0.22 0.11 0.09 -1 -1 0.22 0.0208431 0.0188403 128 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 9.11 vpr 54.04 MiB -1 -1 0.23 17632 13 0.29 -1 -1 32312 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55336 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 15.4 MiB 2.09 1453 54.0 MiB 0.10 0.00 6.07963 -130.511 -6.07963 6.07963 0.59 0.000269752 0.000197921 0.0189969 0.0158633 40 3790 28 6.79088e+06 323328 706193. 2443.58 3.70 0.1671 0.146898 26254 175826 -1 3441 33 1657 4835 545232 203948 0 0 545232 203948 4835 2583 0 0 15797 13524 0 0 31345 19914 0 0 4835 3059 0 0 246863 84069 0 0 241557 80799 0 0 4835 0 0 3178 5320 5421 37586 0 0 6.66688 6.66688 -155.041 -6.66688 0 0 926341. 3205.33 0.37 0.22 0.16 -1 -1 0.37 0.0501787 0.0456379 157 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 7.86 vpr 53.55 MiB -1 -1 0.23 17508 11 0.31 -1 -1 32124 -1 -1 22 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 15.0 MiB 2.12 1129 53.5 MiB 0.04 0.00 5.79322 -115.818 -5.79322 5.79322 0.59 0.000239344 0.000190315 0.00973988 0.00810058 38 3092 22 6.79088e+06 296384 678818. 2348.85 2.87 0.137007 0.122068 25966 169698 -1 2360 15 1102 3265 158636 37410 0 0 158636 37410 3265 1524 0 0 10394 8731 0 0 15292 11185 0 0 3265 1862 0 0 62580 7206 0 0 63840 6902 0 0 3265 0 0 2163 3436 3616 25286 0 0 6.04382 6.04382 -131.818 -6.04382 0 0 902133. 3121.57 0.24 0.04 0.15 -1 -1 0.24 0.0133389 0.0123187 141 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 8.38 vpr 53.63 MiB -1 -1 0.24 17748 15 0.47 -1 -1 32300 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 15.2 MiB 1.99 1382 53.6 MiB 0.05 0.00 7.17871 -155.704 -7.17871 7.17871 0.66 0.000234088 0.000195813 0.0128408 0.0107174 40 3368 27 6.79088e+06 296384 706193. 2443.58 2.72 0.126061 0.110872 26254 175826 -1 3198 23 1419 4355 273246 59466 0 0 273246 59466 4355 2243 0 0 14341 12008 0 0 24599 16488 0 0 4355 2695 0 0 110127 13412 0 0 115469 12620 0 0 4355 0 0 2936 6044 5692 38115 0 0 7.76252 7.76252 -178.306 -7.76252 0 0 926341. 3205.33 0.35 0.10 0.16 -1 -1 0.35 0.0322883 0.0294776 147 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 9.89 vpr 53.65 MiB -1 -1 0.14 17692 13 0.32 -1 -1 32288 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 15.0 MiB 2.30 1395 53.7 MiB 0.07 0.00 6.82728 -147.064 -6.82728 6.82728 0.94 0.000292394 0.000237097 0.0182883 0.0152836 44 3144 18 6.79088e+06 282912 787024. 2723.27 4.01 0.17346 0.152435 27118 194962 -1 2728 16 1213 3616 183895 42137 0 0 183895 42137 3616 1698 0 0 11420 9753 0 0 18424 12989 0 0 3616 2096 0 0 74719 7538 0 0 72100 8063 0 0 3616 0 0 2403 3572 4449 28152 0 0 7.03867 7.03867 -162.716 -7.03867 0 0 997811. 3452.63 0.37 0.04 0.15 -1 -1 0.37 0.0143148 0.0131946 143 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 9.01 vpr 53.03 MiB -1 -1 0.20 17352 12 0.25 -1 -1 32168 -1 -1 18 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54300 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 14.6 MiB 1.84 951 53.0 MiB 0.09 0.00 6.41551 -125.304 -6.41551 6.41551 1.01 0.00023384 0.000190908 0.0248385 0.020631 36 3062 50 6.79088e+06 242496 648988. 2245.63 3.65 0.119067 0.103442 25390 158009 -1 2334 17 1156 2821 160986 38839 0 0 160986 38839 2821 1632 0 0 9242 7898 0 0 15065 10867 0 0 2821 1936 0 0 63469 8463 0 0 67568 8043 0 0 2821 0 0 1665 2140 2079 15579 0 0 6.62691 6.62691 -145.509 -6.62691 0 0 828058. 2865.25 0.22 0.04 0.09 -1 -1 0.22 0.012863 0.0117733 111 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 11.99 vpr 53.01 MiB -1 -1 0.18 17584 11 0.19 -1 -1 32220 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54284 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 14.4 MiB 1.92 1098 53.0 MiB 0.08 0.00 5.49223 -122.915 -5.49223 5.49223 1.01 0.000251899 0.000204815 0.0220201 0.0181893 30 3052 40 6.79088e+06 188608 556674. 1926.21 6.51 0.148767 0.129395 24526 138013 -1 2360 25 1111 2725 252832 98316 0 0 252832 98316 2725 1527 0 0 8313 7197 0 0 13716 9429 0 0 2725 1787 0 0 114189 39815 0 0 111164 38561 0 0 2725 0 0 1614 2379 2335 15949 0 0 5.74283 5.74283 -141.786 -5.74283 0 0 706193. 2443.58 0.28 0.09 0.12 -1 -1 0.28 0.0209137 0.0186666 98 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 5.38 vpr 53.65 MiB -1 -1 0.22 17436 13 0.44 -1 -1 32240 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 15.0 MiB 1.23 1143 53.7 MiB 0.04 0.00 6.8104 -133.532 -6.8104 6.8104 0.58 0.000180963 0.000147261 0.00964005 0.00807021 38 2974 28 6.79088e+06 282912 678818. 2348.85 1.26 0.0644897 0.0562893 25966 169698 -1 2590 17 1422 4125 211061 48581 0 0 211061 48581 4125 2000 0 0 12685 10944 0 0 20173 13855 0 0 4125 2400 0 0 86444 9421 0 0 83509 9961 0 0 4125 0 0 2703 4155 5236 34391 0 0 6.8104 6.8104 -148.146 -6.8104 0 0 902133. 3121.57 0.28 0.08 0.11 -1 -1 0.28 0.0242907 0.0221772 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 6.71 vpr 52.92 MiB -1 -1 0.18 17320 10 0.20 -1 -1 32140 -1 -1 17 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54192 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 14.3 MiB 2.40 854 52.9 MiB 0.05 0.00 5.03782 -105.349 -5.03782 5.03782 0.96 0.000232228 0.000184599 0.0144128 0.0119247 30 2536 42 6.79088e+06 229024 556674. 1926.21 1.17 0.0539378 0.0464661 24526 138013 -1 1979 18 980 2447 126284 30785 0 0 126284 30785 2447 1334 0 0 7866 6676 0 0 11639 8424 0 0 2447 1546 0 0 51137 6231 0 0 50748 6574 0 0 2447 0 0 1467 2118 2162 15286 0 0 5.23803 5.23803 -121.984 -5.23803 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.0106204 0.00968456 101 130 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 16.71 vpr 53.21 MiB -1 -1 0.19 17328 14 0.24 -1 -1 32032 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54488 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 14.8 MiB 3.14 1164 53.2 MiB 0.03 0.00 6.49828 -134.387 -6.49828 6.49828 0.59 0.000142366 0.000114605 0.00785508 0.00662708 30 3396 48 6.79088e+06 242496 556674. 1926.21 10.90 0.14304 0.125849 24526 138013 -1 2581 16 1129 2926 172864 38449 0 0 172864 38449 2926 1724 0 0 9171 7730 0 0 13719 9829 0 0 2926 1944 0 0 71767 8701 0 0 72355 8521 0 0 2926 0 0 1797 3130 2984 20967 0 0 6.87418 6.87418 -157.919 -6.87418 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0146557 0.0135089 110 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 10.06 vpr 53.39 MiB -1 -1 0.19 17736 13 0.38 -1 -1 32276 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 15.0 MiB 3.29 1262 53.4 MiB 0.07 0.00 6.43445 -135.684 -6.43445 6.43445 1.04 0.000318087 0.000261934 0.0181801 0.0153743 36 3687 49 6.79088e+06 269440 648988. 2245.63 3.16 0.142516 0.127216 25390 158009 -1 2919 20 1492 3934 329805 96629 0 0 329805 96629 3934 2394 0 0 12652 10972 0 0 22825 15140 0 0 3934 2720 0 0 142272 32806 0 0 144188 32597 0 0 3934 0 0 2442 4191 4226 27445 0 0 6.93565 6.93565 -159.759 -6.93565 0 0 828058. 2865.25 0.21 0.07 0.08 -1 -1 0.21 0.0142351 0.0129418 125 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 11.29 vpr 52.90 MiB -1 -1 0.21 17164 12 0.20 -1 -1 32172 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54168 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 14.4 MiB 4.27 996 52.9 MiB 0.08 0.00 5.65673 -125.375 -5.65673 5.65673 0.86 0.00023668 0.000189941 0.0217844 0.0178306 36 2753 49 6.79088e+06 229024 648988. 2245.63 3.72 0.11462 0.0986345 25390 158009 -1 2166 15 971 2417 143304 32566 0 0 143304 32566 2417 1402 0 0 7872 6654 0 0 12941 9167 0 0 2417 1606 0 0 60443 6686 0 0 57214 7051 0 0 2417 0 0 1446 1996 2245 15462 0 0 5.65673 5.65673 -137.333 -5.65673 0 0 828058. 2865.25 0.25 0.03 0.15 -1 -1 0.25 0.0100663 0.00921168 99 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 10.64 vpr 53.51 MiB -1 -1 0.23 17512 12 0.24 -1 -1 32264 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 15.0 MiB 2.58 1232 53.5 MiB 0.06 0.00 5.91508 -131.625 -5.91508 5.91508 1.00 0.000329773 0.000267668 0.0165835 0.0138142 38 2945 35 6.79088e+06 242496 678818. 2348.85 4.42 0.162879 0.141443 25966 169698 -1 2606 17 1192 3484 190410 41467 0 0 190410 41467 3484 1734 0 0 10830 9148 0 0 16390 11614 0 0 3484 1982 0 0 77344 8734 0 0 78878 8255 0 0 3484 0 0 2292 4583 4223 30026 0 0 6.16568 6.16568 -147.126 -6.16568 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0249322 0.0228038 130 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 9.93 vpr 53.61 MiB -1 -1 0.22 17740 13 0.42 -1 -1 32164 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54900 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 14.9 MiB 1.33 1271 53.6 MiB 0.04 0.00 6.52941 -139.677 -6.52941 6.52941 0.74 0.000213772 0.000176761 0.00906094 0.00766199 42 3482 32 6.79088e+06 269440 744469. 2576.02 5.12 0.19806 0.173966 26542 182613 -1 2738 15 1203 3463 198401 44689 0 0 198401 44689 3463 1767 0 0 11533 9771 0 0 18904 13480 0 0 3463 2050 0 0 81404 8785 0 0 79634 8836 0 0 3463 0 0 2260 3325 3666 25350 0 0 6.69042 6.69042 -153.183 -6.69042 0 0 949917. 3286.91 0.38 0.08 0.17 -1 -1 0.38 0.0249855 0.0229988 143 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 5.76 vpr 53.15 MiB -1 -1 0.20 17560 11 0.15 -1 -1 31884 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 14.5 MiB 1.84 926 53.2 MiB 0.04 0.00 5.4461 -120.98 -5.4461 5.4461 0.60 0.000154465 0.000127742 0.00979684 0.00813442 44 2839 39 6.79088e+06 215552 787024. 2723.27 1.43 0.0533054 0.0458066 27118 194962 -1 2183 17 1179 3120 171941 39976 0 0 171941 39976 3120 1677 0 0 9894 8523 0 0 16082 11143 0 0 3120 2044 0 0 67070 8753 0 0 72655 7836 0 0 3120 0 0 1941 2588 2625 18870 0 0 5.5714 5.5714 -134.763 -5.5714 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0111802 0.0102276 106 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 8.90 vpr 53.22 MiB -1 -1 0.20 17432 13 0.22 -1 -1 32104 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 14.7 MiB 2.35 1159 53.2 MiB 0.08 0.00 6.38062 -142.026 -6.38062 6.38062 0.93 0.000272669 0.000219947 0.0211272 0.0174006 36 3282 49 6.79088e+06 202080 648988. 2245.63 3.47 0.137307 0.12028 25390 158009 -1 2665 19 1261 3415 219763 48515 0 0 219763 48515 3415 1955 0 0 11207 9786 0 0 19167 13061 0 0 3415 2204 0 0 91571 10825 0 0 90988 10684 0 0 3415 0 0 2154 3509 3728 24310 0 0 6.63122 6.63122 -160.793 -6.63122 0 0 828058. 2865.25 0.31 0.08 0.09 -1 -1 0.31 0.0223169 0.0201576 113 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 24.51 vpr 53.58 MiB -1 -1 0.22 17436 13 0.29 -1 -1 32300 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 15.1 MiB 1.50 1339 53.6 MiB 0.07 0.00 6.40869 -143.558 -6.40869 6.40869 1.02 0.000338652 0.000277442 0.0185437 0.0156056 36 3941 38 6.79088e+06 255968 648988. 2245.63 19.14 0.22805 0.199483 25390 158009 -1 3262 18 1589 4253 298036 64211 0 0 298036 64211 4253 2530 0 0 14076 12061 0 0 23469 16660 0 0 4253 2887 0 0 123077 15679 0 0 128908 14394 0 0 4253 0 0 2664 4722 4868 30043 0 0 6.69494 6.69494 -166.462 -6.69494 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0276072 0.0252092 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 9.12 vpr 53.32 MiB -1 -1 0.20 17432 11 0.23 -1 -1 32264 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 14.7 MiB 1.81 1099 53.3 MiB 0.05 0.00 5.25814 -109.588 -5.25814 5.25814 0.65 0.000173473 0.000139705 0.0144243 0.0119392 36 2997 34 6.79088e+06 255968 648988. 2245.63 4.34 0.110945 0.0974448 25390 158009 -1 2627 22 1211 3685 332185 100913 0 0 332185 100913 3685 1938 0 0 12126 10557 0 0 22356 14871 0 0 3685 2273 0 0 144971 36553 0 0 145362 34721 0 0 3685 0 0 2474 5053 5440 33620 0 0 5.57478 5.57478 -128.323 -5.57478 0 0 828058. 2865.25 0.30 0.11 0.14 -1 -1 0.30 0.0253815 0.0231658 116 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 12.89 vpr 53.72 MiB -1 -1 0.26 18004 14 0.43 -1 -1 32220 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 15.2 MiB 1.99 1286 53.7 MiB 0.12 0.00 7.31171 -155.874 -7.31171 7.31171 1.02 0.000410373 0.000326297 0.0345962 0.0284828 36 4122 44 6.79088e+06 309856 648988. 2245.63 6.78 0.205006 0.179535 25390 158009 -1 2916 20 1626 4183 244257 61182 0 0 244257 61182 4183 2340 0 0 13588 11342 0 0 22016 15678 0 0 4183 2700 0 0 98793 14844 0 0 101494 14278 0 0 4183 0 0 2557 4043 4301 28168 0 0 7.59796 7.59796 -176.516 -7.59796 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.0293789 0.0266662 159 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 8.49 vpr 53.20 MiB -1 -1 0.16 17208 12 0.20 -1 -1 32084 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 14.5 MiB 2.73 1128 53.2 MiB 0.05 0.00 5.48879 -127.91 -5.48879 5.48879 0.71 0.000246286 0.000200605 0.013203 0.0110858 44 2685 27 6.79088e+06 255968 787024. 2723.27 3.09 0.0934128 0.0816102 27118 194962 -1 2270 16 982 2279 133946 29926 0 0 133946 29926 2279 1283 0 0 7430 6330 0 0 11636 8413 0 0 2279 1479 0 0 55351 6222 0 0 54971 6199 0 0 2279 0 0 1297 1697 1842 12733 0 0 5.73939 5.73939 -142.961 -5.73939 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0130279 0.0119393 106 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 10.04 vpr 53.59 MiB -1 -1 0.23 17772 13 0.40 -1 -1 32572 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54872 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 15.0 MiB 1.84 1264 53.6 MiB 0.04 0.00 6.66283 -138.869 -6.66283 6.66283 0.60 0.00017548 0.000142919 0.00916904 0.00772825 44 3230 18 6.79088e+06 269440 787024. 2723.27 4.95 0.215358 0.192046 27118 194962 -1 2660 17 1261 3602 191441 43885 0 0 191441 43885 3602 1782 0 0 11159 9522 0 0 18288 12774 0 0 3602 2103 0 0 74644 9452 0 0 80146 8252 0 0 3602 0 0 2341 4433 3903 27689 0 0 7.03873 7.03873 -158.456 -7.03873 0 0 997811. 3452.63 0.25 0.04 0.15 -1 -1 0.25 0.0141648 0.0130123 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 7.11 vpr 53.11 MiB -1 -1 0.13 17432 13 0.22 -1 -1 31948 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54384 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 14.7 MiB 1.47 977 53.1 MiB 0.03 0.00 6.33716 -137.986 -6.33716 6.33716 0.66 0.000144704 0.000117886 0.00766931 0.00645305 34 3050 46 6.79088e+06 269440 618332. 2139.56 2.51 0.0838179 0.0726199 25102 150614 -1 2514 18 1138 3008 226288 58719 0 0 226288 58719 3008 1826 0 0 10005 8528 0 0 17297 11906 0 0 3008 2102 0 0 95914 17356 0 0 97056 17001 0 0 3008 0 0 1870 2715 2820 18631 0 0 7.03857 7.03857 -161.542 -7.03857 0 0 787024. 2723.27 0.33 0.08 0.14 -1 -1 0.33 0.0202535 0.0184834 107 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 9.80 vpr 53.47 MiB -1 -1 0.25 17332 12 0.27 -1 -1 32264 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54756 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 14.9 MiB 2.00 1206 53.5 MiB 0.07 0.00 6.24757 -137.536 -6.24757 6.24757 0.95 0.000336236 0.000274738 0.0206917 0.0171466 36 3210 20 6.79088e+06 255968 648988. 2245.63 4.44 0.15961 0.137814 25390 158009 -1 2728 17 1211 3515 214196 47185 0 0 214196 47185 3515 1821 0 0 11329 9670 0 0 18778 13143 0 0 3515 2126 0 0 88912 10195 0 0 88147 10230 0 0 3515 0 0 2304 3966 4231 28372 0 0 6.49817 6.49817 -154.322 -6.49817 0 0 828058. 2865.25 0.22 0.06 0.09 -1 -1 0.22 0.0177823 0.0162253 128 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 12.38 vpr 54.00 MiB -1 -1 0.15 18000 15 0.45 -1 -1 32668 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55300 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 15.5 MiB 1.28 1562 54.0 MiB 0.14 0.00 7.76601 -164.429 -7.76601 7.76601 0.99 0.000491517 0.000400771 0.0445374 0.0372339 44 4132 38 6.79088e+06 336800 787024. 2723.27 6.99 0.363436 0.320505 27118 194962 -1 3369 18 1704 5221 286615 63516 0 0 286615 63516 5221 2352 0 0 16381 14107 0 0 27594 18836 0 0 5221 2966 0 0 118141 12370 0 0 114057 12885 0 0 5221 0 0 3517 6210 6024 43980 0 0 8.14191 8.14191 -183.004 -8.14191 0 0 997811. 3452.63 0.40 0.11 0.18 -1 -1 0.40 0.037334 0.0342682 183 255 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 7.29 vpr 52.70 MiB -1 -1 0.17 17048 10 0.11 -1 -1 31940 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53968 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 14.3 MiB 1.61 870 52.7 MiB 0.02 0.00 4.08102 -101.845 -4.08102 4.08102 0.59 9.7717e-05 7.7843e-05 0.00563661 0.00467344 54 1697 15 6.79088e+06 161664 949917. 3286.91 3.02 0.0522435 0.0449421 28846 232421 -1 1566 13 634 1522 86052 18809 0 0 86052 18809 1522 880 0 0 4727 4038 0 0 8043 5259 0 0 1522 1029 0 0 36310 3706 0 0 33928 3897 0 0 1522 0 0 888 809 946 7819 0 0 4.21746 4.21746 -112.927 -4.21746 0 0 1.17392e+06 4061.99 0.44 0.04 0.18 -1 -1 0.44 0.0107711 0.0098805 66 81 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 5.52 vpr 53.18 MiB -1 -1 0.21 17364 13 0.22 -1 -1 32052 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 14.7 MiB 1.80 1030 53.2 MiB 0.03 0.00 6.33378 -132.688 -6.33378 6.33378 0.59 0.000140415 0.000113489 0.00904918 0.007568 30 3160 26 6.79088e+06 229024 556674. 1926.21 1.08 0.0491127 0.0427748 24526 138013 -1 2477 20 1185 2964 162940 37929 0 0 162940 37929 2964 1799 0 0 9182 7948 0 0 13882 9752 0 0 2964 2023 0 0 66296 8356 0 0 67652 8051 0 0 2964 0 0 1779 2035 2160 16364 0 0 6.59551 6.59551 -155.217 -6.59551 0 0 706193. 2443.58 0.19 0.04 0.07 -1 -1 0.19 0.0116615 0.0106206 103 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 10.47 vpr 53.52 MiB -1 -1 0.18 17360 12 0.27 -1 -1 32072 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 14.9 MiB 2.44 1184 53.5 MiB 0.10 0.00 5.75407 -133.443 -5.75407 5.75407 1.03 0.000307657 0.00025005 0.0263175 0.0218722 38 3012 23 6.79088e+06 242496 678818. 2348.85 4.45 0.174393 0.151046 25966 169698 -1 2505 17 1217 3032 168202 36995 0 0 168202 36995 3032 1603 0 0 9375 7982 0 0 14456 10060 0 0 3032 1884 0 0 68813 8032 0 0 69494 7434 0 0 3032 0 0 1815 2503 2602 19264 0 0 6.11873 6.11873 -152.475 -6.11873 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0241896 0.0222328 117 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 7.70 vpr 52.79 MiB -1 -1 0.18 17268 9 0.16 -1 -1 31936 -1 -1 18 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54052 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 14.2 MiB 0.89 768 52.8 MiB 0.06 0.00 4.27129 -84.6952 -4.27129 4.27129 0.85 0.000232811 0.00018803 0.0152475 0.0124566 34 2188 21 6.79088e+06 242496 618332. 2139.56 3.63 0.117702 0.102214 25102 150614 -1 1808 20 827 2321 147853 32821 0 0 147853 32821 2321 1275 0 0 7513 6444 0 0 13218 8758 0 0 2321 1512 0 0 60173 7742 0 0 62307 7090 0 0 2321 0 0 1494 2294 2221 16326 0 0 4.64719 4.64719 -103.333 -4.64719 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0169168 0.0153158 86 102 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 10.98 vpr 53.57 MiB -1 -1 0.24 17428 12 0.35 -1 -1 32216 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 15.0 MiB 2.00 1467 53.6 MiB 0.09 0.00 6.04387 -139.628 -6.04387 6.04387 1.03 0.000356817 0.000286127 0.024841 0.020686 40 3581 28 6.79088e+06 282912 706193. 2443.58 4.81 0.156421 0.136434 26254 175826 -1 3409 29 2206 6596 718347 209034 0 0 718347 209034 6596 3734 0 0 20727 17948 0 0 41905 24995 0 0 6596 4439 0 0 319171 77959 0 0 323352 79959 0 0 6596 0 0 4390 8134 8448 49572 0 0 6.41977 6.41977 -159.619 -6.41977 0 0 926341. 3205.33 0.36 0.24 0.17 -1 -1 0.36 0.0434933 0.0395466 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 8.69 vpr 53.72 MiB -1 -1 0.18 17848 13 0.41 -1 -1 32088 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55008 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 15.0 MiB 2.47 1300 53.7 MiB 0.08 0.00 6.7166 -142.57 -6.7166 6.7166 1.00 0.000332532 0.000269181 0.0232821 0.0193158 38 3741 21 6.79088e+06 296384 678818. 2348.85 2.50 0.115711 0.10142 25966 169698 -1 2833 20 1335 3899 206249 46207 0 0 206249 46207 3899 2077 0 0 11978 10293 0 0 18406 12935 0 0 3899 2471 0 0 83281 9413 0 0 84786 9018 0 0 3899 0 0 2564 4187 4255 28875 0 0 7.4684 7.4684 -167.008 -7.4684 0 0 902133. 3121.57 0.24 0.05 0.10 -1 -1 0.24 0.0173533 0.0158092 147 197 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.98 vpr 53.57 MiB -1 -1 0.15 17676 1 0.01 -1 -1 29708 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54860 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 15.0 MiB 3.80 1196 53.6 MiB 0.14 0.00 4.31702 -132.558 -4.31702 4.31702 1.02 0.000240273 0.000196324 0.0230828 0.0190909 34 2836 23 6.87369e+06 363320 618332. 2139.56 1.69 0.0943287 0.0810323 25762 151098 -1 2411 22 1769 2826 197744 46966 0 0 197744 46966 2826 2229 0 0 10992 9651 0 0 16816 13320 0 0 2826 2375 0 0 81727 9983 0 0 82557 9408 0 0 2826 0 0 1057 1282 1261 9544 0 0 4.8072 4.8072 -158.615 -4.8072 0 0 787024. 2723.27 0.33 0.07 0.13 -1 -1 0.33 0.0181933 0.0161652 142 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 9.97 vpr 53.66 MiB -1 -1 0.17 17464 1 0.01 -1 -1 29760 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 15.1 MiB 3.16 1007 53.7 MiB 0.12 0.00 3.52915 -113.661 -3.52915 3.52915 1.02 0.000235754 0.000189578 0.0228158 0.0186341 34 2425 23 6.87369e+06 335372 618332. 2139.56 3.28 0.137896 0.117733 25762 151098 -1 2050 24 1950 2917 225523 51780 0 0 225523 51780 2917 2296 0 0 11355 10297 0 0 17690 14254 0 0 2917 2443 0 0 99259 10453 0 0 91385 12037 0 0 2917 0 0 967 1009 877 7704 0 0 4.19936 4.19936 -139.069 -4.19936 0 0 787024. 2723.27 0.33 0.08 0.14 -1 -1 0.33 0.0186459 0.0165131 138 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.29 vpr 53.54 MiB -1 -1 0.16 17492 1 0.02 -1 -1 29724 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54820 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 14.9 MiB 3.27 1057 53.5 MiB 0.09 0.00 3.45035 -100.15 -3.45035 3.45035 0.99 0.000219444 0.00016924 0.0145377 0.0118765 34 2632 23 6.87369e+06 293451 618332. 2139.56 1.58 0.078554 0.0667898 25762 151098 -1 2121 21 1350 1842 141894 33324 0 0 141894 33324 1842 1595 0 0 7107 6239 0 0 10944 8877 0 0 1842 1645 0 0 58490 7547 0 0 61669 7421 0 0 1842 0 0 492 452 553 4473 0 0 3.88496 3.88496 -124.916 -3.88496 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0139488 0.0123398 124 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.83 vpr 53.46 MiB -1 -1 0.17 17444 1 0.02 -1 -1 29824 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 14.8 MiB 1.32 887 53.5 MiB 0.06 0.00 3.67912 -102.014 -3.67912 3.67912 0.76 0.000141598 0.000109041 0.00944146 0.00776788 30 2186 29 6.87369e+06 405241 556674. 1926.21 2.43 0.0691323 0.0588769 25186 138497 -1 1738 24 1285 2426 130694 35084 0 0 130694 35084 2426 1632 0 0 8289 6787 0 0 11195 8929 0 0 2426 1755 0 0 54304 8070 0 0 52054 7911 0 0 2426 0 0 1141 1601 1437 10131 0 0 3.6401 3.6401 -116.359 -3.6401 0 0 706193. 2443.58 0.31 0.06 0.13 -1 -1 0.31 0.016448 0.0145731 124 25 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 9.49 vpr 53.67 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29752 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 15.2 MiB 1.36 1035 53.7 MiB 0.05 0.00 3.67112 -112.923 -3.67112 3.67112 0.69 0.000123289 9.5915e-05 0.00693761 0.00563017 28 3168 36 6.87369e+06 377294 531479. 1839.03 5.70 0.0870034 0.0756386 24610 126494 -1 2493 22 1820 3513 280343 65303 0 0 280343 65303 3513 2704 0 0 13340 11946 0 0 21357 17048 0 0 3513 2939 0 0 119083 15123 0 0 119537 15543 0 0 3513 0 0 1693 2137 2028 14341 0 0 4.044 4.044 -142.888 -4.044 0 0 648988. 2245.63 0.19 0.08 0.07 -1 -1 0.19 0.0157036 0.0138482 131 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.69 vpr 53.66 MiB -1 -1 0.14 17352 1 0.02 -1 -1 29712 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 15.1 MiB 1.18 885 53.7 MiB 0.07 0.01 2.67957 -91.7986 -2.67957 2.67957 0.67 0.000266883 0.000221185 0.0100468 0.00832933 30 2334 24 6.87369e+06 419215 556674. 1926.21 1.76 0.0631001 0.0536137 25186 138497 -1 1827 19 1152 1981 111091 26888 0 0 111091 26888 1981 1470 0 0 6898 5633 0 0 8933 7401 0 0 1981 1582 0 0 44468 5729 0 0 46830 5073 0 0 1981 0 0 829 1047 1037 7460 0 0 2.98531 2.98531 -114.721 -2.98531 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0161131 0.0143442 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.47 vpr 53.17 MiB -1 -1 0.09 17200 1 0.02 -1 -1 29944 -1 -1 19 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54444 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 14.6 MiB 2.92 644 53.2 MiB 0.06 0.00 2.94598 -82.9381 -2.94598 2.94598 1.05 0.000182832 0.000150791 0.0104456 0.00873671 34 1568 23 6.87369e+06 265503 618332. 2139.56 1.49 0.0630427 0.0539467 25762 151098 -1 1273 22 1013 1785 102220 26080 0 0 102220 26080 1785 1220 0 0 6405 5392 0 0 10016 7685 0 0 1785 1297 0 0 40726 5304 0 0 41503 5182 0 0 1785 0 0 772 810 768 6065 0 0 2.78296 2.78296 -96.9039 -2.78296 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.0070553 0.00619282 97 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.67 vpr 53.36 MiB -1 -1 0.16 16908 1 0.01 -1 -1 29608 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 14.8 MiB 1.12 939 53.4 MiB 0.06 0.00 2.74825 -87.2004 -2.74825 2.74825 0.73 0.0001054 8.4176e-05 0.0093945 0.007605 28 2170 20 6.87369e+06 447163 531479. 1839.03 2.74 0.0786996 0.0670696 24610 126494 -1 2000 21 1132 1930 162666 35319 0 0 162666 35319 1930 1398 0 0 7204 6100 0 0 10674 8561 0 0 1930 1502 0 0 69827 8879 0 0 71101 8879 0 0 1930 0 0 798 1230 1397 8735 0 0 2.82696 2.82696 -103.211 -2.82696 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0121021 0.0106145 119 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.51 vpr 53.37 MiB -1 -1 0.12 17488 1 0.01 -1 -1 29664 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54652 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 14.7 MiB 2.10 831 53.4 MiB 0.06 0.00 2.65757 -90.8649 -2.65757 2.65757 0.65 0.000194055 0.000156642 0.011581 0.00943751 34 2436 23 6.87369e+06 237555 618332. 2139.56 1.05 0.0461375 0.0386544 25762 151098 -1 1895 21 1361 2018 165155 38038 0 0 165155 38038 2018 1717 0 0 7808 6733 0 0 11358 9189 0 0 2018 1762 0 0 68735 9407 0 0 73218 9230 0 0 2018 0 0 657 695 678 5362 0 0 3.2788 3.2788 -119.877 -3.2788 0 0 787024. 2723.27 0.25 0.06 0.08 -1 -1 0.25 0.0132346 0.0116214 113 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.28 vpr 53.27 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29676 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54548 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 14.8 MiB 4.66 966 53.3 MiB 0.09 0.00 3.21683 -112.158 -3.21683 3.21683 0.98 0.000218875 0.000178957 0.0152955 0.0125913 34 2169 20 6.87369e+06 223581 618332. 2139.56 1.55 0.0764159 0.0651452 25762 151098 -1 1819 17 1125 1912 142300 33242 0 0 142300 33242 1912 1541 0 0 7472 6685 0 0 11085 9076 0 0 1912 1601 0 0 58849 7351 0 0 61070 6988 0 0 1912 0 0 787 1143 1063 7155 0 0 3.05561 3.05561 -121.882 -3.05561 0 0 787024. 2723.27 0.32 0.06 0.12 -1 -1 0.32 0.0136885 0.0123117 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.64 vpr 53.55 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29764 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54836 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 14.9 MiB 3.90 859 53.6 MiB 0.08 0.00 3.16363 -98.9035 -3.16363 3.16363 0.93 0.000190954 0.000147918 0.0150275 0.012286 34 1780 27 6.87369e+06 223581 618332. 2139.56 1.49 0.0763121 0.0647493 25762 151098 -1 1562 21 976 1565 116025 27217 0 0 116025 27217 1565 1240 0 0 5953 5378 0 0 9382 7503 0 0 1565 1267 0 0 49878 5571 0 0 47682 6258 0 0 1565 0 0 589 528 693 5031 0 0 2.84066 2.84066 -104.333 -2.84066 0 0 787024. 2723.27 0.29 0.05 0.14 -1 -1 0.29 0.0130668 0.011465 98 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 7.28 vpr 53.37 MiB -1 -1 0.14 17504 1 0.01 -1 -1 29764 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 14.9 MiB 2.50 858 53.4 MiB 0.07 0.00 2.8828 -94.5981 -2.8828 2.8828 0.82 0.000187827 0.000150781 0.0127875 0.0104405 34 2386 33 6.87369e+06 237555 618332. 2139.56 1.65 0.0769347 0.0654257 25762 151098 -1 1914 17 1095 1514 114099 26684 0 0 114099 26684 1514 1305 0 0 5828 5086 0 0 8483 6848 0 0 1514 1337 0 0 46382 6553 0 0 50378 5555 0 0 1514 0 0 419 450 459 3714 0 0 3.22811 3.22811 -116.491 -3.22811 0 0 787024. 2723.27 0.33 0.05 0.14 -1 -1 0.33 0.0125693 0.0112853 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.51 vpr 53.73 MiB -1 -1 0.14 17464 1 0.02 -1 -1 29628 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55024 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 15.2 MiB 4.26 1108 53.7 MiB 0.12 0.00 3.24063 -110.328 -3.24063 3.24063 1.06 0.000245002 0.000198795 0.0209491 0.0171815 34 2851 21 6.87369e+06 321398 618332. 2139.56 1.77 0.10649 0.0919282 25762 151098 -1 2321 22 1909 2908 227076 52231 0 0 227076 52231 2908 2429 0 0 11381 10277 0 0 17675 14277 0 0 2908 2489 0 0 98504 10977 0 0 93700 11782 0 0 2908 0 0 999 1140 1028 8073 0 0 3.36121 3.36121 -126.872 -3.36121 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0146853 0.0128774 142 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 8.19 vpr 53.66 MiB -1 -1 0.16 17348 1 0.01 -1 -1 29712 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 15.1 MiB 2.42 1081 53.7 MiB 0.05 0.00 3.75618 -117.057 -3.75618 3.75618 0.59 0.000124439 9.9485e-05 0.00760515 0.00621915 34 2430 22 6.87369e+06 433189 618332. 2139.56 3.30 0.0925979 0.0792548 25762 151098 -1 2110 21 1498 2341 155166 36477 0 0 155166 36477 2341 1759 0 0 8784 7469 0 0 12645 10056 0 0 2341 1936 0 0 63329 7961 0 0 65726 7296 0 0 2341 0 0 843 935 1031 7390 0 0 4.01576 4.01576 -140.57 -4.01576 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0155013 0.0137019 133 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.90 vpr 53.12 MiB -1 -1 0.11 17092 1 0.01 -1 -1 29788 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 14.5 MiB 1.98 788 53.1 MiB 0.07 0.00 2.63557 -83.7152 -2.63557 2.63557 1.00 0.000174988 0.000141249 0.0133751 0.0110272 32 1923 24 6.87369e+06 265503 586450. 2029.24 0.96 0.045935 0.0389099 25474 144626 -1 1676 20 1030 1625 125138 29465 0 0 125138 29465 1625 1240 0 0 6443 5814 0 0 10903 8463 0 0 1625 1278 0 0 52970 6263 0 0 51572 6407 0 0 1625 0 0 595 564 529 4685 0 0 2.81601 2.81601 -98.7462 -2.81601 0 0 744469. 2576.02 0.28 0.04 0.13 -1 -1 0.28 0.0104407 0.00918311 94 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 9.24 vpr 53.75 MiB -1 -1 0.17 17572 1 0.01 -1 -1 29652 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55036 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 15.2 MiB 2.53 1033 53.7 MiB 0.08 0.00 2.9366 -101.132 -2.9366 2.9366 0.95 0.000228639 0.000183779 0.0140414 0.0114638 28 2787 24 6.87369e+06 335372 531479. 1839.03 3.46 0.130635 0.112659 24610 126494 -1 2384 21 1713 2878 212944 50089 0 0 212944 50089 2878 2327 0 0 10707 9476 0 0 16116 12959 0 0 2878 2419 0 0 89084 11635 0 0 91281 11273 0 0 2878 0 0 1165 1511 1826 10726 0 0 3.57881 3.57881 -128.291 -3.57881 0 0 648988. 2245.63 0.27 0.08 0.12 -1 -1 0.27 0.0169909 0.0149798 135 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.73 vpr 53.67 MiB -1 -1 0.17 17536 1 0.01 -1 -1 29688 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 15.1 MiB 4.15 1104 53.7 MiB 0.06 0.00 3.24063 -109.974 -3.24063 3.24063 0.60 0.000121674 9.7671e-05 0.0104278 0.00859518 34 3012 22 6.87369e+06 293451 618332. 2139.56 1.07 0.0499356 0.0421126 25762 151098 -1 2469 22 1761 2535 207071 46348 0 0 207071 46348 2535 2283 0 0 9538 8258 0 0 14599 11600 0 0 2535 2376 0 0 88517 11260 0 0 89347 10571 0 0 2535 0 0 774 842 821 6520 0 0 3.11331 3.11331 -125.237 -3.11331 0 0 787024. 2723.27 0.32 0.08 0.13 -1 -1 0.32 0.0190977 0.0171095 140 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.24 vpr 53.58 MiB -1 -1 0.13 17276 1 0.01 -1 -1 29784 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 14.9 MiB 2.88 790 53.6 MiB 0.12 0.00 2.46506 -91.9901 -2.46506 2.46506 1.05 0.000213143 0.000171613 0.0195347 0.0159158 30 1883 21 6.87369e+06 391268 556674. 1926.21 1.00 0.0599545 0.0496222 25186 138497 -1 1578 21 1093 1728 102072 24593 0 0 102072 24593 1728 1216 0 0 6037 5094 0 0 8482 6798 0 0 1728 1357 0 0 45128 4658 0 0 38969 5470 0 0 1728 0 0 635 857 934 6330 0 0 2.06257 2.06257 -97.9399 -2.06257 0 0 706193. 2443.58 0.30 0.05 0.13 -1 -1 0.30 0.0141166 0.0124452 109 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 6.65 vpr 52.93 MiB -1 -1 0.14 17184 1 0.00 -1 -1 29632 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54204 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 14.3 MiB 0.72 475 52.9 MiB 0.06 0.00 2.12623 -69.7841 -2.12623 2.12623 1.02 0.000169395 0.000138794 0.0114953 0.00944125 28 1541 24 6.87369e+06 195634 531479. 1839.03 2.86 0.0781123 0.066181 24610 126494 -1 1218 16 671 894 86837 25251 0 0 86837 25251 894 806 0 0 3581 3141 0 0 5186 4287 0 0 894 835 0 0 37537 7750 0 0 38745 8432 0 0 894 0 0 223 158 277 2086 0 0 2.18937 2.18937 -88.7596 -2.18937 0 0 648988. 2245.63 0.19 0.02 0.08 -1 -1 0.19 0.00546973 0.00484513 71 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 9.16 vpr 53.30 MiB -1 -1 0.17 17560 1 0.01 -1 -1 29760 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 14.7 MiB 3.12 787 53.3 MiB 0.09 0.00 4.06013 -119.969 -4.06013 4.06013 0.91 0.000205532 0.000165977 0.0157312 0.0129042 34 2123 22 6.87369e+06 265503 618332. 2139.56 3.22 0.107804 0.0918212 25762 151098 -1 1705 20 1247 1756 105004 28469 0 0 105004 28469 1756 1489 0 0 6596 5654 0 0 9957 8090 0 0 1756 1519 0 0 42651 5939 0 0 42288 5778 0 0 1756 0 0 509 551 520 4434 0 0 3.81546 3.81546 -136.584 -3.81546 0 0 787024. 2723.27 0.26 0.04 0.08 -1 -1 0.26 0.0108537 0.00965634 116 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 8.61 vpr 53.65 MiB -1 -1 0.16 17348 1 0.01 -1 -1 29760 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 15.1 MiB 1.09 994 53.7 MiB 0.05 0.00 3.35799 -110.68 -3.35799 3.35799 0.74 0.0001257 9.9919e-05 0.00773867 0.0062083 26 2917 50 6.87369e+06 489084 503264. 1741.40 4.54 0.124108 0.106874 24322 120374 -1 2350 22 1692 2521 242534 55412 0 0 242534 55412 2521 2025 0 0 9319 7702 0 0 14130 11008 0 0 2521 2167 0 0 104311 16868 0 0 109732 15642 0 0 2521 0 0 829 1112 1080 8314 0 0 3.8034 3.8034 -142.322 -3.8034 0 0 618332. 2139.56 0.27 0.08 0.11 -1 -1 0.27 0.0176826 0.0156327 137 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.30 vpr 53.55 MiB -1 -1 0.17 17764 1 0.02 -1 -1 29660 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 14.9 MiB 2.63 1048 53.6 MiB 0.09 0.00 3.42215 -107.66 -3.42215 3.42215 1.01 0.000243378 0.000198234 0.0156426 0.0129111 34 3035 24 6.87369e+06 307425 618332. 2139.56 2.20 0.0951689 0.0810995 25762 151098 -1 2357 19 1575 2526 196554 46882 0 0 196554 46882 2526 2060 0 0 9941 8876 0 0 15137 12278 0 0 2526 2136 0 0 81596 10778 0 0 84828 10754 0 0 2526 0 0 951 1244 1203 8422 0 0 3.77146 3.77146 -132.635 -3.77146 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0165622 0.0147109 142 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.91 vpr 52.76 MiB -1 -1 0.08 17196 1 0.01 -1 -1 29784 -1 -1 17 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 14.2 MiB 2.22 423 52.8 MiB 0.03 0.00 2.06503 -58.2832 -2.06503 2.06503 1.02 8.0825e-05 6.4149e-05 0.00610816 0.00502904 30 1163 25 6.87369e+06 237555 556674. 1926.21 0.58 0.0215504 0.0180568 25186 138497 -1 850 14 488 683 34714 9693 0 0 34714 9693 683 531 0 0 2534 2047 0 0 3024 2669 0 0 683 557 0 0 13883 1980 0 0 13907 1909 0 0 683 0 0 195 118 180 1672 0 0 2.04382 2.04382 -69.4058 -2.04382 0 0 706193. 2443.58 0.30 0.03 0.12 -1 -1 0.30 0.00801111 0.00722317 67 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.11 vpr 53.31 MiB -1 -1 0.13 17224 1 0.02 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 14.7 MiB 1.18 890 53.3 MiB 0.06 0.00 3.58982 -103.708 -3.58982 3.58982 0.59 0.000106309 8.4539e-05 0.00862075 0.00701227 34 2428 27 6.87369e+06 321398 618332. 2139.56 2.49 0.0846452 0.0721574 25762 151098 -1 1874 22 1457 2561 175350 42552 0 0 175350 42552 2561 1957 0 0 9940 8852 0 0 14590 11640 0 0 2561 2085 0 0 72365 9252 0 0 73333 8766 0 0 2561 0 0 1104 1466 1452 9831 0 0 4.069 4.069 -125.937 -4.069 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.01371 0.012053 119 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.32 vpr 52.64 MiB -1 -1 0.14 16648 1 0.01 -1 -1 29616 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53900 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 14.2 MiB 0.52 477 52.6 MiB 0.03 0.00 2.08703 -64.2189 -2.08703 2.08703 0.59 7.3936e-05 5.8466e-05 0.0049868 0.00404983 30 1239 23 6.87369e+06 167686 556674. 1926.21 0.53 0.0185811 0.0156015 25186 138497 -1 895 18 564 681 39534 10893 0 0 39534 10893 681 582 0 0 2576 2195 0 0 3403 2925 0 0 681 601 0 0 15749 2280 0 0 16444 2310 0 0 681 0 0 117 39 165 1236 0 0 1.93582 1.93582 -72.1127 -1.93582 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00482728 0.00429974 65 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 6.61 vpr 53.48 MiB -1 -1 0.15 17648 1 0.01 -1 -1 29636 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54760 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 14.9 MiB 0.94 947 53.5 MiB 0.12 0.00 3.64182 -106.107 -3.64182 3.64182 0.77 0.000223978 0.000184422 0.0181895 0.0150133 28 2198 17 6.87369e+06 419215 531479. 1839.03 2.89 0.0968468 0.0828304 24610 126494 -1 1937 21 1298 2077 147990 34782 0 0 147990 34782 2077 1631 0 0 7737 6522 0 0 11814 9442 0 0 2077 1693 0 0 61963 7993 0 0 62322 7501 0 0 2077 0 0 779 1027 980 7177 0 0 3.7734 3.7734 -124.355 -3.7734 0 0 648988. 2245.63 0.20 0.06 0.06 -1 -1 0.20 0.0145012 0.0126864 120 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 6.88 vpr 53.49 MiB -1 -1 0.15 17324 1 0.02 -1 -1 29760 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.8 MiB 0.76 876 53.5 MiB 0.12 0.00 2.74825 -85.6769 -2.74825 2.74825 1.04 0.000201977 0.000164731 0.0181482 0.0149151 34 2141 21 6.87369e+06 433189 618332. 2139.56 2.96 0.112416 0.0959554 25762 151098 -1 1744 19 1104 1899 113431 28375 0 0 113431 28375 1899 1307 0 0 7156 5957 0 0 10313 8333 0 0 1899 1471 0 0 46009 5619 0 0 46155 5688 0 0 1899 0 0 795 1036 1203 7713 0 0 2.88526 2.88526 -101.782 -2.88526 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0129365 0.0114222 130 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.19 vpr 53.61 MiB -1 -1 0.15 17448 1 0.01 -1 -1 29736 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54896 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 15.0 MiB 2.18 1077 53.6 MiB 0.08 0.00 3.71518 -112.424 -3.71518 3.71518 0.81 0.000127184 0.000103394 0.0122897 0.0101236 34 2601 36 6.87369e+06 391268 618332. 2139.56 1.10 0.0537304 0.0452314 25762 151098 -1 2207 21 1562 2700 177740 42562 0 0 177740 42562 2700 2039 0 0 10285 8909 0 0 15706 12412 0 0 2700 2201 0 0 72066 8767 0 0 74283 8234 0 0 2700 0 0 1138 1313 1440 9943 0 0 4.17236 4.17236 -135.706 -4.17236 0 0 787024. 2723.27 0.22 0.04 0.13 -1 -1 0.22 0.00873504 0.00771172 131 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.67 vpr 53.26 MiB -1 -1 0.16 17284 1 0.02 -1 -1 29836 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 14.9 MiB 1.07 868 53.3 MiB 0.09 0.00 2.61357 -92.8666 -2.61357 2.61357 1.04 0.000210116 0.000169973 0.0168009 0.0137372 34 2032 19 6.87369e+06 223581 618332. 2139.56 1.50 0.0738791 0.0624521 25762 151098 -1 1728 20 933 1526 119979 27372 0 0 119979 27372 1526 1231 0 0 5772 4941 0 0 8888 6957 0 0 1526 1296 0 0 49192 7027 0 0 53075 5920 0 0 1526 0 0 593 584 622 4811 0 0 3.15311 3.15311 -113.243 -3.15311 0 0 787024. 2723.27 0.20 0.03 0.10 -1 -1 0.20 0.00732683 0.00645764 99 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.31 vpr 53.18 MiB -1 -1 0.13 17536 1 0.01 -1 -1 29736 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 14.6 MiB 1.47 846 53.2 MiB 0.05 0.00 2.60257 -86.5007 -2.60257 2.60257 0.70 9.7754e-05 7.7293e-05 0.00818487 0.00662829 30 1782 20 6.87369e+06 363320 556674. 1926.21 1.25 0.0412466 0.0345367 25186 138497 -1 1473 18 723 1184 73421 17039 0 0 73421 17039 1184 857 0 0 4161 3472 0 0 5638 4600 0 0 1184 937 0 0 31124 3642 0 0 30130 3531 0 0 1184 0 0 461 349 483 3775 0 0 2.67966 2.67966 -98.6208 -2.67966 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00635128 0.00562744 97 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.58 vpr 53.16 MiB -1 -1 0.16 17232 1 0.01 -1 -1 29584 -1 -1 18 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54436 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 14.6 MiB 1.22 746 53.2 MiB 0.08 0.00 2.8296 -83.801 -2.8296 2.8296 1.02 0.000190509 0.000155559 0.0154929 0.0128318 32 2070 30 6.87369e+06 251529 586450. 2029.24 1.13 0.0532725 0.0453192 25474 144626 -1 1780 21 1152 2060 238301 59693 0 0 238301 59693 2060 1592 0 0 8043 7218 0 0 15094 11334 0 0 2060 1644 0 0 107894 18416 0 0 103150 19489 0 0 2060 0 0 908 1278 1136 7846 0 0 3.08856 3.08856 -105.869 -3.08856 0 0 744469. 2576.02 0.27 0.04 0.13 -1 -1 0.27 0.00694424 0.00610978 95 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 7.57 vpr 53.21 MiB -1 -1 0.15 17024 1 0.01 -1 -1 29688 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54484 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 14.5 MiB 0.98 756 53.2 MiB 0.08 0.00 3.07863 -94.6549 -3.07863 3.07863 1.02 0.00019487 0.000156871 0.0145906 0.0119583 30 1993 30 6.87369e+06 237555 556674. 1926.21 3.31 0.107659 0.0933083 25186 138497 -1 1535 21 1072 1767 103821 27088 0 0 103821 27088 1767 1325 0 0 6073 5091 0 0 7958 6461 0 0 1767 1399 0 0 42901 6330 0 0 43355 6482 0 0 1767 0 0 695 747 879 5880 0 0 3.04656 3.04656 -113.36 -3.04656 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0120619 0.0107322 101 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 7.02 vpr 53.30 MiB -1 -1 0.14 17060 1 0.01 -1 -1 29760 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54580 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 14.9 MiB 0.99 709 53.3 MiB 0.06 0.00 2.8296 -86.8758 -2.8296 2.8296 0.89 0.000193711 0.000153712 0.00909063 0.00746552 34 1988 24 6.87369e+06 363320 618332. 2139.56 3.21 0.0963919 0.0820191 25762 151098 -1 1584 23 1058 1814 126873 31358 0 0 126873 31358 1814 1274 0 0 6887 6091 0 0 11533 9013 0 0 1814 1473 0 0 50591 6890 0 0 54234 6617 0 0 1814 0 0 756 908 903 6923 0 0 3.07256 3.07256 -106.021 -3.07256 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.012725 0.0112149 102 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.38 vpr 53.12 MiB -1 -1 0.12 17348 1 0.02 -1 -1 29664 -1 -1 25 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 14.7 MiB 3.54 655 53.1 MiB 0.04 0.00 2.42106 -77.1691 -2.42106 2.42106 0.84 0.000115466 9.3237e-05 0.00633784 0.00523949 34 1823 20 6.87369e+06 349346 618332. 2139.56 0.95 0.0402267 0.0336877 25762 151098 -1 1545 19 1112 1596 109880 27239 0 0 109880 27239 1596 1278 0 0 6089 5294 0 0 9291 7343 0 0 1596 1342 0 0 45844 6130 0 0 45464 5852 0 0 1596 0 0 484 559 559 4574 0 0 2.37247 2.37247 -94.6437 -2.37247 0 0 787024. 2723.27 0.30 0.04 0.11 -1 -1 0.30 0.0111645 0.00985423 106 48 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.10 vpr 53.88 MiB -1 -1 0.17 17448 1 0.01 -1 -1 29728 -1 -1 40 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55176 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 15.4 MiB 3.07 1188 53.9 MiB 0.08 0.00 3.29679 -102.29 -3.29679 3.29679 0.59 0.000137098 0.000110293 0.0103008 0.00842254 28 2904 23 6.87369e+06 558954 531479. 1839.03 3.68 0.0886625 0.0764431 24610 126494 -1 2498 20 1563 2999 217142 48423 0 0 217142 48423 2999 1888 0 0 11015 9451 0 0 16499 12951 0 0 2999 2060 0 0 93903 10820 0 0 89727 11253 0 0 2999 0 0 1436 2576 3071 17216 0 0 3.8847 3.8847 -130.216 -3.8847 0 0 648988. 2245.63 0.18 0.04 0.11 -1 -1 0.18 0.00953386 0.00839471 156 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.91 vpr 53.83 MiB -1 -1 0.16 17276 1 0.02 -1 -1 29748 -1 -1 38 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55120 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 15.4 MiB 4.24 1012 53.8 MiB 0.07 0.00 3.03218 -108.408 -3.03218 3.03218 0.87 0.000149329 0.000110639 0.0103202 0.00833743 30 2298 21 6.87369e+06 531006 556674. 1926.21 0.71 0.0480024 0.0404331 25186 138497 -1 1888 20 1431 2361 127788 30160 0 0 127788 30160 2361 1510 0 0 8018 6520 0 0 10316 8396 0 0 2361 1670 0 0 53932 5775 0 0 50800 6289 0 0 2361 0 0 930 1102 1255 8810 0 0 2.77656 2.77656 -115.581 -2.77656 0 0 706193. 2443.58 0.19 0.04 0.08 -1 -1 0.19 0.00976467 0.00859906 148 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.66 vpr 53.34 MiB -1 -1 0.14 17644 1 0.01 -1 -1 29680 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54620 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 14.9 MiB 2.63 899 53.3 MiB 0.10 0.00 3.32193 -103.497 -3.32193 3.32193 1.04 0.00019562 0.000158256 0.0167628 0.0136828 34 2244 23 6.87369e+06 251529 618332. 2139.56 1.63 0.07928 0.0675883 25762 151098 -1 1869 23 1166 1822 137753 32286 0 0 137753 32286 1822 1510 0 0 7093 6153 0 0 10741 8603 0 0 1822 1546 0 0 57285 7624 0 0 58990 6850 0 0 1822 0 0 656 884 840 6130 0 0 3.38741 3.38741 -119.796 -3.38741 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0140337 0.0123529 109 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.34 vpr 53.63 MiB -1 -1 0.17 17468 1 0.01 -1 -1 29756 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54920 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 15.1 MiB 3.15 1129 53.6 MiB 0.12 0.00 2.9678 -102.212 -2.9678 2.9678 1.02 0.000241811 0.000195185 0.0202575 0.0165039 34 2650 22 6.87369e+06 363320 618332. 2139.56 1.74 0.105334 0.0903406 25762 151098 -1 2266 21 1598 2670 184527 42332 0 0 184527 42332 2670 1978 0 0 9711 8304 0 0 14718 11391 0 0 2670 2241 0 0 76897 9271 0 0 77861 9147 0 0 2670 0 0 1072 1245 1332 9295 0 0 3.16061 3.16061 -123.601 -3.16061 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0164391 0.0144932 136 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.69 vpr 53.82 MiB -1 -1 0.17 17712 1 0.01 -1 -1 29684 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55116 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 15.3 MiB 4.79 1172 53.8 MiB 0.13 0.00 4.36902 -133.763 -4.36902 4.36902 1.03 0.000274802 0.000227425 0.0236603 0.0195465 34 3754 39 6.87369e+06 349346 618332. 2139.56 2.43 0.118428 0.102411 25762 151098 -1 2678 22 2359 3494 292216 66865 0 0 292216 66865 3494 3055 0 0 13406 11789 0 0 20830 16374 0 0 3494 3190 0 0 125882 16383 0 0 125110 16074 0 0 3494 0 0 1135 1092 1249 9240 0 0 5.1721 5.1721 -165.777 -5.1721 0 0 787024. 2723.27 0.30 0.09 0.12 -1 -1 0.30 0.017138 0.0151226 159 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 7.67 vpr 53.83 MiB -1 -1 0.16 17820 1 0.02 -1 -1 29700 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55124 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 15.4 MiB 3.83 1263 53.8 MiB 0.07 0.00 4.44394 -138.601 -4.44394 4.44394 0.61 0.00013068 0.000105342 0.0110633 0.00906413 34 3125 22 6.87369e+06 377294 618332. 2139.56 1.19 0.0672272 0.0570553 25762 151098 -1 2556 21 1793 2729 210235 47575 0 0 210235 47575 2729 2157 0 0 10386 8894 0 0 15447 12480 0 0 2729 2271 0 0 90758 10896 0 0 88186 10877 0 0 2729 0 0 936 965 1241 7933 0 0 4.51465 4.51465 -158.82 -4.51465 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0164854 0.0146118 152 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 10.60 vpr 53.64 MiB -1 -1 0.18 17648 1 0.01 -1 -1 29788 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54932 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 15.1 MiB 3.72 994 53.6 MiB 0.10 0.00 3.22963 -102.878 -3.22963 3.22963 1.04 0.000246695 0.000200226 0.016836 0.0138245 28 2761 28 6.87369e+06 349346 531479. 1839.03 3.66 0.11976 0.103074 24610 126494 -1 2263 21 1393 2313 166692 42025 0 0 166692 42025 2313 1857 0 0 8860 7762 0 0 13092 10564 0 0 2313 1916 0 0 69210 10363 0 0 70904 9563 0 0 2313 0 0 920 1389 1184 8380 0 0 3.45621 3.45621 -130.335 -3.45621 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00922551 0.0081339 131 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.08 vpr 53.48 MiB -1 -1 0.16 17648 1 0.02 -1 -1 29712 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 14.9 MiB 3.24 944 53.5 MiB 0.06 0.00 3.52545 -96.7164 -3.52545 3.52545 1.04 0.000231726 0.000192198 0.00995048 0.00830192 34 2546 24 6.87369e+06 279477 618332. 2139.56 1.50 0.0559035 0.0476799 25762 151098 -1 2047 18 1236 1817 143117 33792 0 0 143117 33792 1817 1597 0 0 7169 6262 0 0 10845 8914 0 0 1817 1670 0 0 59251 7871 0 0 62218 7478 0 0 1817 0 0 581 720 778 5344 0 0 3.86676 3.86676 -118.608 -3.86676 0 0 787024. 2723.27 0.32 0.05 0.12 -1 -1 0.32 0.0124974 0.0110826 119 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 10.57 vpr 54.36 MiB -1 -1 0.17 17816 1 0.02 -1 -1 29820 -1 -1 38 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55660 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 15.7 MiB 4.31 1263 54.4 MiB 0.10 0.00 3.85958 -128.679 -3.85958 3.85958 0.83 0.000160261 0.000129494 0.0145967 0.0120043 32 3385 49 6.87369e+06 531006 586450. 2029.24 3.19 0.164427 0.142908 25474 144626 -1 2470 23 1879 3104 214304 52727 0 0 214304 52727 3104 2172 0 0 12310 10585 0 0 19346 15249 0 0 3104 2342 0 0 89311 11478 0 0 87129 10901 0 0 3104 0 0 1225 1868 2025 12904 0 0 4.04596 4.04596 -148.713 -4.04596 0 0 744469. 2576.02 0.31 0.07 0.08 -1 -1 0.31 0.0156697 0.0138492 173 84 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 7.21 vpr 53.17 MiB -1 -1 0.17 17184 1 0.02 -1 -1 29680 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54448 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 14.6 MiB 2.16 869 53.2 MiB 0.07 0.00 2.78925 -87.7529 -2.78925 2.78925 0.67 0.000174903 0.000140495 0.0121799 0.00989492 32 1961 25 6.87369e+06 307425 586450. 2029.24 2.18 0.059491 0.0498888 25474 144626 -1 1690 20 1039 1825 145917 32386 0 0 145917 32386 1825 1369 0 0 7003 5939 0 0 11056 8400 0 0 1825 1471 0 0 65060 6842 0 0 59148 8365 0 0 1825 0 0 786 1012 1140 6899 0 0 2.77196 2.77196 -103.748 -2.77196 0 0 744469. 2576.02 0.32 0.06 0.12 -1 -1 0.32 0.0135305 0.012043 96 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.77 vpr 53.70 MiB -1 -1 0.17 17476 1 0.01 -1 -1 29752 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 15.1 MiB 2.98 1048 53.7 MiB 0.05 0.00 3.78918 -115.79 -3.78918 3.78918 0.68 0.000139596 0.000114822 0.00768672 0.00645305 30 2636 21 6.87369e+06 321398 556674. 1926.21 0.82 0.0506645 0.0440042 25186 138497 -1 1963 22 1412 2138 115271 29186 0 0 115271 29186 2138 1718 0 0 7540 6215 0 0 9770 8127 0 0 2138 1800 0 0 46603 5821 0 0 47082 5505 0 0 2138 0 0 726 944 813 6423 0 0 3.87946 3.87946 -132.043 -3.87946 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0168666 0.0150302 140 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 9.81 vpr 53.58 MiB -1 -1 0.17 17512 1 0.02 -1 -1 29760 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 15.1 MiB 2.42 1107 53.6 MiB 0.05 0.00 2.9146 -96.6486 -2.9146 2.9146 0.60 0.00012151 9.7187e-05 0.00680968 0.00557873 26 2871 26 6.87369e+06 447163 503264. 1741.40 4.88 0.110906 0.096615 24322 120374 -1 2447 23 1575 2727 253556 58366 0 0 253556 58366 2727 2045 0 0 10561 9137 0 0 16278 12874 0 0 2727 2199 0 0 111917 15667 0 0 109346 16444 0 0 2727 0 0 1152 1561 1672 10646 0 0 3.56781 3.56781 -126.863 -3.56781 0 0 618332. 2139.56 0.25 0.08 0.11 -1 -1 0.25 0.0157605 0.0138068 132 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.51 vpr 53.41 MiB -1 -1 0.09 17172 1 0.00 -1 -1 29704 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54688 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 14.8 MiB 0.60 851 53.4 MiB 0.08 0.00 3.37079 -101.608 -3.37079 3.37079 0.99 0.000210099 0.000169122 0.0122203 0.0100366 34 2239 22 6.87369e+06 363320 618332. 2139.56 1.65 0.0779744 0.0666762 25762 151098 -1 1871 23 1413 2707 185779 43784 0 0 185779 43784 2707 1888 0 0 10265 8983 0 0 15944 12576 0 0 2707 2150 0 0 79995 8549 0 0 74161 9638 0 0 2707 0 0 1294 1886 1811 11640 0 0 3.7854 3.7854 -120.635 -3.7854 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0163562 0.0145336 123 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.03 vpr 53.69 MiB -1 -1 0.13 17456 1 0.01 -1 -1 29748 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 15.2 MiB 3.30 1162 53.7 MiB 0.11 0.00 3.93315 -123.006 -3.93315 3.93315 1.02 0.000209839 0.000168662 0.0194518 0.0158727 34 2733 30 6.87369e+06 307425 618332. 2139.56 1.52 0.0924757 0.0785795 25762 151098 -1 2154 20 1124 1521 101260 24419 0 0 101260 24419 1521 1253 0 0 5884 5034 0 0 8468 6962 0 0 1521 1294 0 0 42431 4837 0 0 41435 5039 0 0 1521 0 0 397 417 409 3710 0 0 3.4725 3.4725 -129.856 -3.4725 0 0 787024. 2723.27 0.31 0.06 0.12 -1 -1 0.31 0.0177208 0.0159208 136 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 10.95 vpr 53.76 MiB -1 -1 0.17 17572 1 0.01 -1 -1 29740 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55052 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 15.2 MiB 3.11 953 53.8 MiB 0.12 0.00 2.9366 -97.0898 -2.9366 2.9366 0.95 0.000229385 0.000185762 0.0197199 0.0161927 30 2558 27 6.87369e+06 447163 556674. 1926.21 4.67 0.137193 0.119726 25186 138497 -1 1867 23 1097 1913 113737 26725 0 0 113737 26725 1913 1361 0 0 6556 5349 0 0 8605 7011 0 0 1913 1455 0 0 46175 6133 0 0 48575 5416 0 0 1913 0 0 816 1116 1225 8414 0 0 3.11261 3.11261 -115.349 -3.11261 0 0 706193. 2443.58 0.27 0.05 0.09 -1 -1 0.27 0.0159523 0.0140417 136 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 11.31 vpr 53.75 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29740 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55044 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 15.3 MiB 3.57 967 53.8 MiB 0.08 0.00 3.24063 -106.811 -3.24063 3.24063 0.77 0.000134775 0.000107248 0.0127814 0.0102752 28 3308 44 6.87369e+06 489084 531479. 1839.03 4.77 0.0863402 0.073176 24610 126494 -1 2457 21 1759 2921 238642 55936 0 0 238642 55936 2921 2215 0 0 10856 9272 0 0 16999 13443 0 0 2921 2466 0 0 102434 14403 0 0 102511 14137 0 0 2921 0 0 1162 1711 1741 10831 0 0 3.50376 3.50376 -128.426 -3.50376 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0158026 0.0138789 144 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.77 vpr 53.43 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29684 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 14.8 MiB 1.11 984 53.4 MiB 0.11 0.00 3.38179 -104.741 -3.38179 3.38179 0.85 0.000118661 9.5463e-05 0.0178007 0.0146035 32 2436 22 6.87369e+06 461137 586450. 2029.24 0.70 0.0469889 0.0395419 25474 144626 -1 2048 19 1175 1996 160183 36177 0 0 160183 36177 1996 1480 0 0 7763 6676 0 0 12573 9792 0 0 1996 1600 0 0 67394 8566 0 0 68461 8063 0 0 1996 0 0 821 1144 1086 7709 0 0 3.6058 3.6058 -123.048 -3.6058 0 0 744469. 2576.02 0.21 0.04 0.08 -1 -1 0.21 0.00818932 0.00727099 124 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.99 vpr 53.62 MiB -1 -1 0.12 17564 1 0.02 -1 -1 29808 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 15.1 MiB 2.08 1094 53.6 MiB 0.09 0.00 3.84368 -116.221 -3.84368 3.84368 0.94 0.000196913 0.000161923 0.0148958 0.0124034 34 2762 34 6.87369e+06 307425 618332. 2139.56 1.69 0.0869348 0.0746669 25762 151098 -1 2324 21 1690 2415 171839 39719 0 0 171839 39719 2415 2040 0 0 9078 7689 0 0 13579 10644 0 0 2415 2190 0 0 72652 8712 0 0 71700 8444 0 0 2415 0 0 725 741 776 6107 0 0 3.81246 3.81246 -133.251 -3.81246 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0138659 0.0122553 135 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.64 vpr 53.75 MiB -1 -1 0.17 17732 1 0.01 -1 -1 29836 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55040 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 15.1 MiB 2.20 1206 53.8 MiB 0.07 0.00 3.72318 -119.048 -3.72318 3.72318 0.60 0.000128448 0.000102959 0.0122917 0.0100517 34 3047 24 6.87369e+06 307425 618332. 2139.56 3.54 0.112702 0.0959531 25762 151098 -1 2520 22 1989 3298 256421 58867 0 0 256421 58867 3298 2763 0 0 12910 11574 0 0 20182 15981 0 0 3298 2971 0 0 109451 12842 0 0 107282 12736 0 0 3298 0 0 1309 1567 1668 11276 0 0 4.11536 4.11536 -143.223 -4.11536 0 0 787024. 2723.27 0.35 0.10 0.12 -1 -1 0.35 0.0241655 0.021768 141 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.99 vpr 53.67 MiB -1 -1 0.18 17568 1 0.01 -1 -1 29640 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 15.2 MiB 3.33 1073 53.7 MiB 0.12 0.00 3.65075 -114.063 -3.65075 3.65075 0.78 0.000249284 0.000200747 0.0223337 0.018206 34 3072 27 6.87369e+06 293451 618332. 2139.56 1.79 0.0983457 0.0827467 25762 151098 -1 2447 20 1634 2914 233920 53525 0 0 233920 53525 2914 2289 0 0 11196 10113 0 0 17218 13781 0 0 2914 2431 0 0 98381 13077 0 0 101297 11834 0 0 2914 0 0 1280 1351 1448 9953 0 0 4.09736 4.09736 -141.288 -4.09736 0 0 787024. 2723.27 0.27 0.08 0.13 -1 -1 0.27 0.0171944 0.0153172 135 74 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.33 vpr 53.07 MiB -1 -1 0.14 17416 1 0.01 -1 -1 29724 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 14.5 MiB 0.94 799 53.1 MiB 0.09 0.00 2.7886 -85.1108 -2.7886 2.7886 1.01 0.000182084 0.000147028 0.0161718 0.0132232 32 1979 29 6.87369e+06 307425 586450. 2029.24 1.11 0.0556276 0.0475566 25474 144626 -1 1582 18 929 1537 116644 27564 0 0 116644 27564 1537 1072 0 0 6192 5378 0 0 10073 8017 0 0 1537 1208 0 0 49107 5804 0 0 48198 6085 0 0 1537 0 0 608 728 905 5672 0 0 3.02456 3.02456 -101.331 -3.02456 0 0 744469. 2576.02 0.29 0.04 0.12 -1 -1 0.29 0.0102287 0.00905326 93 20 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.58 vpr 53.57 MiB -1 -1 0.15 17576 1 0.01 -1 -1 29772 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54860 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 15.1 MiB 2.27 970 53.6 MiB 0.07 0.00 3.03076 -109.675 -3.03076 3.03076 0.93 0.000128711 0.000103417 0.013105 0.010706 34 2529 25 6.87369e+06 251529 618332. 2139.56 1.13 0.0531257 0.0443952 25762 151098 -1 2127 22 1707 2462 220388 48938 0 0 220388 48938 2462 2128 0 0 9897 8991 0 0 15833 12742 0 0 2462 2197 0 0 98088 11067 0 0 91646 11813 0 0 2462 0 0 755 755 653 6135 0 0 3.4778 3.4778 -136.9 -3.4778 0 0 787024. 2723.27 0.28 0.05 0.14 -1 -1 0.28 0.00939237 0.00828979 124 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.49 vpr 54.02 MiB -1 -1 0.17 17820 1 0.01 -1 -1 29832 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55312 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 15.5 MiB 3.34 1419 54.0 MiB 0.14 0.00 4.50952 -138.935 -4.50952 4.50952 0.80 0.000248807 0.00020157 0.0228447 0.0187791 34 3489 40 6.87369e+06 335372 618332. 2139.56 2.13 0.114015 0.0971719 25762 151098 -1 2917 24 2084 3241 237719 55634 0 0 237719 55634 3241 2775 0 0 12430 10825 0 0 19016 14963 0 0 3241 2921 0 0 98739 12193 0 0 101052 11957 0 0 3241 0 0 1157 1437 1315 9886 0 0 4.8644 4.8644 -163.963 -4.8644 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0115644 0.0102408 166 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.40 vpr 53.62 MiB -1 -1 0.15 17468 1 0.01 -1 -1 29648 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 15.0 MiB 2.68 821 53.6 MiB 0.05 0.00 3.22801 -101.489 -3.22801 3.22801 0.85 0.000130559 9.7476e-05 0.00721594 0.00588746 34 2122 36 6.87369e+06 475111 618332. 2139.56 1.19 0.0513671 0.0433954 25762 151098 -1 1741 20 1318 2067 135224 35892 0 0 135224 35892 2067 1511 0 0 7839 6688 0 0 12065 9676 0 0 2067 1680 0 0 55240 8018 0 0 55946 8319 0 0 2067 0 0 749 781 922 7033 0 0 3.13526 3.13526 -121.002 -3.13526 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00868186 0.00765866 137 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.48 vpr 53.16 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29684 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54432 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 14.7 MiB 1.00 721 53.2 MiB 0.08 0.00 2.8516 -89.7325 -2.8516 2.8516 1.03 0.000198029 0.000161615 0.014099 0.0116559 28 2211 43 6.87369e+06 349346 531479. 1839.03 1.31 0.0593556 0.0511709 24610 126494 -1 1739 21 1065 1648 127029 30352 0 0 127029 30352 1648 1328 0 0 6292 5473 0 0 9212 7557 0 0 1648 1412 0 0 51356 7522 0 0 56873 7060 0 0 1648 0 0 583 822 776 5863 0 0 3.30621 3.30621 -113.712 -3.30621 0 0 648988. 2245.63 0.22 0.03 0.07 -1 -1 0.22 0.00829784 0.00734682 104 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 8.88 vpr 54.02 MiB -1 -1 0.15 17612 1 0.02 -1 -1 29828 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55312 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 15.4 MiB 4.71 1376 54.0 MiB 0.05 0.00 4.57575 -140.174 -4.57575 4.57575 0.66 0.000153581 0.000124496 0.00880597 0.00728973 34 3679 26 6.87369e+06 349346 618332. 2139.56 1.49 0.0688466 0.058754 25762 151098 -1 2900 24 2305 3499 287190 65018 0 0 287190 65018 3499 3067 0 0 13539 12156 0 0 21009 16628 0 0 3499 3194 0 0 122931 14743 0 0 122713 15230 0 0 3499 0 0 1194 1639 1760 11288 0 0 5.1238 5.1238 -175.32 -5.1238 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0212902 0.0188883 171 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 7.85 vpr 53.54 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29688 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 15.0 MiB 3.89 1066 53.5 MiB 0.11 0.00 3.66202 -115.266 -3.66202 3.66202 0.80 0.000250627 0.000206974 0.0169151 0.0137952 32 2580 28 6.87369e+06 489084 586450. 2029.24 0.77 0.0533804 0.0450106 25474 144626 -1 2010 22 1571 2697 213352 47798 0 0 213352 47798 2697 1794 0 0 10568 9369 0 0 17538 13634 0 0 2697 1990 0 0 92774 10300 0 0 87078 10711 0 0 2697 0 0 1126 1503 1586 10976 0 0 3.9207 3.9207 -136.884 -3.9207 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.0155023 0.0136332 135 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.58 vpr 53.12 MiB -1 -1 0.15 17084 1 0.01 -1 -1 29540 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54400 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 14.6 MiB 0.60 862 53.1 MiB 0.08 0.00 2.8436 -87.7852 -2.8436 2.8436 1.03 0.000174193 0.000140108 0.0122087 0.00998148 34 1943 19 6.87369e+06 335372 618332. 2139.56 3.00 0.0890868 0.0763746 25762 151098 -1 1629 20 987 1735 136032 30527 0 0 136032 30527 1735 1200 0 0 6692 5774 0 0 10382 8137 0 0 1735 1318 0 0 58179 6881 0 0 57309 7217 0 0 1735 0 0 748 978 1039 7026 0 0 3.03056 3.03056 -101.961 -3.03056 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0106441 0.00938063 94 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.95 vpr 53.57 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29788 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 15.0 MiB 2.68 1163 53.6 MiB 0.09 0.00 4.13467 -113.812 -4.13467 4.13467 0.59 0.000126638 0.000102109 0.0122527 0.00987471 30 2656 22 6.87369e+06 517032 556674. 1926.21 2.63 0.0932683 0.0793549 25186 138497 -1 2116 19 1111 2191 130026 30114 0 0 130026 30114 2191 1357 0 0 7604 6484 0 0 10329 8379 0 0 2191 1520 0 0 54339 6266 0 0 53372 6108 0 0 2191 0 0 1080 1735 2018 12498 0 0 4.06035 4.06035 -130.563 -4.06035 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0137921 0.0121728 145 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.58 vpr 53.23 MiB -1 -1 0.14 16884 1 0.01 -1 -1 29656 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54504 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 14.6 MiB 1.00 676 53.2 MiB 0.04 0.00 2.8626 -88.1019 -2.8626 2.8626 1.04 0.000173229 0.000140597 0.00676872 0.00560231 34 1796 21 6.87369e+06 265503 618332. 2139.56 1.31 0.0517583 0.0443163 25762 151098 -1 1482 21 1145 2043 130203 33100 0 0 130203 33100 2043 1568 0 0 7670 6853 0 0 11852 9347 0 0 2043 1680 0 0 51758 6764 0 0 54837 6888 0 0 2043 0 0 898 919 1100 7456 0 0 2.75796 2.75796 -101.948 -2.75796 0 0 787024. 2723.27 0.27 0.05 0.12 -1 -1 0.27 0.011973 0.0104931 98 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.67 vpr 53.45 MiB -1 -1 0.15 17500 1 0.02 -1 -1 29732 -1 -1 34 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54728 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 14.9 MiB 2.33 765 53.4 MiB 0.04 0.00 3.03828 -91.2623 -3.03828 3.03828 0.59 0.000104837 8.1843e-05 0.00553115 0.00446232 26 2306 49 6.87369e+06 475111 503264. 1741.40 3.18 0.103392 0.0898794 24322 120374 -1 1904 21 1333 2406 209977 50537 0 0 209977 50537 2406 1798 0 0 9403 7972 0 0 14416 11494 0 0 2406 1993 0 0 86516 14060 0 0 94830 13220 0 0 2406 0 0 1073 1669 1568 10880 0 0 3.46716 3.46716 -122.653 -3.46716 0 0 618332. 2139.56 0.20 0.05 0.06 -1 -1 0.20 0.00765235 0.0067152 109 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.36 vpr 53.64 MiB -1 -1 0.17 17588 1 0.01 -1 -1 29752 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54928 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 15.0 MiB 4.18 1073 53.6 MiB 0.10 0.00 3.19963 -100.413 -3.19963 3.19963 0.96 0.00021576 0.000173382 0.0171959 0.0140277 34 2983 26 6.87369e+06 335372 618332. 2139.56 1.89 0.0945835 0.0806915 25762 151098 -1 2293 21 1882 2882 227444 52278 0 0 227444 52278 2882 2267 0 0 11017 9915 0 0 17426 13614 0 0 2882 2560 0 0 101783 11333 0 0 91454 12589 0 0 2882 0 0 1000 955 977 7814 0 0 3.23091 3.23091 -118.544 -3.23091 0 0 787024. 2723.27 0.33 0.08 0.13 -1 -1 0.33 0.0165083 0.0145802 138 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.30 vpr 53.86 MiB -1 -1 0.16 17516 1 0.01 -1 -1 29772 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 15.1 MiB 2.66 1073 53.9 MiB 0.11 0.00 3.61045 -119.578 -3.61045 3.61045 0.85 0.000251548 0.000206883 0.0201927 0.0167492 34 2346 19 6.87369e+06 363320 618332. 2139.56 1.39 0.0814219 0.0692012 25762 151098 -1 2032 21 1506 2306 180262 40066 0 0 180262 40066 2306 1700 0 0 8696 7430 0 0 13462 10629 0 0 2306 1742 0 0 80519 8418 0 0 72973 10147 0 0 2306 0 0 800 894 945 7113 0 0 3.82646 3.82646 -137.91 -3.82646 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0171511 0.0151501 132 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 10.56 vpr 53.68 MiB -1 -1 0.15 17512 1 0.02 -1 -1 29632 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 15.1 MiB 1.96 975 53.7 MiB 0.13 0.00 3.69318 -113.32 -3.69318 3.69318 0.94 0.000226838 0.000183236 0.0211684 0.0172037 28 3159 34 6.87369e+06 377294 531479. 1839.03 5.64 0.145709 0.126665 24610 126494 -1 2558 21 1801 3109 287245 62490 0 0 287245 62490 3109 2505 0 0 11807 10300 0 0 17513 14144 0 0 3109 2635 0 0 128197 16166 0 0 123510 16740 0 0 3109 0 0 1308 1796 1629 11786 0 0 4.04706 4.04706 -142.748 -4.04706 0 0 648988. 2245.63 0.17 0.05 0.09 -1 -1 0.17 0.00906401 0.00800785 133 48 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.62 vpr 53.27 MiB -1 -1 0.07 17684 1 0.01 -1 -1 29724 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54544 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 14.8 MiB 3.46 920 53.3 MiB 0.09 0.00 3.74452 -108.972 -3.74452 3.74452 1.02 0.000190435 0.000155096 0.0177666 0.0146025 30 2167 19 6.87369e+06 209608 556674. 1926.21 0.93 0.0494564 0.0418393 25186 138497 -1 1797 18 887 1250 82204 19120 0 0 82204 19120 1250 1071 0 0 4399 3659 0 0 5711 4728 0 0 1250 1130 0 0 34756 4190 0 0 34838 4342 0 0 1250 0 0 363 430 406 3191 0 0 3.17057 3.17057 -114.633 -3.17057 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0113711 0.0101921 103 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.80 vpr 53.29 MiB -1 -1 0.17 17688 1 0.02 -1 -1 29804 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54564 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 14.7 MiB 3.10 875 53.3 MiB 0.09 0.00 2.99776 -101.048 -2.99776 2.99776 1.04 0.00012578 0.000102005 0.0177949 0.0146596 34 2463 19 6.87369e+06 237555 618332. 2139.56 1.30 0.0770379 0.0656141 25762 151098 -1 2004 21 1397 2064 163961 37711 0 0 163961 37711 2064 1707 0 0 7972 7026 0 0 12358 9687 0 0 2064 1884 0 0 72008 8561 0 0 67495 8846 0 0 2064 0 0 667 550 604 5219 0 0 3.37011 3.37011 -125.628 -3.37011 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0131994 0.0116543 114 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.29 vpr 53.46 MiB -1 -1 0.17 17448 1 0.02 -1 -1 29788 -1 -1 34 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 15.0 MiB 2.05 967 53.5 MiB 0.11 0.00 2.73725 -83.2823 -2.73725 2.73725 0.94 0.000207684 0.000166389 0.0175782 0.0142675 26 2531 23 6.87369e+06 475111 503264. 1741.40 1.26 0.0621577 0.0529883 24322 120374 -1 2293 21 1402 2639 282896 70657 0 0 282896 70657 2639 1832 0 0 10398 9048 0 0 17461 13868 0 0 2639 1977 0 0 127188 22268 0 0 122571 21664 0 0 2639 0 0 1237 2295 2542 14163 0 0 3.04486 3.04486 -107.934 -3.04486 0 0 618332. 2139.56 0.27 0.09 0.11 -1 -1 0.27 0.0157441 0.0139559 124 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.23 vpr 53.38 MiB -1 -1 0.13 17576 1 0.01 -1 -1 29764 -1 -1 35 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 14.8 MiB 2.36 724 53.4 MiB 0.05 0.00 3.26379 -83.0213 -3.26379 3.26379 0.67 0.000100002 7.9935e-05 0.00766189 0.00620711 30 2032 25 6.87369e+06 489084 556674. 1926.21 2.44 0.0726085 0.0621027 25186 138497 -1 1526 18 882 1785 106297 26391 0 0 106297 26391 1785 1173 0 0 6111 5134 0 0 8276 6641 0 0 1785 1265 0 0 42839 6253 0 0 45501 5925 0 0 1785 0 0 903 1531 1381 9580 0 0 3.7264 3.7264 -103.278 -3.7264 0 0 706193. 2443.58 0.25 0.04 0.08 -1 -1 0.25 0.00957312 0.00850322 117 20 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 9.97 vpr 53.43 MiB -1 -1 0.17 17480 1 0.02 -1 -1 29756 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54708 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 14.8 MiB 3.69 826 53.4 MiB 0.08 0.00 3.16363 -99.5422 -3.16363 3.16363 1.00 0.000209073 0.00016817 0.0151413 0.0123563 34 2069 23 6.87369e+06 237555 618332. 2139.56 2.90 0.0950151 0.0796512 25762 151098 -1 1762 21 1361 2369 191941 43466 0 0 191941 43466 2369 1903 0 0 8931 7851 0 0 13767 10908 0 0 2369 1984 0 0 85126 10115 0 0 79379 10705 0 0 2369 0 0 1008 1154 1349 8454 0 0 3.16976 3.16976 -118.563 -3.16976 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.0161709 0.0143073 105 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.20 vpr 53.46 MiB -1 -1 0.09 17448 1 0.01 -1 -1 29708 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 15.0 MiB 3.42 1050 53.5 MiB 0.05 0.00 2.9238 -102.589 -2.9238 2.9238 0.94 0.000118475 9.4671e-05 0.0096367 0.00786119 34 2646 26 6.87369e+06 237555 618332. 2139.56 1.57 0.0825252 0.0706831 25762 151098 -1 2183 19 1412 2083 181255 40695 0 0 181255 40695 2083 1748 0 0 8416 7519 0 0 12945 10504 0 0 2083 1943 0 0 76069 9970 0 0 79659 9011 0 0 2083 0 0 671 672 596 5364 0 0 3.23291 3.23291 -126.394 -3.23291 0 0 787024. 2723.27 0.33 0.07 0.14 -1 -1 0.33 0.0151409 0.0135291 122 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.93 vpr 53.37 MiB -1 -1 0.15 17096 1 0.02 -1 -1 29776 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 14.8 MiB 1.02 1019 53.4 MiB 0.05 0.00 3.60082 -108.977 -3.60082 3.60082 0.98 0.000130009 0.000105996 0.00679902 0.00563026 28 2564 20 6.87369e+06 433189 531479. 1839.03 2.59 0.0788083 0.0677556 24610 126494 -1 2299 21 1407 2461 205338 44744 0 0 205338 44744 2461 1918 0 0 9070 7751 0 0 14020 10988 0 0 2461 2054 0 0 89030 10585 0 0 88296 11448 0 0 2461 0 0 1054 1215 1360 9328 0 0 3.7151 3.7151 -125.572 -3.7151 0 0 648988. 2245.63 0.28 0.07 0.12 -1 -1 0.28 0.0145192 0.0128734 129 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.80 vpr 53.77 MiB -1 -1 0.14 17512 1 0.01 -1 -1 29708 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55056 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 15.2 MiB 3.54 1147 53.8 MiB 0.07 0.00 3.78918 -125.267 -3.78918 3.78918 0.95 0.000215837 0.000173535 0.0112048 0.00924308 34 3194 26 6.87369e+06 321398 618332. 2139.56 2.13 0.0994403 0.0862093 25762 151098 -1 2592 23 1962 2993 238746 55774 0 0 238746 55774 2993 2557 0 0 11981 10674 0 0 18461 14758 0 0 2993 2653 0 0 103257 12326 0 0 99061 12806 0 0 2993 0 0 1031 1161 1102 8349 0 0 4.13006 4.13006 -149.081 -4.13006 0 0 787024. 2723.27 0.22 0.08 0.08 -1 -1 0.22 0.0163971 0.0145145 147 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 10.07 vpr 53.88 MiB -1 -1 0.14 17468 1 0.02 -1 -1 29780 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55176 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 15.5 MiB 4.89 1104 53.9 MiB 0.12 0.00 4.17957 -127.537 -4.17957 4.17957 1.04 0.000282483 0.000233156 0.0193176 0.0160042 34 2793 24 6.87369e+06 503058 618332. 2139.56 1.72 0.100817 0.0868763 25762 151098 -1 2265 20 1510 2612 214214 47249 0 0 214214 47249 2612 1967 0 0 10316 9130 0 0 15552 12539 0 0 2612 2084 0 0 97904 9595 0 0 85218 11934 0 0 2612 0 0 1102 1314 1264 10052 0 0 4.16385 4.16385 -144.617 -4.16385 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0179265 0.0159891 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 11.04 vpr 53.84 MiB -1 -1 0.17 17404 1 0.02 -1 -1 29760 -1 -1 41 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 15.4 MiB 3.83 1157 53.8 MiB 0.13 0.00 3.58682 -120.014 -3.58682 3.58682 1.05 0.000325348 0.000276312 0.0200275 0.0164954 28 2875 21 6.87369e+06 572927 531479. 1839.03 3.76 0.117421 0.101631 24610 126494 -1 2511 21 1707 3048 234429 54490 0 0 234429 54490 3048 2272 0 0 11794 10456 0 0 18178 14699 0 0 3048 2458 0 0 101420 12299 0 0 96941 12306 0 0 3048 0 0 1341 1652 1657 12084 0 0 3.9647 3.9647 -145.687 -3.9647 0 0 648988. 2245.63 0.28 0.08 0.12 -1 -1 0.28 0.0176155 0.0155554 148 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 9.16 vpr 53.24 MiB -1 -1 0.15 17504 1 0.01 -1 -1 29776 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 14.8 MiB 2.99 755 53.2 MiB 0.05 0.00 3.28893 -99.4942 -3.28893 3.28893 0.96 0.000180302 0.00014581 0.00852389 0.00703513 34 1965 21 6.87369e+06 237555 618332. 2139.56 2.94 0.0767379 0.065458 25762 151098 -1 1649 23 1171 1992 133616 32988 0 0 133616 32988 1992 1558 0 0 7646 6755 0 0 12100 9547 0 0 1992 1762 0 0 55898 6409 0 0 53988 6957 0 0 1992 0 0 821 771 854 6414 0 0 3.02731 3.02731 -110.073 -3.02731 0 0 787024. 2723.27 0.32 0.06 0.13 -1 -1 0.32 0.0142712 0.0126843 99 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.76 vpr 53.79 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29800 -1 -1 22 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55076 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 15.2 MiB 4.01 1053 53.8 MiB 0.10 0.00 3.55872 -115.606 -3.55872 3.55872 0.95 0.000231419 0.0001877 0.0197704 0.0163558 34 2448 24 6.87369e+06 307425 618332. 2139.56 2.46 0.101147 0.0857682 25762 151098 -1 2016 18 1496 2356 163163 37934 0 0 163163 37934 2356 1865 0 0 8757 7424 0 0 12947 10390 0 0 2356 1954 0 0 68334 8299 0 0 68413 8002 0 0 2356 0 0 860 829 1008 7321 0 0 3.8794 3.8794 -143.209 -3.8794 0 0 787024. 2723.27 0.26 0.04 0.14 -1 -1 0.26 0.0120279 0.010673 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 6.38 vpr 53.68 MiB -1 -1 0.15 17560 1 0.02 -1 -1 29704 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 15.1 MiB 2.63 1166 53.7 MiB 0.06 0.00 4.00821 -122.15 -4.00821 4.00821 0.67 0.00012803 0.00010421 0.00914686 0.0074965 34 2799 22 6.87369e+06 321398 618332. 2139.56 1.30 0.0612439 0.0523493 25762 151098 -1 2312 22 1659 2777 203012 49057 0 0 203012 49057 2777 2290 0 0 10802 9634 0 0 16746 13347 0 0 2777 2414 0 0 85298 10766 0 0 84612 10606 0 0 2777 0 0 1118 1753 1721 11777 0 0 4.01606 4.01606 -141.314 -4.01606 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.0091306 0.00805962 140 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 10.65 vpr 53.69 MiB -1 -1 0.16 17504 1 0.01 -1 -1 29840 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 15.1 MiB 2.82 921 53.7 MiB 0.08 0.00 4.30764 -122.589 -4.30764 4.30764 0.95 0.000226426 0.000185152 0.0156341 0.012926 30 3004 45 6.87369e+06 391268 556674. 1926.21 4.63 0.0924914 0.0791358 25186 138497 -1 2066 18 1318 2101 135961 33370 0 0 135961 33370 2101 1636 0 0 7348 6023 0 0 9640 7909 0 0 2101 1693 0 0 55851 7607 0 0 58920 8502 0 0 2101 0 0 783 890 846 6956 0 0 4.4063 4.4063 -144.606 -4.4063 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.014691 0.0131557 141 43 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 9.58 vpr 53.74 MiB -1 -1 0.14 17444 1 0.02 -1 -1 29704 -1 -1 32 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55028 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 15.2 MiB 3.38 1014 53.7 MiB 0.12 0.00 3.69518 -116.283 -3.69518 3.69518 0.94 0.000246562 0.000199231 0.0206301 0.0167731 32 2605 33 6.87369e+06 447163 586450. 2029.24 3.11 0.115294 0.0982229 25474 144626 -1 2178 22 1405 2352 202621 45399 0 0 202621 45399 2352 1765 0 0 9471 8394 0 0 15816 12674 0 0 2352 1900 0 0 91610 9623 0 0 81020 11043 0 0 2352 0 0 947 1109 1073 8215 0 0 3.5258 3.5258 -129.232 -3.5258 0 0 744469. 2576.02 0.19 0.04 0.07 -1 -1 0.19 0.00952815 0.00837194 135 78 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.66 vpr 53.79 MiB -1 -1 0.17 17560 1 0.01 -1 -1 29644 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55076 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 15.2 MiB 2.59 1051 53.8 MiB 0.07 0.00 3.73418 -118.836 -3.73418 3.73418 0.59 0.000124363 9.9668e-05 0.0113792 0.00925252 34 2849 21 6.87369e+06 293451 618332. 2139.56 1.66 0.0832276 0.0711755 25762 151098 -1 2335 20 1605 2813 202951 47419 0 0 202951 47419 2813 2321 0 0 10866 9564 0 0 16132 12799 0 0 2813 2414 0 0 85339 10499 0 0 84988 9822 0 0 2813 0 0 1208 1427 1273 9695 0 0 4.11106 4.11106 -143.842 -4.11106 0 0 787024. 2723.27 0.25 0.06 0.11 -1 -1 0.25 0.0142857 0.0126111 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 9.65 vpr 53.70 MiB -1 -1 0.18 17572 1 0.02 -1 -1 29760 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54988 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 15.1 MiB 3.12 976 53.7 MiB 0.11 0.00 3.31093 -103.218 -3.31093 3.31093 1.04 0.000240843 0.000194159 0.0181949 0.0149029 30 2204 22 6.87369e+06 405241 556674. 1926.21 3.09 0.119676 0.10152 25186 138497 -1 1704 19 1128 1847 100009 24030 0 0 100009 24030 1847 1295 0 0 6334 5283 0 0 8672 7022 0 0 1847 1385 0 0 41970 4359 0 0 39339 4686 0 0 1847 0 0 719 773 719 5946 0 0 2.98731 2.98731 -110.835 -2.98731 0 0 706193. 2443.58 0.31 0.05 0.13 -1 -1 0.31 0.0162277 0.0144272 132 79 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.84 vpr 53.09 MiB -1 -1 0.14 17084 1 0.01 -1 -1 29600 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 14.5 MiB 0.56 880 53.1 MiB 0.05 0.00 3.18563 -100.905 -3.18563 3.18563 0.79 9.6939e-05 7.701e-05 0.00830367 0.00670816 28 1927 21 6.87369e+06 237555 531479. 1839.03 1.75 0.0494691 0.0415235 24610 126494 -1 1708 18 896 1290 98414 23160 0 0 98414 23160 1290 1136 0 0 4924 4229 0 0 7150 5886 0 0 1290 1172 0 0 42596 5279 0 0 41164 5458 0 0 1290 0 0 394 432 410 3384 0 0 3.06931 3.06931 -110.017 -3.06931 0 0 648988. 2245.63 0.26 0.04 0.11 -1 -1 0.26 0.0107305 0.00957381 96 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 12.84 vpr 53.95 MiB -1 -1 0.15 17448 1 0.02 -1 -1 29636 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55244 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 15.2 MiB 5.93 1042 53.9 MiB 0.10 0.00 3.67482 -115.827 -3.67482 3.67482 0.81 0.000230072 0.0001844 0.0155671 0.0125839 34 2497 22 6.87369e+06 475111 618332. 2139.56 3.78 0.155559 0.133417 25762 151098 -1 2119 24 1650 2742 243697 52481 0 0 243697 52481 2742 2263 0 0 10931 9651 0 0 16784 13462 0 0 2742 2374 0 0 112338 11248 0 0 98160 13483 0 0 2742 0 0 1092 1204 1096 9222 0 0 3.6718 3.6718 -133.61 -3.6718 0 0 787024. 2723.27 0.30 0.08 0.08 -1 -1 0.30 0.0167227 0.0146192 137 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.52 vpr 53.79 MiB -1 -1 0.11 17636 1 0.02 -1 -1 29700 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55076 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 15.1 MiB 3.71 1101 53.8 MiB 0.08 0.00 3.54952 -124.233 -3.54952 3.54952 0.94 0.000242754 0.000195039 0.0163872 0.0134429 34 2634 24 6.87369e+06 293451 618332. 2139.56 1.58 0.101162 0.0860282 25762 151098 -1 2121 23 1960 3328 218362 52266 0 0 218362 52266 3328 2528 0 0 12497 10984 0 0 19084 15026 0 0 3328 2732 0 0 89413 10659 0 0 90712 10337 0 0 3328 0 0 1368 1673 1749 11680 0 0 4.0517 4.0517 -152.739 -4.0517 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0198714 0.017565 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 5.87 vpr 53.30 MiB -1 -1 0.15 17464 1 0.01 -1 -1 29708 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 14.9 MiB 2.68 963 53.3 MiB 0.05 0.00 3.47382 -106.52 -3.47382 3.47382 0.68 9.8798e-05 7.8687e-05 0.0081733 0.00664894 34 2254 23 6.87369e+06 223581 618332. 2139.56 0.92 0.0377399 0.0315686 25762 151098 -1 1981 23 1291 1747 148130 33647 0 0 148130 33647 1747 1555 0 0 6994 6114 0 0 10666 8655 0 0 1747 1594 0 0 64986 7790 0 0 61990 7939 0 0 1747 0 0 456 444 580 4205 0 0 3.2402 3.2402 -117.786 -3.2402 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00777241 0.00684344 106 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 6.72 vpr 53.07 MiB -1 -1 0.14 16944 1 0.01 -1 -1 29716 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 14.5 MiB 0.96 835 53.1 MiB 0.07 0.00 3.17463 -98.2488 -3.17463 3.17463 1.02 0.000183607 0.00014854 0.0104357 0.00857244 28 1929 20 6.87369e+06 279477 531479. 1839.03 2.49 0.0857365 0.0732212 24610 126494 -1 1782 20 1232 2034 138862 32213 0 0 138862 32213 2034 1531 0 0 7305 6208 0 0 10900 8543 0 0 2034 1627 0 0 57382 7227 0 0 59207 7077 0 0 2034 0 0 802 814 848 6600 0 0 2.91301 2.91301 -109.556 -2.91301 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.012123 0.0107822 99 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 8.70 vpr 53.82 MiB -1 -1 0.13 17344 1 0.01 -1 -1 29656 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55108 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 15.2 MiB 3.82 1215 53.8 MiB 0.11 0.00 3.74338 -123.963 -3.74338 3.74338 1.00 0.000238314 0.000191584 0.02081 0.0170334 34 3008 22 6.87369e+06 321398 618332. 2139.56 1.70 0.093279 0.0789642 25762 151098 -1 2427 20 1874 2564 180039 43098 0 0 180039 43098 2564 2311 0 0 9709 8407 0 0 15020 11924 0 0 2564 2386 0 0 74798 9310 0 0 75384 8760 0 0 2564 0 0 690 747 639 6020 0 0 4.31866 4.31866 -152.211 -4.31866 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.00934521 0.0083111 145 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 9.37 vpr 53.44 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29792 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 15.1 MiB 3.28 1080 53.4 MiB 0.05 0.00 4.30764 -126.567 -4.30764 4.30764 0.68 0.000135155 0.00010825 0.00809112 0.00663908 34 3522 50 6.87369e+06 377294 618332. 2139.56 3.57 0.100451 0.087182 25762 151098 -1 2493 21 1707 2540 198312 46989 0 0 198312 46989 2540 2039 0 0 9800 8641 0 0 14917 12040 0 0 2540 2152 0 0 85623 10536 0 0 82892 11581 0 0 2540 0 0 833 985 950 7668 0 0 4.75425 4.75425 -158.507 -4.75425 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.00915596 0.00808679 142 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 8.08 vpr 53.68 MiB -1 -1 0.13 17244 1 0.01 -1 -1 29692 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 15.1 MiB 0.81 1265 53.7 MiB 0.16 0.00 4.25887 -122.974 -4.25887 4.25887 1.02 0.000247311 0.000198778 0.0225878 0.0183531 28 2872 25 6.87369e+06 503058 531479. 1839.03 4.37 0.126944 0.109379 24610 126494 -1 2602 24 1981 3525 301455 66924 0 0 301455 66924 3525 2548 0 0 13456 11599 0 0 20131 16063 0 0 3525 2787 0 0 132782 16721 0 0 128036 17206 0 0 3525 0 0 1544 2324 2586 15269 0 0 4.58685 4.58685 -151.75 -4.58685 0 0 648988. 2245.63 0.17 0.06 0.10 -1 -1 0.17 0.0103554 0.009074 157 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.36 vpr 53.52 MiB -1 -1 0.16 17648 1 0.03 -1 -1 29676 -1 -1 34 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 14.9 MiB 2.87 800 53.5 MiB 0.06 0.00 2.81125 -85.0627 -2.81125 2.81125 0.61 0.000111934 8.9632e-05 0.00939017 0.00752563 32 2500 26 6.87369e+06 475111 586450. 2029.24 2.23 0.0708846 0.0593008 25474 144626 -1 1905 24 1626 2849 267473 61240 0 0 267473 61240 2849 2174 0 0 11476 10030 0 0 19944 15273 0 0 2849 2347 0 0 114892 15969 0 0 115463 15447 0 0 2849 0 0 1223 1613 1556 10769 0 0 2.91926 2.91926 -102.358 -2.91926 0 0 744469. 2576.02 0.19 0.05 0.07 -1 -1 0.19 0.00866389 0.00757545 119 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.84 vpr 53.21 MiB -1 -1 0.14 17180 1 0.01 -1 -1 29780 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54484 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 14.6 MiB 1.17 731 53.2 MiB 0.07 0.00 2.8908 -83.9796 -2.8908 2.8908 0.95 0.00017421 0.000137751 0.0123324 0.00999339 30 1559 20 6.87369e+06 293451 556674. 1926.21 0.58 0.0290966 0.024244 25186 138497 -1 1346 19 871 1362 75297 17695 0 0 75297 17695 1362 918 0 0 4517 3568 0 0 5980 4778 0 0 1362 987 0 0 33107 3377 0 0 28969 4067 0 0 1362 0 0 491 468 498 4113 0 0 2.65756 2.65756 -95.531 -2.65756 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.0101718 0.00893989 96 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 10.00 vpr 54.23 MiB -1 -1 0.18 17824 1 0.02 -1 -1 29796 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55528 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 15.5 MiB 4.32 1362 54.2 MiB 0.09 0.00 3.46315 -116.785 -3.46315 3.46315 1.01 0.000292383 0.000238769 0.0164608 0.0135015 34 3779 26 6.87369e+06 335372 618332. 2139.56 2.20 0.101343 0.0863097 25762 151098 -1 2948 21 2090 3525 279723 63208 0 0 279723 63208 3525 2780 0 0 13569 12289 0 0 21256 17145 0 0 3525 2914 0 0 122550 13259 0 0 115298 14821 0 0 3525 0 0 1435 1714 1681 11919 0 0 4.03326 4.03326 -141.405 -4.03326 0 0 787024. 2723.27 0.32 0.09 0.14 -1 -1 0.32 0.0190936 0.016856 165 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 12.91 vpr 53.75 MiB -1 -1 0.18 17684 1 0.01 -1 -1 29712 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55036 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 15.1 MiB 5.34 1070 53.7 MiB 0.11 0.00 4.58967 -141.462 -4.58967 4.58967 1.01 0.000246091 0.000200475 0.0215198 0.0177532 36 2571 21 6.87369e+06 307425 648988. 2245.63 4.06 0.128726 0.109868 26050 158493 -1 2156 20 1421 2263 179039 39346 0 0 179039 39346 2263 2003 0 0 8647 7407 0 0 12713 10415 0 0 2263 2067 0 0 83913 7735 0 0 69240 9719 0 0 2263 0 0 842 1045 842 7364 0 0 4.23075 4.23075 -149.044 -4.23075 0 0 828058. 2865.25 0.35 0.07 0.15 -1 -1 0.35 0.0166427 0.0148416 139 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 9.83 vpr 53.42 MiB -1 -1 0.14 17576 1 0.01 -1 -1 29732 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 15.1 MiB 5.61 1042 53.4 MiB 0.06 0.00 3.45235 -119.778 -3.45235 3.45235 0.88 0.000129852 0.000105228 0.0105465 0.00864736 34 2467 23 6.87369e+06 251529 618332. 2139.56 1.19 0.0591872 0.0500257 25762 151098 -1 2096 18 1365 2000 144119 33692 0 0 144119 33692 2000 1724 0 0 7664 6525 0 0 11028 8909 0 0 2000 1822 0 0 58036 7952 0 0 63391 6760 0 0 2000 0 0 635 544 672 5245 0 0 3.64636 3.64636 -141.991 -3.64636 0 0 787024. 2723.27 0.24 0.05 0.08 -1 -1 0.24 0.0128956 0.0114427 118 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 7.68 vpr 53.61 MiB -1 -1 0.09 17340 1 0.01 -1 -1 29732 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54892 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 15.2 MiB 1.49 1112 53.6 MiB 0.13 0.00 4.23995 -117.781 -4.23995 4.23995 1.02 0.00023954 0.000197513 0.0214228 0.017667 32 2820 27 6.87369e+06 461137 586450. 2029.24 3.03 0.107381 0.0914185 25474 144626 -1 2198 21 1160 1819 161065 34689 0 0 161065 34689 1819 1448 0 0 7177 6076 0 0 11418 8882 0 0 1819 1570 0 0 71799 7748 0 0 67033 8965 0 0 1819 0 0 659 734 700 5690 0 0 3.7233 3.7233 -127.988 -3.7233 0 0 744469. 2576.02 0.22 0.06 0.08 -1 -1 0.22 0.0139051 0.0122315 129 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.54 vpr 53.76 MiB -1 -1 0.12 17652 1 0.01 -1 -1 29732 -1 -1 34 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55052 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 15.3 MiB 1.95 971 53.8 MiB 0.06 0.00 3.65995 -104.886 -3.65995 3.65995 0.59 0.000131859 0.0001065 0.00855613 0.00703729 28 2415 21 6.87369e+06 475111 531479. 1839.03 2.27 0.0841745 0.0716401 24610 126494 -1 2137 20 1510 2502 164017 41732 0 0 164017 41732 2502 1911 0 0 9404 7994 0 0 13658 11066 0 0 2502 2022 0 0 66350 9775 0 0 69601 8964 0 0 2502 0 0 992 1456 1628 10124 0 0 3.95806 3.95806 -130.424 -3.95806 0 0 648988. 2245.63 0.23 0.04 0.11 -1 -1 0.23 0.0105136 0.00932669 149 46 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 10.80 vpr 53.62 MiB -1 -1 0.18 17460 1 0.02 -1 -1 29652 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 15.2 MiB 2.43 975 53.6 MiB 0.12 0.00 3.0099 -91.6534 -3.0099 3.0099 1.02 0.000218521 0.000175487 0.0182818 0.0149087 28 2641 21 6.87369e+06 433189 531479. 1839.03 5.30 0.112064 0.0965753 24610 126494 -1 2376 21 1480 2673 221294 49018 0 0 221294 49018 2673 1950 0 0 9873 8464 0 0 14637 11517 0 0 2673 2118 0 0 98311 12076 0 0 93127 12893 0 0 2673 0 0 1193 1733 1733 11138 0 0 3.10561 3.10561 -111.14 -3.10561 0 0 648988. 2245.63 0.17 0.06 0.07 -1 -1 0.17 0.0141053 0.0124997 124 46 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 7.70 vpr 53.54 MiB -1 -1 0.10 17348 1 0.02 -1 -1 29640 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 15.1 MiB 3.29 1238 53.5 MiB 0.11 0.00 3.82834 -125.973 -3.82834 3.82834 0.68 0.000222365 0.000179449 0.0190954 0.015623 34 3433 24 6.87369e+06 307425 618332. 2139.56 1.82 0.0837823 0.0717143 25762 151098 -1 2771 26 2395 3772 361082 77419 0 0 361082 77419 3772 3205 0 0 14636 13259 0 0 25080 19361 0 0 3772 3316 0 0 156736 18849 0 0 157086 19429 0 0 3772 0 0 1377 1583 1542 11100 0 0 4.28295 4.28295 -150.415 -4.28295 0 0 787024. 2723.27 0.30 0.10 0.14 -1 -1 0.30 0.0175209 0.0153702 148 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 10.19 vpr 53.77 MiB -1 -1 0.17 17516 1 0.01 -1 -1 29648 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55056 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 15.3 MiB 3.90 1052 53.8 MiB 0.05 0.00 3.24063 -111.082 -3.24063 3.24063 0.66 0.000129982 0.000104206 0.00726436 0.00595593 28 2605 25 6.87369e+06 503058 531479. 1839.03 3.50 0.109764 0.0956977 24610 126494 -1 2203 21 1554 2632 184428 43292 0 0 184428 43292 2632 1968 0 0 9773 8358 0 0 14330 11615 0 0 2632 2174 0 0 76344 9998 0 0 78717 9179 0 0 2632 0 0 1078 1436 1456 9592 0 0 3.11326 3.11326 -124.534 -3.11326 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0170576 0.0150238 147 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.13 vpr 53.02 MiB -1 -1 0.11 17332 1 0.01 -1 -1 29712 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 14.4 MiB 2.15 681 53.0 MiB 0.08 0.00 3.00718 -92.4009 -3.00718 3.00718 1.03 0.000195768 0.00016073 0.0160175 0.0131255 32 1649 21 6.87369e+06 265503 586450. 2029.24 0.97 0.0497691 0.0421029 25474 144626 -1 1396 18 1154 1645 105816 25154 0 0 105816 25154 1645 1376 0 0 5837 4736 0 0 8935 6635 0 0 1645 1492 0 0 41545 6091 0 0 46209 4824 0 0 1645 0 0 491 603 560 4395 0 0 3.07126 3.07126 -108.421 -3.07126 0 0 744469. 2576.02 0.19 0.03 0.08 -1 -1 0.19 0.00664976 0.00590486 101 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.98 vpr 53.27 MiB -1 -1 0.13 17272 1 0.01 -1 -1 29728 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54544 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 14.7 MiB 2.03 936 53.3 MiB 0.09 0.00 3.5666 -104.213 -3.5666 3.5666 0.86 0.000206714 0.000165176 0.0164568 0.0133742 34 2272 24 6.87369e+06 237555 618332. 2139.56 3.18 0.0952992 0.0796767 25762 151098 -1 2013 23 1271 1787 167017 36120 0 0 167017 36120 1787 1462 0 0 6811 5944 0 0 11211 8846 0 0 1787 1534 0 0 73537 8961 0 0 71884 9373 0 0 1787 0 0 516 548 614 4497 0 0 3.26591 3.26591 -123.624 -3.26591 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0136903 0.0119707 112 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.57 vpr 53.68 MiB -1 -1 0.16 17508 1 0.02 -1 -1 29724 -1 -1 39 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 15.2 MiB 2.07 991 53.7 MiB 0.13 0.00 3.70112 -107.819 -3.70112 3.70112 0.85 0.000210544 0.00017041 0.0187533 0.0151664 26 2400 22 6.87369e+06 544980 503264. 1741.40 1.69 0.0687182 0.0591734 24322 120374 -1 2374 25 1748 3186 282459 62113 0 0 282459 62113 3186 2190 0 0 12128 10450 0 0 19640 14937 0 0 3186 2525 0 0 127564 15649 0 0 116755 16362 0 0 3186 0 0 1438 2062 2388 14370 0 0 4.2536 4.2536 -136.815 -4.2536 0 0 618332. 2139.56 0.25 0.09 0.11 -1 -1 0.25 0.0170456 0.0150078 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.13 vpr 53.28 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29824 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54556 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 14.9 MiB 4.32 782 53.3 MiB 0.09 0.00 3.70248 -99.3179 -3.70248 3.70248 1.02 0.000189983 0.000153398 0.0156987 0.0129134 34 2018 22 6.87369e+06 265503 618332. 2139.56 1.49 0.0677992 0.0576148 25762 151098 -1 1694 20 1142 1501 109937 26257 0 0 109937 26257 1501 1311 0 0 5872 5092 0 0 8463 6971 0 0 1501 1332 0 0 48662 5372 0 0 43938 6179 0 0 1501 0 0 359 372 362 3364 0 0 3.57416 3.57416 -112.2 -3.57416 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0110959 0.00981916 107 25 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 10.36 vpr 53.37 MiB -1 -1 0.12 17428 1 0.01 -1 -1 29632 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54652 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 14.9 MiB 3.91 831 53.4 MiB 0.06 0.00 3.31093 -106.353 -3.31093 3.31093 1.03 0.000204835 0.000167857 0.0101536 0.00846684 34 2065 20 6.87369e+06 209608 618332. 2139.56 3.16 0.112057 0.0956127 25762 151098 -1 1763 21 1367 2299 163669 38843 0 0 163669 38843 2299 1776 0 0 8709 7754 0 0 14016 11016 0 0 2299 1889 0 0 68287 7977 0 0 68059 8431 0 0 2299 0 0 932 963 1044 7516 0 0 3.07926 3.07926 -118.486 -3.07926 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0118626 0.0104516 101 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.29 vpr 53.66 MiB -1 -1 0.17 17500 1 0.02 -1 -1 29796 -1 -1 37 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 15.1 MiB 2.41 878 53.7 MiB 0.05 0.00 2.98998 -98.475 -2.98998 2.98998 0.60 0.000131701 0.00010577 0.00710098 0.00581868 30 2122 25 6.87369e+06 517032 556674. 1926.21 1.68 0.0573356 0.0483445 25186 138497 -1 1689 21 1261 2093 99725 25261 0 0 99725 25261 2093 1346 0 0 6894 5420 0 0 9184 7247 0 0 2093 1536 0 0 39258 4735 0 0 40203 4977 0 0 2093 0 0 832 957 1192 7832 0 0 2.82116 2.82116 -111.436 -2.82116 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00911486 0.00802932 141 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.03 vpr 53.27 MiB -1 -1 0.16 17488 1 0.01 -1 -1 29744 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54548 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 14.6 MiB 2.83 795 53.3 MiB 0.04 0.00 2.9066 -92.1144 -2.9066 2.9066 0.76 9.6921e-05 7.7512e-05 0.00646325 0.00530945 34 2177 23 6.87369e+06 237555 618332. 2139.56 0.89 0.0349836 0.0294277 25762 151098 -1 1800 21 1298 1862 140851 33717 0 0 140851 33717 1862 1663 0 0 7211 6359 0 0 10841 8766 0 0 1862 1739 0 0 59065 8116 0 0 60010 7074 0 0 1862 0 0 564 637 423 4614 0 0 3.13061 3.13061 -113.318 -3.13061 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00727698 0.00645029 105 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.76 vpr 53.73 MiB -1 -1 0.16 17448 1 0.01 -1 -1 29656 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55024 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 15.2 MiB 3.93 1030 53.7 MiB 0.11 0.00 2.9036 -95.9238 -2.9036 2.9036 0.67 0.000260876 0.000215877 0.0176592 0.0145357 28 2557 23 6.87369e+06 433189 531479. 1839.03 1.16 0.0678486 0.0583805 24610 126494 -1 2203 19 1145 1859 151497 33599 0 0 151497 33599 1859 1393 0 0 7163 6115 0 0 10599 8619 0 0 1859 1498 0 0 65738 7895 0 0 64279 8079 0 0 1859 0 0 714 1036 1110 7579 0 0 2.99431 2.99431 -113.522 -2.99431 0 0 648988. 2245.63 0.28 0.06 0.12 -1 -1 0.28 0.0151942 0.0134851 129 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 11.20 vpr 53.81 MiB -1 -1 0.17 17608 1 0.01 -1 -1 29856 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55104 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 15.2 MiB 4.40 955 53.8 MiB 0.13 0.00 2.9696 -102.734 -2.9696 2.9696 1.02 0.000266893 0.000217574 0.0234418 0.0193249 28 2467 22 6.87369e+06 447163 531479. 1839.03 3.37 0.142506 0.121695 24610 126494 -1 2093 22 1726 2507 185498 43430 0 0 185498 43430 2507 1984 0 0 9470 8050 0 0 14617 11586 0 0 2507 2134 0 0 78374 10066 0 0 78023 9610 0 0 2507 0 0 781 1105 1147 7832 0 0 3.31091 3.31091 -130.32 -3.31091 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0176063 0.0154009 137 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 8.41 vpr 53.28 MiB -1 -1 0.13 17512 1 0.01 -1 -1 29768 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 14.8 MiB 3.10 819 53.3 MiB 0.09 0.00 2.8516 -92.7534 -2.8516 2.8516 1.02 0.000209463 0.000170503 0.0180785 0.0148274 30 1930 23 6.87369e+06 223581 556674. 1926.21 2.24 0.0946828 0.0806244 25186 138497 -1 1623 20 830 1320 82875 19927 0 0 82875 19927 1320 1013 0 0 4657 3851 0 0 5949 4974 0 0 1320 1042 0 0 34244 4806 0 0 35385 4241 0 0 1320 0 0 490 413 376 3715 0 0 2.68771 2.68771 -105.859 -2.68771 0 0 706193. 2443.58 0.19 0.03 0.07 -1 -1 0.19 0.00822083 0.00728459 99 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 5.03 vpr 53.46 MiB -1 -1 0.12 17488 1 0.02 -1 -1 29716 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 14.8 MiB 1.50 981 53.5 MiB 0.04 0.00 3.23579 -105.228 -3.23579 3.23579 0.60 0.000108679 8.7639e-05 0.00826515 0.00674072 34 2290 20 6.87369e+06 251529 618332. 2139.56 1.37 0.061191 0.0519113 25762 151098 -1 1986 20 1351 1999 150751 35556 0 0 150751 35556 1999 1831 0 0 7838 6855 0 0 11601 9505 0 0 1999 1885 0 0 64085 7809 0 0 63229 7671 0 0 1999 0 0 648 597 515 5055 0 0 3.19461 3.19461 -123.996 -3.19461 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00761592 0.00675354 114 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.24 vpr 53.55 MiB -1 -1 0.17 17272 1 0.01 -1 -1 29768 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 15.1 MiB 3.48 1165 53.5 MiB 0.11 0.00 3.74448 -111.968 -3.74448 3.74448 0.79 0.000221149 0.000178478 0.0193309 0.015828 34 2664 42 6.87369e+06 307425 618332. 2139.56 1.74 0.0981588 0.0834404 25762 151098 -1 2259 22 1602 2198 163056 38035 0 0 163056 38035 2198 1872 0 0 8291 7281 0 0 12981 10261 0 0 2198 1957 0 0 68666 8653 0 0 68722 8011 0 0 2198 0 0 596 562 721 5275 0 0 3.89976 3.89976 -133.355 -3.89976 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0161755 0.0143642 132 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 9.65 vpr 53.52 MiB -1 -1 0.12 17484 1 0.01 -1 -1 29792 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 15.1 MiB 3.30 1013 53.5 MiB 0.10 0.00 3.20763 -94.5511 -3.20763 3.20763 1.01 0.000217462 0.000175616 0.0169333 0.0138278 28 2148 20 6.87369e+06 405241 531479. 1839.03 3.12 0.112666 0.096395 24610 126494 -1 2036 21 1218 2071 151512 35603 0 0 151512 35603 2071 1516 0 0 7919 6901 0 0 12312 9881 0 0 2071 1637 0 0 64110 7769 0 0 63029 7899 0 0 2071 0 0 853 1056 1252 8410 0 0 3.19661 3.19661 -109.699 -3.19661 0 0 648988. 2245.63 0.26 0.05 0.10 -1 -1 0.26 0.0135896 0.0119316 123 49 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 7.42 vpr 53.88 MiB -1 -1 0.16 17760 1 0.01 -1 -1 29824 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55172 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 15.4 MiB 2.76 1104 53.9 MiB 0.13 0.00 4.14151 -135.114 -4.14151 4.14151 0.87 0.000240221 0.000193037 0.0225565 0.0183907 34 2928 26 6.87369e+06 307425 618332. 2139.56 1.83 0.102897 0.0875984 25762 151098 -1 2398 22 1852 2823 227941 52725 0 0 227941 52725 2823 2366 0 0 10999 9718 0 0 16450 13391 0 0 2823 2438 0 0 96123 12952 0 0 98723 11860 0 0 2823 0 0 971 1260 1431 9185 0 0 4.18526 4.18526 -155.884 -4.18526 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0167519 0.0147345 151 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 6.43 vpr 53.05 MiB -1 -1 0.13 17056 1 0.02 -1 -1 29568 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54324 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 14.6 MiB 0.84 775 53.1 MiB 0.05 0.00 2.9769 -91.4677 -2.9769 2.9769 1.03 0.000183049 0.00014964 0.00738018 0.00624081 34 1732 23 6.87369e+06 237555 618332. 2139.56 2.67 0.0677893 0.0575209 25762 151098 -1 1578 21 894 1392 106405 24485 0 0 106405 24485 1392 1109 0 0 5274 4580 0 0 8081 6336 0 0 1392 1136 0 0 45497 5381 0 0 44769 5943 0 0 1392 0 0 498 429 401 3856 0 0 3.06361 3.06361 -104.923 -3.06361 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00653823 0.00580365 92 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.55 vpr 53.95 MiB -1 -1 0.11 17944 1 0.01 -1 -1 29728 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 15.4 MiB 1.74 1043 54.0 MiB 0.13 0.00 3.50715 -118.565 -3.50715 3.50715 0.96 0.000255382 0.000206199 0.0225704 0.018476 30 2577 23 6.87369e+06 489084 556674. 1926.21 0.89 0.0565555 0.0475642 25186 138497 -1 2070 22 1392 2083 128229 30275 0 0 128229 30275 2083 1630 0 0 7217 5946 0 0 9411 7792 0 0 2083 1766 0 0 51655 7033 0 0 55780 6108 0 0 2083 0 0 691 871 796 6313 0 0 3.604 3.604 -136.718 -3.604 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.0100192 0.00877839 145 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.79 vpr 53.40 MiB -1 -1 0.16 17464 1 0.01 -1 -1 29812 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 14.9 MiB 5.20 824 53.4 MiB 0.06 0.00 2.9898 -108.824 -2.9898 2.9898 0.88 0.000127893 0.000102447 0.0123306 0.0101166 34 2042 22 6.87369e+06 223581 618332. 2139.56 1.45 0.0750865 0.0629701 25762 151098 -1 1812 17 1318 1882 136339 32718 0 0 136339 32718 1882 1561 0 0 7333 6335 0 0 10689 8704 0 0 1882 1645 0 0 59178 6937 0 0 55375 7536 0 0 1882 0 0 564 668 667 5027 0 0 3.08861 3.08861 -127.948 -3.08861 0 0 787024. 2723.27 0.27 0.04 0.09 -1 -1 0.27 0.0114153 0.0102048 114 93 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.44 vpr 53.84 MiB -1 -1 0.17 17348 1 0.01 -1 -1 29760 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 15.2 MiB 3.58 999 53.8 MiB 0.07 0.00 3.24063 -103.886 -3.24063 3.24063 0.76 0.000124339 9.8965e-05 0.0107641 0.00867337 28 2765 40 6.87369e+06 447163 531479. 1839.03 1.05 0.0544147 0.0463006 24610 126494 -1 2150 22 1323 2098 173677 40872 0 0 173677 40872 2098 1559 0 0 8030 6790 0 0 11687 9585 0 0 2098 1707 0 0 72922 10801 0 0 76842 10430 0 0 2098 0 0 775 1158 1381 8390 0 0 3.23761 3.23761 -119.242 -3.23761 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0164308 0.0144053 134 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.45 vpr 53.95 MiB -1 -1 0.17 17912 1 0.02 -1 -1 29800 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 15.4 MiB 3.72 1293 54.0 MiB 0.14 0.00 4.81535 -150.135 -4.81535 4.81535 0.77 0.000263451 0.000215437 0.02205 0.0182443 34 3386 31 6.87369e+06 349346 618332. 2139.56 1.97 0.108766 0.0940096 25762 151098 -1 2827 23 2184 3190 230789 54395 0 0 230789 54395 3190 2690 0 0 12317 10747 0 0 18841 14987 0 0 3190 2751 0 0 97683 11368 0 0 95568 11852 0 0 3190 0 0 1006 1404 1473 9713 0 0 5.1828 5.1828 -169.052 -5.1828 0 0 787024. 2723.27 0.26 0.05 0.13 -1 -1 0.26 0.0110494 0.00977282 171 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.16 vpr 53.02 MiB -1 -1 0.14 17084 1 0.02 -1 -1 29664 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54292 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 14.6 MiB 1.60 604 53.0 MiB 0.04 0.00 2.36426 -73.9802 -2.36426 2.36426 0.79 8.5533e-05 6.6156e-05 0.00697738 0.00550236 30 1673 21 6.87369e+06 209608 556674. 1926.21 0.74 0.0303942 0.025592 25186 138497 -1 1250 16 685 914 52790 13704 0 0 52790 13704 914 784 0 0 3256 2799 0 0 4244 3562 0 0 914 816 0 0 19502 3034 0 0 23960 2709 0 0 914 0 0 229 194 242 2037 0 0 2.31647 2.31647 -90.689 -2.31647 0 0 706193. 2443.58 0.28 0.03 0.10 -1 -1 0.28 0.00823337 0.00730599 81 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.73 vpr 53.26 MiB -1 -1 0.14 17352 1 0.01 -1 -1 29788 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 14.8 MiB 1.09 800 53.3 MiB 0.07 0.00 3.14163 -97.682 -3.14163 3.14163 0.86 0.000192109 0.00015472 0.0123993 0.010137 28 1828 22 6.87369e+06 265503 531479. 1839.03 1.98 0.0688661 0.05759 24610 126494 -1 1682 20 1107 1690 121617 28356 0 0 121617 28356 1690 1472 0 0 6093 5081 0 0 8860 7055 0 0 1690 1532 0 0 50957 6817 0 0 52327 6399 0 0 1690 0 0 583 798 739 5366 0 0 3.23591 3.23591 -119.379 -3.23591 0 0 648988. 2245.63 0.25 0.05 0.11 -1 -1 0.25 0.0120459 0.0106293 105 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 7.29 vpr 53.41 MiB -1 -1 0.11 17480 1 0.01 -1 -1 29660 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54688 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 14.9 MiB 1.32 763 53.4 MiB 0.11 0.00 2.9879 -98.7798 -2.9879 2.9879 1.03 0.000206305 0.000166632 0.0187793 0.0153769 30 2005 20 6.87369e+06 321398 556674. 1926.21 2.82 0.0869232 0.0734732 25186 138497 -1 1636 19 1097 1928 120294 28830 0 0 120294 28830 1928 1368 0 0 6816 5861 0 0 9119 7494 0 0 1928 1470 0 0 53434 6087 0 0 47069 6550 0 0 1928 0 0 831 982 868 6891 0 0 2.83601 2.83601 -112.747 -2.83601 0 0 706193. 2443.58 0.21 0.03 0.08 -1 -1 0.21 0.00724392 0.00640095 109 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 7.95 vpr 52.97 MiB -1 -1 0.15 17220 1 0.02 -1 -1 29768 -1 -1 29 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54240 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 14.5 MiB 0.99 503 53.0 MiB 0.06 0.00 2.9029 -67.8932 -2.9029 2.9029 0.96 0.000156335 0.000120511 0.010842 0.00885309 28 1563 26 6.87369e+06 405241 531479. 1839.03 3.79 0.0752292 0.0645469 24610 126494 -1 1331 18 872 1441 108449 28078 0 0 108449 28078 1441 1093 0 0 5328 4487 0 0 7831 6280 0 0 1441 1180 0 0 44127 8003 0 0 48281 7035 0 0 1441 0 0 569 713 761 5470 0 0 3.14686 3.14686 -83.2123 -3.14686 0 0 648988. 2245.63 0.28 0.05 0.11 -1 -1 0.28 0.0100701 0.00893635 87 19 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.25 vpr 53.64 MiB -1 -1 0.16 17576 1 0.01 -1 -1 29772 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 15.0 MiB 3.44 1122 53.6 MiB 0.08 0.00 3.51745 -111.635 -3.51745 3.51745 0.91 0.000135598 0.000109964 0.014376 0.0118103 34 3131 24 6.87369e+06 279477 618332. 2139.56 1.70 0.0905347 0.0766363 25762 151098 -1 2635 23 1577 2797 224330 50755 0 0 224330 50755 2797 2068 0 0 10812 9638 0 0 15904 12862 0 0 2797 2281 0 0 94551 12136 0 0 97469 11770 0 0 2797 0 0 1220 1328 1339 9512 0 0 3.94906 3.94906 -137.199 -3.94906 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0192126 0.0169957 133 69 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.97 vpr 54.09 MiB -1 -1 0.12 17540 1 0.01 -1 -1 29804 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55384 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 15.5 MiB 3.69 831 54.1 MiB 0.10 0.00 3.22963 -104.732 -3.22963 3.22963 0.81 0.000256123 0.000207469 0.0171651 0.0140117 34 2325 25 6.87369e+06 433189 618332. 2139.56 1.67 0.0955162 0.0805292 25762 151098 -1 1808 23 1723 2673 167907 42944 0 0 167907 42944 2673 1981 0 0 10057 8816 0 0 15179 12017 0 0 2673 2151 0 0 71443 8541 0 0 65882 9438 0 0 2673 0 0 950 1162 1418 8665 0 0 3.16561 3.16561 -124.387 -3.16561 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.0105501 0.00922354 143 86 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.62 vpr 53.35 MiB -1 -1 0.14 17448 1 0.01 -1 -1 29764 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 14.9 MiB 3.37 1074 53.4 MiB 0.10 0.00 4.13577 -121.807 -4.13577 4.13577 1.01 0.000242785 0.000196333 0.0165035 0.0135581 34 3403 41 6.89349e+06 338252 618332. 2139.56 2.09 0.0897508 0.0764608 25762 151098 -1 2245 20 1803 2651 179275 43921 0 0 179275 43921 2651 2189 0 0 9758 8042 0 0 14873 11726 0 0 2651 2331 0 0 73684 10286 0 0 75658 9347 0 0 2651 0 0 848 989 872 7504 0 0 4.58769 4.58769 -146.271 -4.58769 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0153099 0.0136297 149 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.64 vpr 53.43 MiB -1 -1 0.09 17484 1 0.02 -1 -1 29728 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 14.9 MiB 2.19 1254 53.4 MiB 0.10 0.00 4.02498 -126.309 -4.02498 4.02498 0.89 0.000250603 0.00020513 0.0164795 0.0137658 34 3312 25 6.89349e+06 366440 618332. 2139.56 1.44 0.065343 0.0555342 25762 151098 -1 2577 23 2177 3158 261589 56057 0 0 261589 56057 3158 2543 0 0 11616 9467 0 0 18361 14119 0 0 3158 2803 0 0 117668 13206 0 0 107628 13919 0 0 3158 0 0 981 1018 809 7928 0 0 4.20433 4.20433 -145.367 -4.20433 0 0 787024. 2723.27 0.22 0.05 0.08 -1 -1 0.22 0.010863 0.00955457 156 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 5.66 vpr 53.29 MiB -1 -1 0.14 17348 1 0.01 -1 -1 29736 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54572 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 14.8 MiB 1.52 1006 53.3 MiB 0.05 0.00 3.40339 -101.578 -3.40339 3.40339 0.59 0.000110511 8.8296e-05 0.00705472 0.00577176 36 2302 27 6.89349e+06 295971 648988. 2245.63 1.71 0.062443 0.0536998 26050 158493 -1 2028 19 1088 1581 120553 26865 0 0 120553 26865 1581 1357 0 0 5849 4838 0 0 8516 6888 0 0 1581 1398 0 0 53097 5938 0 0 49929 6446 0 0 1581 0 0 493 418 552 4172 0 0 3.48415 3.48415 -114.847 -3.48415 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0123221 0.0109084 125 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 5.45 vpr 53.31 MiB -1 -1 0.14 17344 1 0.01 -1 -1 29792 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 14.8 MiB 1.96 938 53.3 MiB 0.04 0.00 3.88408 -104.409 -3.88408 3.88408 0.59 0.00011502 9.3544e-05 0.00727312 0.006031 34 2456 32 6.89349e+06 338252 618332. 2139.56 1.11 0.0429884 0.0363741 25762 151098 -1 2081 20 1405 2280 156307 37361 0 0 156307 37361 2280 1851 0 0 8459 6970 0 0 13121 10353 0 0 2280 1914 0 0 63369 8531 0 0 66798 7742 0 0 2280 0 0 875 971 1099 7543 0 0 3.7123 3.7123 -121.02 -3.7123 0 0 787024. 2723.27 0.20 0.04 0.10 -1 -1 0.20 0.00805952 0.00712935 134 25 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.30 vpr 53.44 MiB -1 -1 0.15 17632 1 0.01 -1 -1 29728 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54720 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 15.0 MiB 1.60 1199 53.4 MiB 0.08 0.00 4.11871 -123.223 -4.11871 4.11871 0.60 0.000120706 9.6552e-05 0.0118667 0.00972136 36 2882 21 6.89349e+06 324158 648988. 2245.63 3.98 0.128037 0.111611 26050 158493 -1 2613 21 1956 3587 314317 71447 0 0 314317 71447 3587 2687 0 0 12609 10435 0 0 20107 15123 0 0 3587 2860 0 0 137838 19701 0 0 136589 20641 0 0 3587 0 0 1631 1771 2460 14105 0 0 4.61689 4.61689 -154.977 -4.61689 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0149203 0.0132405 142 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 10.17 vpr 53.84 MiB -1 -1 0.17 17500 1 0.01 -1 -1 29700 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55128 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 15.1 MiB 2.74 1343 53.8 MiB 0.15 0.00 3.3598 -109.508 -3.3598 3.3598 0.93 0.000235674 0.000194775 0.0241819 0.0198852 36 2984 22 6.89349e+06 465097 648988. 2245.63 3.96 0.136147 0.11629 26050 158493 -1 2658 21 1679 2771 202037 44410 0 0 202037 44410 2771 2076 0 0 9916 8017 0 0 15158 11856 0 0 2771 2270 0 0 87160 10044 0 0 84261 10147 0 0 2771 0 0 1092 1274 1559 10158 0 0 3.35475 3.35475 -129.44 -3.35475 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0166381 0.0146082 162 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.10 vpr 52.95 MiB -1 -1 0.10 17500 1 0.01 -1 -1 29848 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54220 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 14.4 MiB 1.61 705 52.9 MiB 0.09 0.00 3.25123 -89.7042 -3.25123 3.25123 0.98 0.0001807 0.000146087 0.0166365 0.013679 34 1783 22 6.89349e+06 295971 618332. 2139.56 1.61 0.0743011 0.0634017 25762 151098 -1 1467 19 1038 1534 114034 26800 0 0 114034 26800 1534 1246 0 0 5838 4711 0 0 8937 6984 0 0 1534 1287 0 0 49188 5964 0 0 47003 6608 0 0 1534 0 0 496 626 539 4523 0 0 3.14496 3.14496 -102.712 -3.14496 0 0 787024. 2723.27 0.32 0.04 0.13 -1 -1 0.32 0.0109843 0.00970575 107 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 7.45 vpr 53.05 MiB -1 -1 0.15 16900 1 0.02 -1 -1 29704 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54320 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 14.6 MiB 0.99 845 53.0 MiB 0.12 0.00 2.5388 -79.243 -2.5388 2.5388 1.04 0.000206077 0.000166913 0.0176752 0.0142853 34 2144 21 6.89349e+06 451003 618332. 2139.56 3.32 0.113412 0.097367 25762 151098 -1 1793 18 1035 1784 132922 30153 0 0 132922 30153 1784 1248 0 0 6651 5376 0 0 10530 8195 0 0 1784 1370 0 0 53981 7633 0 0 58192 6331 0 0 1784 0 0 749 1087 1143 7929 0 0 2.59461 2.59461 -93.8446 -2.59461 0 0 787024. 2723.27 0.20 0.03 0.12 -1 -1 0.20 0.00654889 0.00577364 119 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.25 vpr 53.20 MiB -1 -1 0.17 17680 1 0.02 -1 -1 29780 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 14.6 MiB 1.66 1153 53.2 MiB 0.07 0.00 2.91975 -100.982 -2.91975 2.91975 0.96 0.000200265 0.00016211 0.0118766 0.00973572 34 2837 22 6.89349e+06 281877 618332. 2139.56 2.28 0.0828106 0.0714431 25762 151098 -1 2327 19 1541 2037 178946 37635 0 0 178946 37635 2037 1808 0 0 7480 6036 0 0 11228 8845 0 0 2037 1950 0 0 77749 9686 0 0 78415 9310 0 0 2037 0 0 496 581 517 4623 0 0 3.09376 3.09376 -122.503 -3.09376 0 0 787024. 2723.27 0.33 0.06 0.14 -1 -1 0.33 0.0145592 0.0129865 130 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.57 vpr 53.21 MiB -1 -1 0.15 17348 1 0.01 -1 -1 29656 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 14.7 MiB 2.16 1013 53.2 MiB 0.09 0.00 3.15648 -108.097 -3.15648 3.15648 1.02 0.000206225 0.000165695 0.0163377 0.0133716 34 2310 27 6.89349e+06 253689 618332. 2139.56 1.54 0.0671144 0.0569481 25762 151098 -1 2006 18 1038 1369 117976 25622 0 0 117976 25622 1369 1177 0 0 5245 4253 0 0 7903 6464 0 0 1369 1216 0 0 50092 6307 0 0 51998 6205 0 0 1369 0 0 331 335 286 3005 0 0 3.1052 3.1052 -122.291 -3.1052 0 0 787024. 2723.27 0.22 0.03 0.08 -1 -1 0.22 0.00767564 0.00681635 120 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.20 vpr 53.27 MiB -1 -1 0.16 17460 1 0.02 -1 -1 29744 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54544 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 14.7 MiB 1.74 1048 53.3 MiB 0.09 0.00 3.45767 -107.327 -3.45767 3.45767 0.82 0.000188637 0.000150757 0.016577 0.0134422 34 2430 50 6.89349e+06 295971 618332. 2139.56 1.70 0.0883862 0.0748669 25762 151098 -1 1992 22 1338 1798 149983 32290 0 0 149983 32290 1798 1589 0 0 6808 5372 0 0 10534 8264 0 0 1798 1689 0 0 64985 7688 0 0 64060 7688 0 0 1798 0 0 460 355 473 4006 0 0 3.3709 3.3709 -121.11 -3.3709 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0156894 0.0138782 124 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.13 vpr 53.07 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29776 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 14.4 MiB 1.68 895 53.1 MiB 0.04 0.00 2.911 -90.6942 -2.911 2.911 0.65 0.000101062 8.1507e-05 0.00666905 0.00550891 34 2241 26 6.89349e+06 239595 618332. 2139.56 0.99 0.0376313 0.0316444 25762 151098 -1 1909 30 1290 1902 306107 137136 0 0 306107 137136 1902 1747 0 0 7038 5883 0 0 13092 9613 0 0 1902 1802 0 0 139005 55985 0 0 143168 62106 0 0 1902 0 0 612 654 645 5095 0 0 2.96246 2.96246 -109.446 -2.96246 0 0 787024. 2723.27 0.20 0.07 0.08 -1 -1 0.20 0.00920416 0.00802262 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 9.14 vpr 53.43 MiB -1 -1 0.18 17468 1 0.01 -1 -1 29652 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 14.9 MiB 2.63 870 53.4 MiB 0.09 0.00 3.19568 -99.9536 -3.19568 3.19568 1.02 0.000251738 0.000208053 0.0145172 0.01199 36 2654 41 6.89349e+06 324158 648988. 2245.63 3.06 0.117472 0.102542 26050 158493 -1 2040 24 1893 2910 249610 71465 0 0 249610 71465 2910 2541 0 0 10598 8559 0 0 16709 12944 0 0 2910 2568 0 0 107133 22855 0 0 109350 21998 0 0 2910 0 0 1017 1241 1244 8446 0 0 3.35361 3.35361 -122.515 -3.35361 0 0 828058. 2865.25 0.33 0.09 0.14 -1 -1 0.33 0.0168562 0.014763 143 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 10.14 vpr 53.64 MiB -1 -1 0.17 17572 1 0.02 -1 -1 29708 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 15.1 MiB 2.28 1386 53.6 MiB 0.11 0.00 4.29107 -130.142 -4.29107 4.29107 1.03 0.000156 0.000127364 0.0207112 0.0171161 36 2945 23 6.89349e+06 338252 648988. 2245.63 4.38 0.123284 0.105349 26050 158493 -1 2636 20 1633 2304 168849 37234 0 0 168849 37234 2304 2017 0 0 8459 6708 0 0 12135 9833 0 0 2304 2149 0 0 73058 7995 0 0 70589 8532 0 0 2304 0 0 671 766 506 5849 0 0 4.35865 4.35865 -150.072 -4.35865 0 0 828058. 2865.25 0.34 0.07 0.15 -1 -1 0.34 0.0157804 0.0139702 153 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.82 vpr 52.95 MiB -1 -1 0.13 17180 1 0.01 -1 -1 29760 -1 -1 18 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54224 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 14.4 MiB 2.46 704 53.0 MiB 0.06 0.00 2.55142 -77.0614 -2.55142 2.55142 1.03 0.000163036 0.000133227 0.010476 0.00868306 30 1851 23 6.89349e+06 253689 556674. 1926.21 2.11 0.0782693 0.0673202 25186 138497 -1 1585 18 921 1305 73645 18618 0 0 73645 18618 1305 1032 0 0 4612 3798 0 0 6241 5155 0 0 1305 1056 0 0 30007 3877 0 0 30175 3700 0 0 1305 0 0 384 315 274 3106 0 0 2.75381 2.75381 -92.3514 -2.75381 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0098607 0.00873188 102 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 9.11 vpr 53.55 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29648 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 15.0 MiB 2.33 1236 53.5 MiB 0.15 0.00 3.3439 -110.389 -3.3439 3.3439 1.01 0.000262817 0.000214654 0.0237104 0.0193131 36 3167 26 6.89349e+06 338252 648988. 2245.63 3.41 0.116625 0.0996288 26050 158493 -1 2682 20 1967 3159 244738 53707 0 0 244738 53707 3159 2612 0 0 11320 9310 0 0 17379 13566 0 0 3159 2745 0 0 104946 12950 0 0 104775 12524 0 0 3159 0 0 1192 1542 1620 10965 0 0 4.04825 4.04825 -136.666 -4.04825 0 0 828058. 2865.25 0.33 0.05 0.14 -1 -1 0.33 0.0100515 0.00894841 159 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 7.23 vpr 53.66 MiB -1 -1 0.15 17648 1 0.01 -1 -1 29768 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 14.8 MiB 2.28 1095 53.7 MiB 0.12 0.00 3.18768 -106.074 -3.18768 3.18768 0.94 0.00023544 0.000190707 0.0208019 0.0170998 34 2889 44 6.89349e+06 310065 618332. 2139.56 2.01 0.0941943 0.0803917 25762 151098 -1 2370 22 1614 2390 207263 44221 0 0 207263 44221 2390 1958 0 0 8902 7419 0 0 13489 10746 0 0 2390 2074 0 0 89497 11301 0 0 90595 10723 0 0 2390 0 0 776 786 753 6257 0 0 3.09256 3.09256 -119.31 -3.09256 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0150877 0.0132847 142 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.04 vpr 53.49 MiB -1 -1 0.15 17404 1 0.01 -1 -1 29676 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 14.8 MiB 2.18 1169 53.5 MiB 0.11 0.00 2.80245 -103.106 -2.80245 2.80245 0.98 0.000209347 0.000169999 0.0186907 0.0153441 34 2726 25 6.89349e+06 295971 618332. 2139.56 1.71 0.0913716 0.0783756 25762 151098 -1 2291 18 1428 1883 140128 31562 0 0 140128 31562 1883 1608 0 0 6826 5588 0 0 10495 8170 0 0 1883 1663 0 0 60766 7094 0 0 58275 7439 0 0 1883 0 0 455 527 589 4738 0 0 2.93426 2.93426 -124.478 -2.93426 0 0 787024. 2723.27 0.21 0.04 0.14 -1 -1 0.21 0.00810422 0.0072353 131 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.52 vpr 52.70 MiB -1 -1 0.14 17012 1 0.01 -1 -1 29596 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53960 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 14.3 MiB 1.26 718 52.7 MiB 0.03 0.00 2.23253 -75.5919 -2.23253 2.23253 0.64 9.9142e-05 7.9156e-05 0.00586159 0.0047971 34 1620 20 6.89349e+06 211408 618332. 2139.56 1.82 0.0477288 0.0399476 25762 151098 -1 1345 19 693 794 54645 13502 0 0 54645 13502 794 726 0 0 3076 2518 0 0 4441 3650 0 0 794 740 0 0 22189 3141 0 0 23351 2727 0 0 794 0 0 101 101 81 1299 0 0 2.27547 2.27547 -88.6261 -2.27547 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00604207 0.00526035 82 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.49 vpr 53.23 MiB -1 -1 0.15 17460 1 0.02 -1 -1 29728 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54508 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 14.8 MiB 2.20 860 53.2 MiB 0.05 0.00 3.85262 -113.901 -3.85262 3.85262 0.74 0.000104918 8.3971e-05 0.0074209 0.00611495 32 2361 27 6.89349e+06 267783 586450. 2029.24 0.88 0.0334098 0.0280437 25474 144626 -1 1893 19 1347 2040 155760 38991 0 0 155760 38991 2040 1638 0 0 7927 6711 0 0 13860 10876 0 0 2040 1709 0 0 67386 8995 0 0 62507 9062 0 0 2040 0 0 693 896 684 5933 0 0 3.86955 3.86955 -140.226 -3.86955 0 0 744469. 2576.02 0.19 0.04 0.10 -1 -1 0.19 0.00772987 0.00687832 117 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 8.40 vpr 53.52 MiB -1 -1 0.16 17404 1 0.02 -1 -1 29736 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 15.0 MiB 1.42 1206 53.5 MiB 0.14 0.00 3.71813 -123.449 -3.71813 3.71813 0.95 0.000233032 0.000185965 0.0201552 0.0160875 34 2598 20 6.89349e+06 479191 618332. 2139.56 3.59 0.135494 0.115614 25762 151098 -1 2336 21 1583 2491 170179 39248 0 0 170179 39248 2491 1878 0 0 9305 7588 0 0 14059 11295 0 0 2491 2070 0 0 71564 8196 0 0 70269 8221 0 0 2491 0 0 908 1092 1313 8740 0 0 3.92214 3.92214 -144.991 -3.92214 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.0165404 0.0145834 151 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 7.81 vpr 53.67 MiB -1 -1 0.16 17764 1 0.02 -1 -1 29692 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54956 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 15.0 MiB 1.77 1226 53.7 MiB 0.12 0.00 3.66325 -110.377 -3.66325 3.66325 0.80 0.000246241 0.000198914 0.0190199 0.0155254 34 3359 47 6.89349e+06 324158 618332. 2139.56 2.77 0.11713 0.0999997 25762 151098 -1 2519 20 1864 2834 225271 49452 0 0 225271 49452 2834 2339 0 0 10495 8472 0 0 15580 12386 0 0 2834 2548 0 0 99660 11095 0 0 93868 12612 0 0 2834 0 0 970 1283 1233 8836 0 0 3.7504 3.7504 -132.333 -3.7504 0 0 787024. 2723.27 0.33 0.08 0.14 -1 -1 0.33 0.016988 0.015118 155 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 4.77 vpr 52.71 MiB -1 -1 0.10 17208 1 0.01 -1 -1 29692 -1 -1 19 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53976 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 14.2 MiB 1.26 439 52.7 MiB 0.03 0.00 2.20251 -59.6078 -2.20251 2.20251 0.62 7.4809e-05 5.8302e-05 0.00592281 0.00476435 34 1452 29 6.89349e+06 267783 618332. 2139.56 1.35 0.0362901 0.0305524 25762 151098 -1 1026 21 778 935 67682 17603 0 0 67682 17603 935 886 0 0 3491 2845 0 0 4994 4026 0 0 935 896 0 0 27010 4742 0 0 30317 4208 0 0 935 0 0 157 196 154 1792 0 0 2.51155 2.51155 -74.1485 -2.51155 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00602499 0.00524652 76 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.46 vpr 53.08 MiB -1 -1 0.15 17216 1 0.01 -1 -1 29724 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54352 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 14.7 MiB 1.05 958 53.1 MiB 0.08 0.00 3.52907 -103.902 -3.52907 3.52907 0.96 0.000199387 0.000163018 0.0136992 0.011316 30 2203 24 6.89349e+06 324158 556674. 1926.21 2.26 0.0825062 0.0702669 25186 138497 -1 1968 20 1098 2005 146923 33146 0 0 146923 33146 2005 1485 0 0 7009 5664 0 0 10401 8216 0 0 2005 1567 0 0 62184 8307 0 0 63319 7907 0 0 2005 0 0 907 1228 1120 7888 0 0 3.49265 3.49265 -118.851 -3.49265 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0121582 0.0107177 119 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.93 vpr 52.57 MiB -1 -1 0.12 16644 1 0.01 -1 -1 29508 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53828 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 14.1 MiB 0.42 427 52.6 MiB 0.03 0.00 1.84032 -58.3789 -1.84032 1.84032 0.61 7.6876e-05 6.1183e-05 0.00519699 0.00420224 32 1430 27 6.89349e+06 169126 586450. 2029.24 0.83 0.0236403 0.019749 25474 144626 -1 1061 19 718 904 66578 18141 0 0 66578 18141 904 792 0 0 3620 3060 0 0 5801 4569 0 0 904 819 0 0 26579 4533 0 0 28770 4368 0 0 904 0 0 186 115 187 1812 0 0 2.14106 2.14106 -77.5833 -2.14106 0 0 744469. 2576.02 0.31 0.03 0.13 -1 -1 0.31 0.00790104 0.00694297 65 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.66 vpr 53.14 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29700 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54420 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 14.6 MiB 2.14 1070 53.1 MiB 0.05 0.00 3.87678 -111.974 -3.87678 3.87678 1.01 0.000123673 0.000100398 0.00804824 0.00668493 34 2391 22 6.89349e+06 281877 618332. 2139.56 1.23 0.0448119 0.0380036 25762 151098 -1 2092 19 1263 1811 130828 30314 0 0 130828 30314 1811 1445 0 0 6894 5596 0 0 10129 8241 0 0 1811 1505 0 0 54780 6849 0 0 55403 6678 0 0 1811 0 0 548 612 573 4912 0 0 3.82386 3.82386 -125.048 -3.82386 0 0 787024. 2723.27 0.28 0.06 0.13 -1 -1 0.28 0.01416 0.0126058 125 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.40 vpr 53.11 MiB -1 -1 0.12 17168 1 0.01 -1 -1 29744 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.6 MiB 0.81 885 53.1 MiB 0.07 0.00 2.6813 -84.5118 -2.6813 2.6813 0.60 0.000112484 8.8684e-05 0.0107977 0.00862547 28 2595 32 6.89349e+06 436909 531479. 1839.03 1.05 0.0502666 0.0428419 24610 126494 -1 2132 24 1381 2449 219971 59204 0 0 219971 59204 2449 1862 0 0 9249 7463 0 0 14235 11451 0 0 2449 1993 0 0 97784 18033 0 0 93805 18402 0 0 2449 0 0 1068 1560 1696 10491 0 0 2.78605 2.78605 -106.419 -2.78605 0 0 648988. 2245.63 0.26 0.07 0.11 -1 -1 0.26 0.0147861 0.012924 130 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.87 vpr 53.53 MiB -1 -1 0.17 17464 1 0.02 -1 -1 29844 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 15.1 MiB 2.71 1137 53.5 MiB 0.05 0.00 3.79978 -110.194 -3.79978 3.79978 0.64 0.000137259 0.00010971 0.00830113 0.00686356 34 3082 30 6.89349e+06 324158 618332. 2139.56 1.64 0.0765169 0.0651541 25762 151098 -1 2425 19 1547 2378 177889 40338 0 0 177889 40338 2378 1925 0 0 8743 7240 0 0 13553 10568 0 0 2378 2072 0 0 76131 9330 0 0 74706 9203 0 0 2378 0 0 831 966 911 7142 0 0 3.9098 3.9098 -132.802 -3.9098 0 0 787024. 2723.27 0.20 0.04 0.12 -1 -1 0.20 0.00840805 0.00743711 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.11 vpr 53.16 MiB -1 -1 0.10 17652 1 0.02 -1 -1 29704 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54432 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 14.8 MiB 1.52 831 53.2 MiB 0.08 0.00 2.9839 -96.8671 -2.9839 2.9839 0.96 0.000193563 0.000158016 0.0150501 0.0123819 34 2164 45 6.89349e+06 239595 618332. 2139.56 1.76 0.0927643 0.0799584 25762 151098 -1 1693 20 1199 1678 120908 28928 0 0 120908 28928 1678 1329 0 0 6346 5224 0 0 9714 7716 0 0 1678 1366 0 0 52319 6633 0 0 49173 6660 0 0 1678 0 0 479 530 359 4180 0 0 3.09451 3.09451 -116.557 -3.09451 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0122712 0.0108388 112 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.54 vpr 52.98 MiB -1 -1 0.15 17600 1 0.01 -1 -1 29656 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54252 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 14.4 MiB 1.80 886 53.0 MiB 0.03 0.00 3.39112 -98.4611 -3.39112 3.39112 0.60 9.8357e-05 7.8589e-05 0.00547208 0.00447897 34 2212 27 6.89349e+06 239595 618332. 2139.56 1.45 0.0592335 0.0504573 25762 151098 -1 1908 20 1082 1768 141296 31314 0 0 141296 31314 1768 1392 0 0 6516 5249 0 0 10849 8271 0 0 1768 1483 0 0 60088 7504 0 0 60307 7415 0 0 1768 0 0 686 579 853 5712 0 0 3.19645 3.19645 -111.627 -3.19645 0 0 787024. 2723.27 0.27 0.05 0.08 -1 -1 0.27 0.0111489 0.00983372 104 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.55 vpr 53.06 MiB -1 -1 0.09 17564 1 0.01 -1 -1 29700 -1 -1 20 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54332 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 14.5 MiB 1.57 894 53.1 MiB 0.09 0.00 3.40424 -99.3533 -3.40424 3.40424 0.70 0.000179081 0.000145028 0.0153668 0.0125259 34 2223 38 6.89349e+06 281877 618332. 2139.56 1.47 0.0560951 0.0472551 25762 151098 -1 1914 20 1212 2027 171911 37394 0 0 171911 37394 2027 1650 0 0 7478 6268 0 0 12388 9398 0 0 2027 1791 0 0 74603 9261 0 0 73388 9026 0 0 2027 0 0 815 892 946 6928 0 0 3.46375 3.46375 -116.3 -3.46375 0 0 787024. 2723.27 0.30 0.06 0.08 -1 -1 0.30 0.0128175 0.0114128 107 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 4.44 vpr 52.95 MiB -1 -1 0.14 16900 1 0.01 -1 -1 29628 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54216 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 14.4 MiB 0.77 871 52.9 MiB 0.03 0.00 2.99448 -95.0416 -2.99448 2.99448 0.85 9.8352e-05 7.9381e-05 0.00487958 0.00400559 32 2044 23 6.89349e+06 239595 586450. 2029.24 0.73 0.0328082 0.0280043 25474 144626 -1 1846 18 1114 1840 130238 30576 0 0 130238 30576 1840 1479 0 0 7035 5922 0 0 11929 8963 0 0 1840 1570 0 0 52872 6484 0 0 54722 6158 0 0 1840 0 0 726 749 804 6001 0 0 3.02446 3.02446 -116.322 -3.02446 0 0 744469. 2576.02 0.29 0.05 0.13 -1 -1 0.29 0.0110513 0.00984735 101 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.91 vpr 53.09 MiB -1 -1 0.09 17532 1 0.02 -1 -1 29680 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 14.5 MiB 1.29 942 53.1 MiB 0.07 0.00 2.82865 -91.9426 -2.82865 2.82865 0.78 0.000182305 0.000146252 0.0106648 0.00880368 36 2163 18 6.89349e+06 253689 648988. 2245.63 3.84 0.0887778 0.0750529 26050 158493 -1 1917 18 968 1503 110708 25491 0 0 110708 25491 1503 1242 0 0 5551 4660 0 0 8948 7041 0 0 1503 1287 0 0 47181 5724 0 0 46022 5537 0 0 1503 0 0 535 504 685 4715 0 0 2.92736 2.92736 -109.689 -2.92736 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0121681 0.0108361 108 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.38 vpr 53.13 MiB -1 -1 0.09 17688 1 0.01 -1 -1 29796 -1 -1 22 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 14.7 MiB 2.14 981 53.1 MiB 0.06 0.00 2.71745 -86.963 -2.71745 2.71745 0.59 0.000102306 8.1846e-05 0.00980424 0.0079339 36 2048 21 6.89349e+06 310065 648988. 2245.63 1.09 0.0425335 0.0355929 26050 158493 -1 1817 16 1003 1381 91207 21266 0 0 91207 21266 1381 1158 0 0 5044 4123 0 0 7163 5857 0 0 1381 1218 0 0 38209 4611 0 0 38029 4299 0 0 1381 0 0 378 419 351 3463 0 0 2.52607 2.52607 -99.879 -2.52607 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00758057 0.00671722 120 48 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 8.51 vpr 53.51 MiB -1 -1 0.17 17512 1 0.02 -1 -1 29680 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 14.9 MiB 1.77 1160 53.5 MiB 0.04 0.00 3.68045 -107.365 -3.68045 3.68045 0.59 0.000137385 0.000112686 0.00693112 0.0057578 36 3000 22 6.89349e+06 352346 648988. 2245.63 4.15 0.123137 0.106688 26050 158493 -1 2443 20 1511 2650 194279 44861 0 0 194279 44861 2650 2134 0 0 9741 8004 0 0 14817 11724 0 0 2650 2242 0 0 82086 10657 0 0 82335 10100 0 0 2650 0 0 1139 1970 2287 12958 0 0 3.70076 3.70076 -124.487 -3.70076 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0187201 0.0167503 159 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 9.25 vpr 53.75 MiB -1 -1 0.16 17628 1 0.02 -1 -1 29804 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55040 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 15.4 MiB 2.58 1301 53.8 MiB 0.07 0.00 3.70207 -127.688 -3.70207 3.70207 0.62 0.000138037 0.000110946 0.0118526 0.00972743 44 2814 21 6.89349e+06 338252 787024. 2723.27 3.59 0.111272 0.09457 27778 195446 -1 2378 19 1782 2507 171830 39167 0 0 171830 39167 2507 1993 0 0 8861 7453 0 0 13093 10440 0 0 2507 2133 0 0 73557 8147 0 0 71305 9001 0 0 2507 0 0 725 790 936 6694 0 0 3.4231 3.4231 -131.564 -3.4231 0 0 997811. 3452.63 0.42 0.08 0.18 -1 -1 0.42 0.0225831 0.0205662 168 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.29 vpr 53.10 MiB -1 -1 0.15 17484 1 0.01 -1 -1 29736 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54376 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 14.5 MiB 1.60 907 53.1 MiB 0.11 0.00 3.21878 -100.089 -3.21878 3.21878 1.04 0.000206518 0.000169787 0.0174772 0.0143698 36 2128 18 6.89349e+06 253689 648988. 2245.63 2.53 0.0639866 0.053755 26050 158493 -1 1859 18 1137 1748 136573 29508 0 0 136573 29508 1748 1439 0 0 6199 5063 0 0 9197 7159 0 0 1748 1504 0 0 57784 7470 0 0 59897 6873 0 0 1748 0 0 611 806 900 5859 0 0 3.14876 3.14876 -114.562 -3.14876 0 0 828058. 2865.25 0.21 0.03 0.09 -1 -1 0.21 0.00671391 0.00596123 109 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 10.11 vpr 53.73 MiB -1 -1 0.18 17684 1 0.02 -1 -1 29844 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55016 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 15.0 MiB 2.75 1230 53.7 MiB 0.10 0.00 3.27699 -106.568 -3.27699 3.27699 0.93 0.000263608 0.0002161 0.0173711 0.0142151 36 2818 30 6.89349e+06 352346 648988. 2245.63 4.14 0.123648 0.104907 26050 158493 -1 2286 19 1634 2450 168339 38253 0 0 168339 38253 2450 1846 0 0 8960 7375 0 0 13067 10454 0 0 2450 1939 0 0 71137 8467 0 0 70275 8172 0 0 2450 0 0 816 863 753 7138 0 0 3.501 3.501 -124.998 -3.501 0 0 828058. 2865.25 0.25 0.04 0.12 -1 -1 0.25 0.0089263 0.00791012 160 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.29 vpr 53.70 MiB -1 -1 0.17 17536 1 0.02 -1 -1 29812 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54988 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 15.1 MiB 2.50 1226 53.7 MiB 0.07 0.00 4.36217 -133.609 -4.36217 4.36217 0.61 0.000129498 0.000104194 0.0117198 0.00956452 44 2841 21 6.89349e+06 352346 787024. 2723.27 4.13 0.147996 0.128771 27778 195446 -1 2413 22 1459 2211 170428 36474 0 0 170428 36474 2211 1759 0 0 7784 6427 0 0 11797 9285 0 0 2211 1857 0 0 72538 8798 0 0 73887 8348 0 0 2211 0 0 752 636 617 5720 0 0 4.32758 4.32758 -150.392 -4.32758 0 0 997811. 3452.63 0.27 0.04 0.11 -1 -1 0.27 0.0115312 0.0102838 163 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 7.51 vpr 53.66 MiB -1 -1 0.13 17356 1 0.01 -1 -1 29804 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 15.0 MiB 2.16 1136 53.7 MiB 0.14 0.00 4.83228 -137.855 -4.83228 4.83228 0.99 0.000257271 0.000209693 0.024536 0.0203521 34 3295 32 6.89349e+06 352346 618332. 2139.56 2.27 0.134679 0.11889 25762 151098 -1 2452 25 1996 3113 240599 54795 0 0 240599 54795 3113 2518 0 0 11704 9887 0 0 18635 14303 0 0 3113 2658 0 0 106880 11843 0 0 97154 13586 0 0 3113 0 0 1117 1094 1220 9228 0 0 5.14184 5.14184 -161.685 -5.14184 0 0 787024. 2723.27 0.32 0.09 0.14 -1 -1 0.32 0.0193884 0.0170826 166 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 9.66 vpr 53.45 MiB -1 -1 0.16 17680 1 0.01 -1 -1 29708 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54736 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 15.0 MiB 2.55 1149 53.5 MiB 0.11 0.00 3.17668 -100.859 -3.17668 3.17668 1.04 0.000252506 0.00020578 0.0174286 0.0145021 36 2709 21 6.89349e+06 338252 648988. 2245.63 3.84 0.126691 0.109394 26050 158493 -1 2223 23 1837 2713 190177 43987 0 0 190177 43987 2713 2225 0 0 9938 8205 0 0 15420 12081 0 0 2713 2501 0 0 78967 9870 0 0 80426 9105 0 0 2713 0 0 876 1154 1190 8209 0 0 3.15401 3.15401 -115.122 -3.15401 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00988806 0.00871854 148 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 9.84 vpr 53.14 MiB -1 -1 0.13 17512 1 0.02 -1 -1 29684 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 14.6 MiB 2.35 1148 53.1 MiB 0.12 0.00 3.67125 -104.708 -3.67125 3.67125 1.04 0.000218187 0.000176013 0.0200227 0.0163245 36 2356 33 6.89349e+06 281877 648988. 2245.63 4.08 0.113069 0.0967886 26050 158493 -1 2093 18 1015 1449 108278 23758 0 0 108278 23758 1449 1207 0 0 5264 4188 0 0 7971 6272 0 0 1449 1251 0 0 47244 5250 0 0 44901 5590 0 0 1449 0 0 434 427 497 3843 0 0 3.75796 3.75796 -123.379 -3.75796 0 0 828058. 2865.25 0.28 0.03 0.15 -1 -1 0.28 0.00837068 0.00746051 120 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 10.65 vpr 54.19 MiB -1 -1 0.17 17776 1 0.02 -1 -1 29880 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55492 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 15.4 MiB 2.85 1569 54.2 MiB 0.19 0.00 4.20371 -139.83 -4.20371 4.20371 1.04 0.000311503 0.000256105 0.0303189 0.0251896 36 3904 31 6.89349e+06 436909 648988. 2245.63 4.13 0.184058 0.158681 26050 158493 -1 3334 21 2411 3640 283556 62913 0 0 283556 62913 3640 3035 0 0 13295 11064 0 0 20260 15904 0 0 3640 3151 0 0 120773 15205 0 0 121948 14554 0 0 3640 0 0 1229 1697 1553 11803 0 0 4.50739 4.50739 -168.831 -4.50739 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0205891 0.018334 203 84 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.51 vpr 53.07 MiB -1 -1 0.13 17412 1 0.00 -1 -1 29680 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 14.4 MiB 1.83 841 53.1 MiB 0.07 0.00 2.974 -87.5987 -2.974 2.974 0.80 0.000164557 0.0001344 0.0130501 0.0109163 34 2031 21 6.89349e+06 253689 618332. 2139.56 1.53 0.0690413 0.0585877 25762 151098 -1 1753 18 1098 1531 103722 25560 0 0 103722 25560 1531 1350 0 0 5829 4768 0 0 8767 7041 0 0 1531 1437 0 0 42529 5642 0 0 43535 5322 0 0 1531 0 0 433 453 401 3698 0 0 2.92916 2.92916 -104.344 -2.92916 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.0109392 0.00966537 106 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 8.60 vpr 53.35 MiB -1 -1 0.14 17660 1 0.01 -1 -1 29688 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54628 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 15.0 MiB 1.92 1108 53.3 MiB 0.12 0.00 3.76442 -115.971 -3.76442 3.76442 1.04 0.000229651 0.000187026 0.0193184 0.0159488 36 2676 19 6.89349e+06 324158 648988. 2245.63 3.41 0.114513 0.0986431 26050 158493 -1 2372 17 1658 2545 222507 48295 0 0 222507 48295 2545 2075 0 0 9058 7324 0 0 14623 11100 0 0 2545 2196 0 0 95592 13094 0 0 98144 12506 0 0 2545 0 0 887 981 1095 7756 0 0 3.94416 3.94416 -133.53 -3.94416 0 0 828058. 2865.25 0.27 0.04 0.08 -1 -1 0.27 0.00793617 0.00706948 140 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 8.31 vpr 53.53 MiB -1 -1 0.16 17676 1 0.01 -1 -1 29672 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 15.0 MiB 2.79 1127 53.5 MiB 0.10 0.00 3.53859 -105.912 -3.53859 3.53859 1.02 0.00025331 0.000208607 0.0160985 0.0133633 34 3414 28 6.89349e+06 324158 618332. 2139.56 2.22 0.0888889 0.0771175 25762 151098 -1 2523 19 1596 2564 191068 43980 0 0 191068 43980 2564 2039 0 0 9453 7890 0 0 14007 11136 0 0 2564 2166 0 0 78598 10963 0 0 83882 9786 0 0 2564 0 0 968 1358 1316 8870 0 0 3.5973 3.5973 -125.137 -3.5973 0 0 787024. 2723.27 0.23 0.04 0.13 -1 -1 0.23 0.00865363 0.00767586 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.48 vpr 53.28 MiB -1 -1 0.15 17208 1 0.01 -1 -1 29688 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 14.8 MiB 0.73 898 53.3 MiB 0.08 0.00 3.37229 -103.179 -3.37229 3.37229 1.03 0.000123322 9.9471e-05 0.0130397 0.0107654 34 2348 19 6.89349e+06 366440 618332. 2139.56 1.42 0.0681348 0.0590077 25762 151098 -1 2062 18 1245 2273 174922 38768 0 0 174922 38768 2273 1768 0 0 8235 6659 0 0 12827 9887 0 0 2273 1870 0 0 74726 8824 0 0 74588 9760 0 0 2273 0 0 1028 1503 1559 9563 0 0 3.6434 3.6434 -122.954 -3.6434 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0129796 0.0115752 123 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 7.37 vpr 53.54 MiB -1 -1 0.14 17444 1 0.02 -1 -1 29744 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 15.1 MiB 2.27 1196 53.5 MiB 0.07 0.00 3.42271 -107.788 -3.42271 3.42271 1.01 0.000152554 0.000118522 0.0120141 0.00989982 34 2846 43 6.89349e+06 324158 618332. 2139.56 1.89 0.0981332 0.0849625 25762 151098 -1 2388 21 1627 2336 174963 39333 0 0 174963 39333 2336 1970 0 0 8679 7078 0 0 13088 10491 0 0 2336 2059 0 0 74810 8833 0 0 73714 8902 0 0 2336 0 0 709 923 851 6495 0 0 3.01616 3.01616 -117.193 -3.01616 0 0 787024. 2723.27 0.22 0.05 0.12 -1 -1 0.22 0.0112225 0.00998639 148 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.16 vpr 53.59 MiB -1 -1 0.15 17512 1 0.02 -1 -1 29684 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54876 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 15.1 MiB 2.01 1254 53.6 MiB 0.12 0.00 3.31619 -111.732 -3.31619 3.31619 1.03 0.000248754 0.000198261 0.0193816 0.0157585 34 3149 23 6.89349e+06 338252 618332. 2139.56 1.69 0.0844502 0.0717151 25762 151098 -1 2700 30 2143 3359 455969 169310 0 0 455969 169310 3359 2794 0 0 12313 10401 0 0 22313 16090 0 0 3359 2950 0 0 206658 72168 0 0 207967 64907 0 0 3359 0 0 1216 1720 1955 12582 0 0 3.7929 3.7929 -135.401 -3.7929 0 0 787024. 2723.27 0.31 0.15 0.13 -1 -1 0.31 0.0244527 0.0217695 154 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.65 vpr 53.62 MiB -1 -1 0.14 17564 1 0.01 -1 -1 29728 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54904 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 15.0 MiB 2.26 1256 53.6 MiB 0.10 0.00 3.32098 -109.299 -3.32098 3.32098 1.04 0.000246659 0.000197517 0.0153485 0.0127019 34 3218 47 6.89349e+06 366440 618332. 2139.56 1.93 0.0839436 0.072324 25762 151098 -1 2518 20 1700 2346 204384 44757 0 0 204384 44757 2346 1930 0 0 8993 7407 0 0 13908 11149 0 0 2346 2044 0 0 92461 10522 0 0 84330 11705 0 0 2346 0 0 646 768 758 6108 0 0 3.14076 3.14076 -125.569 -3.14076 0 0 787024. 2723.27 0.34 0.08 0.14 -1 -1 0.34 0.018719 0.0166642 164 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.08 vpr 53.13 MiB -1 -1 0.09 17492 1 0.01 -1 -1 29660 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 14.8 MiB 1.98 1069 53.1 MiB 0.11 0.00 3.61195 -110.865 -3.61195 3.61195 1.02 0.000215764 0.000174292 0.0187965 0.0153188 34 2563 29 6.89349e+06 295971 618332. 2139.56 1.74 0.0948287 0.0813599 25762 151098 -1 2118 20 1253 2010 145191 33359 0 0 145191 33359 2010 1643 0 0 7497 6144 0 0 11473 8983 0 0 2010 1716 0 0 60316 7771 0 0 61885 7102 0 0 2010 0 0 757 896 927 6598 0 0 3.85486 3.85486 -128.306 -3.85486 0 0 787024. 2723.27 0.33 0.06 0.14 -1 -1 0.33 0.0150346 0.0134022 128 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.83 vpr 53.32 MiB -1 -1 0.16 17648 1 0.01 -1 -1 29748 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 14.7 MiB 1.59 1182 53.3 MiB 0.04 0.00 3.80778 -115.304 -3.80778 3.80778 0.89 0.000113597 9.1165e-05 0.00609957 0.00501886 34 2770 33 6.89349e+06 310065 618332. 2139.56 1.36 0.0542114 0.0461922 25762 151098 -1 2206 21 1457 2109 142704 33649 0 0 142704 33649 2109 1718 0 0 7842 6599 0 0 11786 9345 0 0 2109 1797 0 0 59696 6773 0 0 59162 7417 0 0 2109 0 0 652 610 749 5424 0 0 3.65116 3.65116 -128.1 -3.65116 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0148739 0.0131963 135 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.92 vpr 53.51 MiB -1 -1 0.14 17612 1 0.02 -1 -1 29720 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 14.9 MiB 1.64 1341 53.5 MiB 0.08 0.00 3.81268 -118.418 -3.81268 3.81268 1.02 0.000259191 0.000211958 0.0133491 0.0110978 36 3099 21 6.89349e+06 338252 648988. 2245.63 2.92 0.11194 0.0981741 26050 158493 -1 2645 19 1342 2103 164724 35632 0 0 164724 35632 2103 1698 0 0 7715 6191 0 0 10960 8890 0 0 2103 1818 0 0 69772 8700 0 0 72071 8335 0 0 2103 0 0 761 978 825 6717 0 0 3.95749 3.95749 -138.01 -3.95749 0 0 828058. 2865.25 0.32 0.06 0.13 -1 -1 0.32 0.0157889 0.0140286 156 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 5.96 vpr 53.66 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29744 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 15.3 MiB 2.20 1289 53.7 MiB 0.07 0.00 3.68195 -115.399 -3.68195 3.68195 0.59 0.000131461 0.000105222 0.0119653 0.00974184 36 3078 30 6.89349e+06 352346 648988. 2245.63 1.43 0.0621357 0.0524659 26050 158493 -1 2595 19 1752 2596 177255 39808 0 0 177255 39808 2596 2122 0 0 9446 7572 0 0 13036 10530 0 0 2596 2228 0 0 75232 8840 0 0 74349 8516 0 0 2596 0 0 844 946 800 6958 0 0 3.90516 3.90516 -135.323 -3.90516 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00925573 0.00819719 166 74 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 8.66 vpr 52.93 MiB -1 -1 0.15 17228 1 0.01 -1 -1 29636 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54204 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 14.4 MiB 1.66 825 52.9 MiB 0.07 0.00 2.79059 -89.3741 -2.79059 2.79059 1.02 0.000179621 0.000144128 0.0107703 0.00881216 36 2004 24 6.89349e+06 211408 648988. 2245.63 3.75 0.0851701 0.0725616 26050 158493 -1 1721 17 871 1330 89303 20976 0 0 89303 20976 1330 1039 0 0 4830 3939 0 0 7031 5596 0 0 1330 1145 0 0 37930 4580 0 0 36852 4677 0 0 1330 0 0 459 364 621 4064 0 0 2.78591 2.78591 -101.635 -2.78591 0 0 828058. 2865.25 0.34 0.04 0.15 -1 -1 0.34 0.0104037 0.00929819 96 20 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 9.06 vpr 53.53 MiB -1 -1 0.09 17344 1 0.02 -1 -1 29708 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 15.1 MiB 1.50 1171 53.5 MiB 0.13 0.00 3.33199 -120.009 -3.33199 3.33199 0.98 0.000225309 0.000179584 0.0215197 0.0174104 36 2645 21 6.89349e+06 281877 648988. 2245.63 4.35 0.131329 0.112234 26050 158493 -1 2288 21 1923 2627 181110 41310 0 0 181110 41310 2627 2303 0 0 9386 7733 0 0 14091 10938 0 0 2627 2359 0 0 74310 9528 0 0 78069 8449 0 0 2627 0 0 704 663 569 5971 0 0 3.4952 3.4952 -140.286 -3.4952 0 0 828058. 2865.25 0.34 0.07 0.15 -1 -1 0.34 0.0157211 0.0139595 138 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 11.87 vpr 53.73 MiB -1 -1 0.14 17776 1 0.02 -1 -1 29760 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55020 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 15.0 MiB 2.29 1397 53.7 MiB 0.13 0.00 4.36852 -133.389 -4.36852 4.36852 1.02 0.0002847 0.000234523 0.0236477 0.0196377 30 3346 27 6.89349e+06 352346 556674. 1926.21 6.29 0.134085 0.115962 25186 138497 -1 2588 21 1614 2584 171784 38615 0 0 171784 38615 2584 2027 0 0 9118 7281 0 0 12601 10347 0 0 2584 2101 0 0 71276 8833 0 0 73621 8026 0 0 2584 0 0 970 1078 1018 7926 0 0 4.35235 4.35235 -151.453 -4.35235 0 0 706193. 2443.58 0.24 0.06 0.12 -1 -1 0.24 0.0168104 0.0148487 168 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.32 vpr 53.39 MiB -1 -1 0.16 17676 1 0.01 -1 -1 29692 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54672 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 15.0 MiB 2.34 1020 53.4 MiB 0.06 0.00 3.41266 -109.233 -3.41266 3.41266 0.59 0.000121113 9.7155e-05 0.00944988 0.00781117 34 2670 27 6.89349e+06 310065 618332. 2139.56 1.19 0.0459084 0.0388544 25762 151098 -1 2201 22 1562 2325 197483 43394 0 0 197483 43394 2325 1967 0 0 8623 7146 0 0 13972 10832 0 0 2325 2024 0 0 84950 10680 0 0 85288 10745 0 0 2325 0 0 763 970 916 6956 0 0 3.12396 3.12396 -122.307 -3.12396 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0151268 0.0133229 144 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.89 vpr 53.21 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29688 -1 -1 27 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 14.8 MiB 1.69 858 53.2 MiB 0.06 0.00 3.30514 -101.719 -3.30514 3.30514 0.63 0.000105275 8.4769e-05 0.00931499 0.00751433 34 2437 45 6.89349e+06 380534 618332. 2139.56 1.39 0.0476355 0.0401245 25762 151098 -1 1827 20 1249 1997 150353 33886 0 0 150353 33886 1997 1533 0 0 7357 6061 0 0 11454 8884 0 0 1997 1668 0 0 64574 7864 0 0 62974 7876 0 0 1997 0 0 748 844 1012 7233 0 0 3.22315 3.22315 -118.879 -3.22315 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0125081 0.0110939 118 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.69 vpr 54.21 MiB -1 -1 0.13 17668 1 0.01 -1 -1 29820 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55508 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 15.4 MiB 3.20 1543 54.2 MiB 0.16 0.00 5.17195 -150.574 -5.17195 5.17195 1.01 0.000285112 0.000226648 0.0255105 0.0206938 36 3867 33 6.89349e+06 380534 648988. 2245.63 4.07 0.153466 0.134175 26050 158493 -1 3151 22 2533 4065 341931 72266 0 0 341931 72266 4065 3387 0 0 14566 12025 0 0 22784 17478 0 0 4065 3578 0 0 148670 18012 0 0 147781 17786 0 0 4065 0 0 1532 2080 2302 13919 0 0 5.38033 5.38033 -182.712 -5.38033 0 0 828058. 2865.25 0.32 0.10 0.10 -1 -1 0.32 0.0215535 0.0192658 188 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.99 vpr 53.34 MiB -1 -1 0.13 17652 1 0.01 -1 -1 29748 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54620 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 14.7 MiB 1.31 1192 53.3 MiB 0.11 0.00 3.69702 -117.645 -3.69702 3.69702 0.76 0.000216137 0.000175145 0.0196889 0.016205 34 2827 23 6.89349e+06 295971 618332. 2139.56 1.90 0.0959973 0.0826969 25762 151098 -1 2325 21 1799 2505 225351 46877 0 0 225351 46877 2505 2094 0 0 9310 7488 0 0 13601 10703 0 0 2505 2166 0 0 97636 12870 0 0 99794 11556 0 0 2505 0 0 706 1102 1106 7391 0 0 3.8624 3.8624 -136.496 -3.8624 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0171584 0.0153245 139 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 6.69 vpr 52.90 MiB -1 -1 0.14 17056 1 0.01 -1 -1 29520 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54172 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 14.5 MiB 0.62 777 52.9 MiB 0.07 0.00 2.8828 -82.7469 -2.8828 2.8828 0.92 0.000163446 0.000131286 0.0114488 0.00932975 36 1693 19 6.89349e+06 338252 648988. 2245.63 3.57 0.0933502 0.0800348 26050 158493 -1 1462 18 760 1349 101773 23317 0 0 101773 23317 1349 942 0 0 5032 3839 0 0 7733 5957 0 0 1349 1041 0 0 42906 5841 0 0 43404 5697 0 0 1349 0 0 589 768 1063 5761 0 0 2.68771 2.68771 -93.7601 -2.68771 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00571772 0.00504754 94 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.84 vpr 53.50 MiB -1 -1 0.12 17632 1 0.01 -1 -1 29712 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54788 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 15.0 MiB 2.00 1302 53.5 MiB 0.08 0.00 4.35947 -122.008 -4.35947 4.35947 0.73 0.000132433 0.000107242 0.0129895 0.0106359 36 2896 20 6.89349e+06 324158 648988. 2245.63 2.28 0.0722047 0.0620703 26050 158493 -1 2498 19 1439 2641 217566 46499 0 0 217566 46499 2641 1965 0 0 9670 7917 0 0 15307 11974 0 0 2641 2058 0 0 92358 11658 0 0 94949 10927 0 0 2641 0 0 1202 2361 2188 13730 0 0 4.69205 4.69205 -144.42 -4.69205 0 0 828058. 2865.25 0.23 0.04 0.08 -1 -1 0.23 0.0086395 0.00766833 149 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.12 vpr 52.88 MiB -1 -1 0.13 17076 1 0.01 -1 -1 29644 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54144 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 14.4 MiB 0.81 662 52.9 MiB 0.05 0.00 2.81765 -86.357 -2.81765 2.81765 0.90 0.000100818 8.1591e-05 0.00866221 0.00716142 34 1820 21 6.89349e+06 267783 618332. 2139.56 1.17 0.0375979 0.032057 25762 151098 -1 1470 21 1109 1988 137444 34292 0 0 137444 34292 1988 1556 0 0 7494 6265 0 0 11546 9095 0 0 1988 1661 0 0 54666 7808 0 0 59762 7907 0 0 1988 0 0 879 921 962 7206 0 0 2.79011 2.79011 -102.108 -2.79011 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0126794 0.0113153 98 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.18 vpr 53.12 MiB -1 -1 0.14 17468 1 0.01 -1 -1 29716 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54392 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 14.5 MiB 1.27 746 53.1 MiB 0.09 0.00 3.17368 -91.5842 -3.17368 3.17368 0.96 0.000179242 0.000146883 0.0156866 0.0129321 34 1911 35 6.89349e+06 281877 618332. 2139.56 1.84 0.0868886 0.0752164 25762 151098 -1 1547 21 1149 1675 119586 30288 0 0 119586 30288 1675 1282 0 0 6321 5119 0 0 9886 7720 0 0 1675 1310 0 0 53592 7460 0 0 46437 7397 0 0 1675 0 0 526 710 723 5202 0 0 3.11381 3.11381 -106.465 -3.11381 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.012504 0.0109989 113 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 6.70 vpr 53.50 MiB -1 -1 0.16 17560 1 0.01 -1 -1 29708 -1 -1 26 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 15.0 MiB 3.02 1012 53.5 MiB 0.07 0.00 3.48129 -103.311 -3.48129 3.48129 0.63 0.000127092 0.000102511 0.0112094 0.00919726 34 3094 48 6.89349e+06 366440 618332. 2139.56 1.42 0.0627262 0.053019 25762 151098 -1 2263 19 1468 2167 142023 34957 0 0 142023 34957 2167 1839 0 0 7934 6536 0 0 11981 9556 0 0 2167 1899 0 0 56728 7580 0 0 61046 7547 0 0 2167 0 0 699 692 621 5577 0 0 3.67235 3.67235 -123.064 -3.67235 0 0 787024. 2723.27 0.21 0.04 0.08 -1 -1 0.21 0.00895639 0.00793833 155 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.00 vpr 53.56 MiB -1 -1 0.15 17468 1 0.01 -1 -1 29776 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54844 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 15.0 MiB 1.60 1138 53.6 MiB 0.10 0.00 4.11834 -129.007 -4.11834 4.11834 0.96 0.000232529 0.000189646 0.0173361 0.014279 36 3020 25 6.89349e+06 310065 648988. 2245.63 2.30 0.0983351 0.0851054 26050 158493 -1 2386 21 1912 2836 182279 43323 0 0 182279 43323 2836 2142 0 0 10022 8210 0 0 15029 11792 0 0 2836 2303 0 0 75946 9231 0 0 75610 9645 0 0 2836 0 0 924 828 985 7603 0 0 4.58085 4.58085 -152.733 -4.58085 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0160897 0.0141877 151 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 9.84 vpr 53.48 MiB -1 -1 0.15 17464 1 0.01 -1 -1 29732 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 15.0 MiB 1.96 1234 53.5 MiB 0.12 0.00 4.15917 -123 -4.15917 4.15917 0.97 0.000228584 0.000181134 0.0207316 0.0167041 38 2883 24 6.89349e+06 324158 678818. 2348.85 4.47 0.13874 0.118278 26626 170182 -1 2379 23 1919 2739 207875 46540 0 0 207875 46540 2739 2341 0 0 9486 7835 0 0 13932 11083 0 0 2739 2411 0 0 90172 11521 0 0 88807 11349 0 0 2739 0 0 820 827 911 7425 0 0 4.33239 4.33239 -146.515 -4.33239 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0175339 0.015536 150 48 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.84 vpr 53.20 MiB -1 -1 0.14 17352 1 0.02 -1 -1 29648 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54472 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 14.6 MiB 2.15 838 53.2 MiB 0.05 0.00 3.46187 -98.0268 -3.46187 3.46187 0.94 0.000104674 8.4548e-05 0.00952875 0.00782159 30 2117 27 6.89349e+06 211408 556674. 1926.21 2.77 0.0724951 0.061597 25186 138497 -1 1757 18 906 1251 88664 21203 0 0 88664 21203 1251 1064 0 0 4385 3470 0 0 6124 4944 0 0 1251 1115 0 0 37876 5479 0 0 37777 5131 0 0 1251 0 0 345 377 351 3038 0 0 3.35355 3.35355 -112.897 -3.35355 0 0 706193. 2443.58 0.20 0.02 0.12 -1 -1 0.20 0.00651232 0.00578372 105 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.76 vpr 53.40 MiB -1 -1 0.10 17572 1 0.02 -1 -1 29720 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54680 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 14.8 MiB 1.99 1055 53.4 MiB 0.08 0.00 2.90565 -98.3486 -2.90565 2.90565 0.98 0.000198786 0.000159805 0.0127817 0.0104127 34 2723 28 6.89349e+06 281877 618332. 2139.56 1.61 0.0724419 0.0618444 25762 151098 -1 2317 23 1562 2231 198722 43936 0 0 198722 43936 2231 1882 0 0 8407 7035 0 0 13360 10425 0 0 2231 2101 0 0 85910 11587 0 0 86583 10906 0 0 2231 0 0 669 717 614 5569 0 0 3.13651 3.13651 -124.149 -3.13651 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.014176 0.012464 131 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.53 vpr 53.39 MiB -1 -1 0.16 17684 1 0.02 -1 -1 29668 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54668 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 15.0 MiB 2.63 1183 53.4 MiB 0.10 0.00 2.9531 -91.9933 -2.9531 2.9531 0.98 0.000215462 0.000175578 0.0169176 0.0138435 34 2772 42 6.89349e+06 366440 618332. 2139.56 1.58 0.0852695 0.0728902 25762 151098 -1 2233 21 1513 2281 182080 39049 0 0 182080 39049 2281 1945 0 0 8383 6800 0 0 12806 10038 0 0 2281 2052 0 0 79662 8803 0 0 76667 9411 0 0 2281 0 0 768 1096 1424 8377 0 0 2.99771 2.99771 -108.058 -2.99771 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0156943 0.013973 142 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.82 vpr 53.26 MiB -1 -1 0.16 17448 1 0.01 -1 -1 29692 -1 -1 23 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 14.8 MiB 1.75 874 53.3 MiB 0.06 0.00 3.64305 -93.6767 -3.64305 3.64305 0.97 0.000109582 8.8293e-05 0.0105615 0.00864482 34 2333 45 6.89349e+06 324158 618332. 2139.56 1.86 0.0852839 0.0738929 25762 151098 -1 1855 18 1146 1989 157389 35412 0 0 157389 35412 1989 1544 0 0 7563 6040 0 0 11821 9210 0 0 1989 1672 0 0 66316 8595 0 0 67711 8351 0 0 1989 0 0 843 1340 1471 8871 0 0 3.82786 3.82786 -111.662 -3.82786 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0116968 0.0104147 119 20 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.45 vpr 53.41 MiB -1 -1 0.16 17480 1 0.01 -1 -1 29704 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 14.8 MiB 2.75 1027 53.4 MiB 0.11 0.00 3.54502 -109.299 -3.54502 3.54502 0.59 0.00017889 0.00014658 0.0170538 0.0142492 34 2706 28 6.89349e+06 295971 618332. 2139.56 2.19 0.116998 0.103277 25762 151098 -1 2246 21 1776 2475 209973 45810 0 0 209973 45810 2475 2085 0 0 9133 7487 0 0 13998 10836 0 0 2475 2161 0 0 89323 11921 0 0 92569 11320 0 0 2475 0 0 699 778 760 6250 0 0 3.85144 3.85144 -134.816 -3.85144 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0135143 0.0119371 130 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.91 vpr 53.34 MiB -1 -1 0.15 17460 1 0.01 -1 -1 29680 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54624 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 14.9 MiB 2.51 1245 53.3 MiB 0.06 0.00 3.09739 -108.835 -3.09739 3.09739 0.85 0.000113691 9.0726e-05 0.00989784 0.00803137 34 3117 40 6.89349e+06 281877 618332. 2139.56 1.45 0.0757949 0.065755 25762 151098 -1 2559 22 1682 2311 190661 40799 0 0 190661 40799 2311 2044 0 0 8401 6946 0 0 12936 9979 0 0 2311 2143 0 0 84880 9564 0 0 79822 10123 0 0 2311 0 0 629 705 663 5566 0 0 3.2041 3.2041 -130.864 -3.2041 0 0 787024. 2723.27 0.26 0.04 0.14 -1 -1 0.26 0.0103429 0.0092058 138 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 6.43 vpr 53.12 MiB -1 -1 0.16 17168 1 0.01 -1 -1 29684 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54392 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 14.6 MiB 0.81 1091 53.1 MiB 0.10 0.00 3.66642 -108.277 -3.66642 3.66642 0.96 0.000118369 9.026e-05 0.0138008 0.0110872 30 2397 20 6.89349e+06 436909 556674. 1926.21 2.43 0.0787534 0.0676731 25186 138497 -1 1975 20 1140 2181 140026 32036 0 0 140026 32036 2181 1496 0 0 7511 5918 0 0 11473 8911 0 0 2181 1621 0 0 58979 6813 0 0 57701 7277 0 0 2181 0 0 1041 1351 1343 9382 0 0 3.4459 3.4459 -117.872 -3.4459 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.00933643 0.00827925 129 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 6.92 vpr 53.55 MiB -1 -1 0.12 17464 1 0.01 -1 -1 29620 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 15.1 MiB 2.50 1151 53.6 MiB 0.05 0.00 3.78342 -123.662 -3.78342 3.78342 0.93 0.00013246 0.000107935 0.00806862 0.00667745 34 3073 24 6.89349e+06 324158 618332. 2139.56 1.49 0.0610949 0.0525853 25762 151098 -1 2491 21 1625 2493 203184 44492 0 0 203184 44492 2493 2108 0 0 9267 7713 0 0 14550 11398 0 0 2493 2163 0 0 89338 10110 0 0 85043 11000 0 0 2493 0 0 868 877 896 6870 0 0 3.7485 3.7485 -140.396 -3.7485 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00901406 0.00798272 148 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.76 vpr 53.59 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29700 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54872 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 15.0 MiB 1.54 1352 53.6 MiB 0.11 0.00 4.36021 -139.758 -4.36021 4.36021 0.65 0.000242092 0.000195916 0.0175395 0.0144147 34 3560 37 6.89349e+06 380534 618332. 2139.56 5.32 0.172053 0.150221 25762 151098 -1 2679 20 1934 2712 211507 47795 0 0 211507 47795 2712 2209 0 0 10109 8399 0 0 15502 12167 0 0 2712 2311 0 0 91439 11669 0 0 89033 11040 0 0 2712 0 0 778 991 899 7464 0 0 4.58859 4.58859 -165.071 -4.58859 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0167229 0.0147719 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.96 vpr 53.60 MiB -1 -1 0.13 17340 1 0.02 -1 -1 29660 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54888 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 15.2 MiB 2.23 1490 53.6 MiB 0.09 0.00 3.66297 -124.385 -3.66297 3.66297 0.98 0.000310857 0.000262786 0.0140531 0.0118208 36 3407 24 6.89349e+06 366440 648988. 2245.63 2.68 0.112147 0.0984583 26050 158493 -1 2964 22 1958 2819 209884 45493 0 0 209884 45493 2819 2358 0 0 10073 7939 0 0 14964 11818 0 0 2819 2548 0 0 89967 10377 0 0 89242 10453 0 0 2819 0 0 861 1140 1087 8267 0 0 3.7566 3.7566 -138.619 -3.7566 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0102972 0.00909991 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.40 vpr 53.02 MiB -1 -1 0.15 17472 1 0.01 -1 -1 29696 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54292 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 14.4 MiB 1.52 831 53.0 MiB 0.04 0.00 3.29223 -97.9003 -3.29223 3.29223 0.59 0.000103436 8.3626e-05 0.00628819 0.00520578 34 2133 50 6.89349e+06 295971 618332. 2139.56 1.47 0.0665285 0.0566268 25762 151098 -1 1874 21 1128 1586 138134 31534 0 0 138134 31534 1586 1435 0 0 6180 5133 0 0 9908 7812 0 0 1586 1476 0 0 58999 8148 0 0 59875 7530 0 0 1586 0 0 458 474 413 3847 0 0 3.25101 3.25101 -114.776 -3.25101 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0124386 0.0110463 112 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 9.29 vpr 53.85 MiB -1 -1 0.17 17512 1 0.03 -1 -1 29696 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55144 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 15.2 MiB 3.52 1114 53.9 MiB 0.08 0.00 4.18171 -126.225 -4.18171 4.18171 0.71 0.000232816 0.000188878 0.015198 0.0125803 36 3124 24 6.89349e+06 352346 648988. 2245.63 2.60 0.101186 0.0879394 26050 158493 -1 2490 23 2034 2846 224754 50469 0 0 224754 50469 2846 2540 0 0 10118 8002 0 0 15216 11939 0 0 2846 2646 0 0 90570 13256 0 0 103158 12086 0 0 2846 0 0 812 947 920 7213 0 0 4.29115 4.29115 -152.766 -4.29115 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0190691 0.0169654 161 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.79 vpr 53.30 MiB -1 -1 0.14 17352 1 0.01 -1 -1 29676 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54580 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 14.9 MiB 1.28 1219 53.3 MiB 0.10 0.00 4.07275 -125.942 -4.07275 4.07275 0.95 0.000222006 0.00017944 0.0167996 0.0137414 34 2808 23 6.89349e+06 324158 618332. 2139.56 3.41 0.132682 0.114729 25762 151098 -1 2292 21 1375 2387 197856 43617 0 0 197856 43617 2387 1889 0 0 9064 7690 0 0 14983 11679 0 0 2387 2030 0 0 81995 10522 0 0 87040 9807 0 0 2387 0 0 1012 1846 1611 10812 0 0 3.8566 3.8566 -139.551 -3.8566 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0148456 0.0131058 139 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.25 vpr 53.38 MiB -1 -1 0.12 17560 1 0.01 -1 -1 29736 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54656 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 14.9 MiB 2.21 1203 53.4 MiB 0.09 0.00 4.09814 -120.756 -4.09814 4.09814 0.97 0.000219298 0.000178725 0.01635 0.0135053 36 2698 26 6.89349e+06 324158 648988. 2245.63 1.99 0.105192 0.0919493 26050 158493 -1 2310 22 1666 2486 188774 41979 0 0 188774 41979 2486 1982 0 0 9008 7358 0 0 13495 10635 0 0 2486 2066 0 0 79176 10498 0 0 82123 9440 0 0 2486 0 0 820 888 1166 7550 0 0 4.14885 4.14885 -136.752 -4.14885 0 0 828058. 2865.25 0.26 0.07 0.13 -1 -1 0.26 0.0182011 0.0162912 142 43 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.65 vpr 53.56 MiB -1 -1 0.18 17448 1 0.02 -1 -1 29684 -1 -1 27 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54844 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 14.9 MiB 2.63 1195 53.6 MiB 0.07 0.00 3.93665 -113.007 -3.93665 3.93665 0.86 0.000129886 0.000104486 0.0110741 0.00909059 36 3139 27 6.89349e+06 380534 648988. 2245.63 1.87 0.0779087 0.0674813 26050 158493 -1 2538 23 1835 2700 219396 48379 0 0 219396 48379 2700 2248 0 0 9878 8137 0 0 14641 11531 0 0 2700 2464 0 0 93477 12504 0 0 96000 11495 0 0 2700 0 0 865 1312 1214 8469 0 0 3.91824 3.91824 -135.277 -3.91824 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0169986 0.0149187 162 78 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.01 vpr 53.63 MiB -1 -1 0.16 17448 1 0.02 -1 -1 29680 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 15.1 MiB 2.50 1128 53.6 MiB 0.07 0.00 4.28007 -125.694 -4.28007 4.28007 0.60 0.000126507 0.000101309 0.0124362 0.0100872 36 3561 40 6.89349e+06 324158 648988. 2245.63 3.06 0.0790133 0.0678422 26050 158493 -1 2571 21 1899 2766 213571 49213 0 0 213571 49213 2766 2477 0 0 9843 8005 0 0 14303 11230 0 0 2766 2577 0 0 91174 12564 0 0 92719 12360 0 0 2766 0 0 867 1002 766 7349 0 0 4.52865 4.52865 -151.208 -4.52865 0 0 828058. 2865.25 0.28 0.07 0.10 -1 -1 0.28 0.0157501 0.013901 155 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.31 vpr 53.68 MiB -1 -1 0.16 17500 1 0.01 -1 -1 29724 -1 -1 30 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 15.2 MiB 2.05 1351 53.7 MiB 0.05 0.00 3.57059 -110.14 -3.57059 3.57059 0.59 0.000128291 0.000103365 0.006879 0.00568664 36 2904 22 6.89349e+06 422815 648988. 2245.63 2.85 0.0731378 0.0617458 26050 158493 -1 2496 18 1612 2141 145774 33099 0 0 145774 33099 2141 1770 0 0 7613 6096 0 0 10993 8835 0 0 2141 1848 0 0 59279 7617 0 0 63607 6933 0 0 2141 0 0 529 485 446 4917 0 0 3.7354 3.7354 -128.184 -3.7354 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0156316 0.0139718 166 79 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.70 vpr 52.74 MiB -1 -1 0.15 16996 1 0.01 -1 -1 29604 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54004 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 14.3 MiB 0.48 752 52.7 MiB 0.06 0.00 3.26403 -99.6803 -3.26403 3.26403 0.94 0.000178105 0.000145168 0.00970134 0.00795742 34 1794 22 6.89349e+06 239595 618332. 2139.56 2.49 0.0635564 0.0535564 25762 151098 -1 1583 18 798 1266 87151 20804 0 0 87151 20804 1266 997 0 0 4837 3806 0 0 7391 5899 0 0 1266 1042 0 0 36009 4579 0 0 36382 4481 0 0 1266 0 0 468 508 418 3768 0 0 3.05731 3.05731 -108.681 -3.05731 0 0 787024. 2723.27 0.21 0.03 0.08 -1 -1 0.21 0.00664927 0.00594109 96 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.80 vpr 53.55 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29680 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 15.0 MiB 2.02 1462 53.5 MiB 0.08 0.00 4.5691 -138.88 -4.5691 4.5691 0.68 0.00013394 0.000108282 0.0135026 0.0111565 34 3204 30 6.89349e+06 352346 618332. 2139.56 1.96 0.0911482 0.0794843 25762 151098 -1 2673 23 1820 2526 204078 44649 0 0 204078 44649 2526 2218 0 0 9411 7499 0 0 14603 11513 0 0 2526 2318 0 0 93092 9386 0 0 81920 11715 0 0 2526 0 0 706 750 914 6730 0 0 4.66999 4.66999 -159.336 -4.66999 0 0 787024. 2723.27 0.33 0.09 0.12 -1 -1 0.33 0.0237719 0.0215659 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.80 vpr 53.58 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29756 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 15.1 MiB 3.79 1334 53.6 MiB 0.11 0.00 4.36821 -144.823 -4.36821 4.36821 1.02 0.000253562 0.00020704 0.0193895 0.0161055 34 3577 47 6.89349e+06 352346 618332. 2139.56 2.57 0.121497 0.106432 25762 151098 -1 2854 20 2250 3245 255771 56687 0 0 255771 56687 3245 2721 0 0 12142 9997 0 0 18870 14904 0 0 3245 2898 0 0 110169 12917 0 0 108100 13250 0 0 3245 0 0 995 932 1016 8254 0 0 4.33025 4.33025 -163.994 -4.33025 0 0 787024. 2723.27 0.29 0.09 0.14 -1 -1 0.29 0.0190516 0.0170928 171 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.74 vpr 53.21 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29748 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 14.5 MiB 2.77 971 53.2 MiB 0.06 0.00 3.14102 -95.6729 -3.14102 3.14102 0.92 0.000174662 0.000141609 0.0100294 0.00822228 34 2212 35 6.89349e+06 253689 618332. 2139.56 1.87 0.0792617 0.0682838 25762 151098 -1 1897 19 1036 1383 107873 24448 0 0 107873 24448 1383 1186 0 0 5338 4379 0 0 7962 6404 0 0 1383 1213 0 0 44860 5960 0 0 46947 5306 0 0 1383 0 0 347 309 294 3053 0 0 3.09676 3.09676 -109.715 -3.09676 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0110053 0.00971638 108 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 6.79 vpr 53.04 MiB -1 -1 0.15 16908 1 0.01 -1 -1 29736 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54312 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 14.5 MiB 0.74 780 53.0 MiB 0.09 0.00 3.20583 -99.241 -3.20583 3.20583 0.97 0.000172457 0.000138788 0.0139026 0.0113996 32 2057 21 6.89349e+06 281877 586450. 2029.24 2.97 0.0764093 0.0653218 25474 144626 -1 1769 19 1117 1871 160141 35107 0 0 160141 35107 1871 1502 0 0 7137 5886 0 0 11922 9104 0 0 1871 1626 0 0 69412 8247 0 0 67928 8742 0 0 1871 0 0 754 745 801 6151 0 0 2.86611 2.86611 -109.001 -2.86611 0 0 744469. 2576.02 0.30 0.03 0.12 -1 -1 0.30 0.00629684 0.00554637 99 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.17 vpr 53.70 MiB -1 -1 0.17 17528 1 0.01 -1 -1 29612 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 15.0 MiB 1.88 1128 53.7 MiB 0.09 0.00 3.58702 -118.659 -3.58702 3.58702 0.82 0.000219497 0.000176505 0.0156268 0.0128751 34 2956 29 6.89349e+06 324158 618332. 2139.56 1.49 0.0703832 0.0596144 25762 151098 -1 2379 21 1869 2682 200243 44583 0 0 200243 44583 2682 2351 0 0 9718 7824 0 0 15170 11666 0 0 2682 2404 0 0 85645 10346 0 0 84346 9992 0 0 2682 0 0 813 823 856 6800 0 0 3.7506 3.7506 -138.261 -3.7506 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.0177263 0.01571 145 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.13 vpr 53.68 MiB -1 -1 0.13 17488 1 0.01 -1 -1 29664 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 14.9 MiB 2.00 1239 53.7 MiB 0.05 0.00 4.01398 -122.686 -4.01398 4.01398 0.67 0.000125497 0.000100384 0.00861126 0.00703427 36 2850 40 6.89349e+06 324158 648988. 2245.63 1.38 0.0587114 0.0497278 26050 158493 -1 2410 18 1498 2132 156948 34711 0 0 156948 34711 2132 1725 0 0 7572 6056 0 0 11438 8862 0 0 2132 1804 0 0 65869 8270 0 0 67805 7994 0 0 2132 0 0 634 675 770 5721 0 0 4.70819 4.70819 -150.309 -4.70819 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0149064 0.0133193 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.48 vpr 53.36 MiB -1 -1 0.15 17256 1 0.02 -1 -1 29696 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54644 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 14.9 MiB 0.84 1172 53.4 MiB 0.09 0.00 4.04141 -120.151 -4.04141 4.04141 0.70 0.00014189 0.000117001 0.0128832 0.0105702 34 2908 35 6.89349e+06 507378 618332. 2139.56 1.75 0.0831075 0.0722021 25762 151098 -1 2331 22 1712 3263 238831 54651 0 0 238831 54651 3263 2241 0 0 12240 10199 0 0 19834 15316 0 0 3263 2424 0 0 100399 12497 0 0 99832 11974 0 0 3263 0 0 1551 2250 2067 14487 0 0 4.24579 4.24579 -143.589 -4.24579 0 0 787024. 2723.27 0.28 0.08 0.09 -1 -1 0.28 0.0167281 0.0147697 157 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.46 vpr 53.50 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29708 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54780 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 14.8 MiB 1.48 1121 53.5 MiB 0.08 0.00 2.95499 -91.5407 -2.95499 2.95499 0.64 0.000225061 0.000181071 0.0123059 0.0101066 34 2672 43 6.89349e+06 352346 618332. 2139.56 1.15 0.0472674 0.0398288 25762 151098 -1 2160 22 1737 2599 189972 42873 0 0 189972 42873 2599 1946 0 0 9641 7965 0 0 14632 11470 0 0 2599 2212 0 0 80696 9849 0 0 79805 9431 0 0 2599 0 0 862 1233 1180 8008 0 0 3.36821 3.36821 -112.963 -3.36821 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0154561 0.0136654 136 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 8.27 vpr 53.04 MiB -1 -1 0.15 17140 1 0.01 -1 -1 29760 -1 -1 20 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54316 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 14.5 MiB 1.65 699 53.0 MiB 0.06 0.00 3.41829 -89.9244 -3.41829 3.41829 0.73 0.000171898 0.00013971 0.0101691 0.00832106 36 1663 19 6.89349e+06 281877 648988. 2245.63 3.74 0.0814135 0.0693462 26050 158493 -1 1463 22 1118 1649 119775 28185 0 0 119775 28185 1649 1447 0 0 6040 4742 0 0 8852 7113 0 0 1649 1505 0 0 53679 6231 0 0 47906 7147 0 0 1649 0 0 531 586 504 4630 0 0 3.6001 3.6001 -105.84 -3.6001 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0118089 0.0104276 106 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.49 vpr 54.06 MiB -1 -1 0.17 17664 1 0.01 -1 -1 29924 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55360 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 15.3 MiB 3.40 1528 54.1 MiB 0.15 0.00 3.66879 -123.841 -3.66879 3.66879 0.95 0.000259942 0.000209686 0.0229972 0.0187599 36 3690 33 6.89349e+06 380534 648988. 2245.63 2.73 0.132889 0.115013 26050 158493 -1 3108 21 2127 3316 252658 54806 0 0 252658 54806 3316 2601 0 0 12031 9901 0 0 17896 14143 0 0 3316 2894 0 0 111162 12355 0 0 104937 12912 0 0 3316 0 0 1189 1169 1520 10144 0 0 4.08885 4.08885 -143.994 -4.08885 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0179895 0.0158647 185 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.52 vpr 53.59 MiB -1 -1 0.17 17852 1 0.02 -1 -1 29760 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54880 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 15.1 MiB 2.43 1106 53.6 MiB 0.08 0.00 4.36917 -131.102 -4.36917 4.36917 0.60 0.00013329 0.000107629 0.0136126 0.0111396 34 3250 25 6.89349e+06 338252 618332. 2139.56 1.51 0.066474 0.0570014 25762 151098 -1 2609 20 2039 3042 279158 59379 0 0 279158 59379 3042 2755 0 0 11356 9354 0 0 17518 13506 0 0 3042 2800 0 0 122944 15709 0 0 121256 15255 0 0 3042 0 0 1003 1450 1583 9796 0 0 4.78225 4.78225 -158.176 -4.78225 0 0 787024. 2723.27 0.20 0.05 0.08 -1 -1 0.20 0.00986162 0.00872072 155 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.07 vpr 53.43 MiB -1 -1 0.17 17680 1 0.02 -1 -1 29776 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 14.9 MiB 2.10 1074 53.4 MiB 0.06 0.00 3.43229 -114.249 -3.43229 3.43229 0.61 0.000116586 9.3406e-05 0.0102204 0.00825372 36 3059 28 6.89349e+06 295971 648988. 2245.63 2.59 0.0630974 0.0528504 26050 158493 -1 2309 18 1728 2279 189009 42250 0 0 189009 42250 2279 2019 0 0 8195 6601 0 0 12055 9545 0 0 2279 2188 0 0 79327 11666 0 0 84874 10231 0 0 2279 0 0 551 541 431 4904 0 0 3.6173 3.6173 -139.076 -3.6173 0 0 828058. 2865.25 0.24 0.04 0.12 -1 -1 0.24 0.00792145 0.00704227 137 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.49 vpr 53.28 MiB -1 -1 0.17 17356 1 0.01 -1 -1 29632 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 14.8 MiB 2.39 1107 53.3 MiB 0.07 0.00 4.09751 -116.957 -4.09751 4.09751 0.78 0.000218156 0.000178574 0.0114385 0.00952208 34 2813 27 6.89349e+06 295971 618332. 2139.56 1.98 0.0842355 0.072171 25762 151098 -1 2328 22 1400 2075 169748 37725 0 0 169748 37725 2075 1750 0 0 7667 6272 0 0 11992 9384 0 0 2075 1815 0 0 74371 9024 0 0 71568 9480 0 0 2075 0 0 675 776 748 6032 0 0 3.78236 3.78236 -131.035 -3.78236 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0167854 0.0149084 135 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.46 vpr 53.43 MiB -1 -1 0.18 17632 1 0.01 -1 -1 29708 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54716 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 14.8 MiB 2.39 1135 53.4 MiB 0.08 0.00 3.59285 -104.711 -3.59285 3.59285 0.99 0.000235554 0.000190093 0.0112588 0.00926832 34 3095 28 6.89349e+06 366440 618332. 2139.56 1.86 0.108795 0.0951201 25762 151098 -1 2420 21 1807 2802 186898 44141 0 0 186898 44141 2802 2147 0 0 10305 8401 0 0 15483 12241 0 0 2802 2249 0 0 81197 8924 0 0 74309 10179 0 0 2802 0 0 995 1023 1787 9719 0 0 3.83606 3.83606 -126.858 -3.83606 0 0 787024. 2723.27 0.21 0.06 0.08 -1 -1 0.21 0.0161245 0.0142432 163 46 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.88 vpr 53.50 MiB -1 -1 0.16 17476 1 0.01 -1 -1 29808 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54788 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 15.0 MiB 2.47 1084 53.5 MiB 0.11 0.00 3.39129 -97.8423 -3.39129 3.39129 0.99 0.000212686 0.000173909 0.0184946 0.0152505 34 3234 39 6.89349e+06 338252 618332. 2139.56 2.21 0.108673 0.0944712 25762 151098 -1 2410 21 1391 2244 180393 40089 0 0 180393 40089 2244 1880 0 0 8568 7091 0 0 12825 10248 0 0 2244 1979 0 0 79517 9252 0 0 74995 9639 0 0 2244 0 0 853 1093 997 7471 0 0 3.3537 3.3537 -114.928 -3.3537 0 0 787024. 2723.27 0.23 0.06 0.08 -1 -1 0.23 0.0148534 0.0131779 140 46 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.47 vpr 53.46 MiB -1 -1 0.16 17472 1 0.01 -1 -1 29760 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 15.0 MiB 2.96 1229 53.5 MiB 0.09 0.00 3.88598 -127.774 -3.88598 3.88598 0.90 0.000216513 0.000174541 0.015959 0.0130881 34 3227 23 6.89349e+06 310065 618332. 2139.56 1.88 0.0941929 0.0819119 25762 151098 -1 2658 20 1886 2940 231694 50920 0 0 231694 50920 2940 2546 0 0 10950 8997 0 0 16494 12880 0 0 2940 2656 0 0 97383 12464 0 0 100987 11377 0 0 2940 0 0 1054 1056 969 8189 0 0 3.99539 3.99539 -147.098 -3.99539 0 0 787024. 2723.27 0.20 0.05 0.08 -1 -1 0.20 0.00902244 0.00798688 148 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.29 vpr 53.72 MiB -1 -1 0.16 17360 1 0.01 -1 -1 29760 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 15.0 MiB 1.99 1222 53.7 MiB 0.13 0.00 3.22388 -106.835 -3.22388 3.22388 0.70 0.000250743 0.000206627 0.0233918 0.0191767 40 2752 22 6.89349e+06 366440 706193. 2443.58 1.57 0.0776635 0.0665967 26914 176310 -1 2541 20 2022 2841 240004 53743 0 0 240004 53743 2841 2308 0 0 10710 8953 0 0 16569 13012 0 0 2841 2520 0 0 101955 14023 0 0 105088 12927 0 0 2841 0 0 819 1102 943 7689 0 0 3.15646 3.15646 -125.035 -3.15646 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0118596 0.010582 167 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 4.91 vpr 53.18 MiB -1 -1 0.15 17508 1 0.00 -1 -1 29792 -1 -1 20 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 14.6 MiB 1.04 860 53.2 MiB 0.04 0.00 3.27503 -101.105 -3.27503 3.27503 0.59 9.6938e-05 7.7636e-05 0.00704112 0.00577763 34 2004 21 6.89349e+06 281877 618332. 2139.56 1.44 0.0644211 0.0553437 25762 151098 -1 1785 19 1472 1911 150042 33371 0 0 150042 33371 1911 1618 0 0 7122 5952 0 0 11172 8724 0 0 1911 1713 0 0 61801 8253 0 0 66125 7111 0 0 1911 0 0 439 476 458 4284 0 0 2.96326 2.96326 -110.676 -2.96326 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0118191 0.0105211 110 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.08 vpr 53.35 MiB -1 -1 0.16 17492 1 0.02 -1 -1 29724 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 14.8 MiB 0.96 1077 53.4 MiB 0.06 0.00 3.30699 -109.465 -3.30699 3.30699 0.58 0.000106492 8.4884e-05 0.00958638 0.00774974 36 2418 24 6.89349e+06 281877 648988. 2245.63 2.63 0.0606127 0.0506252 26050 158493 -1 2099 21 1619 2235 175355 39066 0 0 175355 39066 2235 1772 0 0 8209 6689 0 0 12830 10042 0 0 2235 1818 0 0 76160 9492 0 0 73686 9253 0 0 2235 0 0 616 570 471 5124 0 0 3.31085 3.31085 -125.017 -3.31085 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0138321 0.0122497 125 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.37 vpr 53.70 MiB -1 -1 0.16 17572 1 0.01 -1 -1 29764 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 14.8 MiB 1.93 1110 53.7 MiB 0.05 0.00 3.81078 -112.295 -3.81078 3.81078 0.67 0.000118849 9.5755e-05 0.00707467 0.00582881 36 2651 21 6.89349e+06 310065 648988. 2245.63 1.45 0.0475517 0.0410003 26050 158493 -1 2274 18 1335 2202 181699 39133 0 0 181699 39133 2202 1737 0 0 7989 6404 0 0 12065 9559 0 0 2202 1815 0 0 78143 9940 0 0 79098 9678 0 0 2202 0 0 867 952 1034 7697 0 0 3.84466 3.84466 -131.429 -3.84466 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0150968 0.0136048 137 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 9.08 vpr 53.12 MiB -1 -1 0.16 17488 1 0.02 -1 -1 29736 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54392 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 14.6 MiB 3.55 841 53.1 MiB 0.09 0.00 3.24432 -93.4931 -3.24432 3.24432 0.86 0.000181092 0.000146948 0.0163123 0.0133749 30 2203 22 6.89349e+06 267783 556674. 1926.21 2.50 0.0703423 0.0596491 25186 138497 -1 1826 22 952 1352 95328 22317 0 0 95328 22317 1352 1185 0 0 4794 3921 0 0 6872 5581 0 0 1352 1216 0 0 42205 4928 0 0 38753 5486 0 0 1352 0 0 400 251 468 3313 0 0 2.8654 2.8654 -101.201 -2.8654 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0114184 0.0100667 108 25 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.97 vpr 53.10 MiB -1 -1 0.15 17488 1 0.01 -1 -1 29652 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54376 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 14.5 MiB 2.43 908 53.1 MiB 0.06 0.00 3.26703 -103.493 -3.26703 3.26703 0.98 0.000182852 0.000147735 0.00920717 0.00757011 34 2339 21 6.89349e+06 253689 618332. 2139.56 1.53 0.0582824 0.0501288 25762 151098 -1 2036 17 1240 1718 132025 29570 0 0 132025 29570 1718 1504 0 0 6291 5040 0 0 9479 7383 0 0 1718 1549 0 0 54305 7495 0 0 58514 6599 0 0 1718 0 0 478 509 403 4064 0 0 3.16976 3.16976 -116.167 -3.16976 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00948185 0.00837745 114 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 5.15 vpr 53.50 MiB -1 -1 0.17 17472 1 0.02 -1 -1 29720 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 14.9 MiB 1.34 1149 53.5 MiB 0.07 0.00 3.60497 -116.508 -3.60497 3.60497 0.60 0.000135417 0.000110428 0.0123787 0.010224 34 3098 45 6.89349e+06 366440 618332. 2139.56 1.28 0.0653115 0.0554316 25762 151098 -1 2496 22 1918 2665 221095 49327 0 0 221095 49327 2665 2372 0 0 10118 8467 0 0 15705 12490 0 0 2665 2441 0 0 92916 12539 0 0 97026 11018 0 0 2665 0 0 747 897 923 7006 0 0 3.68505 3.68505 -138.816 -3.68505 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0175108 0.0154931 160 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.70 vpr 53.04 MiB -1 -1 0.12 17492 1 0.02 -1 -1 29664 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54308 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 14.4 MiB 2.38 835 53.0 MiB 0.07 0.00 2.93195 -91.6659 -2.93195 2.93195 0.98 0.000181153 0.000147551 0.0122522 0.0101126 30 2212 30 6.89349e+06 239595 556674. 1926.21 2.33 0.087269 0.0749571 25186 138497 -1 1818 21 1069 1520 93530 22529 0 0 93530 22529 1520 1283 0 0 5385 4321 0 0 7218 5978 0 0 1520 1339 0 0 38758 4882 0 0 39129 4726 0 0 1520 0 0 451 465 365 3703 0 0 2.91546 2.91546 -106.475 -2.91546 0 0 706193. 2443.58 0.19 0.03 0.07 -1 -1 0.19 0.00790675 0.00692844 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 9.21 vpr 53.38 MiB -1 -1 0.09 17288 1 0.01 -1 -1 29796 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 14.9 MiB 2.32 1225 53.4 MiB 0.10 0.00 3.37109 -104.575 -3.37109 3.37109 0.98 0.000212324 0.000171112 0.0164321 0.0134157 36 2717 24 6.89349e+06 310065 648988. 2245.63 3.63 0.122658 0.10574 26050 158493 -1 2299 18 1331 2006 147923 32670 0 0 147923 32670 2006 1684 0 0 7213 5880 0 0 10549 8429 0 0 2006 1758 0 0 62933 7602 0 0 63216 7317 0 0 2006 0 0 675 740 954 6595 0 0 3.5073 3.5073 -120.88 -3.5073 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0137573 0.0122168 146 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.67 vpr 53.72 MiB -1 -1 0.15 17732 1 0.01 -1 -1 29804 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 15.3 MiB 1.57 1311 53.7 MiB 0.08 0.00 4.02188 -128.285 -4.02188 4.02188 0.59 0.000141624 0.000112893 0.012361 0.00999559 34 4036 47 6.89349e+06 366440 618332. 2139.56 2.56 0.0871717 0.0746927 25762 151098 -1 2863 23 2546 3551 287948 63950 0 0 287948 63950 3551 2959 0 0 13128 10959 0 0 20158 15750 0 0 3551 3160 0 0 124642 15621 0 0 122918 15501 0 0 3551 0 0 1005 1284 1200 9550 0 0 4.27409 4.27409 -155.485 -4.27409 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0181433 0.0159793 170 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 9.99 vpr 53.38 MiB -1 -1 0.16 17344 1 0.02 -1 -1 29708 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54656 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 14.8 MiB 3.13 1069 53.4 MiB 0.08 0.00 3.0513 -96.5592 -3.0513 3.0513 0.96 0.000182558 0.000144881 0.0142503 0.0116165 36 2612 19 6.89349e+06 253689 648988. 2245.63 3.64 0.0975414 0.0833507 26050 158493 -1 2158 19 1506 1995 168339 34689 0 0 168339 34689 1995 1655 0 0 7026 5495 0 0 9933 7812 0 0 1995 1822 0 0 70496 9701 0 0 76894 8204 0 0 1995 0 0 489 514 521 4519 0 0 2.94656 2.94656 -113.927 -2.94656 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0127344 0.0113145 124 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.46 vpr 53.17 MiB -1 -1 0.14 17352 1 0.01 -1 -1 29664 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54448 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 14.7 MiB 1.45 977 53.2 MiB 0.09 0.00 3.24503 -105.57 -3.24503 3.24503 0.99 0.000181981 0.000146138 0.0148831 0.0121544 36 2288 19 6.89349e+06 253689 648988. 2245.63 2.73 0.0755598 0.0643812 26050 158493 -1 2118 19 1146 1719 155909 32939 0 0 155909 32939 1719 1548 0 0 6418 5204 0 0 9923 7819 0 0 1719 1599 0 0 69851 8424 0 0 66279 8345 0 0 1719 0 0 573 515 481 4434 0 0 3.15225 3.15225 -118.166 -3.15225 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0116181 0.0102569 115 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.93 vpr 53.22 MiB -1 -1 0.12 17344 1 0.01 -1 -1 29776 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54500 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 14.6 MiB 2.01 1138 53.2 MiB 0.10 0.00 4.11268 -118.02 -4.11268 4.11268 0.96 0.000211917 0.000172633 0.0184415 0.0151962 34 2636 22 6.89349e+06 310065 618332. 2139.56 1.71 0.0853987 0.0732174 25762 151098 -1 2226 20 1250 1804 127831 29786 0 0 127831 29786 1804 1494 0 0 6714 5574 0 0 10359 8196 0 0 1804 1602 0 0 52810 6775 0 0 54340 6145 0 0 1804 0 0 554 550 535 4573 0 0 3.84706 3.84706 -130.586 -3.84706 0 0 787024. 2723.27 0.30 0.05 0.12 -1 -1 0.30 0.0144214 0.0128511 133 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 8.96 vpr 53.40 MiB -1 -1 0.17 17512 1 0.01 -1 -1 29728 -1 -1 25 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54680 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 14.7 MiB 2.29 1221 53.4 MiB 0.10 0.00 3.15468 -93.0776 -3.15468 3.15468 0.99 0.000212186 0.000174627 0.0171907 0.0141677 36 2460 24 6.89349e+06 352346 648988. 2245.63 3.47 0.103344 0.0888248 26050 158493 -1 2249 18 1372 1980 140796 31182 0 0 140796 31182 1980 1622 0 0 7156 5627 0 0 10093 8168 0 0 1980 1744 0 0 58881 7299 0 0 60706 6722 0 0 1980 0 0 608 812 842 6176 0 0 2.99036 2.99036 -108.183 -2.99036 0 0 828058. 2865.25 0.21 0.04 0.13 -1 -1 0.21 0.00819429 0.00732676 138 49 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 10.40 vpr 53.48 MiB -1 -1 0.18 17516 1 0.01 -1 -1 29724 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 15.1 MiB 2.46 1344 53.5 MiB 0.06 0.00 4.55604 -148.713 -4.55604 4.55604 0.85 0.000132101 0.000106344 0.00905057 0.00742449 34 3780 31 6.89349e+06 338252 618332. 2139.56 4.69 0.159132 0.138987 25762 151098 -1 3024 22 2250 3491 304275 66368 0 0 304275 66368 3491 2953 0 0 13265 11268 0 0 21463 16549 0 0 3491 3083 0 0 130653 16565 0 0 131912 15950 0 0 3491 0 0 1241 1495 1702 11195 0 0 4.30729 4.30729 -161.805 -4.30729 0 0 787024. 2723.27 0.30 0.10 0.13 -1 -1 0.30 0.0199814 0.0177862 166 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.83 vpr 52.74 MiB -1 -1 0.13 16888 1 0.01 -1 -1 29628 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54008 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 14.3 MiB 0.71 828 52.7 MiB 0.07 0.00 2.72825 -89.364 -2.72825 2.72825 0.97 0.00016694 0.000135535 0.0131382 0.0108257 34 1921 21 6.89349e+06 239595 618332. 2139.56 2.95 0.0867208 0.0740151 25762 151098 -1 1631 19 812 1253 89969 20896 0 0 89969 20896 1253 1036 0 0 4679 3818 0 0 7109 5541 0 0 1253 1064 0 0 36992 5001 0 0 38683 4436 0 0 1253 0 0 441 366 385 3463 0 0 2.57636 2.57636 -98.8508 -2.57636 0 0 787024. 2723.27 0.31 0.04 0.12 -1 -1 0.31 0.0116062 0.0104048 92 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.06 vpr 54.07 MiB -1 -1 0.18 17764 1 0.02 -1 -1 29828 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55372 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 15.3 MiB 2.39 1438 54.1 MiB 0.13 0.00 4.41033 -141.952 -4.41033 4.41033 0.99 0.000255147 0.00020671 0.0229772 0.0188913 36 3211 27 6.89349e+06 380534 648988. 2245.63 2.21 0.107575 0.0930813 26050 158493 -1 2709 23 2049 2768 191149 42982 0 0 191149 42982 2768 2330 0 0 9824 8014 0 0 14694 11581 0 0 2768 2440 0 0 77606 9999 0 0 83489 8618 0 0 2768 0 0 719 675 772 6688 0 0 4.71644 4.71644 -166.983 -4.71644 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0184129 0.016211 175 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.44 vpr 53.67 MiB -1 -1 0.13 17448 1 0.01 -1 -1 29676 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 15.1 MiB 1.74 1183 53.7 MiB 0.11 0.00 3.86868 -131.455 -3.86868 3.86868 0.99 0.000222353 0.000177143 0.0185342 0.0151187 36 3706 40 6.89349e+06 324158 648988. 2245.63 3.30 0.105796 0.0916359 26050 158493 -1 2549 25 2631 3381 289127 65121 0 0 289127 65121 3381 3063 0 0 12006 9864 0 0 19005 14461 0 0 3381 3136 0 0 122836 17732 0 0 128518 16865 0 0 3381 0 0 750 840 860 7365 0 0 4.82559 4.82559 -165.74 -4.82559 0 0 828058. 2865.25 0.32 0.10 0.14 -1 -1 0.32 0.0200073 0.0177707 160 93 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 7.72 vpr 53.56 MiB -1 -1 0.17 17684 1 0.02 -1 -1 29664 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54848 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 15.0 MiB 2.37 1311 53.6 MiB 0.09 0.00 3.22388 -106.809 -3.22388 3.22388 1.02 0.000239485 0.000195941 0.0163424 0.0135819 36 2628 20 6.89349e+06 310065 648988. 2245.63 1.95 0.114537 0.100767 26050 158493 -1 2268 17 1342 1841 137544 30311 0 0 137544 30311 1841 1506 0 0 6907 5744 0 0 10018 8197 0 0 1841 1581 0 0 58683 6608 0 0 58254 6675 0 0 1841 0 0 499 678 716 5358 0 0 3.06661 3.06661 -116.098 -3.06661 0 0 828058. 2865.25 0.32 0.05 0.12 -1 -1 0.32 0.0139339 0.0124359 152 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 10.53 vpr 53.73 MiB -1 -1 0.16 17756 1 0.01 -1 -1 29748 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55016 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 15.3 MiB 3.17 1369 53.7 MiB 0.06 0.00 4.7624 -145.974 -4.7624 4.7624 0.96 0.000136271 0.000109187 0.0106678 0.00886229 36 3005 21 6.89349e+06 366440 648988. 2245.63 4.21 0.150585 0.132308 26050 158493 -1 2637 23 2042 3242 259853 55443 0 0 259853 55443 3242 2523 0 0 11672 9516 0 0 18160 14061 0 0 3242 2617 0 0 111295 13127 0 0 112242 13599 0 0 3242 0 0 1200 1717 1576 10815 0 0 4.71575 4.71575 -158.636 -4.71575 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0107929 0.00950247 172 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.66 vpr 52.93 MiB -1 -1 0.16 17232 1 0.01 -1 -1 29612 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54196 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 14.3 MiB 1.10 686 52.9 MiB 0.07 0.00 2.38626 -77.3379 -2.38626 2.38626 0.95 0.000150191 0.000120276 0.0123017 0.00997914 34 1636 20 6.89349e+06 211408 618332. 2139.56 1.42 0.0580303 0.0490011 25762 151098 -1 1446 21 847 1148 111221 24276 0 0 111221 24276 1148 966 0 0 4385 3629 0 0 7211 5547 0 0 1148 998 0 0 47329 6540 0 0 50000 6596 0 0 1148 0 0 301 321 351 2723 0 0 2.13627 2.13627 -88.7943 -2.13627 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.0100894 0.00886013 82 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 4.24 vpr 53.14 MiB -1 -1 0.08 17396 1 0.00 -1 -1 29748 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54420 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 14.7 MiB 0.95 973 53.1 MiB 0.05 0.00 3.70827 -117.45 -3.70827 3.70827 0.59 0.000103592 8.2409e-05 0.00843009 0.00684729 34 2219 21 6.89349e+06 281877 618332. 2139.56 0.94 0.0396669 0.0331412 25762 151098 -1 1862 20 1248 1841 133058 30182 0 0 133058 30182 1841 1518 0 0 6960 5769 0 0 10439 8381 0 0 1841 1572 0 0 55314 6801 0 0 56663 6141 0 0 1841 0 0 593 696 425 5027 0 0 3.34945 3.34945 -126.918 -3.34945 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0137187 0.0122549 119 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.47 vpr 53.22 MiB -1 -1 0.15 17480 1 0.01 -1 -1 29796 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54500 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 14.7 MiB 2.37 1110 53.2 MiB 0.09 0.00 3.53059 -115.631 -3.53059 3.53059 0.98 0.000200479 0.000162285 0.0157952 0.0130053 34 2807 24 6.89349e+06 253689 618332. 2139.56 1.77 0.0881419 0.0762041 25762 151098 -1 2319 19 1457 2625 207423 46057 0 0 207423 46057 2625 2075 0 0 9707 8055 0 0 15706 12058 0 0 2625 2290 0 0 88055 11067 0 0 88705 10512 0 0 2625 0 0 1168 1478 1405 10052 0 0 3.5001 3.5001 -133.964 -3.5001 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0141567 0.0126593 120 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.20 vpr 52.86 MiB -1 -1 0.16 17088 1 0.01 -1 -1 29808 -1 -1 21 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54132 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 14.2 MiB 1.29 569 52.9 MiB 0.06 0.00 3.0161 -71.862 -3.0161 3.0161 0.60 0.000141906 0.000113572 0.0114643 0.00930354 34 1615 26 6.89349e+06 295971 618332. 2139.56 1.37 0.0471762 0.0395166 25762 151098 -1 1192 21 801 1265 75547 19358 0 0 75547 19358 1265 1024 0 0 4596 3744 0 0 7351 5604 0 0 1265 1078 0 0 30592 3997 0 0 30478 3911 0 0 1265 0 0 464 598 561 4170 0 0 2.74511 2.74511 -77.3962 -2.74511 0 0 787024. 2723.27 0.32 0.04 0.13 -1 -1 0.32 0.0106581 0.00948468 92 19 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.31 vpr 53.54 MiB -1 -1 0.17 17488 1 0.02 -1 -1 29768 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54820 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 14.9 MiB 2.94 1406 53.5 MiB 0.06 0.00 3.72115 -114.833 -3.72115 3.72115 0.74 0.000131767 0.000106347 0.00846134 0.00695134 34 3524 43 6.89349e+06 324158 618332. 2139.56 2.27 0.0930459 0.0807853 25762 151098 -1 2948 21 2021 3055 231663 50764 0 0 231663 50764 3055 2448 0 0 11185 9050 0 0 16395 12882 0 0 3055 2605 0 0 100869 12038 0 0 97104 11741 0 0 3055 0 0 1034 1121 1188 8666 0 0 3.85185 3.85185 -134.462 -3.85185 0 0 787024. 2723.27 0.28 0.07 0.14 -1 -1 0.28 0.0170966 0.0151779 161 69 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.98 vpr 54.14 MiB -1 -1 0.20 17744 1 0.01 -1 -1 29780 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55444 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 15.3 MiB 2.77 1459 54.1 MiB 0.13 0.00 3.88258 -130.654 -3.88258 3.88258 0.84 0.000247728 0.000200327 0.0223069 0.018235 34 3567 44 6.89349e+06 408721 618332. 2139.56 1.95 0.107575 0.0914575 25762 151098 -1 2899 22 2270 3066 230697 52150 0 0 230697 52150 3066 2647 0 0 11408 9491 0 0 17441 13694 0 0 3066 2788 0 0 97474 11745 0 0 98242 11785 0 0 3066 0 0 796 922 921 7569 0 0 4.37314 4.37314 -160.694 -4.37314 0 0 787024. 2723.27 0.32 0.08 0.13 -1 -1 0.32 0.0193854 0.0172407 179 86 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt index 49e98b8f83b..defcdc98c38 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time 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.13 vpr 62.56 MiB -1 -1 0.36 21860 3 0.10 -1 -1 36416 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64060 99 130 343 473 1 230 298 12 12 144 clb auto 23.9 MiB 0.10 571 62.6 MiB 0.20 0.00 1.63028 -111.073 -1.63028 1.63028 0.39 0.000701881 0.000631043 0.0522939 0.0469685 48 1238 11 5.66058e+06 4.21279e+06 394078. 2736.65 0.85 0.159634 0.14526 1104 12 413 672 30654 9331 1.97152 1.97152 -135.95 -1.97152 -0.565496 -0.22459 503207. 3494.49 0.17 0.04 0.0247789 0.0231855 0.01024 0.2567 0.08152 0.6618 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 14.43 vpr 65.87 MiB -1 -1 0.54 27052 15 0.48 -1 -1 37296 -1 -1 38 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67448 162 96 993 934 1 696 301 16 16 256 mult_36 auto 28.1 MiB 0.35 5333 65.9 MiB 0.65 0.01 19.8134 -1613.84 -19.8134 19.8134 0.87 0.00244427 0.00221129 0.249037 0.225511 50 11841 28 1.21132e+07 4.02797e+06 780512. 3048.87 6.13 0.970582 0.887689 9624 18 3046 5877 1921714 505718 22.589 22.589 -1796.16 -22.589 0 0 1.00276e+06 3917.05 0.40 0.62 0.142357 0.133385 0.007573 0.3655 0.01688 0.6176 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 619.81 vpr 395.53 MiB -1 -1 77.67 339780 122 97.98 -1 -1 81700 -1 -1 1377 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 405020 114 102 21867 21777 1 11713 1646 50 50 2500 memory auto 189.8 MiB 24.55 159901 395.5 MiB 33.75 0.26 66.9303 -51944.3 -66.9303 66.9303 36.82 0.0681219 0.0592585 8.61419 6.96748 96 244541 40 1.47946e+08 1.02043e+08 1.58254e+07 6330.17 225.20 33.2551 27.3218 217988 20 43499 165318 31857426 7188217 79.3851 79.3851 -66427.4 -79.3851 -23.4783 -0.29436 1.97871e+07 7914.84 9.70 14.82 4.47381 3.82155 0.08209 0.4334 0.01151 0.5551 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.31 vpr 62.13 MiB -1 -1 0.34 21840 3 0.10 -1 -1 36476 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63620 99 130 343 473 1 232 298 12 12 144 clb auto 24.1 MiB 0.13 572 62.1 MiB 0.18 0.00 1.62851 -111.071 -1.62851 1.62851 0.38 0.000645991 0.00056461 0.0469761 0.0422096 48 1247 10 5.66058e+06 4.21279e+06 394078. 2736.65 2.07 0.205833 0.187639 1215 11 431 663 39534 12127 1.90627 1.90627 -138.837 -1.90627 -0.68517 -0.298787 503207. 3494.49 0.18 0.04 0.0238194 0.0223866 0.01178 0.221 0.07326 0.7057 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 14.50 vpr 66.30 MiB -1 -1 0.51 26856 15 0.50 -1 -1 37212 -1 -1 38 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67896 162 96 993 934 1 696 301 16 16 256 mult_36 auto 28.3 MiB 0.46 5333 66.3 MiB 0.62 0.01 19.8134 -1613.84 -19.8134 19.8134 0.84 0.00226141 0.00203942 0.23731 0.214702 50 11858 36 1.21132e+07 4.02797e+06 780512. 3048.87 6.37 0.954171 0.871536 9606 15 2935 5600 1776082 469179 22.7333 22.7333 -1793.42 -22.7333 0 0 1.00276e+06 3917.05 0.36 0.53 0.121488 0.113886 0.007823 0.3512 0.01624 0.6325 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 692.11 vpr 441.16 MiB -1 -1 75.64 339876 122 97.27 -1 -1 81752 -1 -1 1266 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 451748 114 102 21867 21777 1 11313 1535 50 50 2500 memory auto 189.5 MiB 44.15 154475 396.0 MiB 29.19 0.23 69.0246 -48206.9 -69.0246 69.0246 33.79 0.0580862 0.0502384 7.61523 6.12833 100 226183 35 1.47946e+08 9.60601e+07 1.63173e+07 6526.93 277.37 39.1282 31.8964 206876 22 41694 159376 32036210 7111728 80.0953 80.0953 -61945.2 -80.0953 -50.0843 -0.217744 2.05845e+07 8233.80 12.92 16.37 4.84734 4.13987 0.08424 0.4298 0.0113 0.5589 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.80 vpr 63.02 MiB -1 -1 0.33 21956 3 0.10 -1 -1 36408 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64536 99 130 343 473 1 228 298 12 12 144 clb auto 24.4 MiB 0.16 541 63.0 MiB 0.19 0.00 1.50426 -108.358 -1.50426 1.50426 0.39 0.000598084 0.000534574 0.0483092 0.0431952 38 1276 12 5.66058e+06 4.21279e+06 334530. 2323.13 1.57 0.272631 0.247665 1123 9 427 650 25526 8441 1.85823 1.85823 -134.642 -1.85823 -1.29348 -0.29768 424691. 2949.24 0.15 0.03 0.0204564 0.0192451 0.01043 0.2287 0.0762 0.6951 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 14.62 vpr 66.04 MiB -1 -1 0.52 26944 15 0.49 -1 -1 37388 -1 -1 36 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67628 162 96 993 934 1 691 299 16 16 256 mult_36 auto 28.3 MiB 0.73 5405 66.0 MiB 0.56 0.01 19.7311 -1621.37 -19.7311 19.7311 0.85 0.00213065 0.00189195 0.198941 0.178674 46 13551 48 1.21132e+07 3.92018e+06 761464. 2974.47 5.99 0.757285 0.690633 9981 18 3232 6547 2118170 542515 22.4111 22.4111 -1861.01 -22.4111 0 0 979054. 3824.43 0.39 0.65 0.137089 0.128401 0.007872 0.3532 0.01645 0.6304 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1302.25 vpr 423.54 MiB -1 -1 75.03 340224 122 101.26 -1 -1 81700 -1 -1 1285 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 433704 114 102 21867 21777 1 11916 1554 50 50 2500 memory auto 186.9 MiB 416.67 160441 423.5 MiB 39.50 0.31 66.994 -48659.5 -66.994 66.994 39.14 0.0795669 0.0669973 9.96481 7.82551 100 233631 20 1.47946e+08 9.70841e+07 1.70584e+07 6823.36 496.79 34.4739 27.9444 213204 18 39818 152896 40131733 9981460 78.5212 78.5212 -62317.1 -78.5212 -34.3291 -0.29436 2.14473e+07 8578.92 11.52 19.61 4.43541 3.83602 0.08778 0.4244 0.01154 0.5641 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.13 vpr 62.62 MiB -1 -1 0.35 22004 3 0.11 -1 -1 36328 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64128 99 130 343 473 1 225 298 12 12 144 clb auto 24.3 MiB 0.16 559 62.6 MiB 0.19 0.00 1.47901 -108.724 -1.47901 1.47901 0.42 0.000605889 0.000541065 0.0474111 0.0422779 42 1286 11 5.66058e+06 4.21279e+06 361905. 2513.23 1.71 0.224865 0.204149 1140 9 370 567 35248 11086 1.853 1.853 -134.025 -1.853 -1.09957 -0.298787 454457. 3155.95 0.17 0.04 0.0206872 0.0194561 0.01204 0.2131 0.06994 0.7169 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 16.64 vpr 66.39 MiB -1 -1 0.50 26848 15 0.48 -1 -1 37228 -1 -1 38 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67984 162 96 993 934 1 694 301 16 16 256 mult_36 auto 28.4 MiB 0.72 5399 66.4 MiB 0.53 0.01 20.1055 -1656.33 -20.1055 20.1055 0.85 0.00217195 0.00195281 0.198878 0.179709 50 12632 46 1.21132e+07 4.02797e+06 817349. 3192.77 8.35 0.949848 0.868431 9729 21 3161 6498 1968623 518620 22.4917 22.4917 -1833.73 -22.4917 0 0 1.05038e+06 4103.04 0.39 0.60 0.14137 0.132209 0.0082 0.3444 0.01565 0.64 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1327.21 vpr 425.56 MiB -1 -1 74.46 339864 122 103.73 -1 -1 81584 -1 -1 1189 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 435776 114 102 21867 21777 1 11141 1458 50 50 2500 memory auto 188.6 MiB 422.58 154418 425.6 MiB 28.12 0.26 66.6596 -48184 -66.6596 66.6596 37.74 0.0620019 0.047144 6.648 5.33906 94 232470 25 1.47946e+08 9.19101e+07 1.62379e+07 6495.14 520.37 34.4254 28.2397 209471 19 39591 158536 47290670 11973433 79.044 79.044 -62432.9 -79.044 -24.9253 -0.293253 2.03897e+07 8155.87 11.14 22.05 4.02644 3.48797 0.08746 0.4062 0.01148 0.5823 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 5.27 vpr 63.00 MiB -1 -1 0.33 21888 3 0.09 -1 -1 36484 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64516 99 130 343 473 1 229 298 12 12 144 clb auto 24.7 MiB 0.17 538 63.0 MiB 0.19 0.00 1.4799 -111.769 -1.4799 1.4799 0.41 0.000558284 0.000495548 0.0462634 0.0411451 46 1093 10 5.66058e+06 4.21279e+06 410918. 2853.60 1.93 0.228796 0.207447 1035 10 404 612 31060 9689 1.9561 1.9561 -134.369 -1.9561 -1.12284 -0.320482 527087. 3660.32 0.18 0.04 0.0214747 0.0201417 0.01011 0.2323 0.08291 0.6848 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 15.47 vpr 66.28 MiB -1 -1 0.51 26852 15 0.50 -1 -1 37280 -1 -1 35 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67868 162 96 993 934 1 704 298 16 16 256 mult_36 auto 28.3 MiB 0.92 5442 66.3 MiB 0.57 0.01 19.7696 -1656.05 -19.7696 19.7696 0.89 0.00222682 0.00200553 0.204042 0.182984 48 11943 48 1.21132e+07 3.86629e+06 822491. 3212.85 6.66 0.937971 0.858821 9885 17 3147 6468 2211646 562395 22.0795 22.0795 -1901.59 -22.0795 0 0 1.05295e+06 4113.10 0.40 0.63 0.122844 0.115546 0.008093 0.3548 0.0166 0.6286 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1543.09 vpr 456.66 MiB -1 -1 73.88 339924 122 104.04 -1 -1 81752 -1 -1 1284 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 467624 114 102 21867 21777 1 11781 1553 50 50 2500 memory auto 187.5 MiB 541.19 163955 456.7 MiB 39.60 0.32 68.3386 -49218.7 -68.3386 68.3386 44.67 0.0787999 0.0675428 9.708 7.79819 98 243728 43 1.47946e+08 9.70302e+07 1.74237e+07 6969.48 593.83 37.1402 30.474 214158 18 38495 151590 42789957 11018195 80.0515 80.0515 -66163.5 -80.0515 -18.1647 -0.295467 2.19566e+07 8782.65 12.09 22.33 3.9401 3.42936 0.09046 0.415 0.01163 0.5733 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.17 vpr 62.96 MiB -1 -1 0.31 21860 3 0.09 -1 -1 36400 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64476 99 130 343 473 1 229 298 12 12 144 clb auto 24.7 MiB 0.17 538 63.0 MiB 0.19 0.00 1.4799 -111.769 -1.4799 1.4799 0.40 0.000580832 0.000519054 0.0468377 0.0416544 48 1085 16 5.66058e+06 4.21279e+06 426931. 2964.80 1.80 0.285395 0.259334 1037 9 366 569 31298 10205 1.92191 1.92191 -135.09 -1.92191 -0.765284 -0.298787 545663. 3789.32 0.19 0.04 0.0203762 0.0192304 0.01168 0.211 0.07416 0.7148 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 15.68 vpr 66.27 MiB -1 -1 0.51 26832 15 0.50 -1 -1 37292 -1 -1 35 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67860 162 96 993 934 1 705 298 16 16 256 mult_36 auto 28.3 MiB 1.06 5389 66.3 MiB 0.64 0.01 19.835 -1671.52 -19.835 19.835 1.01 0.00245806 0.00220014 0.236917 0.213294 46 12690 45 1.21132e+07 3.86629e+06 791147. 3090.42 6.33 0.802281 0.732789 9955 20 3151 6283 1724999 426907 22.8893 22.8893 -1926.18 -22.8893 0 0 1.01637e+06 3970.19 0.39 0.54 0.135952 0.127277 0.008201 0.342 0.01562 0.6424 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1326.00 vpr 456.88 MiB -1 -1 75.02 339704 122 104.19 -1 -1 81632 -1 -1 1172 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 467848 114 102 21867 21777 1 10748 1441 50 50 2500 memory auto 187.2 MiB 524.88 151764 456.9 MiB 37.12 0.28 68.331 -45077.6 -68.331 68.331 43.46 0.0781084 0.0665 10.0482 8.00352 90 226093 39 1.47946e+08 9.09939e+07 1.62125e+07 6485.01 405.32 39.6179 32.3616 201359 17 36754 150891 32477602 7509311 79.4848 79.4848 -57824.9 -79.4848 -32.9829 -0.291039 2.01810e+07 8072.38 10.80 15.95 4.55282 3.92558 0.08896 0.3883 0.01171 0.6 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.98 vpr 62.69 MiB -1 -1 0.32 21776 3 0.08 -1 -1 36404 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64196 99 130 343 473 1 228 298 12 12 144 clb auto 24.0 MiB 0.15 557 62.7 MiB 0.18 0.00 1.52575 -110.979 -1.52575 1.52575 0.38 0.000630856 0.000562485 0.0459345 0.0410803 44 1246 16 5.66058e+06 4.21279e+06 360780. 2505.42 0.79 0.151029 0.13718 1090 11 419 665 28806 9208 1.89344 1.89344 -140.309 -1.89344 -0.346312 -0.215975 470765. 3269.20 0.16 0.04 0.0229629 0.0216096 0.01051 0.248 0.07926 0.6727 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 15.46 vpr 65.95 MiB -1 -1 0.52 26956 15 0.52 -1 -1 37228 -1 -1 37 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67528 162 96 993 934 1 692 300 16 16 256 mult_36 auto 28.2 MiB 0.70 5313 65.9 MiB 0.53 0.01 20.1871 -1728.93 -20.1871 20.1871 0.84 0.00201589 0.00180462 0.194601 0.175066 54 13582 44 1.21132e+07 3.97408e+06 835850. 3265.04 6.92 0.948089 0.86817 9808 22 3280 6815 1819372 527319 22.4714 22.4714 -1936.83 -22.4714 0 0 1.08614e+06 4242.72 0.41 0.64 0.152412 0.142318 0.007847 0.3685 0.01764 0.6138 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1191.06 vpr 408.03 MiB -1 -1 74.44 339540 122 104.42 -1 -1 81656 -1 -1 1319 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 417824 114 102 21867 21777 1 11967 1588 50 50 2500 memory auto 186.7 MiB 296.32 164601 393.1 MiB 29.65 0.25 67.4786 -47969.2 -67.4786 67.4786 34.75 0.053002 0.0455999 6.87437 5.39467 100 244625 47 1.47946e+08 9.89166e+07 1.63173e+07 6526.93 509.03 35.4078 28.7212 220431 21 45398 169112 44646689 10879406 78.8268 78.8268 -62833 -78.8268 -30.4852 -0.29436 2.05845e+07 8233.80 12.12 23.88 5.15164 4.4084 0.08475 0.4353 0.01155 0.5531 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.71 vpr 62.80 MiB -1 -1 0.35 21800 3 0.09 -1 -1 36372 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64304 99 130 343 473 1 225 298 12 12 144 clb auto 24.5 MiB 0.15 572 62.8 MiB 0.23 0.00 1.5462 -106.851 -1.5462 1.5462 0.39 0.000680614 0.000607811 0.0560019 0.0498566 44 1455 18 5.66058e+06 4.21279e+06 360780. 2505.42 2.32 0.304756 0.276064 1162 8 396 642 31865 10169 1.87594 1.87594 -136.837 -1.87594 -0.963391 -0.321515 470765. 3269.20 0.17 0.04 0.0209761 0.0197035 0.01184 0.2124 0.07105 0.7166 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 14.22 vpr 66.36 MiB -1 -1 0.48 26996 15 0.48 -1 -1 37292 -1 -1 37 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67952 162 96 993 934 1 693 300 16 16 256 mult_36 auto 28.4 MiB 0.70 5327 66.4 MiB 0.56 0.01 20.1072 -1700.26 -20.1072 20.1072 0.89 0.00228911 0.0020727 0.209444 0.188775 50 11729 28 1.21132e+07 3.97408e+06 780512. 3048.87 5.59 0.941554 0.85823 9793 21 2972 5904 1890961 462932 22.9874 22.9874 -1927.31 -22.9874 0 0 1.00276e+06 3917.05 0.40 0.62 0.153355 0.143042 0.007946 0.3503 0.01583 0.6339 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1043.69 vpr 407.73 MiB -1 -1 75.74 340012 122 100.65 -1 -1 81672 -1 -1 1218 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 417516 114 102 21867 21777 1 11178 1487 50 50 2500 memory auto 187.9 MiB 313.35 152928 394.6 MiB 27.32 0.22 67.1647 -48823 -67.1647 67.1647 34.83 0.0527229 0.0452455 6.78754 5.35192 98 231274 35 1.47946e+08 9.34731e+07 1.60641e+07 6425.63 350.51 35.8203 29.2823 208412 20 42668 164053 35717637 8706785 79.2848 79.2848 -63822.8 -79.2848 -27.7877 -0.293253 2.03677e+07 8147.07 12.93 20.28 5.25039 4.45845 0.08526 0.4216 0.01148 0.567 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.84 vpr 63.13 MiB -1 -1 0.34 22080 3 0.08 -1 -1 36472 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64644 99 130 343 473 1 229 298 12 12 144 clb auto 24.4 MiB 0.16 571 63.1 MiB 0.18 0.00 1.47901 -107.886 -1.47901 1.47901 0.35 0.00052367 0.000468252 0.0437202 0.0388669 42 1417 17 5.66058e+06 4.21279e+06 345702. 2400.71 1.74 0.27927 0.253714 1236 12 397 606 31722 9709 1.8836 1.8836 -140.396 -1.8836 -1.04592 -0.296573 434679. 3018.61 0.15 0.04 0.0224281 0.0210283 0.01053 0.2447 0.07801 0.6773 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 15.28 vpr 65.63 MiB -1 -1 0.51 26828 15 0.48 -1 -1 37232 -1 -1 36 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67208 162 96 993 934 1 706 299 16 16 256 mult_36 auto 27.9 MiB 0.90 5461 65.6 MiB 0.57 0.01 19.9779 -1717.42 -19.9779 19.9779 0.82 0.00221798 0.00199799 0.217039 0.196835 50 12360 24 1.21132e+07 3.92018e+06 780512. 3048.87 6.66 0.868772 0.796435 10360 18 3421 6944 2372273 568039 22.2499 22.2499 -1999.7 -22.2499 0 0 1.00276e+06 3917.05 0.37 0.67 0.129375 0.121324 0.007978 0.3603 0.01624 0.6235 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1100.20 vpr 393.60 MiB -1 -1 74.26 339552 122 98.08 -1 -1 81604 -1 -1 1300 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 403048 114 102 21867 21777 1 11836 1569 50 50 2500 memory auto 187.5 MiB 297.24 156622 393.6 MiB 32.17 0.26 68.6655 -48352.2 -68.6655 68.6655 33.96 0.064863 0.057179 8.21829 6.6274 98 239048 40 1.47946e+08 9.78926e+07 1.60641e+07 6425.63 435.78 32.364 26.4609 211931 19 48226 180548 29913702 6605610 79.5571 79.5571 -61397.4 -79.5571 -23.1307 -0.340786 2.03677e+07 8147.07 12.11 13.75 3.91259 3.36678 0.08498 0.4253 0.01166 0.563 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.32 vpr 62.71 MiB -1 -1 0.34 21888 3 0.10 -1 -1 36332 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64220 99 130 343 473 1 229 298 12 12 144 clb auto 24.4 MiB 0.16 571 62.7 MiB 0.20 0.00 1.47901 -107.841 -1.47901 1.47901 0.38 0.000541283 0.000477965 0.0467856 0.0414344 38 1490 22 5.66058e+06 4.21279e+06 319130. 2216.18 2.06 0.302457 0.274184 1208 11 460 693 31981 9874 1.9995 1.9995 -133.063 -1.9995 -1.2099 -0.29768 406292. 2821.48 0.14 0.04 0.0223208 0.0209302 0.01106 0.207 0.06628 0.7267 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 16.24 vpr 66.04 MiB -1 -1 0.51 26888 15 0.49 -1 -1 37236 -1 -1 36 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67628 162 96 993 934 1 705 299 16 16 256 mult_36 auto 28.3 MiB 1.00 5550 66.0 MiB 0.66 0.01 19.5585 -1696.41 -19.5585 19.5585 0.82 0.00249083 0.0022341 0.238148 0.214425 50 13722 40 1.21132e+07 3.92018e+06 780512. 3048.87 7.40 0.811193 0.741358 10385 18 3527 7105 2237706 590499 22.2268 22.2268 -2005.74 -22.2268 0 0 1.00276e+06 3917.05 0.38 0.65 0.126188 0.118384 0.008261 0.3472 0.0157 0.6371 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 853.84 vpr 394.00 MiB -1 -1 77.90 339936 122 99.25 -1 -1 81628 -1 -1 1196 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:29 gh-actions-runner-vtr-auto-spawned1 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 403460 114 102 21867 21777 1 11032 1465 50 50 2500 memory auto 187.3 MiB 299.59 150208 394.0 MiB 29.06 0.23 66.9432 -47069.2 -66.9432 66.9432 33.62 0.0639483 0.0564687 8.34929 6.66901 92 230003 46 1.47946e+08 9.22874e+07 1.52089e+07 6083.58 185.66 32.3168 26.4244 204967 21 44175 170134 40321925 8974528 78.1367 78.1367 -58950.7 -78.1367 -38.6414 -0.29436 1.93279e+07 7731.17 11.12 17.82 4.60414 3.92476 0.08503 0.4041 0.01165 0.5843 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.09 vpr 55.19 MiB -1 -1 0.18 18560 3 0.06 -1 -1 32744 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56512 99 130 343 473 1 230 298 12 12 144 clb auto 16.3 MiB 0.07 572 55.2 MiB 0.14 0.00 1.63028 -108.738 -1.63028 1.63028 0.22 0.000340502 0.000307112 0.027896 0.0251334 44 1417 14 5.66058e+06 4.21279e+06 360780. 2505.42 1.09 0.189663 0.17397 13094 71552 -1 1231 11 449 718 38782 11946 0 0 38782 11946 718 614 0 0 2355 2101 0 0 2978 2360 0 0 788 667 0 0 15634 3532 0 0 16309 2672 0 0 718 0 0 269 414 445 2996 0 0 1.9084 1.9084 -139.139 -1.9084 -0.416006 -0.147762 470765. 3269.20 0.10 0.02 0.04 -1 -1 0.10 0.0136163 0.0128607 0.01049 0.2555 0.07883 0.6657 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 9.79 vpr 58.29 MiB -1 -1 0.31 22900 15 0.32 -1 -1 33264 -1 -1 38 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 59684 162 96 993 934 1 696 301 16 16 256 mult_36 auto 19.9 MiB 0.18 5428 58.3 MiB 0.32 0.00 19.9596 -1648.74 -19.9596 19.9596 0.48 0.00101658 0.000903954 0.0970702 0.0873825 46 13271 37 1.21132e+07 4.02797e+06 727248. 2840.81 4.94 0.46586 0.425714 24972 144857 -1 10025 17 3164 6144 1940934 498468 0 0 1940934 498468 6144 4223 0 0 78011 76422 0 0 81313 78168 0 0 6697 4572 0 0 879964 161352 0 0 888805 173731 0 0 6144 0 0 3018 8452 8155 50099 0 0 22.8999 22.8999 -1888.31 -22.8999 0 0 934704. 3651.19 0.20 0.34 0.09 -1 -1 0.20 0.0666329 0.0627901 0.007475 0.3634 0.01692 0.6197 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 492.93 vpr 388.55 MiB -1 -1 48.62 339644 122 59.03 -1 -1 77844 -1 -1 1377 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 397880 114 102 21867 21777 1 11713 1646 50 50 2500 memory auto 180.9 MiB 15.53 162689 388.6 MiB 19.63 0.14 68.7817 -50162.9 -68.7817 68.7817 23.70 0.0347519 0.0304026 4.6802 3.81808 92 251169 44 1.47946e+08 1.02043e+08 1.52089e+07 6083.58 244.79 18.37 15.2806 338772 3221652 -1 220101 19 45751 172307 32920188 7264749 0 0 32920188 7264749 164441 57994 0 0 591691 548992 0 0 704893 597954 0 0 169930 67144 0 0 15682645 2978165 0 0 15606588 3014500 0 0 164441 0 0 121062 487151 475835 2963694 8158 5092 79.5055 79.5055 -65870.8 -79.5055 -14.9102 -0.295467 1.93279e+07 7731.17 6.90 9.50 2.30 -1 -1 6.90 2.37124 2.05828 0.08136 0.4285 0.01142 0.5601 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.51 vpr 55.01 MiB -1 -1 0.18 18632 3 0.06 -1 -1 32612 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56332 99 130 343 473 1 232 298 12 12 144 clb auto 16.7 MiB 0.07 572 55.0 MiB 0.13 0.00 1.62851 -108.359 -1.62851 1.62851 0.22 0.000326051 0.000293181 0.0262507 0.0236426 48 1189 19 5.66058e+06 4.21279e+06 394078. 2736.65 0.52 0.111503 0.102523 13382 75762 -1 1252 11 422 669 38874 12066 0 0 38874 12066 669 523 0 0 1920 1755 0 0 2584 1921 0 0 733 577 0 0 16320 4045 0 0 16648 3245 0 0 669 0 0 247 404 345 2663 0 0 1.97488 1.97488 -136.181 -1.97488 -0.782377 -0.296573 503207. 3494.49 0.10 0.02 0.05 -1 -1 0.10 0.0138063 0.0130659 0.01159 0.2336 0.07188 0.6946 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 9.77 vpr 58.51 MiB -1 -1 0.34 23384 15 0.34 -1 -1 33192 -1 -1 38 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 59916 162 96 993 934 1 696 301 16 16 256 mult_36 auto 20.3 MiB 0.25 5428 58.5 MiB 0.31 0.00 19.9596 -1648.74 -19.9596 19.9596 0.48 0.000947709 0.00084599 0.0928615 0.0832684 46 12909 39 1.21132e+07 4.02797e+06 727248. 2840.81 4.89 0.456105 0.417072 24972 144857 -1 9960 16 3161 6072 1841496 470541 0 0 1841496 470541 6072 4110 0 0 73535 71998 0 0 76748 73650 0 0 6596 4486 0 0 836410 152472 0 0 842135 163825 0 0 6072 0 0 2947 8520 8356 52651 0 0 22.7389 22.7389 -1891.59 -22.7389 0 0 934704. 3651.19 0.20 0.31 0.08 -1 -1 0.20 0.0642102 0.0606279 0.007787 0.3485 0.01635 0.6352 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 448.83 vpr 388.89 MiB -1 -1 45.04 339716 122 60.33 -1 -1 78016 -1 -1 1266 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 398224 114 102 21867 21777 1 11313 1535 50 50 2500 memory auto 180.3 MiB 31.53 151112 388.9 MiB 17.49 0.13 67.357 -48177.1 -67.357 67.357 21.24 0.0348124 0.0304923 4.46047 3.64836 98 226104 23 1.47946e+08 9.60601e+07 1.60641e+07 6425.63 193.53 15.3956 12.7951 348768 3430976 -1 203055 19 41666 159584 42519209 11149043 0 0 42519209 11149043 153478 52594 0 0 531133 494387 0 0 635471 535883 0 0 159184 61491 0 0 20329034 4924891 0 0 20710909 5079797 0 0 153478 0 0 114200 430530 431244 2752936 6538 3635 77.9533 77.9533 -64058.9 -77.9533 -34.0227 -0.296573 2.03677e+07 8147.07 7.41 14.23 2.51 -1 -1 7.41 2.43096 2.10953 0.08408 0.4242 0.01152 0.5643 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.11 vpr 55.38 MiB -1 -1 0.16 18640 3 0.05 -1 -1 32624 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56708 99 130 343 473 1 228 298 12 12 144 clb auto 16.5 MiB 0.09 546 55.4 MiB 0.14 0.00 1.50426 -109.539 -1.50426 1.50426 0.23 0.000321786 0.000290019 0.026723 0.0240597 48 1087 13 5.66058e+06 4.21279e+06 411630. 2858.54 1.08 0.153456 0.140768 13872 80872 -1 1145 11 389 590 36976 11771 0 0 36976 11771 590 439 0 0 2012 1783 0 0 2405 2015 0 0 615 464 0 0 16619 3596 0 0 14735 3474 0 0 590 0 0 201 347 249 2251 0 0 1.93939 1.93939 -137.398 -1.93939 -0.720336 -0.298787 526257. 3654.56 0.11 0.02 0.05 -1 -1 0.11 0.0135719 0.0128201 0.01039 0.2475 0.08197 0.6705 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 10.47 vpr 58.50 MiB -1 -1 0.26 23316 15 0.34 -1 -1 33248 -1 -1 36 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 59904 162 96 993 934 1 691 299 16 16 256 mult_36 auto 20.2 MiB 0.40 5242 58.5 MiB 0.31 0.00 19.856 -1634.5 -19.856 19.856 0.50 0.000933671 0.000830507 0.094687 0.0851361 52 11187 29 1.21132e+07 3.92018e+06 843768. 3295.97 5.44 0.563902 0.516092 26972 173637 -1 9405 18 3120 6376 1891735 547258 0 0 1891735 547258 6376 3957 0 0 91624 88938 0 0 95572 91775 0 0 6712 4262 0 0 852492 179740 0 0 838959 178586 0 0 6376 0 0 3288 9625 9038 50683 0 0 22.1237 22.1237 -1801.73 -22.1237 0 0 1.11026e+06 4336.95 0.24 0.33 0.10 -1 -1 0.24 0.0681991 0.0642887 0.00808 0.3627 0.01728 0.62 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 694.85 vpr 419.09 MiB -1 -1 45.28 339596 122 60.77 -1 -1 77984 -1 -1 1285 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 429152 114 102 21867 21777 1 11916 1554 50 50 2500 memory auto 179.7 MiB 229.70 162772 419.1 MiB 20.07 0.16 67.5941 -49002.7 -67.5941 67.5941 23.17 0.0400612 0.0315621 4.89658 3.94384 98 243767 43 1.47946e+08 9.70841e+07 1.67994e+07 6719.74 239.26 17.8073 14.8023 360864 3674624 -1 215233 18 40684 156406 38892741 10213543 0 0 38892741 10213543 149595 52193 0 0 576074 522161 0 0 685418 581380 0 0 154879 61991 0 0 18534406 4442126 0 0 18792369 4553692 0 0 149595 0 0 110910 420664 410078 2621052 7165 6836 78.8522 78.8522 -62098.7 -78.8522 -30.1856 -0.29436 2.12220e+07 8488.81 7.01 12.37 2.60 -1 -1 7.01 2.31393 2.0319 0.08751 0.4235 0.0115 0.565 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.27 vpr 55.15 MiB -1 -1 0.18 18684 3 0.07 -1 -1 32640 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56472 99 130 343 473 1 225 298 12 12 144 clb auto 16.5 MiB 0.09 548 55.1 MiB 0.14 0.00 1.47901 -107.394 -1.47901 1.47901 0.23 0.000318477 0.000284588 0.0261925 0.0235342 46 1178 11 5.66058e+06 4.21279e+06 396063. 2750.44 1.23 0.135026 0.123819 13728 78551 -1 1163 9 386 580 26592 8561 0 0 26592 8561 580 512 0 0 1629 1404 0 0 2114 1629 0 0 672 592 0 0 11675 2276 0 0 9922 2148 0 0 580 0 0 194 276 223 1985 0 0 1.91033 1.91033 -140.454 -1.91033 -1.37858 -0.320482 508433. 3530.78 0.10 0.02 0.05 -1 -1 0.10 0.0119744 0.0113546 0.01178 0.2146 0.07228 0.7131 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 9.51 vpr 58.63 MiB -1 -1 0.27 23484 15 0.30 -1 -1 33304 -1 -1 38 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 60036 162 96 993 934 1 694 301 16 16 256 mult_36 auto 20.4 MiB 0.45 5341 58.6 MiB 0.34 0.00 20.0691 -1671.27 -20.0691 20.0691 0.49 0.00094399 0.000839503 0.0980284 0.0877106 50 11589 31 1.21132e+07 4.02797e+06 817349. 3192.77 4.45 0.469532 0.430508 26464 163948 -1 9622 20 3346 7062 1853074 482972 0 0 1853074 482972 7062 4238 0 0 88258 85884 0 0 92514 88441 0 0 7628 4697 0 0 815648 153741 0 0 841964 145971 0 0 7062 0 0 3754 10960 10910 61346 0 0 22.7782 22.7782 -1875.43 -22.7782 0 0 1.05038e+06 4103.04 0.23 0.33 0.09 -1 -1 0.23 0.0728706 0.0684196 0.008122 0.3432 0.01562 0.6412 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 723.43 vpr 418.66 MiB -1 -1 42.40 340804 122 62.31 -1 -1 78068 -1 -1 1189 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 428712 114 102 21867 21777 1 11141 1458 50 50 2500 memory auto 179.0 MiB 232.37 153992 418.7 MiB 15.95 0.13 66.8869 -49530.9 -66.8869 66.8869 22.64 0.0343307 0.0300405 4.2818 3.52376 94 233968 44 1.47946e+08 9.19101e+07 1.62379e+07 6495.14 270.48 18.6021 15.4716 353364 3504872 -1 208614 22 39746 158437 44829525 11060816 0 0 44829525 11060816 151638 52260 0 0 630115 562975 0 0 759437 638546 0 0 157207 61696 0 0 21550951 4878435 0 0 21580177 4866904 0 0 151638 0 0 114016 440723 449870 2754101 7183 5301 79.2314 79.2314 -65292.9 -79.2314 -11.1139 -0.292146 2.03897e+07 8155.87 6.69 13.79 2.45 -1 -1 6.69 2.68373 2.34649 0.08739 0.406 0.01147 0.5826 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.11 vpr 55.39 MiB -1 -1 0.18 18532 3 0.05 -1 -1 32672 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56716 99 130 343 473 1 229 298 12 12 144 clb auto 16.8 MiB 0.09 535 55.4 MiB 0.14 0.00 1.50322 -110.367 -1.50322 1.50322 0.24 0.00031694 0.000285466 0.0278571 0.0250213 38 1372 21 5.66058e+06 4.21279e+06 347689. 2414.51 1.04 0.168992 0.154412 13432 70334 -1 1054 9 411 616 27691 9531 0 0 27691 9531 616 478 0 0 1880 1578 0 0 2227 1881 0 0 653 516 0 0 11438 2666 0 0 10877 2412 0 0 616 0 0 205 385 234 2336 0 0 2.05211 2.05211 -139.952 -2.05211 -1.13196 -0.29768 440062. 3055.98 0.10 0.02 0.04 -1 -1 0.10 0.0121001 0.0114727 0.009477 0.2238 0.07661 0.6996 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 8.66 vpr 58.82 MiB -1 -1 0.27 23292 15 0.30 -1 -1 33264 -1 -1 35 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 60232 162 96 993 934 1 704 298 16 16 256 mult_36 auto 20.7 MiB 0.50 5446 58.8 MiB 0.33 0.00 20.1297 -1647.97 -20.1297 20.1297 0.51 0.000904406 0.000802593 0.098466 0.0881199 46 12661 43 1.21132e+07 3.86629e+06 791147. 3090.42 3.47 0.409852 0.374882 26792 163197 -1 10223 21 3388 6763 1975781 487013 0 0 1975781 487013 6763 4295 0 0 80671 77935 0 0 85132 80849 0 0 7391 4858 0 0 915703 157684 0 0 880121 161392 0 0 6763 0 0 3414 10175 9976 55514 0 0 22.641 22.641 -1874.1 -22.641 0 0 1.01637e+06 3970.19 0.22 0.35 0.09 -1 -1 0.22 0.0748807 0.0704858 0.007983 0.3559 0.0162 0.6279 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 755.16 vpr 445.16 MiB -1 -1 42.59 339680 122 62.80 -1 -1 77808 -1 -1 1284 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 455844 114 102 21867 21777 1 11781 1553 50 50 2500 memory auto 178.9 MiB 287.95 163806 445.2 MiB 20.36 0.16 67.825 -49300.5 -67.825 67.825 26.55 0.040145 0.0316068 4.92974 3.94112 98 236687 21 1.47946e+08 9.70302e+07 1.74237e+07 6969.48 238.11 19.1585 15.9116 371232 3885440 -1 212661 20 37783 148892 39345972 9537156 0 0 39345972 9537156 141735 48142 0 0 580119 511992 0 0 691652 585858 0 0 145960 56603 0 0 18902814 4114484 0 0 18883692 4220077 0 0 141735 0 0 105806 409785 407162 2545339 7369 5036 79.5943 79.5943 -63624.9 -79.5943 -23.4799 -0.295467 2.19566e+07 8782.65 6.97 10.57 2.63 -1 -1 6.97 2.34806 2.07952 0.09067 0.4158 0.01165 0.5726 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.21 vpr 55.42 MiB -1 -1 0.19 18576 3 0.05 -1 -1 32724 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56748 99 130 343 473 1 229 298 12 12 144 clb auto 17.1 MiB 0.09 535 55.4 MiB 0.14 0.00 1.50322 -110.367 -1.50322 1.50322 0.24 0.000320205 0.000288127 0.0280234 0.0251782 36 1377 22 5.66058e+06 4.21279e+06 333113. 2313.29 1.14 0.149766 0.137029 13148 65652 -1 1061 11 403 624 25883 8887 0 0 25883 8887 624 480 0 0 1903 1638 0 0 2218 1903 0 0 651 521 0 0 9972 2371 0 0 10515 1974 0 0 624 0 0 221 401 288 2456 0 0 1.90592 1.90592 -135.525 -1.90592 -1.08733 -0.318417 410918. 2853.60 0.09 0.02 0.04 -1 -1 0.09 0.0136201 0.0129052 0.01132 0.1889 0.06759 0.7435 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.39 vpr 58.74 MiB -1 -1 0.25 23464 15 0.35 -1 -1 33608 -1 -1 35 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 60152 162 96 993 934 1 705 298 16 16 256 mult_36 auto 20.6 MiB 0.56 5344 58.7 MiB 0.32 0.00 19.8283 -1655.73 -19.8283 19.8283 0.50 0.000924698 0.000822885 0.0965477 0.0866682 48 12369 34 1.21132e+07 3.86629e+06 822491. 3212.85 5.15 0.538632 0.492044 27048 168158 -1 9968 15 3038 6000 1608560 403033 0 0 1608560 403033 6000 3812 0 0 76557 74069 0 0 79789 76702 0 0 6504 4207 0 0 722305 123879 0 0 717405 120364 0 0 6000 0 0 2995 8403 8806 49428 0 0 22.6591 22.6591 -1905.78 -22.6591 0 0 1.05295e+06 4113.10 0.24 0.28 0.10 -1 -1 0.24 0.0621008 0.0588223 0.008265 0.3422 0.01588 0.6419 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 727.49 vpr 450.72 MiB -1 -1 43.14 339736 122 64.52 -1 -1 77952 -1 -1 1172 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 461536 114 102 21867 21777 1 10748 1441 50 50 2500 memory auto 177.9 MiB 280.75 147420 450.7 MiB 17.99 0.13 67.9174 -47347.6 -67.9174 67.9174 25.92 0.0366419 0.0321162 4.71915 3.87923 92 216433 29 1.47946e+08 9.09939e+07 1.65231e+07 6609.23 220.29 22.2587 18.4814 361236 3648468 -1 195513 18 35439 146001 35950888 9052086 0 0 35950888 9052086 140069 46503 0 0 566522 494870 0 0 674657 572353 0 0 145658 53960 0 0 17221423 3923915 0 0 17202559 3960485 0 0 140069 0 0 106595 397100 389319 2525910 6363 3754 79.1326 79.1326 -64342.9 -79.1326 -15.7329 -0.292146 2.08892e+07 8355.67 6.98 11.01 2.44 -1 -1 6.98 2.29299 2.01736 0.08968 0.3926 0.01168 0.5957 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.16 vpr 55.35 MiB -1 -1 0.18 18684 3 0.05 -1 -1 32680 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56680 99 130 343 473 1 228 298 12 12 144 clb auto 16.5 MiB 0.09 541 55.4 MiB 0.13 0.00 1.47901 -109.079 -1.47901 1.47901 0.22 0.000318916 0.000287721 0.0263451 0.0236836 46 1148 15 5.66058e+06 4.21279e+06 378970. 2631.74 1.18 0.117991 0.108252 13238 73581 -1 1102 12 438 677 28265 9438 0 0 28265 9438 677 544 0 0 1829 1645 0 0 2482 1829 0 0 749 619 0 0 11616 2635 0 0 10912 2166 0 0 677 0 0 239 435 295 2676 0 0 1.91033 1.91033 -132.48 -1.91033 -0.352058 -0.105593 486261. 3376.82 0.10 0.02 0.04 -1 -1 0.10 0.0139157 0.0131353 0.01037 0.2404 0.08179 0.6778 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 8.02 vpr 58.40 MiB -1 -1 0.28 23240 15 0.33 -1 -1 33532 -1 -1 37 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 59804 162 96 993 934 1 692 300 16 16 256 mult_36 auto 20.3 MiB 0.38 5234 58.4 MiB 0.31 0.00 20.0433 -1672.62 -20.0433 20.0433 0.48 0.000898425 0.000795538 0.0925576 0.0828233 52 12076 42 1.21132e+07 3.97408e+06 805949. 3148.24 3.04 0.425198 0.388619 25992 162577 -1 9495 16 3017 6031 1792092 491608 0 0 1792092 491608 6031 3866 0 0 85428 83427 0 0 89114 85629 0 0 6674 4326 0 0 826313 159469 0 0 778532 154891 0 0 6031 0 0 3046 9559 8892 50798 0 0 23.1002 23.1002 -1917.27 -23.1002 0 0 1.06067e+06 4143.25 0.23 0.31 0.11 -1 -1 0.23 0.0633234 0.059839 0.007699 0.3679 0.0173 0.6148 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 604.40 vpr 424.55 MiB -1 -1 42.59 339484 122 64.91 -1 -1 77952 -1 -1 1319 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 434740 114 102 21867 21777 1 11967 1588 50 50 2500 memory auto 178.9 MiB 165.28 169221 387.3 MiB 17.72 0.14 68.1675 -50495 -68.1675 68.1675 20.79 0.0358291 0.0315066 4.27622 3.51733 102 255497 34 1.47946e+08 9.89166e+07 1.66061e+07 6642.43 218.29 23.6846 19.579 353764 3530188 -1 229055 21 45771 171217 36461485 8182823 0 0 36461485 8182823 163796 59620 0 0 586225 546511 0 0 706124 592797 0 0 169893 69552 0 0 17565096 3464520 0 0 17270351 3449823 0 0 163796 0 0 120164 497251 477495 2938235 7677 4439 78.6633 78.6633 -68683.7 -78.6633 -45.1814 -0.295467 2.08230e+07 8329.19 7.24 10.28 2.59 -1 -1 7.24 2.51571 2.17775 0.0855 0.4398 0.01149 0.5487 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.30 vpr 54.37 MiB -1 -1 0.18 18728 3 0.07 -1 -1 32756 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55676 99 130 343 473 1 225 298 12 12 144 clb auto 15.9 MiB 0.08 532 54.4 MiB 0.14 0.00 1.5264 -110.235 -1.5264 1.5264 0.22 0.000338118 0.000304261 0.0274229 0.024766 48 1232 14 5.66058e+06 4.21279e+06 394078. 2736.65 1.22 0.138843 0.127414 13382 75762 -1 1178 9 446 672 42208 13412 0 0 42208 13412 672 547 0 0 2247 2082 0 0 2741 2248 0 0 733 616 0 0 17790 4371 0 0 18025 3548 0 0 672 0 0 226 316 312 2338 0 0 1.95198 1.95198 -138.731 -1.95198 -0.557195 -0.29768 503207. 3494.49 0.10 0.02 0.05 -1 -1 0.10 0.0119754 0.0113447 0.01157 0.2206 0.07286 0.7065 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 8.34 vpr 58.48 MiB -1 -1 0.32 23216 15 0.30 -1 -1 33252 -1 -1 37 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 59888 162 96 993 934 1 693 300 16 16 256 mult_36 auto 20.2 MiB 0.39 5592 58.5 MiB 0.33 0.00 20.185 -1650.79 -20.185 20.185 0.47 0.000967658 0.00085674 0.0973469 0.0873189 48 13452 34 1.21132e+07 3.97408e+06 756778. 2956.16 3.24 0.369884 0.338319 25228 149258 -1 10206 23 3194 6152 2280274 567804 0 0 2280274 567804 6152 3978 0 0 75477 74044 0 0 78618 75643 0 0 6641 4491 0 0 1055082 201561 0 0 1058304 208087 0 0 6152 0 0 2995 8462 7505 50154 0 0 22.6302 22.6302 -1961.4 -22.6302 0 0 968034. 3781.38 0.21 0.39 0.09 -1 -1 0.21 0.0765697 0.0718575 0.008038 0.3506 0.01615 0.6332 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 623.86 vpr 388.09 MiB -1 -1 42.95 340780 122 62.23 -1 -1 77740 -1 -1 1218 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 397408 114 102 21867 21777 1 11178 1487 50 50 2500 memory auto 179.6 MiB 177.34 152714 388.1 MiB 15.62 0.14 67.1858 -47730.8 -67.1858 67.1858 20.08 0.0397658 0.0310592 4.31209 3.50846 98 231587 24 1.47946e+08 9.34731e+07 1.60641e+07 6425.63 227.30 19.0682 15.7292 348768 3430976 -1 206991 22 42256 161258 47495211 13011074 0 0 47495211 13011074 154775 54841 0 0 578537 541420 0 0 691430 584456 0 0 160756 63906 0 0 22663509 5812565 0 0 23246204 5953886 0 0 154775 0 0 114528 435051 423075 2667186 6987 3572 78.8935 78.8935 -62708.5 -78.8935 -42.5002 -0.296573 2.03677e+07 8147.07 7.13 15.27 2.49 -1 -1 7.13 2.54157 2.19877 0.08516 0.4199 0.01153 0.5686 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.24 vpr 54.80 MiB -1 -1 0.23 18172 3 0.06 -1 -1 32528 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56112 99 130 343 473 1 229 298 12 12 144 clb auto 15.9 MiB 0.09 556 54.8 MiB 0.14 0.00 1.47813 -109.972 -1.47813 1.47813 0.22 0.000320354 0.000288299 0.0271899 0.0244086 44 1271 11 5.66058e+06 4.21279e+06 360780. 2505.42 1.13 0.11057 0.101347 13094 71552 -1 1218 12 462 709 47394 15463 0 0 47394 15463 709 569 0 0 2415 2235 0 0 2908 2417 0 0 788 651 0 0 20592 5384 0 0 19982 4207 0 0 709 0 0 247 486 362 2880 0 0 1.87646 1.87646 -140.25 -1.87646 -0.539402 -0.295467 470765. 3269.20 0.10 0.03 0.04 -1 -1 0.10 0.0142796 0.0134851 0.01061 0.2454 0.07925 0.6753 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 8.20 vpr 58.37 MiB -1 -1 0.27 22780 15 0.35 -1 -1 33384 -1 -1 36 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 59772 162 96 993 934 1 706 299 16 16 256 mult_36 auto 20.3 MiB 0.50 5511 58.4 MiB 0.31 0.00 19.9061 -1687.45 -19.9061 19.9061 0.48 0.000954628 0.000846505 0.0907668 0.0810877 48 13006 40 1.21132e+07 3.92018e+06 756778. 2956.16 3.00 0.382407 0.349558 25228 149258 -1 10178 21 3597 7695 2425913 610945 0 0 2425913 610945 7695 4780 0 0 94544 92807 0 0 99100 94775 0 0 8342 5362 0 0 1111887 211315 0 0 1104345 201906 0 0 7695 0 0 4131 11854 11380 63908 0 0 22.4244 22.4244 -1941.38 -22.4244 0 0 968034. 3781.38 0.21 0.40 0.09 -1 -1 0.21 0.0747584 0.0704015 0.007889 0.3562 0.01659 0.6272 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 810.59 vpr 386.49 MiB -1 -1 43.36 339496 122 64.87 -1 -1 77984 -1 -1 1300 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 395764 114 102 21867 21777 1 11836 1569 50 50 2500 memory auto 178.0 MiB 177.92 160076 386.5 MiB 16.96 0.13 67.1242 -47132.9 -67.1242 67.1242 20.78 0.0346237 0.0303318 4.33427 3.53109 98 249946 49 1.47946e+08 9.78926e+07 1.60641e+07 6425.63 409.65 18.4526 15.3256 348768 3430976 -1 219379 20 45618 172134 43762325 10888236 0 0 43762325 10888236 164096 59521 0 0 602555 563359 0 0 724684 609793 0 0 169880 69191 0 0 20961455 4718538 0 0 21139655 4867834 0 0 164096 0 0 120432 475180 472179 2855102 8231 4124 78.5043 78.5043 -61586.2 -78.5043 -53.3078 -0.29436 2.03677e+07 8147.07 6.78 12.75 2.50 -1 -1 6.78 2.3776 2.08171 0.0854 0.4261 0.01172 0.5622 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.15 vpr 54.51 MiB -1 -1 0.18 18536 3 0.06 -1 -1 32604 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55820 99 130 343 473 1 229 298 12 12 144 clb auto 16.1 MiB 0.09 556 54.5 MiB 0.14 0.00 1.47813 -110.014 -1.47813 1.47813 0.22 0.000326773 0.000294752 0.0277451 0.0249515 46 1249 11 5.66058e+06 4.21279e+06 378970. 2631.74 0.99 0.131252 0.120512 13238 73581 -1 1164 9 447 694 32827 10026 0 0 32827 10026 694 557 0 0 1863 1656 0 0 2434 1865 0 0 777 649 0 0 13401 3055 0 0 13658 2244 0 0 694 0 0 247 508 357 2936 0 0 1.93232 1.93232 -138.156 -1.93232 -0.954778 -0.320482 486261. 3376.82 0.10 0.02 0.04 -1 -1 0.10 0.0121542 0.01153 0.01166 0.2182 0.07187 0.71 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 11.22 vpr 58.46 MiB -1 -1 0.28 22992 15 0.33 -1 -1 33296 -1 -1 36 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 59864 162 96 993 934 1 705 299 16 16 256 mult_36 auto 20.3 MiB 0.56 5514 58.5 MiB 0.30 0.00 19.6313 -1701.34 -19.6313 19.6313 0.47 0.000954233 0.00084484 0.0889769 0.0792547 56 11864 33 1.21132e+07 3.92018e+06 870502. 3400.40 5.93 0.594929 0.543587 26504 172068 -1 9889 17 3114 6180 1994800 529658 0 0 1994800 529658 6180 3921 0 0 71278 69696 0 0 74956 71458 0 0 6638 4381 0 0 904227 187507 0 0 931521 192695 0 0 6180 0 0 3102 9302 8573 50735 0 0 22.2079 22.2079 -1911.27 -22.2079 0 0 1.11200e+06 4343.75 0.23 0.35 0.11 -1 -1 0.23 0.0660134 0.062305 0.00843 0.3588 0.01628 0.6249 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 694.12 vpr 413.84 MiB -1 -1 42.56 340828 122 59.41 -1 -1 77936 -1 -1 1196 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 423776 114 102 21867 21777 1 11032 1465 50 50 2500 memory auto 178.3 MiB 174.13 151087 387.1 MiB 16.87 0.13 66.7869 -47762.1 -66.7869 66.7869 20.89 0.03394 0.0295648 4.511 3.66309 96 241038 48 1.47946e+08 9.22874e+07 1.58254e+07 6330.17 301.89 25.6824 21.1516 343768 3324272 -1 207751 22 42832 166152 51654842 12975718 0 0 51654842 12975718 159409 56567 0 0 605498 561267 0 0 728989 613381 0 0 165652 66470 0 0 24605570 5721536 0 0 25389724 5956497 0 0 159409 0 0 118536 457145 451474 2782853 7287 6458 77.9118 77.9118 -63943.6 -77.9118 -19.8028 -0.29436 1.97871e+07 7914.84 6.42 15.65 2.47 -1 -1 6.42 2.62495 2.29195 0.08581 0.4093 0.01174 0.579 From 5d69764bf89142ddbcee2432cf5a216cb6493f65 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 18:31:58 -0400 Subject: [PATCH 73/81] golden result updated for vtr_reg_parmys --- .../freecores/config/golden_results.txt | 14 +++--- .../vtr_benchmarks/config/golden_results.txt | 44 +++++++++---------- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_parmys/freecores/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_parmys/freecores/config/golden_results.txt index c39348f7a8c..dce734fb3d0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_parmys/freecores/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_parmys/freecores/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml aes_cipher.v common 134.60 yosys 445.09 MiB -1 -1 18.10 455772 6 9.39 -1 -1 70828 -1 -1 701 259 0 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 183224 259 129 8774 8897 1 4980 1089 33 33 1089 clb auto 114.3 MiB 20.58 59704 148.2 MiB 8.67 0.09 6.44338 -2130.54 -6.44338 6.44338 4.16 0.0221635 0.0189398 2.21505 1.88312 70 91684 32 6.0475e+07 3.77798e+07 5.09631e+06 4679.81 50.91 10.979 9.31713 85629 18 27542 125035 4262724 710401 6.9243 6.9243 -2421.74 -6.9243 0 0 6.40987e+06 5886.01 2.64 2.65 1.50546 1.34837 - k6_frac_N10_frac_chain_mem32K_40nm.xml aes_inv_cipher.v common 123.72 yosys 452.54 MiB -1 -1 19.78 463404 7 11.64 -1 -1 72260 -1 -1 740 260 4 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 170332 260 129 8992 9112 1 5160 1133 34 34 1156 clb auto 117.2 MiB 22.18 60251 151.1 MiB 9.18 0.09 6.77472 -4264.25 -6.77472 6.77472 4.20 0.0195745 0.0162455 2.33754 1.99628 66 94490 28 6.50233e+07 4.20739e+07 5.19999e+06 4498.26 33.01 7.90798 6.74918 89765 17 28199 131092 6623931 1152573 7.46607 7.46607 -5204.2 -7.46607 0 0 6.45113e+06 5580.56 2.66 2.92 1.3629 1.22675 - k6_frac_N10_frac_chain_mem32K_40nm.xml 8051.v common 36.73 vpr 89.09 MiB -1 -1 8.87 69592 14 4.12 -1 -1 42500 -1 -1 199 83 1 1 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 91228 83 78 3637 3395 1 1931 362 19 19 361 clb auto 52.2 MiB 5.51 19424 89.1 MiB 1.46 0.02 13.8003 -5034.19 -13.8003 13.8003 1.00 0.00553529 0.00456691 0.479095 0.405309 74 31961 25 1.72706e+07 1.16689e+07 1.66117e+06 4601.57 9.04 2.26734 1.93658 28829 17 9192 31539 1918089 349879 15.3884 15.3884 -5711.22 -15.3884 0 0 2.08502e+06 5775.67 0.69 0.80 0.387553 0.353914 - k6_frac_N10_frac_chain_mem32K_40nm.xml ethmac.v common 19.50 yosys 99.41 MiB -1 -1 9.05 101800 6 2.07 -1 -1 43424 -1 -1 31 53 4 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 53 4 637 623 3 258 92 14 14 196 memory auto 27.5 MiB 0.91 1789 65.2 MiB 0.08 0.00 3.12691 -835.876 -3.12691 1.36913 0.51 0.000809306 0.000641912 0.0364397 0.0296374 34 3334 14 9.20055e+06 3.86271e+06 429196. 2189.78 1.18 0.247242 0.206166 3152 14 928 2178 369952 104247 3.69008 1.44684 -1018.57 -3.69008 0 0 527839. 2693.05 0.18 0.13 0.0498451 0.0452929 - k6_frac_N10_frac_chain_mem32K_40nm.xml mips_16.v common 0.98 vpr 61.29 MiB -1 -1 0.40 20996 1 0.05 -1 -1 33536 -1 -1 1 2 0 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 62760 2 8 36 37 1 11 11 3 3 9 -1 auto 22.8 MiB 0.01 18 61.3 MiB 0.00 0.00 1.5 -14.4221 -1.5 1.5 0.00 2.729e-05 2.0177e-05 0.000538256 0.000500603 38 85 19 53894 53894 8447.38 938.598 0.03 0.00529027 0.0044429 37 9 25 25 912 805 1.5 1.5 -16.5805 -1.5 0 0 11073.1 1230.34 0.00 0.00 0.00164167 0.00150711 - k6_frac_N10_frac_chain_mem32K_40nm.xml xtea.v common 8.48 vpr 68.90 MiB -1 -1 0.82 31128 7 0.24 -1 -1 37632 -1 -1 46 195 0 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70556 195 65 1190 1062 1 756 306 11 11 121 io auto 30.9 MiB 2.99 3825 68.9 MiB 0.48 0.01 7.555 -646.89 -7.555 7.555 0.26 0.00132181 0.00112561 0.130792 0.11337 60 7137 35 4.73532e+06 2.47912e+06 414500. 3425.62 1.86 0.580515 0.510815 5804 18 3184 4936 165819 37135 8.5947 8.5947 -735.85 -8.5947 0 0 521585. 4310.62 0.16 0.14 0.0917023 0.0849369 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml aes_cipher.v common 79.73 parmys 444.32 MiB -1 -1 12.25 454980 6 6.91 -1 -1 69104 -1 -1 701 259 0 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 153872 259 129 8774 8897 1 4980 1089 33 33 1089 clb auto 105.7 MiB 16.00 60670 139.8 MiB 5.88 0.06 6.15375 -2122.54 -6.15375 6.15375 2.63 0.0133798 0.0112778 1.45882 1.26166 70 93877 36 6.0475e+07 3.77798e+07 5.09631e+06 4679.81 21.38 5.7259 4.92141 132535 1045154 -1 86938 16 27539 124976 4296056 717414 0 0 4296056 717414 124046 51450 0 0 153245 126487 0 0 216082 153279 0 0 132654 58067 0 0 1852656 160883 0 0 1817373 167248 0 0 124046 0 0 99189 329167 361120 2434179 1089 529 6.69474 6.69474 -2459.6 -6.69474 0 0 6.40987e+06 5886.01 1.66 1.77 0.67 -1 -1 1.66 0.995914 0.910995 +k6_frac_N10_frac_chain_mem32K_40nm.xml aes_inv_cipher.v common 91.47 parmys 451.97 MiB -1 -1 13.34 462816 7 8.43 -1 -1 70508 -1 -1 740 260 4 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 159756 260 129 8992 9112 1 5160 1133 34 34 1156 clb auto 109.0 MiB 17.12 60426 142.8 MiB 6.53 0.06 6.15147 -4022.29 -6.15147 6.15147 2.86 0.0149284 0.0126555 1.61007 1.38407 64 95448 28 6.50233e+07 4.20739e+07 5.04415e+06 4363.45 27.72 6.20098 5.28816 137124 1028496 -1 90717 17 30154 140319 8399033 1655530 0 0 8399033 1655530 139721 58819 0 0 226620 188347 0 0 311634 227437 0 0 150646 66601 0 0 3751392 550895 0 0 3819020 563431 0 0 139721 0 0 112412 412865 420106 2822255 653 422 6.98282 6.98282 -4830.13 -6.98282 0 0 6.29750e+06 5447.67 1.53 2.37 0.62 -1 -1 1.53 0.991107 0.902775 +k6_frac_N10_frac_chain_mem32K_40nm.xml 8051.v common 28.69 vpr 81.30 MiB -1 -1 5.60 65636 14 2.92 -1 -1 39084 -1 -1 199 83 1 1 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83256 83 78 3637 3395 1 1931 362 19 19 361 clb auto 44.5 MiB 4.06 20277 81.3 MiB 0.88 0.01 13.8613 -4942 -13.8613 13.8613 0.71 0.00341778 0.00293158 0.263193 0.224255 76 31957 35 1.72706e+07 1.16689e+07 1.69263e+06 4688.74 10.32 1.75661 1.50064 43723 341759 -1 29596 16 9199 31772 1557282 277516 0 0 1557282 277516 31021 14477 0 0 49776 41543 0 0 68250 49809 0 0 32555 16750 0 0 686486 77055 0 0 689194 77882 0 0 31021 0 0 22052 72194 71572 409413 810 120 15.3686 15.3686 -5617.77 -15.3686 0 0 2.11763e+06 5866.01 0.45 0.47 0.21 -1 -1 0.45 0.259133 0.239585 +k6_frac_N10_frac_chain_mem32K_40nm.xml ethmac.v common 13.61 parmys 97.35 MiB -1 -1 5.76 99688 6 1.50 -1 -1 39400 -1 -1 31 53 4 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59600 53 4 637 623 3 258 92 14 14 196 memory auto 20.1 MiB 0.64 1794 58.2 MiB 0.04 0.00 3.34973 -860.672 -3.34973 1.40091 0.34 0.000447869 0.00034516 0.0189286 0.0156387 30 3736 17 9.20055e+06 3.86271e+06 391340. 1996.63 1.25 0.160546 0.133236 17752 76543 -1 3074 14 887 2059 334471 92147 0 0 334471 92147 2059 1475 0 0 15103 14509 0 0 15673 15135 0 0 2403 1865 0 0 154153 30227 0 0 145080 28936 0 0 2059 0 0 1178 2142 2397 14168 0 0 3.79705 1.46068 -1044.96 -3.79705 0 0 488146. 2490.54 0.11 0.08 0.04 -1 -1 0.11 0.033333 0.0305635 +k6_frac_N10_frac_chain_mem32K_40nm.xml mips_16.v common 0.84 vpr 52.98 MiB -1 -1 0.26 17344 1 0.03 -1 -1 29812 -1 -1 1 2 0 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54256 2 8 36 37 1 11 11 3 3 9 -1 auto 14.5 MiB 0.01 18 53.0 MiB 0.00 0.00 1.5 -14.4221 -1.5 1.5 0.00 1.7256e-05 1.2399e-05 0.000439074 0.000407032 34 29 2 53894 53894 7883.24 875.916 0.03 0.00469763 0.00384063 455 1071 -1 35 2 10 10 238 197 0 0 238 197 10 10 0 0 41 40 0 0 41 41 0 0 10 10 0 0 71 49 0 0 65 47 0 0 10 0 0 0 0 0 10 0 0 1.5 1.5 -16.4273 -1.5 0 0 9518.48 1057.61 0.00 0.00 0.00 -1 -1 0.00 0.00104656 0.001003 +k6_frac_N10_frac_chain_mem32K_40nm.xml xtea.v common 5.67 vpr 61.29 MiB -1 -1 0.50 27828 7 0.19 -1 -1 33428 -1 -1 46 195 0 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62756 195 65 1190 1062 1 756 306 11 11 121 io auto 23.3 MiB 2.22 3746 61.3 MiB 0.31 0.00 7.59067 -645.232 -7.59067 7.59067 0.18 0.000693433 0.000594957 0.0672378 0.0584756 60 6588 40 4.73532e+06 2.47912e+06 414500. 3425.62 0.88 0.299898 0.264436 12787 80576 -1 5575 16 3199 5021 158291 36526 0 0 158291 36526 5021 3688 0 0 6818 5525 0 0 11425 6822 0 0 5151 3934 0 0 65177 8485 0 0 64699 8072 0 0 5021 0 0 1842 3606 3402 27567 0 0 8.67017 8.67017 -743.823 -8.67017 0 0 521585. 4310.62 0.10 0.08 0.05 -1 -1 0.10 0.0555806 0.0522186 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_parmys/vtr_benchmarks/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_parmys/vtr_benchmarks/config/golden_results.txt index 4cd21e4002d..81611f470d5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_parmys/vtr_benchmarks/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_parmys/vtr_benchmarks/config/golden_results.txt @@ -1,22 +1,22 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 391.33 vpr 238.61 MiB -1 -1 23.61 123568 20 64.69 -1 -1 71672 -1 -1 847 133 25 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 244332 133 179 14247 14104 1 7175 1184 36 36 1296 clb memory auto 149.2 MiB 34.28 121035 180.7 MiB 15.11 0.14 20.4852 -194013 -20.4852 20.4852 5.25 0.0377496 0.0330413 4.09711 3.41398 114 183293 48 7.21828e+07 5.93492e+07 9.23903e+06 7128.88 212.66 19.1388 16.0017 166531 14 30700 118209 33366716 7414475 23.4663 23.4663 -218364 -23.4663 0 0 1.16798e+07 9012.23 5.22 11.61 2.03619 1.81243 - k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 528.95 vpr 652.16 MiB -1 -1 43.44 621980 14 87.61 -1 -1 123032 -1 -1 2706 257 0 11 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 667816 257 32 35747 33389 1 19410 3006 63 63 3969 clb auto 367.4 MiB 74.88 253145 652.2 MiB 92.40 0.74 17.914 -23716.3 -17.914 17.914 53.76 0.103183 0.0838671 11.9395 9.82889 76 391211 29 2.36641e+08 1.50195e+08 2.05973e+07 5189.55 108.39 28.7273 23.9774 372269 19 96412 445708 25808244 4026029 20.2018 20.2018 -26336.3 -20.2018 0 0 2.57532e+07 6488.59 7.75 8.63 3.70892 3.30918 - k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 72.27 yosys 260.59 MiB -1 -1 11.03 266844 5 4.76 -1 -1 57484 -1 -1 494 36 0 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 139600 36 100 10175 7629 1 2793 630 28 28 784 clb auto 102.8 MiB 16.65 40935 136.3 MiB 4.16 0.04 13.7277 -2250.77 -13.7277 13.7277 2.75 0.0141846 0.0124364 1.52648 1.33405 70 69492 37 4.25198e+07 2.66236e+07 3.59791e+06 4589.17 21.01 4.74799 4.06299 60652 14 12555 64480 2572920 371127 15.397 15.397 -2596.71 -15.397 0 0 4.52633e+06 5773.37 1.17 0.94 0.553803 0.501759 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 19.50 vpr 68.77 MiB -1 -1 12.60 47888 3 0.68 -1 -1 38536 -1 -1 44 196 1 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70424 196 193 1202 1347 1 614 434 15 15 225 io auto 31.0 MiB 0.67 3011 68.8 MiB 0.51 0.01 2.01184 -980.486 -2.01184 2.01184 0.59 0.00182222 0.0015936 0.179244 0.157654 40 6048 22 1.03862e+07 2.91934e+06 568276. 2525.67 1.83 0.662727 0.596126 5465 12 1709 2607 217962 55517 2.51002 2.51002 -1171.5 -2.51002 0 0 712852. 3168.23 0.23 0.13 0.0846435 0.0798015 - k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.94 vpr 63.76 MiB -1 -1 0.26 21652 3 0.07 -1 -1 36416 -1 -1 68 99 1 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65288 99 130 343 473 1 217 298 12 12 144 clb auto 25.8 MiB 0.21 547 63.8 MiB 0.16 0.00 1.48813 -111.528 -1.48813 1.48813 0.32 0.00045619 0.000399565 0.0388737 0.0341908 44 1353 8 5.66058e+06 4.21279e+06 360780. 2505.42 0.68 0.147128 0.132542 1113 11 372 617 24819 7606 1.88756 1.88756 -135.205 -1.88756 0 0 470760. 3269.17 0.14 0.03 0.0205006 0.019269 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 8.10 vpr 67.07 MiB -1 -1 0.33 25336 5 0.16 -1 -1 37408 -1 -1 31 162 0 5 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68680 162 96 1067 884 1 657 294 16 16 256 mult_36 auto 29.4 MiB 0.37 4745 67.1 MiB 0.48 0.01 15.3124 -1132.64 -15.3124 15.3124 0.67 0.00157176 0.00139924 0.167895 0.150215 54 9978 39 1.21132e+07 3.65071e+06 835786. 3264.79 3.60 0.658145 0.599697 8578 18 2822 4431 1431948 365587 17.3056 17.3056 -1316.47 -17.3056 0 0 1.08607e+06 4242.47 0.33 0.36 0.0907615 0.0850593 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 15.02 vpr 65.43 MiB -1 -1 0.25 24036 5 0.12 -1 -1 36476 -1 -1 21 66 0 5 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 66 96 779 596 1 464 188 16 16 256 mult_36 auto 27.5 MiB 0.48 3773 65.4 MiB 0.29 0.00 11.7229 -729.673 -11.7229 11.7229 0.67 0.00109555 0.000980781 0.109535 0.0986273 48 8213 25 1.21132e+07 3.11177e+06 756778. 2956.16 10.72 0.678574 0.623282 7296 20 3403 7056 2501559 614761 12.9259 12.9259 -836.532 -12.9259 0 0 968026. 3781.35 0.31 0.56 0.0775653 0.0730537 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 97.18 vpr 309.04 MiB -1 -1 12.36 122160 5 3.70 -1 -1 47472 -1 -1 464 506 44 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 316460 506 553 3236 3734 1 2873 1567 50 50 2500 memory auto 56.1 MiB 4.38 15505 309.0 MiB 4.35 0.06 6.30539 -1950.52 -6.30539 6.30539 30.20 0.0154018 0.0138484 1.96789 1.76532 38 23631 16 1.47946e+08 4.91194e+07 6.86579e+06 2746.32 20.07 5.96646 5.48394 22632 16 4412 5516 3741903 989279 6.78035 6.78035 -2414.63 -6.78035 0 0 8.69102e+06 3476.41 4.32 1.54 0.724941 0.681435 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 18.79 vpr 69.52 MiB -1 -1 1.04 28708 2 0.11 -1 -1 37568 -1 -1 30 311 15 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71188 311 156 1015 1158 1 965 512 28 28 784 memory auto 31.7 MiB 0.71 8739 69.5 MiB 0.85 0.01 3.86989 -4116.57 -3.86989 3.86989 2.71 0.00390228 0.00341486 0.385055 0.335219 40 15096 23 4.25198e+07 9.83682e+06 2.13295e+06 2720.61 7.28 1.41418 1.26253 14060 13 2941 3270 2497247 716267 4.39872 4.39872 -4975.37 -4.39872 -0.00135869 -0.00135869 2.67004e+06 3405.67 1.08 0.74 0.163132 0.151153 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 31.70 vpr 81.72 MiB -1 -1 5.64 55484 5 2.05 -1 -1 42364 -1 -1 175 193 5 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83684 193 205 2771 2705 1 1368 578 20 20 400 memory auto 44.7 MiB 3.02 11136 81.7 MiB 1.67 0.02 5.22387 -2551.61 -5.22387 5.22387 1.26 0.0048368 0.00430375 0.571031 0.498925 56 19687 28 2.07112e+07 1.21714e+07 1.41661e+06 3541.53 12.81 2.50719 2.20483 17169 15 4647 11340 1242757 284331 6.06705 6.06705 -3063.93 -6.06705 0 0 1.80858e+06 4521.44 0.64 0.57 0.28349 0.26116 - k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 65.09 vpr 116.71 MiB -1 -1 5.00 65196 8 3.93 -1 -1 44628 -1 -1 247 385 2 1 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 119512 385 362 4417 4306 1 2360 997 26 26 676 io auto 58.7 MiB 6.30 29658 95.5 MiB 4.22 0.05 8.1341 -8918.18 -8.1341 8.1341 2.38 0.0102477 0.00888416 1.09583 0.966724 94 45846 20 3.69863e+07 1.48038e+07 3.99964e+06 5916.62 32.94 5.44912 4.83939 42860 16 10046 32710 3801291 733203 8.90022 8.90022 -10230.8 -8.90022 0 0 5.03706e+06 7451.27 1.84 1.35 0.53288 0.494485 - k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 24.14 vpr 82.33 MiB -1 -1 3.44 45336 3 0.77 -1 -1 40360 -1 -1 120 236 1 6 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84304 236 305 3195 3007 1 1534 668 19 19 361 io auto 45.5 MiB 2.24 12151 82.3 MiB 1.92 0.02 4.27652 -2642.42 -4.27652 4.27652 1.12 0.00517566 0.00456717 0.646869 0.57596 62 23629 24 1.72706e+07 9.39128e+06 1.42198e+06 3939.00 9.40 1.94364 1.73903 20659 16 6434 17007 3134575 708021 4.9842 4.9842 -3082.5 -4.9842 0 0 1.76637e+06 4892.99 0.65 0.94 0.302256 0.280118 - k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 16.54 vpr 79.74 MiB -1 -1 2.28 47236 4 1.73 -1 -1 41716 -1 -1 132 38 0 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81652 38 36 2744 2493 1 1037 206 16 16 256 clb auto 42.9 MiB 1.93 8753 79.7 MiB 0.70 0.01 9.36767 -2501.88 -9.36767 9.36767 0.72 0.00362609 0.00300835 0.275692 0.233697 62 13665 39 1.21132e+07 7.11401e+06 968026. 3781.35 5.18 1.53768 1.3115 12472 21 4184 9814 370969 64997 10.7551 10.7551 -3015.2 -10.7551 0 0 1.20332e+06 4700.46 0.42 0.39 0.286746 0.256116 - k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 15.05 vpr 70.45 MiB -1 -1 2.71 35044 16 0.58 -1 -1 38648 -1 -1 61 45 3 1 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72136 45 32 1188 1147 1 781 142 14 14 196 memory auto 32.8 MiB 1.93 6800 70.4 MiB 0.41 0.01 9.89355 -6235.34 -9.89355 9.89355 0.52 0.00235957 0.00187416 0.169872 0.141964 62 12793 31 9.20055e+06 5.32753e+06 735792. 3754.04 5.91 0.742137 0.637957 11210 16 3522 9234 1502472 381892 11.2832 11.2832 -7312.97 -11.2832 0 0 913676. 4661.61 0.30 0.51 0.153408 0.140186 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 79.60 vpr 225.71 MiB -1 -1 9.34 102480 5 8.39 -1 -1 69336 -1 -1 710 169 0 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 231124 169 197 23321 21461 1 6583 1076 33 33 1089 clb auto 173.5 MiB 10.79 40334 207.2 MiB 7.87 0.07 3.01283 -13314.4 -3.01283 3.01283 4.13 0.0264776 0.0227703 3.15518 2.64475 56 60875 27 6.0475e+07 3.82649e+07 4.09277e+06 3758.28 19.07 11.085 9.41515 56236 16 17062 27686 1028519 200024 3.71817 3.71817 -15844.9 -3.71817 0 0 5.21984e+06 4793.24 2.02 1.92 1.85117 1.68555 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 178.86 vpr 241.57 MiB -1 -1 8.35 124476 3 12.77 -1 -1 77388 -1 -1 680 115 0 40 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 247372 115 145 22868 19305 1 9678 980 40 40 1600 mult_36 auto 168.8 MiB 9.45 80732 202.4 MiB 9.16 0.10 4.99402 -21942.4 -4.99402 4.99402 6.18 0.0239433 0.019528 2.9241 2.41435 80 135696 48 9.16046e+07 5.24886e+07 8.41679e+06 5260.49 103.17 13.8407 11.7266 117593 17 34055 51734 19971192 4179690 5.30958 5.30958 -25329.8 -5.30958 0 0 1.06125e+07 6632.80 4.07 6.18 1.73317 1.57904 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 401.81 vpr 909.66 MiB -1 -1 11.78 197920 3 6.49 -1 -1 155540 -1 -1 1498 149 0 179 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 931496 149 182 55416 37075 1 28615 2008 80 80 6400 mult_36 auto 353.2 MiB 20.94 303233 909.7 MiB 47.91 0.37 14.3381 -49440 -14.3381 14.3381 84.89 0.0717821 0.0578119 9.50427 7.84131 100 405910 21 3.90281e+08 1.51617e+08 4.24662e+07 6635.34 147.08 24.2457 20.3899 389407 18 93954 111521 43422718 8861201 15.2309 15.2309 -56666 -15.2309 0 0 5.35781e+07 8371.59 20.80 9.99 2.48836 2.23469 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.15 vpr 63.23 MiB -1 -1 0.60 25680 4 0.16 -1 -1 36292 -1 -1 15 11 0 0 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64744 11 2 303 283 2 80 28 7 7 49 clb auto 24.9 MiB 0.19 267 63.2 MiB 0.02 0.00 1.86151 -149.067 -1.86151 1.77041 0.07 0.000236379 0.000178863 0.0102782 0.00868639 20 457 19 1.07788e+06 808410 52439.0 1070.18 0.08 0.0342395 0.0302305 388 18 286 492 8676 3081 2.28191 2.05156 -171.957 -2.28191 0 0 68696.0 1401.96 0.02 0.03 0.0224724 0.0202938 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 617.97 vpr 615.04 MiB -1 -1 55.54 455700 98 88.29 -1 -1 115608 -1 -1 2126 114 45 8 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 629796 114 102 35713 31804 1 16877 2395 56 56 3136 clb auto 342.6 MiB 63.63 225997 547.5 MiB 68.34 0.56 65.4237 -55589.5 -65.4237 65.4237 41.30 0.0898095 0.0706336 10.8204 8.77581 98 330954 34 1.8697e+08 1.42409e+08 2.01848e+07 6436.49 236.06 40.1544 32.9591 308907 21 64100 255615 40561760 9275477 74.7845 74.7845 -69505.8 -74.7845 0 0 2.55970e+07 8162.30 8.94 11.77 3.44705 3.03006 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 3889.61 vpr 1.87 GiB -1 -1 173.47 1477392 97 700.79 -1 -1 358556 -1 -1 7412 114 168 32 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1965164 114 102 120062 107871 1 57253 7828 102 102 10404 clb auto 1111.3 MiB 137.08 1023549 1816.3 MiB 246.40 1.71 65.7766 -340242 -65.7766 65.7766 89.63 0.172284 0.148749 24.3054 19.9998 126 1368822 42 6.36957e+08 5.04159e+08 8.56237e+07 8229.88 2304.03 92.6284 77.4782 1308612 21 210475 908838 230850748 55725819 73.7456 73.7456 -469106 -73.7456 0 0 1.08252e+08 10404.8 44.59 69.62 13.5111 11.9172 - k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 4024.09 vpr 1.95 GiB -1 -1 226.76 1239004 25 2675.16 -1 -1 373160 -1 -1 6438 36 159 27 success 938cd3a release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-08T22:57:19 gh-actions-runner-vtr-auto-spawned55 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2045132 36 356 184794 159441 1 63873 7016 95 95 9025 clb auto 1301.0 MiB 102.81 766930 1784.2 MiB 388.02 2.49 43.0057 -282861 -43.0057 43.0057 79.58 0.158924 0.135062 26.2104 21.2126 144 1000444 25 5.4965e+08 4.44764e+08 8.37564e+07 9280.49 371.72 89.0835 73.277 969342 20 218844 498971 94607210 21197683 46.9319 46.9319 -346688 -46.9319 0 0 1.06297e+08 11778.1 34.94 32.42 11.5563 10.142 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 303.43 vpr 270.95 MiB -1 -1 16.29 121484 20 39.33 -1 -1 66844 -1 -1 847 133 25 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 277452 133 179 14247 14104 1 7175 1184 36 36 1296 clb memory auto 141.5 MiB 25.83 124164 173.1 MiB 9.15 0.08 20.1971 -196187 -20.1971 20.1971 3.45 0.0211573 0.0182062 2.54004 2.10815 116 187778 49 7.21828e+07 5.93492e+07 9.38276e+06 7239.79 178.06 18.6961 15.564 194868 1992610 -1 167737 15 31085 121145 37714750 8673095 0 0 37714750 8673095 107887 41875 0 0 569808 536307 0 0 656693 578754 0 0 111873 46731 0 0 18163012 3686808 0 0 18105477 3782620 0 0 107887 0 0 79519 705051 709713 3730693 15151 3369 22.9198 22.9198 -216591 -22.9198 0 0 1.18192e+07 9119.77 4.56 9.77 2.49 -1 -1 4.56 1.69371 1.5228 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 463.35 vpr 649.32 MiB -1 -1 32.28 623864 14 66.82 -1 -1 121408 -1 -1 2706 257 0 11 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 664904 257 32 35747 33389 1 19410 3006 63 63 3969 clb auto 361.5 MiB 76.76 245040 649.3 MiB 72.19 0.42 17.8964 -23643.6 -17.8964 17.8964 38.57 0.0743246 0.0592819 10.3634 8.3391 74 387775 30 2.36641e+08 1.50195e+08 2.02178e+07 5093.92 114.51 33.0289 27.2174 502298 4195434 -1 374011 20 94787 429147 30264915 5033607 0 0 30264915 5033607 429147 157165 0 0 673776 546114 0 0 986423 677468 0 0 452049 179998 0 0 13780740 1723793 0 0 13942780 1749069 0 0 429147 0 0 347343 2299357 2206577 15348486 0 0 20.1551 20.1551 -26250.3 -20.1551 0 0 2.53694e+07 6391.88 8.09 11.30 2.85 -1 -1 8.09 4.76229 4.1903 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 61.83 parmys 253.89 MiB -1 -1 8.05 259980 5 3.70 -1 -1 53948 -1 -1 494 36 0 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 131448 36 100 10175 7629 1 2793 630 28 28 784 clb auto 94.9 MiB 14.23 40406 128.4 MiB 2.83 0.03 13.8907 -2243.5 -13.8907 13.8907 1.93 0.0107285 0.00949865 1.04582 0.914909 70 69977 43 4.25198e+07 2.66236e+07 3.59791e+06 4589.17 20.67 4.29929 3.71573 94322 733910 -1 60173 14 12132 62793 2496462 359922 0 0 2496462 359922 62793 16429 0 0 77899 63275 0 0 112669 77914 0 0 65145 19905 0 0 1072930 86421 0 0 1105026 95978 0 0 62793 0 0 52662 281277 312206 1652688 0 0 15.7475 15.7475 -2567.9 -15.7475 0 0 4.52633e+06 5773.37 1.24 1.12 0.48 -1 -1 1.24 0.702145 0.639391 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 15.40 vpr 61.35 MiB -1 -1 8.22 44600 3 0.75 -1 -1 37160 -1 -1 44 196 1 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62820 196 193 1202 1347 1 614 434 15 15 225 io auto 23.4 MiB 0.82 2959 61.3 MiB 0.68 0.01 2.02269 -977.766 -2.02269 2.02269 0.69 0.00255497 0.00231037 0.223592 0.201957 38 6350 23 1.03862e+07 2.91934e+06 544116. 2418.30 1.91 0.711283 0.650508 21558 109668 -1 5544 15 1869 2868 259845 65220 0 0 259845 65220 2868 2116 0 0 10275 9550 0 0 11163 10288 0 0 2963 2282 0 0 118344 20346 0 0 114232 20638 0 0 2868 0 0 1006 2362 3248 20396 0 0 2.47022 2.47022 -1208.67 -2.47022 0 0 690508. 3068.92 0.16 0.11 0.06 -1 -1 0.16 0.073293 0.0696721 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.29 vpr 56.37 MiB -1 -1 0.32 18660 3 0.08 -1 -1 32728 -1 -1 68 99 1 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 57724 99 130 343 473 1 217 298 12 12 144 clb auto 18.0 MiB 0.24 494 56.4 MiB 0.13 0.00 1.48813 -107.16 -1.48813 1.48813 0.22 0.000320411 0.000288053 0.026672 0.0240292 46 1057 9 5.66058e+06 4.21279e+06 378966. 2631.71 1.17 0.108571 0.0998422 13518 73784 -1 1006 11 447 729 31364 10104 0 0 31364 10104 729 514 0 0 1918 1723 0 0 2674 1919 0 0 768 583 0 0 12561 3136 0 0 12714 2229 0 0 729 0 0 282 413 454 3102 0 0 1.91436 1.91436 -129.917 -1.91436 0 0 486261. 3376.82 0.14 0.04 0.07 -1 -1 0.14 0.0236973 0.0224613 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 9.07 vpr 59.45 MiB -1 -1 0.23 22220 5 0.16 -1 -1 33756 -1 -1 31 162 0 5 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60872 162 96 1067 884 1 657 294 16 16 256 mult_36 auto 21.6 MiB 0.30 4819 59.4 MiB 0.32 0.00 15.2767 -1149.24 -15.2767 15.2767 0.48 0.000870475 0.000772105 0.0943914 0.0846463 56 10602 26 1.21132e+07 3.65071e+06 870502. 3400.40 5.63 0.566431 0.52029 27064 172478 -1 8985 22 3262 5277 1807822 527093 0 0 1807822 527093 5277 3918 0 0 79260 78063 0 0 84646 79630 0 0 5451 4198 0 0 823992 184597 0 0 809196 176687 0 0 5277 0 0 2040 5552 5598 30559 0 0 17.583 17.583 -1360.67 -17.583 0 0 1.11200e+06 4343.75 0.23 0.32 0.10 -1 -1 0.23 0.0716202 0.0675122 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 6.94 vpr 57.88 MiB -1 -1 0.15 21520 5 0.08 -1 -1 33296 -1 -1 21 66 0 5 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59264 66 96 779 596 1 464 188 16 16 256 mult_36 auto 19.8 MiB 0.35 3692 57.9 MiB 0.19 0.00 11.7553 -701.572 -11.7553 11.7553 0.47 0.000587222 0.000519756 0.0612421 0.0548134 46 8762 34 1.21132e+07 3.11177e+06 727244. 2840.79 3.52 0.26415 0.242754 25532 145267 -1 7364 21 3656 7591 2979023 720533 0 0 2979023 720533 7591 5578 0 0 104001 102820 0 0 116457 104645 0 0 8377 6075 0 0 1371364 245643 0 0 1371233 255772 0 0 7591 0 0 3935 9538 9804 46382 0 0 12.9946 12.9946 -850.058 -12.9946 0 0 934704. 3651.19 0.29 0.49 0.14 -1 -1 0.29 0.059237 0.0561242 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 67.02 vpr 303.64 MiB -1 -1 8.53 118628 5 2.85 -1 -1 44492 -1 -1 464 506 44 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 310924 506 553 3236 3734 1 2873 1567 50 50 2500 memory auto 48.7 MiB 3.31 16530 303.6 MiB 3.48 0.04 6.5587 -2064.11 -6.5587 6.5587 19.96 0.0105965 0.00971204 1.43432 1.30219 38 25029 15 1.47946e+08 4.91194e+07 6.86579e+06 2746.32 13.81 4.2998 4.00207 258216 1426232 -1 23911 15 4399 5668 4225366 1062649 0 0 4225366 1062649 5269 5153 0 0 111002 109604 0 0 114349 111577 0 0 5674 5481 0 0 1975821 414897 0 0 2013251 415937 0 0 5269 0 0 874 6487 5265 11010 404 695 7.25494 7.25494 -2526.1 -7.25494 0 0 8.69102e+06 3476.41 2.86 1.13 0.87 -1 -1 2.86 0.503744 0.479634 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 14.34 vpr 61.91 MiB -1 -1 0.86 25524 2 0.09 -1 -1 33896 -1 -1 30 311 15 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63400 311 156 1015 1158 1 965 512 28 28 784 memory auto 23.9 MiB 0.75 8008 61.9 MiB 0.62 0.01 4.15534 -4030.99 -4.15534 4.15534 1.90 0.00218073 0.00182892 0.230294 0.200508 40 14238 13 4.25198e+07 9.83682e+06 2.13295e+06 2720.61 5.40 0.99064 0.889184 78662 432578 -1 13454 12 2569 2903 2427201 674493 0 0 2427201 674493 2903 2721 0 0 75735 75093 0 0 76898 75891 0 0 2948 2767 0 0 1150799 260393 0 0 1117918 257628 0 0 2903 0 0 334 2262 2189 10120 0 0 4.79349 4.79349 -4833.88 -4.79349 0 0 2.67004e+06 3405.67 0.75 0.48 0.26 -1 -1 0.75 0.100887 0.0944148 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 19.05 vpr 73.61 MiB -1 -1 3.89 52556 5 1.52 -1 -1 38976 -1 -1 175 193 5 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75372 193 205 2771 2705 1 1368 578 20 20 400 memory auto 36.5 MiB 2.52 11113 73.6 MiB 1.20 0.01 5.23435 -2522.06 -5.23435 5.23435 0.91 0.00328696 0.00289025 0.388283 0.343647 52 19251 27 2.07112e+07 1.21714e+07 1.31074e+06 3276.84 5.36 1.42432 1.27271 42580 268535 -1 17534 16 4501 11186 1142355 250965 0 0 1142355 250965 10730 5635 0 0 36908 32335 0 0 42351 37079 0 0 11130 6159 0 0 533403 84066 0 0 507833 85691 0 0 10730 0 0 6525 37731 35807 255600 486 134 6.24907 6.24907 -3012.33 -6.24907 0 0 1.72518e+06 4312.96 0.42 0.38 0.16 -1 -1 0.42 0.202623 0.188434 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 64.77 vpr 87.78 MiB -1 -1 3.34 62128 8 2.99 -1 -1 40476 -1 -1 247 385 2 1 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89888 385 362 4417 4306 1 2360 997 26 26 676 io auto 51.0 MiB 4.82 29224 87.8 MiB 3.39 0.04 8.17486 -9071.2 -8.17486 8.17486 1.72 0.00713801 0.00645555 0.87431 0.789594 82 47667 29 3.69863e+07 1.48038e+07 3.52404e+06 5213.08 41.30 4.46922 4.02485 87012 729406 -1 42504 17 10781 35484 3114680 573628 0 0 3114680 573628 34015 15415 0 0 80833 72525 0 0 102773 80889 0 0 35348 17781 0 0 1429969 191079 0 0 1431742 195939 0 0 34015 0 0 23849 112095 122472 714197 1627 129 9.20571 9.20571 -10536.9 -9.20571 0 0 4.42570e+06 6546.89 1.21 0.97 0.49 -1 -1 1.21 0.441449 0.411055 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 17.94 vpr 74.44 MiB -1 -1 2.10 42160 3 0.55 -1 -1 37112 -1 -1 120 236 1 6 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76224 236 305 3195 3007 1 1534 668 19 19 361 io auto 37.4 MiB 1.73 12524 74.4 MiB 1.35 0.02 4.26501 -2620.32 -4.26501 4.26501 0.82 0.0037964 0.00342393 0.436528 0.396285 62 25356 38 1.72706e+07 9.39128e+06 1.42198e+06 3939.00 7.62 1.4757 1.34805 40483 281719 -1 21331 15 6439 17218 3015356 662889 0 0 3015356 662889 17218 10064 0 0 117256 113455 0 0 126169 117525 0 0 18350 11231 0 0 1362929 203769 0 0 1373434 206845 0 0 17218 0 0 10973 39970 40605 252604 0 0 4.89953 4.89953 -3070.82 -4.89953 0 0 1.76637e+06 4892.99 0.40 0.62 0.17 -1 -1 0.40 0.211993 0.1999 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 13.01 vpr 72.11 MiB -1 -1 1.39 44368 4 1.28 -1 -1 37536 -1 -1 132 38 0 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73840 38 36 2744 2493 1 1037 206 16 16 256 clb auto 35.2 MiB 1.47 8605 72.1 MiB 0.41 0.01 9.2557 -2488.28 -9.2557 9.2557 0.47 0.002134 0.00173046 0.149804 0.126799 68 12966 22 1.21132e+07 7.11401e+06 1.06067e+06 4143.25 5.15 1.32553 1.13373 29104 207894 -1 11906 18 3676 8527 310274 53674 0 0 310274 53674 8001 4095 0 0 11266 8730 0 0 15903 11268 0 0 8206 4423 0 0 133261 12230 0 0 133637 12928 0 0 8001 0 0 4504 24264 23366 173236 706 54 10.7738 10.7738 -3119.19 -10.7738 0 0 1.31810e+06 5148.84 0.27 0.21 0.13 -1 -1 0.27 0.163402 0.150047 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 17.07 vpr 63.01 MiB -1 -1 1.69 32024 16 0.70 -1 -1 34416 -1 -1 61 45 3 1 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64524 45 32 1188 1147 1 781 142 14 14 196 memory auto 25.4 MiB 2.19 6808 63.0 MiB 0.28 0.00 10.1355 -6255.71 -10.1355 10.1355 0.38 0.00100441 0.000815117 0.10172 0.0848126 70 12561 20 9.20055e+06 5.32753e+06 825316. 4210.80 9.49 0.938865 0.812605 22820 164109 -1 10522 15 3134 8238 1514666 399154 0 0 1514666 399154 8238 4248 0 0 57394 55554 0 0 61763 57783 0 0 8590 4801 0 0 690582 140249 0 0 688099 136519 0 0 8238 0 0 5231 16214 15870 121965 0 0 11.996 11.996 -7365.03 -11.996 0 0 1.03831e+06 5297.50 0.21 0.30 0.10 -1 -1 0.21 0.0932582 0.0870786 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 57.06 vpr 199.38 MiB -1 -1 6.23 99968 5 6.14 -1 -1 65580 -1 -1 710 169 0 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 204160 169 197 23321 21461 1 6583 1076 33 33 1089 clb auto 165.7 MiB 7.84 39645 199.4 MiB 5.09 0.04 3.03432 -13054.2 -3.03432 3.03432 2.85 0.0166308 0.0142896 1.9998 1.66766 56 60275 46 6.0475e+07 3.82649e+07 4.09277e+06 3758.28 14.72 8.35284 7.10333 121655 832457 -1 55783 15 17408 27608 1049889 205338 0 0 1049889 205338 25873 19162 0 0 38565 29377 0 0 51255 38619 0 0 26682 19811 0 0 455979 49462 0 0 451535 48907 0 0 25873 0 0 8642 36013 35846 211437 2019 582 3.65711 3.65711 -15037.3 -3.65711 0 0 5.21984e+06 4793.24 1.43 1.24 0.51 -1 -1 1.43 1.19369 1.0961 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 174.10 vpr 266.92 MiB -1 -1 6.72 121248 3 10.12 -1 -1 73488 -1 -1 680 115 0 40 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 273328 115 145 22868 19305 1 9678 980 40 40 1600 mult_36 auto 161.3 MiB 7.07 85076 194.5 MiB 6.47 0.06 5.23187 -21800.3 -5.23187 5.23187 4.47 0.0165654 0.0142271 2.11761 1.78576 90 130436 36 9.16046e+07 5.24886e+07 9.36380e+06 5852.37 98.80 13.1438 11.3323 215224 1946903 -1 120802 14 32112 48150 22836958 4680224 0 0 22836958 4680224 44012 35873 0 0 522974 509963 0 0 552816 523358 0 0 45237 36982 0 0 10840741 1756790 0 0 10831178 1817258 0 0 44012 0 0 12336 150809 159604 603617 4528 2843 5.44622 5.44622 -24682.3 -5.44622 0 0 1.17131e+07 7320.69 5.28 8.85 2.29 -1 -1 5.28 2.20349 1.98045 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 394.83 vpr 906.88 MiB -1 -1 8.46 194644 3 4.87 -1 -1 151364 -1 -1 1498 149 0 179 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 928644 149 182 55416 37075 1 28615 2008 80 80 6400 mult_36 auto 345.5 MiB 14.76 292875 906.9 MiB 46.20 0.45 12.0992 -47669.5 -12.0992 12.0992 57.19 0.0803529 0.0726679 9.785 8.20933 98 404455 48 3.90281e+08 1.51617e+08 4.18005e+07 6531.32 188.04 31.0071 26.4626 914680 8979364 -1 378671 19 98587 116683 43290116 8933623 0 0 43290116 8933623 114639 102365 0 0 929524 897162 0 0 1048474 932216 0 0 115659 103621 0 0 20555825 3399494 0 0 20525995 3498765 0 0 114639 0 0 16142 99389 93109 371683 2491 3873 13.696 13.696 -55109.8 -13.696 0 0 5.30091e+07 8282.68 19.74 11.92 6.73 -1 -1 19.74 3.2512 2.92548 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.29 vpr 55.61 MiB -1 -1 0.61 22380 4 0.10 -1 -1 32096 -1 -1 15 11 0 0 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 56944 11 2 303 283 2 80 28 7 7 49 clb auto 17.1 MiB 0.21 262 55.6 MiB 0.03 0.00 1.86328 -148.615 -1.86328 1.77125 0.08 0.000275641 0.000212993 0.013301 0.0111089 26 348 20 1.07788e+06 808410 68696.0 1401.96 0.28 0.0956326 0.0794684 3516 12294 -1 329 11 202 331 5307 1941 0 0 5307 1941 331 277 0 0 422 331 0 0 488 422 0 0 395 317 0 0 1902 351 0 0 1769 243 0 0 331 0 0 129 177 156 1255 0 0 1.98243 1.82748 -169.552 -1.98243 0 0 84249.8 1719.38 0.02 0.02 0.01 -1 -1 0.02 0.0134339 0.012619 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 452.59 vpr 538.93 MiB -1 -1 38.32 456584 98 67.72 -1 -1 111628 -1 -1 2126 114 45 8 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 551868 114 102 35713 31804 1 16877 2395 56 56 3136 clb auto 333.7 MiB 68.97 226044 538.9 MiB 70.23 0.33 66.0506 -53632.5 -66.0506 66.0506 31.49 0.0589959 0.0522863 11.4241 9.01062 92 333937 23 1.8697e+08 1.42409e+08 1.91065e+07 6092.62 117.29 28.9558 23.4762 432882 4054463 -1 311443 22 67612 263548 41935892 9023182 0 0 41935892 9023182 256817 87655 0 0 707349 642634 0 0 872283 713509 0 0 266664 99903 0 0 19695762 3697309 0 0 20137017 3782172 0 0 256817 0 0 196410 898527 918822 5869966 7236 4605 74.5393 74.5393 -68476.9 -74.5393 0 0 2.42931e+07 7746.54 7.45 13.23 2.89 -1 -1 7.45 4.50305 3.88337 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 3457.61 vpr 2.15 GiB -1 -1 120.91 1445764 97 742.05 -1 -1 373280 -1 -1 7412 114 168 32 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 2257212 114 102 120062 107871 1 57253 7828 102 102 10404 clb auto 1105.4 MiB 177.96 1026779 1810.4 MiB 373.70 2.23 64.7172 -343930 -64.7172 64.7172 103.67 0.240646 0.211497 35.9429 29.8066 130 1355319 31 6.36957e+08 5.04159e+08 8.78147e+07 8440.47 1681.93 170.75 140.816 1698928 19170513 -1 1302160 22 209614 907327 266458098 70918040 0 0 266458098 70918040 853906 261099 0 0 2667437 2437361 0 0 3288387 2685688 0 0 887127 315427 0 0 128062223 32010709 0 0 130699018 33207756 0 0 853906 0 0 669716 3993834 3991858 22182434 55386 187935 73.075 73.075 -473712 -73.075 0 0 1.11251e+08 10693.1 38.78 81.10 15.69 -1 -1 38.78 16.584 14.33 +k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 4516.22 vpr 1.90 GiB -1 -1 173.33 1249336 25 3151.28 -1 -1 367032 -1 -1 6438 36 159 27 success v8.0.0-7664-g40e3ed324 Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:06:12 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 1992604 36 356 184794 159441 1 63873 7016 95 95 9025 clb auto 1293.6 MiB 123.10 762501 1783.4 MiB 390.35 2.48 41.756 -304360 -41.756 41.756 81.19 0.205343 0.15977 31.2146 25.2328 144 996438 25 5.4965e+08 4.44764e+08 8.37564e+07 9280.49 388.78 107.42 88.6004 1563306 18507228 -1 966609 21 217326 489336 100416073 24494857 0 0 100416073 24494857 432458 250655 0 0 1495208 1342591 0 0 1862321 1502539 0 0 444012 270519 0 0 47923228 10450914 0 0 48258846 10677639 0 0 432458 0 0 218159 1103165 1032299 3763451 64799 185128 45.4448 45.4448 -364728 -45.4448 0 0 1.06297e+08 11778.1 35.75 40.29 15.99 -1 -1 35.75 14.0484 12.2868 From c4072bc0024f0f156f8baba3dd391188972a4b5c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 19:07:55 -0400 Subject: [PATCH 74/81] updated golden result for vtr_reg_nightly3 --- .../config/golden_results.txt | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt index 0b018232cf7..6dd667cb7b3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt @@ -1,22 +1,22 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 373.62 vpr 238.70 MiB -1 -1 24.22 124488 20 59.22 -1 -1 71696 -1 -1 847 133 25 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 244432 133 179 14247 14104 1 7175 1184 36 36 1296 clb memory auto 149.6 MiB 37.36 121035 181.0 MiB 12.97 0.11 20.4852 -194013 -20.4852 20.4852 5.02 0.0303477 0.0258593 3.54512 2.93559 114 183293 48 7.21828e+07 5.93492e+07 9.23903e+06 7128.88 200.13 17.2077 14.3869 166531 14 30700 118209 33366716 7414475 23.4663 23.4663 -218364 -23.4663 0 0 1.16798e+07 9012.23 5.10 10.73 1.97807 1.75804 - k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 566.01 vpr 652.41 MiB -1 -1 45.76 622152 14 88.68 -1 -1 123180 -1 -1 2706 257 0 11 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 668064 257 32 35747 33389 1 19410 3006 63 63 3969 clb auto 367.7 MiB 74.36 253145 652.4 MiB 83.17 0.70 17.914 -23716.3 -17.914 17.914 51.43 0.101753 0.0819482 11.2257 9.22564 76 391211 29 2.36641e+08 1.50195e+08 2.05973e+07 5189.55 139.93 34.4449 28.5974 372269 19 96412 445708 25808244 4026029 20.2018 20.2018 -26336.3 -20.2018 0 0 2.57532e+07 6488.59 11.39 13.31 5.98543 5.27138 - k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 80.75 yosys 260.84 MiB -1 -1 11.43 267100 5 4.99 -1 -1 57536 -1 -1 494 36 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 139192 36 100 10175 7629 1 2793 630 28 28 784 clb auto 102.4 MiB 17.56 40935 135.9 MiB 4.16 0.04 13.7277 -2250.77 -13.7277 13.7277 2.73 0.0143396 0.0124488 1.46631 1.27103 70 69492 37 4.25198e+07 2.66236e+07 3.59791e+06 4589.17 24.95 5.43038 4.6227 60652 14 12555 64480 2572920 371127 15.397 15.397 -2596.71 -15.397 0 0 4.52633e+06 5773.37 1.73 1.46 0.877145 0.790098 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 20.44 vpr 68.78 MiB -1 -1 13.36 47788 3 0.72 -1 -1 38580 -1 -1 44 196 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70432 196 193 1202 1347 1 614 434 15 15 225 io auto 31.0 MiB 0.68 3011 68.8 MiB 0.53 0.01 2.01184 -980.486 -2.01184 2.01184 0.61 0.0020764 0.00185809 0.201786 0.180187 40 6048 22 1.03862e+07 2.91934e+06 568276. 2525.67 1.95 0.749948 0.680231 5465 12 1709 2607 217962 55517 2.51002 2.51002 -1171.5 -2.51002 0 0 712852. 3168.23 0.24 0.14 0.0933428 0.0882684 - k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.97 vpr 63.83 MiB -1 -1 0.28 21544 3 0.08 -1 -1 36464 -1 -1 68 99 1 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65360 99 130 343 473 1 217 298 12 12 144 clb auto 25.9 MiB 0.21 547 63.8 MiB 0.16 0.00 1.48813 -111.528 -1.48813 1.48813 0.32 0.00043968 0.000383586 0.0398664 0.0351092 44 1353 8 5.66058e+06 4.21279e+06 360780. 2505.42 0.69 0.149281 0.134671 1113 11 372 617 24819 7606 1.88756 1.88756 -135.205 -1.88756 0 0 470760. 3269.17 0.14 0.03 0.0209202 0.0197558 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 8.39 vpr 67.00 MiB -1 -1 0.34 25228 5 0.15 -1 -1 37272 -1 -1 31 162 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68604 162 96 1067 884 1 657 294 16 16 256 mult_36 auto 29.4 MiB 0.38 4745 67.0 MiB 0.49 0.01 15.3124 -1132.64 -15.3124 15.3124 0.69 0.00165962 0.00148042 0.171483 0.153489 62 8916 19 1.21132e+07 3.65071e+06 968026. 3781.35 3.72 0.607685 0.553324 8158 18 2652 4249 1393020 344388 17.2518 17.2518 -1287.35 -17.2518 0 0 1.20332e+06 4700.46 0.38 0.35 0.0938498 0.0879584 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 9.34 vpr 65.41 MiB -1 -1 0.24 24180 5 0.11 -1 -1 36408 -1 -1 21 66 0 5 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66980 66 96 779 596 1 464 188 16 16 256 mult_36 auto 27.5 MiB 0.48 3773 65.4 MiB 0.29 0.00 11.7229 -729.673 -11.7229 11.7229 0.69 0.00110992 0.000999219 0.110874 0.100068 48 8213 25 1.21132e+07 3.11177e+06 756778. 2956.16 4.97 0.469593 0.43157 7296 20 3403 7056 2501559 614761 12.9259 12.9259 -836.532 -12.9259 0 0 968026. 3781.35 0.32 0.57 0.0794498 0.0746703 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 97.60 vpr 309.32 MiB -1 -1 12.39 121556 5 3.77 -1 -1 47560 -1 -1 464 506 44 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 316744 506 553 3236 3734 1 2873 1567 50 50 2500 memory auto 56.4 MiB 4.26 15505 309.3 MiB 4.24 0.05 6.30539 -1950.52 -6.30539 6.30539 30.73 0.0152906 0.0139183 1.97864 1.78841 38 23631 16 1.47946e+08 4.91194e+07 6.86579e+06 2746.32 20.14 6.04054 5.57154 22632 16 4412 5516 3741903 989279 6.78035 6.78035 -2414.63 -6.78035 0 0 8.69102e+06 3476.41 4.29 1.57 0.762918 0.72061 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 18.56 vpr 69.11 MiB -1 -1 1.06 28572 2 0.10 -1 -1 37652 -1 -1 30 311 15 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70772 311 156 1015 1158 1 965 512 28 28 784 memory auto 31.3 MiB 0.69 8739 69.1 MiB 0.82 0.01 3.86989 -4116.57 -3.86989 3.86989 2.70 0.00355564 0.00302068 0.3533 0.29996 40 15096 23 4.25198e+07 9.83682e+06 2.13295e+06 2720.61 7.15 1.29986 1.14401 14060 13 2941 3270 2497247 716267 4.39872 4.39872 -4975.37 -4.39872 -0.00135869 -0.00135869 2.67004e+06 3405.67 1.05 0.71 0.148537 0.136995 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 27.95 vpr 81.62 MiB -1 -1 5.64 55368 5 2.09 -1 -1 42476 -1 -1 175 193 5 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 83580 193 205 2771 2705 1 1368 578 20 20 400 memory auto 44.6 MiB 3.03 11136 81.6 MiB 1.53 0.02 5.22387 -2551.61 -5.22387 5.22387 1.20 0.0042815 0.00364597 0.500957 0.429946 56 19687 28 2.07112e+07 1.21714e+07 1.41661e+06 3541.53 9.23 1.80166 1.57522 17169 15 4647 11340 1242757 284331 6.06705 6.06705 -3063.93 -6.06705 0 0 1.80858e+06 4521.44 0.60 0.52 0.261358 0.241565 - k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 51.99 vpr 98.27 MiB -1 -1 4.81 65264 8 4.00 -1 -1 44600 -1 -1 247 385 2 1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 100628 385 362 4417 4306 1 2360 997 26 26 676 io auto 58.7 MiB 6.16 29658 95.5 MiB 4.64 0.06 8.1341 -8918.18 -8.1341 8.1341 2.44 0.0105442 0.00908797 1.24794 1.10497 94 45846 20 3.69863e+07 1.48038e+07 3.99964e+06 5916.62 19.67 5.25931 4.69434 42860 16 10046 32710 3801291 733203 8.90022 8.90022 -10230.8 -8.90022 0 0 5.03706e+06 7451.27 1.96 1.48 0.581233 0.538838 - k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 22.84 vpr 82.45 MiB -1 -1 3.39 45780 3 0.71 -1 -1 40372 -1 -1 120 236 1 6 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84432 236 305 3195 3007 1 1534 668 19 19 361 io auto 45.6 MiB 2.26 12151 82.5 MiB 1.75 0.02 4.27652 -2642.42 -4.27652 4.27652 1.07 0.00453674 0.00396311 0.561507 0.492761 62 23629 24 1.72706e+07 9.39128e+06 1.42198e+06 3939.00 8.51 1.69361 1.51136 20659 16 6434 17007 3134575 708021 4.9842 4.9842 -3082.5 -4.9842 0 0 1.76637e+06 4892.99 0.61 0.85 0.27506 0.255712 - k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 16.00 vpr 79.86 MiB -1 -1 2.23 47476 4 1.65 -1 -1 41608 -1 -1 132 38 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 81772 38 36 2744 2493 1 1037 206 16 16 256 clb auto 43.0 MiB 1.88 8753 79.9 MiB 0.67 0.01 9.36767 -2501.88 -9.36767 9.36767 0.69 0.00379448 0.00326757 0.276504 0.236638 62 13665 39 1.21132e+07 7.11401e+06 968026. 3781.35 5.05 1.554 1.33101 12472 21 4184 9814 370969 64997 10.7551 10.7551 -3015.2 -10.7551 0 0 1.20332e+06 4700.46 0.40 0.37 0.280394 0.250228 - k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 14.52 vpr 70.78 MiB -1 -1 2.58 35276 16 0.62 -1 -1 38692 -1 -1 61 45 3 1 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72480 45 32 1188 1147 1 781 142 14 14 196 memory auto 33.1 MiB 1.89 6800 70.8 MiB 0.39 0.01 9.89355 -6235.34 -9.89355 9.89355 0.50 0.00207798 0.00163008 0.156388 0.130175 62 12793 31 9.20055e+06 5.32753e+06 735792. 3754.04 5.59 0.688075 0.590872 11210 16 3522 9234 1502472 381892 11.2832 11.2832 -7312.97 -11.2832 0 0 913676. 4661.61 0.29 0.45 0.141456 0.130127 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 82.22 vpr 225.63 MiB -1 -1 9.47 102536 5 9.27 -1 -1 69376 -1 -1 710 169 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 231048 169 197 23321 21461 1 6583 1076 33 33 1089 clb auto 173.5 MiB 10.66 40334 207.2 MiB 8.20 0.07 3.01283 -13314.4 -3.01283 3.01283 4.25 0.0263649 0.0228595 3.43644 2.88402 56 60875 27 6.0475e+07 3.82649e+07 4.09277e+06 3758.28 20.60 12.5362 10.6425 56236 16 17062 27686 1028519 200024 3.71817 3.71817 -15844.9 -3.71817 0 0 5.21984e+06 4793.24 2.09 1.91 1.83067 1.64968 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 242.77 vpr 241.86 MiB -1 -1 8.56 124324 3 13.87 -1 -1 77432 -1 -1 680 115 0 40 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 247660 115 145 22868 19305 1 9678 980 40 40 1600 mult_36 auto 168.6 MiB 9.83 80732 202.2 MiB 9.88 0.11 4.99402 -21942.4 -4.99402 4.99402 6.57 0.0263253 0.0212635 3.21932 2.67958 80 135696 48 9.16046e+07 5.24886e+07 8.41679e+06 5260.49 163.28 14.041 11.9382 117593 17 34055 51734 19971192 4179690 5.30958 5.30958 -25329.8 -5.30958 0 0 1.06125e+07 6632.80 4.49 6.40 1.81487 1.65131 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 519.70 vpr 909.51 MiB -1 -1 11.67 197904 3 6.48 -1 -1 155524 -1 -1 1498 149 0 179 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 931336 149 182 55416 37075 1 28615 2008 80 80 6400 mult_36 auto 353.1 MiB 21.04 303233 909.5 MiB 55.14 0.38 14.3381 -49440 -14.3381 14.3381 91.42 0.0780958 0.0636389 10.7319 8.88866 100 405910 21 3.90281e+08 1.51617e+08 4.24662e+07 6635.34 225.98 37.1372 31.4116 389407 18 93954 111521 43422718 8861201 15.2309 15.2309 -56666 -15.2309 0 0 5.35781e+07 8371.59 31.35 15.93 4.20899 3.77239 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.05 vpr 63.30 MiB -1 -1 0.55 25892 4 0.13 -1 -1 36224 -1 -1 15 11 0 0 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64816 11 2 303 283 2 80 28 7 7 49 clb auto 25.0 MiB 0.18 267 63.3 MiB 0.02 0.00 1.86151 -149.067 -1.86151 1.77041 0.07 0.000237919 0.000177944 0.00974956 0.00817935 20 457 19 1.07788e+06 808410 52439.0 1070.18 0.08 0.0325699 0.0286664 388 18 286 492 8676 3081 2.28191 2.05156 -171.957 -2.28191 0 0 68696.0 1401.96 0.01 0.03 0.0215893 0.0194613 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 794.38 vpr 547.49 MiB -1 -1 54.99 455872 98 93.61 -1 -1 115560 -1 -1 2126 114 45 8 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 560628 114 102 35713 31804 1 16877 2395 56 56 3136 clb auto 342.7 MiB 64.17 225997 547.5 MiB 67.55 0.54 65.4237 -55589.5 -65.4237 65.4237 40.20 0.0893795 0.0707767 11.0345 8.95573 92 337273 42 1.8697e+08 1.42409e+08 1.91065e+07 6092.62 395.68 43.3828 35.6066 311732 21 67504 265528 41886691 9385136 74.7112 74.7112 -70415.2 -74.7112 0 0 2.42931e+07 7746.54 9.82 18.37 5.88441 5.09148 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 4031.92 vpr 1.87 GiB -1 -1 177.10 1477224 97 860.10 -1 -1 358460 -1 -1 7412 114 168 32 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1965148 114 102 120062 107871 1 57253 7828 102 102 10404 clb auto 1111.3 MiB 137.75 1023549 1816.3 MiB 292.89 1.94 65.7766 -340242 -65.7766 65.7766 98.03 0.180483 0.157267 26.1468 21.6871 126 1368822 42 6.36957e+08 5.04159e+08 8.56237e+07 8229.88 2241.10 92.7832 77.9705 1308612 21 210475 908838 230850748 55725819 73.7456 73.7456 -469106 -73.7456 0 0 1.08252e+08 10404.8 40.36 62.49 12.1706 10.7719 - k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 4357.16 vpr 1.95 GiB -1 -1 258.14 1238956 25 3029.34 -1 -1 373092 -1 -1 6438 36 159 27 success 574ed3d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2023-02-09T03:32:19 gh-actions-runner-vtr-auto-spawned7 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2044944 36 356 184794 159441 1 63873 7016 95 95 9025 clb auto 1300.9 MiB 103.50 766930 1784.1 MiB 366.11 2.27 43.0057 -282861 -43.0057 43.0057 79.09 0.149358 0.127371 24.5778 19.8616 144 1000444 25 5.4965e+08 4.44764e+08 8.37564e+07 9280.49 346.18 81.4226 67.0003 969342 20 218844 498971 94607210 21197683 46.9319 46.9319 -346688 -46.9319 0 0 1.06297e+08 11778.1 32.83 29.00 10.4257 9.19899 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 271.94 vpr 270.84 MiB -1 -1 17.18 120056 20 45.38 -1 -1 67268 -1 -1 847 133 25 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 277344 133 179 14247 14104 1 7175 1184 36 36 1296 clb memory auto 141.4 MiB 25.73 124164 172.9 MiB 9.57 0.08 20.1971 -196187 -20.1971 20.1971 3.50 0.0240131 0.0210551 2.6922 2.24056 116 187778 49 7.21828e+07 5.93492e+07 9.38276e+06 7239.79 142.83 14.7663 12.4092 194868 1992610 -1 167737 15 31085 121145 37714750 8673095 0 0 37714750 8673095 107887 41875 0 0 569808 536307 0 0 656693 578754 0 0 111873 46731 0 0 18163012 3686808 0 0 18105477 3782620 0 0 107887 0 0 79519 705051 709713 3730693 15151 3369 22.9198 22.9198 -216591 -22.9198 0 0 1.18192e+07 9119.77 3.49 9.68 1.53 -1 -1 3.49 1.62516 1.45755 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 465.51 vpr 649.39 MiB -1 -1 41.30 628904 14 73.99 -1 -1 121356 -1 -1 2706 257 0 11 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 664980 257 32 35747 33389 1 19410 3006 63 63 3969 clb auto 361.6 MiB 58.85 245040 649.4 MiB 64.10 0.51 17.8964 -23643.6 -17.8964 17.8964 38.03 0.0828344 0.0661803 9.25451 7.57777 74 387775 30 2.36641e+08 1.50195e+08 2.02178e+07 5093.92 127.19 34.7263 28.7586 502298 4195434 -1 374011 20 94787 429147 30264915 5033607 0 0 30264915 5033607 429147 157165 0 0 673776 546114 0 0 986423 677468 0 0 452049 179998 0 0 13780740 1723793 0 0 13942780 1749069 0 0 429147 0 0 347343 2299357 2206577 15348486 0 0 20.1551 20.1551 -26250.3 -20.1551 0 0 2.53694e+07 6391.88 8.25 11.50 2.86 -1 -1 8.25 4.86916 4.29281 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 74.66 parmys 262.11 MiB -1 -1 12.37 268400 5 5.78 -1 -1 53808 -1 -1 494 36 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 131544 36 100 10175 7629 1 2793 630 28 28 784 clb auto 95.1 MiB 14.35 40406 128.5 MiB 5.25 0.05 13.8907 -2243.5 -13.8907 13.8907 2.52 0.0201586 0.0173487 1.95347 1.60619 70 69977 43 4.25198e+07 2.66236e+07 3.59791e+06 4589.17 23.15 5.49832 4.64328 94322 733910 -1 60173 14 12132 62793 2496462 359922 0 0 2496462 359922 62793 16429 0 0 77899 63275 0 0 112669 77914 0 0 65145 19905 0 0 1072930 86421 0 0 1105026 95978 0 0 62793 0 0 52662 281277 312206 1652688 0 0 15.7475 15.7475 -2567.9 -15.7475 0 0 4.52633e+06 5773.37 1.25 1.15 0.48 -1 -1 1.25 0.720193 0.653623 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 20.39 vpr 61.37 MiB -1 -1 13.00 44512 3 0.75 -1 -1 37204 -1 -1 44 196 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 62844 196 193 1202 1347 1 614 434 15 15 225 io auto 23.4 MiB 0.87 2959 61.4 MiB 0.68 0.01 2.02269 -977.766 -2.02269 2.02269 0.70 0.00203545 0.00178854 0.198793 0.176456 38 6350 23 1.03862e+07 2.91934e+06 544116. 2418.30 1.88 0.685793 0.624312 21558 109668 -1 5544 15 1869 2868 259845 65220 0 0 259845 65220 2868 2116 0 0 10275 9550 0 0 11163 10288 0 0 2963 2282 0 0 118344 20346 0 0 114232 20638 0 0 2868 0 0 1006 2362 3248 20396 0 0 2.47022 2.47022 -1208.67 -2.47022 0 0 690508. 3068.92 0.16 0.12 0.06 -1 -1 0.16 0.079371 0.0755292 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 4.04 vpr 55.72 MiB -1 -1 0.21 18308 3 0.09 -1 -1 32752 -1 -1 68 99 1 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 57060 99 130 343 473 1 217 298 12 12 144 clb auto 17.3 MiB 0.26 494 55.7 MiB 0.22 0.00 1.48813 -107.16 -1.48813 1.48813 0.35 0.000522667 0.000465728 0.0435127 0.0388547 46 1057 9 5.66058e+06 4.21279e+06 378966. 2631.71 1.62 0.157674 0.143905 13518 73784 -1 1006 11 447 729 31364 10104 0 0 31364 10104 729 514 0 0 1918 1723 0 0 2674 1919 0 0 768 583 0 0 12561 3136 0 0 12714 2229 0 0 729 0 0 282 413 454 3102 0 0 1.91436 1.91436 -129.917 -1.91436 0 0 486261. 3376.82 0.13 0.04 0.08 -1 -1 0.13 0.0218852 0.0206937 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 12.99 vpr 58.73 MiB -1 -1 0.35 21724 5 0.19 -1 -1 33772 -1 -1 31 162 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 60144 162 96 1067 884 1 657 294 16 16 256 mult_36 auto 20.8 MiB 0.41 4819 58.7 MiB 0.41 0.00 15.2767 -1149.24 -15.2767 15.2767 0.76 0.000950133 0.000846456 0.13008 0.114548 56 10602 26 1.21132e+07 3.65071e+06 870502. 3400.40 8.36 0.805009 0.737239 27064 172478 -1 8985 22 3262 5277 1807822 527093 0 0 1807822 527093 5277 3918 0 0 79260 78063 0 0 84646 79630 0 0 5451 4198 0 0 823992 184597 0 0 809196 176687 0 0 5277 0 0 2040 5552 5598 30559 0 0 17.583 17.583 -1360.67 -17.583 0 0 1.11200e+06 4343.75 0.24 0.41 0.11 -1 -1 0.24 0.103465 0.0972023 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 10.82 vpr 57.27 MiB -1 -1 0.27 20616 5 0.12 -1 -1 32844 -1 -1 21 66 0 5 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 58648 66 96 779 596 1 464 188 16 16 256 mult_36 auto 19.0 MiB 0.56 3692 57.3 MiB 0.32 0.00 11.7553 -701.572 -11.7553 11.7553 0.73 0.00101543 0.00091389 0.111126 0.100324 46 8762 34 1.21132e+07 3.11177e+06 727244. 2840.79 5.90 0.512953 0.473761 25532 145267 -1 7364 21 3656 7591 2979023 720533 0 0 2979023 720533 7591 5578 0 0 104001 102820 0 0 116457 104645 0 0 8377 6075 0 0 1371364 245643 0 0 1371233 255772 0 0 7591 0 0 3935 9538 9804 46382 0 0 12.9946 12.9946 -850.058 -12.9946 0 0 934704. 3651.19 0.33 0.78 0.15 -1 -1 0.33 0.100001 0.0946429 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 85.65 vpr 303.45 MiB -1 -1 13.23 119292 5 4.46 -1 -1 44500 -1 -1 464 506 44 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 310732 506 553 3236 3734 1 2873 1567 50 50 2500 memory auto 48.4 MiB 4.36 16530 303.4 MiB 3.61 0.04 6.5587 -2064.11 -6.5587 6.5587 24.56 0.0120263 0.0104882 1.48629 1.35433 38 25029 15 1.47946e+08 4.91194e+07 6.86579e+06 2746.32 14.53 4.48044 4.17582 258216 1426232 -1 23911 15 4399 5668 4225366 1062649 0 0 4225366 1062649 5269 5153 0 0 111002 109604 0 0 114349 111577 0 0 5674 5481 0 0 1975821 414897 0 0 2013251 415937 0 0 5269 0 0 874 6487 5265 11010 404 695 7.25494 7.25494 -2526.1 -7.25494 0 0 8.69102e+06 3476.41 2.85 1.13 0.88 -1 -1 2.85 0.498321 0.474019 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 19.63 vpr 61.64 MiB -1 -1 1.13 25544 2 0.12 -1 -1 33888 -1 -1 30 311 15 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 63116 311 156 1015 1158 1 965 512 28 28 784 memory auto 23.6 MiB 0.81 8008 61.6 MiB 0.69 0.01 4.15534 -4030.99 -4.15534 4.15534 2.59 0.00249685 0.00211966 0.260086 0.227438 40 14238 13 4.25198e+07 9.83682e+06 2.13295e+06 2720.61 7.10 1.36232 1.2264 78662 432578 -1 13454 12 2569 2903 2427201 674493 0 0 2427201 674493 2903 2721 0 0 75735 75093 0 0 76898 75891 0 0 2948 2767 0 0 1150799 260393 0 0 1117918 257628 0 0 2903 0 0 334 2262 2189 10120 0 0 4.79349 4.79349 -4833.88 -4.79349 0 0 2.67004e+06 3405.67 1.36 0.88 0.43 -1 -1 1.36 0.20591 0.192287 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 25.60 vpr 73.57 MiB -1 -1 3.85 52512 5 2.30 -1 -1 38964 -1 -1 175 193 5 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 75336 193 205 2771 2705 1 1368 578 20 20 400 memory auto 36.5 MiB 3.60 11113 73.6 MiB 1.86 0.03 5.23435 -2522.06 -5.23435 5.23435 1.37 0.00731071 0.00655975 0.616815 0.544169 52 19251 27 2.07112e+07 1.21714e+07 1.31074e+06 3276.84 7.21 2.02648 1.80541 42580 268535 -1 17534 16 4501 11186 1142355 250965 0 0 1142355 250965 10730 5635 0 0 36908 32335 0 0 42351 37079 0 0 11130 6159 0 0 533403 84066 0 0 507833 85691 0 0 10730 0 0 6525 37731 35807 255600 486 134 6.24907 6.24907 -3012.33 -6.24907 0 0 1.72518e+06 4312.96 0.59 0.60 0.24 -1 -1 0.59 0.330705 0.304769 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 72.57 vpr 87.74 MiB -1 -1 4.85 62672 8 4.24 -1 -1 40956 -1 -1 247 385 2 1 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 89848 385 362 4417 4306 1 2360 997 26 26 676 io auto 51.0 MiB 7.77 29224 87.7 MiB 3.41 0.04 8.17486 -9071.2 -8.17486 8.17486 1.98 0.00739801 0.00670768 0.890603 0.806601 82 47667 29 3.69863e+07 1.48038e+07 3.52404e+06 5213.08 42.11 4.54143 4.09443 87012 729406 -1 42504 17 10781 35484 3114680 573628 0 0 3114680 573628 34015 15415 0 0 80833 72525 0 0 102773 80889 0 0 35348 17781 0 0 1429969 191079 0 0 1431742 195939 0 0 34015 0 0 23849 112095 122472 714197 1627 129 9.20571 9.20571 -10536.9 -9.20571 0 0 4.42570e+06 6546.89 1.21 0.98 0.49 -1 -1 1.21 0.453258 0.422219 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 24.14 vpr 74.52 MiB -1 -1 3.53 42080 3 0.89 -1 -1 36932 -1 -1 120 236 1 6 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 76304 236 305 3195 3007 1 1534 668 19 19 361 io auto 37.5 MiB 2.97 12524 74.5 MiB 1.44 0.01 4.26501 -2620.32 -4.26501 4.26501 1.17 0.00366046 0.00331322 0.466618 0.422123 62 25356 38 1.72706e+07 9.39128e+06 1.42198e+06 3939.00 9.23 1.7699 1.60583 40483 281719 -1 21331 15 6439 17218 3015356 662889 0 0 3015356 662889 17218 10064 0 0 117256 113455 0 0 126169 117525 0 0 18350 11231 0 0 1362929 203769 0 0 1373434 206845 0 0 17218 0 0 10973 39970 40605 252604 0 0 4.89953 4.89953 -3070.82 -4.89953 0 0 1.76637e+06 4892.99 0.43 0.84 0.18 -1 -1 0.43 0.311985 0.290811 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 16.14 vpr 71.96 MiB -1 -1 1.54 43804 4 1.27 -1 -1 37516 -1 -1 132 38 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 73688 38 36 2744 2493 1 1037 206 16 16 256 clb auto 35.0 MiB 1.35 8605 72.0 MiB 0.42 0.01 9.2557 -2488.28 -9.2557 9.2557 0.47 0.00225215 0.00184432 0.159104 0.135297 68 12966 22 1.21132e+07 7.11401e+06 1.06067e+06 4143.25 7.24 2.14168 1.84631 29104 207894 -1 11906 18 3676 8527 310274 53674 0 0 310274 53674 8001 4095 0 0 11266 8730 0 0 15903 11268 0 0 8206 4423 0 0 133261 12230 0 0 133637 12928 0 0 8001 0 0 4504 24264 23366 173236 706 54 10.7738 10.7738 -3119.19 -10.7738 0 0 1.31810e+06 5148.84 0.51 0.48 0.23 -1 -1 0.51 0.388753 0.352265 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 20.82 vpr 62.99 MiB -1 -1 2.77 31828 16 0.59 -1 -1 34356 -1 -1 61 45 3 1 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 64504 45 32 1188 1147 1 781 142 14 14 196 memory auto 25.4 MiB 1.69 6808 63.0 MiB 0.39 0.01 10.1355 -6255.71 -10.1355 10.1355 0.37 0.00237752 0.00200923 0.160963 0.137312 70 12561 20 9.20055e+06 5.32753e+06 825316. 4210.80 12.28 1.21937 1.05785 22820 164109 -1 10522 15 3134 8238 1514666 399154 0 0 1514666 399154 8238 4248 0 0 57394 55554 0 0 61763 57783 0 0 8590 4801 0 0 690582 140249 0 0 688099 136519 0 0 8238 0 0 5231 16214 15870 121965 0 0 11.996 11.996 -7365.03 -11.996 0 0 1.03831e+06 5297.50 0.36 0.36 0.17 -1 -1 0.36 0.131603 0.123977 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 65.02 vpr 199.57 MiB -1 -1 7.81 99760 5 8.56 -1 -1 65700 -1 -1 710 169 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 204356 169 197 23321 21461 1 6583 1076 33 33 1089 clb auto 165.9 MiB 8.72 39645 199.6 MiB 5.31 0.05 3.03432 -13054.2 -3.03432 3.03432 2.94 0.0171193 0.0147087 2.10645 1.75843 56 60275 46 6.0475e+07 3.82649e+07 4.09277e+06 3758.28 15.17 8.70806 7.40144 121655 832457 -1 55783 15 17408 27608 1049889 205338 0 0 1049889 205338 25873 19162 0 0 38565 29377 0 0 51255 38619 0 0 26682 19811 0 0 455979 49462 0 0 451535 48907 0 0 25873 0 0 8642 36013 35846 211437 2019 582 3.65711 3.65711 -15037.3 -3.65711 0 0 5.21984e+06 4793.24 1.44 1.27 0.61 -1 -1 1.44 1.2149 1.1142 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 163.11 vpr 266.84 MiB -1 -1 7.93 120264 3 12.53 -1 -1 73424 -1 -1 680 115 0 40 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 273248 115 145 22868 19305 1 9678 980 40 40 1600 mult_36 auto 161.2 MiB 8.39 85076 194.4 MiB 6.68 0.06 5.23187 -21800.3 -5.23187 5.23187 4.56 0.0181707 0.0157245 2.21687 1.87261 90 130436 36 9.16046e+07 5.24886e+07 9.36380e+06 5852.37 98.51 12.0127 10.3389 215224 1946903 -1 120802 14 32112 48150 22836958 4680224 0 0 22836958 4680224 44012 35873 0 0 522974 509963 0 0 552816 523358 0 0 45237 36982 0 0 10840741 1756790 0 0 10831178 1817258 0 0 44012 0 0 12336 150809 159604 603617 4528 2843 5.44622 5.44622 -24682.3 -5.44622 0 0 1.17131e+07 7320.69 3.50 4.97 1.38 -1 -1 3.50 1.17407 1.08234 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 375.59 vpr 906.79 MiB -1 -1 12.54 194768 3 6.65 -1 -1 151256 -1 -1 1498 149 0 179 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 928552 149 182 55416 37075 1 28615 2008 80 80 6400 mult_36 auto 345.5 MiB 15.10 292875 906.8 MiB 35.98 0.25 12.0992 -47669.5 -12.0992 12.0992 61.32 0.0503792 0.0448 7.7955 6.53207 98 404455 48 3.90281e+08 1.51617e+08 4.18005e+07 6531.32 162.35 27.669 23.5997 914680 8979364 -1 378671 19 98587 116683 43290116 8933623 0 0 43290116 8933623 114639 102365 0 0 929524 897162 0 0 1048474 932216 0 0 115659 103621 0 0 20555825 3399494 0 0 20525995 3498765 0 0 114639 0 0 16142 99389 93109 371683 2491 3873 13.696 13.696 -55109.8 -13.696 0 0 5.30091e+07 8282.68 22.60 12.30 6.81 -1 -1 22.60 3.34293 2.99558 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.40 vpr 55.28 MiB -1 -1 0.58 22308 4 0.15 -1 -1 32364 -1 -1 15 11 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 56608 11 2 303 283 2 80 28 7 7 49 clb auto 16.8 MiB 0.20 262 55.3 MiB 0.03 0.00 1.86328 -148.615 -1.86328 1.77125 0.07 0.000251827 0.000194129 0.0130922 0.0109983 26 348 20 1.07788e+06 808410 68696.0 1401.96 0.33 0.111661 0.0935571 3516 12294 -1 329 11 202 331 5307 1941 0 0 5307 1941 331 277 0 0 422 331 0 0 488 422 0 0 395 317 0 0 1902 351 0 0 1769 243 0 0 331 0 0 129 177 156 1255 0 0 1.98243 1.82748 -169.552 -1.98243 0 0 84249.8 1719.38 0.02 0.02 0.01 -1 -1 0.02 0.0196318 0.0182701 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 527.67 vpr 539.02 MiB -1 -1 41.13 461200 98 73.01 -1 -1 111580 -1 -1 2126 114 45 8 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 551952 114 102 35713 31804 1 16877 2395 56 56 3136 clb auto 333.8 MiB 50.34 226044 539.0 MiB 45.88 0.36 66.0506 -53632.5 -66.0506 66.0506 27.82 0.0608441 0.0539855 8.21414 6.66666 92 333937 23 1.8697e+08 1.42409e+08 1.91065e+07 6092.62 232.29 30.4311 25.0565 432882 4054463 -1 311443 22 67612 263548 41935892 9023182 0 0 41935892 9023182 256817 87655 0 0 707349 642634 0 0 872283 713509 0 0 266664 99903 0 0 19695762 3697309 0 0 20137017 3782172 0 0 256817 0 0 196410 898527 918822 5869966 7236 4605 74.5393 74.5393 -68476.9 -74.5393 0 0 2.42931e+07 7746.54 7.61 13.64 2.90 -1 -1 7.61 4.6102 3.99085 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 3204.79 vpr 2.15 GiB -1 -1 130.43 1500244 97 749.48 -1 -1 373400 -1 -1 7412 114 168 32 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 2257028 114 102 120062 107871 1 57253 7828 102 102 10404 clb auto 1105.5 MiB 173.99 1026779 1810.4 MiB 326.11 2.03 64.7172 -343930 -64.7172 64.7172 98.49 0.228901 0.200446 33.0699 27.3994 130 1355319 31 6.36957e+08 5.04159e+08 8.78147e+07 8440.47 1480.69 155.286 128.017 1698928 19170513 -1 1302160 22 209614 907327 266458098 70918040 0 0 266458098 70918040 853906 261099 0 0 2667437 2437361 0 0 3288387 2685688 0 0 887127 315427 0 0 128062223 32010709 0 0 130699018 33207756 0 0 853906 0 0 669716 3993834 3991858 22182434 55386 187935 73.075 73.075 -473712 -73.075 0 0 1.11251e+08 10693.1 37.58 79.96 15.65 -1 -1 37.58 15.8262 13.5985 +k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 4294.60 vpr 1.90 GiB -1 -1 165.56 1247620 25 2874.78 -1 -1 369156 -1 -1 6438 36 159 27 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 1992520 36 356 184794 159441 1 63873 7016 95 95 9025 clb auto 1293.6 MiB 123.15 762501 1783.4 MiB 430.86 1.90 41.756 -304360 -41.756 41.756 74.64 0.190547 0.147701 32.7924 26.4471 144 996438 25 5.4965e+08 4.44764e+08 8.37564e+07 9280.49 423.81 112.174 92.6059 1563306 18507228 -1 966609 21 217326 489336 100416073 24494857 0 0 100416073 24494857 432458 250655 0 0 1495208 1342591 0 0 1862321 1502539 0 0 444012 270519 0 0 47923228 10450914 0 0 48258846 10677639 0 0 432458 0 0 218159 1103165 1032299 3763451 64799 185128 45.4448 45.4448 -364728 -45.4448 0 0 1.06297e+08 11778.1 37.02 40.58 16.17 -1 -1 37.02 14.0814 12.2876 From 1f8e3e641616d80a38253c1b0fea4c99e80f255b Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 19:13:23 -0400 Subject: [PATCH 75/81] update golden results for odin test1 and test2 --- vpr/src/place/noc_place_utils.cpp | 3 +- .../config/golden_results.txt | 780 +++++++++--------- .../vtr_bidir/config/golden_results.txt | 82 +- 3 files changed, 432 insertions(+), 433 deletions(-) diff --git a/vpr/src/place/noc_place_utils.cpp b/vpr/src/place/noc_place_utils.cpp index efcdf3a29b4..42440940356 100644 --- a/vpr/src/place/noc_place_utils.cpp +++ b/vpr/src/place/noc_place_utils.cpp @@ -515,12 +515,11 @@ e_create_move propose_router_swap(t_pl_blocks_to_be_moved& blocks_affected, floa ClusterBlockId b_from = *router_cluster_block_to_swap_ref; - auto& place_ctx = g_vpr_ctx.placement(); auto& cluster_ctx = g_vpr_ctx.clustering(); //check if the block is movable - if(place_ctx.block_locs[b_from].is_fixed){ + if (place_ctx.block_locs[b_from].is_fixed) { return e_create_move::ABORT; } diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt index 74a456bcc0d..436eece4174 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/FIR_filters_frac/config/golden_results.txt @@ -1,391 +1,391 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -k6_frac_2ripple_N8_22nm.xml fir_pipe_14.v common 11.27 vpr 70.45 MiB 0.08 10424 -1 -1 1 0.27 -1 -1 35084 -1 -1 65 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72136 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 33.0 MiB 0.87 5366 70.4 MiB 0.69 0.01 3.77076 -1035.59 -3.77076 3.77076 0.61 0.0031809 0.0027707 0.235447 0.206725 58 11364 32 6.59459e+06 2.52492e+06 871168. 3403.00 5.95 0.813354 0.718203 26872 219187 -1 9253 19 4459 5017 908425 202125 0 0 908425 202125 4792 4531 0 0 38601 35201 0 0 49456 42088 0 0 4829 4563 0 0 404690 57597 0 0 406057 58145 0 0 4792 0 0 352 2010 2688 17233 236 1 4.27196 4.27196 -1275.82 -4.27196 0 0 1.09288e+06 4269.05 0.26 0.26 0.16 -1 -1 0.26 0.0974959 0.0888496 481 649 247 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_15.v common 13.65 vpr 71.05 MiB 0.06 10680 -1 -1 1 0.33 -1 -1 35936 -1 -1 72 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72756 22 19 2144 1789 1 1110 118 16 16 256 mult_36 auto 33.4 MiB 0.84 6094 71.1 MiB 0.45 0.01 4.02136 -1124.61 -4.02136 4.02136 0.73 0.00180083 0.00150368 0.136409 0.115409 66 11727 27 6.59459e+06 3.02225e+06 974584. 3806.97 8.75 1.44903 1.28613 28148 247068 -1 9508 16 4298 4938 816397 184971 0 0 816397 184971 4747 4382 0 0 36647 33388 0 0 47748 40533 0 0 4809 4453 0 0 360948 51908 0 0 361498 50307 0 0 4747 0 0 467 3664 3729 30254 222 8 4.39726 4.39726 -1333.61 -4.39726 0 0 1.22072e+06 4768.46 0.29 0.23 0.18 -1 -1 0.29 0.0938266 0.0858934 521 704 266 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_16.v common 13.24 vpr 71.64 MiB 0.13 10916 -1 -1 1 0.19 -1 -1 35876 -1 -1 74 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73360 22 19 2218 1846 1 1154 120 16 16 256 mult_36 auto 33.9 MiB 0.82 6705 71.6 MiB 0.89 0.01 3.89606 -1175.83 -3.89606 3.89606 0.93 0.0041163 0.00361442 0.313433 0.274823 60 13554 39 6.59459e+06 3.0512e+06 890343. 3477.90 7.13 1.24082 1.1037 27128 224764 -1 10853 27 5146 5941 1128590 279945 0 0 1128590 279945 5591 5188 0 0 43361 39471 0 0 57990 47922 0 0 5593 5212 0 0 503103 93557 0 0 512952 88595 0 0 5591 0 0 464 4094 3407 28507 369 1 4.39726 4.39726 -1456.06 -4.39726 0 0 1.11577e+06 4358.47 0.27 0.41 0.19 -1 -1 0.27 0.153291 0.138278 540 723 285 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_17.v common 13.07 vpr 73.32 MiB 0.10 11584 -1 -1 1 0.30 -1 -1 36728 -1 -1 83 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75084 22 19 2536 2130 1 1256 129 16 16 256 mult_36 auto 35.8 MiB 1.23 7097 73.3 MiB 0.41 0.01 3.89606 -1305 -3.89606 3.89606 0.60 0.00224231 0.00191333 0.135123 0.116004 66 12904 28 6.59459e+06 3.18149e+06 974584. 3806.97 7.51 1.28603 1.13961 28148 247068 -1 10701 20 4792 5387 942343 212307 0 0 942343 212307 5154 4832 0 0 39129 35538 0 0 52405 43936 0 0 5170 4858 0 0 419696 60605 0 0 420789 62538 0 0 5154 0 0 375 2504 2617 20633 247 15 4.39726 4.39726 -1591.94 -4.39726 0 0 1.22072e+06 4768.46 0.31 0.32 0.29 -1 -1 0.31 0.129401 0.117627 617 851 304 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_18.v common 10.46 vpr 73.55 MiB 0.10 11856 -1 -1 1 0.37 -1 -1 36624 -1 -1 86 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75312 22 19 2610 2187 1 1305 132 16 16 256 mult_36 auto 36.2 MiB 1.03 7245 73.5 MiB 0.70 0.01 3.89606 -1380.69 -3.89606 3.89606 0.58 0.00240423 0.00204717 0.226648 0.195204 64 14771 30 6.59459e+06 3.22491e+06 943753. 3686.54 4.80 1.09898 0.961795 27892 240595 -1 11408 18 5181 5899 1055496 237831 0 0 1055496 237831 5620 5299 0 0 44452 40248 0 0 58814 49667 0 0 5693 5387 0 0 474135 68095 0 0 466782 69135 0 0 5620 0 0 456 3909 3538 26086 292 14 4.39726 4.39726 -1612.74 -4.39726 0 0 1.19033e+06 4649.74 0.35 0.31 0.18 -1 -1 0.35 0.124842 0.11382 636 870 323 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_19.v common 10.63 vpr 74.36 MiB 0.10 12076 -1 -1 1 0.43 -1 -1 36892 -1 -1 91 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76148 22 19 2778 2321 1 1401 138 16 16 256 mult_36 auto 37.1 MiB 1.13 8014 74.4 MiB 0.55 0.01 4.02136 -1450.91 -4.02136 4.02136 0.77 0.00293179 0.00254451 0.195103 0.170986 70 14162 31 6.59459e+06 3.69329e+06 1.02522e+06 4004.78 4.48 1.12004 0.989713 28912 262511 -1 11956 15 5075 5923 934815 218802 0 0 934815 218802 5373 5115 0 0 44130 39792 0 0 57374 48410 0 0 5384 5163 0 0 410271 60288 0 0 412283 60034 0 0 5373 0 0 315 3086 2625 6489 645 193 4.27196 4.27196 -1778.69 -4.27196 0 0 1.29210e+06 5047.26 0.30 0.29 0.20 -1 -1 0.30 0.128369 0.117788 676 925 342 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_20.v common 15.88 vpr 74.84 MiB 0.11 12264 -1 -1 1 0.48 -1 -1 36768 -1 -1 93 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76632 22 19 2852 2378 1 1441 140 16 16 256 mult_36 auto 37.5 MiB 1.56 7863 74.8 MiB 1.13 0.02 4.02136 -1481.38 -4.02136 4.02136 0.91 0.00564452 0.00496592 0.383056 0.3375 74 13963 33 6.59459e+06 3.72224e+06 1.07073e+06 4182.55 8.55 1.65838 1.46244 29424 273870 -1 11977 15 5212 6035 892961 203454 0 0 892961 203454 5515 5257 0 0 39774 35744 0 0 53660 44223 0 0 5524 5296 0 0 390725 57129 0 0 397763 55805 0 0 5515 0 0 319 2489 2849 6838 574 89 4.52256 4.52256 -1745.6 -4.52256 0 0 1.33358e+06 5209.30 0.32 0.27 0.23 -1 -1 0.32 0.127413 0.116902 695 944 361 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_21.v common 12.07 vpr 75.82 MiB 0.12 12784 -1 -1 1 0.47 -1 -1 37424 -1 -1 97 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77644 22 19 3057 2549 1 1544 144 16 16 256 mult_36 auto 38.5 MiB 1.36 8892 75.8 MiB 0.59 0.01 4.02136 -1636.32 -4.02136 4.02136 0.59 0.00272659 0.00231647 0.192715 0.16542 70 16111 48 6.59459e+06 3.78015e+06 1.02522e+06 4004.78 5.86 1.17762 1.02855 28912 262511 -1 13171 19 5821 6948 1092361 257777 0 0 1092361 257777 6165 5857 0 0 51617 46407 0 0 67414 56422 0 0 6175 5900 0 0 480563 71067 0 0 480427 72124 0 0 6165 0 0 359 3917 3495 7714 858 89 4.27196 4.27196 -2018.68 -4.27196 0 0 1.29210e+06 5047.26 0.36 0.38 0.22 -1 -1 0.36 0.167673 0.152452 742 1017 380 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_22.v common 19.56 vpr 76.44 MiB 0.14 12912 -1 -1 1 0.41 -1 -1 37784 -1 -1 100 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78276 22 19 3131 2606 1 1587 147 16 16 256 mult_36 auto 39.2 MiB 1.47 9428 76.4 MiB 0.66 0.01 3.89606 -1628.34 -3.89606 3.89606 0.56 0.00270416 0.00229233 0.210001 0.180117 70 17539 45 6.59459e+06 3.82357e+06 1.02522e+06 4004.78 12.92 2.6934 2.38541 28912 262511 -1 13830 19 6233 7200 1204425 275278 0 0 1204425 275278 6609 6284 0 0 51936 46789 0 0 69069 57019 0 0 6616 6328 0 0 537452 78465 0 0 532743 80393 0 0 6609 0 0 392 2981 3612 8325 671 115 4.27196 4.27196 -1941.46 -4.27196 0 0 1.29210e+06 5047.26 0.30 0.37 0.20 -1 -1 0.30 0.160488 0.14629 762 1036 399 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_23.v common 15.87 vpr 77.11 MiB 0.13 13216 -1 -1 1 0.52 -1 -1 37504 -1 -1 107 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78956 22 19 3301 2742 1 1685 155 18 18 324 mult_36 auto 39.9 MiB 1.27 9566 77.1 MiB 0.76 0.01 4.27196 -1725.13 -4.27196 4.27196 0.77 0.00307579 0.0026462 0.235907 0.203314 68 18355 50 8.13932e+06 4.3209e+06 1.31159e+06 4048.11 8.93 1.73252 1.52434 36620 334356 -1 14765 19 6833 7654 1360627 293484 0 0 1360627 293484 7192 6865 0 0 53626 48955 0 0 72098 59905 0 0 7194 6929 0 0 617969 83300 0 0 602548 87530 0 0 7192 0 0 378 2772 2733 9171 499 2 4.27196 4.27196 -1996.38 -4.27196 0 0 1.63345e+06 5041.52 0.42 0.41 0.25 -1 -1 0.42 0.167074 0.151652 802 1091 418 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_24.v common 20.81 vpr 77.48 MiB 0.08 13604 -1 -1 1 0.43 -1 -1 37936 -1 -1 109 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79344 22 19 3375 2799 1 1732 157 18 18 324 mult_36 auto 40.4 MiB 0.75 10421 77.5 MiB 1.24 0.02 3.89606 -1763.04 -3.89606 3.89606 0.82 0.00647137 0.00564886 0.392624 0.340402 74 18744 26 8.13932e+06 4.34985e+06 1.40368e+06 4332.34 13.72 2.1988 1.92654 37912 362744 -1 15993 18 6776 7852 1424420 297324 0 0 1424420 297324 7107 6821 0 0 51479 46272 0 0 70270 57204 0 0 7115 6877 0 0 638763 88363 0 0 649686 91787 0 0 7107 0 0 347 3708 3389 8728 809 43 4.52256 4.52256 -2111.67 -4.52256 0 0 1.74764e+06 5393.95 0.44 0.51 0.35 -1 -1 0.44 0.195365 0.1791 821 1110 437 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_25.v common 17.14 vpr 78.51 MiB 0.14 14100 -1 -1 1 0.35 -1 -1 37776 -1 -1 116 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80392 22 19 3615 3005 1 1836 164 18 18 324 mult_36 auto 41.4 MiB 0.89 11333 78.5 MiB 1.09 0.02 4.27196 -1928.99 -4.27196 4.27196 0.86 0.00643979 0.00562402 0.335194 0.290104 74 20910 30 8.13932e+06 4.45118e+06 1.40368e+06 4332.34 8.32 1.93166 1.70239 37912 362744 -1 17170 16 7421 8502 1559887 323698 0 0 1559887 323698 7758 7457 0 0 58047 52650 0 0 79191 65020 0 0 7760 7505 0 0 700747 96223 0 0 706384 94843 0 0 7758 0 0 356 3470 3556 9389 796 16 4.52256 4.52256 -2368.73 -4.52256 0 0 1.74764e+06 5393.95 0.78 0.98 0.46 -1 -1 0.78 0.432392 0.397334 877 1201 456 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_26.v common 13.83 vpr 78.71 MiB 0.15 13932 -1 -1 1 0.38 -1 -1 37628 -1 -1 118 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80600 22 19 3689 3062 1 1874 166 18 18 324 mult_36 auto 41.5 MiB 1.16 10423 78.7 MiB 0.89 0.01 3.89606 -1897.14 -3.89606 3.89606 0.78 0.00332552 0.00284329 0.274277 0.236524 66 21667 39 8.13932e+06 4.48013e+06 1.27759e+06 3943.17 6.64 1.47752 1.29038 36296 327148 -1 16303 18 7570 9196 1446521 333154 0 0 1446521 333154 8014 7623 0 0 66461 60119 0 0 87283 73438 0 0 8024 7706 0 0 624330 92831 0 0 652409 91437 0 0 8014 0 0 462 6239 5782 9747 1312 246 4.27196 4.27196 -2378.18 -4.27196 0 0 1.59950e+06 4936.74 0.52 0.47 0.30 -1 -1 0.52 0.191985 0.174635 896 1220 475 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_27.v common 15.99 vpr 80.04 MiB 0.11 14384 -1 -1 1 0.64 -1 -1 38540 -1 -1 126 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81964 22 19 3871 3210 1 1982 175 18 18 324 mult_36 auto 42.9 MiB 1.76 12196 80.0 MiB 1.10 0.01 4.14666 -2025.63 -4.14666 4.14666 0.96 0.00351218 0.00301143 0.343994 0.298352 74 21829 44 8.13932e+06 4.99193e+06 1.40368e+06 4332.34 7.02 1.82401 1.60767 37912 362744 -1 18397 17 7675 8924 1605694 341211 0 0 1605694 341211 8122 7769 0 0 60429 54263 0 0 83214 67279 0 0 8128 7824 0 0 718586 100785 0 0 727215 103291 0 0 8122 0 0 464 3582 4665 10131 901 213 4.39726 4.39726 -2635.62 -4.39726 0 0 1.74764e+06 5393.95 0.45 0.49 0.27 -1 -1 0.45 0.198404 0.180833 944 1275 494 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_28.v common 23.38 vpr 80.50 MiB 0.15 14460 -1 -1 1 0.53 -1 -1 37928 -1 -1 128 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82428 22 19 3945 3267 1 2025 177 18 18 324 mult_36 auto 43.4 MiB 1.35 11387 80.5 MiB 1.02 0.01 3.89606 -2106.62 -3.89606 3.89606 1.25 0.00372079 0.00321118 0.317793 0.274731 70 21909 34 8.13932e+06 5.02088e+06 1.34436e+06 4149.26 14.43 2.74738 2.40739 37264 347768 -1 17347 20 8059 9105 1589950 349497 0 0 1589950 349497 8460 8103 0 0 67506 61027 0 0 90417 74269 0 0 8468 8156 0 0 700140 99517 0 0 714959 98425 0 0 8460 0 0 415 3249 3170 10380 695 10 4.27196 4.27196 -2559.57 -4.27196 0 0 1.69344e+06 5226.66 0.46 0.51 0.32 -1 -1 0.46 0.22233 0.202152 962 1294 513 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_29.v common 81.78 vpr 81.86 MiB 0.16 14988 -1 -1 1 0.71 -1 -1 38852 -1 -1 135 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83820 22 19 4159 3447 1 2141 185 22 22 484 mult_36 auto 44.9 MiB 1.96 13290 81.9 MiB 1.32 0.03 3.89606 -2170.33 -3.89606 3.89606 1.32 0.0100397 0.0090439 0.428751 0.374226 68 24792 49 1.32347e+07 5.5182e+06 2.01763e+06 4168.66 70.67 4.28073 3.75388 55470 518816 -1 19720 18 8392 9799 1675281 361152 0 0 1675281 361152 8804 8442 0 0 68743 62007 0 0 90599 75051 0 0 8815 8524 0 0 744439 104474 0 0 753881 102654 0 0 8804 0 0 430 4061 5106 10797 1043 316 4.27196 4.27196 -2629.7 -4.27196 0 0 2.51205e+06 5190.18 0.87 0.59 0.40 -1 -1 0.87 0.245645 0.223632 1015 1367 532 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_30.v common 27.30 vpr 81.90 MiB 0.17 14996 -1 -1 1 0.70 -1 -1 40096 -1 -1 137 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83864 22 19 4233 3504 1 2181 187 22 22 484 mult_36 auto 44.9 MiB 1.81 13678 81.9 MiB 1.68 0.03 3.77076 -2179.16 -3.77076 3.77076 1.33 0.00954964 0.00854182 0.612135 0.547976 68 24441 26 1.32347e+07 5.54715e+06 2.01763e+06 4168.66 15.55 3.44795 3.07759 55470 518816 -1 20282 29 8720 10247 1924971 455022 0 0 1924971 455022 9214 8833 0 0 72027 65113 0 0 96056 79865 0 0 9214 8897 0 0 867771 146049 0 0 870689 146265 0 0 9214 0 0 511 4309 5473 11913 1057 28 4.52256 4.52256 -2745.67 -4.52256 0 0 2.51205e+06 5190.18 0.70 0.77 0.39 -1 -1 0.70 0.320382 0.287968 1034 1386 551 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_31.v common 25.79 vpr 83.68 MiB 0.17 15340 -1 -1 1 0.79 -1 -1 40420 -1 -1 143 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85692 22 19 4410 3647 1 2284 193 22 22 484 mult_36 auto 45.9 MiB 1.90 13644 83.7 MiB 2.12 0.03 3.89606 -2272.68 -3.89606 3.89606 2.30 0.00779044 0.00665685 0.669269 0.585161 68 24967 24 1.32347e+07 5.63401e+06 2.01763e+06 4168.66 11.96 3.04584 2.70917 55470 518816 -1 20507 15 8680 9906 1641219 347698 0 0 1641219 347698 9059 8740 0 0 68299 61477 0 0 89391 75028 0 0 9059 8778 0 0 741685 94229 0 0 723726 99446 0 0 9059 0 0 396 4207 4323 11271 869 485 4.52256 4.52256 -2774.15 -4.52256 0 0 2.51205e+06 5190.18 0.94 0.57 0.63 -1 -1 0.94 0.227583 0.207758 1077 1441 570 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_32.v common 29.92 vpr 83.69 MiB 0.17 15448 -1 -1 1 0.81 -1 -1 39268 -1 -1 145 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85700 22 19 4484 3704 1 2331 195 22 22 484 mult_36 auto 46.6 MiB 1.78 14654 83.7 MiB 1.10 0.02 3.89606 -2316.3 -3.89606 3.89606 1.32 0.00440122 0.00381136 0.326116 0.281273 72 28562 39 1.32347e+07 5.66296e+06 2.11301e+06 4365.72 17.23 3.87517 3.45088 56918 551676 -1 22650 33 9999 11462 2668350 634634 0 0 2668350 634634 10555 10103 0 0 82321 75042 0 0 114004 93521 0 0 10567 10161 0 0 1221536 229642 0 0 1229367 216165 0 0 10555 0 0 574 4474 4504 13473 962 66 4.27196 4.27196 -2971.2 -4.27196 0 0 2.64603e+06 5467.00 1.13 1.14 0.66 -1 -1 1.13 0.430834 0.387866 1096 1460 589 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_33.v common 31.62 vpr 85.82 MiB 0.19 16412 -1 -1 1 0.79 -1 -1 40992 -1 -1 157 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87876 22 19 4843 4029 1 2441 208 22 22 484 mult_36 auto 48.4 MiB 2.04 15149 85.8 MiB 1.95 0.04 3.89606 -2514.82 -3.89606 3.89606 1.51 0.0144047 0.0131782 0.692357 0.62599 70 27473 34 1.32347e+07 6.23266e+06 2.06816e+06 4273.05 18.22 3.85258 3.4349 56434 539830 -1 22742 17 9309 10921 1929493 403263 0 0 1929493 403263 9835 9388 0 0 76592 68466 0 0 102783 84530 0 0 9837 9420 0 0 857903 115136 0 0 872543 116323 0 0 9835 0 0 548 4882 5177 12570 1141 364 4.52256 4.52256 -3117.17 -4.52256 0 0 2.60483e+06 5381.88 1.16 0.73 0.67 -1 -1 1.16 0.291038 0.266225 1185 1606 608 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_34.v common 26.31 vpr 85.32 MiB 0.18 16704 -1 -1 1 0.90 -1 -1 41084 -1 -1 160 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87364 22 19 4917 4086 1 2486 211 22 22 484 mult_36 auto 48.5 MiB 2.22 14895 85.3 MiB 1.22 0.02 3.89606 -2490.39 -3.89606 3.89606 1.38 0.00470826 0.00404519 0.369012 0.318152 68 29022 29 1.32347e+07 6.27609e+06 2.01763e+06 4168.66 13.12 2.7454 2.40552 55470 518816 -1 22687 18 10037 11831 1942787 418529 0 0 1942787 418529 10646 10115 0 0 84086 76239 0 0 108364 91507 0 0 10651 10168 0 0 851791 116006 0 0 877249 114494 0 0 10646 0 0 626 5616 6203 13540 1273 88 4.27196 4.27196 -3134.39 -4.27196 0 0 2.51205e+06 5190.18 0.98 0.82 0.63 -1 -1 0.98 0.383181 0.345989 1205 1625 627 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_35.v common 33.52 vpr 86.73 MiB 0.20 17132 -1 -1 1 0.92 -1 -1 41204 -1 -1 163 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88812 22 19 5093 4228 1 2588 214 22 22 484 mult_36 auto 50.2 MiB 2.19 16010 86.7 MiB 2.73 0.04 3.89606 -2614.77 -3.89606 3.89606 1.67 0.0107323 0.00946172 1.01175 0.917691 74 29369 42 1.32347e+07 6.31951e+06 2.15943e+06 4461.62 18.20 4.83864 4.32387 57402 562966 -1 24189 18 10463 12068 2602636 540131 0 0 2602636 540131 10989 10545 0 0 89037 81172 0 0 119280 98652 0 0 10994 10609 0 0 1180049 165865 0 0 1192287 173288 0 0 10989 0 0 544 5541 4981 13654 1136 153 4.39726 4.39726 -3393.35 -4.39726 0 0 2.68771e+06 5553.12 0.81 1.05 0.44 -1 -1 0.81 0.486512 0.446855 1248 1680 646 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_36.v common 32.60 vpr 86.50 MiB 0.22 16972 -1 -1 1 0.93 -1 -1 41536 -1 -1 165 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88580 22 19 5167 4285 1 2632 216 22 22 484 mult_36 auto 49.9 MiB 2.29 16595 86.5 MiB 2.58 0.03 3.89606 -2653.33 -3.89606 3.89606 2.23 0.00967005 0.00850742 0.823034 0.729895 76 29465 42 1.32347e+07 6.34846e+06 2.20457e+06 4554.90 16.85 4.03914 3.59339 57882 574062 -1 24499 18 10245 11944 2157165 449545 0 0 2157165 449545 10808 10315 0 0 82303 74580 0 0 111989 91399 0 0 10811 10359 0 0 962376 131371 0 0 978878 131521 0 0 10808 0 0 578 5324 5961 13813 1195 584 4.39726 4.39726 -3315.87 -4.39726 0 0 2.73077e+06 5642.09 0.93 0.94 0.48 -1 -1 0.93 0.452481 0.410536 1267 1699 665 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_37.v common 47.60 vpr 92.17 MiB 0.24 17516 -1 -1 1 0.99 -1 -1 40316 -1 -1 173 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94384 22 19 5380 4464 1 2743 225 24 24 576 mult_36 auto 51.6 MiB 2.55 17747 88.1 MiB 2.64 0.04 4.14666 -2916.96 -4.14666 4.14666 2.85 0.0112405 0.00994893 0.840878 0.742593 74 31381 35 1.59675e+07 6.86027e+06 2.56259e+06 4448.94 30.84 5.43491 4.83621 67906 667765 -1 26084 18 10424 12045 2131286 448303 0 0 2131286 448303 10980 10516 0 0 79717 71642 0 0 108325 88903 0 0 10985 10575 0 0 959779 132756 0 0 961500 133911 0 0 10980 0 0 573 5605 6009 13868 1144 250 4.64786 4.64786 -3495.37 -4.64786 0 0 3.19068e+06 5539.38 0.91 0.68 0.54 -1 -1 0.91 0.289615 0.263082 1321 1772 684 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_38.v common 55.48 vpr 91.13 MiB 0.33 17768 -1 -1 1 1.10 -1 -1 41916 -1 -1 176 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93320 22 19 5454 4521 1 2787 228 24 24 576 mult_36 auto 51.4 MiB 2.74 17903 87.7 MiB 3.32 0.04 4.02136 -2982.57 -4.02136 4.02136 2.78 0.0120224 0.0107345 1.16342 1.04533 74 33607 45 1.59675e+07 6.90369e+06 2.56259e+06 4448.94 36.97 6.96957 6.21257 67906 667765 -1 26662 17 10693 12555 2408488 498648 0 0 2408488 498648 11317 10763 0 0 85278 76921 0 0 115093 94812 0 0 11317 10828 0 0 1093519 150303 0 0 1091964 155021 0 0 11317 0 0 644 6044 6580 14908 1275 380 4.52256 4.52256 -3668.38 -4.52256 0 0 3.19068e+06 5539.38 1.67 0.81 0.52 -1 -1 1.67 0.32538 0.297234 1340 1791 703 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_39.v common 46.57 vpr 94.26 MiB 0.22 17964 -1 -1 1 0.92 -1 -1 41128 -1 -1 180 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96520 22 19 5629 4662 1 2884 232 24 24 576 mult_36 auto 52.2 MiB 2.62 19446 88.7 MiB 1.93 0.04 4.14666 -3053.8 -4.14666 4.14666 2.34 0.0116749 0.0103774 0.585067 0.508264 78 31162 30 1.59675e+07 6.9616e+06 2.67122e+06 4637.53 30.83 5.19741 4.62884 69630 706637 -1 27564 15 10542 12047 2296579 465921 0 0 2296579 465921 11154 10642 0 0 84634 76329 0 0 113732 93764 0 0 11160 10734 0 0 1044616 134352 0 0 1031283 140100 0 0 11154 0 0 630 4753 5268 14633 934 166 4.52256 4.52256 -3563.4 -4.52256 0 0 3.35110e+06 5817.88 1.13 0.78 0.55 -1 -1 1.13 0.292703 0.26687 1381 1846 722 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_40.v common 43.22 vpr 89.59 MiB 0.23 18344 -1 -1 1 1.05 -1 -1 41884 -1 -1 182 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91740 22 19 5703 4719 1 2932 234 24 24 576 mult_36 auto 53.3 MiB 2.81 19863 89.6 MiB 3.17 0.04 4.14666 -3075.56 -4.14666 4.14666 2.13 0.011481 0.010144 0.985525 0.869635 76 35388 42 1.59675e+07 6.99055e+06 2.61600e+06 4541.67 25.45 5.77595 5.12089 68478 680951 -1 28413 19 11615 13403 2758841 567891 0 0 2758841 567891 12257 11728 0 0 91167 82564 0 0 122781 101065 0 0 12257 11781 0 0 1255327 177559 0 0 1265052 183194 0 0 12257 0 0 661 5606 6422 15860 1199 279 4.52256 4.52256 -3677.42 -4.52256 0 0 3.24203e+06 5628.53 1.15 0.89 0.84 -1 -1 1.15 0.334625 0.302397 1400 1865 741 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_41.v common 39.81 vpr 90.39 MiB 0.24 18732 -1 -1 1 1.17 -1 -1 41156 -1 -1 190 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92560 22 19 5950 4932 1 3040 243 24 24 576 mult_36 auto 53.8 MiB 3.19 19463 90.4 MiB 3.26 0.04 4.14666 -3316.72 -4.14666 4.14666 2.38 0.0116991 0.0103151 0.98864 0.868648 74 33639 48 1.59675e+07 7.50235e+06 2.56259e+06 4448.94 19.90 5.63211 5.02014 67906 667765 -1 28278 16 11118 12938 2279496 476502 0 0 2279496 476502 11663 11216 0 0 85389 76686 0 0 119240 96073 0 0 11666 11271 0 0 1022802 141151 0 0 1028736 140105 0 0 11663 0 0 563 5458 6488 14568 1322 275 4.64786 4.64786 -4001.67 -4.64786 0 0 3.19068e+06 5539.38 1.56 1.37 0.87 -1 -1 1.56 0.618263 0.564458 1461 1956 760 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_42.v common 52.29 vpr 94.33 MiB 0.24 18804 -1 -1 1 1.20 -1 -1 42872 -1 -1 193 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96596 22 19 6024 4989 1 3083 246 24 24 576 mult_36 auto 54.2 MiB 2.88 21094 90.7 MiB 4.02 0.04 4.02136 -3285.13 -4.02136 4.02136 2.71 0.0109243 0.00951367 1.31306 1.16068 80 33456 26 1.59675e+07 7.54578e+06 2.72095e+06 4723.87 33.78 7.04952 6.24246 70206 720185 -1 29687 15 11411 13172 2339146 482941 0 0 2339146 482941 12094 11513 0 0 89209 80221 0 0 121603 99001 0 0 12098 11614 0 0 1051644 141297 0 0 1052498 139295 0 0 12094 0 0 704 5314 6276 16097 1113 30 4.52256 4.52256 -3918.64 -4.52256 0 0 3.41546e+06 5929.62 0.93 0.65 0.57 -1 -1 0.93 0.252187 0.228299 1480 1975 779 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_43.v common 133.73 vpr 91.89 MiB 0.34 19456 -1 -1 1 1.19 -1 -1 42804 -1 -1 199 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94096 22 19 6198 5129 1 3182 252 24 24 576 mult_36 auto 55.7 MiB 2.93 21170 91.9 MiB 1.82 0.02 4.27196 -3455.47 -4.27196 4.27196 2.30 0.00633339 0.00548364 0.54037 0.466906 74 38262 40 1.59675e+07 7.63263e+06 2.56259e+06 4448.94 117.62 4.94386 4.28996 67906 667765 -1 30941 16 12293 14565 2833699 576261 0 0 2833699 576261 12953 12382 0 0 94424 84636 0 0 129893 105513 0 0 12966 12465 0 0 1295181 178531 0 0 1288282 182734 0 0 12953 0 0 680 7874 8084 16612 1681 656 4.77316 4.77316 -4176.13 -4.77316 0 0 3.19068e+06 5539.38 0.84 0.80 0.50 -1 -1 0.84 0.298702 0.271007 1523 2030 798 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_44.v common 48.49 vpr 92.54 MiB 0.26 19440 -1 -1 1 1.41 -1 -1 43024 -1 -1 200 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94756 22 19 6272 5186 1 3228 253 24 24 576 mult_36 auto 56.1 MiB 3.36 21298 92.5 MiB 3.97 0.05 4.02136 -3400.38 -4.02136 4.02136 2.91 0.0126965 0.0113022 1.2512 1.11083 78 35898 40 1.59675e+07 7.64711e+06 2.67122e+06 4637.53 27.89 6.2345 5.52142 69630 706637 -1 30241 18 12039 14055 2610256 537086 0 0 2610256 537086 12682 12105 0 0 98242 88394 0 0 130115 108326 0 0 12683 12172 0 0 1177325 157147 0 0 1179209 158942 0 0 12682 0 0 663 6425 7490 16294 1424 280 4.52256 4.52256 -4077.55 -4.52256 0 0 3.35110e+06 5817.88 0.95 1.25 0.61 -1 -1 0.95 0.579014 0.527208 1542 2049 817 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_45.v common 54.52 vpr 93.21 MiB 0.26 19604 -1 -1 1 1.49 -1 -1 43548 -1 -1 208 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 95448 22 19 6485 5365 1 3341 262 24 24 576 mult_36 auto 57.1 MiB 2.83 22454 93.2 MiB 3.33 0.05 4.14666 -3614.83 -4.14666 4.14666 2.49 0.0137243 0.0122897 0.985504 0.865983 80 37463 31 1.59675e+07 8.15891e+06 2.72095e+06 4723.87 35.44 5.91606 5.21784 70206 720185 -1 31900 17 12682 14705 2444809 499878 0 0 2444809 499878 13407 12769 0 0 98092 87923 0 0 134962 109634 0 0 13409 12830 0 0 1085488 140379 0 0 1099451 136343 0 0 13407 0 0 745 6517 7527 17515 1400 186 4.52256 4.52256 -4365.6 -4.52256 0 0 3.41546e+06 5929.62 1.23 0.81 0.81 -1 -1 1.23 0.34344 0.310908 1593 2122 836 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_46.v common 53.79 vpr 98.95 MiB 0.25 19936 -1 -1 1 1.32 -1 -1 43372 -1 -1 210 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 101320 22 19 6559 5422 1 3381 264 24 24 576 mult_36 auto 57.6 MiB 3.06 21956 93.7 MiB 3.70 0.03 4.14666 -3557.64 -4.14666 4.14666 2.69 0.00718473 0.00623042 1.29835 1.16262 76 37183 29 1.59675e+07 8.18786e+06 2.61600e+06 4541.67 34.14 7.02644 6.25632 68478 680951 -1 31236 17 13070 15136 2812753 594279 0 0 2812753 594279 13806 13163 0 0 100548 90824 0 0 139842 113139 0 0 13815 13226 0 0 1272389 178578 0 0 1272353 185349 0 0 13806 0 0 754 6523 7607 17607 1400 255 4.52256 4.52256 -4312.43 -4.52256 0 0 3.24203e+06 5628.53 1.00 1.23 0.60 -1 -1 1.00 0.479529 0.433227 1613 2141 855 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_47.v common 43.36 vpr 94.53 MiB 0.27 20200 -1 -1 1 1.10 -1 -1 43692 -1 -1 216 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96800 22 19 6735 5564 1 3478 270 24 24 576 mult_36 auto 58.4 MiB 3.25 23179 94.5 MiB 4.03 0.05 4.14666 -3746.57 -4.14666 4.14666 2.70 0.0143649 0.012735 1.28585 1.15134 80 37843 32 1.59675e+07 8.27472e+06 2.72095e+06 4723.87 22.21 5.96448 5.30549 70206 720185 -1 32139 17 12589 14266 2462069 511321 0 0 2462069 511321 13182 12666 0 0 95311 85449 0 0 129082 105499 0 0 13188 12735 0 0 1112984 146466 0 0 1098322 148506 0 0 13182 0 0 609 5080 5687 16510 1139 270 4.52256 4.52256 -4368.5 -4.52256 0 0 3.41546e+06 5929.62 1.60 0.89 0.93 -1 -1 1.60 0.384967 0.350293 1656 2196 874 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_48.v common 47.52 vpr 101.16 MiB 0.28 20540 -1 -1 1 1.34 -1 -1 43780 -1 -1 218 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 103592 22 19 6809 5621 1 3528 272 24 24 576 mult_36 auto 59.0 MiB 2.87 23697 95.1 MiB 3.51 0.05 4.02136 -3739.94 -4.02136 4.02136 2.18 0.0142582 0.0125566 0.989866 0.861509 82 39597 45 1.59675e+07 8.30367e+06 2.78508e+06 4835.20 29.02 6.03223 5.33158 70778 734779 -1 33279 16 13296 15154 2708984 551703 0 0 2708984 551703 14068 13404 0 0 102400 92159 0 0 140530 113594 0 0 14069 13483 0 0 1208148 161921 0 0 1229769 157142 0 0 14068 0 0 788 6062 5707 18497 1149 36 4.52256 4.52256 -4635.56 -4.52256 0 0 3.48632e+06 6052.64 0.99 0.87 0.59 -1 -1 0.99 0.362635 0.330241 1674 2215 893 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_49.v common 64.76 vpr 111.13 MiB 0.29 21048 -1 -1 1 1.42 -1 -1 44044 -1 -1 228 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 113796 22 19 7094 5872 1 3643 283 24 24 576 mult_36 auto 60.5 MiB 3.05 26701 96.6 MiB 4.07 0.05 4.27196 -3967.24 -4.27196 4.27196 2.40 0.0146418 0.0129576 1.20063 1.05649 84 43943 34 1.59675e+07 8.84444e+06 2.84938e+06 4946.85 44.70 7.27716 6.44323 71930 760447 -1 35945 16 13806 15906 3002313 601571 0 0 3002313 601571 14515 13903 0 0 105959 95502 0 0 143638 116627 0 0 14519 13986 0 0 1369459 177324 0 0 1354223 184229 0 0 14515 0 0 730 6363 6596 18697 1442 625 4.64786 4.64786 -4676.16 -4.64786 0 0 3.60864e+06 6265.01 1.33 1.12 0.63 -1 -1 1.33 0.453247 0.412513 1745 2324 912 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_50.v common 50.47 vpr 96.88 MiB 0.29 21184 -1 -1 1 1.50 -1 -1 43704 -1 -1 230 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99200 22 19 7168 5929 1 3677 285 24 24 576 mult_36 auto 60.7 MiB 3.36 24124 96.9 MiB 4.47 0.06 4.39726 -3899.23 -4.39726 4.39726 2.60 0.0195764 0.0180278 1.50631 1.34802 80 38015 32 1.59675e+07 8.87339e+06 2.72095e+06 4723.87 29.49 7.64568 6.80123 70206 720185 -1 33468 15 13227 14841 2770518 570638 0 0 2770518 570638 13977 13330 0 0 103655 93105 0 0 142418 115684 0 0 13983 13406 0 0 1236290 168228 0 0 1260195 166885 0 0 13977 0 0 766 4198 5870 18307 908 29 4.64786 4.64786 -4886.71 -4.64786 0 0 3.41546e+06 5929.62 0.97 0.90 0.61 -1 -1 0.97 0.364848 0.33113 1764 2343 931 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_51.v common 45.24 vpr 97.58 MiB 0.33 21416 -1 -1 1 1.53 -1 -1 44492 -1 -1 235 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99920 22 19 7344 6071 1 3784 290 24 24 576 mult_36 auto 61.4 MiB 3.47 24958 97.6 MiB 4.16 0.06 4.14666 -4033.64 -4.14666 4.14666 2.27 0.0161293 0.0145047 1.18013 1.03395 82 41446 40 1.59675e+07 8.94577e+06 2.78508e+06 4835.20 23.12 7.01636 6.2177 70778 734779 -1 34370 16 13799 16054 2754306 581378 0 0 2754306 581378 14551 13868 0 0 105759 94767 0 0 144362 117510 0 0 14556 13960 0 0 1233099 171906 0 0 1241979 169367 0 0 14551 0 0 771 7131 8545 18366 1580 983 4.64786 4.64786 -4786.06 -4.64786 0 0 3.48632e+06 6052.64 1.55 1.65 0.92 -1 -1 1.55 0.753912 0.687874 1808 2398 950 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_pipe_52.v common 35.19 vpr 97.89 MiB 0.39 21688 -1 -1 1 1.47 -1 -1 44448 -1 -1 237 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100236 22 19 7418 6128 1 3829 292 24 24 576 mult_36 auto 61.8 MiB 3.36 25267 97.9 MiB 3.49 0.04 4.14666 -4056.06 -4.14666 4.14666 2.67 0.00817917 0.00718428 1.02981 0.90011 80 42359 40 1.59675e+07 8.97472e+06 2.72095e+06 4723.87 14.73 4.20223 3.68423 70206 720185 -1 35314 16 14446 16351 2728788 589034 0 0 2728788 589034 15178 14570 0 0 114604 103244 0 0 153319 127197 0 0 15180 14649 0 0 1208189 166290 0 0 1222318 163084 0 0 15178 0 0 752 4953 7035 19317 1223 461 4.39726 4.39726 -4789.94 -4.39726 0 0 3.41546e+06 5929.62 1.03 1.14 0.64 -1 -1 1.03 0.537181 0.487096 1827 2417 969 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_14.v common 11.93 vpr 66.46 MiB 0.06 9360 -1 -1 1 0.19 -1 -1 33992 -1 -1 43 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68060 22 19 1246 925 1 719 88 16 16 256 mult_36 auto 28.7 MiB 1.50 3950 66.5 MiB 0.55 0.01 6.98711 -334.178 -6.98711 6.98711 0.95 0.00231156 0.00203398 0.182463 0.160011 56 7274 28 6.59459e+06 2.20645e+06 849745. 3319.32 5.18 0.854528 0.769013 26364 208198 -1 6619 26 6682 7552 1237557 281768 0 0 1237557 281768 7552 6880 0 0 53663 50368 0 0 75047 58677 0 0 7596 6945 0 0 550117 80799 0 0 543582 78099 0 0 7552 0 0 897 4525 3651 42775 0 0 8.19264 8.19264 -457.679 -8.19264 0 0 1.04740e+06 4091.43 0.42 0.40 0.26 -1 -1 0.42 0.109773 0.101001 299 285 247 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_15.v common 19.58 vpr 66.74 MiB 0.06 9544 -1 -1 1 0.18 -1 -1 34724 -1 -1 46 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68344 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 29.1 MiB 1.53 4251 66.7 MiB 0.72 0.01 7.02947 -342.05 -7.02947 7.02947 0.89 0.00237255 0.00207805 0.207165 0.180942 54 8831 46 6.59459e+06 2.64588e+06 829453. 3240.05 12.89 1.49777 1.34477 26108 202796 -1 7281 23 7336 8378 1492501 356251 0 0 1492501 356251 8378 7543 0 0 69010 65710 0 0 85985 71952 0 0 8466 7638 0 0 662671 103441 0 0 657991 99967 0 0 8378 0 0 1064 3897 4897 53508 0 0 8.61383 8.61383 -420.283 -8.61383 0 0 1.02522e+06 4004.78 0.39 0.59 0.25 -1 -1 0.39 0.147173 0.134916 321 304 266 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_16.v common 13.36 vpr 67.13 MiB 0.06 9692 -1 -1 1 0.22 -1 -1 34772 -1 -1 48 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68744 22 19 1418 1046 1 822 94 16 16 256 mult_36 auto 29.3 MiB 1.56 4676 67.1 MiB 0.67 0.01 7.09841 -340.993 -7.09841 7.09841 0.92 0.00239627 0.00202856 0.212673 0.184057 56 8599 28 6.59459e+06 2.67484e+06 849745. 3319.32 6.37 0.956335 0.855524 26364 208198 -1 7458 25 8060 9086 1944921 456122 0 0 1944921 456122 9086 8228 0 0 73449 69398 0 0 100069 79364 0 0 9094 8275 0 0 884108 142201 0 0 869115 148656 0 0 9086 0 0 1049 5301 4471 47477 0 0 8.57773 8.57773 -471.689 -8.57773 0 0 1.04740e+06 4091.43 0.40 0.78 0.25 -1 -1 0.40 0.175875 0.16137 340 323 285 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_17.v common 18.20 vpr 67.70 MiB 0.08 10252 -1 -1 1 0.23 -1 -1 34632 -1 -1 52 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69328 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 29.9 MiB 1.37 4861 67.7 MiB 0.50 0.01 7.80825 -382.565 -7.80825 7.80825 0.57 0.00271212 0.00241447 0.147859 0.129647 60 9516 36 6.59459e+06 2.73274e+06 890343. 3477.90 12.23 1.63954 1.46577 27128 224764 -1 7470 24 7628 8517 1266506 301586 0 0 1266506 301586 8517 7819 0 0 62950 59564 0 0 82773 67071 0 0 8585 7907 0 0 573416 79149 0 0 530265 80076 0 0 8517 0 0 912 3632 4158 43899 0 0 8.89448 8.89448 -499.261 -8.89448 0 0 1.11577e+06 4358.47 0.41 0.55 0.27 -1 -1 0.41 0.179686 0.164864 365 342 304 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_18.v common 16.56 vpr 68.37 MiB 0.09 10220 -1 -1 1 0.20 -1 -1 34764 -1 -1 55 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70012 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 30.6 MiB 1.80 5268 68.4 MiB 0.67 0.01 7.72835 -401.323 -7.72835 7.72835 0.91 0.00314648 0.00278159 0.197739 0.174787 56 10979 44 6.59459e+06 2.77617e+06 849745. 3319.32 9.25 1.11499 1.0039 26364 208198 -1 9074 25 9168 10314 1932510 430754 0 0 1932510 430754 10314 9506 0 0 76894 72311 0 0 105216 83542 0 0 10379 9575 0 0 867138 126087 0 0 862569 129733 0 0 10314 0 0 1173 5866 6469 57504 0 0 9.33468 9.33468 -567.027 -9.33468 0 0 1.04740e+06 4091.43 0.40 0.80 0.24 -1 -1 0.40 0.204337 0.187212 383 361 323 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_19.v common 20.73 vpr 68.56 MiB 0.09 10400 -1 -1 1 0.23 -1 -1 35156 -1 -1 58 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70204 22 19 1688 1231 1 975 105 16 16 256 mult_36 auto 30.9 MiB 1.44 5779 68.6 MiB 0.74 0.01 7.75835 -390.261 -7.75835 7.75835 0.90 0.00267747 0.0023062 0.226042 0.198505 64 10849 45 6.59459e+06 3.21559e+06 943753. 3686.54 13.72 1.9513 1.76003 27892 240595 -1 8556 25 7224 8309 1087210 250867 0 0 1087210 250867 7979 7326 0 0 51659 47750 0 0 74750 57377 0 0 7995 7410 0 0 469825 66867 0 0 475002 64137 0 0 7979 0 0 778 4654 4234 35730 369 9 9.58838 9.58838 -597.752 -9.58838 0 0 1.19033e+06 4649.74 0.41 0.51 0.31 -1 -1 0.41 0.181659 0.166208 404 380 342 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_20.v common 21.62 vpr 69.24 MiB 0.09 10488 -1 -1 1 0.27 -1 -1 34980 -1 -1 59 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70900 22 19 1762 1288 1 1013 106 16 16 256 mult_36 auto 31.7 MiB 1.94 6222 69.2 MiB 0.61 0.01 7.68911 -431.664 -7.68911 7.68911 0.90 0.00299245 0.00264061 0.181152 0.15888 62 12520 34 6.59459e+06 3.23007e+06 916467. 3579.95 13.88 1.84568 1.66018 27384 229598 -1 9364 23 8026 9244 1390051 309174 0 0 1390051 309174 8903 8237 0 0 63939 60008 0 0 82665 67128 0 0 8965 8352 0 0 610001 82836 0 0 615578 82613 0 0 8903 0 0 902 4815 4719 38901 370 2 9.37378 9.37378 -564.448 -9.37378 0 0 1.13630e+06 4438.68 0.45 0.63 0.29 -1 -1 0.45 0.197528 0.180577 423 399 361 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_21.v common 17.41 vpr 69.33 MiB 0.19 10908 -1 -1 1 0.28 -1 -1 35704 -1 -1 62 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70996 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 31.7 MiB 1.74 6303 69.3 MiB 0.73 0.01 7.62205 -457.249 -7.62205 7.62205 0.87 0.00172835 0.00149786 0.224512 0.198778 64 12190 48 6.59459e+06 3.2735e+06 943753. 3686.54 9.66 1.43709 1.28393 27892 240595 -1 9835 26 9070 10262 1521610 339009 0 0 1521610 339009 9952 9412 0 0 68120 63431 0 0 96416 74745 0 0 10014 9500 0 0 683455 92150 0 0 653653 89771 0 0 9952 0 0 905 4872 5050 35698 327 2 8.98378 8.98378 -627.371 -8.98378 0 0 1.19033e+06 4649.74 0.51 0.61 0.32 -1 -1 0.51 0.200218 0.182644 445 418 380 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_22.v common 21.36 vpr 70.12 MiB 0.10 11004 -1 -1 1 0.27 -1 -1 35436 -1 -1 66 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71800 22 19 1933 1408 1 1112 113 16 16 256 mult_36 auto 32.5 MiB 2.23 6333 70.1 MiB 0.78 0.01 7.62315 -473.145 -7.62315 7.62315 0.73 0.00361099 0.00313239 0.222897 0.195085 64 12429 31 6.59459e+06 3.3314e+06 943753. 3686.54 13.24 1.90235 1.71051 27892 240595 -1 9808 25 9584 10846 1683948 381323 0 0 1683948 381323 10211 9743 0 0 75442 70393 0 0 107315 83340 0 0 10215 9784 0 0 753662 107480 0 0 727103 100583 0 0 10211 0 0 656 3246 3885 14160 677 2 8.66969 8.66969 -746.461 -8.66969 0 0 1.19033e+06 4649.74 0.51 0.77 0.31 -1 -1 0.51 0.244172 0.224282 464 437 399 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_23.v common 19.15 vpr 70.32 MiB 0.11 11240 -1 -1 1 0.32 -1 -1 35712 -1 -1 68 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72008 22 19 2031 1472 1 1172 116 18 18 324 mult_36 auto 32.7 MiB 2.44 7302 70.3 MiB 0.62 0.02 7.71915 -469.387 -7.71915 7.71915 1.01 0.00363929 0.00313087 0.17031 0.147774 62 14803 38 8.13932e+06 3.75635e+06 1.20291e+06 3712.69 10.41 1.39612 1.24921 35328 304176 -1 11663 24 10309 11824 2139086 462153 0 0 2139086 462153 11119 10443 0 0 87634 82781 0 0 113865 92261 0 0 11126 10535 0 0 969114 131148 0 0 946228 134985 0 0 11119 0 0 839 3943 5009 18002 781 2 9.31258 9.31258 -752.691 -9.31258 0 0 1.49010e+06 4599.06 0.60 0.80 0.37 -1 -1 0.60 0.199632 0.182375 486 456 418 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_24.v common 20.78 vpr 70.78 MiB 0.11 11440 -1 -1 1 0.21 -1 -1 35756 -1 -1 71 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72480 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 33.2 MiB 2.46 6909 70.8 MiB 1.07 0.02 7.56085 -470.498 -7.56085 7.56085 1.27 0.00535468 0.00471573 0.349075 0.307946 64 13430 34 8.13932e+06 3.79978e+06 1.23838e+06 3822.15 10.92 1.59028 1.43268 35972 318676 -1 11061 24 9564 10965 1884847 406164 0 0 1884847 406164 10336 9818 0 0 78715 73700 0 0 108242 86500 0 0 10350 9882 0 0 846015 111568 0 0 831189 114696 0 0 10336 0 0 800 4273 4910 18619 669 9 9.16728 9.16728 -775.541 -9.16728 0 0 1.56068e+06 4816.91 0.64 0.87 0.40 -1 -1 0.64 0.268668 0.24691 505 475 437 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_25.v common 27.03 vpr 71.48 MiB 0.13 11572 -1 -1 1 0.32 -1 -1 36132 -1 -1 73 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73196 22 19 2201 1591 1 1267 121 18 18 324 mult_36 auto 34.1 MiB 2.07 7669 71.5 MiB 1.01 0.01 7.62205 -492.613 -7.62205 7.62205 1.30 0.00354086 0.00305669 0.270002 0.23481 68 13647 28 8.13932e+06 3.82873e+06 1.31159e+06 4048.11 17.62 2.64489 2.3944 36620 334356 -1 11520 23 9389 11018 1759568 384822 0 0 1759568 384822 10157 9527 0 0 76861 72190 0 0 102702 82765 0 0 10163 9611 0 0 770873 107585 0 0 788812 103144 0 0 10157 0 0 792 4538 5339 13613 991 21 8.95588 8.95588 -839.515 -8.95588 0 0 1.63345e+06 5041.52 0.69 0.84 0.42 -1 -1 0.69 0.278027 0.255915 526 494 456 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_26.v common 26.38 vpr 71.65 MiB 0.12 11724 -1 -1 1 0.37 -1 -1 36384 -1 -1 76 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73368 22 19 2275 1648 1 1304 124 18 18 324 mult_36 auto 34.1 MiB 2.50 7450 71.6 MiB 1.35 0.02 7.80825 -523.983 -7.80825 7.80825 1.32 0.00477277 0.00417242 0.428147 0.382128 72 12810 26 8.13932e+06 3.87216e+06 1.37338e+06 4238.83 15.92 2.40612 2.14548 37588 355536 -1 11175 25 10276 11592 2031586 434781 0 0 2031586 434781 11057 10454 0 0 81627 76634 0 0 116305 89151 0 0 11057 10563 0 0 914331 123667 0 0 897209 124312 0 0 11057 0 0 806 3084 3321 14895 574 21 8.87728 8.87728 -752.323 -8.87728 0 0 1.72054e+06 5310.31 0.57 0.81 0.38 -1 -1 0.57 0.263671 0.241336 546 513 475 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_27.v common 54.50 vpr 72.01 MiB 0.12 12212 -1 -1 1 0.41 -1 -1 36268 -1 -1 82 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73740 22 19 2385 1724 1 1377 131 18 18 324 mult_36 auto 34.7 MiB 2.52 8656 72.0 MiB 0.74 0.01 7.67995 -523.927 -7.67995 7.67995 0.91 0.0022541 0.00190769 0.203086 0.174957 62 17421 47 8.13932e+06 4.35501e+06 1.20291e+06 3712.69 45.17 2.60224 2.3222 35328 304176 -1 13139 24 11813 13550 2319149 502142 0 0 2319149 502142 12648 11962 0 0 97579 91875 0 0 125721 102676 0 0 12648 12051 0 0 1038804 142455 0 0 1031749 141123 0 0 12648 0 0 863 4608 5187 16758 1006 67 8.96188 8.96188 -852.074 -8.96188 0 0 1.49010e+06 4599.06 0.40 1.11 0.22 -1 -1 0.40 0.345613 0.319417 575 532 494 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_28.v common 25.31 vpr 72.88 MiB 0.13 12248 -1 -1 1 0.39 -1 -1 36384 -1 -1 83 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74628 22 19 2459 1781 1 1418 132 18 18 324 mult_36 auto 35.6 MiB 2.72 8745 72.9 MiB 0.60 0.01 7.60005 -550.785 -7.60005 7.60005 0.81 0.00232931 0.00202553 0.167406 0.144642 66 15827 32 8.13932e+06 4.36948e+06 1.27759e+06 3943.17 15.70 1.86211 1.66278 36296 327148 -1 13390 26 12951 14549 2662497 565067 0 0 2662497 565067 13937 13222 0 0 99481 93698 0 0 141486 108649 0 0 13939 13301 0 0 1205886 165574 0 0 1187768 170623 0 0 13937 0 0 1018 5246 5058 31184 634 35 9.09798 9.09798 -878.539 -9.09798 0 0 1.59950e+06 4936.74 0.65 1.41 0.40 -1 -1 0.65 0.454903 0.418548 594 551 513 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_29.v common 38.16 vpr 73.10 MiB 0.14 12472 -1 -1 1 0.43 -1 -1 36124 -1 -1 85 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74852 22 19 2565 1853 1 1483 135 22 22 484 mult_36 auto 35.7 MiB 3.29 9467 73.1 MiB 0.70 0.01 7.58425 -519.207 -7.58425 7.58425 1.66 0.00276741 0.00243109 0.198234 0.173092 68 16435 45 1.32347e+07 4.79443e+06 2.01763e+06 4168.66 24.53 2.60935 2.34354 55470 518816 -1 13853 25 12220 14490 2783050 587169 0 0 2783050 587169 13275 12421 0 0 105016 99072 0 0 141915 112813 0 0 13288 12527 0 0 1262134 172292 0 0 1247422 178044 0 0 13275 0 0 1082 6812 6375 18476 1305 219 9.21838 9.21838 -933.695 -9.21838 0 0 2.51205e+06 5190.18 1.09 1.28 0.65 -1 -1 1.09 0.329948 0.30283 619 570 532 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_30.v common 28.47 vpr 73.77 MiB 0.14 12592 -1 -1 1 0.43 -1 -1 36636 -1 -1 89 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75536 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 36.4 MiB 2.42 9163 73.8 MiB 1.40 0.02 7.71115 -535.323 -7.71115 7.71115 2.14 0.00548872 0.00487059 0.42492 0.372382 66 16255 28 1.32347e+07 4.85233e+06 1.96511e+06 4060.15 14.98 2.49107 2.2462 54986 507526 -1 13759 24 12873 14544 2859992 606760 0 0 2859992 606760 13853 13088 0 0 115809 109850 0 0 159179 126302 0 0 13866 13188 0 0 1276728 171362 0 0 1280557 172970 0 0 13853 0 0 1007 4248 4781 18903 761 2 9.09008 9.09008 -854.358 -9.09008 0 0 2.45963e+06 5081.88 1.20 1.22 0.65 -1 -1 1.20 0.345107 0.317489 639 589 551 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_31.v common 35.70 vpr 74.05 MiB 0.14 13112 -1 -1 1 0.46 -1 -1 36736 -1 -1 93 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75824 22 19 2744 1981 1 1589 143 22 22 484 mult_36 auto 36.8 MiB 3.07 10314 74.0 MiB 0.84 0.01 7.68295 -597.427 -7.68295 7.68295 1.65 0.00267521 0.00231581 0.22805 0.197263 70 18057 41 1.32347e+07 4.91023e+06 2.06816e+06 4273.05 23.35 2.35589 2.09704 56434 539830 -1 15371 25 12743 14615 3049478 632328 0 0 3049478 632328 13706 13010 0 0 105022 98445 0 0 145859 113551 0 0 13709 13133 0 0 1369958 197251 0 0 1401224 196938 0 0 13706 0 0 992 4951 5330 19204 927 11 9.33888 9.33888 -1175.2 -9.33888 0 0 2.60483e+06 5381.88 0.88 0.79 0.66 -1 -1 0.88 0.196977 0.178519 665 608 570 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_32.v common 39.63 vpr 74.45 MiB 0.14 12968 -1 -1 1 0.49 -1 -1 36880 -1 -1 96 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76232 22 19 2818 2038 1 1626 146 22 22 484 mult_36 auto 37.3 MiB 2.70 10761 74.4 MiB 1.80 0.02 7.66715 -553.462 -7.66715 7.66715 2.15 0.00478105 0.00415001 0.49958 0.438192 68 20214 45 1.32347e+07 4.95366e+06 2.01763e+06 4168.66 25.18 2.6469 2.34981 55470 518816 -1 15948 27 15374 17821 3544346 735313 0 0 3544346 735313 16574 15628 0 0 125841 118846 0 0 177221 135954 0 0 16590 15770 0 0 1603920 222915 0 0 1604200 226200 0 0 16574 0 0 1231 7940 7676 33365 1298 135 9.43328 9.43328 -1200.18 -9.43328 0 0 2.51205e+06 5190.18 1.20 1.59 0.64 -1 -1 1.20 0.41224 0.376898 684 627 589 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_33.v common 96.74 vpr 75.23 MiB 0.15 13836 -1 -1 1 0.49 -1 -1 37160 -1 -1 100 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77036 22 19 2923 2109 1 1697 151 22 22 484 mult_36 auto 38.0 MiB 3.62 10682 75.2 MiB 2.11 0.01 8.36299 -612.502 -8.36299 8.36299 1.75 0.00286723 0.00246462 0.528956 0.460872 64 21092 45 1.32347e+07 5.40755e+06 1.90554e+06 3937.06 82.70 3.05769 2.69656 54502 494576 -1 16584 25 16717 18815 4090813 849958 0 0 4090813 849958 17824 17045 0 0 136104 127265 0 0 189472 147378 0 0 17825 17108 0 0 1875770 265447 0 0 1853818 275715 0 0 17824 0 0 1137 5986 5968 23849 1064 138 9.98022 9.98022 -1074.71 -9.98022 0 0 2.40101e+06 4960.76 0.69 0.96 0.36 -1 -1 0.69 0.192004 0.173955 710 646 608 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_34.v common 27.84 vpr 75.46 MiB 0.15 13608 -1 -1 1 0.50 -1 -1 37784 -1 -1 101 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77276 22 19 2997 2166 1 1733 152 22 22 484 mult_36 auto 38.2 MiB 3.99 11016 75.5 MiB 0.98 0.01 8.20359 -612.989 -8.20359 8.20359 1.93 0.00300193 0.00254959 0.274202 0.237821 66 20704 39 1.32347e+07 5.42203e+06 1.96511e+06 4060.15 13.39 1.56775 1.38816 54986 507526 -1 16623 24 15229 17233 3510468 738061 0 0 3510468 738061 16318 15557 0 0 129062 121858 0 0 175963 139490 0 0 16321 15645 0 0 1594801 215885 0 0 1578003 229626 0 0 16318 0 0 1114 4880 5713 22414 953 2 9.64792 9.64792 -1054.11 -9.64792 0 0 2.45963e+06 5081.88 1.09 1.45 0.39 -1 -1 1.09 0.368035 0.33623 729 665 627 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_35.v common 25.68 vpr 76.22 MiB 0.16 13844 -1 -1 1 0.53 -1 -1 36832 -1 -1 106 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78048 22 19 3101 2236 1 1798 157 22 22 484 mult_36 auto 38.8 MiB 3.54 11748 76.2 MiB 1.93 0.02 8.32889 -634.18 -8.32889 8.32889 1.75 0.00604862 0.005351 0.52849 0.468469 72 20808 32 1.32347e+07 5.49441e+06 2.11301e+06 4365.72 11.60 1.76526 1.57623 56918 551676 -1 17360 23 12772 14878 3121498 653933 0 0 3121498 653933 13673 12995 0 0 102559 96175 0 0 141758 112726 0 0 13674 13109 0 0 1421440 205421 0 0 1428394 213507 0 0 13673 0 0 926 6879 7036 18209 1258 75 10.1117 10.1117 -1103.59 -10.1117 0 0 2.64603e+06 5467.00 1.13 1.27 0.67 -1 -1 1.13 0.346943 0.316939 755 684 646 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_36.v common 50.47 vpr 76.41 MiB 0.16 13928 -1 -1 1 0.57 -1 -1 37304 -1 -1 107 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78248 22 19 3175 2293 1 1835 158 22 22 484 mult_36 auto 39.1 MiB 3.25 12781 76.4 MiB 1.36 0.03 8.44139 -676.284 -8.44139 8.44139 1.60 0.00907661 0.00819233 0.366266 0.322567 76 22477 49 1.32347e+07 5.50888e+06 2.20457e+06 4554.90 35.38 3.85479 3.48037 57882 574062 -1 18561 25 15277 17633 3650736 741168 0 0 3650736 741168 16462 15539 0 0 119504 112111 0 0 166512 128438 0 0 16464 15685 0 0 1666486 236571 0 0 1665308 232824 0 0 16462 0 0 1213 7285 6384 22946 1221 16 10.2448 10.2448 -1287.59 -10.2448 0 0 2.73077e+06 5642.09 1.27 1.59 0.72 -1 -1 1.27 0.430928 0.394496 773 703 665 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_37.v common 106.22 vpr 76.98 MiB 0.16 14292 -1 -1 1 0.60 -1 -1 37788 -1 -1 111 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78824 22 19 3280 2364 1 1905 163 24 24 576 mult_36 auto 39.6 MiB 3.64 12281 77.0 MiB 1.77 0.01 8.51829 -743.663 -8.51829 8.51829 2.56 0.0038858 0.00342315 0.568275 0.502601 64 23320 43 1.59675e+07 5.96278e+06 2.26035e+06 3924.22 91.74 3.76662 3.33902 64454 586630 -1 18470 25 16404 18951 3408789 711687 0 0 3408789 711687 17544 16673 0 0 133768 124864 0 0 183390 145237 0 0 17553 16765 0 0 1524503 203469 0 0 1532031 204679 0 0 17544 0 0 1168 10547 11390 50791 1467 33 9.99302 9.99302 -1075.61 -9.99302 0 0 2.84938e+06 4946.85 0.73 0.78 0.45 -1 -1 0.73 0.199904 0.180698 798 722 684 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_38.v common 48.97 vpr 79.49 MiB 0.17 14324 -1 -1 1 0.62 -1 -1 38392 -1 -1 113 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81400 22 19 3354 2421 1 1940 165 24 24 576 mult_36 auto 40.3 MiB 5.37 13705 77.4 MiB 1.83 0.03 8.63069 -824.429 -8.63069 8.63069 1.64 0.00675512 0.00599743 0.485943 0.425498 78 22121 40 1.59675e+07 5.99174e+06 2.67122e+06 4637.53 30.77 3.7313 3.33133 69630 706637 -1 19154 24 14240 16585 2997885 593944 0 0 2997885 593944 15260 14462 0 0 110819 103295 0 0 155935 120645 0 0 15261 14593 0 0 1353278 172096 0 0 1347332 168853 0 0 15260 0 0 1044 6915 7121 20778 1350 133 9.82202 9.82202 -1310.71 -9.82202 0 0 3.35110e+06 5817.88 1.29 1.34 1.06 -1 -1 1.29 0.405284 0.369422 818 741 703 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_39.v common 46.95 vpr 79.89 MiB 0.18 14640 -1 -1 1 0.62 -1 -1 38084 -1 -1 117 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81812 22 19 3457 2490 1 2006 169 24 24 576 mult_36 auto 40.7 MiB 4.29 13303 78.0 MiB 1.36 0.02 8.58539 -842.059 -8.58539 8.58539 1.81 0.00427683 0.00376652 0.421349 0.373772 74 22181 33 1.59675e+07 6.04964e+06 2.56259e+06 4448.94 31.08 3.85718 3.46372 67906 667765 -1 19078 24 15586 17760 3458932 696645 0 0 3458932 696645 16701 15846 0 0 122219 114511 0 0 173138 132741 0 0 16703 16007 0 0 1568910 209816 0 0 1561261 207724 0 0 16701 0 0 1141 5281 6293 22831 1080 14 9.88952 9.88952 -1345.91 -9.88952 0 0 3.19068e+06 5539.38 1.48 1.45 0.82 -1 -1 1.48 0.437291 0.39993 842 760 722 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_40.v common 86.94 vpr 78.18 MiB 0.18 14708 -1 -1 1 0.63 -1 -1 38432 -1 -1 120 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80060 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 41.2 MiB 5.07 13036 78.2 MiB 1.23 0.02 8.45419 -831.231 -8.45419 8.45419 1.80 0.00363514 0.00308978 0.321352 0.277083 70 22560 29 1.59675e+07 6.09306e+06 2.45377e+06 4260.01 71.02 3.18682 2.80804 66754 640332 -1 19265 25 16061 18668 3538769 751661 0 0 3538769 751661 17382 16420 0 0 133798 125278 0 0 185280 145226 0 0 17386 16508 0 0 1614577 221733 0 0 1570346 226496 0 0 17382 0 0 1347 8252 7983 28477 1340 174 9.81282 9.81282 -1305.19 -9.81282 0 0 3.09179e+06 5367.68 1.36 1.13 0.78 -1 -1 1.36 0.313637 0.287964 862 779 741 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_41.v common 37.11 vpr 78.67 MiB 0.31 15060 -1 -1 1 0.65 -1 -1 37896 -1 -1 122 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80560 22 19 3634 2616 1 2109 175 24 24 576 mult_36 auto 41.7 MiB 4.94 13522 78.7 MiB 2.44 0.03 8.53849 -836.13 -8.53849 8.53849 2.44 0.0078741 0.00693777 0.662334 0.533943 70 23859 37 1.59675e+07 6.51802e+06 2.45377e+06 4260.01 17.84 2.63859 2.30697 66754 640332 -1 20087 24 17696 20339 3636874 757647 0 0 3636874 757647 19093 18069 0 0 141981 132870 0 0 196499 153374 0 0 19119 18197 0 0 1628341 216780 0 0 1631841 218357 0 0 19093 0 0 1425 9535 10281 50631 1289 126 9.78602 9.78602 -1384.93 -9.78602 0 0 3.09179e+06 5367.68 1.53 1.64 0.83 -1 -1 1.53 0.494554 0.451908 886 798 760 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_42.v common 115.40 vpr 79.23 MiB 0.20 15224 -1 -1 1 0.73 -1 -1 37548 -1 -1 125 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81136 22 19 3708 2673 1 2146 178 24 24 576 mult_36 auto 42.3 MiB 6.17 13720 79.2 MiB 2.06 0.03 8.41799 -828.567 -8.41799 8.41799 2.44 0.00803639 0.00694575 0.65868 0.58157 66 25238 41 1.59675e+07 6.56144e+06 2.33135e+06 4047.49 96.33 5.07893 4.51834 65030 601923 -1 20211 25 17799 20512 3917564 811811 0 0 3917564 811811 19178 18127 0 0 144532 136066 0 0 205511 159414 0 0 19194 18260 0 0 1764748 240090 0 0 1764401 239854 0 0 19178 0 0 1407 8959 9372 35609 1376 2 9.92122 9.92122 -1402.93 -9.92122 0 0 2.91907e+06 5067.82 1.67 1.13 0.55 -1 -1 1.67 0.298749 0.271083 906 817 779 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_43.v common 37.81 vpr 79.52 MiB 0.28 15452 -1 -1 1 0.74 -1 -1 38936 -1 -1 129 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81424 22 19 3810 2741 1 2211 182 24 24 576 mult_36 auto 42.5 MiB 5.91 15182 79.5 MiB 2.11 0.03 8.70475 -847.982 -8.70475 8.70475 2.57 0.00761795 0.0066442 0.584971 0.513334 68 26353 39 1.59675e+07 6.61934e+06 2.39371e+06 4155.74 17.80 2.88647 2.57584 65606 615345 -1 21386 26 16065 18609 3449770 726656 0 0 3449770 726656 17368 16328 0 0 134012 126249 0 0 180335 144455 0 0 17372 16437 0 0 1541973 211098 0 0 1558710 212089 0 0 17368 0 0 1330 7312 7531 24429 1275 60 10.3763 10.3763 -1440.62 -10.3763 0 0 2.98162e+06 5176.42 1.19 1.63 0.49 -1 -1 1.19 0.501333 0.4561 930 836 798 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_44.v common 35.29 vpr 80.36 MiB 0.37 15484 -1 -1 1 0.72 -1 -1 38308 -1 -1 132 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82288 22 19 3884 2798 1 2252 185 24 24 576 mult_36 auto 43.1 MiB 5.67 14741 80.4 MiB 1.38 0.02 8.80515 -846.092 -8.80515 8.80515 2.92 0.00400288 0.00344467 0.368232 0.316908 68 27010 41 1.59675e+07 6.66277e+06 2.39371e+06 4155.74 16.05 2.25575 1.99282 65606 615345 -1 21281 24 16894 19389 3776684 795847 0 0 3776684 795847 18163 17168 0 0 141557 133427 0 0 187060 152049 0 0 18165 17292 0 0 1679859 236594 0 0 1731880 239317 0 0 18163 0 0 1297 6914 6776 25002 1280 28 10.1037 10.1037 -1274.18 -10.1037 0 0 2.98162e+06 5176.42 1.34 1.82 0.50 -1 -1 1.34 0.558797 0.508178 949 855 817 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_45.v common 31.99 vpr 80.46 MiB 0.23 15724 -1 -1 1 0.69 -1 -1 40004 -1 -1 135 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82396 22 19 3989 2869 1 2317 189 24 24 576 mult_36 auto 43.5 MiB 6.06 15307 80.5 MiB 2.03 0.02 8.58375 -899.572 -8.58375 8.58375 1.61 0.00432379 0.00368273 0.530959 0.466173 74 25426 50 1.59675e+07 7.1022e+06 2.56259e+06 4448.94 12.54 2.04049 1.8053 67906 667765 -1 21828 25 17197 20383 3509109 723161 0 0 3509109 723161 18491 17525 0 0 134309 125694 0 0 192347 147763 0 0 18494 17654 0 0 1562858 207920 0 0 1582610 206605 0 0 18491 0 0 1321 9870 10180 25464 1930 241 10.0535 10.0535 -1410.54 -10.0535 0 0 3.19068e+06 5539.38 1.47 1.48 0.88 -1 -1 1.47 0.433339 0.394376 975 874 836 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_46.v common 58.24 vpr 85.49 MiB 0.21 16072 -1 -1 1 0.73 -1 -1 40188 -1 -1 136 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87540 22 19 4063 2926 1 2354 190 24 24 576 mult_36 auto 43.8 MiB 6.54 15749 80.9 MiB 1.39 0.03 8.58249 -857.872 -8.58249 8.58249 1.69 0.00831376 0.00362048 0.367942 0.316681 78 25387 44 1.59675e+07 7.11667e+06 2.67122e+06 4637.53 39.23 5.53895 4.96321 69630 706637 -1 21867 25 15871 18384 3403674 704952 0 0 3403674 704952 17148 16126 0 0 137200 128744 0 0 186568 148195 0 0 17148 16200 0 0 1505899 201283 0 0 1539711 194404 0 0 17148 0 0 1299 5898 7717 24207 1284 79 9.61362 9.61362 -1431.18 -9.61362 0 0 3.35110e+06 5817.88 1.42 1.45 0.88 -1 -1 1.42 0.47328 0.431266 993 893 855 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_47.v common 57.14 vpr 85.05 MiB 0.22 16412 -1 -1 1 0.72 -1 -1 40440 -1 -1 141 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87096 22 19 4167 2996 1 2420 195 24 24 576 mult_36 auto 44.2 MiB 6.32 16868 81.4 MiB 2.49 0.02 8.63695 -958.698 -8.63695 8.63695 2.28 0.00432587 0.00375989 0.658148 0.581993 74 28413 35 1.59675e+07 7.18905e+06 2.56259e+06 4448.94 35.29 5.26025 4.72208 67906 667765 -1 23928 26 18540 21810 4034882 822976 0 0 4034882 822976 19861 18863 0 0 144280 135090 0 0 205004 156756 0 0 19862 18966 0 0 1820641 246449 0 0 1825234 246852 0 0 19861 0 0 1352 10455 10721 27105 2005 219 10.0366 10.0366 -1447.59 -10.0366 0 0 3.19068e+06 5539.38 1.61 2.02 0.87 -1 -1 1.61 0.630165 0.574902 1019 912 874 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_48.v common 55.65 vpr 86.46 MiB 0.23 16632 -1 -1 1 0.78 -1 -1 40408 -1 -1 144 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88536 22 19 4241 3053 1 2458 198 24 24 576 mult_36 auto 44.8 MiB 7.20 15648 81.7 MiB 1.66 0.02 8.54649 -901.089 -8.54649 8.54649 1.87 0.00415738 0.00347771 0.449584 0.387511 76 24932 41 1.59675e+07 7.23248e+06 2.61600e+06 4541.67 34.47 4.94807 4.40935 68478 680951 -1 22058 22 16525 19320 3412584 743035 0 0 3412584 743035 17779 16757 0 0 133608 125670 0 0 183667 145096 0 0 17788 16889 0 0 1539918 217750 0 0 1519824 220873 0 0 17779 0 0 1279 8104 8780 24401 1608 440 9.49942 9.49942 -1724.72 -9.49942 0 0 3.24203e+06 5628.53 1.63 1.69 0.94 -1 -1 1.63 0.535029 0.488519 1038 931 893 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_49.v common 63.10 vpr 85.75 MiB 0.25 16988 -1 -1 1 0.54 -1 -1 40476 -1 -1 145 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87812 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 45.7 MiB 7.02 17914 82.1 MiB 1.69 0.02 8.67149 -899.265 -8.67149 8.67149 1.64 0.00461608 0.00403151 0.429009 0.370125 74 30787 42 1.59675e+07 7.64295e+06 2.56259e+06 4448.94 41.95 5.17793 4.62094 67906 667765 -1 25475 26 23355 27104 6018365 1227340 0 0 6018365 1227340 25276 23803 0 0 189936 178846 0 0 266305 203790 0 0 25279 23994 0 0 2732170 398735 0 0 2779399 398172 0 0 25276 0 0 1951 12562 12698 55015 1857 555 10.1993 10.1993 -1502.89 -10.1993 0 0 3.19068e+06 5539.38 1.58 2.62 0.81 -1 -1 1.58 0.652665 0.594088 1062 950 912 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_50.v common 44.52 vpr 82.24 MiB 0.22 17076 -1 -1 1 0.90 -1 -1 40632 -1 -1 148 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84212 22 19 4420 3181 1 2563 203 24 24 576 mult_36 auto 45.6 MiB 7.63 17842 82.2 MiB 2.45 0.04 9.01655 -961.77 -9.01655 9.01655 2.24 0.0102458 0.00880925 0.662029 0.576804 70 30643 40 1.59675e+07 7.68637e+06 2.45377e+06 4260.01 22.92 3.92034 3.50005 66754 640332 -1 25117 22 19334 22724 4115308 869383 0 0 4115308 869383 20786 19702 0 0 161847 150765 0 0 220265 175486 0 0 20790 19855 0 0 1848292 248660 0 0 1843328 254915 0 0 20786 0 0 1479 10032 11044 28696 2007 747 10.3265 10.3265 -1708.83 -10.3265 0 0 3.09179e+06 5367.68 1.35 1.61 0.82 -1 -1 1.35 0.434867 0.395675 1082 969 931 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_51.v common 64.15 vpr 86.34 MiB 0.25 17180 -1 -1 1 1.02 -1 -1 40784 -1 -1 152 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88408 22 19 4524 3251 1 2633 207 24 24 576 mult_36 auto 46.6 MiB 7.56 17656 83.3 MiB 1.40 0.02 8.50409 -1012.06 -8.50409 8.50409 2.50 0.00456334 0.00397978 0.383258 0.333346 74 29723 39 1.59675e+07 7.74428e+06 2.56259e+06 4448.94 41.51 5.39506 4.81971 67906 667765 -1 25531 25 22236 25618 4764084 952226 0 0 4764084 952226 23809 22450 0 0 167986 157411 0 0 244095 183837 0 0 23810 22627 0 0 2132945 285952 0 0 2171439 279949 0 0 23809 0 0 1601 9205 10987 32741 1833 213 10.215 10.215 -1591.21 -10.215 0 0 3.19068e+06 5539.38 1.59 2.12 0.87 -1 -1 1.59 0.620463 0.566285 1107 988 950 19 0 0 -k6_frac_2ripple_N8_22nm.xml fir_nopipe_52.v common 48.49 vpr 83.69 MiB 0.25 17324 -1 -1 1 1.03 -1 -1 38972 -1 -1 155 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85696 22 19 4598 3308 1 2667 210 24 24 576 mult_36 auto 46.9 MiB 8.33 18143 83.7 MiB 1.69 0.02 8.85319 -995.156 -8.85319 8.85319 2.88 0.00485901 0.00424828 0.428703 0.37186 74 31788 47 1.59675e+07 7.7877e+06 2.56259e+06 4448.94 24.09 3.36569 3.0092 67906 667765 -1 25922 30 20829 24352 4698218 964838 0 0 4698218 964838 22538 21138 0 0 150050 139964 0 0 238597 167585 0 0 22543 21290 0 0 2129961 308161 0 0 2134529 306700 0 0 22538 0 0 1733 10864 9637 32256 1861 165 10.0223 10.0223 -1669.6 -10.0223 0 0 3.19068e+06 5539.38 1.58 2.48 0.84 -1 -1 1.58 0.784918 0.715597 1127 1007 969 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_14.v common 17.39 vpr 70.05 MiB 0.08 10320 -1 -1 1 0.30 -1 -1 35056 -1 -1 65 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71736 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 32.4 MiB 0.45 5455 70.1 MiB 0.78 0.02 3.89606 -995.417 -3.89606 3.89606 0.92 0.00226979 0.00200545 0.197036 0.169206 64 10286 29 6.62819e+06 2.54052e+06 943753. 3686.54 11.44 1.56162 1.38473 27892 240595 -1 8612 20 3771 4299 609202 136076 0 0 609202 136076 4127 3868 0 0 28547 25537 0 0 39253 32491 0 0 4167 3911 0 0 265810 35414 0 0 267298 34855 0 0 4127 0 0 370 2178 1952 15558 197 1 4.27196 4.27196 -1190.62 -4.27196 0 0 1.19033e+06 4649.74 0.47 0.45 0.31 -1 -1 0.47 0.240355 0.222578 481 649 247 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_15.v common 16.41 vpr 71.05 MiB 0.09 10980 -1 -1 1 0.32 -1 -1 35880 -1 -1 72 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72752 22 19 2144 1789 1 1107 118 16 16 256 mult_36 auto 33.3 MiB 0.83 5718 71.0 MiB 0.60 0.01 3.89606 -1112.51 -3.89606 3.89606 0.76 0.00345065 0.00300181 0.201852 0.174713 56 12361 48 6.62819e+06 3.03953e+06 849745. 3319.32 10.47 1.88834 1.67592 26364 208198 -1 10180 21 4736 5399 1076168 305549 0 0 1076168 305549 5075 4823 0 0 40417 36838 0 0 54677 45737 0 0 5132 4880 0 0 485835 105849 0 0 485032 107422 0 0 5075 0 0 357 2950 2997 20823 340 25 4.27196 4.27196 -1351.76 -4.27196 0 0 1.04740e+06 4091.43 0.26 0.34 0.22 -1 -1 0.26 0.117796 0.107071 521 704 266 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_16.v common 37.26 vpr 71.09 MiB 0.08 10672 -1 -1 1 0.33 -1 -1 35828 -1 -1 74 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72796 22 19 2218 1846 1 1153 120 16 16 256 mult_36 auto 33.2 MiB 0.86 6289 71.1 MiB 0.76 0.01 3.89606 -1149.49 -3.89606 3.89606 0.63 0.00413226 0.00361266 0.287216 0.255322 56 14077 34 6.62819e+06 3.06896e+06 849745. 3319.32 30.94 2.62439 2.32106 26364 208198 -1 11084 20 5001 5670 1037995 245468 0 0 1037995 245468 5487 5107 0 0 44132 40293 0 0 57444 48949 0 0 5543 5204 0 0 464443 71688 0 0 460946 74227 0 0 5487 0 0 501 3163 3408 25573 208 1 4.27196 4.27196 -1398.88 -4.27196 0 0 1.04740e+06 4091.43 0.40 0.70 0.26 -1 -1 0.40 0.335422 0.309857 540 723 285 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_17.v common 15.64 vpr 73.00 MiB 0.10 11720 -1 -1 1 0.30 -1 -1 36720 -1 -1 83 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74748 22 19 2536 2130 1 1255 129 16 16 256 mult_36 auto 35.6 MiB 1.00 6827 73.0 MiB 0.78 0.01 3.89606 -1296.1 -3.89606 3.89606 0.91 0.00459908 0.00406656 0.289015 0.255157 60 13881 31 6.62819e+06 3.20141e+06 890343. 3477.90 8.45 1.75569 1.5757 27128 224764 -1 10875 19 5135 5905 916034 212668 0 0 916034 212668 5450 5192 0 0 43390 39459 0 0 54177 46582 0 0 5472 5251 0 0 405762 56621 0 0 401783 59563 0 0 5450 0 0 331 2592 2661 6611 555 17 4.27196 4.27196 -1546.11 -4.27196 0 0 1.11577e+06 4358.47 0.44 0.60 0.28 -1 -1 0.44 0.213629 0.195903 617 851 304 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_18.v common 17.18 vpr 73.36 MiB 0.10 11712 -1 -1 1 0.38 -1 -1 36768 -1 -1 86 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75116 22 19 2610 2187 1 1302 132 16 16 256 mult_36 auto 35.9 MiB 0.97 7491 73.4 MiB 0.67 0.01 3.89606 -1345.56 -3.89606 3.89606 0.84 0.00227433 0.00194166 0.223129 0.193721 66 15279 37 6.62819e+06 3.24555e+06 974584. 3806.97 10.30 2.0282 1.8139 28148 247068 -1 11466 18 4897 5602 888829 200765 0 0 888829 200765 5278 4983 0 0 40041 36203 0 0 51677 43918 0 0 5316 5044 0 0 395442 56492 0 0 391075 54125 0 0 5278 0 0 396 3213 3451 22596 350 2 4.27196 4.27196 -1580.71 -4.27196 0 0 1.22072e+06 4768.46 0.48 0.54 0.31 -1 -1 0.48 0.253127 0.230615 636 870 323 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_19.v common 14.68 vpr 74.09 MiB 0.08 12176 -1 -1 1 0.38 -1 -1 36872 -1 -1 91 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75872 22 19 2778 2321 1 1398 138 16 16 256 mult_36 auto 36.6 MiB 0.99 7954 74.1 MiB 0.83 0.02 3.89606 -1429.01 -3.89606 3.89606 0.88 0.00553068 0.00489857 0.259951 0.22571 68 14511 31 6.62819e+06 3.71513e+06 1.00038e+06 3907.74 7.23 1.81584 1.60711 28404 252462 -1 11685 17 5436 6171 874974 213327 0 0 874974 213327 5728 5493 0 0 46380 42485 0 0 60510 51115 0 0 5734 5535 0 0 380579 53996 0 0 376043 54703 0 0 5728 0 0 309 2035 2324 6955 509 49 4.27196 4.27196 -1708.86 -4.27196 0 0 1.24648e+06 4869.04 0.49 0.57 0.32 -1 -1 0.49 0.250063 0.227989 676 925 342 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_20.v common 21.54 vpr 74.39 MiB 0.10 12244 -1 -1 1 0.44 -1 -1 36836 -1 -1 93 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76172 22 19 2852 2378 1 1440 140 16 16 256 mult_36 auto 37.2 MiB 1.05 8088 74.4 MiB 0.89 0.02 3.89606 -1432.9 -3.89606 3.89606 0.95 0.00688576 0.00625788 0.292188 0.25848 68 15219 44 6.62819e+06 3.74456e+06 1.00038e+06 3907.74 13.99 2.94344 2.55266 28404 252462 -1 12027 16 5268 6092 844988 197290 0 0 844988 197290 5599 5333 0 0 43229 39134 0 0 55078 46791 0 0 5604 5379 0 0 363178 49611 0 0 372300 51042 0 0 5599 0 0 347 2255 2518 7158 544 11 4.27196 4.27196 -1695.63 -4.27196 0 0 1.24648e+06 4869.04 0.46 0.52 0.31 -1 -1 0.46 0.242593 0.222237 695 944 361 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_21.v common 17.81 vpr 75.44 MiB 0.13 12832 -1 -1 1 0.46 -1 -1 37372 -1 -1 97 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77252 22 19 3057 2549 1 1542 144 16 16 256 mult_36 auto 38.1 MiB 1.21 8730 75.4 MiB 1.14 0.02 4.02136 -1577.56 -4.02136 4.02136 0.89 0.0059371 0.00524646 0.356632 0.308802 70 15517 36 6.62819e+06 3.80343e+06 1.02522e+06 4004.78 9.27 2.27929 2.03755 28912 262511 -1 13063 19 5713 6765 1030885 239892 0 0 1030885 239892 6035 5740 0 0 50245 45203 0 0 64205 54220 0 0 6039 5779 0 0 454635 65061 0 0 449726 63889 0 0 6035 0 0 342 3429 3768 7384 810 2 4.27196 4.27196 -1878.29 -4.27196 0 0 1.29210e+06 5047.26 0.47 0.72 0.33 -1 -1 0.47 0.348041 0.317307 742 1017 380 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_22.v common 19.19 vpr 76.10 MiB 0.10 12920 -1 -1 1 0.53 -1 -1 37716 -1 -1 100 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77928 22 19 3131 2606 1 1585 147 16 16 256 mult_36 auto 38.9 MiB 1.05 9937 76.1 MiB 1.09 0.02 4.02136 -1634.72 -4.02136 4.02136 0.93 0.00623312 0.00549252 0.367155 0.325157 72 19024 32 6.62819e+06 3.84757e+06 1.04740e+06 4091.43 10.58 2.65734 2.35201 29168 268476 -1 14853 16 6083 7149 1335544 289554 0 0 1335544 289554 6382 6133 0 0 50554 45635 0 0 66212 55447 0 0 6393 6173 0 0 603159 88629 0 0 602844 87537 0 0 6382 0 0 314 3622 3960 7616 842 55 4.52256 4.52256 -1980.38 -4.52256 0 0 1.31294e+06 5128.69 0.51 0.81 0.36 -1 -1 0.51 0.320106 0.296147 762 1036 399 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_23.v common 19.79 vpr 76.75 MiB 0.13 13260 -1 -1 1 0.52 -1 -1 37396 -1 -1 107 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78588 22 19 3301 2742 1 1683 155 18 18 324 mult_36 auto 39.6 MiB 1.05 9471 76.7 MiB 0.90 0.01 4.02136 -1706.28 -4.02136 4.02136 1.31 0.00332745 0.00287971 0.282956 0.244092 70 18248 49 8.18539e+06 4.34658e+06 1.34436e+06 4149.26 10.37 2.48841 2.22057 37264 347768 -1 14508 18 6224 7225 1157806 258991 0 0 1157806 258991 6590 6266 0 0 52027 47030 0 0 68145 57109 0 0 6596 6305 0 0 513501 70614 0 0 510947 71667 0 0 6590 0 0 382 3073 3583 8023 715 130 4.39726 4.39726 -2080.7 -4.39726 0 0 1.69344e+06 5226.66 0.71 0.82 0.43 -1 -1 0.71 0.409631 0.377029 802 1091 418 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_24.v common 21.56 vpr 77.33 MiB 0.13 13184 -1 -1 1 0.52 -1 -1 37940 -1 -1 109 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79184 22 19 3375 2799 1 1730 157 18 18 324 mult_36 auto 40.1 MiB 0.98 10319 77.3 MiB 1.38 0.02 3.77076 -1743.26 -3.77076 3.77076 1.22 0.00539014 0.00462703 0.46162 0.40546 68 19284 29 8.18539e+06 4.37601e+06 1.31159e+06 4048.11 12.86 3.44355 3.07871 36620 334356 -1 15345 18 6770 7825 1259917 277735 0 0 1259917 277735 7148 6820 0 0 56138 51103 0 0 71099 60765 0 0 7165 6859 0 0 558427 75744 0 0 559940 76444 0 0 7148 0 0 393 3382 3538 8828 763 24 4.39726 4.39726 -2102.6 -4.39726 0 0 1.63345e+06 5041.52 0.53 0.45 0.33 -1 -1 0.53 0.20548 0.188743 821 1110 437 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_25.v common 56.55 vpr 78.13 MiB 0.14 13788 -1 -1 1 0.58 -1 -1 37656 -1 -1 116 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80004 22 19 3615 3005 1 1835 164 18 18 324 mult_36 auto 40.9 MiB 1.12 10681 78.1 MiB 1.79 0.02 3.89606 -1905.11 -3.89606 3.89606 1.41 0.00743505 0.00657976 0.584767 0.531518 68 20567 41 8.18539e+06 4.47902e+06 1.31159e+06 4048.11 46.07 4.19652 3.71377 36620 334356 -1 16275 18 7004 7823 1366273 300388 0 0 1366273 300388 7282 7067 0 0 58913 53694 0 0 74652 63751 0 0 7285 7095 0 0 603806 85978 0 0 614335 82803 0 0 7282 0 0 296 2601 2394 8737 563 183 4.39726 4.39726 -2281.95 -4.39726 0 0 1.63345e+06 5041.52 0.66 0.82 0.41 -1 -1 0.66 0.386515 0.352625 877 1201 456 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_26.v common 30.28 vpr 78.40 MiB 0.15 13932 -1 -1 1 0.63 -1 -1 37692 -1 -1 118 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80280 22 19 3689 3062 1 1872 166 18 18 324 mult_36 auto 41.2 MiB 1.01 10842 78.4 MiB 1.65 0.02 3.77076 -1893.81 -3.77076 3.77076 1.07 0.00701359 0.006249 0.546476 0.481838 70 19569 29 8.18539e+06 4.50845e+06 1.34436e+06 4149.26 20.28 4.39581 3.89592 37264 347768 -1 16606 15 7094 8192 1381500 300240 0 0 1381500 300240 7451 7138 0 0 59124 53275 0 0 75979 64063 0 0 7457 7194 0 0 615239 83529 0 0 616250 85041 0 0 7451 0 0 374 3538 4044 9206 802 235 4.39726 4.39726 -2311.09 -4.39726 0 0 1.69344e+06 5226.66 0.72 0.81 0.43 -1 -1 0.72 0.375574 0.344892 896 1220 475 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_27.v common 56.32 vpr 79.54 MiB 0.15 14348 -1 -1 1 0.61 -1 -1 38508 -1 -1 126 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81452 22 19 3871 3210 1 1979 175 18 18 324 mult_36 auto 42.2 MiB 1.27 11433 79.5 MiB 1.93 0.03 3.89606 -1981.57 -3.89606 3.89606 1.32 0.00982682 0.00883509 0.66674 0.596514 68 22283 39 8.18539e+06 5.02217e+06 1.31159e+06 4048.11 45.86 5.58239 4.98135 36620 334356 -1 17472 19 7737 8725 1391939 311827 0 0 1391939 311827 8054 7795 0 0 63451 57858 0 0 80282 68464 0 0 8058 7828 0 0 609501 85506 0 0 622593 84376 0 0 8054 0 0 336 3248 3234 9504 729 247 4.27196 4.27196 -2338.39 -4.27196 0 0 1.63345e+06 5041.52 0.57 0.95 0.26 -1 -1 0.57 0.480331 0.437808 944 1275 494 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_28.v common 22.93 vpr 80.14 MiB 0.15 14540 -1 -1 1 0.66 -1 -1 38048 -1 -1 128 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82068 22 19 3945 3267 1 2024 177 18 18 324 mult_36 auto 43.1 MiB 1.23 11681 80.1 MiB 1.94 0.03 4.02136 -2037.61 -4.02136 4.02136 1.29 0.00914078 0.00817264 0.682278 0.611304 70 21620 31 8.18539e+06 5.0516e+06 1.34436e+06 4149.26 11.73 3.39794 3.03837 37264 347768 -1 17704 15 7541 8837 1442349 318893 0 0 1442349 318893 7945 7591 0 0 63705 57224 0 0 82471 69579 0 0 7958 7660 0 0 642725 87607 0 0 637545 89232 0 0 7945 0 0 422 4183 4696 9682 984 50 4.52256 4.52256 -2497.97 -4.52256 0 0 1.69344e+06 5226.66 0.62 0.92 0.43 -1 -1 0.62 0.425672 0.390191 962 1294 513 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_29.v common 33.07 vpr 81.32 MiB 0.16 14984 -1 -1 1 0.66 -1 -1 38856 -1 -1 135 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83272 22 19 4159 3447 1 2140 185 22 22 484 mult_36 auto 44.2 MiB 0.77 13379 81.3 MiB 1.64 0.02 3.89606 -2167.34 -3.89606 3.89606 3.22 0.00430869 0.00371591 0.547856 0.482984 68 26287 45 1.33067e+07 5.5506e+06 2.01763e+06 4168.66 20.02 4.6527 4.16532 55470 518816 -1 20287 19 8403 9886 1847263 392459 0 0 1847263 392459 8801 8457 0 0 70702 64302 0 0 90026 76613 0 0 8803 8517 0 0 835082 118823 0 0 833849 115747 0 0 8801 0 0 417 4419 5194 10888 1130 126 4.39726 4.39726 -2864.08 -4.39726 0 0 2.51205e+06 5190.18 0.91 0.78 0.54 -1 -1 0.91 0.297935 0.268282 1015 1367 532 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_30.v common 39.07 vpr 81.64 MiB 0.17 15064 -1 -1 1 0.66 -1 -1 40168 -1 -1 137 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83604 22 19 4233 3504 1 2179 187 22 22 484 mult_36 auto 44.4 MiB 1.51 13676 81.6 MiB 1.09 0.02 3.77076 -2120.46 -3.77076 3.77076 1.48 0.0041638 0.00356601 0.340077 0.29306 70 24321 28 1.33067e+07 5.58003e+06 2.06816e+06 4273.05 26.73 4.47673 3.97047 56434 539830 -1 20411 19 8458 9929 1954456 415180 0 0 1954456 415180 8936 8534 0 0 74645 67369 0 0 95807 81307 0 0 8940 8612 0 0 877213 123441 0 0 888915 125917 0 0 8936 0 0 493 4140 5694 11066 1080 68 4.39726 4.39726 -2673.53 -4.39726 0 0 2.60483e+06 5381.88 1.14 1.03 0.63 -1 -1 1.14 0.42542 0.387674 1034 1386 551 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_31.v common 24.03 vpr 83.41 MiB 0.17 15328 -1 -1 1 0.63 -1 -1 40440 -1 -1 143 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85416 22 19 4410 3647 1 2283 193 22 22 484 mult_36 auto 45.4 MiB 1.01 14460 83.4 MiB 1.59 0.03 3.89606 -2213.07 -3.89606 3.89606 2.13 0.0078167 0.00685212 0.515858 0.450597 70 25164 41 1.33067e+07 5.66832e+06 2.06816e+06 4273.05 10.76 2.7806 2.47346 56434 539830 -1 21753 16 8661 9981 1804264 382134 0 0 1804264 382134 9008 8691 0 0 71874 64860 0 0 94355 79240 0 0 9009 8731 0 0 821766 106046 0 0 798252 114566 0 0 9008 0 0 366 4871 4429 10872 1019 296 4.52256 4.52256 -2872.8 -4.52256 0 0 2.60483e+06 5381.88 1.17 1.01 0.64 -1 -1 1.17 0.456602 0.416387 1077 1441 570 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_32.v common 111.25 vpr 83.61 MiB 0.20 15600 -1 -1 1 0.71 -1 -1 39248 -1 -1 145 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85620 22 19 4484 3704 1 2328 195 22 22 484 mult_36 auto 45.8 MiB 1.38 14008 83.6 MiB 2.13 0.03 3.77076 -2263.87 -3.77076 3.77076 2.17 0.00955446 0.00852055 0.685871 0.607844 68 27330 44 1.33067e+07 5.69776e+06 2.01763e+06 4168.66 96.93 6.68193 5.92565 55470 518816 -1 20985 23 9698 11440 1886849 406909 0 0 1886849 406909 10230 9776 0 0 83533 76164 0 0 105343 89884 0 0 10239 9859 0 0 824309 111092 0 0 853195 110134 0 0 10230 0 0 553 5549 6159 12903 1277 175 4.39726 4.39726 -2885.9 -4.39726 0 0 2.51205e+06 5190.18 1.18 0.98 0.66 -1 -1 1.18 0.393671 0.355609 1096 1460 589 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_33.v common 98.96 vpr 85.14 MiB 0.16 16572 -1 -1 1 0.88 -1 -1 41108 -1 -1 157 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87184 22 19 4843 4029 1 2439 208 22 22 484 mult_36 auto 47.4 MiB 1.38 14297 85.1 MiB 2.50 0.03 3.77076 -2409.32 -3.77076 3.77076 2.15 0.00985288 0.00860096 0.792931 0.694721 68 26380 24 1.33067e+07 6.27034e+06 2.01763e+06 4168.66 83.70 6.45042 5.69365 55470 518816 -1 21476 16 8831 10383 1694194 370818 0 0 1694194 370818 9327 8933 0 0 77354 70476 0 0 97191 83430 0 0 9339 8998 0 0 739864 101333 0 0 761119 97648 0 0 9327 0 0 512 5265 5661 11757 1118 246 4.39726 4.39726 -3176.06 -4.39726 0 0 2.51205e+06 5190.18 1.20 1.06 0.62 -1 -1 1.20 0.498756 0.457465 1185 1606 608 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_34.v common 30.86 vpr 84.64 MiB 0.19 16716 -1 -1 1 0.85 -1 -1 41136 -1 -1 160 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86676 22 19 4917 4086 1 2483 211 22 22 484 mult_36 auto 47.8 MiB 1.41 16311 84.6 MiB 2.16 0.03 4.02136 -2519.45 -4.02136 4.02136 1.93 0.0100641 0.00886295 0.65816 0.574746 74 29743 47 1.33067e+07 6.31449e+06 2.15943e+06 4461.62 16.32 3.34816 2.96503 57402 562966 -1 24396 16 9887 11478 2397145 481602 0 0 2397145 481602 10452 9998 0 0 77068 69668 0 0 103246 84759 0 0 10460 10063 0 0 1092564 150853 0 0 1103355 156261 0 0 10452 0 0 584 5522 5161 13375 1089 206 4.52256 4.52256 -3217.23 -4.52256 0 0 2.68771e+06 5553.12 1.16 1.19 0.67 -1 -1 1.16 0.43463 0.394295 1205 1625 627 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_35.v common 44.55 vpr 85.85 MiB 0.29 16912 -1 -1 1 0.95 -1 -1 41276 -1 -1 163 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87908 22 19 5093 4228 1 2586 214 22 22 484 mult_36 auto 49.3 MiB 0.95 17244 85.8 MiB 2.40 0.03 3.89606 -2602.71 -3.89606 3.89606 2.11 0.0105519 0.00935272 0.77854 0.688042 76 29083 31 1.33067e+07 6.35863e+06 2.20457e+06 4554.90 30.06 5.83623 5.20282 57882 574062 -1 24927 17 9741 11134 2136889 442932 0 0 2136889 442932 10225 9809 0 0 77925 70916 0 0 102832 85935 0 0 10230 9868 0 0 961988 132020 0 0 973689 134384 0 0 10225 0 0 500 4623 4964 12809 970 60 4.52256 4.52256 -3330.35 -4.52256 0 0 2.73077e+06 5642.09 1.23 1.13 0.70 -1 -1 1.23 0.518624 0.471458 1248 1680 646 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_36.v common 50.24 vpr 86.00 MiB 0.26 17048 -1 -1 1 0.88 -1 -1 41552 -1 -1 165 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88060 22 19 5167 4285 1 2630 216 22 22 484 mult_36 auto 49.3 MiB 1.45 15944 86.0 MiB 3.15 0.03 4.02136 -2636.64 -4.02136 4.02136 2.27 0.0102348 0.0090309 1.05061 0.921377 74 29769 46 1.33067e+07 6.38806e+06 2.15943e+06 4461.62 33.65 7.8433 6.93586 57402 562966 -1 24294 17 10288 11994 1977380 411307 0 0 1977380 411307 10809 10347 0 0 78833 71139 0 0 106254 87472 0 0 10811 10404 0 0 877214 117611 0 0 893459 114334 0 0 10809 0 0 542 5212 6416 13715 1234 3 4.27196 4.27196 -3335.05 -4.27196 0 0 2.68771e+06 5553.12 1.29 1.21 0.77 -1 -1 1.29 0.502098 0.455189 1267 1699 665 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_37.v common 44.95 vpr 91.41 MiB 0.21 17644 -1 -1 1 1.06 -1 -1 40432 -1 -1 173 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93600 22 19 5380 4464 1 2739 225 24 24 576 mult_36 auto 50.5 MiB 1.02 17893 87.0 MiB 2.89 0.03 4.02136 -2915.58 -4.02136 4.02136 2.67 0.010447 0.0091824 0.906969 0.794917 74 30118 32 1.60519e+07 6.90179e+06 2.56259e+06 4448.94 28.46 4.83616 4.25753 67906 667765 -1 25456 17 9846 11504 2099895 440259 0 0 2099895 440259 10315 9907 0 0 78089 70269 0 0 103183 85609 0 0 10320 9969 0 0 950598 131339 0 0 947390 133166 0 0 10315 0 0 486 5822 6038 12896 1247 506 4.64786 4.64786 -3554.28 -4.64786 0 0 3.19068e+06 5539.38 1.41 1.27 0.81 -1 -1 1.41 0.572674 0.520589 1321 1772 684 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_38.v common 46.64 vpr 92.64 MiB 0.32 17640 -1 -1 1 1.03 -1 -1 41816 -1 -1 176 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94868 22 19 5454 4521 1 2784 228 24 24 576 mult_36 auto 51.0 MiB 1.34 17465 87.5 MiB 3.03 0.04 4.14666 -2931.9 -4.14666 4.14666 2.35 0.0113849 0.00999837 0.908699 0.795723 76 30411 23 1.60519e+07 6.94594e+06 2.61600e+06 4541.67 30.71 5.63886 5.01513 68478 680951 -1 25523 18 9919 11342 2160619 459180 0 0 2160619 459180 10413 9961 0 0 79415 72231 0 0 104673 87490 0 0 10416 10009 0 0 986893 136169 0 0 968809 143320 0 0 10413 0 0 512 4429 5752 13234 963 21 4.39726 4.39726 -3523.92 -4.39726 0 0 3.24203e+06 5628.53 1.14 1.00 0.55 -1 -1 1.14 0.453461 0.412707 1340 1791 703 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_39.v common 50.37 vpr 92.53 MiB 0.32 18104 -1 -1 1 0.97 -1 -1 41096 -1 -1 180 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94752 22 19 5629 4662 1 2882 232 24 24 576 mult_36 auto 51.6 MiB 1.18 18842 88.0 MiB 3.16 0.04 4.27196 -3070.83 -4.27196 4.27196 2.73 0.0108896 0.00955986 1.17827 1.05124 80 30368 37 1.60519e+07 7.0048e+06 2.72095e+06 4723.87 33.27 6.37045 5.65441 70206 720185 -1 26825 16 10118 11683 2144155 438880 0 0 2144155 438880 10612 10173 0 0 81689 73425 0 0 107536 89518 0 0 10613 10241 0 0 966653 129297 0 0 967052 126226 0 0 10612 0 0 511 4565 6326 13507 1110 287 4.52256 4.52256 -3638.71 -4.52256 0 0 3.41546e+06 5929.62 1.48 1.44 0.82 -1 -1 1.48 0.568341 0.51646 1381 1846 722 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_40.v common 143.79 vpr 88.71 MiB 0.25 18176 -1 -1 1 1.14 -1 -1 41808 -1 -1 182 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90840 22 19 5703 4719 1 2929 234 24 24 576 mult_36 auto 52.2 MiB 1.61 19511 88.7 MiB 3.04 0.04 4.02136 -3137.4 -4.02136 4.02136 2.66 0.0117049 0.0103563 0.921947 0.808602 68 37642 48 1.60519e+07 7.03423e+06 2.39371e+06 4155.74 126.24 6.40654 5.62069 65606 615345 -1 28472 28 11875 13800 2590467 581457 0 0 2590467 581457 12457 11975 0 0 94374 85530 0 0 126052 105133 0 0 12460 12034 0 0 1182478 183379 0 0 1162646 183406 0 0 12457 0 0 604 6749 7018 15727 1394 223 4.52256 4.52256 -3881.14 -4.52256 0 0 2.98162e+06 5176.42 0.97 1.54 0.75 -1 -1 0.97 0.727922 0.652183 1400 1865 741 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_41.v common 48.20 vpr 95.12 MiB 0.26 18648 -1 -1 1 1.11 -1 -1 41172 -1 -1 190 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 97404 22 19 5950 4932 1 3039 243 24 24 576 mult_36 auto 53.3 MiB 1.82 20898 89.6 MiB 2.87 0.04 4.27196 -3240.13 -4.27196 4.27196 2.70 0.0123164 0.0109529 0.855169 0.751262 80 32462 18 1.60519e+07 7.54795e+06 2.72095e+06 4723.87 29.66 5.61631 4.98043 70206 720185 -1 28437 15 10116 11695 2128957 434936 0 0 2128957 434936 10631 10217 0 0 79659 71255 0 0 105510 87325 0 0 10636 10262 0 0 948124 129589 0 0 974397 126288 0 0 10631 0 0 533 5361 5598 13641 1098 35 4.89846 4.89846 -4153.72 -4.89846 0 0 3.41546e+06 5929.62 1.64 1.18 0.89 -1 -1 1.64 0.5755 0.530019 1461 1956 760 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_42.v common 56.58 vpr 95.61 MiB 0.26 18800 -1 -1 1 1.27 -1 -1 42796 -1 -1 193 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 97900 22 19 6024 4989 1 3082 246 24 24 576 mult_36 auto 53.8 MiB 1.86 19813 90.1 MiB 3.93 0.05 4.02136 -3217.23 -4.02136 4.02136 2.59 0.0179972 0.0165635 1.1017 0.986322 80 31525 34 1.60519e+07 7.5921e+06 2.72095e+06 4723.87 36.21 7.68783 6.85918 70206 720185 -1 27937 19 10608 12332 2251218 471815 0 0 2251218 471815 11213 10704 0 0 86367 77769 0 0 112983 94343 0 0 11216 10767 0 0 1010535 140013 0 0 1018904 138219 0 0 11213 0 0 623 5010 6693 14406 1190 79 4.39726 4.39726 -3782.5 -4.39726 0 0 3.41546e+06 5929.62 1.67 1.42 0.95 -1 -1 1.67 0.621753 0.56138 1480 1975 779 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_43.v common 43.30 vpr 90.86 MiB 0.25 19212 -1 -1 1 1.19 -1 -1 42864 -1 -1 199 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93044 22 19 6198 5129 1 3181 252 24 24 576 mult_36 auto 54.7 MiB 1.90 20655 90.9 MiB 4.49 0.07 4.14666 -3346.84 -4.14666 4.14666 3.53 0.0376913 0.0362513 1.36885 1.21488 74 37107 44 1.60519e+07 7.68039e+06 2.56259e+06 4448.94 21.79 6.43418 5.74952 67906 667765 -1 30308 18 12350 14284 2757615 577678 0 0 2757615 577678 12936 12444 0 0 99862 90795 0 0 132920 109679 0 0 12936 12507 0 0 1242055 178152 0 0 1256906 174101 0 0 12936 0 0 603 7140 6756 16422 1377 673 4.39726 4.39726 -4239.22 -4.39726 0 0 3.19068e+06 5539.38 1.36 1.38 0.86 -1 -1 1.36 0.65656 0.60001 1523 2030 798 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_44.v common 58.27 vpr 97.99 MiB 0.24 19208 -1 -1 1 1.29 -1 -1 43072 -1 -1 200 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100344 22 19 6272 5186 1 3226 253 24 24 576 mult_36 auto 55.4 MiB 1.92 21784 91.5 MiB 5.23 0.04 4.14666 -3366.96 -4.14666 4.14666 2.41 0.0101334 0.00901705 1.69125 1.42688 82 34125 47 1.60519e+07 7.69511e+06 2.78508e+06 4835.20 36.56 8.54377 7.53285 70778 734779 -1 29262 17 11360 13038 2199998 461194 0 0 2199998 461194 11919 11454 0 0 86116 77331 0 0 114078 94530 0 0 11921 11519 0 0 993344 130955 0 0 982620 135405 0 0 11919 0 0 576 5130 5587 15034 1168 385 4.52256 4.52256 -3919.58 -4.52256 0 0 3.48632e+06 6052.64 1.67 1.40 0.94 -1 -1 1.67 0.587719 0.531426 1542 2049 817 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_45.v common 54.28 vpr 108.11 MiB 0.40 19604 -1 -1 1 1.18 -1 -1 43444 -1 -1 208 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 110704 22 19 6485 5365 1 3338 262 24 24 576 mult_36 auto 56.3 MiB 1.92 22644 92.5 MiB 2.72 0.04 4.14666 -3504.85 -4.14666 4.14666 2.27 0.0117332 0.0102194 0.788064 0.690696 88 34129 22 1.60519e+07 8.20883e+06 2.98162e+06 5176.42 35.40 6.833 6.06974 73078 787199 -1 30740 16 11435 13510 2273906 471597 0 0 2273906 471597 12007 11502 0 0 89268 80016 0 0 123713 100826 0 0 12014 11596 0 0 1025435 131877 0 0 1011469 135780 0 0 12007 0 0 590 7553 7281 15137 1556 511 4.64786 4.64786 -4239.83 -4.64786 0 0 3.70823e+06 6437.90 1.55 1.21 1.00 -1 -1 1.55 0.550439 0.498115 1593 2122 836 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_46.v common 51.83 vpr 98.26 MiB 0.43 20052 -1 -1 1 1.26 -1 -1 43436 -1 -1 210 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100620 22 19 6559 5422 1 3380 264 24 24 576 mult_36 auto 56.6 MiB 1.97 22795 92.6 MiB 3.12 0.05 4.14666 -3537.9 -4.14666 4.14666 2.28 0.0117893 0.0101713 0.872019 0.759247 78 37117 50 1.60519e+07 8.23826e+06 2.67122e+06 4637.53 33.01 7.1482 6.33385 69630 706637 -1 31531 17 12527 14798 2555511 549221 0 0 2555511 549221 13191 12627 0 0 101510 91694 0 0 134624 111757 0 0 13194 12695 0 0 1141514 161812 0 0 1151478 158636 0 0 13191 0 0 682 7784 8593 16646 1701 669 4.39726 4.39726 -4226.25 -4.39726 0 0 3.35110e+06 5817.88 1.40 1.38 0.78 -1 -1 1.40 0.555274 0.504857 1613 2141 855 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_47.v common 56.26 vpr 109.41 MiB 0.17 20344 -1 -1 1 1.32 -1 -1 43708 -1 -1 216 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 112036 22 19 6735 5564 1 3477 270 24 24 576 mult_36 auto 57.5 MiB 2.09 24680 93.6 MiB 2.75 0.05 4.52256 -3782.14 -4.52256 4.52256 2.59 0.0135222 0.011944 0.766367 0.668755 82 40151 44 1.60519e+07 8.32656e+06 2.78508e+06 4835.20 36.60 6.67382 5.92495 70778 734779 -1 33310 16 12709 14582 2738720 561613 0 0 2738720 561613 13258 12793 0 0 98034 88135 0 0 130783 107316 0 0 13260 12858 0 0 1236344 171727 0 0 1247041 168784 0 0 13258 0 0 566 6601 7069 16362 1376 54 4.89846 4.89846 -4451.49 -4.89846 0 0 3.48632e+06 6052.64 1.25 1.44 0.93 -1 -1 1.25 0.75829 0.702063 1656 2196 874 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_48.v common 47.39 vpr 93.99 MiB 0.30 20388 -1 -1 1 1.30 -1 -1 43672 -1 -1 218 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96244 22 19 6809 5621 1 3526 272 24 24 576 mult_36 auto 57.8 MiB 2.03 23908 94.0 MiB 3.92 0.05 4.02136 -3693.79 -4.02136 4.02136 2.43 0.0122545 0.0106533 1.06699 0.922926 82 40663 46 1.60519e+07 8.35599e+06 2.78508e+06 4835.20 27.30 6.70518 5.90371 70778 734779 -1 32725 17 12567 14420 2628492 552991 0 0 2628492 552991 13190 12656 0 0 99962 90116 0 0 130310 108468 0 0 13194 12718 0 0 1193099 161456 0 0 1178737 167577 0 0 13190 0 0 645 6404 5811 16599 1285 706 4.52256 4.52256 -4726.77 -4.52256 0 0 3.48632e+06 6052.64 1.57 1.41 0.95 -1 -1 1.57 0.650293 0.59243 1674 2215 893 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_49.v common 63.87 vpr 97.84 MiB 0.28 20968 -1 -1 1 1.07 -1 -1 44064 -1 -1 228 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100184 22 19 7094 5872 1 3640 283 24 24 576 mult_36 auto 59.8 MiB 1.63 23816 97.8 MiB 4.37 0.06 4.27196 -3979.66 -4.27196 4.27196 2.67 0.0188282 0.0170599 1.36229 1.21272 78 41490 47 1.60519e+07 8.89916e+06 2.67122e+06 4637.53 43.17 8.07746 7.12879 69630 706637 -1 33616 16 12984 15090 2797542 567951 0 0 2797542 567951 13592 13057 0 0 101708 91026 0 0 135966 111883 0 0 13597 13111 0 0 1265761 171137 0 0 1266918 167737 0 0 13592 0 0 625 6998 7415 16785 1556 228 4.77316 4.77316 -4868.19 -4.77316 0 0 3.35110e+06 5817.88 1.59 1.65 0.89 -1 -1 1.59 0.736614 0.671917 1745 2324 912 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_50.v common 67.47 vpr 111.22 MiB 0.29 21188 -1 -1 1 1.53 -1 -1 43732 -1 -1 230 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 113888 22 19 7168 5929 1 3676 285 24 24 576 mult_36 auto 59.5 MiB 1.93 24753 95.9 MiB 4.51 0.06 4.14666 -3986.24 -4.14666 4.14666 2.39 0.0154272 0.0136461 1.54703 1.3815 84 41338 30 1.60519e+07 8.92859e+06 2.84938e+06 4946.85 45.20 9.11684 8.11356 71930 760447 -1 34036 18 12877 14990 2676930 541389 0 0 2676930 541389 13507 12964 0 0 99808 89990 0 0 130273 108351 0 0 13510 13044 0 0 1207771 160234 0 0 1212061 156806 0 0 13507 0 0 650 7728 8659 16822 1551 696 4.64786 4.64786 -4700.22 -4.64786 0 0 3.60864e+06 6265.01 1.58 2.13 1.01 -1 -1 1.58 0.927589 0.855554 1764 2343 931 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_51.v common 51.34 vpr 96.62 MiB 0.29 21416 -1 -1 1 1.61 -1 -1 44460 -1 -1 235 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98936 22 19 7344 6071 1 3782 290 24 24 576 mult_36 auto 60.7 MiB 1.81 26953 96.6 MiB 3.94 0.06 4.39726 -4060.21 -4.39726 4.39726 2.71 0.0177796 0.015997 1.18938 1.0653 88 42143 36 1.60519e+07 9.00217e+06 2.98162e+06 5176.42 29.81 8.75842 7.80646 73078 787199 -1 36249 18 13376 15456 2994147 604506 0 0 2994147 604506 13987 13462 0 0 102842 92226 0 0 139646 115134 0 0 13989 13543 0 0 1355590 187361 0 0 1368093 182780 0 0 13987 0 0 629 6629 8055 17576 1519 922 4.77316 4.77316 -5039.11 -4.77316 0 0 3.70823e+06 6437.90 1.76 1.95 1.01 -1 -1 1.76 0.903784 0.823937 1808 2398 950 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_pipe_52.v common 54.70 vpr 97.21 MiB 0.31 21532 -1 -1 1 1.62 -1 -1 44368 -1 -1 237 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99548 22 19 7418 6128 1 3828 292 24 24 576 mult_36 auto 61.4 MiB 2.13 25183 97.2 MiB 4.06 0.06 4.14666 -3993.8 -4.14666 4.14666 2.59 0.0140783 0.0123666 1.1056 0.965081 78 42609 33 1.60519e+07 9.0316e+06 2.67122e+06 4637.53 33.06 6.38951 5.63173 69630 706637 -1 35584 16 14122 16543 2974148 623128 0 0 2974148 623128 14827 14240 0 0 115003 103688 0 0 152499 126511 0 0 14831 14324 0 0 1339108 180311 0 0 1337880 184054 0 0 14827 0 0 723 8785 9664 18674 1786 820 4.52256 4.52256 -4766.31 -4.52256 0 0 3.35110e+06 5817.88 1.57 1.66 0.90 -1 -1 1.57 0.676216 0.614209 1827 2417 969 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_14.v common 14.79 vpr 66.29 MiB 0.07 9244 -1 -1 1 0.19 -1 -1 34080 -1 -1 43 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67880 22 19 1246 925 1 718 88 16 16 256 mult_36 auto 28.2 MiB 0.49 3935 66.3 MiB 0.54 0.01 7.03101 -320.951 -7.03101 7.03101 0.94 0.00227422 0.00199492 0.172154 0.151368 54 7598 31 6.62819e+06 2.21677e+06 829453. 3240.05 9.19 1.14747 1.03293 26108 202796 -1 6246 30 6107 6843 1306069 347543 0 0 1306069 347543 6843 6223 0 0 50695 48243 0 0 70909 54111 0 0 6874 6303 0 0 587540 118945 0 0 583208 113718 0 0 6843 0 0 755 3335 2885 37434 0 0 7.78353 7.78353 -418.187 -7.78353 0 0 1.02522e+06 4004.78 0.38 0.72 0.26 -1 -1 0.38 0.168387 0.153553 299 285 247 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_15.v common 17.21 vpr 66.61 MiB 0.06 9324 -1 -1 1 0.21 -1 -1 34720 -1 -1 46 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68208 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 28.8 MiB 0.53 4309 66.6 MiB 0.84 0.01 6.86185 -318.377 -6.86185 6.86185 0.82 0.00241537 0.0021082 0.267159 0.234995 56 8709 31 6.62819e+06 2.65692e+06 849745. 3319.32 11.20 1.4122 1.26407 26364 208198 -1 7175 38 9347 10495 2241356 621767 0 0 2241356 621767 10495 9635 0 0 75405 70778 0 0 113967 82462 0 0 10555 9708 0 0 1018669 225109 0 0 1012265 224075 0 0 10495 0 0 1176 6049 5031 57327 0 0 8.25203 8.25203 -469.107 -8.25203 0 0 1.04740e+06 4091.43 0.30 0.79 0.25 -1 -1 0.30 0.193958 0.177572 321 304 266 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_16.v common 16.82 vpr 66.92 MiB 0.09 9472 -1 -1 1 0.21 -1 -1 34640 -1 -1 48 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68528 22 19 1418 1046 1 821 94 16 16 256 mult_36 auto 29.0 MiB 0.55 4533 66.9 MiB 0.67 0.01 7.04201 -332.846 -7.04201 7.04201 0.88 0.00260814 0.00230112 0.208746 0.183424 56 8805 33 6.62819e+06 2.68636e+06 849745. 3319.32 10.88 1.47352 1.32383 26364 208198 -1 7200 24 6776 7744 1291063 323531 0 0 1291063 323531 7744 7029 0 0 60153 56491 0 0 79991 64841 0 0 7802 7088 0 0 559091 93700 0 0 576282 94382 0 0 7744 0 0 994 4383 3812 47503 0 0 8.75508 8.75508 -464.641 -8.75508 0 0 1.04740e+06 4091.43 0.39 0.59 0.26 -1 -1 0.39 0.158766 0.145413 340 323 285 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_17.v common 13.49 vpr 67.52 MiB 0.09 10004 -1 -1 1 0.26 -1 -1 34648 -1 -1 52 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69136 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 29.8 MiB 0.50 4914 67.5 MiB 0.93 0.01 7.54655 -377.521 -7.54655 7.54655 0.92 0.00143919 0.0012402 0.265568 0.233792 56 9847 38 6.62819e+06 2.74522e+06 849745. 3319.32 7.16 1.03386 0.928371 26364 208198 -1 8172 29 8511 9452 1620916 387505 0 0 1620916 387505 9452 8682 0 0 68373 64093 0 0 94361 74351 0 0 9498 8732 0 0 736595 115620 0 0 702637 116027 0 0 9452 0 0 967 6672 6211 60384 0 0 9.48072 9.48072 -559.343 -9.48072 0 0 1.04740e+06 4091.43 0.36 0.76 0.25 -1 -1 0.36 0.17097 0.156457 365 342 304 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_18.v common 13.57 vpr 68.23 MiB 0.09 10260 -1 -1 1 0.23 -1 -1 34816 -1 -1 55 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69872 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 30.5 MiB 0.53 5324 68.2 MiB 0.56 0.01 7.49539 -396.092 -7.49539 7.49539 0.94 0.00315309 0.00277913 0.143834 0.125291 56 10175 41 6.62819e+06 2.78937e+06 849745. 3319.32 7.43 1.08625 0.979818 26364 208198 -1 8820 25 8485 9392 1754146 399895 0 0 1754146 399895 9392 8760 0 0 73262 68935 0 0 96411 78553 0 0 9497 8844 0 0 780385 116312 0 0 785199 118491 0 0 9392 0 0 934 5700 5057 51989 0 0 9.29732 9.29732 -569.304 -9.29732 0 0 1.04740e+06 4091.43 0.33 0.87 0.25 -1 -1 0.33 0.205228 0.18844 383 361 323 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_19.v common 16.51 vpr 68.38 MiB 0.09 10708 -1 -1 1 0.26 -1 -1 35180 -1 -1 58 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70020 22 19 1688 1231 1 976 105 16 16 256 mult_36 auto 30.5 MiB 0.66 5689 68.4 MiB 0.78 0.01 7.48725 -407.023 -7.48725 7.48725 0.93 0.00331835 0.00294675 0.220875 0.19433 58 11164 50 6.62819e+06 3.22951e+06 871168. 3403.00 9.84 1.49116 1.33185 26872 219187 -1 9023 28 8283 9373 1575543 378918 0 0 1575543 378918 9140 8457 0 0 63141 59205 0 0 88321 68810 0 0 9174 8542 0 0 712447 117167 0 0 693320 116737 0 0 9140 0 0 884 3947 4133 33901 251 1 8.99658 8.99658 -560.549 -8.99658 0 0 1.09288e+06 4269.05 0.41 0.89 0.26 -1 -1 0.41 0.233085 0.214648 404 380 342 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_20.v common 21.82 vpr 68.94 MiB 0.09 10664 -1 -1 1 0.29 -1 -1 35112 -1 -1 59 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70592 22 19 1762 1288 1 1014 106 16 16 256 mult_36 auto 31.2 MiB 0.65 5969 68.9 MiB 1.01 0.01 7.3951 -425.079 -7.3951 7.3951 0.94 0.00243518 0.00219706 0.28939 0.255509 64 10985 45 6.62819e+06 3.24423e+06 943753. 3686.54 15.25 2.15536 1.93718 27892 240595 -1 8995 25 7632 8671 1307192 296614 0 0 1307192 296614 8671 7840 0 0 61282 57126 0 0 83018 66388 0 0 8722 7913 0 0 586842 78817 0 0 558657 78530 0 0 8671 0 0 1063 5680 6502 64790 0 0 8.58677 8.58677 -595.348 -8.58677 0 0 1.19033e+06 4649.74 0.43 0.63 0.28 -1 -1 0.43 0.230092 0.211031 423 399 361 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_21.v common 19.54 vpr 69.18 MiB 0.09 10984 -1 -1 1 0.28 -1 -1 35664 -1 -1 62 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70844 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 31.5 MiB 0.41 6209 69.2 MiB 0.67 0.01 7.42524 -437.67 -7.42524 7.42524 0.56 0.00291402 0.00254567 0.187597 0.162475 68 10750 34 6.62819e+06 3.28838e+06 1.00038e+06 3907.74 14.17 2.19343 1.97123 28404 252462 -1 9000 26 8038 9122 1342352 301835 0 0 1342352 301835 8892 8203 0 0 63463 59905 0 0 85157 67970 0 0 8917 8311 0 0 586354 80069 0 0 589569 77377 0 0 8892 0 0 876 4434 4440 37532 251 2 8.40132 8.40132 -614.701 -8.40132 0 0 1.24648e+06 4869.04 0.51 0.86 0.23 -1 -1 0.51 0.299964 0.27986 445 418 380 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_22.v common 13.67 vpr 69.59 MiB 0.09 11012 -1 -1 1 0.30 -1 -1 35512 -1 -1 66 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71256 22 19 1933 1408 1 1111 113 16 16 256 mult_36 auto 31.7 MiB 0.46 6696 69.6 MiB 0.47 0.01 7.42025 -475.635 -7.42025 7.42025 0.57 0.00160707 0.00137028 0.124487 0.1073 64 12438 27 6.62819e+06 3.34724e+06 943753. 3686.54 8.30 1.24916 1.12118 27892 240595 -1 10417 25 8720 10261 1590282 353061 0 0 1590282 353061 9438 8878 0 0 70251 65368 0 0 94294 76000 0 0 9442 8957 0 0 692973 99671 0 0 713884 94187 0 0 9438 0 0 746 4298 4607 13342 857 26 8.55982 8.55982 -827.888 -8.55982 0 0 1.19033e+06 4649.74 0.46 0.79 0.29 -1 -1 0.46 0.240743 0.220986 464 437 399 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_23.v common 21.71 vpr 69.76 MiB 0.10 11136 -1 -1 1 0.29 -1 -1 35564 -1 -1 68 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71436 22 19 2031 1472 1 1174 116 18 18 324 mult_36 auto 31.9 MiB 0.49 7205 69.8 MiB 0.47 0.01 7.41124 -456.649 -7.41124 7.41124 0.77 0.00171518 0.00144456 0.12926 0.109954 66 13039 28 8.18539e+06 3.77267e+06 1.27759e+06 3943.17 14.96 1.6829 1.50765 36296 327148 -1 11163 27 9089 10501 2035132 431506 0 0 2035132 431506 9841 9231 0 0 73433 68962 0 0 99178 79010 0 0 9847 9300 0 0 931238 129959 0 0 911595 135044 0 0 9841 0 0 780 3610 3880 13836 737 2 8.65982 8.65982 -737.158 -8.65982 0 0 1.59950e+06 4936.74 0.71 1.00 0.41 -1 -1 0.71 0.317467 0.292363 486 456 418 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_24.v common 16.73 vpr 70.51 MiB 0.11 11436 -1 -1 1 0.24 -1 -1 35780 -1 -1 71 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72200 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 32.8 MiB 0.73 7199 70.5 MiB 0.64 0.01 7.45239 -513.793 -7.45239 7.45239 1.24 0.00175223 0.00148588 0.18009 0.156236 60 13436 43 8.18539e+06 3.81682e+06 1.16833e+06 3605.96 9.31 1.381 1.24024 35004 297736 -1 11139 25 9768 11288 1773678 391274 0 0 1773678 391274 10439 9948 0 0 80739 75951 0 0 103678 84944 0 0 10449 10009 0 0 788110 106212 0 0 780263 104210 0 0 10439 0 0 700 3822 4833 13994 881 20 8.84022 8.84022 -915.141 -8.84022 0 0 1.46313e+06 4515.82 0.51 0.87 0.34 -1 -1 0.51 0.2821 0.258716 505 475 437 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_25.v common 21.23 vpr 70.98 MiB 0.12 11676 -1 -1 1 0.34 -1 -1 36088 -1 -1 73 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72688 22 19 2201 1591 1 1268 121 18 18 324 mult_36 auto 33.7 MiB 0.73 7323 71.0 MiB 0.85 0.01 7.52039 -496.459 -7.52039 7.52039 1.25 0.0019154 0.00165018 0.244872 0.212734 58 14599 31 8.18539e+06 3.84625e+06 1.14310e+06 3528.09 12.92 1.73995 1.56128 34680 290288 -1 12204 26 12491 14297 2555693 556298 0 0 2555693 556298 13411 12760 0 0 99954 93832 0 0 133003 106287 0 0 13411 12831 0 0 1132493 167085 0 0 1163421 163503 0 0 13411 0 0 947 5393 5971 20150 922 11 9.02177 9.02177 -873.394 -9.02177 0 0 1.43297e+06 4422.75 0.59 1.22 0.34 -1 -1 0.59 0.317723 0.291819 526 494 456 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_26.v common 18.33 vpr 71.51 MiB 0.09 11796 -1 -1 1 0.36 -1 -1 36396 -1 -1 76 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73228 22 19 2275 1648 1 1306 124 18 18 324 mult_36 auto 34.2 MiB 0.59 8154 71.5 MiB 0.93 0.01 7.8713 -494.386 -7.8713 7.8713 1.22 0.00190041 0.00162816 0.268446 0.236548 66 15030 37 8.18539e+06 3.8904e+06 1.27759e+06 3943.17 10.20 1.6108 1.44935 36296 327148 -1 12316 24 9811 10877 2416659 509317 0 0 2416659 509317 10421 10034 0 0 83531 78767 0 0 109777 89079 0 0 10436 10065 0 0 1108208 157594 0 0 1094286 163778 0 0 10421 0 0 634 2408 3187 13131 552 2 8.75592 8.75592 -671.212 -8.75592 0 0 1.59950e+06 4936.74 0.67 1.09 0.40 -1 -1 0.67 0.321311 0.293336 546 513 475 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 19.72 vpr 71.66 MiB 0.15 11992 -1 -1 1 0.44 -1 -1 36364 -1 -1 82 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73376 22 19 2385 1724 1 1378 131 18 18 324 mult_36 auto 34.3 MiB 0.89 8296 71.7 MiB 1.36 0.02 7.43624 -537.906 -7.43624 7.43624 1.22 0.00480603 0.00413056 0.358642 0.311706 66 15441 28 8.18539e+06 4.37469e+06 1.27759e+06 3943.17 10.79 1.80143 1.60468 36296 327148 -1 12743 25 9390 11009 2267756 485159 0 0 2267756 485159 10267 9644 0 0 81955 76821 0 0 107835 88281 0 0 10272 9722 0 0 1027139 147994 0 0 1030288 152697 0 0 10267 0 0 904 4422 4614 14973 801 2 8.92128 8.92128 -910.776 -8.92128 0 0 1.59950e+06 4936.74 0.67 1.06 0.41 -1 -1 0.67 0.333005 0.306045 575 532 494 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 23.60 vpr 72.12 MiB 0.13 12008 -1 -1 1 0.41 -1 -1 36312 -1 -1 83 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73848 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 34.5 MiB 0.66 8901 72.1 MiB 0.72 0.01 7.8713 -549.689 -7.8713 7.8713 1.18 0.00238335 0.00207061 0.208229 0.182276 68 15372 24 8.18539e+06 4.3894e+06 1.31159e+06 4048.11 15.66 2.2695 2.03577 36620 334356 -1 13204 24 9296 10858 1886768 401124 0 0 1886768 401124 9998 9428 0 0 78516 73655 0 0 100620 83250 0 0 10006 9497 0 0 850334 113033 0 0 837294 112261 0 0 9998 0 0 722 4655 4846 13716 903 18 8.98558 8.98558 -1053.82 -8.98558 0 0 1.63345e+06 5041.52 0.64 0.62 0.40 -1 -1 0.64 0.178567 0.162598 594 551 513 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 39.24 vpr 72.76 MiB 0.13 12620 -1 -1 1 0.41 -1 -1 36264 -1 -1 85 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74508 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 35.4 MiB 0.70 9689 72.8 MiB 1.21 0.01 7.43624 -544.661 -7.43624 7.43624 2.11 0.00258501 0.00220752 0.358898 0.314395 74 15847 29 1.33067e+07 4.81483e+06 2.15943e+06 4461.62 27.55 3.7997 3.4439 57402 562966 -1 13943 25 11215 12893 2368384 490605 0 0 2368384 490605 12177 11408 0 0 92127 86593 0 0 124365 98933 0 0 12178 11488 0 0 1051849 144544 0 0 1075688 137639 0 0 12177 0 0 985 4080 4735 17259 748 2 8.75427 8.75427 -904.863 -8.75427 0 0 2.68771e+06 5553.12 0.98 1.13 0.56 -1 -1 0.98 0.316287 0.289957 619 570 532 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 44.69 vpr 73.08 MiB 0.13 12640 -1 -1 1 0.44 -1 -1 36460 -1 -1 89 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74836 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 35.6 MiB 0.80 9650 73.1 MiB 1.60 0.02 7.43624 -524.521 -7.43624 7.43624 2.09 0.00537707 0.0048052 0.431532 0.377589 70 16643 47 1.33067e+07 4.87369e+06 2.06816e+06 4273.05 32.04 3.36958 3.02284 56434 539830 -1 14296 28 12062 14042 2642552 543182 0 0 2642552 543182 13161 12240 0 0 92763 86251 0 0 133095 101165 0 0 13169 12355 0 0 1195638 166627 0 0 1194726 164544 0 0 13161 0 0 1129 5437 5220 19219 974 83 8.65597 8.65597 -934.518 -8.65597 0 0 2.60483e+06 5381.88 1.13 1.42 0.64 -1 -1 1.13 0.464339 0.431316 639 589 551 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 27.98 vpr 73.75 MiB 0.12 12780 -1 -1 1 0.42 -1 -1 36656 -1 -1 93 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75520 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 36.3 MiB 1.16 10213 73.8 MiB 1.59 0.02 7.49539 -582.535 -7.49539 7.49539 2.03 0.00541554 0.00480853 0.433049 0.385577 66 19115 41 1.33067e+07 4.93255e+06 1.96511e+06 4060.15 16.30 2.0928 1.87432 54986 507526 -1 15427 26 13248 15585 3206151 671977 0 0 3206151 671977 14478 13489 0 0 110810 103724 0 0 152621 119258 0 0 14483 13561 0 0 1448395 210870 0 0 1465364 211075 0 0 14478 0 0 1259 6528 7096 21924 1152 33 8.85917 8.85917 -1094.79 -8.85917 0 0 2.45963e+06 5081.88 0.76 1.09 0.45 -1 -1 0.76 0.280293 0.255782 665 608 570 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 37.16 vpr 73.78 MiB 0.14 12988 -1 -1 1 0.49 -1 -1 36928 -1 -1 96 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75552 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 36.5 MiB 1.25 10362 73.8 MiB 1.52 0.02 7.3951 -550.069 -7.3951 7.3951 1.95 0.00515135 0.00452794 0.455945 0.402047 72 17928 49 1.33067e+07 4.9767e+06 2.11301e+06 4365.72 24.72 3.22868 2.8887 56918 551676 -1 15334 24 13147 15116 2915499 602826 0 0 2915499 602826 14274 13410 0 0 104515 97870 0 0 145569 112538 0 0 14285 13523 0 0 1302518 181690 0 0 1334338 183795 0 0 14274 0 0 1151 5635 5705 20562 901 2 9.17512 9.17512 -1040.08 -9.17512 0 0 2.64603e+06 5467.00 1.22 1.26 0.70 -1 -1 1.22 0.307544 0.279613 684 627 589 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 22.67 vpr 74.54 MiB 0.19 13472 -1 -1 1 0.38 -1 -1 37280 -1 -1 100 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76332 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 37.3 MiB 0.75 10491 74.5 MiB 1.44 0.02 7.94064 -597.141 -7.94064 7.94064 2.21 0.00308407 0.0024663 0.415301 0.36136 64 18725 50 1.33067e+07 5.43155e+06 1.90554e+06 3937.06 11.07 1.72772 1.53514 54502 494576 -1 15624 26 14025 15725 2844460 605059 0 0 2844460 605059 14922 14277 0 0 112829 105589 0 0 153766 122042 0 0 14930 14390 0 0 1284410 172497 0 0 1263603 176264 0 0 14922 0 0 920 5184 5513 22697 853 34 9.66307 9.66307 -1135.39 -9.66307 0 0 2.40101e+06 4960.76 1.07 1.19 0.59 -1 -1 1.07 0.336925 0.306837 710 646 608 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 25.55 vpr 74.91 MiB 0.10 13760 -1 -1 1 0.53 -1 -1 37820 -1 -1 101 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76704 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 37.6 MiB 1.04 10939 74.9 MiB 1.00 0.02 7.88963 -601.708 -7.88963 7.88963 1.93 0.00515611 0.00446603 0.267139 0.232123 64 20629 44 1.33067e+07 5.44627e+06 1.90554e+06 3937.06 14.97 2.13644 1.90673 54502 494576 -1 16432 23 12305 14141 2480038 520783 0 0 2480038 520783 13303 12597 0 0 98622 91921 0 0 131586 107417 0 0 13311 12690 0 0 1115088 145783 0 0 1108128 150375 0 0 13303 0 0 1024 5137 5851 18838 893 45 9.49497 9.49497 -1263.79 -9.49497 0 0 2.40101e+06 4960.76 0.78 0.91 0.45 -1 -1 0.78 0.253218 0.230019 729 665 627 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_35.v common 45.69 vpr 75.45 MiB 0.14 13928 -1 -1 1 0.55 -1 -1 36848 -1 -1 106 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77264 22 19 3101 2236 1 1801 157 22 22 484 mult_36 auto 38.4 MiB 1.17 11969 75.5 MiB 1.89 0.01 8.30854 -645.602 -8.30854 8.30854 2.21 0.00352101 0.00310041 0.521197 0.44651 72 21260 42 1.33067e+07 5.51985e+06 2.11301e+06 4365.72 32.35 4.21557 3.79268 56918 551676 -1 17602 28 14440 16721 3289301 678899 0 0 3289301 678899 15722 14784 0 0 115902 108413 0 0 157930 123714 0 0 15727 14868 0 0 1478587 207986 0 0 1505433 209134 0 0 15722 0 0 1309 6270 7156 22767 1084 15 10.2964 10.2964 -1101.77 -10.2964 0 0 2.64603e+06 5467.00 1.16 1.61 0.66 -1 -1 1.16 0.47267 0.433503 755 684 646 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_36.v common 29.76 vpr 75.65 MiB 0.17 13952 -1 -1 1 0.56 -1 -1 37168 -1 -1 107 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77464 22 19 3175 2293 1 1836 158 22 22 484 mult_36 auto 38.5 MiB 1.25 12024 75.6 MiB 1.49 0.01 8.31654 -624.914 -8.31654 8.31654 2.01 0.00331431 0.00289515 0.435726 0.380367 70 21857 47 1.33067e+07 5.53456e+06 2.06816e+06 4273.05 17.34 2.80439 2.52254 56434 539830 -1 17897 24 14712 17132 3610829 744407 0 0 3610829 744407 15996 15005 0 0 125170 117118 0 0 166800 132585 0 0 15997 15159 0 0 1649993 229338 0 0 1636873 235202 0 0 15996 0 0 1308 6187 7670 23496 1167 212 10.0053 10.0053 -1119.05 -10.0053 0 0 2.60483e+06 5381.88 1.12 1.48 0.64 -1 -1 1.12 0.411509 0.376477 773 703 665 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_37.v common 49.69 vpr 77.91 MiB 0.20 14604 -1 -1 1 0.51 -1 -1 37524 -1 -1 111 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79784 22 19 3280 2364 1 1904 163 24 24 576 mult_36 auto 39.1 MiB 1.36 12635 76.4 MiB 1.44 0.01 8.4137 -696.557 -8.4137 8.4137 2.67 0.00330863 0.00286997 0.392736 0.345701 70 21805 32 1.60519e+07 5.98942e+06 2.45377e+06 4260.01 35.14 4.45913 4.00099 66754 640332 -1 18474 24 14238 16841 2928484 617751 0 0 2928484 617751 15661 14512 0 0 117748 109863 0 0 156238 125533 0 0 15666 14677 0 0 1299018 177918 0 0 1324153 175248 0 0 15661 0 0 1448 6260 7508 23478 1264 16 10.0063 10.0063 -1238.37 -10.0063 0 0 3.09179e+06 5367.68 1.49 1.32 0.83 -1 -1 1.49 0.420392 0.383125 798 722 684 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_38.v common 34.00 vpr 77.20 MiB 0.15 14512 -1 -1 1 0.54 -1 -1 38368 -1 -1 113 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79052 22 19 3354 2421 1 1941 165 24 24 576 mult_36 auto 40.0 MiB 1.66 12518 77.2 MiB 2.07 0.03 8.4137 -735.79 -8.4137 8.4137 2.72 0.0100233 0.00887192 0.677314 0.611507 68 22306 46 1.60519e+07 6.01886e+06 2.39371e+06 4155.74 18.80 2.95022 2.63882 65606 615345 -1 18217 27 15971 18457 3286501 707942 0 0 3286501 707942 17385 16236 0 0 134221 126367 0 0 177365 141784 0 0 17390 16304 0 0 1457725 203293 0 0 1482415 203958 0 0 17385 0 0 1441 6137 6485 25611 1140 20 9.66151 9.66151 -1221.14 -9.66151 0 0 2.98162e+06 5176.42 1.38 1.66 0.78 -1 -1 1.38 0.479081 0.436899 818 741 703 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_39.v common 31.31 vpr 77.16 MiB 0.19 14724 -1 -1 1 0.60 -1 -1 38056 -1 -1 117 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79012 22 19 3457 2490 1 2007 169 24 24 576 mult_36 auto 40.1 MiB 1.61 13220 77.2 MiB 2.62 0.02 8.17224 -882.394 -8.17224 8.17224 2.74 0.00606493 0.00516086 0.783657 0.703711 68 22506 49 1.60519e+07 6.07772e+06 2.39371e+06 4155.74 16.66 3.16228 2.85834 65606 615345 -1 18840 25 13908 16460 2836354 587375 0 0 2836354 587375 15143 14138 0 0 112456 105181 0 0 147535 119542 0 0 15146 14238 0 0 1256174 168154 0 0 1289900 166122 0 0 15143 0 0 1265 7480 8203 22064 1344 121 9.34467 9.34467 -1333 -9.34467 0 0 2.98162e+06 5176.42 0.87 1.10 0.46 -1 -1 0.87 0.385755 0.35279 842 760 722 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_40.v common 33.25 vpr 77.50 MiB 0.16 14844 -1 -1 1 0.63 -1 -1 38372 -1 -1 120 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79360 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 40.3 MiB 1.59 13688 77.5 MiB 1.88 0.01 8.34154 -875.21 -8.34154 8.34154 2.89 0.00354953 0.00308804 0.512907 0.450267 70 23055 35 1.60519e+07 6.12186e+06 2.45377e+06 4260.01 18.54 2.73446 2.44802 66754 640332 -1 19523 23 13601 16151 2728954 581910 0 0 2728954 581910 15016 13901 0 0 114097 105947 0 0 151978 122905 0 0 15019 14002 0 0 1220905 164380 0 0 1211939 160775 0 0 15016 0 0 1442 6053 7325 23566 1164 247 9.91787 9.91787 -1289.67 -9.91787 0 0 3.09179e+06 5367.68 1.52 1.32 0.55 -1 -1 1.52 0.424403 0.386918 862 779 741 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_41.v common 30.57 vpr 78.12 MiB 0.15 15136 -1 -1 1 0.69 -1 -1 37980 -1 -1 122 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80000 22 19 3634 2616 1 2113 175 24 24 576 mult_36 auto 40.8 MiB 1.75 13869 78.1 MiB 1.99 0.03 8.14823 -817.705 -8.14823 8.14823 2.76 0.00735224 0.00651492 0.558997 0.490742 68 23987 29 1.60519e+07 6.5473e+06 2.39371e+06 4155.74 14.91 2.16127 1.92572 65606 615345 -1 19994 24 15476 18124 3768212 791193 0 0 3768212 791193 16829 15666 0 0 134628 126591 0 0 171057 142519 0 0 16831 15808 0 0 1709696 239969 0 0 1719171 250640 0 0 16829 0 0 1382 7774 8165 24412 1359 253 9.53231 9.53231 -1397.99 -9.53231 0 0 2.98162e+06 5176.42 1.33 1.62 0.74 -1 -1 1.33 0.456412 0.416421 886 798 760 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_42.v common 38.10 vpr 78.79 MiB 0.17 15148 -1 -1 1 0.66 -1 -1 37596 -1 -1 125 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80680 22 19 3708 2673 1 2147 178 24 24 576 mult_36 auto 41.8 MiB 1.86 14396 78.8 MiB 2.28 0.03 8.34154 -807.018 -8.34154 8.34154 1.76 0.00653646 0.00569174 0.53256 0.464307 68 25119 45 1.60519e+07 6.59144e+06 2.39371e+06 4155.74 22.91 3.90218 3.46522 65606 615345 -1 20417 29 16576 19390 3584894 752230 0 0 3584894 752230 18211 16853 0 0 138527 130445 0 0 186940 147024 0 0 18212 16996 0 0 1603939 222389 0 0 1619065 218523 0 0 18211 0 0 1663 6192 7604 27612 1220 13 9.50726 9.50726 -1175.54 -9.50726 0 0 2.98162e+06 5176.42 1.20 1.81 0.74 -1 -1 1.20 0.553227 0.501545 906 817 779 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_43.v common 54.34 vpr 83.21 MiB 0.13 15732 -1 -1 1 0.54 -1 -1 38912 -1 -1 129 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85212 22 19 3810 2741 1 2214 182 24 24 576 mult_36 auto 42.0 MiB 1.88 15273 79.1 MiB 2.82 0.03 8.22139 -844.621 -8.22139 8.22139 2.82 0.0091266 0.00822817 0.77121 0.683033 78 22993 23 1.60519e+07 6.6503e+06 2.67122e+06 4637.53 36.47 5.05561 4.55431 69630 706637 -1 20630 23 14566 16928 4037111 853177 0 0 4037111 853177 15831 14751 0 0 132738 124701 0 0 171832 141578 0 0 15831 14845 0 0 1873119 271760 0 0 1827760 285542 0 0 15831 0 0 1290 5956 6635 23150 1123 62 9.43091 9.43091 -1335.54 -9.43091 0 0 3.35110e+06 5817.88 1.77 1.95 0.93 -1 -1 1.77 0.527029 0.482058 930 836 798 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_44.v common 54.61 vpr 82.26 MiB 0.19 15512 -1 -1 1 0.68 -1 -1 38232 -1 -1 132 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84236 22 19 3884 2798 1 2251 185 24 24 576 mult_36 auto 42.6 MiB 2.12 14737 79.6 MiB 2.60 0.03 8.39064 -943.666 -8.39064 8.39064 2.03 0.00788879 0.00699079 0.708352 0.623718 76 25138 29 1.60519e+07 6.69445e+06 2.61600e+06 4541.67 38.24 5.2667 4.7043 68478 680951 -1 20784 28 16219 18889 3090963 652662 0 0 3090963 652662 17681 16486 0 0 124922 116275 0 0 171524 133383 0 0 17681 16659 0 0 1388131 186143 0 0 1371024 183716 0 0 17681 0 0 1489 6338 8290 26275 1230 258 9.76457 9.76457 -1619.43 -9.76457 0 0 3.24203e+06 5628.53 1.61 1.33 0.79 -1 -1 1.61 0.463168 0.421356 949 855 817 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_45.v common 53.29 vpr 83.45 MiB 0.22 16136 -1 -1 1 0.77 -1 -1 40120 -1 -1 135 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85456 22 19 3989 2869 1 2318 189 24 24 576 mult_36 auto 42.3 MiB 1.97 15141 79.6 MiB 2.89 0.03 8.4137 -874.23 -8.4137 8.4137 2.21 0.00710175 0.00614305 0.730148 0.654382 74 24533 27 1.60519e+07 7.1346e+06 2.56259e+06 4448.94 36.02 5.26964 4.73711 67906 667765 -1 21279 23 14462 16933 3203286 666848 0 0 3203286 666848 15930 14737 0 0 119134 111713 0 0 161782 128508 0 0 15941 14879 0 0 1440014 200794 0 0 1450485 196217 0 0 15930 0 0 1490 6347 6055 24150 1072 2 9.57716 9.57716 -1434.52 -9.57716 0 0 3.19068e+06 5539.38 1.53 1.75 0.82 -1 -1 1.53 0.530588 0.481202 975 874 836 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_46.v common 54.19 vpr 85.27 MiB 0.25 15952 -1 -1 1 0.76 -1 -1 40152 -1 -1 136 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87316 22 19 4063 2926 1 2357 190 24 24 576 mult_36 auto 43.0 MiB 2.18 16042 80.1 MiB 2.79 0.06 8.30554 -961.246 -8.30554 8.30554 1.84 0.0118833 0.0104461 0.687561 0.611793 80 24029 26 1.60519e+07 7.14931e+06 2.72095e+06 4723.87 36.74 5.30349 4.76466 70206 720185 -1 21546 25 15450 18131 3537268 718577 0 0 3537268 718577 16977 15660 0 0 131184 122670 0 0 172255 140279 0 0 16977 15785 0 0 1592251 210412 0 0 1607624 213771 0 0 16977 0 0 1553 6293 7462 25785 1202 20 9.17417 9.17417 -1479.79 -9.17417 0 0 3.41546e+06 5929.62 1.59 1.81 0.94 -1 -1 1.59 0.599998 0.543337 993 893 855 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_47.v common 42.12 vpr 80.56 MiB 0.31 16512 -1 -1 1 0.76 -1 -1 40316 -1 -1 141 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82496 22 19 4167 2996 1 2421 195 24 24 576 mult_36 auto 43.6 MiB 1.56 15866 80.6 MiB 3.42 0.02 8.2457 -854.27 -8.2457 8.2457 2.44 0.00484725 0.00428734 0.999967 0.897983 74 26113 43 1.60519e+07 7.22289e+06 2.56259e+06 4448.94 24.23 4.9807 4.49535 67906 667765 -1 22579 24 16819 19633 4273815 905792 0 0 4273815 905792 18317 17113 0 0 144871 135939 0 0 188193 153699 0 0 18318 17228 0 0 1959809 288561 0 0 1944307 293252 0 0 18317 0 0 1526 8141 7951 27270 1346 52 9.75551 9.75551 -1306.46 -9.75551 0 0 3.19068e+06 5539.38 1.36 1.99 0.79 -1 -1 1.36 0.562121 0.512453 1019 912 874 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_48.v common 35.25 vpr 80.88 MiB 0.25 16544 -1 -1 1 0.85 -1 -1 40328 -1 -1 144 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82820 22 19 4241 3053 1 2459 198 24 24 576 mult_36 auto 43.7 MiB 2.11 15835 80.9 MiB 2.23 0.02 8.25153 -946.137 -8.25153 8.25153 2.50 0.0042362 0.00359126 0.617726 0.544468 72 27021 38 1.60519e+07 7.26704e+06 2.50747e+06 4353.24 18.63 3.69662 3.29088 67330 654343 -1 22011 23 15838 18683 3162988 688680 0 0 3162988 688680 17413 16168 0 0 131366 122076 0 0 173006 141073 0 0 17415 16298 0 0 1420730 195142 0 0 1403058 197923 0 0 17413 0 0 1600 8010 7649 26502 1297 170 9.47921 9.47921 -1532 -9.47921 0 0 3.14081e+06 5452.80 1.42 1.53 0.80 -1 -1 1.42 0.551534 0.504149 1038 931 893 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_49.v common 35.31 vpr 81.37 MiB 0.23 16872 -1 -1 1 0.69 -1 -1 40372 -1 -1 145 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83324 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 44.9 MiB 2.29 17627 81.4 MiB 2.90 0.03 8.38055 -927.403 -8.38055 8.38055 2.25 0.00790506 0.00694318 0.714869 0.625164 74 30469 41 1.60519e+07 7.67775e+06 2.56259e+06 4448.94 17.56 2.86495 2.54057 67906 667765 -1 24632 27 19735 22995 4730851 964157 0 0 4730851 964157 21741 20132 0 0 153720 143874 0 0 215137 165409 0 0 21742 20349 0 0 2156420 305739 0 0 2162091 308654 0 0 21741 0 0 2030 8700 7768 34022 1281 190 10.0844 10.0844 -1564.76 -10.0844 0 0 3.19068e+06 5539.38 1.35 2.14 0.71 -1 -1 1.35 0.659106 0.596954 1062 950 912 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_50.v common 45.44 vpr 81.53 MiB 0.21 16940 -1 -1 1 0.87 -1 -1 40544 -1 -1 148 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83488 22 19 4420 3181 1 2564 203 24 24 576 mult_36 auto 45.0 MiB 2.30 17684 81.5 MiB 2.73 0.03 8.43799 -901.079 -8.43799 8.43799 3.24 0.00881941 0.00793234 0.703288 0.621384 74 30424 34 1.60519e+07 7.72189e+06 2.56259e+06 4448.94 27.00 4.38138 3.90017 67906 667765 -1 25185 27 21673 25268 6014160 1237795 0 0 6014160 1237795 23816 21969 0 0 179319 168492 0 0 243182 189945 0 0 23822 22218 0 0 2752175 413472 0 0 2791846 421699 0 0 23816 0 0 2175 9698 10019 36591 1516 537 10.1105 10.1105 -1511.73 -10.1105 0 0 3.19068e+06 5539.38 1.07 2.54 0.55 -1 -1 1.07 0.605326 0.549232 1082 969 931 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_51.v common 51.91 vpr 87.77 MiB 0.18 17184 -1 -1 1 0.89 -1 -1 40620 -1 -1 152 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89880 22 19 4524 3251 1 2634 207 24 24 576 mult_36 auto 45.9 MiB 2.32 17414 82.5 MiB 1.85 0.04 8.38584 -1089.25 -8.38584 8.38584 2.19 0.0082275 0.00713423 0.467174 0.410062 76 28092 39 1.60519e+07 7.78076e+06 2.61600e+06 4541.67 34.96 4.54772 4.0514 68478 680951 -1 24355 25 19290 22691 4033385 831289 0 0 4033385 831289 21204 19627 0 0 157018 147221 0 0 211302 167347 0 0 21205 19736 0 0 1835661 237183 0 0 1786995 240175 0 0 21204 0 0 1940 9073 9199 32674 1514 92 10.0143 10.0143 -1711.69 -10.0143 0 0 3.24203e+06 5628.53 1.61 1.83 0.84 -1 -1 1.61 0.673879 0.61663 1107 988 950 19 0 0 -k6_frac_2uripple_N8_22nm.xml fir_nopipe_52.v common 44.71 vpr 82.65 MiB 0.25 17304 -1 -1 1 0.88 -1 -1 39012 -1 -1 155 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84632 22 19 4598 3308 1 2668 210 24 24 576 mult_36 auto 46.0 MiB 1.60 18532 82.6 MiB 2.63 0.04 8.22439 -1032.19 -8.22439 8.22439 2.54 0.0135463 0.0121267 0.738311 0.647223 78 29734 45 1.60519e+07 7.8249e+06 2.67122e+06 4637.53 28.56 5.05653 4.51998 69630 706637 -1 25472 24 19725 23351 4028468 834493 0 0 4028468 834493 21806 20034 0 0 161406 150524 0 0 220565 172153 0 0 21810 20216 0 0 1792336 239788 0 0 1810545 231778 0 0 21806 0 0 2108 9760 9992 34339 1589 14 9.66151 9.66151 -1400.93 -9.66151 0 0 3.35110e+06 5817.88 1.26 1.29 0.79 -1 -1 1.26 0.354953 0.322102 1127 1007 969 19 0 0 -k6_frac_N8_22nm.xml fir_pipe_14.v common 14.84 vpr 69.10 MiB 0.08 10212 -1 -1 8 0.72 -1 -1 36748 -1 -1 79 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70756 22 19 1764 1664 1 1014 124 16 16 256 mult_36 auto 30.7 MiB 0.69 6664 69.1 MiB 0.53 0.01 4.14666 -1180.14 -4.14666 4.14666 0.75 0.00436987 0.00383851 0.202081 0.178636 64 12519 50 6.45408e+06 2.64829e+06 943753. 3686.54 8.06 1.70573 1.52702 27332 240185 -1 10495 15 4068 7084 715713 165388 0 0 715713 165388 6334 4594 0 0 38637 33625 0 0 53540 43248 0 0 6340 4910 0 0 303844 39375 0 0 307018 39636 0 0 6334 0 0 2286 5461 5792 19227 778 11 4.27196 4.27196 -1335.68 -4.27196 0 0 1.19033e+06 4649.74 0.47 0.45 0.30 -1 -1 0.47 0.203043 0.187927 599 909 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_15.v common 18.71 vpr 70.07 MiB 0.13 10752 -1 -1 8 0.75 -1 -1 35740 -1 -1 85 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71756 22 19 1918 1801 1 1104 131 16 16 256 mult_36 auto 31.7 MiB 0.75 6819 70.1 MiB 0.82 0.01 4.14666 -1318.66 -4.14666 4.14666 0.92 0.00442623 0.00395291 0.288911 0.252642 66 12539 24 6.45408e+06 3.12512e+06 974584. 3806.97 12.16 2.30233 2.06241 27588 246658 -1 10862 14 4239 7235 804613 183146 0 0 804613 183146 6502 4736 0 0 40803 35803 0 0 55681 44962 0 0 6508 5020 0 0 349908 46719 0 0 345211 45906 0 0 6502 0 0 2283 5281 5781 18891 758 68 4.39726 4.39726 -1510.89 -4.39726 0 0 1.22072e+06 4768.46 0.29 0.26 0.19 -1 -1 0.29 0.103585 0.0952483 651 984 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_16.v common 19.67 vpr 70.31 MiB 0.09 10816 -1 -1 8 0.80 -1 -1 36952 -1 -1 87 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71996 22 19 1976 1859 1 1141 133 16 16 256 mult_36 auto 31.9 MiB 0.79 7432 70.3 MiB 0.64 0.01 4.02136 -1345.26 -4.02136 4.02136 0.76 0.00424215 0.00374808 0.246187 0.217006 68 13873 39 6.45408e+06 3.15206e+06 1.00038e+06 3907.74 12.78 2.29068 2.04306 27844 252052 -1 11545 14 4567 8006 875720 202594 0 0 875720 202594 7218 5073 0 0 42808 37509 0 0 57955 46661 0 0 7231 5463 0 0 385713 53002 0 0 374795 54886 0 0 7218 0 0 2673 6170 6295 21656 868 25 4.39726 4.39726 -1519.17 -4.39726 0 0 1.24648e+06 4869.04 0.50 0.52 0.30 -1 -1 0.50 0.224791 0.207783 679 1023 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_17.v common 19.54 vpr 71.89 MiB 0.10 11636 -1 -1 8 0.58 -1 -1 36352 -1 -1 102 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73612 22 19 2278 2144 1 1269 148 16 16 256 mult_36 auto 33.5 MiB 0.63 8156 71.9 MiB 0.84 0.02 4.02136 -1502.91 -4.02136 4.02136 0.85 0.00544312 0.00480723 0.295753 0.261331 68 15244 27 6.45408e+06 3.35414e+06 1.00038e+06 3907.74 12.66 2.54842 2.27157 27844 252052 -1 12768 16 5165 8848 942693 217535 0 0 942693 217535 8170 5849 0 0 49183 43311 0 0 66459 53858 0 0 8186 6192 0 0 409575 53838 0 0 401120 54487 0 0 8170 0 0 3025 6228 6749 24730 787 2 4.27196 4.27196 -1694.32 -4.27196 0 0 1.24648e+06 4869.04 0.49 0.60 0.28 -1 -1 0.49 0.26467 0.241848 768 1171 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_18.v common 17.64 vpr 72.01 MiB 0.15 11864 -1 -1 8 0.95 -1 -1 36552 -1 -1 105 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73740 22 19 2336 2202 1 1299 151 16 16 256 mult_36 auto 33.8 MiB 0.87 8121 72.0 MiB 0.80 0.02 4.02136 -1558.46 -4.02136 4.02136 0.88 0.00555204 0.00491737 0.299103 0.263509 64 16667 48 6.45408e+06 3.39456e+06 943753. 3686.54 9.79 2.57165 2.30784 27332 240185 -1 13380 16 5488 9706 1150054 259085 0 0 1150054 259085 8778 6266 0 0 55046 48242 0 0 75710 60901 0 0 8782 6606 0 0 495844 68136 0 0 505894 68934 0 0 8778 0 0 3312 7490 8407 27685 1009 79 4.27196 4.27196 -1830.49 -4.27196 0 0 1.19033e+06 4649.74 0.44 0.63 0.29 -1 -1 0.44 0.22229 0.204582 794 1210 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_19.v common 25.18 vpr 73.14 MiB 0.11 12188 -1 -1 8 0.98 -1 -1 37016 -1 -1 111 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74900 22 19 2488 2337 1 1399 158 16 16 256 mult_36 auto 35.0 MiB 0.84 9918 73.1 MiB 0.92 0.02 4.14666 -1722.94 -4.14666 4.14666 0.95 0.00560564 0.00492504 0.337422 0.295337 80 15911 35 6.45408e+06 3.87139e+06 1.13630e+06 4438.68 17.05 3.84008 3.44777 29884 294868 -1 14502 17 5260 9195 1039281 224421 0 0 1039281 224421 8340 5967 0 0 48268 41707 0 0 67431 53101 0 0 8353 6405 0 0 444873 60774 0 0 462016 56467 0 0 8340 0 0 3101 7313 7483 25295 921 36 4.39726 4.39726 -1949.86 -4.39726 0 0 1.42763e+06 5576.70 0.79 0.51 0.38 -1 -1 0.79 0.21795 0.201826 837 1285 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_20.v common 14.44 vpr 73.27 MiB 0.11 12232 -1 -1 8 0.95 -1 -1 38220 -1 -1 114 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75024 22 19 2546 2395 1 1440 161 16 16 256 mult_36 auto 35.2 MiB 0.99 9776 73.3 MiB 0.83 0.02 4.14666 -1761.21 -4.14666 4.14666 0.57 0.00504126 0.00431183 0.270763 0.236838 76 17543 23 6.45408e+06 3.91181e+06 1.09288e+06 4269.05 7.12 1.99079 1.79348 29116 278758 -1 14884 14 5618 10190 1068168 234261 0 0 1068168 234261 9175 6508 0 0 52997 46259 0 0 73745 59050 0 0 9178 6972 0 0 457764 58673 0 0 465309 56799 0 0 9175 0 0 3575 8430 8650 29604 1085 20 4.39726 4.39726 -1972.51 -4.39726 0 0 1.35486e+06 5292.42 0.44 0.46 0.27 -1 -1 0.44 0.172685 0.15911 867 1324 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_21.v common 19.36 vpr 74.53 MiB 0.10 12720 -1 -1 8 1.07 -1 -1 37300 -1 -1 122 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76320 22 19 2735 2567 1 1547 169 16 16 256 mult_36 auto 36.4 MiB 1.03 11045 74.5 MiB 0.54 0.01 4.27196 -1939.62 -4.27196 4.27196 0.57 0.00327066 0.00282116 0.177753 0.15175 74 20359 48 6.45408e+06 4.01958e+06 1.07073e+06 4182.55 11.80 2.88713 2.61582 28864 273460 -1 16345 13 6242 11040 1212688 267829 0 0 1212688 267829 9803 7078 0 0 59153 51562 0 0 81433 64914 0 0 9813 7582 0 0 524958 69464 0 0 527528 67229 0 0 9803 0 0 3578 9624 9361 30164 1311 116 4.64786 4.64786 -2181.73 -4.64786 0 0 1.33358e+06 5209.30 0.48 0.51 0.34 -1 -1 0.48 0.215389 0.197242 931 1417 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_22.v common 28.14 vpr 74.26 MiB 0.11 12948 -1 -1 8 1.24 -1 -1 37760 -1 -1 126 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76040 22 19 2793 2625 1 1580 173 16 16 256 mult_36 auto 36.6 MiB 0.90 11763 74.3 MiB 0.96 0.01 4.27196 -1979.74 -4.27196 4.27196 0.87 0.00322918 0.00275656 0.340541 0.294763 74 21414 49 6.45408e+06 4.07347e+06 1.07073e+06 4182.55 18.92 3.8771 3.44998 28864 273460 -1 17592 16 6529 11591 1300915 285802 0 0 1300915 285802 10517 7385 0 0 58849 51024 0 0 82660 65028 0 0 10523 7993 0 0 566390 77861 0 0 571976 76511 0 0 10517 0 0 4009 9203 9701 34063 1142 162 4.52256 4.52256 -2172.97 -4.52256 0 0 1.33358e+06 5209.30 0.55 0.83 0.46 -1 -1 0.55 0.391265 0.358241 962 1456 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_23.v common 28.68 vpr 75.17 MiB 0.10 13264 -1 -1 8 1.14 -1 -1 37896 -1 -1 131 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76972 22 19 2947 2762 1 1693 179 18 18 324 mult_36 auto 37.7 MiB 0.78 11113 75.2 MiB 0.98 0.01 4.14666 -2006.09 -4.14666 4.14666 1.25 0.00317047 0.00269639 0.337001 0.292614 70 19988 23 7.94662e+06 4.53683e+06 1.34436e+06 4149.26 19.10 3.82221 3.42376 36496 347204 -1 17551 16 6873 11967 1285765 290243 0 0 1285765 290243 10786 7700 0 0 65501 56976 0 0 92423 73314 0 0 10794 8189 0 0 557843 71309 0 0 548418 72755 0 0 10786 0 0 3932 8120 10963 33583 1249 359 4.39726 4.39726 -2271.23 -4.39726 0 0 1.69344e+06 5226.66 0.70 0.79 0.38 -1 -1 0.70 0.327668 0.29925 1008 1531 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_24.v common 30.19 vpr 75.42 MiB 0.11 13516 -1 -1 8 1.35 -1 -1 37968 -1 -1 135 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77232 22 19 3005 2820 1 1720 183 18 18 324 mult_36 auto 37.9 MiB 1.04 11269 75.4 MiB 0.67 0.01 4.14666 -2096.61 -4.14666 4.14666 1.09 0.00354753 0.00306511 0.223119 0.192287 72 22153 24 7.94662e+06 4.59072e+06 1.37338e+06 4238.83 20.21 4.00146 3.56291 36820 354972 -1 18033 15 6909 12254 1302664 275973 0 0 1302664 275973 11029 7911 0 0 63653 55100 0 0 92118 71683 0 0 11032 8424 0 0 556169 68238 0 0 568663 64617 0 0 11029 0 0 4142 9656 10101 34686 1278 102 4.52256 4.52256 -2347.69 -4.52256 0 0 1.72054e+06 5310.31 0.74 0.82 0.43 -1 -1 0.74 0.366168 0.335284 1039 1570 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_25.v common 34.95 vpr 76.45 MiB 0.13 14040 -1 -1 8 1.23 -1 -1 40004 -1 -1 145 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78280 22 19 3229 3027 1 1824 193 18 18 324 mult_36 auto 39.0 MiB 1.23 12146 76.4 MiB 1.35 0.02 4.02136 -2210.67 -4.02136 4.02136 1.19 0.00781808 0.00694686 0.463781 0.405358 70 22739 37 7.94662e+06 4.72544e+06 1.34436e+06 4149.26 24.00 5.3432 4.74225 36496 347204 -1 19213 17 7570 13561 1540093 336741 0 0 1540093 336741 12036 8506 0 0 74249 64654 0 0 102961 82258 0 0 12040 9119 0 0 666463 85818 0 0 672344 86386 0 0 12036 0 0 4485 11395 12122 38090 1584 450 4.27196 4.27196 -2595.58 -4.27196 0 0 1.69344e+06 5226.66 0.70 1.01 0.43 -1 -1 0.70 0.460766 0.421137 1106 1681 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_26.v common 32.79 vpr 77.64 MiB 0.13 14336 -1 -1 8 1.39 -1 -1 40284 -1 -1 151 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79508 22 19 3287 3085 1 1862 199 18 18 324 mult_36 auto 39.3 MiB 1.24 13093 77.6 MiB 1.17 0.02 4.02136 -2277.85 -4.02136 4.02136 1.10 0.0054934 0.00471544 0.37754 0.32799 76 23702 29 7.94662e+06 4.80627e+06 1.43297e+06 4422.75 21.67 4.78705 4.32241 37464 369264 -1 20288 16 7605 13428 1503742 321185 0 0 1503742 321185 12132 8518 0 0 68188 59603 0 0 96852 76279 0 0 12134 8981 0 0 654496 85054 0 0 659940 82750 0 0 12132 0 0 4548 10415 11124 39158 1330 129 4.27196 4.27196 -2617.6 -4.27196 0 0 1.77541e+06 5479.65 0.75 0.96 0.49 -1 -1 0.75 0.431534 0.395054 1134 1720 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_27.v common 24.87 vpr 78.65 MiB 0.19 14696 -1 -1 8 1.57 -1 -1 39200 -1 -1 156 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80536 22 19 3453 3234 1 1964 205 18 18 324 mult_36 auto 40.3 MiB 0.91 14116 78.6 MiB 1.05 0.01 4.02136 -2356.9 -4.02136 4.02136 1.19 0.00415129 0.00355959 0.356271 0.311425 74 27600 47 7.94662e+06 5.26963e+06 1.40368e+06 4332.34 14.69 2.86293 2.52545 37144 362180 -1 21982 21 8434 15288 1858136 394162 0 0 1858136 394162 13402 9627 0 0 79226 69060 0 0 110671 87474 0 0 13410 10318 0 0 816547 107641 0 0 824880 110042 0 0 13402 0 0 4991 14158 14815 42510 1993 606 4.27196 4.27196 -2809.64 -4.27196 0 0 1.74764e+06 5393.95 0.72 1.20 0.45 -1 -1 0.72 0.514198 0.467552 1189 1795 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_28.v common 23.51 vpr 78.57 MiB 0.15 14708 -1 -1 8 1.39 -1 -1 40660 -1 -1 160 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80460 22 19 3511 3292 1 2001 209 18 18 324 mult_36 auto 40.4 MiB 1.32 13669 78.6 MiB 1.22 0.03 4.02136 -2389.87 -4.02136 4.02136 1.00 0.00822745 0.00721795 0.403706 0.352804 74 24660 32 7.94662e+06 5.32352e+06 1.40368e+06 4332.34 13.73 3.92909 3.50381 37144 362180 -1 20935 15 7817 14366 1624283 350318 0 0 1624283 350318 12705 8722 0 0 73062 63424 0 0 103216 81095 0 0 12715 9383 0 0 706575 93511 0 0 716010 94183 0 0 12705 0 0 4909 13130 13551 40828 1778 451 4.39726 4.39726 -2815.24 -4.39726 0 0 1.74764e+06 5393.95 0.46 0.59 0.27 -1 -1 0.46 0.251961 0.230873 1221 1834 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_29.v common 154.03 vpr 79.97 MiB 0.13 15180 -1 -1 8 1.90 -1 -1 39400 -1 -1 168 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81892 22 19 3709 3473 1 2127 218 22 22 484 mult_36 auto 41.8 MiB 1.45 14626 80.0 MiB 1.25 0.03 4.02136 -2545.74 -4.02136 4.02136 1.42 0.00983437 0.00870237 0.418372 0.36191 66 29135 40 1.29336e+07 5.8273e+06 1.96511e+06 4060.15 139.72 7.39256 6.5794 53786 506641 -1 23163 19 8772 15838 1646298 352161 0 0 1646298 352161 14086 10061 0 0 82056 71253 0 0 114854 90791 0 0 14089 10696 0 0 709530 84425 0 0 711683 84935 0 0 14086 0 0 5338 13358 15632 44930 1826 768 4.52256 4.52256 -3093.77 -4.52256 0 0 2.45963e+06 5081.88 0.91 1.20 0.67 -1 -1 0.91 0.470632 0.431805 1281 1927 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_30.v common 32.33 vpr 80.60 MiB 0.16 15316 -1 -1 8 1.97 -1 -1 39556 -1 -1 170 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82536 22 19 3767 3531 1 2168 220 22 22 484 mult_36 auto 42.3 MiB 1.56 15943 80.6 MiB 2.03 0.03 4.02136 -2629.36 -4.02136 4.02136 2.21 0.00921903 0.008117 0.765951 0.685897 74 28994 34 1.29336e+07 5.85424e+06 2.15943e+06 4461.62 16.64 3.71337 3.31481 56202 562081 -1 24544 15 8887 15825 1942314 398265 0 0 1942314 398265 14222 10017 0 0 81802 71363 0 0 115170 90354 0 0 14222 10653 0 0 851450 110322 0 0 865448 105556 0 0 14222 0 0 5358 12399 14048 46287 1633 214 4.52256 4.52256 -3225.5 -4.52256 0 0 2.68771e+06 5553.12 1.21 1.05 0.59 -1 -1 1.21 0.399042 0.364136 1309 1966 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_31.v common 52.36 vpr 81.08 MiB 0.17 15656 -1 -1 8 2.08 -1 -1 41400 -1 -1 177 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83024 22 19 3928 3675 1 2252 227 22 22 484 mult_36 auto 42.9 MiB 1.55 15600 81.1 MiB 2.10 0.03 3.89606 -2728.48 -3.89606 3.89606 2.56 0.0101914 0.00910921 0.83443 0.748988 74 29200 42 1.29336e+07 5.94854e+06 2.15943e+06 4461.62 36.03 7.4193 6.67781 56202 562081 -1 24356 15 8986 16227 1796707 370785 0 0 1796707 370785 14366 10125 0 0 81012 70064 0 0 115379 90234 0 0 14367 10835 0 0 776097 96610 0 0 795486 92917 0 0 14366 0 0 5404 14569 14678 46462 1903 617 4.39726 4.39726 -3240.5 -4.39726 0 0 2.68771e+06 5553.12 1.25 1.12 0.68 -1 -1 1.25 0.470881 0.429619 1363 2041 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_32.v common 45.84 vpr 81.62 MiB 0.18 15660 -1 -1 8 2.17 -1 -1 40056 -1 -1 181 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83584 22 19 3986 3733 1 2287 231 22 22 484 mult_36 auto 43.3 MiB 1.64 16835 81.6 MiB 2.32 0.03 4.02136 -2767.1 -4.02136 4.02136 1.69 0.0100922 0.00886789 0.867049 0.775747 80 27676 17 1.29336e+07 6.00243e+06 2.29262e+06 4736.82 29.94 5.26065 4.71478 58134 606231 -1 25075 15 8796 15991 1718289 352451 0 0 1718289 352451 14203 9789 0 0 79426 67938 0 0 113904 88020 0 0 14207 10435 0 0 750725 88651 0 0 745824 87618 0 0 14203 0 0 5427 13548 14640 46527 1823 12 4.52256 4.52256 -3269.52 -4.52256 0 0 2.87723e+06 5944.70 1.38 0.95 0.80 -1 -1 1.38 0.395834 0.361939 1391 2080 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_33.v common 43.95 vpr 82.97 MiB 0.24 16796 -1 -1 8 2.02 -1 -1 42036 -1 -1 192 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84964 22 19 4329 4059 1 2422 243 22 22 484 mult_36 auto 44.9 MiB 1.68 17478 83.0 MiB 2.07 0.03 4.14666 -2966.64 -4.14666 4.14666 2.04 0.009822 0.00873398 0.698536 0.615776 74 32810 31 1.29336e+07 6.54662e+06 2.15943e+06 4461.62 27.25 4.70675 4.16747 56202 562081 -1 27049 16 9867 17456 2289141 474616 0 0 2289141 474616 15813 11069 0 0 91317 79702 0 0 127606 101123 0 0 15816 11881 0 0 1009823 134360 0 0 1028766 136481 0 0 15813 0 0 5969 14253 14817 50991 1702 149 4.52256 4.52256 -3487.29 -4.52256 0 0 2.68771e+06 5553.12 1.25 1.23 0.62 -1 -1 1.25 0.455698 0.415194 1494 2246 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_34.v common 55.08 vpr 83.54 MiB 0.27 16920 -1 -1 8 2.49 -1 -1 42464 -1 -1 198 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85540 22 19 4387 4117 1 2459 249 22 22 484 mult_36 auto 45.3 MiB 1.81 17850 83.5 MiB 1.95 0.03 4.02136 -2976 -4.02136 4.02136 2.19 0.0109129 0.00966684 0.632876 0.551889 76 31954 33 1.29336e+07 6.62746e+06 2.20457e+06 4554.90 37.89 6.56642 5.90468 56682 573177 -1 27093 15 9798 17433 2029456 432691 0 0 2029456 432691 15946 11030 0 0 89871 78566 0 0 125755 99885 0 0 15960 11761 0 0 882483 114779 0 0 899441 116670 0 0 15946 0 0 6170 13595 14678 52120 1596 143 4.39726 4.39726 -3472.9 -4.39726 0 0 2.73077e+06 5642.09 1.25 1.12 0.65 -1 -1 1.25 0.447005 0.409852 1521 2285 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_35.v common 152.12 vpr 84.64 MiB 0.25 17520 -1 -1 8 2.34 -1 -1 41056 -1 -1 208 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86668 22 19 4547 4260 1 2575 259 22 22 484 mult_36 auto 46.4 MiB 1.85 17782 84.6 MiB 2.78 0.04 4.02136 -3114.87 -4.02136 4.02136 1.98 0.0113783 0.0101275 0.922868 0.812247 70 33025 36 1.29336e+07 6.76218e+06 2.06816e+06 4273.05 134.18 9.44733 8.41353 55234 538945 -1 27814 16 10449 18232 2204205 473115 0 0 2204205 473115 16515 11663 0 0 100838 87832 0 0 141802 112438 0 0 16518 12444 0 0 960414 123654 0 0 968118 125084 0 0 16515 0 0 6087 13859 14866 51935 1771 574 4.52256 4.52256 -3695.86 -4.52256 0 0 2.60483e+06 5381.88 1.18 1.32 0.62 -1 -1 1.18 0.556496 0.509612 1571 2360 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_36.v common 33.40 vpr 84.79 MiB 0.28 17444 -1 -1 8 2.63 -1 -1 42696 -1 -1 210 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86820 22 19 4605 4318 1 2609 261 22 22 484 mult_36 auto 46.6 MiB 1.84 18420 84.8 MiB 2.14 0.04 4.02136 -3107.21 -4.02136 4.02136 2.10 0.00952783 0.00817452 0.703744 0.619924 76 32081 36 1.29336e+07 6.78912e+06 2.20457e+06 4554.90 16.12 3.80841 3.38619 56682 573177 -1 27810 16 10294 18816 1946807 416742 0 0 1946807 416742 16701 11472 0 0 93642 81363 0 0 133681 104639 0 0 16709 12349 0 0 832157 104986 0 0 853917 101933 0 0 16701 0 0 6430 16209 17404 54805 2172 563 4.39726 4.39726 -3740.88 -4.39726 0 0 2.73077e+06 5642.09 0.97 1.14 0.68 -1 -1 0.97 0.479017 0.436118 1597 2399 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_37.v common 206.16 vpr 85.86 MiB 0.30 17944 -1 -1 8 2.68 -1 -1 39868 -1 -1 218 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87916 22 19 4802 4498 1 2726 270 24 24 576 mult_36 auto 48.2 MiB 1.89 19138 85.9 MiB 2.50 0.04 4.14666 -3404.17 -4.14666 4.14666 2.55 0.0116913 0.0104 0.847612 0.744449 74 36202 47 1.56141e+07 7.2929e+06 2.56259e+06 4448.94 185.90 9.00181 7.92449 66498 666725 -1 29796 14 10684 19122 2091368 446223 0 0 2091368 446223 17151 12258 0 0 98498 85492 0 0 139015 109664 0 0 17152 13003 0 0 905453 115802 0 0 914099 110004 0 0 17151 0 0 6488 15878 16511 54747 2011 388 4.52256 4.52256 -3921.18 -4.52256 0 0 3.19068e+06 5539.38 1.59 1.39 0.84 -1 -1 1.59 0.603599 0.553844 1661 2492 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_38.v common 49.38 vpr 86.17 MiB 0.24 18128 -1 -1 8 2.91 -1 -1 43452 -1 -1 221 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88236 22 19 4860 4556 1 2764 273 24 24 576 mult_36 auto 48.5 MiB 1.94 20168 86.2 MiB 2.42 0.04 4.27196 -3479.6 -4.27196 4.27196 2.56 0.011861 0.0106853 0.826004 0.728573 74 37197 49 1.56141e+07 7.33331e+06 2.56259e+06 4448.94 30.02 6.35033 5.71271 66498 666725 -1 30709 18 11248 20538 2499065 522232 0 0 2499065 522232 17979 12689 0 0 104937 91121 0 0 149427 116680 0 0 17986 13498 0 0 1096938 143800 0 0 1111798 144444 0 0 17979 0 0 6751 17623 20608 57250 2621 796 4.52256 4.52256 -3994.89 -4.52256 0 0 3.19068e+06 5539.38 1.15 1.13 0.65 -1 -1 1.15 0.484942 0.441968 1689 2531 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_39.v common 45.74 vpr 87.00 MiB 0.23 18512 -1 -1 8 3.14 -1 -1 43548 -1 -1 226 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89084 22 19 5019 4698 1 2868 278 24 24 576 mult_36 auto 49.4 MiB 2.02 21602 87.0 MiB 3.23 0.04 4.14666 -3593.28 -4.14666 4.14666 2.75 0.0125371 0.011125 1.11317 0.990011 80 35912 25 1.56141e+07 7.40067e+06 2.72095e+06 4723.87 24.81 5.92898 5.33988 68798 719145 -1 31945 14 11104 20220 2291269 477937 0 0 2291269 477937 17912 12370 0 0 104453 90473 0 0 146539 114595 0 0 17917 13189 0 0 1007732 124433 0 0 996716 122877 0 0 17912 0 0 6830 19439 19192 59642 2367 537 4.52256 4.52256 -4189.11 -4.52256 0 0 3.41546e+06 5929.62 1.21 1.38 0.94 -1 -1 1.21 0.548971 0.501916 1735 2606 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_40.v common 47.83 vpr 87.50 MiB 0.23 18600 -1 -1 8 2.82 -1 -1 43648 -1 -1 230 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89604 22 19 5077 4756 1 2904 282 24 24 576 mult_36 auto 49.8 MiB 2.10 21930 87.5 MiB 2.41 0.04 4.14666 -3671.85 -4.14666 4.14666 2.68 0.0126204 0.0112634 0.793626 0.689807 78 37461 39 1.56141e+07 7.45456e+06 2.67122e+06 4637.53 28.11 5.65786 5.01682 68222 705597 -1 32589 15 11153 20176 2364504 485781 0 0 2364504 485781 17994 12668 0 0 102975 88215 0 0 147800 115936 0 0 18003 13556 0 0 1037209 127365 0 0 1040523 128041 0 0 17994 0 0 6865 19049 18613 59997 2258 882 4.52256 4.52256 -4161.17 -4.52256 0 0 3.35110e+06 5817.88 1.58 1.48 0.77 -1 -1 1.58 0.610047 0.556837 1765 2645 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_41.v common 34.85 vpr 88.53 MiB 0.23 19184 -1 -1 8 3.15 -1 -1 43920 -1 -1 239 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90652 22 19 5308 4970 1 3021 292 24 24 576 mult_36 auto 50.8 MiB 2.31 21921 88.5 MiB 2.51 0.03 4.14666 -3885.06 -4.14666 4.14666 2.65 0.00729794 0.00610569 0.842894 0.735672 76 39595 42 1.56141e+07 7.97181e+06 2.61600e+06 4541.67 14.93 3.89286 3.45305 67070 679911 -1 33670 14 11947 21831 2407182 505898 0 0 2407182 505898 19508 13500 0 0 111646 97174 0 0 156723 123566 0 0 19509 14546 0 0 1060200 128753 0 0 1039596 128359 0 0 19508 0 0 7584 19026 19570 64716 2343 525 4.64786 4.64786 -4480.94 -4.64786 0 0 3.24203e+06 5628.53 1.12 1.42 0.67 -1 -1 1.12 0.566507 0.516583 1838 2756 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_42.v common 64.62 vpr 96.22 MiB 0.25 19260 -1 -1 8 3.35 -1 -1 43940 -1 -1 242 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98528 22 19 5366 5028 1 3055 295 24 24 576 mult_36 auto 51.3 MiB 2.14 22765 88.8 MiB 3.32 0.09 4.27196 -3912.77 -4.27196 4.27196 2.54 0.0125095 0.0109954 0.944226 0.821349 78 39143 45 1.56141e+07 8.01222e+06 2.67122e+06 4637.53 42.92 9.0764 8.10833 68222 705597 -1 34147 16 11869 21944 2548554 512010 0 0 2548554 512010 19542 13422 0 0 108202 92708 0 0 158498 121951 0 0 19542 14386 0 0 1099482 138420 0 0 1143288 131123 0 0 19542 0 0 7692 20680 19058 66129 2424 333 4.64786 4.64786 -4620.52 -4.64786 0 0 3.35110e+06 5817.88 1.60 1.61 0.80 -1 -1 1.60 0.637956 0.580572 1862 2795 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_43.v common 196.13 vpr 88.59 MiB 0.15 19552 -1 -1 8 3.39 -1 -1 44016 -1 -1 255 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90716 22 19 5524 5169 1 3162 308 24 24 576 mult_36 auto 52.0 MiB 2.33 22483 88.6 MiB 2.98 0.05 4.27196 -3937.42 -4.27196 4.27196 2.08 0.020058 0.0185937 0.862166 0.751845 76 42029 38 1.56141e+07 8.18736e+06 2.61600e+06 4541.67 175.42 11.2638 9.94482 67070 679911 -1 34242 17 12907 22977 2421899 519757 0 0 2421899 519757 20933 14560 0 0 117031 102118 0 0 165009 130148 0 0 20940 15695 0 0 1029754 133656 0 0 1068232 123580 0 0 20933 0 0 8048 17831 19375 68422 2125 188 4.39726 4.39726 -4594.94 -4.39726 0 0 3.24203e+06 5628.53 1.22 0.93 0.86 -1 -1 1.22 0.387775 0.353925 1916 2870 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_44.v common 62.40 vpr 89.23 MiB 0.19 20020 -1 -1 8 3.07 -1 -1 44884 -1 -1 254 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91376 22 19 5582 5227 1 3204 307 24 24 576 mult_36 auto 52.4 MiB 2.33 24330 89.2 MiB 3.41 0.05 4.27196 -4171.59 -4.27196 4.27196 2.57 0.0151744 0.0135366 1.06408 0.926292 80 41408 42 1.56141e+07 8.17389e+06 2.72095e+06 4723.87 40.41 6.41872 5.6916 68798 719145 -1 35864 16 12313 22244 2529196 517669 0 0 2529196 517669 20119 13855 0 0 114718 99140 0 0 161389 126320 0 0 20121 14772 0 0 1117054 132792 0 0 1095795 130790 0 0 20119 0 0 7829 18571 19534 67389 2152 1473 4.64786 4.64786 -4699.78 -4.64786 0 0 3.41546e+06 5929.62 1.59 1.26 0.90 -1 -1 1.59 0.500391 0.460434 1945 2909 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_45.v common 53.82 vpr 90.08 MiB 0.28 20340 -1 -1 8 3.41 -1 -1 41592 -1 -1 262 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92240 22 19 5779 5407 1 3306 316 24 24 576 mult_36 auto 53.3 MiB 2.32 25034 90.1 MiB 3.48 0.04 4.27196 -4178.46 -4.27196 4.27196 2.78 0.0127585 0.0113282 1.10759 0.982279 76 44912 44 1.56141e+07 8.67766e+06 2.61600e+06 4541.67 31.20 6.83628 6.04328 67070 679911 -1 37700 16 13590 24644 2842764 604363 0 0 2842764 604363 21914 15285 0 0 126179 110402 0 0 176900 139697 0 0 21915 16193 0 0 1258211 160817 0 0 1237645 161969 0 0 21914 0 0 8347 22553 23276 72216 2784 588 4.52256 4.52256 -4828.1 -4.52256 0 0 3.24203e+06 5628.53 1.44 1.81 0.82 -1 -1 1.44 0.744272 0.679395 2012 3002 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_46.v common 79.51 vpr 92.18 MiB 0.20 20496 -1 -1 8 4.12 -1 -1 45572 -1 -1 267 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94388 22 19 5837 5465 1 3341 321 24 24 576 mult_36 auto 53.6 MiB 2.42 25644 92.2 MiB 3.99 0.05 4.52256 -4257.26 -4.52256 4.52256 3.09 0.0149146 0.0134279 1.20569 1.05049 78 44721 48 1.56141e+07 8.74502e+06 2.67122e+06 4637.53 55.02 8.34772 7.38345 68222 705597 -1 37922 15 13417 24333 2954666 597265 0 0 2954666 597265 21745 15117 0 0 125359 108176 0 0 180593 141248 0 0 21752 16240 0 0 1290343 158972 0 0 1314874 157512 0 0 21745 0 0 8351 23247 21701 72007 2637 1227 4.52256 4.52256 -4813.34 -4.52256 0 0 3.35110e+06 5817.88 1.59 1.27 0.93 -1 -1 1.59 0.496135 0.45512 2043 3041 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_47.v common 51.69 vpr 92.91 MiB 0.28 20776 -1 -1 8 4.41 -1 -1 45232 -1 -1 275 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 95136 22 19 5997 5608 1 3446 329 24 24 576 mult_36 auto 54.5 MiB 2.40 24110 92.9 MiB 3.57 0.04 4.27196 -4282.3 -4.27196 4.27196 2.58 0.0102527 0.00887739 1.16815 1.02181 76 42740 36 1.56141e+07 8.8528e+06 2.61600e+06 4541.67 28.25 7.98409 7.10181 67070 679911 -1 36118 17 13455 23876 2594769 560963 0 0 2594769 560963 21449 15094 0 0 122496 106823 0 0 173643 137093 0 0 21459 16062 0 0 1117818 143812 0 0 1137904 142079 0 0 21449 0 0 8016 21341 20577 69060 2503 858 4.39726 4.39726 -4906.67 -4.39726 0 0 3.24203e+06 5628.53 0.99 1.69 0.53 -1 -1 0.99 0.782781 0.716039 2100 3116 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_48.v common 46.88 vpr 91.57 MiB 0.27 20956 -1 -1 8 4.23 -1 -1 46196 -1 -1 279 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93772 22 19 6055 5666 1 3477 333 24 24 576 mult_36 auto 54.9 MiB 2.34 25932 91.6 MiB 3.56 0.05 4.27196 -4460.71 -4.27196 4.27196 2.67 0.0134252 0.0116931 1.03398 0.892245 80 43384 35 1.56141e+07 8.90669e+06 2.72095e+06 4723.87 24.35 5.65418 5.00216 68798 719145 -1 38171 14 13473 24141 2627724 545080 0 0 2627724 545080 21615 14936 0 0 123227 106008 0 0 174099 135367 0 0 21617 15860 0 0 1153908 137207 0 0 1133258 135702 0 0 21615 0 0 8164 21775 22442 71299 2549 1906 4.52256 4.52256 -5117.04 -4.52256 0 0 3.41546e+06 5929.62 1.22 1.57 0.57 -1 -1 1.22 0.608926 0.556541 2126 3155 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_49.v common 52.54 vpr 94.61 MiB 0.34 21628 -1 -1 8 4.75 -1 -1 46008 -1 -1 285 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96880 22 19 6324 5918 1 3577 340 24 24 576 mult_36 auto 56.6 MiB 2.88 26212 94.6 MiB 3.76 0.06 4.27196 -4538.26 -4.27196 4.27196 2.55 0.0152934 0.0135335 1.11137 0.966076 76 47502 47 1.56141e+07 9.38352e+06 2.61600e+06 4541.67 27.57 7.46439 6.60921 67070 679911 -1 39258 16 14161 25891 3090924 645275 0 0 3090924 645275 23060 16127 0 0 133463 116360 0 0 188040 148576 0 0 23066 17181 0 0 1341960 172589 0 0 1381335 174442 0 0 23060 0 0 8923 23748 24233 76304 2926 1132 4.64786 4.64786 -5171.62 -4.64786 0 0 3.24203e+06 5628.53 1.48 1.36 0.65 -1 -1 1.48 0.563538 0.517125 2206 3284 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_50.v common 57.99 vpr 94.86 MiB 0.28 21604 -1 -1 8 4.71 -1 -1 46952 -1 -1 292 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 97132 22 19 6382 5976 1 3610 347 24 24 576 mult_36 auto 56.6 MiB 1.57 29603 94.9 MiB 4.08 0.06 4.39726 -4599.11 -4.39726 4.39726 2.80 0.0157851 0.0137943 1.19552 1.03438 84 50960 39 1.56141e+07 9.47782e+06 2.84938e+06 4946.85 33.63 7.09308 6.25242 70522 759407 -1 41657 16 14122 25753 3384293 691202 0 0 3384293 691202 23148 15721 0 0 131863 115130 0 0 180838 142412 0 0 23155 16758 0 0 1522968 195919 0 0 1502321 205262 0 0 23148 0 0 9049 24391 25276 79905 2686 2063 4.52256 4.52256 -5209.39 -4.52256 0 0 3.60864e+06 6265.01 1.69 2.11 0.88 -1 -1 1.69 0.82855 0.753813 2235 3323 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_51.v common 74.50 vpr 115.68 MiB 0.29 22036 -1 -1 8 4.91 -1 -1 47120 -1 -1 297 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 118456 22 19 6542 6119 1 3736 352 24 24 576 mult_36 auto 57.8 MiB 1.93 29625 95.9 MiB 4.45 0.07 4.27196 -4812.72 -4.27196 4.27196 2.64 0.0310979 0.0231 1.68417 1.50891 88 46639 37 1.56141e+07 9.54518e+06 2.98162e+06 5176.42 49.21 10.3135 9.21674 71670 786159 -1 41997 14 13689 24609 2757822 567091 0 0 2757822 567091 22362 15510 0 0 124256 106813 0 0 177466 139319 0 0 22365 16473 0 0 1174909 150529 0 0 1236464 138447 0 0 22362 0 0 8694 22855 20860 76132 2317 1196 4.64786 4.64786 -5476.7 -4.64786 0 0 3.70823e+06 6437.90 1.73 1.86 0.99 -1 -1 1.73 0.796676 0.725452 2287 3398 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_pipe_52.v common 99.92 vpr 98.03 MiB 0.40 22276 -1 -1 8 5.04 -1 -1 46924 -1 -1 301 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100380 22 19 6600 6177 1 3777 356 24 24 576 mult_36 auto 57.8 MiB 2.51 28901 96.0 MiB 4.13 0.06 4.27196 -4740.14 -4.27196 4.27196 2.47 0.0173231 0.0151808 1.21679 1.05711 80 47550 38 1.56141e+07 9.59907e+06 2.72095e+06 4723.87 74.82 9.87275 8.69784 68798 719145 -1 42516 14 14912 27229 2994777 630196 0 0 2994777 630196 24476 16631 0 0 137657 118401 0 0 193657 151129 0 0 24488 17722 0 0 1320335 160986 0 0 1294164 165327 0 0 24476 0 0 9584 22341 26229 83300 2824 569 4.52256 4.52256 -5359.53 -4.52256 0 0 3.41546e+06 5929.62 1.52 1.75 0.91 -1 -1 1.52 0.695202 0.636324 2318 3437 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_14.v common 20.53 vpr 66.35 MiB 0.10 9088 -1 -1 10 0.73 -1 -1 35324 -1 -1 57 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67944 22 19 1149 1049 1 785 102 16 16 256 mult_36 auto 28.1 MiB 0.48 5145 66.4 MiB 0.49 0.01 12.0204 -361.379 -12.0204 12.0204 0.96 0.00261059 0.00226673 0.164385 0.14463 68 10281 29 6.45408e+06 2.3519e+06 1.00038e+06 3907.74 13.67 1.51028 1.35621 27844 252052 -1 9044 19 4869 9419 1105135 239642 0 0 1105135 239642 9419 5851 0 0 49382 44924 0 0 66894 53463 0 0 9886 6761 0 0 477457 64833 0 0 492097 63810 0 0 9419 0 0 4577 12724 10344 87264 0 0 12.3927 12.3927 -459.515 -12.3927 0 0 1.24648e+06 4869.04 0.48 0.54 0.32 -1 -1 0.48 0.174534 0.160934 433 658 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_15.v common 16.23 vpr 66.99 MiB 0.07 9336 -1 -1 11 0.67 -1 -1 35196 -1 -1 63 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68600 22 19 1261 1144 1 857 109 16 16 256 mult_36 auto 28.9 MiB 0.67 5395 67.0 MiB 0.31 0.01 12.4748 -393.909 -12.4748 12.4748 0.91 0.00165492 0.00143176 0.0968626 0.0852172 64 11799 39 6.45408e+06 2.82874e+06 943753. 3686.54 9.63 1.03104 0.921744 27332 240185 -1 9607 21 5169 10063 1108773 241951 0 0 1108773 241951 9745 6116 0 0 51498 46314 0 0 71578 56537 0 0 10156 6869 0 0 476101 63352 0 0 489695 62763 0 0 9745 0 0 4601 9783 10063 62326 363 1 12.8934 12.8934 -590.94 -12.8934 0 0 1.19033e+06 4649.74 0.47 0.62 0.29 -1 -1 0.47 0.20885 0.192543 471 727 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_16.v common 13.97 vpr 66.88 MiB 0.07 9424 -1 -1 11 0.68 -1 -1 35280 -1 -1 70 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68484 22 19 1336 1219 1 919 116 16 16 256 mult_36 auto 28.9 MiB 0.56 5948 66.9 MiB 0.32 0.01 13.6285 -453.588 -13.6285 13.6285 0.91 0.00195275 0.0017232 0.102551 0.0888503 64 12359 26 6.45408e+06 2.92304e+06 943753. 3686.54 7.65 1.07506 0.967916 27332 240185 -1 10516 18 5327 10451 1173946 255080 0 0 1173946 255080 10156 6074 0 0 53946 48678 0 0 75770 59840 0 0 10381 6865 0 0 506070 67709 0 0 517623 65914 0 0 10156 0 0 4852 11632 10153 65376 335 1 13.9183 13.9183 -614.979 -13.9183 0 0 1.19033e+06 4649.74 0.46 0.56 0.29 -1 -1 0.46 0.178585 0.164782 512 783 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_17.v common 14.13 vpr 67.89 MiB 0.08 9924 -1 -1 11 0.88 -1 -1 35436 -1 -1 77 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69520 22 19 1446 1312 1 981 123 16 16 256 mult_36 auto 29.9 MiB 0.57 6339 67.9 MiB 0.58 0.01 12.8431 -458.354 -12.8431 12.8431 0.92 0.00383354 0.00343165 0.19999 0.177586 64 14123 43 6.45408e+06 3.01734e+06 943753. 3686.54 7.08 1.06043 0.947738 27332 240185 -1 11611 18 5743 11089 1204411 270351 0 0 1204411 270351 10535 6972 0 0 60776 54674 0 0 82229 66403 0 0 11056 7885 0 0 524601 68274 0 0 515214 66143 0 0 10535 0 0 4817 8710 8987 40713 592 2 13.3631 13.3631 -640.32 -13.3631 0 0 1.19033e+06 4649.74 0.47 0.74 0.30 -1 -1 0.47 0.271774 0.252779 558 848 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_18.v common 20.70 vpr 68.18 MiB 0.09 10036 -1 -1 11 0.93 -1 -1 35732 -1 -1 79 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69812 22 19 1507 1373 1 1020 125 16 16 256 mult_36 auto 30.1 MiB 0.57 7248 68.2 MiB 0.71 0.01 13.0656 -433.002 -13.0656 13.0656 0.92 0.00365933 0.00319337 0.201974 0.181166 72 14511 26 6.45408e+06 3.04429e+06 1.04740e+06 4091.43 13.22 1.86991 1.68133 28608 268066 -1 12225 20 5787 11421 1300359 292005 0 0 1300359 292005 10859 6799 0 0 59811 53652 0 0 82443 65635 0 0 11152 7800 0 0 560232 78759 0 0 575862 79360 0 0 10859 0 0 5101 9352 9370 41830 668 48 13.814 13.814 -697.656 -13.814 0 0 1.31294e+06 5128.69 0.59 0.71 0.30 -1 -1 0.59 0.234547 0.214156 576 890 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_19.v common 72.66 vpr 69.00 MiB 0.11 10320 -1 -1 11 0.95 -1 -1 35916 -1 -1 80 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70660 22 19 1596 1445 1 1103 127 16 16 256 mult_36 auto 30.7 MiB 0.62 7942 69.0 MiB 0.82 0.01 13.4135 -482.658 -13.4135 13.4135 0.86 0.00212423 0.0018263 0.256504 0.230566 70 16470 46 6.45408e+06 3.45376e+06 1.02522e+06 4004.78 64.96 3.37909 3.0398 28352 262101 -1 13897 20 6791 13476 1545857 337290 0 0 1545857 337290 12666 8300 0 0 70245 62898 0 0 98733 77431 0 0 13189 9362 0 0 668088 89909 0 0 682936 89390 0 0 12666 0 0 5904 11304 11665 49063 874 2 13.6641 13.6641 -707.811 -13.6641 0 0 1.29210e+06 5047.26 0.49 0.77 0.33 -1 -1 0.49 0.246448 0.226559 615 938 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_20.v common 14.95 vpr 68.82 MiB 0.11 10384 -1 -1 11 0.99 -1 -1 35868 -1 -1 86 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70476 22 19 1656 1505 1 1131 133 16 16 256 mult_36 auto 31.0 MiB 0.63 8031 68.8 MiB 0.71 0.01 13.1944 -495.967 -13.1944 13.1944 0.92 0.00402643 0.00343673 0.236051 0.207913 76 15112 31 6.45408e+06 3.53459e+06 1.09288e+06 4269.05 7.80 1.51839 1.34829 29116 278758 -1 13023 20 6718 13368 1398934 308843 0 0 1398934 308843 12572 7866 0 0 68329 62097 0 0 95259 74918 0 0 13028 8812 0 0 599166 79942 0 0 610580 75208 0 0 12572 0 0 5881 12511 10723 49140 839 2 13.9854 13.9854 -716.853 -13.9854 0 0 1.35486e+06 5292.42 0.53 0.49 0.36 -1 -1 0.53 0.152555 0.140057 637 979 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_21.v common 50.71 vpr 69.67 MiB 0.09 10712 -1 -1 12 1.14 -1 -1 36492 -1 -1 91 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71340 22 19 1754 1586 1 1196 138 16 16 256 mult_36 auto 31.8 MiB 0.70 8206 69.7 MiB 0.76 0.02 13.688 -507.173 -13.688 13.688 0.90 0.00648628 0.00585818 0.213674 0.189557 68 17279 45 6.45408e+06 3.60195e+06 1.00038e+06 3907.74 43.14 3.34025 3.01293 27844 252052 -1 13604 20 6778 13015 1578312 344831 0 0 1578312 344831 12273 7989 0 0 68463 61777 0 0 92467 74141 0 0 12712 8691 0 0 693646 94049 0 0 698751 98184 0 0 12273 0 0 5522 10576 10517 44707 836 2 14.4398 14.4398 -713.501 -14.4398 0 0 1.24648e+06 4869.04 0.49 0.49 0.30 -1 -1 0.49 0.146706 0.134973 662 1035 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_22.v common 24.18 vpr 70.25 MiB 0.10 10756 -1 -1 11 1.16 -1 -1 37420 -1 -1 97 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71932 22 19 1827 1659 1 1261 144 16 16 256 mult_36 auto 32.4 MiB 0.62 9037 70.2 MiB 0.71 0.02 12.8941 -491.838 -12.8941 12.8941 0.99 0.00458631 0.00396425 0.239501 0.210887 76 17668 33 6.45408e+06 3.68278e+06 1.09288e+06 4269.05 15.65 2.41698 2.14963 29116 278758 -1 14721 19 7553 15065 1687352 379860 0 0 1687352 379860 14079 8741 0 0 74452 67002 0 0 105064 82185 0 0 14611 9768 0 0 732217 104898 0 0 746929 107266 0 0 14079 0 0 6554 12627 12172 53944 1068 117 13.5276 13.5276 -757.528 -13.5276 0 0 1.35486e+06 5292.42 0.47 0.98 0.44 -1 -1 0.47 0.293881 0.268507 708 1089 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_23.v common 21.06 vpr 70.15 MiB 0.11 11148 -1 -1 12 1.26 -1 -1 37512 -1 -1 97 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71836 22 19 1905 1720 1 1293 145 18 18 324 mult_36 auto 32.5 MiB 0.68 9192 70.2 MiB 0.81 0.01 13.8995 -555.981 -13.8995 13.8995 1.29 0.00464604 0.00407884 0.264068 0.231634 70 18619 48 7.94662e+06 4.07878e+06 1.34436e+06 4149.26 11.72 1.88817 1.69902 36496 347204 -1 16098 21 7668 14962 2031639 422704 0 0 2031639 422704 14022 8960 0 0 81295 73115 0 0 110808 88388 0 0 14558 9710 0 0 899613 119390 0 0 911343 123141 0 0 14022 0 0 6380 12119 12664 52839 1001 192 14.6547 14.6547 -869.331 -14.6547 0 0 1.69344e+06 5226.66 0.65 0.97 0.42 -1 -1 0.65 0.302694 0.278708 722 1124 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_24.v common 21.41 vpr 70.73 MiB 0.09 11264 -1 -1 12 1.10 -1 -1 36872 -1 -1 98 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72432 22 19 1979 1794 1 1336 146 18 18 324 mult_36 auto 32.8 MiB 0.78 9655 70.7 MiB 1.19 0.01 13.3044 -573.887 -13.3044 13.3044 1.32 0.00383581 0.00346276 0.42489 0.38563 70 18941 35 7.94662e+06 4.09226e+06 1.34436e+06 4149.26 11.76 2.12155 1.90725 36496 347204 -1 16351 19 7901 15064 1757286 371051 0 0 1757286 371051 14002 9207 0 0 77325 69055 0 0 108964 85315 0 0 14528 10199 0 0 770207 100052 0 0 772260 97223 0 0 14002 0 0 6128 13306 12950 52153 1089 2 14.4398 14.4398 -904.773 -14.4398 0 0 1.69344e+06 5226.66 0.58 0.82 0.48 -1 -1 0.58 0.360899 0.334669 739 1179 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_25.v common 31.60 vpr 72.04 MiB 0.14 11668 -1 -1 12 1.12 -1 -1 36604 -1 -1 105 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73768 22 19 2073 1871 1 1394 153 18 18 324 mult_36 auto 34.1 MiB 0.80 9629 72.0 MiB 0.97 0.02 14.762 -609.654 -14.762 14.762 1.31 0.00565616 0.00505935 0.341347 0.301499 76 19940 49 7.94662e+06 4.18656e+06 1.43297e+06 4422.75 21.83 3.26826 2.92777 37464 369264 -1 16565 17 7518 14805 1766323 376847 0 0 1766323 376847 13743 9011 0 0 77678 69752 0 0 107072 85488 0 0 14445 10131 0 0 787017 101082 0 0 766368 101383 0 0 13743 0 0 6250 13332 13861 53320 1094 98 15.4746 15.4746 -880.967 -15.4746 0 0 1.77541e+06 5479.65 0.59 0.98 0.37 -1 -1 0.59 0.290156 0.264911 791 1232 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_26.v common 31.08 vpr 72.21 MiB 0.09 11960 -1 -1 12 1.48 -1 -1 37320 -1 -1 106 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73944 22 19 2130 1928 1 1451 154 18 18 324 mult_36 auto 34.3 MiB 0.81 10169 72.2 MiB 1.09 0.02 14.0681 -619.224 -14.0681 14.0681 1.23 0.00582762 0.00525377 0.385576 0.340738 76 20093 31 7.94662e+06 4.20003e+06 1.43297e+06 4422.75 20.45 3.42089 3.06623 37464 369264 -1 17149 19 8277 16250 1887938 399118 0 0 1887938 399118 15103 9850 0 0 80941 73206 0 0 113263 89462 0 0 15737 11206 0 0 829217 108323 0 0 833677 107071 0 0 15103 0 0 6851 13196 14847 57062 1213 26 14.5301 14.5301 -983.587 -14.5301 0 0 1.77541e+06 5479.65 0.76 0.99 0.47 -1 -1 0.76 0.314454 0.288804 811 1270 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_27.v common 74.38 vpr 72.46 MiB 0.21 12076 -1 -1 12 1.63 -1 -1 37000 -1 -1 114 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74196 22 19 2238 2019 1 1541 163 18 18 324 mult_36 auto 34.8 MiB 0.80 11015 72.5 MiB 1.12 0.02 13.5032 -633.141 -13.5032 13.5032 1.33 0.00587482 0.00516355 0.383215 0.337614 70 24160 44 7.94662e+06 4.70381e+06 1.34436e+06 4149.26 63.44 3.92924 3.49435 36496 347204 -1 19217 22 10306 20438 2404134 499638 0 0 2404134 499638 19107 12307 0 0 104443 93594 0 0 148229 114254 0 0 19893 14164 0 0 1046000 136449 0 0 1066462 128870 0 0 19107 0 0 8828 18225 18749 76483 1391 58 14.7485 14.7485 -1009.8 -14.7485 0 0 1.69344e+06 5226.66 0.67 1.10 0.41 -1 -1 0.67 0.346929 0.31722 851 1323 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_28.v common 29.75 vpr 73.06 MiB 0.12 12212 -1 -1 12 1.59 -1 -1 37464 -1 -1 117 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74816 22 19 2299 2080 1 1575 166 18 18 324 mult_36 auto 35.4 MiB 0.73 10911 73.1 MiB 1.20 0.02 14.0471 -622.998 -14.0471 14.0471 1.01 0.00563879 0.00504356 0.442191 0.400317 78 20363 35 7.94662e+06 4.74422e+06 1.46313e+06 4515.82 19.40 3.16843 2.85243 38112 383040 -1 18060 19 8132 15838 2215953 467238 0 0 2215953 467238 14730 9707 0 0 84496 75753 0 0 117194 93345 0 0 15510 10707 0 0 1001004 135733 0 0 983019 141993 0 0 14730 0 0 6622 13857 14128 56916 1173 56 15.2463 15.2463 -877.948 -15.2463 0 0 1.83526e+06 5664.38 0.94 1.16 0.42 -1 -1 0.94 0.359172 0.33011 874 1365 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_29.v common 35.11 vpr 73.59 MiB 0.13 12344 -1 -1 12 1.80 -1 -1 37416 -1 -1 121 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75360 22 19 2400 2164 1 1649 171 22 22 484 mult_36 auto 35.5 MiB 0.85 12373 73.6 MiB 1.21 0.02 12.9796 -660.103 -12.9796 12.9796 2.13 0.00663361 0.00590276 0.388943 0.340233 72 26277 45 1.29336e+07 5.19411e+06 2.11301e+06 4365.72 21.44 2.72155 2.42349 55718 550791 -1 21080 19 10024 19599 2371232 484003 0 0 2371232 484003 18114 12012 0 0 98975 88762 0 0 138080 108924 0 0 19035 13736 0 0 1061380 128811 0 0 1035648 131758 0 0 18114 0 0 8117 17511 18458 68631 1529 394 14.2718 14.2718 -1223.01 -14.2718 0 0 2.64603e+06 5467.00 1.27 1.19 0.64 -1 -1 1.27 0.354298 0.324455 915 1415 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_30.v common 42.75 vpr 74.21 MiB 0.36 12536 -1 -1 12 1.52 -1 -1 37576 -1 -1 127 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75992 22 19 2474 2238 1 1692 177 22 22 484 mult_36 auto 36.3 MiB 0.93 12402 74.2 MiB 1.18 0.02 13.1798 -668.115 -13.1798 13.1798 2.02 0.00868524 0.0077159 0.408445 0.357908 74 24265 47 1.29336e+07 5.27494e+06 2.15943e+06 4461.62 29.37 3.91203 3.48156 56202 562081 -1 20834 19 11175 21756 2461756 505464 0 0 2461756 505464 20368 12986 0 0 108276 97791 0 0 151288 118174 0 0 21171 15276 0 0 1075254 134584 0 0 1085399 126653 0 0 20368 0 0 9222 18300 19754 76793 1432 2 14.1318 14.1318 -1060.98 -14.1318 0 0 2.68771e+06 5553.12 1.29 1.19 0.70 -1 -1 1.29 0.360275 0.32681 947 1470 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_31.v common 132.84 vpr 74.95 MiB 0.14 12884 -1 -1 12 1.98 -1 -1 39244 -1 -1 137 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76748 22 19 2603 2350 1 1765 187 22 22 484 mult_36 auto 37.2 MiB 0.79 12571 74.9 MiB 1.33 0.02 13.3737 -659.34 -13.3737 13.3737 2.21 0.00502964 0.00437552 0.405508 0.355409 70 24588 33 1.29336e+07 5.40966e+06 2.06816e+06 4273.05 120.04 5.3262 4.74201 55234 538945 -1 21448 19 10064 19891 2576889 524040 0 0 2576889 524040 18378 11391 0 0 103914 92828 0 0 143779 114405 0 0 18874 12697 0 0 1128842 146611 0 0 1163102 146108 0 0 18378 0 0 8341 18267 19081 72067 1572 270 14.7128 14.7128 -1205.77 -14.7128 0 0 2.60483e+06 5381.88 0.84 0.90 0.51 -1 -1 0.84 0.236418 0.215037 1001 1549 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_32.v common 35.01 vpr 74.86 MiB 0.15 13164 -1 -1 12 1.95 -1 -1 39468 -1 -1 141 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76652 22 19 2694 2441 1 1849 191 22 22 484 mult_36 auto 37.4 MiB 0.96 13128 74.9 MiB 1.53 0.02 13.4059 -652.366 -13.4059 13.4059 2.21 0.0072606 0.0065147 0.528333 0.476673 74 26088 47 1.29336e+07 5.46355e+06 2.15943e+06 4461.62 20.14 3.34353 3.00733 56202 562081 -1 21704 22 10757 20256 2539471 515819 0 0 2539471 515819 18894 12184 0 0 101146 90642 0 0 141052 111245 0 0 19325 13606 0 0 1125663 141724 0 0 1133391 146418 0 0 18894 0 0 8168 16510 17889 67204 1501 25 14.283 14.283 -1091.43 -14.283 0 0 2.68771e+06 5553.12 1.43 1.41 0.69 -1 -1 1.43 0.433914 0.397131 1040 1621 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_33.v common 105.39 vpr 75.43 MiB 0.15 13436 -1 -1 13 2.08 -1 -1 38284 -1 -1 140 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77244 22 19 2787 2517 1 1916 191 22 22 484 mult_36 auto 38.0 MiB 1.04 13860 75.4 MiB 1.53 0.03 13.6488 -711.294 -13.6488 13.6488 2.22 0.0101822 0.00930384 0.479073 0.405747 74 27172 29 1.29336e+07 5.84608e+06 2.15943e+06 4461.62 90.36 5.34485 4.70258 56202 562081 -1 22940 21 11002 21468 2868174 596117 0 0 2868174 596117 20052 12692 0 0 108058 97265 0 0 150078 118373 0 0 20680 14221 0 0 1274243 173756 0 0 1295063 179810 0 0 20052 0 0 9078 18376 18415 75878 1474 299 15.0741 15.0741 -1268.72 -15.0741 0 0 2.68771e+06 5553.12 1.22 1.27 0.73 -1 -1 1.22 0.412455 0.376532 1070 1664 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_34.v common 31.52 vpr 75.73 MiB 0.10 13592 -1 -1 13 2.12 -1 -1 40164 -1 -1 142 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77552 22 19 2834 2564 1 1944 193 22 22 484 mult_36 auto 38.4 MiB 1.14 13776 75.7 MiB 1.43 0.02 14.2753 -741.266 -14.2753 14.2753 1.93 0.00727282 0.00655635 0.413997 0.354344 76 27411 35 1.29336e+07 5.87302e+06 2.20457e+06 4554.90 16.91 2.63539 2.35723 56682 573177 -1 23086 20 10872 20923 2566066 535285 0 0 2566066 535285 19742 12690 0 0 109924 99410 0 0 152514 121275 0 0 20362 14498 0 0 1144473 144447 0 0 1119051 142965 0 0 19742 0 0 8900 17654 17464 75775 1210 37 16.0296 16.0296 -1349.18 -16.0296 0 0 2.73077e+06 5642.09 1.03 1.35 0.73 -1 -1 1.03 0.419285 0.380139 1084 1692 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_35.v common 114.77 vpr 76.10 MiB 0.15 13916 -1 -1 13 2.14 -1 -1 38800 -1 -1 150 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77924 22 19 2941 2654 1 2012 201 22 22 484 mult_36 auto 38.7 MiB 1.08 14392 76.1 MiB 1.78 0.03 13.9352 -781.481 -13.9352 13.9352 2.16 0.00797015 0.00713696 0.559887 0.48426 74 28682 29 1.29336e+07 5.9808e+06 2.15943e+06 4461.62 100.34 5.14063 4.55169 56202 562081 -1 24136 21 11626 22459 2761295 568544 0 0 2761295 568544 20799 13386 0 0 117286 105910 0 0 160773 127612 0 0 21415 14970 0 0 1225182 154685 0 0 1215840 151981 0 0 20799 0 0 9203 19077 20055 76621 1713 228 15.074 15.074 -1574.59 -15.074 0 0 2.68771e+06 5553.12 0.99 0.98 0.47 -1 -1 0.99 0.350135 0.31784 1131 1750 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_36.v common 35.79 vpr 76.78 MiB 0.18 13980 -1 -1 13 2.24 -1 -1 40104 -1 -1 153 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78624 22 19 3011 2724 1 2050 204 22 22 484 mult_36 auto 39.4 MiB 1.16 14453 76.8 MiB 1.74 0.03 13.7707 -751.494 -13.7707 13.7707 2.11 0.0113536 0.0103137 0.585264 0.51878 76 29166 47 1.29336e+07 6.02122e+06 2.20457e+06 4554.90 20.48 3.02173 2.68034 56682 573177 -1 24174 21 12121 23445 2974695 614218 0 0 2974695 614218 21988 13845 0 0 122333 110950 0 0 168746 134322 0 0 22790 15583 0 0 1310893 167979 0 0 1327945 171539 0 0 21988 0 0 9898 19163 19575 82292 1497 212 14.9018 14.9018 -1391.02 -14.9018 0 0 2.73077e+06 5642.09 1.13 1.16 0.46 -1 -1 1.13 0.420401 0.384186 1168 1801 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_37.v common 31.98 vpr 77.19 MiB 0.16 14332 -1 -1 13 2.44 -1 -1 40348 -1 -1 158 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79040 22 19 3132 2828 1 2123 210 24 24 576 mult_36 auto 39.8 MiB 1.17 15481 77.2 MiB 1.10 0.02 14.4868 -903.454 -14.4868 14.4868 2.20 0.00629734 0.00523395 0.331648 0.283902 74 29452 32 1.56141e+07 6.48458e+06 2.56259e+06 4448.94 14.95 2.43336 2.16207 66498 666725 -1 25337 21 11769 22731 2983928 599958 0 0 2983928 599958 21317 13737 0 0 114590 102878 0 0 157808 125386 0 0 21951 15152 0 0 1311616 173115 0 0 1356646 169690 0 0 21317 0 0 9577 19036 19669 80749 1448 22 14.8704 14.8704 -1523.2 -14.8704 0 0 3.19068e+06 5539.38 1.77 1.72 0.83 -1 -1 1.77 0.537037 0.491118 1192 1872 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_38.v common 37.32 vpr 77.45 MiB 0.20 14404 -1 -1 13 1.72 -1 -1 40512 -1 -1 160 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79304 22 19 3159 2855 1 2172 212 24 24 576 mult_36 auto 40.1 MiB 1.15 15337 77.4 MiB 1.41 0.02 14.4084 -940.203 -14.4084 14.4084 2.30 0.00451724 0.00395729 0.430286 0.374877 74 30259 35 1.56141e+07 6.51152e+06 2.56259e+06 4448.94 21.72 3.05197 2.70909 66498 666725 -1 25578 20 12078 22960 2674420 542857 0 0 2674420 542857 21228 13939 0 0 113706 101270 0 0 158343 125181 0 0 21777 15614 0 0 1174697 148697 0 0 1184669 138156 0 0 21228 0 0 9177 19896 21161 78183 1763 104 15.2386 15.2386 -1564.1 -15.2386 0 0 3.19068e+06 5539.38 1.63 1.25 0.86 -1 -1 1.63 0.365017 0.333248 1207 1880 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_39.v common 53.57 vpr 84.43 MiB 0.19 14768 -1 -1 13 2.11 -1 -1 39332 -1 -1 169 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86460 22 19 3284 2963 1 2259 221 24 24 576 mult_36 auto 40.9 MiB 1.49 16556 78.2 MiB 1.46 0.03 14.8416 -966.85 -14.8416 14.8416 2.54 0.0084965 0.00759024 0.433982 0.376978 76 32170 30 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 36.38 4.33287 3.85465 67070 679911 -1 26884 21 13810 27680 3176058 652222 0 0 3176058 652222 25655 16135 0 0 137932 124280 0 0 192955 149921 0 0 26692 18056 0 0 1400623 174048 0 0 1392201 169782 0 0 25655 0 0 11873 26622 27157 100786 2051 376 15.4681 15.4681 -1620.41 -15.4681 0 0 3.24203e+06 5628.53 1.63 1.85 0.86 -1 -1 1.63 0.609515 0.552613 1267 1957 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_40.v common 54.13 vpr 88.19 MiB 0.19 14784 -1 -1 13 2.52 -1 -1 39876 -1 -1 169 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90308 22 19 3343 3022 1 2282 221 24 24 576 mult_36 auto 41.3 MiB 1.37 16103 78.5 MiB 1.79 0.03 14.5379 -829.329 -14.5379 14.5379 2.59 0.00806021 0.00699449 0.569001 0.496427 84 28959 27 1.56141e+07 6.63277e+06 2.84938e+06 4946.85 35.44 4.96111 4.43036 70522 759407 -1 25145 19 11859 23115 3436709 729344 0 0 3436709 729344 21610 13601 0 0 118541 106459 0 0 158323 126188 0 0 22422 15361 0 0 1564745 227740 0 0 1551068 239995 0 0 21610 0 0 9778 18865 18910 81389 1564 78 14.9564 14.9564 -1239.47 -14.9564 0 0 3.60864e+06 6265.01 1.83 1.82 1.01 -1 -1 1.83 0.510003 0.467294 1284 1997 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_41.v common 49.07 vpr 79.09 MiB 0.26 15144 -1 -1 13 2.76 -1 -1 39680 -1 -1 175 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80984 22 19 3448 3110 1 2364 228 24 24 576 mult_36 auto 41.9 MiB 0.79 17649 79.1 MiB 2.16 0.04 14.3188 -964.321 -14.3188 14.3188 2.57 0.0140425 0.0123871 0.660677 0.579953 78 32357 39 1.56141e+07 7.1096e+06 2.67122e+06 4637.53 31.31 4.44034 3.95962 68222 705597 -1 28453 21 13551 26328 3635002 733011 0 0 3635002 733011 24522 15496 0 0 141779 127416 0 0 197677 156706 0 0 25322 17215 0 0 1581279 210240 0 0 1664423 205938 0 0 24522 0 0 11003 24627 22161 93773 1842 81 14.7304 14.7304 -1614.39 -14.7304 0 0 3.35110e+06 5817.88 1.44 1.90 0.79 -1 -1 1.44 0.51684 0.468587 1333 2054 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_42.v common 50.10 vpr 79.65 MiB 0.25 15284 -1 -1 13 2.78 -1 -1 41332 -1 -1 179 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81564 22 19 3510 3172 1 2403 232 24 24 576 mult_36 auto 42.5 MiB 1.18 18000 79.7 MiB 2.19 0.04 14.4441 -997.144 -14.4441 14.4441 2.27 0.0141479 0.0128942 0.611938 0.539614 78 33010 27 1.56141e+07 7.16349e+06 2.67122e+06 4637.53 31.99 4.23837 3.76554 68222 705597 -1 29079 20 13363 25835 3098611 622458 0 0 3098611 622458 24053 15542 0 0 131352 117386 0 0 185001 145637 0 0 24858 17574 0 0 1358194 166877 0 0 1375153 159442 0 0 24053 0 0 10717 23329 23655 92480 1844 32 14.9453 14.9453 -1699.6 -14.9453 0 0 3.35110e+06 5817.88 1.48 1.91 0.91 -1 -1 1.48 0.62645 0.58055 1352 2097 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_43.v common 43.18 vpr 81.07 MiB 0.20 15500 -1 -1 13 2.92 -1 -1 38132 -1 -1 182 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83016 22 19 3598 3243 1 2469 235 24 24 576 mult_36 auto 43.1 MiB 1.09 18261 81.1 MiB 2.24 0.07 14.6232 -927.547 -14.6232 14.6232 2.81 0.0090958 0.00801516 0.688267 0.59047 76 36211 43 1.56141e+07 7.2039e+06 2.61600e+06 4541.67 24.22 3.60867 3.19506 67070 679911 -1 29422 21 13780 27118 3755300 769975 0 0 3755300 769975 25212 16118 0 0 140806 127180 0 0 191391 153917 0 0 26161 17789 0 0 1641643 227480 0 0 1730087 227491 0 0 25212 0 0 11459 23819 23226 95820 1991 507 15.6648 15.6648 -1425.06 -15.6648 0 0 3.24203e+06 5628.53 1.57 1.69 0.85 -1 -1 1.57 0.495761 0.447566 1391 2138 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_44.v common 56.85 vpr 90.86 MiB 0.21 15716 -1 -1 13 3.06 -1 -1 42064 -1 -1 189 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93044 22 19 3689 3334 1 2527 242 24 24 576 mult_36 auto 43.6 MiB 1.34 17950 81.6 MiB 2.03 0.03 14.7093 -995.949 -14.7093 14.7093 2.50 0.00955864 0.00846981 0.601229 0.53339 80 31854 24 1.56141e+07 7.29821e+06 2.72095e+06 4723.87 38.46 5.62132 5.02996 68798 719145 -1 28673 18 12944 25586 2715756 560406 0 0 2715756 560406 24115 14817 0 0 123992 109544 0 0 174043 135460 0 0 24954 16750 0 0 1160984 143006 0 0 1207668 140829 0 0 24115 0 0 11197 21780 21638 94095 1564 191 15.4611 15.4611 -1510.96 -15.4611 0 0 3.41546e+06 5929.62 1.56 1.39 0.92 -1 -1 1.56 0.503582 0.457897 1433 2210 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_45.v common 60.90 vpr 88.01 MiB 0.30 15908 -1 -1 13 3.22 -1 -1 42072 -1 -1 191 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90124 22 19 3763 3391 1 2591 245 24 24 576 mult_36 auto 43.6 MiB 1.49 18553 81.7 MiB 2.59 0.04 14.3222 -1050.75 -14.3222 14.3222 2.02 0.00927119 0.00792283 0.771398 0.669858 78 34887 31 1.56141e+07 7.72115e+06 2.67122e+06 4637.53 41.04 5.8728 5.16559 68222 705597 -1 30167 20 14304 28037 3284685 677320 0 0 3284685 677320 25946 16458 0 0 148275 133119 0 0 206134 163390 0 0 26718 18401 0 0 1428332 175965 0 0 1449280 169987 0 0 25946 0 0 11670 25311 24767 97343 2122 90 14.9487 14.9487 -1615.32 -14.9487 0 0 3.35110e+06 5817.88 1.83 2.05 0.93 -1 -1 1.83 0.681378 0.620308 1453 2234 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_46.v common 60.88 vpr 92.80 MiB 0.22 16140 -1 -1 13 3.08 -1 -1 42208 -1 -1 195 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 95024 22 19 3845 3473 1 2635 249 24 24 576 mult_36 auto 44.1 MiB 1.43 19437 82.1 MiB 1.95 0.04 14.8984 -1016.65 -14.8984 14.8984 2.45 0.00991382 0.00879902 0.595535 0.518236 84 34637 50 1.56141e+07 7.77504e+06 2.84938e+06 4946.85 41.17 6.73612 5.97447 70522 759407 -1 29931 19 13077 25267 2706634 553613 0 0 2706634 553613 23821 14871 0 0 122332 108789 0 0 163366 130026 0 0 24560 16358 0 0 1168270 143528 0 0 1204285 140041 0 0 23821 0 0 10773 22176 20578 91713 1521 189 15.7789 15.7789 -1519.94 -15.7789 0 0 3.60864e+06 6265.01 1.70 1.89 0.93 -1 -1 1.70 0.665644 0.616478 1482 2297 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_47.v common 38.68 vpr 82.43 MiB 0.27 16464 -1 -1 13 3.44 -1 -1 41100 -1 -1 206 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84404 22 19 3983 3594 1 2724 260 24 24 576 mult_36 auto 45.2 MiB 1.39 19383 82.4 MiB 2.45 0.04 14.4083 -1073.29 -14.4083 14.4083 2.35 0.0109981 0.00981762 0.732556 0.634095 76 37619 40 1.56141e+07 7.92323e+06 2.61600e+06 4541.67 19.40 3.98814 3.5249 67070 679911 -1 31418 19 14350 27897 3024453 647081 0 0 3024453 647081 26087 16696 0 0 141954 127412 0 0 192823 154889 0 0 27079 18681 0 0 1319692 167343 0 0 1316818 162060 0 0 26087 0 0 11766 24510 24504 98247 1847 321 15.4577 15.4577 -1762.38 -15.4577 0 0 3.24203e+06 5628.53 1.61 1.90 0.67 -1 -1 1.61 0.700523 0.640923 1559 2386 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_48.v common 43.88 vpr 82.53 MiB 0.25 16832 -1 -1 13 3.18 -1 -1 42424 -1 -1 202 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84508 22 19 4025 3636 1 2760 256 24 24 576 mult_36 auto 45.4 MiB 1.41 19748 82.5 MiB 1.31 0.04 14.4441 -1129.92 -14.4441 14.4441 2.05 0.00951105 0.00823765 0.384056 0.331357 78 36206 32 1.56141e+07 7.86934e+06 2.67122e+06 4637.53 25.33 4.34019 3.85925 68222 705597 -1 31780 20 14732 29166 3050171 640462 0 0 3050171 640462 27073 17004 0 0 144560 128289 0 0 205853 160431 0 0 27915 19257 0 0 1310627 160508 0 0 1334143 154973 0 0 27073 0 0 12370 25514 25794 102982 2183 744 15.1959 15.1959 -1647.86 -15.1959 0 0 3.35110e+06 5817.88 1.59 1.75 0.92 -1 -1 1.59 0.630499 0.572822 1547 2409 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_49.v common 62.20 vpr 94.28 MiB 0.22 16984 -1 -1 13 3.40 -1 -1 42544 -1 -1 213 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96540 22 19 4164 3758 1 2857 268 24 24 576 mult_36 auto 46.8 MiB 1.49 23570 84.2 MiB 2.09 0.07 15.3682 -1091.87 -15.3682 15.3682 1.96 0.0108526 0.00966517 0.571932 0.500191 86 40045 40 1.56141e+07 8.41354e+06 2.91907e+06 5067.82 42.39 6.52505 5.81982 71098 772847 -1 35724 20 15280 29755 3868435 805425 0 0 3868435 805425 27800 17596 0 0 154447 137980 0 0 216227 171472 0 0 28645 19959 0 0 1726135 231894 0 0 1715181 226524 0 0 27800 0 0 12548 29353 27332 109523 1978 339 15.7049 15.7049 -1687.11 -15.7049 0 0 3.65856e+06 6351.67 1.88 2.45 1.03 -1 -1 1.88 0.737087 0.670736 1622 2498 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_50.v common 49.68 vpr 84.32 MiB 0.27 17124 -1 -1 13 3.59 -1 -1 38732 -1 -1 212 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86340 22 19 4190 3784 1 2864 267 24 24 576 mult_36 auto 46.7 MiB 1.57 20824 84.3 MiB 2.43 0.04 14.6589 -1033.43 -14.6589 14.6589 2.49 0.0110453 0.00984577 0.749527 0.650294 76 41580 39 1.56141e+07 8.40006e+06 2.61600e+06 4541.67 28.65 4.57192 4.04491 67070 679911 -1 33992 21 15684 30416 4399730 932746 0 0 4399730 932746 28054 17931 0 0 160316 144471 0 0 216328 174713 0 0 28880 20107 0 0 1976819 281765 0 0 1989333 293759 0 0 28054 0 0 12400 27584 27617 104428 2415 1002 15.536 15.536 -1815.29 -15.536 0 0 3.24203e+06 5628.53 1.55 2.18 0.89 -1 -1 1.55 0.633667 0.574695 1618 2505 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_51.v common 69.04 vpr 97.97 MiB 0.23 17356 -1 -1 13 3.64 -1 -1 42568 -1 -1 216 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100324 22 19 4305 3882 1 2950 271 24 24 576 mult_36 auto 47.7 MiB 1.57 22869 85.5 MiB 1.78 0.04 14.9061 -1242.71 -14.9061 14.9061 2.00 0.0121791 0.0104623 0.511852 0.43566 86 40531 32 1.56141e+07 8.45395e+06 2.91907e+06 5067.82 48.84 7.19461 6.3899 71098 772847 -1 35651 21 15658 31646 3584692 726369 0 0 3584692 726369 28734 18151 0 0 158422 140913 0 0 225128 175563 0 0 29965 20156 0 0 1550980 192621 0 0 1591463 178965 0 0 28734 0 0 13105 33825 31633 112909 2946 531 15.5214 15.5214 -1802.51 -15.5214 0 0 3.65856e+06 6351.67 1.63 1.97 0.88 -1 -1 1.63 0.68986 0.628972 1666 2571 -1 -1 -1 -1 -k6_frac_N8_22nm.xml fir_nopipe_52.v common 52.71 vpr 85.80 MiB 0.23 17712 -1 -1 13 3.41 -1 -1 39496 -1 -1 227 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87860 22 19 4363 3940 1 3005 282 24 24 576 mult_36 auto 48.2 MiB 1.57 22655 85.8 MiB 2.48 0.04 14.5582 -1126.55 -14.5582 14.5582 2.42 0.0119116 0.0105537 0.739895 0.644831 84 40631 33 1.56141e+07 8.60214e+06 2.84938e+06 4946.85 31.75 5.27905 4.66055 70522 759407 -1 34378 19 16460 32184 3917767 793689 0 0 3917767 793689 29904 18370 0 0 159185 143402 0 0 212628 169300 0 0 30671 20643 0 0 1680611 222904 0 0 1804768 219070 0 0 29904 0 0 13471 31423 27704 114486 2377 1574 14.9879 14.9879 -1965.6 -14.9879 0 0 3.60864e+06 6265.01 1.66 1.81 0.94 -1 -1 1.66 0.617871 0.560028 1697 2610 -1 -1 -1 -1 -k6_frac_ripple_N8_22nm.xml fir_pipe_14.v common 13.20 vpr 69.36 MiB 0.08 10368 -1 -1 1 0.28 -1 -1 35140 -1 -1 81 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71024 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 31.3 MiB 0.56 5532 69.4 MiB 0.70 0.02 3.91806 -1040.42 -3.91806 3.91806 0.97 0.00344565 0.00298835 0.188639 0.164813 54 11342 33 6.52434e+06 2.71588e+06 829453. 3240.05 7.33 1.53053 1.37179 26108 202796 -1 8650 20 4018 4750 649693 168989 0 0 649693 168989 4454 4033 0 0 36219 32933 0 0 42534 38339 0 0 4467 4056 0 0 277772 43888 0 0 284247 45740 0 0 4454 0 0 456 3917 3417 27350 360 2 4.29396 4.29396 -1256.64 -4.29396 0 0 1.02522e+06 4004.78 0.32 0.30 0.25 -1 -1 0.32 0.150278 0.137789 605 649 247 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_15.v common 13.25 vpr 70.48 MiB 0.08 10776 -1 -1 1 0.32 -1 -1 35880 -1 -1 88 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72172 22 19 2144 1789 1 1119 134 16 16 256 mult_36 auto 32.4 MiB 0.58 6531 70.5 MiB 0.56 0.01 3.91806 -1168.25 -3.91806 3.91806 0.90 0.00340214 0.00289322 0.161494 0.141694 56 11905 25 6.52434e+06 3.20969e+06 849745. 3319.32 7.28 1.45042 1.29663 26364 208198 -1 10017 16 4104 4669 690773 169975 0 0 690773 169975 4335 4126 0 0 34740 31006 0 0 42417 38039 0 0 4345 4159 0 0 303224 45243 0 0 301712 47402 0 0 4335 0 0 250 1783 2119 5006 438 10 4.41926 4.41926 -1412.23 -4.41926 0 0 1.04740e+06 4091.43 0.40 0.44 0.24 -1 -1 0.40 0.208076 0.190883 654 704 266 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_16.v common 18.75 vpr 70.93 MiB 0.08 10804 -1 -1 1 0.31 -1 -1 35988 -1 -1 91 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72632 22 19 2218 1846 1 1161 137 16 16 256 mult_36 auto 32.9 MiB 0.63 6725 70.9 MiB 0.68 0.02 3.91806 -1218.73 -3.91806 3.91806 0.97 0.0041558 0.00357316 0.178518 0.155672 56 13191 40 6.52434e+06 3.25161e+06 849745. 3319.32 11.98 1.97083 1.7474 26364 208198 -1 10869 20 4819 5527 890551 213383 0 0 890551 213383 5030 4853 0 0 41273 37144 0 0 50707 45232 0 0 5033 4880 0 0 403268 59703 0 0 385240 61571 0 0 5030 0 0 228 2525 2548 5890 559 21 4.41926 4.41926 -1406.51 -4.41926 0 0 1.04740e+06 4091.43 0.38 0.62 0.26 -1 -1 0.38 0.282716 0.26232 683 723 285 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_17.v common 15.43 vpr 72.28 MiB 0.06 11580 -1 -1 1 0.29 -1 -1 36716 -1 -1 103 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74016 22 19 2536 2130 1 1274 149 16 16 256 mult_36 auto 34.2 MiB 0.71 7384 72.3 MiB 1.03 0.02 4.04336 -1366.18 -4.04336 4.04336 0.95 0.00507009 0.00446052 0.300969 0.266671 54 14694 39 6.52434e+06 3.4193e+06 829453. 3240.05 8.89 2.206 1.96857 26108 202796 -1 11063 19 4686 5415 805239 204345 0 0 805239 204345 4878 4704 0 0 41629 37778 0 0 48615 44000 0 0 4881 4727 0 0 352891 55114 0 0 352345 58022 0 0 4878 0 0 210 2273 2877 5641 596 120 4.41926 4.41926 -1537.81 -4.41926 0 0 1.02522e+06 4004.78 0.44 0.48 0.25 -1 -1 0.44 0.185481 0.16239 770 851 304 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_18.v common 13.98 vpr 72.61 MiB 0.16 11864 -1 -1 1 0.41 -1 -1 36648 -1 -1 107 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74356 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 34.7 MiB 0.69 7505 72.6 MiB 0.93 0.02 3.79276 -1370.42 -3.79276 3.79276 0.97 0.00494116 0.00436223 0.246557 0.215917 58 14015 35 6.52434e+06 3.47519e+06 871168. 3403.00 6.92 1.45085 1.28816 26872 219187 -1 11258 18 4808 5568 739157 183362 0 0 739157 183362 5069 4872 0 0 40530 36270 0 0 49740 44354 0 0 5077 4902 0 0 316326 46799 0 0 322415 46165 0 0 5069 0 0 276 2374 2716 6047 582 35 4.29396 4.29396 -1585.89 -4.29396 0 0 1.09288e+06 4269.05 0.43 0.51 0.26 -1 -1 0.43 0.262684 0.239772 798 870 323 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_19.v common 18.79 vpr 73.46 MiB 0.11 12140 -1 -1 1 0.39 -1 -1 37020 -1 -1 113 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75228 22 19 2778 2321 1 1410 160 16 16 256 mult_36 auto 35.7 MiB 0.64 8691 73.5 MiB 1.39 0.02 3.91806 -1509.95 -3.91806 3.91806 0.99 0.00482962 0.00422195 0.355925 0.310874 60 15087 28 6.52434e+06 3.95503e+06 890343. 3477.90 10.38 2.35669 2.10177 27128 224764 -1 12451 18 5081 5941 840313 204622 0 0 840313 204622 5391 5117 0 0 43815 39351 0 0 52006 46842 0 0 5396 5141 0 0 371684 53493 0 0 362021 54678 0 0 5391 0 0 328 3218 2936 6406 679 57 4.41926 4.41926 -1819.23 -4.41926 0 0 1.11577e+06 4358.47 0.48 0.72 0.32 -1 -1 0.48 0.293968 0.269599 846 925 342 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_20.v common 17.38 vpr 73.80 MiB 0.18 12416 -1 -1 1 0.40 -1 -1 36804 -1 -1 118 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75576 22 19 2852 2378 1 1454 165 16 16 256 mult_36 auto 35.9 MiB 0.65 9483 73.8 MiB 1.32 0.02 4.04336 -1544.54 -4.04336 4.04336 0.98 0.00485862 0.00417425 0.340172 0.298799 66 15447 26 6.52434e+06 4.0249e+06 974584. 3806.97 10.75 2.4051 2.1416 28148 247068 -1 12702 16 4968 5709 783144 192127 0 0 783144 192127 5238 5021 0 0 42094 37740 0 0 51121 45860 0 0 5242 5046 0 0 343111 49122 0 0 336338 49338 0 0 5238 0 0 286 2436 2530 6230 557 26 4.41926 4.41926 -1751.26 -4.41926 0 0 1.22072e+06 4768.46 0.30 0.29 0.18 -1 -1 0.30 0.128336 0.11629 875 944 361 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_21.v common 17.58 vpr 74.76 MiB 0.12 12836 -1 -1 1 0.48 -1 -1 37380 -1 -1 122 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76556 22 19 3057 2549 1 1559 169 16 16 256 mult_36 auto 37.0 MiB 0.75 10025 74.8 MiB 1.00 0.02 4.16866 -1686.98 -4.16866 4.16866 0.89 0.00592718 0.00517947 0.26189 0.228856 62 17895 38 6.52434e+06 4.0808e+06 916467. 3579.95 9.83 2.37102 2.10002 27384 229598 -1 13915 17 5736 6724 1049725 259179 0 0 1049725 259179 5996 5782 0 0 53921 48820 0 0 63148 57310 0 0 6000 5806 0 0 463070 69332 0 0 457590 72129 0 0 5996 0 0 277 3412 3655 6795 840 212 4.41926 4.41926 -2002.24 -4.41926 0 0 1.13630e+06 4438.68 0.39 0.55 0.28 -1 -1 0.39 0.242858 0.222601 932 1017 380 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_22.v common 15.38 vpr 75.45 MiB 0.14 12832 -1 -1 1 0.49 -1 -1 37736 -1 -1 125 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77256 22 19 3131 2606 1 1599 172 16 16 256 mult_36 auto 37.6 MiB 0.83 9771 75.4 MiB 0.99 0.02 4.04336 -1711.14 -4.04336 4.04336 0.91 0.00299074 0.00255989 0.26944 0.236982 64 16768 28 6.52434e+06 4.12272e+06 943753. 3686.54 7.35 2.14804 1.92261 27892 240595 -1 13524 16 5637 6577 904226 221207 0 0 904226 221207 5884 5688 0 0 48062 42825 0 0 59166 52880 0 0 5889 5707 0 0 394843 56868 0 0 390382 57239 0 0 5884 0 0 264 3491 3569 6856 770 107 4.41926 4.41926 -2045.7 -4.41926 0 0 1.19033e+06 4649.74 0.47 0.71 0.45 -1 -1 0.47 0.347311 0.318544 961 1036 399 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_23.v common 20.28 vpr 75.99 MiB 0.13 13184 -1 -1 1 0.50 -1 -1 37396 -1 -1 133 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77812 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 38.3 MiB 0.67 9614 76.0 MiB 1.66 0.03 3.91806 -1787.72 -3.91806 3.91806 1.29 0.00662584 0.00589117 0.419992 0.364572 58 17491 26 8.04299e+06 4.63052e+06 1.14310e+06 3528.09 10.84 2.25774 2.00864 34680 290288 -1 14748 19 6534 7558 1147484 273613 0 0 1147484 273613 6790 6574 0 0 57230 51557 0 0 69112 62294 0 0 6795 6606 0 0 501947 72093 0 0 505610 74489 0 0 6790 0 0 276 3674 4069 7867 835 30 4.29396 4.29396 -2144.48 -4.29396 0 0 1.43297e+06 4422.75 0.64 0.75 0.34 -1 -1 0.64 0.346341 0.31785 1012 1091 418 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_24.v common 22.27 vpr 76.44 MiB 0.13 13240 -1 -1 1 0.52 -1 -1 37908 -1 -1 137 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78276 22 19 3375 2799 1 1743 185 18 18 324 mult_36 auto 38.5 MiB 0.96 10338 76.4 MiB 1.71 0.03 4.16866 -1810.95 -4.16866 4.16866 1.34 0.00565305 0.0048485 0.436285 0.383515 58 19035 49 8.04299e+06 4.68641e+06 1.14310e+06 3528.09 11.93 2.59779 2.30859 34680 290288 -1 15628 19 6420 7514 1247362 294088 0 0 1247362 294088 6728 6474 0 0 56581 50751 0 0 69222 61961 0 0 6734 6512 0 0 553104 82907 0 0 554993 85483 0 0 6728 0 0 326 3689 4120 7972 872 128 4.64786 4.64786 -2086.5 -4.64786 0 0 1.43297e+06 4422.75 0.58 0.94 0.33 -1 -1 0.58 0.478672 0.443476 1041 1110 437 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_25.v common 20.22 vpr 77.34 MiB 0.14 13820 -1 -1 1 0.61 -1 -1 37640 -1 -1 146 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79196 22 19 3615 3005 1 1847 194 18 18 324 mult_36 auto 39.6 MiB 0.99 11465 77.3 MiB 1.98 0.03 4.04336 -2012.57 -4.04336 4.04336 1.25 0.0072945 0.00649267 0.51425 0.456257 58 21207 44 8.04299e+06 4.81218e+06 1.14310e+06 3528.09 10.08 2.86991 2.56772 34680 290288 -1 16861 18 6917 8332 1253666 293735 0 0 1253666 293735 7162 6954 0 0 59060 52667 0 0 72446 64645 0 0 7164 6973 0 0 553627 79779 0 0 554207 82717 0 0 7162 0 0 264 5759 5338 8269 1220 266 4.41926 4.41926 -2378.91 -4.41926 0 0 1.43297e+06 4422.75 0.51 0.93 0.34 -1 -1 0.51 0.369249 0.335976 1107 1201 456 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_26.v common 25.41 vpr 77.68 MiB 0.24 14036 -1 -1 1 0.51 -1 -1 37756 -1 -1 148 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79544 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 39.9 MiB 1.08 11745 77.7 MiB 1.63 0.03 3.79276 -1993.71 -3.79276 3.79276 1.28 0.00775102 0.00693768 0.427658 0.378367 64 20921 30 8.04299e+06 4.84013e+06 1.23838e+06 3822.15 15.42 3.45459 3.08072 35972 318676 -1 16768 17 7074 8107 1252216 283611 0 0 1252216 283611 7379 7115 0 0 59487 53017 0 0 73056 65248 0 0 7383 7156 0 0 552687 74947 0 0 552224 76128 0 0 7379 0 0 324 3730 3758 8779 796 56 4.79516 4.79516 -2402.43 -4.79516 0 0 1.56068e+06 4816.91 0.59 0.72 0.36 -1 -1 0.59 0.309688 0.279956 1135 1220 475 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_27.v common 26.57 vpr 78.98 MiB 0.15 14288 -1 -1 1 0.61 -1 -1 38468 -1 -1 156 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80872 22 19 3871 3210 1 1998 205 18 18 324 mult_36 auto 41.2 MiB 1.15 12494 79.0 MiB 1.78 0.03 4.16866 -2116.43 -4.16866 4.16866 1.21 0.00756034 0.00668743 0.434038 0.381917 66 21954 33 8.04299e+06 5.34793e+06 1.27759e+06 3943.17 16.11 3.8525 3.45358 36296 327148 -1 17589 18 6955 7945 1151159 265542 0 0 1151159 265542 7244 7001 0 0 55946 49562 0 0 68894 61409 0 0 7253 7029 0 0 516273 69157 0 0 495549 71384 0 0 7244 0 0 304 3305 3717 8473 770 46 4.52256 4.52256 -2411.76 -4.52256 0 0 1.59950e+06 4936.74 0.62 0.68 0.37 -1 -1 0.62 0.375553 0.341458 1191 1275 494 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_28.v common 24.09 vpr 79.43 MiB 0.15 14564 -1 -1 1 0.66 -1 -1 37940 -1 -1 160 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81340 22 19 3945 3267 1 2043 209 18 18 324 mult_36 auto 41.7 MiB 1.31 13469 79.4 MiB 1.81 0.03 4.04336 -2173.61 -4.04336 4.04336 1.20 0.0104411 0.00956917 0.419964 0.371788 64 24442 44 8.04299e+06 5.40382e+06 1.23838e+06 3822.15 12.55 2.80445 2.48986 35972 318676 -1 19057 20 7480 8574 1272210 285216 0 0 1272210 285216 7775 7515 0 0 59346 52543 0 0 74503 65892 0 0 7780 7572 0 0 560447 77112 0 0 562359 74582 0 0 7775 0 0 312 3438 4111 9295 838 180 4.41926 4.41926 -2635.89 -4.41926 0 0 1.56068e+06 4816.91 0.64 1.10 0.40 -1 -1 0.64 0.45888 0.418549 1219 1294 513 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_29.v common 27.65 vpr 80.18 MiB 0.21 14956 -1 -1 1 0.66 -1 -1 38908 -1 -1 170 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82104 22 19 4159 3447 1 2157 220 22 22 484 mult_36 auto 42.5 MiB 1.27 13881 80.2 MiB 2.10 0.02 3.91806 -2256.75 -3.91806 3.91806 2.12 0.00416375 0.00357552 0.529232 0.463133 56 25870 28 1.30842e+07 5.93957e+06 1.71605e+06 3545.56 13.64 2.6687 2.36022 51606 428054 -1 21578 17 8723 10189 1827548 416661 0 0 1827548 416661 9097 8805 0 0 81086 72985 0 0 97944 88169 0 0 9099 8863 0 0 809356 118178 0 0 820966 119661 0 0 9097 0 0 397 5343 5818 11154 1135 79 4.41926 4.41926 -2881.94 -4.41926 0 0 2.11301e+06 4365.72 1.02 1.05 0.43 -1 -1 1.02 0.409624 0.371097 1283 1367 532 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_30.v common 31.53 vpr 80.25 MiB 0.16 15100 -1 -1 1 0.69 -1 -1 40216 -1 -1 173 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82172 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 42.5 MiB 1.19 14538 80.2 MiB 2.05 0.03 3.79276 -2331.2 -3.79276 3.79276 2.09 0.00818935 0.00724423 0.465565 0.407833 58 27133 33 1.30842e+07 5.98149e+06 1.75961e+06 3635.55 17.93 3.27427 2.90104 52570 450426 -1 21764 18 8536 10026 1662281 366926 0 0 1662281 366926 8947 8619 0 0 72074 64370 0 0 88358 78903 0 0 8951 8689 0 0 747280 101739 0 0 736671 104606 0 0 8947 0 0 427 5026 5796 11156 1125 250 4.41926 4.41926 -2770.54 -4.41926 0 0 2.20457e+06 4554.90 1.00 0.97 0.51 -1 -1 1.00 0.424501 0.387032 1311 1386 551 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_31.v common 29.82 vpr 81.96 MiB 0.16 15356 -1 -1 1 0.76 -1 -1 40552 -1 -1 179 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83924 22 19 4410 3647 1 2304 229 22 22 484 mult_36 auto 43.4 MiB 0.97 14019 82.0 MiB 1.81 0.04 3.79276 -2360.11 -3.79276 3.79276 2.08 0.00876401 0.00771538 0.459829 0.40135 58 27437 41 1.30842e+07 6.06533e+06 1.75961e+06 3635.55 16.03 3.26306 2.89194 52570 450426 -1 21673 20 9118 10564 1758128 401153 0 0 1758128 401153 9431 9168 0 0 81625 73861 0 0 98312 88328 0 0 9432 9203 0 0 774195 112209 0 0 785133 108384 0 0 9431 0 0 332 5036 5516 11066 1178 68 4.39726 4.39726 -2947.03 -4.39726 0 0 2.20457e+06 4554.90 1.01 1.11 0.55 -1 -1 1.01 0.472817 0.428553 1363 1441 570 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_32.v common 34.74 vpr 82.79 MiB 0.16 15600 -1 -1 1 0.56 -1 -1 39292 -1 -1 183 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84780 22 19 4484 3704 1 2346 233 22 22 484 mult_36 auto 44.2 MiB 1.30 15386 82.8 MiB 2.91 0.03 4.04336 -2411.15 -4.04336 4.04336 2.20 0.00726119 0.00636408 0.878125 0.784966 60 28281 31 1.30842e+07 6.12123e+06 1.79840e+06 3715.71 20.11 4.07854 3.62332 53054 462096 -1 22591 18 8761 10239 1814040 392114 0 0 1814040 392114 9124 8817 0 0 77936 69890 0 0 92855 83673 0 0 9125 8861 0 0 820011 108805 0 0 804989 112068 0 0 9124 0 0 382 4899 5847 11094 1146 27 4.64786 4.64786 -2928.97 -4.64786 0 0 2.25108e+06 4650.99 0.84 1.00 0.62 -1 -1 0.84 0.495416 0.447632 1393 1460 589 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_33.v common 30.59 vpr 84.07 MiB 0.19 16448 -1 -1 1 0.86 -1 -1 40968 -1 -1 196 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86092 22 19 4843 4029 1 2462 247 22 22 484 mult_36 auto 45.7 MiB 1.40 16459 84.1 MiB 2.44 0.05 3.89606 -2651.16 -3.89606 3.89606 2.38 0.0147476 0.0130076 0.687147 0.611863 62 30168 49 1.30842e+07 6.6989e+06 1.85176e+06 3825.95 15.75 4.20289 3.73658 53538 472186 -1 22898 17 8776 10377 1483263 329023 0 0 1483263 329023 9174 8830 0 0 75335 67392 0 0 89475 80522 0 0 9178 8891 0 0 651579 82449 0 0 648522 80939 0 0 9174 0 0 417 5645 5452 11258 1248 15 4.39726 4.39726 -3165.23 -4.39726 0 0 2.29262e+06 4736.82 0.90 1.12 0.42 -1 -1 0.90 0.513619 0.468343 1490 1606 608 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_34.v common 38.36 vpr 83.38 MiB 0.21 16720 -1 -1 1 0.75 -1 -1 41124 -1 -1 199 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85380 22 19 4917 4086 1 2503 250 22 22 484 mult_36 auto 45.8 MiB 1.66 17150 83.4 MiB 1.89 0.02 3.91806 -2639.01 -3.91806 3.91806 2.19 0.00494618 0.00423059 0.452578 0.394611 64 29030 40 1.30842e+07 6.74082e+06 1.90554e+06 3937.06 24.04 5.47015 4.85381 54502 494576 -1 24080 17 9325 11144 1850076 402603 0 0 1850076 402603 9724 9377 0 0 79950 71020 0 0 98560 87457 0 0 9729 9403 0 0 824022 111129 0 0 828091 114217 0 0 9724 0 0 421 6977 6924 11857 1475 1073 4.41926 4.41926 -3264.59 -4.41926 0 0 2.40101e+06 4960.76 1.08 1.11 0.62 -1 -1 1.08 0.484776 0.442422 1519 1625 627 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_35.v common 42.09 vpr 85.48 MiB 0.18 16956 -1 -1 1 0.92 -1 -1 41268 -1 -1 207 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87528 22 19 5093 4228 1 2606 258 22 22 484 mult_36 auto 47.0 MiB 1.40 18465 85.5 MiB 2.72 0.04 3.79276 -2819.04 -3.79276 3.79276 2.21 0.0107547 0.00918456 0.683005 0.594882 64 32846 49 1.30842e+07 6.85261e+06 1.90554e+06 3937.06 26.63 5.74518 5.08791 54502 494576 -1 26210 19 10148 12063 2053669 446910 0 0 2053669 446910 10593 10255 0 0 86601 76963 0 0 106741 94705 0 0 10598 10314 0 0 913952 125449 0 0 925184 129224 0 0 10593 0 0 464 6611 7382 12734 1537 163 4.41926 4.41926 -3447.39 -4.41926 0 0 2.40101e+06 4960.76 1.08 1.23 0.52 -1 -1 1.08 0.545982 0.499634 1572 1680 646 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_36.v common 33.12 vpr 84.89 MiB 0.21 17100 -1 -1 1 0.78 -1 -1 41544 -1 -1 209 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86932 22 19 5167 4285 1 2653 260 22 22 484 mult_36 auto 47.2 MiB 1.13 17974 84.9 MiB 2.79 0.04 3.79276 -2763.15 -3.79276 3.79276 2.33 0.0102613 0.00865648 0.64261 0.554253 66 33446 38 1.30842e+07 6.88056e+06 1.96511e+06 4060.15 17.33 3.94213 3.45884 54986 507526 -1 25571 19 9957 11511 1992287 435170 0 0 1992287 435170 10461 10036 0 0 87438 78852 0 0 105574 95001 0 0 10473 10096 0 0 898991 120186 0 0 879350 120999 0 0 10461 0 0 524 5184 6006 12936 1154 67 4.29396 4.29396 -3320.74 -4.29396 0 0 2.45963e+06 5081.88 1.40 1.38 0.56 -1 -1 1.40 0.620551 0.558858 1600 1699 665 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_37.v common 42.27 vpr 85.75 MiB 0.21 17584 -1 -1 1 0.96 -1 -1 40372 -1 -1 218 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87812 22 19 5380 4464 1 2755 270 24 24 576 mult_36 auto 48.5 MiB 1.47 18637 85.8 MiB 2.68 0.02 4.16866 -3145.82 -4.16866 4.16866 2.71 0.00539159 0.00463913 0.635006 0.554028 58 35336 46 1.57908e+07 7.40233e+06 2.08734e+06 3623.85 24.47 4.84273 4.26569 62154 534210 -1 28370 23 11306 13304 2308958 513018 0 0 2308958 513018 11714 11355 0 0 101509 91611 0 0 123532 110764 0 0 11715 11423 0 0 1034331 144891 0 0 1026157 142974 0 0 11714 0 0 431 7888 7985 13954 1633 124 4.54456 4.54456 -3952.02 -4.54456 0 0 2.61600e+06 4541.67 1.32 1.62 0.73 -1 -1 1.32 0.694512 0.630086 1662 1772 684 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_38.v common 36.44 vpr 85.84 MiB 0.22 17960 -1 -1 1 1.04 -1 -1 41852 -1 -1 220 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87900 22 19 5454 4521 1 2802 272 24 24 576 mult_36 auto 48.3 MiB 1.52 19630 85.8 MiB 2.96 0.04 4.04336 -3159.99 -4.04336 4.04336 2.58 0.00939307 0.00821351 0.687441 0.602314 62 35837 37 1.57908e+07 7.43028e+06 2.19658e+06 3813.51 18.98 4.22592 3.7345 63306 560109 -1 27373 20 10539 12452 1958235 439033 0 0 1958235 439033 10964 10604 0 0 93232 83861 0 0 109740 99131 0 0 10968 10652 0 0 875276 115901 0 0 858055 118884 0 0 10964 0 0 442 5963 7386 13286 1547 476 4.41926 4.41926 -3744.33 -4.41926 0 0 2.72095e+06 4723.87 1.29 1.43 0.66 -1 -1 1.29 0.730993 0.662612 1690 1791 703 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_39.v common 110.86 vpr 86.80 MiB 0.30 18020 -1 -1 1 1.04 -1 -1 41112 -1 -1 228 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88880 22 19 5629 4662 1 2909 280 24 24 576 mult_36 auto 49.7 MiB 1.43 18773 86.8 MiB 4.04 0.05 4.04336 -3208.57 -4.04336 4.04336 2.86 0.0114891 0.0103151 0.936438 0.83243 58 35135 44 1.57908e+07 7.54207e+06 2.08734e+06 3623.85 92.46 8.48036 7.48745 62154 534210 -1 27530 17 10702 12609 2192053 495504 0 0 2192053 495504 11128 10785 0 0 92395 82793 0 0 112518 100667 0 0 11131 10829 0 0 988465 143307 0 0 976416 147123 0 0 11128 0 0 445 6543 7375 13201 1554 116 4.54456 4.54456 -3739.15 -4.54456 0 0 2.61600e+06 4541.67 0.91 1.20 0.67 -1 -1 0.91 0.518851 0.472543 1742 1846 722 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_40.v common 37.69 vpr 88.31 MiB 0.24 18212 -1 -1 1 1.10 -1 -1 42088 -1 -1 232 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90432 22 19 5703 4719 1 2951 284 24 24 576 mult_36 auto 50.3 MiB 1.48 19791 88.3 MiB 2.77 0.05 4.16866 -3225.65 -4.16866 4.16866 2.40 0.0113244 0.00997784 0.644102 0.565981 64 36918 44 1.57908e+07 7.59797e+06 2.26035e+06 3924.22 20.51 4.70191 4.17822 64454 586630 -1 28354 19 10740 12619 2023263 456596 0 0 2023263 456596 11162 10836 0 0 95430 85387 0 0 116102 103764 0 0 11165 10887 0 0 894018 123082 0 0 895386 122640 0 0 11162 0 0 443 6630 7196 13416 1509 186 4.41926 4.41926 -3967.59 -4.41926 0 0 2.84938e+06 4946.85 1.34 1.28 0.67 -1 -1 1.34 0.607343 0.548572 1771 1865 741 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_41.v common 36.75 vpr 88.59 MiB 0.38 18716 -1 -1 1 1.15 -1 -1 41136 -1 -1 240 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90720 22 19 5950 4932 1 3065 293 24 24 576 mult_36 auto 51.5 MiB 1.39 20763 88.6 MiB 3.44 0.09 4.04336 -3408.74 -4.04336 4.04336 3.02 0.0081646 0.0070455 0.822947 0.712739 64 35795 46 1.57908e+07 8.10576e+06 2.26035e+06 3924.22 18.17 4.76601 4.20291 64454 586630 -1 29070 17 10701 12361 2055646 466496 0 0 2055646 466496 11090 10777 0 0 89895 80120 0 0 110311 98446 0 0 11095 10828 0 0 922278 130456 0 0 910977 135869 0 0 11090 0 0 408 6162 7428 12982 1333 392 4.54456 4.54456 -3887.52 -4.54456 0 0 2.84938e+06 4946.85 1.26 1.18 0.74 -1 -1 1.26 0.507479 0.46387 1841 1956 760 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_42.v common 47.43 vpr 91.96 MiB 0.23 18836 -1 -1 1 1.18 -1 -1 42816 -1 -1 242 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94172 22 19 6024 4989 1 3106 295 24 24 576 mult_36 auto 51.6 MiB 1.65 22076 88.6 MiB 3.78 0.04 4.16866 -3520.33 -4.16866 4.16866 2.54 0.0106296 0.009485 0.934466 0.793453 70 35862 26 1.57908e+07 8.13371e+06 2.45377e+06 4260.01 29.13 5.71709 5.01681 66754 640332 -1 29886 17 10550 12706 1909066 414328 0 0 1909066 414328 11032 10624 0 0 87513 76803 0 0 107418 94802 0 0 11035 10686 0 0 847757 111842 0 0 844311 109571 0 0 11032 0 0 503 7751 7861 13929 1710 258 4.54456 4.54456 -3978.56 -4.54456 0 0 3.09179e+06 5367.68 1.55 1.29 0.67 -1 -1 1.55 0.559567 0.507404 1869 1975 779 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_43.v common 37.12 vpr 89.36 MiB 0.19 19100 -1 -1 1 1.22 -1 -1 42828 -1 -1 250 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91508 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 52.5 MiB 1.68 22368 89.4 MiB 3.59 0.04 4.16866 -3591.6 -4.16866 4.16866 2.54 0.00865153 0.00747758 0.782302 0.686125 66 39251 46 1.57908e+07 8.2455e+06 2.33135e+06 4047.49 19.36 5.13338 4.48828 65030 601923 -1 30844 17 11509 13494 2204654 487349 0 0 2204654 487349 12043 11601 0 0 99479 88966 0 0 121612 108570 0 0 12046 11663 0 0 978785 134510 0 0 980689 132039 0 0 12043 0 0 552 7276 8401 14897 1509 205 4.54456 4.54456 -4264.7 -4.54456 0 0 2.91907e+06 5067.82 1.39 1.19 0.69 -1 -1 1.39 0.495184 0.451831 1921 2030 798 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_44.v common 52.59 vpr 92.62 MiB 0.24 19492 -1 -1 1 1.26 -1 -1 43080 -1 -1 253 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94848 22 19 6272 5186 1 3253 306 24 24 576 mult_36 auto 53.3 MiB 1.60 24531 90.5 MiB 3.89 0.06 4.16866 -3662 -4.16866 4.16866 2.47 0.0136166 0.0119878 0.885507 0.779558 68 39697 34 1.57908e+07 8.28742e+06 2.39371e+06 4155.74 33.45 7.0197 6.23133 65606 615345 -1 32596 16 11495 13516 2175186 470257 0 0 2175186 470257 11979 11573 0 0 93815 83490 0 0 113776 101416 0 0 11985 11647 0 0 959674 130579 0 0 983957 131552 0 0 11979 0 0 501 7648 7963 14672 1588 3246 4.66986 4.66986 -4280.07 -4.66986 0 0 2.98162e+06 5176.42 1.34 1.82 0.57 -1 -1 1.34 0.839165 0.757363 1949 2049 817 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_45.v common 58.87 vpr 95.87 MiB 0.26 19784 -1 -1 1 1.35 -1 -1 43448 -1 -1 262 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98172 22 19 6485 5365 1 3362 316 24 24 576 mult_36 auto 54.1 MiB 1.81 24875 91.2 MiB 4.06 0.06 4.16866 -3860.22 -4.16866 4.16866 2.69 0.0125724 0.010822 1.01774 0.883439 72 42703 41 1.57908e+07 8.80919e+06 2.50747e+06 4353.24 38.42 8.02887 7.16175 67330 654343 -1 33856 20 12125 14244 2370878 505780 0 0 2370878 505780 12687 12227 0 0 98991 88022 0 0 121915 108275 0 0 12690 12336 0 0 1063725 143808 0 0 1060870 141112 0 0 12687 0 0 581 7429 8215 16000 1595 1007 4.54456 4.54456 -4492.65 -4.54456 0 0 3.14081e+06 5452.80 1.56 1.55 0.84 -1 -1 1.56 0.769439 0.697189 2011 2122 836 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_46.v common 73.76 vpr 91.40 MiB 0.24 19976 -1 -1 1 1.22 -1 -1 43452 -1 -1 266 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93592 22 19 6559 5422 1 3404 320 24 24 576 mult_36 auto 54.5 MiB 1.77 23197 91.4 MiB 3.74 0.06 4.16866 -3803.43 -4.16866 4.16866 2.66 0.0140699 0.0126864 0.901979 0.799239 66 38742 35 1.57908e+07 8.86508e+06 2.33135e+06 4047.49 55.31 7.67701 6.76203 65030 601923 -1 31592 17 11527 13424 2138348 486221 0 0 2138348 486221 12042 11586 0 0 100422 89505 0 0 121463 109052 0 0 12043 11647 0 0 952489 133236 0 0 939889 131195 0 0 12042 0 0 533 6361 6901 14621 1452 598 4.54456 4.54456 -4396.18 -4.54456 0 0 2.91907e+06 5067.82 1.04 0.84 0.75 -1 -1 1.04 0.364712 0.330052 2040 2141 855 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_47.v common 36.56 vpr 92.20 MiB 0.35 20176 -1 -1 1 1.49 -1 -1 43692 -1 -1 273 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 94416 22 19 6735 5564 1 3511 327 24 24 576 mult_36 auto 55.1 MiB 1.90 23716 92.2 MiB 4.21 0.15 4.16866 -3895.9 -4.16866 4.16866 1.95 0.0329806 0.0308781 0.919359 0.814187 70 37921 23 1.57908e+07 8.9629e+06 2.45377e+06 4260.01 16.46 4.96279 4.42489 66754 640332 -1 31853 18 11704 13832 2021801 455296 0 0 2021801 455296 12202 11754 0 0 95046 83567 0 0 118173 103720 0 0 12212 11811 0 0 892872 122643 0 0 891296 121801 0 0 12202 0 0 517 7329 8392 14604 1717 1047 4.52256 4.52256 -4377.81 -4.52256 0 0 3.09179e+06 5367.68 1.43 1.49 0.77 -1 -1 1.43 0.740075 0.674387 2092 2196 874 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_48.v common 55.62 vpr 97.21 MiB 0.50 20300 -1 -1 1 1.53 -1 -1 43596 -1 -1 276 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99540 22 19 6809 5621 1 3555 330 24 24 576 mult_36 auto 55.7 MiB 1.89 26298 92.8 MiB 4.48 0.08 4.04336 -3971.87 -4.04336 4.04336 1.66 0.0149015 0.0129614 0.907334 0.790819 74 41851 35 1.57908e+07 9.00482e+06 2.56259e+06 4448.94 35.03 7.6008 6.73348 67906 667765 -1 35491 18 12373 14314 2480035 530605 0 0 2480035 530605 12892 12460 0 0 97782 86976 0 0 122676 107850 0 0 12903 12552 0 0 1125700 154336 0 0 1108082 156431 0 0 12892 0 0 540 6365 6775 15947 1472 766 4.54456 4.54456 -4756.94 -4.54456 0 0 3.19068e+06 5539.38 1.68 1.87 0.85 -1 -1 1.68 0.903862 0.830609 2121 2215 893 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_49.v common 55.09 vpr 97.79 MiB 0.27 21036 -1 -1 1 1.43 -1 -1 44036 -1 -1 287 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100136 22 19 7094 5872 1 3669 342 24 24 576 mult_36 auto 56.9 MiB 2.10 25761 94.0 MiB 4.53 0.07 4.29396 -4126.54 -4.29396 4.29396 1.73 0.0129807 0.0113688 0.92582 0.809123 68 41911 40 1.57908e+07 9.55454e+06 2.39371e+06 4155.74 35.10 7.46556 6.61325 65606 615345 -1 33965 17 12548 15195 2377820 529113 0 0 2377820 529113 13075 12620 0 0 108314 96382 0 0 130080 116544 0 0 13081 12713 0 0 1055861 145158 0 0 1057409 145696 0 0 13075 0 0 544 9351 11650 15859 2183 1614 4.54456 4.54456 -4777.31 -4.54456 0 0 2.98162e+06 5176.42 1.33 1.47 0.68 -1 -1 1.33 0.662294 0.598253 2200 2324 912 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_50.v common 105.48 vpr 94.40 MiB 0.28 21104 -1 -1 1 1.40 -1 -1 43672 -1 -1 290 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96664 22 19 7168 5929 1 3710 345 24 24 576 mult_36 auto 57.5 MiB 2.28 24936 94.4 MiB 3.96 0.07 4.04336 -4136.97 -4.04336 4.04336 1.95 0.0168961 0.0152057 0.874606 0.768963 68 42433 36 1.57908e+07 9.59646e+06 2.39371e+06 4155.74 85.51 9.22205 8.10373 65606 615345 -1 34116 19 12986 15314 2298005 507439 0 0 2298005 507439 13522 13073 0 0 108176 96401 0 0 130305 116563 0 0 13523 13117 0 0 1039343 130190 0 0 993136 138095 0 0 13522 0 0 552 8599 8801 16348 1851 959 4.41926 4.41926 -4698.88 -4.41926 0 0 2.98162e+06 5176.42 1.47 1.62 0.73 -1 -1 1.47 0.713245 0.643522 2229 2343 931 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_51.v common 58.02 vpr 99.58 MiB 0.34 21392 -1 -1 1 1.24 -1 -1 44584 -1 -1 297 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 101972 22 19 7344 6071 1 3814 352 24 24 576 mult_36 auto 58.2 MiB 2.04 28314 95.3 MiB 5.18 0.06 4.29396 -4303.37 -4.29396 4.29396 1.95 0.00788491 0.00686228 1.09549 0.928395 74 45280 28 1.57908e+07 9.69428e+06 2.56259e+06 4448.94 36.97 8.36297 7.35472 67906 667765 -1 38552 15 13344 15881 2736685 580320 0 0 2736685 580320 13898 13401 0 0 106405 94322 0 0 132297 116680 0 0 13899 13462 0 0 1242901 169684 0 0 1227285 172771 0 0 13898 0 0 571 9666 10717 16809 2066 773 4.66986 4.66986 -5106.69 -4.66986 0 0 3.19068e+06 5539.38 1.87 1.75 0.85 -1 -1 1.87 0.723222 0.656958 2282 2398 950 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_pipe_52.v common 65.68 vpr 100.29 MiB 0.29 21748 -1 -1 1 1.45 -1 -1 44464 -1 -1 301 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 102700 22 19 7418 6128 1 3859 356 24 24 576 mult_36 auto 58.4 MiB 1.92 27209 95.3 MiB 4.96 0.08 4.27196 -4220.72 -4.27196 4.27196 2.32 0.014075 0.0122511 1.06539 0.929359 74 43396 31 1.57908e+07 9.75017e+06 2.56259e+06 4448.94 43.61 9.32681 8.24732 67906 667765 -1 36748 18 13148 15874 2736435 593714 0 0 2736435 593714 13699 13176 0 0 107396 95076 0 0 133285 117317 0 0 13700 13222 0 0 1235692 175901 0 0 1232663 179022 0 0 13699 0 0 571 10372 11196 16250 2295 1876 4.54456 4.54456 -4842.34 -4.54456 0 0 3.19068e+06 5539.38 1.59 1.85 0.88 -1 -1 1.59 0.869078 0.789704 2310 2417 969 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_14.v common 30.10 vpr 66.15 MiB 0.08 9356 -1 -1 1 0.19 -1 -1 33996 -1 -1 58 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67736 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 27.8 MiB 3.64 4081 66.1 MiB 0.65 0.01 7.39293 -331.127 -7.39293 7.39293 0.86 0.00258891 0.00228291 0.154086 0.135769 40 8622 37 6.52434e+06 2.39448e+06 616420. 2407.89 21.45 1.39939 1.25595 23812 153515 -1 7234 27 7536 8347 1393382 352416 0 0 1393382 352416 8347 7772 0 0 68226 63064 0 0 84982 74664 0 0 8386 7851 0 0 618435 100766 0 0 605006 98299 0 0 8347 0 0 840 4669 4583 43707 0 0 8.41534 8.41534 -471.286 -8.41534 0 0 808720. 3159.06 0.30 0.57 0.18 -1 -1 0.30 0.140776 0.127957 421 285 247 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_15.v common 28.34 vpr 66.50 MiB 0.07 9324 -1 -1 1 0.21 -1 -1 34800 -1 -1 61 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68092 22 19 1344 989 1 793 107 16 16 256 mult_36 auto 28.4 MiB 2.93 4749 66.5 MiB 0.67 0.01 7.43507 -344.031 -7.43507 7.43507 0.98 0.00239199 0.0020564 0.149996 0.132447 44 9557 33 6.52434e+06 2.8324e+06 686998. 2683.59 20.31 1.44829 1.30294 24576 170172 -1 7140 23 5095 5887 826439 215440 0 0 826439 215440 5887 5247 0 0 49433 46432 0 0 56984 52217 0 0 5934 5301 0 0 360637 53077 0 0 347564 53166 0 0 5887 0 0 820 5885 5117 50695 0 0 8.06643 8.06643 -446.895 -8.06643 0 0 871168. 3403.00 0.33 0.48 0.19 -1 -1 0.33 0.158357 0.14541 453 304 266 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_16.v common 19.67 vpr 66.42 MiB 0.08 9492 -1 -1 1 0.20 -1 -1 34620 -1 -1 65 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68012 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 28.5 MiB 4.14 4817 66.4 MiB 0.81 0.01 7.30977 -364.374 -7.30977 7.30977 0.96 0.00318381 0.00282758 0.187959 0.165428 46 10099 41 6.52434e+06 2.88829e+06 723233. 2825.13 10.06 1.4878 1.3287 24832 174915 -1 7678 22 6962 7756 1181959 293265 0 0 1181959 293265 7756 7119 0 0 64230 60620 0 0 74116 67087 0 0 7803 7188 0 0 514653 74793 0 0 513401 76458 0 0 7756 0 0 814 4807 4906 51883 0 0 8.32803 8.32803 -516.053 -8.32803 0 0 890343. 3477.90 0.33 0.51 0.20 -1 -1 0.33 0.142961 0.130373 481 323 285 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_17.v common 21.46 vpr 67.10 MiB 0.08 9948 -1 -1 1 0.22 -1 -1 34640 -1 -1 71 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68712 22 19 1518 1112 1 896 117 16 16 256 mult_36 auto 29.1 MiB 3.53 5385 67.1 MiB 1.12 0.01 8.10891 -418.461 -8.10891 8.10891 0.92 0.00283448 0.00241001 0.215783 0.186212 54 9977 32 6.52434e+06 2.97214e+06 829453. 3240.05 12.08 1.58934 1.42254 26108 202796 -1 7906 24 6497 7337 947574 248654 0 0 947574 248654 7337 6632 0 0 56865 53271 0 0 66232 59946 0 0 7396 6712 0 0 416749 61331 0 0 392995 60762 0 0 7337 0 0 866 4855 5133 53013 0 0 8.78558 8.78558 -523.238 -8.78558 0 0 1.02522e+06 4004.78 0.39 0.60 0.25 -1 -1 0.39 0.205021 0.18944 514 342 304 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_18.v common 19.38 vpr 67.64 MiB 0.09 10144 -1 -1 1 0.23 -1 -1 34792 -1 -1 74 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69264 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 29.8 MiB 5.00 5761 67.6 MiB 0.96 0.02 7.95061 -441.879 -7.95061 7.95061 0.88 0.00396967 0.00360247 0.235717 0.208774 46 12197 39 6.52434e+06 3.01406e+06 723233. 2825.13 9.26 1.51176 1.35933 24832 174915 -1 8801 23 7411 8334 1122296 283958 0 0 1122296 283958 8334 7618 0 0 66482 62486 0 0 76133 69599 0 0 8390 7682 0 0 487106 69657 0 0 475851 66916 0 0 8334 0 0 952 5764 5915 59767 0 0 8.66998 8.66998 -562.591 -8.66998 0 0 890343. 3477.90 0.34 0.45 0.19 -1 -1 0.34 0.123546 0.112569 542 361 323 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_19.v common 16.87 vpr 68.11 MiB 0.09 10716 -1 -1 1 0.23 -1 -1 35204 -1 -1 79 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69744 22 19 1688 1231 1 994 126 16 16 256 mult_36 auto 30.2 MiB 4.09 5706 68.1 MiB 0.79 0.01 8.06677 -399.655 -8.06677 8.06677 0.90 0.00251316 0.00215545 0.175168 0.153682 54 11416 45 6.52434e+06 3.47993e+06 829453. 3240.05 7.58 1.22563 1.0811 26108 202796 -1 8377 24 6918 7778 1050656 272461 0 0 1050656 272461 7599 7044 0 0 60215 56524 0 0 69941 63405 0 0 7647 7099 0 0 458140 69248 0 0 447114 69141 0 0 7599 0 0 705 4017 3783 33300 248 1 8.95158 8.95158 -515.887 -8.95158 0 0 1.02522e+06 4004.78 0.33 0.53 0.18 -1 -1 0.33 0.179636 0.164297 573 380 342 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_20.v common 17.94 vpr 68.50 MiB 0.09 10592 -1 -1 1 0.27 -1 -1 34832 -1 -1 81 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70144 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 30.5 MiB 4.81 5976 68.5 MiB 0.94 0.02 8.06677 -426.077 -8.06677 8.06677 0.80 0.00355312 0.00314407 0.193799 0.170336 50 12037 50 6.52434e+06 3.50787e+06 787708. 3076.99 7.63 1.37763 1.24543 25344 186282 -1 9044 24 7463 8409 1149185 300275 0 0 1149185 300275 8206 7637 0 0 70140 65380 0 0 81244 73988 0 0 8297 7740 0 0 496884 73446 0 0 484414 72084 0 0 8206 0 0 770 5539 5087 44174 225 15 8.68998 8.68998 -608.281 -8.68998 0 0 943753. 3686.54 0.28 0.65 0.17 -1 -1 0.28 0.22896 0.210719 601 399 361 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_21.v common 18.76 vpr 68.62 MiB 0.10 11112 -1 -1 1 0.30 -1 -1 35680 -1 -1 85 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70268 22 19 1859 1351 1 1093 132 16 16 256 mult_36 auto 30.7 MiB 4.78 6741 68.6 MiB 0.90 0.02 7.98361 -446.241 -7.98361 7.98361 0.94 0.00413424 0.0036887 0.231769 0.207495 52 13640 48 6.52434e+06 3.56377e+06 808720. 3159.06 8.10 1.53483 1.39343 25852 197779 -1 9861 22 7279 8262 1337756 329246 0 0 1337756 329246 8073 7468 0 0 66434 62120 0 0 77420 71061 0 0 8130 7547 0 0 590101 90246 0 0 587598 90804 0 0 8073 0 0 818 5625 4802 43602 237 1 8.80128 8.80128 -592.932 -8.80128 0 0 1.00038e+06 3907.74 0.37 0.62 0.24 -1 -1 0.37 0.170264 0.157542 632 418 380 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_22.v common 18.36 vpr 69.23 MiB 0.09 11012 -1 -1 1 0.31 -1 -1 35392 -1 -1 90 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70888 22 19 1933 1408 1 1131 137 16 16 256 mult_36 auto 31.4 MiB 5.94 7075 69.2 MiB 0.66 0.01 8.10891 -466.13 -8.10891 8.10891 0.79 0.00307775 0.00273572 0.149867 0.130882 54 13043 42 6.52434e+06 3.63364e+06 829453. 3240.05 7.30 1.31042 1.19002 26108 202796 -1 10039 24 7336 8267 1090947 283206 0 0 1090947 283206 8035 7470 0 0 63029 59061 0 0 73048 66424 0 0 8049 7525 0 0 475174 70571 0 0 463612 72155 0 0 8035 0 0 722 4483 4184 39444 246 1 8.66198 8.66198 -659.137 -8.66198 0 0 1.02522e+06 4004.78 0.34 0.53 0.24 -1 -1 0.34 0.189584 0.172002 661 437 399 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_23.v common 54.03 vpr 69.68 MiB 0.06 11348 -1 -1 1 0.31 -1 -1 35584 -1 -1 94 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71352 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 31.9 MiB 5.70 7675 69.7 MiB 1.40 0.05 8.28437 -491.885 -8.28437 8.28437 1.26 0.0118071 0.011402 0.293178 0.264006 48 16112 37 8.04299e+06 4.08553e+06 991730. 3060.90 40.69 2.81688 2.53356 32420 239176 -1 12305 26 8944 10440 1978494 446045 0 0 1978494 446045 9577 9255 0 0 84742 78867 0 0 102662 92399 0 0 9579 9304 0 0 889660 126016 0 0 882274 130204 0 0 9577 0 0 664 5077 5076 13096 910 2 9.16918 9.16918 -723.218 -9.16918 0 0 1.20291e+06 3712.69 0.55 0.98 0.28 -1 -1 0.55 0.280407 0.256347 693 456 418 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_24.v common 20.18 vpr 69.98 MiB 0.10 11432 -1 -1 1 0.33 -1 -1 35832 -1 -1 97 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71664 22 19 2105 1529 1 1232 145 18 18 324 mult_36 auto 32.2 MiB 6.26 8304 70.0 MiB 0.80 0.01 8.09791 -534.964 -8.09791 8.09791 1.01 0.00192766 0.00165995 0.17258 0.149901 54 15824 31 8.04299e+06 4.12745e+06 1.08842e+06 3359.33 7.68 1.18412 1.05867 33712 268580 -1 11719 22 8615 9932 1499942 356145 0 0 1499942 356145 9191 8789 0 0 76937 71805 0 0 88872 80962 0 0 9193 8833 0 0 668361 92697 0 0 647388 93059 0 0 9191 0 0 603 3442 4298 12296 773 2 8.54039 8.54039 -784.408 -8.54039 0 0 1.34436e+06 4149.26 0.52 0.73 0.31 -1 -1 0.52 0.242131 0.221754 721 475 437 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_25.v common 27.40 vpr 70.46 MiB 0.12 11640 -1 -1 1 0.35 -1 -1 36036 -1 -1 101 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72156 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 32.8 MiB 5.09 8532 70.5 MiB 0.68 0.02 8.06491 -503.392 -8.06491 8.06491 0.97 0.00445113 0.00389632 0.137133 0.119304 50 17147 40 8.04299e+06 4.18335e+06 1.03391e+06 3191.07 15.72 2.14884 1.91414 32744 246704 -1 12701 22 9852 11353 2143317 494736 0 0 2143317 494736 10516 10000 0 0 96949 90021 0 0 111924 101956 0 0 10528 10058 0 0 958333 140144 0 0 955067 142557 0 0 10516 0 0 693 5058 5197 19613 939 59 9.05188 9.05188 -992.524 -9.05188 0 0 1.23838e+06 3822.15 0.44 0.97 0.30 -1 -1 0.44 0.247319 0.226159 751 494 456 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_26.v common 24.79 vpr 70.74 MiB 0.12 11896 -1 -1 1 0.31 -1 -1 36396 -1 -1 105 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72436 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 33.0 MiB 6.76 8137 70.7 MiB 1.41 0.02 8.06677 -535.891 -8.06677 8.06677 1.26 0.00566919 0.00511851 0.365992 0.327972 50 16279 48 8.04299e+06 4.23924e+06 1.03391e+06 3191.07 10.36 2.05675 1.8355 32744 246704 -1 12276 24 9434 10965 1636329 385379 0 0 1636329 385379 9917 9636 0 0 87818 81472 0 0 103580 93249 0 0 9922 9677 0 0 716583 95570 0 0 708509 95775 0 0 9917 0 0 512 5618 5444 12440 1094 40 8.77628 8.77628 -864.423 -8.77628 0 0 1.23838e+06 3822.15 0.49 0.83 0.27 -1 -1 0.49 0.301881 0.275294 779 513 475 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_27.v common 23.94 vpr 71.21 MiB 0.12 12148 -1 -1 1 0.41 -1 -1 36300 -1 -1 111 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72916 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 33.6 MiB 6.27 8719 71.2 MiB 1.60 0.02 7.97261 -566.816 -7.97261 7.97261 1.89 0.0049413 0.00434932 0.353581 0.310745 54 16092 32 8.04299e+06 4.7191e+06 1.08842e+06 3359.33 8.61 1.85065 1.66854 33712 268580 -1 12792 22 9899 11296 1786527 424562 0 0 1786527 424562 10534 10021 0 0 88622 83271 0 0 102733 93650 0 0 10537 10127 0 0 786497 113886 0 0 787604 113607 0 0 10534 0 0 657 4620 4352 13717 850 16 8.61468 8.61468 -794.099 -8.61468 0 0 1.34436e+06 4149.26 0.52 0.82 0.32 -1 -1 0.52 0.266806 0.244439 817 532 494 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_28.v common 27.98 vpr 71.68 MiB 0.13 12124 -1 -1 1 0.29 -1 -1 36340 -1 -1 114 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73400 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 33.9 MiB 7.57 9043 71.7 MiB 1.22 0.01 8.31737 -559.506 -8.31737 8.31737 1.30 0.00239131 0.00208184 0.234951 0.205017 54 16884 39 8.04299e+06 4.76102e+06 1.08842e+06 3359.33 12.58 1.97367 1.76042 33712 268580 -1 13321 24 10306 11938 2171936 517620 0 0 2171936 517620 11135 10544 0 0 94497 88508 0 0 110937 99914 0 0 11151 10645 0 0 965594 151536 0 0 978622 156473 0 0 11135 0 0 859 5012 4592 15142 916 246 8.86858 8.86858 -857.135 -8.86858 0 0 1.34436e+06 4149.26 0.57 1.01 0.33 -1 -1 0.57 0.273979 0.247712 845 551 513 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_29.v common 33.04 vpr 72.19 MiB 0.11 12620 -1 -1 1 0.39 -1 -1 36180 -1 -1 118 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73920 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 34.4 MiB 7.28 10043 72.2 MiB 2.28 0.02 8.06677 -579.764 -8.06677 8.06677 2.34 0.00425382 0.00375331 0.611714 0.55342 48 19988 46 1.30842e+07 5.21292e+06 1.52614e+06 3153.19 14.10 2.12677 1.92347 49190 371334 -1 15546 25 14163 16028 2754286 616310 0 0 2754286 616310 14854 14332 0 0 125849 116882 0 0 156077 137652 0 0 14859 14437 0 0 1237562 165641 0 0 1205085 167366 0 0 14854 0 0 722 6545 7435 18701 1204 48 9.14218 9.14218 -1062.13 -9.14218 0 0 1.85176e+06 3825.95 0.84 1.22 0.45 -1 -1 0.84 0.335064 0.307671 881 570 532 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_30.v common 39.17 vpr 72.73 MiB 0.12 12516 -1 -1 1 0.43 -1 -1 36648 -1 -1 123 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74476 22 19 2639 1910 1 1549 173 22 22 484 mult_36 auto 35.1 MiB 8.22 10614 72.7 MiB 2.45 0.05 8.23421 -554.147 -8.23421 8.23421 1.89 0.00451562 0.00396293 0.572223 0.520739 52 22015 32 1.30842e+07 5.28279e+06 1.63434e+06 3376.74 19.88 2.87935 2.61291 50638 406276 -1 15697 25 12395 14215 2562127 583907 0 0 2562127 583907 13110 12648 0 0 112704 104952 0 0 133705 120372 0 0 13112 12715 0 0 1140238 166948 0 0 1149258 166272 0 0 13110 0 0 749 6406 6242 17165 1146 82 9.31048 9.31048 -1168.2 -9.31048 0 0 2.01763e+06 4168.66 0.73 1.32 0.35 -1 -1 0.73 0.352375 0.313505 910 589 551 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_31.v common 41.02 vpr 73.18 MiB 0.11 12832 -1 -1 1 0.45 -1 -1 36668 -1 -1 128 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74940 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 35.7 MiB 7.64 10337 73.2 MiB 1.94 0.03 7.94147 -603.174 -7.94147 7.94147 2.17 0.00592635 0.00537859 0.370077 0.329359 54 20069 30 1.30842e+07 5.35266e+06 1.67518e+06 3461.11 22.47 2.7587 2.46376 51122 416746 -1 15458 23 11949 13646 2139229 487837 0 0 2139229 487837 12659 12151 0 0 102375 95516 0 0 120035 108348 0 0 12677 12228 0 0 947458 129445 0 0 944025 130149 0 0 12659 0 0 739 5524 5798 16515 1046 43 9.01418 9.01418 -1073.88 -9.01418 0 0 2.06816e+06 4273.05 0.83 1.19 0.43 -1 -1 0.83 0.366735 0.335997 946 608 570 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_32.v common 45.04 vpr 73.44 MiB 0.10 12856 -1 -1 1 0.46 -1 -1 36980 -1 -1 131 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75204 22 19 2818 2038 1 1657 181 22 22 484 mult_36 auto 36.0 MiB 8.87 10554 73.4 MiB 2.41 0.03 8.06677 -582.352 -8.06677 8.06677 2.28 0.00545888 0.00480269 0.552834 0.493047 56 18497 29 1.30842e+07 5.39458e+06 1.71605e+06 3545.56 24.17 3.15059 2.81875 51606 428054 -1 15637 22 12547 14519 2401826 569206 0 0 2401826 569206 13367 12773 0 0 116489 107856 0 0 140259 126445 0 0 13375 12900 0 0 1048630 153241 0 0 1069706 155991 0 0 13367 0 0 846 6605 6706 17643 1219 335 8.92358 8.92358 -1033.41 -8.92358 0 0 2.11301e+06 4365.72 0.98 1.25 0.35 -1 -1 0.98 0.355619 0.325958 974 627 589 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_33.v common 44.67 vpr 74.23 MiB 0.25 13512 -1 -1 1 0.42 -1 -1 37244 -1 -1 137 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76016 22 19 2923 2109 1 1726 188 22 22 484 mult_36 auto 36.8 MiB 7.57 11348 74.2 MiB 2.39 0.02 8.60431 -609.519 -8.60431 8.60431 2.15 0.00474167 0.00414154 0.509296 0.44536 54 21270 33 1.30842e+07 5.87443e+06 1.67518e+06 3461.11 25.10 3.56393 3.20505 51122 416746 -1 16699 25 12444 14319 2422501 565779 0 0 2422501 565779 13310 12663 0 0 114427 107278 0 0 134014 121218 0 0 13318 12771 0 0 1071723 155373 0 0 1075709 156476 0 0 13310 0 0 894 6040 5626 17974 1082 185 9.88532 9.88532 -1029.67 -9.88532 0 0 2.06816e+06 4273.05 0.98 1.30 0.49 -1 -1 0.98 0.431384 0.395609 1009 646 608 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_34.v common 48.74 vpr 74.33 MiB 0.24 13564 -1 -1 1 0.42 -1 -1 37784 -1 -1 140 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76112 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 36.9 MiB 12.66 11877 74.3 MiB 1.75 0.03 8.48815 -621.554 -8.48815 8.48815 1.89 0.00538818 0.00475367 0.357856 0.311475 52 23899 47 1.30842e+07 5.91636e+06 1.63434e+06 3376.74 24.59 3.23674 2.90016 50638 406276 -1 17339 24 13375 15398 3459114 793379 0 0 3459114 793379 14277 13573 0 0 136135 127661 0 0 157744 144332 0 0 14289 13730 0 0 1570254 245155 0 0 1566415 248928 0 0 14277 0 0 928 7033 8280 28169 1173 51 10.1026 10.1026 -1265.17 -10.1026 0 0 2.01763e+06 4168.66 0.91 1.58 0.49 -1 -1 0.91 0.40971 0.37346 1037 665 627 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_35.v common 35.43 vpr 74.81 MiB 0.14 14012 -1 -1 1 0.52 -1 -1 36904 -1 -1 145 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76604 22 19 3101 2236 1 1831 196 22 22 484 mult_36 auto 37.3 MiB 9.32 12013 74.8 MiB 2.16 0.04 8.73875 -694.534 -8.73875 8.73875 1.96 0.00533961 0.00460841 0.397027 0.348668 54 23267 45 1.30842e+07 5.98623e+06 1.67518e+06 3461.11 14.28 2.35247 2.12748 51122 416746 -1 17907 24 14879 16912 2731796 626601 0 0 2731796 626601 15736 15107 0 0 133976 125629 0 0 155139 140679 0 0 15770 15181 0 0 1219759 165472 0 0 1191416 164533 0 0 15736 0 0 888 8397 8473 39112 1215 76 9.62342 9.62342 -1351.07 -9.62342 0 0 2.06816e+06 4273.05 0.93 1.30 0.48 -1 -1 0.93 0.435685 0.4024 1072 684 646 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_36.v common 40.53 vpr 75.29 MiB 0.14 14080 -1 -1 1 0.42 -1 -1 37204 -1 -1 148 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77096 22 19 3175 2293 1 1871 199 22 22 484 mult_36 auto 37.8 MiB 13.20 12991 75.3 MiB 1.94 0.03 8.86591 -715.004 -8.86591 8.86591 2.62 0.00976788 0.00897685 0.476349 0.424234 54 25176 46 1.30842e+07 6.02815e+06 1.67518e+06 3461.11 15.02 2.49028 2.23215 51122 416746 -1 18954 24 15446 17471 2825079 652786 0 0 2825079 652786 16305 15662 0 0 140079 131470 0 0 165741 148664 0 0 16309 15731 0 0 1253632 172816 0 0 1233013 168443 0 0 16305 0 0 891 5975 6281 21307 1206 120 10.2002 10.2002 -1399.57 -10.2002 0 0 2.06816e+06 4273.05 0.91 1.26 0.48 -1 -1 0.91 0.339221 0.309987 1100 703 665 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_37.v common 47.47 vpr 75.98 MiB 0.11 14284 -1 -1 1 0.52 -1 -1 37484 -1 -1 152 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77800 22 19 3280 2364 1 1938 204 24 24 576 mult_36 auto 38.5 MiB 11.94 12732 76.0 MiB 1.66 0.03 8.90805 -748.944 -8.90805 8.90805 1.96 0.00484032 0.00419029 0.332373 0.288059 56 22834 34 1.57908e+07 6.48005e+06 2.03561e+06 3534.04 23.83 2.98441 2.66552 61006 507707 -1 18797 22 13411 15307 2810659 664274 0 0 2810659 664274 14182 13624 0 0 127071 117648 0 0 149697 136333 0 0 14190 13688 0 0 1264400 188218 0 0 1241119 194763 0 0 14182 0 0 798 6078 6163 18204 1189 95 9.62402 9.62402 -1110.03 -9.62402 0 0 2.50747e+06 4353.24 1.33 1.29 0.65 -1 -1 1.33 0.339135 0.308393 1135 722 684 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_38.v common 56.78 vpr 76.36 MiB 0.22 14384 -1 -1 1 0.55 -1 -1 38340 -1 -1 157 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78188 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 38.9 MiB 13.43 13773 76.4 MiB 2.45 0.03 9.11651 -769.173 -9.11651 9.11651 2.51 0.00627885 0.00553153 0.484259 0.427006 58 23474 41 1.57908e+07 6.54992e+06 2.08734e+06 3623.85 29.16 4.07973 3.67449 62154 534210 -1 19215 26 12520 14050 2631166 598040 0 0 2631166 598040 13106 12693 0 0 109493 101525 0 0 131228 118661 0 0 13109 12750 0 0 1178287 177846 0 0 1185943 174565 0 0 13106 0 0 610 4490 5525 16254 990 2 10.0436 10.0436 -1093.5 -10.0436 0 0 2.61600e+06 4541.67 1.33 1.56 0.66 -1 -1 1.33 0.510285 0.465876 1164 741 703 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_39.v common 43.97 vpr 76.57 MiB 0.25 14756 -1 -1 1 0.64 -1 -1 38100 -1 -1 161 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78412 22 19 3457 2490 1 2044 213 24 24 576 mult_36 auto 39.5 MiB 11.75 13664 76.6 MiB 2.71 0.02 8.86591 -773.732 -8.86591 8.86591 2.49 0.00412007 0.0036184 0.470618 0.404505 54 26142 39 1.57908e+07 6.60581e+06 1.98675e+06 3449.22 18.24 2.70318 2.42467 60430 494267 -1 19479 22 13042 15273 2563276 618172 0 0 2563276 618172 13855 13219 0 0 122565 114817 0 0 141455 129420 0 0 13863 13305 0 0 1149288 171880 0 0 1122250 175531 0 0 13855 0 0 837 7643 7401 18008 1535 23 9.73772 9.73772 -1252.66 -9.73772 0 0 2.45377e+06 4260.01 1.07 1.24 0.52 -1 -1 1.07 0.436293 0.402324 1198 760 722 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_40.v common 46.76 vpr 77.00 MiB 0.18 14852 -1 -1 1 0.75 -1 -1 38372 -1 -1 164 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78848 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 39.6 MiB 14.79 13852 77.0 MiB 1.92 0.04 8.95821 -843.505 -8.95821 8.95821 2.39 0.00629728 0.00536887 0.368142 0.322644 54 26462 42 1.57908e+07 6.64774e+06 1.98675e+06 3449.22 18.71 2.46488 2.19293 60430 494267 -1 20173 24 15076 17247 2565070 595036 0 0 2565070 595036 15898 15279 0 0 125510 116681 0 0 148041 133102 0 0 15907 15326 0 0 1142153 157542 0 0 1117561 157106 0 0 15898 0 0 850 6958 7048 20140 1430 118 10.0573 10.0573 -1473.95 -10.0573 0 0 2.45377e+06 4260.01 1.14 1.23 0.55 -1 -1 1.14 0.383631 0.346815 1226 779 741 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_41.v common 53.61 vpr 77.41 MiB 0.16 15076 -1 -1 1 0.72 -1 -1 37864 -1 -1 170 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79264 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 40.1 MiB 14.28 15822 77.4 MiB 2.55 0.04 9.03335 -936.123 -9.03335 9.03335 2.41 0.0068708 0.00617632 0.465273 0.408039 60 25342 27 1.57908e+07 7.12758e+06 2.13333e+06 3703.69 26.18 3.63459 3.25619 62730 548095 -1 21470 24 12788 14844 2518622 561158 0 0 2518622 561158 13498 12974 0 0 116577 108266 0 0 135588 124011 0 0 13500 13046 0 0 1130251 151001 0 0 1109208 151860 0 0 13498 0 0 737 5879 7198 17395 1380 16 9.68942 9.68942 -1624.51 -9.68942 0 0 2.67122e+06 4637.53 0.92 1.17 0.46 -1 -1 0.92 0.399116 0.362445 1261 798 760 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_42.v common 54.00 vpr 77.93 MiB 0.19 15228 -1 -1 1 0.69 -1 -1 37672 -1 -1 173 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79804 22 19 3708 2673 1 2187 226 24 24 576 mult_36 auto 40.8 MiB 15.50 14199 77.9 MiB 2.76 0.04 9.11651 -862.039 -9.11651 9.11651 2.50 0.00741609 0.00632276 0.51035 0.446463 58 22801 27 1.57908e+07 7.1695e+06 2.08734e+06 3623.85 24.59 3.79293 3.41656 62154 534210 -1 19622 23 13349 15173 2336242 550432 0 0 2336242 550432 14004 13465 0 0 113511 105067 0 0 139516 124919 0 0 14004 13533 0 0 1049165 145819 0 0 1006042 147629 0 0 14004 0 0 687 5978 5992 17631 1199 48 9.78672 9.78672 -1329.82 -9.78672 0 0 2.61600e+06 4541.67 1.28 1.30 0.66 -1 -1 1.28 0.4718 0.430671 1289 817 779 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_43.v common 55.76 vpr 78.42 MiB 0.25 15560 -1 -1 1 0.74 -1 -1 38912 -1 -1 178 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80304 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 41.3 MiB 15.00 15675 78.4 MiB 2.12 0.02 8.88605 -942.223 -8.88605 8.88605 2.17 0.00439819 0.00389093 0.371909 0.322977 56 28181 44 1.57908e+07 7.23937e+06 2.03561e+06 3534.04 26.97 4.01603 3.59828 61006 507707 -1 22273 26 16642 19345 3073848 710032 0 0 3073848 710032 17593 16981 0 0 145658 133744 0 0 176304 157628 0 0 17595 17067 0 0 1365178 191672 0 0 1351520 192940 0 0 17593 0 0 979 9048 9880 22931 1798 175 9.76902 9.76902 -1544.31 -9.76902 0 0 2.50747e+06 4353.24 1.15 1.52 0.66 -1 -1 1.15 0.514267 0.465399 1323 836 798 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_44.v common 50.83 vpr 78.70 MiB 0.20 15524 -1 -1 1 0.72 -1 -1 38008 -1 -1 181 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80592 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 41.4 MiB 17.47 15422 78.7 MiB 1.91 0.02 8.86591 -857.062 -8.86591 8.86591 2.27 0.00385804 0.00334405 0.354925 0.306001 56 26552 37 1.57908e+07 7.28129e+06 2.03561e+06 3534.04 19.57 3.44213 3.07525 61006 507707 -1 21513 26 16205 18786 3146021 748972 0 0 3146021 748972 17258 16446 0 0 149331 138131 0 0 179531 160789 0 0 17264 16540 0 0 1379783 205840 0 0 1402854 211226 0 0 17258 0 0 1077 8242 9099 22839 1611 170 9.87002 9.87002 -1271.36 -9.87002 0 0 2.50747e+06 4353.24 1.28 1.60 0.62 -1 -1 1.28 0.518472 0.468582 1351 855 817 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_45.v common 53.58 vpr 78.72 MiB 0.20 16148 -1 -1 1 0.75 -1 -1 40004 -1 -1 186 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80608 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 41.5 MiB 15.78 16774 78.7 MiB 2.36 0.04 8.98021 -909.184 -8.98021 8.98021 2.58 0.00587946 0.00517888 0.455147 0.396662 56 29821 36 1.57908e+07 7.74716e+06 2.03561e+06 3534.04 23.32 3.47769 3.08974 61006 507707 -1 24106 23 16920 19594 3477283 828924 0 0 3477283 828924 17840 17198 0 0 165224 153442 0 0 196021 177450 0 0 17846 17292 0 0 1537664 233189 0 0 1542688 230353 0 0 17840 0 0 950 10351 10325 22977 1813 333 9.78672 9.78672 -1526.25 -9.78672 0 0 2.50747e+06 4353.24 1.05 1.75 0.50 -1 -1 1.05 0.494865 0.450131 1387 874 836 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_46.v common 59.62 vpr 79.29 MiB 0.22 15988 -1 -1 1 0.75 -1 -1 40216 -1 -1 189 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81192 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 42.2 MiB 17.99 16570 79.3 MiB 2.64 0.05 8.99121 -895.905 -8.99121 8.99121 3.00 0.00891756 0.00801639 0.500017 0.440944 60 26772 27 1.57908e+07 7.78909e+06 2.13333e+06 3703.69 27.71 4.41134 3.96164 62730 548095 -1 21881 24 14117 16315 2439131 565674 0 0 2439131 565674 14890 14285 0 0 122290 113275 0 0 145402 131712 0 0 14890 14362 0 0 1090442 144680 0 0 1051217 147360 0 0 14890 0 0 802 7530 7995 19253 1463 128 9.55642 9.55642 -1439.05 -9.55642 0 0 2.67122e+06 4637.53 0.84 1.31 0.46 -1 -1 0.84 0.561714 0.504068 1414 893 855 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_47.v common 56.33 vpr 80.05 MiB 0.53 16520 -1 -1 1 0.76 -1 -1 40340 -1 -1 194 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81976 22 19 4167 2996 1 2466 248 24 24 576 mult_36 auto 43.0 MiB 15.50 17393 80.1 MiB 3.88 0.05 9.11651 -968.129 -9.11651 9.11651 2.39 0.00835539 0.00747179 0.873491 0.786845 58 29750 46 1.57908e+07 7.85896e+06 2.08734e+06 3623.85 24.40 3.79278 3.41487 62154 534210 -1 23972 24 15675 18304 3298494 747876 0 0 3298494 747876 16619 15963 0 0 141375 130992 0 0 172378 154263 0 0 16621 16069 0 0 1490856 213494 0 0 1460645 217095 0 0 16619 0 0 969 9263 9632 22051 1718 270 10.1766 10.1766 -1491.01 -10.1766 0 0 2.61600e+06 4541.67 1.24 1.71 0.67 -1 -1 1.24 0.562802 0.513602 1449 912 874 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_48.v common 70.10 vpr 80.24 MiB 0.31 16560 -1 -1 1 0.77 -1 -1 40404 -1 -1 197 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82164 22 19 4241 3053 1 2505 251 24 24 576 mult_36 auto 42.9 MiB 19.02 18540 80.2 MiB 2.92 0.03 9.11651 -916.185 -9.11651 9.11651 3.16 0.00467164 0.00396588 0.517752 0.455932 60 30474 41 1.57908e+07 7.90088e+06 2.13333e+06 3703.69 34.38 5.11366 4.57905 62730 548095 -1 24848 24 17343 20039 4009005 904507 0 0 4009005 904507 18237 17557 0 0 161464 150842 0 0 189175 172107 0 0 18239 17670 0 0 1836340 268778 0 0 1785550 277553 0 0 18237 0 0 927 8636 10630 23353 1881 450 10.0936 10.0936 -1512.97 -10.0936 0 0 2.67122e+06 4637.53 1.37 1.78 0.71 -1 -1 1.37 0.463264 0.420627 1477 931 893 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_49.v common 51.24 vpr 80.44 MiB 0.23 16852 -1 -1 1 0.66 -1 -1 40348 -1 -1 204 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82372 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 43.3 MiB 17.60 18886 80.4 MiB 3.15 0.05 9.40925 -1010.13 -9.40925 9.40925 2.68 0.00909112 0.00785863 0.587811 0.511989 60 32096 49 1.57908e+07 8.3947e+06 2.13333e+06 3703.69 18.36 3.36782 3.00236 62730 548095 -1 25755 22 15180 17529 2863977 653883 0 0 2863977 653883 15919 15356 0 0 142881 133040 0 0 164581 151710 0 0 15922 15451 0 0 1270404 170906 0 0 1254270 167420 0 0 15919 0 0 768 8528 9472 20064 1667 108 10.3022 10.3022 -1748.68 -10.3022 0 0 2.67122e+06 4637.53 0.94 1.43 0.68 -1 -1 0.94 0.492093 0.448836 1512 950 912 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_50.v common 55.52 vpr 81.04 MiB 0.37 17048 -1 -1 1 0.81 -1 -1 40588 -1 -1 206 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82980 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 43.8 MiB 20.00 17972 81.0 MiB 3.09 0.04 9.03335 -975.073 -9.03335 9.03335 2.61 0.00625225 0.00527409 0.639717 0.55741 58 30357 34 1.57908e+07 8.42264e+06 2.08734e+06 3623.85 19.20 3.74116 3.32188 62154 534210 -1 24697 22 17394 19842 3364825 788744 0 0 3364825 788744 18369 17622 0 0 157838 146884 0 0 187299 170095 0 0 18370 17730 0 0 1501619 219737 0 0 1481330 216676 0 0 18369 0 0 1004 7879 8526 23962 1519 249 9.66713 9.66713 -1584.01 -9.66713 0 0 2.61600e+06 4541.67 1.27 1.78 0.65 -1 -1 1.27 0.56522 0.51564 1541 969 931 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_51.v common 67.12 vpr 81.56 MiB 0.27 17288 -1 -1 1 0.83 -1 -1 40652 -1 -1 211 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83516 22 19 4524 3251 1 2681 266 24 24 576 mult_36 auto 44.6 MiB 18.11 18180 81.6 MiB 3.43 0.07 9.36711 -1018.4 -9.36711 9.36711 2.91 0.00660861 0.0057545 0.593821 0.52924 64 28144 33 1.57908e+07 8.49251e+06 2.26035e+06 3924.22 32.37 5.12423 4.58524 64454 586630 -1 24153 24 15670 18150 3057720 705467 0 0 3057720 705467 16622 15938 0 0 145372 135105 0 0 177887 159376 0 0 16624 16057 0 0 1348488 192092 0 0 1352727 186899 0 0 16622 0 0 978 7935 8782 21959 1595 151 9.80202 9.80202 -1750.42 -9.80202 0 0 2.84938e+06 4946.85 1.83 1.84 0.50 -1 -1 1.83 0.621447 0.568002 1576 988 950 19 0 0 -k6_frac_ripple_N8_22nm.xml fir_nopipe_52.v common 85.03 vpr 83.82 MiB 0.27 17280 -1 -1 1 0.90 -1 -1 38864 -1 -1 215 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85836 22 19 4598 3308 1 2718 270 24 24 576 mult_36 auto 44.6 MiB 20.92 21535 81.6 MiB 2.63 0.04 9.20881 -1033.49 -9.20881 9.20881 1.92 0.00648864 0.00556034 0.474187 0.413622 70 33048 29 1.57908e+07 8.54841e+06 2.45377e+06 4260.01 48.17 4.93198 4.39018 66754 640332 -1 27827 22 17227 19551 4901421 1016673 0 0 4901421 1016673 18003 17399 0 0 157864 146615 0 0 187564 169641 0 0 18006 17475 0 0 2229366 325849 0 0 2290618 339694 0 0 18003 0 0 805 7463 9038 22248 1600 88 9.93232 9.93232 -1588.22 -9.93232 0 0 3.09179e+06 5367.68 1.47 2.41 0.79 -1 -1 1.47 0.677267 0.618219 1605 1007 969 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_14.v common 13.11 vpr 69.30 MiB 0.07 10352 -1 -1 1 0.25 -1 -1 35104 -1 -1 81 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70968 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 31.0 MiB 0.57 5972 69.3 MiB 0.88 0.01 3.79276 -1064.84 -3.79276 3.79276 0.88 0.00282888 0.0024166 0.212747 0.18608 50 13019 46 6.54114e+06 2.7256e+06 787708. 3076.99 6.85 1.37511 1.22172 25344 186282 -1 9739 20 4172 4793 798055 191604 0 0 798055 191604 4519 4248 0 0 40070 36515 0 0 47519 42889 0 0 4566 4295 0 0 353790 50454 0 0 347591 53203 0 0 4519 0 0 366 3037 3362 22755 314 1 4.52256 4.52256 -1258.87 -4.52256 0 0 943753. 3686.54 0.37 0.43 0.22 -1 -1 0.37 0.172966 0.155929 605 649 247 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_15.v common 13.64 vpr 69.98 MiB 0.08 10984 -1 -1 1 0.31 -1 -1 35868 -1 -1 88 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71664 22 19 2144 1789 1 1120 134 16 16 256 mult_36 auto 31.8 MiB 0.48 6659 70.0 MiB 1.13 0.01 4.04336 -1171.67 -4.04336 4.04336 0.95 0.00419461 0.00369321 0.27966 0.247159 54 13390 41 6.54114e+06 3.22025e+06 829453. 3240.05 7.10 1.61193 1.44275 26108 202796 -1 10584 20 4334 5101 698961 173217 0 0 698961 173217 4561 4371 0 0 37426 33928 0 0 44219 39574 0 0 4573 4385 0 0 307241 44958 0 0 300941 46001 0 0 4561 0 0 245 2367 2540 5222 645 3 4.29396 4.29396 -1372.96 -4.29396 0 0 1.02522e+06 4004.78 0.35 0.34 0.28 -1 -1 0.35 0.1727 0.15607 654 704 266 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_16.v common 12.79 vpr 70.19 MiB 0.11 10824 -1 -1 1 0.32 -1 -1 35940 -1 -1 91 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71872 22 19 2218 1846 1 1162 137 16 16 256 mult_36 auto 32.0 MiB 0.46 6645 70.2 MiB 0.95 0.02 3.91806 -1189.41 -3.91806 3.91806 0.83 0.00374848 0.00322501 0.229815 0.198328 54 14055 36 6.54114e+06 3.26253e+06 829453. 3240.05 6.68 1.43617 1.28044 26108 202796 -1 10583 20 4697 5359 816374 199868 0 0 816374 199868 4935 4743 0 0 41132 37509 0 0 48277 43531 0 0 4935 4753 0 0 361726 53920 0 0 355369 55412 0 0 4935 0 0 255 2530 2054 5893 502 10 4.39726 4.39726 -1353.36 -4.39726 0 0 1.02522e+06 4004.78 0.38 0.51 0.17 -1 -1 0.38 0.220527 0.199392 683 723 285 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_17.v common 16.81 vpr 71.86 MiB 0.12 11776 -1 -1 1 0.37 -1 -1 36732 -1 -1 103 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73588 22 19 2536 2130 1 1275 149 16 16 256 mult_36 auto 33.6 MiB 0.55 7862 71.9 MiB 0.99 0.04 4.04336 -1364.39 -4.04336 4.04336 0.72 0.00471542 0.00414638 0.264757 0.233152 58 12981 30 6.54114e+06 3.43166e+06 871168. 3403.00 10.50 2.2546 2.00983 26872 219187 -1 10958 18 4294 5014 769453 192821 0 0 769453 192821 4534 4309 0 0 39174 35164 0 0 46940 42443 0 0 4544 4343 0 0 336100 52730 0 0 338161 53832 0 0 4534 0 0 256 2209 2733 5288 580 75 4.29396 4.29396 -1540.21 -4.29396 0 0 1.09288e+06 4269.05 0.38 0.40 0.25 -1 -1 0.38 0.181761 0.162832 770 851 304 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_18.v common 16.41 vpr 72.30 MiB 0.12 11740 -1 -1 1 0.37 -1 -1 36692 -1 -1 107 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74036 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 34.2 MiB 0.58 7910 72.3 MiB 1.13 0.02 3.79276 -1415.98 -3.79276 3.79276 0.87 0.00474617 0.00420001 0.282992 0.247444 56 15309 35 6.54114e+06 3.48803e+06 849745. 3319.32 9.36 1.93555 1.71978 26364 208198 -1 11980 19 5036 5970 904298 220894 0 0 904298 220894 5252 5075 0 0 45558 40639 0 0 55173 49491 0 0 5259 5102 0 0 398916 59514 0 0 394140 61073 0 0 5252 0 0 236 3290 3269 6249 765 156 4.39726 4.39726 -1668.04 -4.39726 0 0 1.04740e+06 4091.43 0.40 0.54 0.27 -1 -1 0.40 0.240708 0.218228 798 870 323 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_19.v common 14.21 vpr 73.13 MiB 0.11 11964 -1 -1 1 0.36 -1 -1 36880 -1 -1 113 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74888 22 19 2778 2321 1 1412 160 16 16 256 mult_36 auto 35.2 MiB 0.64 8346 73.1 MiB 1.12 0.02 3.79276 -1487.7 -3.79276 3.79276 0.85 0.00446021 0.00383056 0.302276 0.262752 58 15230 41 6.54114e+06 3.96859e+06 871168. 3403.00 7.21 1.7306 1.53275 26872 219187 -1 12136 18 5089 5880 814912 204128 0 0 814912 204128 5325 5113 0 0 43081 38530 0 0 52108 46807 0 0 5327 5137 0 0 355185 53433 0 0 353886 55108 0 0 5325 0 0 255 2273 3009 6331 616 163 4.29396 4.29396 -1724.8 -4.29396 0 0 1.09288e+06 4269.05 0.40 0.58 0.27 -1 -1 0.40 0.257546 0.234033 846 925 342 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_20.v common 17.55 vpr 73.62 MiB 0.11 12336 -1 -1 1 0.43 -1 -1 36820 -1 -1 118 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75392 22 19 2852 2378 1 1455 165 16 16 256 mult_36 auto 35.1 MiB 0.63 9052 73.6 MiB 0.78 0.02 3.91806 -1567.01 -3.91806 3.91806 0.86 0.00545861 0.00481748 0.201676 0.176266 60 14855 31 6.54114e+06 4.03906e+06 890343. 3477.90 10.80 2.3341 2.0735 27128 224764 -1 12241 16 4918 5599 829361 212572 0 0 829361 212572 5156 4971 0 0 44594 40215 0 0 51833 47374 0 0 5165 4993 0 0 358412 56374 0 0 364201 58645 0 0 5156 0 0 255 2177 2743 6163 513 2 4.29396 4.29396 -1737.03 -4.29396 0 0 1.11577e+06 4358.47 0.43 0.50 0.28 -1 -1 0.43 0.22163 0.200014 875 944 361 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_21.v common 15.03 vpr 74.31 MiB 0.15 12640 -1 -1 1 0.44 -1 -1 37496 -1 -1 122 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76096 22 19 3057 2549 1 1560 169 16 16 256 mult_36 auto 36.4 MiB 0.70 10145 74.3 MiB 1.12 0.02 3.91806 -1657.7 -3.91806 3.91806 0.86 0.0055702 0.00480377 0.302999 0.266696 60 16591 34 6.54114e+06 4.09544e+06 890343. 3477.90 7.43 2.01567 1.77307 27128 224764 -1 13770 18 5500 6444 1071451 259247 0 0 1071451 259247 5777 5524 0 0 50281 45334 0 0 59730 53937 0 0 5778 5545 0 0 473949 73157 0 0 475936 75750 0 0 5777 0 0 295 3339 3527 6737 770 244 4.41926 4.41926 -1879.02 -4.41926 0 0 1.11577e+06 4358.47 0.36 0.73 0.25 -1 -1 0.36 0.274973 0.249305 932 1017 380 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_22.v common 17.00 vpr 74.83 MiB 0.20 12912 -1 -1 1 0.48 -1 -1 37724 -1 -1 125 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76624 22 19 3131 2606 1 1600 172 16 16 256 mult_36 auto 36.9 MiB 0.70 10124 74.8 MiB 0.95 0.01 4.02136 -1704.37 -4.02136 4.02136 0.69 0.00307385 0.00263869 0.234218 0.203449 68 16819 31 6.54114e+06 4.13772e+06 1.00038e+06 3907.74 9.59 1.87655 1.65039 28404 252462 -1 13635 20 5537 6193 867491 206106 0 0 867491 206106 5781 5561 0 0 43283 38610 0 0 52695 47065 0 0 5786 5579 0 0 383087 52952 0 0 376859 56339 0 0 5781 0 0 261 2348 2015 6802 476 2 4.39726 4.39726 -1896.61 -4.39726 0 0 1.24648e+06 4869.04 0.48 0.78 0.32 -1 -1 0.48 0.357857 0.329138 961 1036 399 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_23.v common 20.12 vpr 75.45 MiB 0.13 13144 -1 -1 1 0.47 -1 -1 37376 -1 -1 133 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77256 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 37.3 MiB 0.76 10269 75.4 MiB 0.85 0.01 3.91806 -1815.19 -3.91806 3.91806 1.19 0.00326647 0.00280133 0.225633 0.196101 56 19535 36 8.06603e+06 4.64648e+06 1.11497e+06 3441.27 12.13 2.39492 2.1255 34036 275796 -1 16012 16 6494 7589 1166508 276969 0 0 1166508 276969 6833 6512 0 0 56729 50590 0 0 68786 61708 0 0 6836 6539 0 0 514529 75194 0 0 512795 76426 0 0 6833 0 0 358 3645 3976 8220 848 20 4.54456 4.54456 -2213.39 -4.54456 0 0 1.37338e+06 4238.83 0.55 0.52 0.35 -1 -1 0.55 0.227544 0.209175 1012 1091 418 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_24.v common 19.25 vpr 76.04 MiB 0.14 13308 -1 -1 1 0.50 -1 -1 37968 -1 -1 137 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77860 22 19 3375 2799 1 1744 185 18 18 324 mult_36 auto 38.2 MiB 0.70 10613 76.0 MiB 1.05 0.02 4.04336 -1855.71 -4.04336 4.04336 0.85 0.00338358 0.00290379 0.257777 0.22309 60 20330 50 8.06603e+06 4.70285e+06 1.16833e+06 3605.96 11.29 2.65857 2.35243 35004 297736 -1 15716 18 6382 7415 1250228 292002 0 0 1250228 292002 6699 6453 0 0 55997 50285 0 0 66530 59907 0 0 6708 6483 0 0 565108 83246 0 0 549186 85628 0 0 6699 0 0 337 3130 4070 8036 795 20 4.39726 4.39726 -2180.44 -4.39726 0 0 1.46313e+06 4515.82 0.44 0.77 0.33 -1 -1 0.44 0.31921 0.288808 1041 1110 437 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_25.v common 19.74 vpr 76.40 MiB 0.13 13676 -1 -1 1 0.53 -1 -1 37664 -1 -1 146 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78232 22 19 3615 3005 1 1848 194 18 18 324 mult_36 auto 38.3 MiB 0.77 11307 76.4 MiB 1.78 0.03 3.91806 -1971.06 -3.91806 3.91806 1.22 0.00723529 0.00644019 0.474563 0.419583 60 18893 30 8.06603e+06 4.8297e+06 1.16833e+06 3605.96 10.07 2.85049 2.5298 35004 297736 -1 16146 16 6464 7598 1227259 287669 0 0 1227259 287669 6796 6512 0 0 57794 51650 0 0 68503 61744 0 0 6807 6550 0 0 553979 78767 0 0 533380 82446 0 0 6796 0 0 347 3984 3756 8137 891 145 4.39726 4.39726 -2319.28 -4.39726 0 0 1.46313e+06 4515.82 0.62 0.80 0.36 -1 -1 0.62 0.343553 0.315248 1107 1201 456 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_26.v common 26.03 vpr 77.09 MiB 0.33 13876 -1 -1 1 0.47 -1 -1 37660 -1 -1 148 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78936 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 38.9 MiB 0.76 12301 77.1 MiB 1.82 0.03 4.04336 -2020.33 -4.04336 4.04336 1.22 0.00687425 0.00609254 0.472836 0.41652 66 22366 34 8.06603e+06 4.85789e+06 1.27759e+06 3943.17 16.17 3.20685 2.85316 36296 327148 -1 17195 19 6576 7557 1314540 294198 0 0 1314540 294198 6936 6624 0 0 57665 51509 0 0 68758 62176 0 0 6941 6658 0 0 586357 82101 0 0 587883 85130 0 0 6936 0 0 378 2919 3301 8343 723 81 4.41926 4.41926 -2337.7 -4.41926 0 0 1.59950e+06 4936.74 0.62 0.76 0.36 -1 -1 0.62 0.352754 0.322491 1135 1220 475 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_27.v common 18.63 vpr 78.22 MiB 0.15 14240 -1 -1 1 0.63 -1 -1 38528 -1 -1 156 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80100 22 19 3871 3210 1 2002 205 18 18 324 mult_36 auto 40.2 MiB 0.85 12335 78.2 MiB 1.80 0.04 4.04336 -2177.99 -4.04336 4.04336 1.15 0.00827041 0.00729236 0.442708 0.389184 64 21265 29 8.06603e+06 5.36665e+06 1.23838e+06 3822.15 8.73 2.44596 2.174 35972 318676 -1 17337 17 6939 7994 1218901 286489 0 0 1218901 286489 7243 6968 0 0 60909 54271 0 0 73492 66153 0 0 7249 7013 0 0 548590 74428 0 0 521418 77656 0 0 7243 0 0 324 3563 3898 8699 815 127 4.41926 4.41926 -2475.79 -4.41926 0 0 1.56068e+06 4816.91 0.64 0.74 0.38 -1 -1 0.64 0.321145 0.29066 1191 1275 494 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_28.v common 19.96 vpr 78.69 MiB 0.15 14440 -1 -1 1 0.65 -1 -1 38040 -1 -1 160 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80580 22 19 3945 3267 1 2045 209 18 18 324 mult_36 auto 40.6 MiB 0.77 12356 78.7 MiB 1.95 0.03 3.91806 -2130.05 -3.91806 3.91806 1.28 0.00809682 0.00724692 0.499614 0.442534 64 21708 29 8.06603e+06 5.42302e+06 1.23838e+06 3822.15 10.17 2.58384 2.29199 35972 318676 -1 17506 18 7087 8292 1326254 307260 0 0 1326254 307260 7403 7125 0 0 64473 57458 0 0 77743 69929 0 0 7411 7164 0 0 578854 83518 0 0 590370 82066 0 0 7403 0 0 334 4503 4101 8602 991 92 4.29396 4.29396 -2523.87 -4.29396 0 0 1.56068e+06 4816.91 0.58 0.47 0.36 -1 -1 0.58 0.226605 0.20609 1219 1294 513 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_29.v common 34.08 vpr 79.66 MiB 0.16 15036 -1 -1 1 0.71 -1 -1 38924 -1 -1 170 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81568 22 19 4159 3447 1 2159 220 22 22 484 mult_36 auto 41.6 MiB 0.89 14296 79.7 MiB 2.46 0.04 3.91806 -2272.88 -3.91806 3.91806 2.00 0.0119285 0.0108903 0.648838 0.570309 58 28364 39 1.31202e+07 5.95997e+06 1.75961e+06 3635.55 20.55 3.47293 3.08785 52570 450426 -1 21836 20 8713 10544 1785055 388229 0 0 1785055 388229 9105 8803 0 0 75403 66971 0 0 91273 81546 0 0 9116 8871 0 0 806904 109438 0 0 793254 112600 0 0 9105 0 0 412 6090 7186 11079 1493 304 4.52256 4.52256 -2814.06 -4.52256 0 0 2.20457e+06 4554.90 0.95 0.91 0.57 -1 -1 0.95 0.383558 0.346416 1283 1367 532 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_30.v common 34.23 vpr 79.86 MiB 0.16 15100 -1 -1 1 0.74 -1 -1 40132 -1 -1 173 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81776 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 41.9 MiB 0.86 14580 79.9 MiB 2.31 0.03 3.91806 -2232.55 -3.91806 3.91806 1.60 0.00790736 0.00680576 0.584745 0.508981 60 25392 27 1.31202e+07 6.00225e+06 1.79840e+06 3715.71 22.26 4.46416 3.94949 53054 462096 -1 20637 17 7950 9421 1500708 338777 0 0 1500708 338777 8387 8112 0 0 70477 63010 0 0 84007 75506 0 0 8391 8166 0 0 663802 91336 0 0 665644 92647 0 0 8387 0 0 459 5154 5467 10470 1099 152 4.41926 4.41926 -2696.08 -4.41926 0 0 2.25108e+06 4650.99 0.71 0.82 0.42 -1 -1 0.71 0.346425 0.314464 1311 1386 551 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_31.v common 27.49 vpr 81.46 MiB 0.16 15412 -1 -1 1 0.74 -1 -1 40364 -1 -1 179 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83420 22 19 4410 3647 1 2305 229 22 22 484 mult_36 auto 42.6 MiB 1.08 15174 81.5 MiB 2.12 0.04 3.79276 -2360.14 -3.79276 3.79276 1.93 0.0105064 0.00959857 0.533656 0.476093 62 26919 35 1.31202e+07 6.08682e+06 1.85176e+06 3825.95 14.10 3.85984 3.45573 53538 472186 -1 20914 17 7889 9383 1264357 294908 0 0 1264357 294908 8205 7947 0 0 69852 62254 0 0 82350 74182 0 0 8216 7968 0 0 552932 70862 0 0 542802 71695 0 0 8205 0 0 335 5215 5627 9644 1247 499 4.29396 4.29396 -3039.44 -4.29396 0 0 2.29262e+06 4736.82 0.98 0.81 0.53 -1 -1 0.98 0.402131 0.365042 1363 1441 570 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_32.v common 31.97 vpr 81.94 MiB 0.17 15648 -1 -1 1 0.75 -1 -1 39240 -1 -1 183 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83904 22 19 4484 3704 1 2348 233 22 22 484 mult_36 auto 43.2 MiB 0.96 15026 81.9 MiB 2.91 0.04 3.79276 -2437.3 -3.79276 3.79276 2.17 0.0136459 0.0122544 0.855379 0.771533 58 28136 43 1.31202e+07 6.14319e+06 1.75961e+06 3635.55 17.50 4.32476 3.89409 52570 450426 -1 22569 19 8937 10584 1635344 363842 0 0 1635344 363842 9305 8994 0 0 75807 67469 0 0 92476 82685 0 0 9313 9043 0 0 727503 98380 0 0 720940 97271 0 0 9305 0 0 388 5704 6691 11120 1337 69 4.54456 4.54456 -2943.41 -4.54456 0 0 2.20457e+06 4554.90 1.02 1.04 0.54 -1 -1 1.02 0.431537 0.391017 1393 1460 589 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_33.v common 35.96 vpr 82.49 MiB 0.24 16588 -1 -1 1 0.86 -1 -1 40912 -1 -1 196 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84472 22 19 4843 4029 1 2463 247 22 22 484 mult_36 auto 44.8 MiB 1.02 17421 82.5 MiB 2.46 0.05 3.91806 -2610.2 -3.91806 3.91806 1.71 0.013565 0.0123689 0.619541 0.549355 62 31794 48 1.31202e+07 6.72242e+06 1.85176e+06 3825.95 21.94 4.949 4.3965 53538 472186 -1 24422 19 9475 11148 1996420 428215 0 0 1996420 428215 9944 9551 0 0 83056 74195 0 0 97183 87836 0 0 9950 9603 0 0 907062 120503 0 0 889225 126527 0 0 9944 0 0 490 6103 6048 12229 1275 60 4.52256 4.52256 -3063.87 -4.52256 0 0 2.29262e+06 4736.82 0.87 1.29 0.48 -1 -1 0.87 0.505813 0.458286 1490 1606 608 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_34.v common 45.31 vpr 82.71 MiB 0.24 16600 -1 -1 1 0.62 -1 -1 41060 -1 -1 199 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84696 22 19 4917 4086 1 2505 250 22 22 484 mult_36 auto 45.0 MiB 1.05 16861 82.7 MiB 2.63 0.07 3.91806 -2596.99 -3.91806 3.91806 2.12 0.00787707 0.00693164 0.639965 0.565468 64 29911 38 1.31202e+07 6.7647e+06 1.90554e+06 3937.06 30.84 6.02665 5.36986 54502 494576 -1 23699 19 9000 10475 1899761 415182 0 0 1899761 415182 9442 9075 0 0 79371 70688 0 0 95680 86052 0 0 9446 9136 0 0 857087 115646 0 0 848735 124585 0 0 9442 0 0 460 5197 5178 11754 1098 382 4.39726 4.39726 -3168.37 -4.39726 0 0 2.40101e+06 4960.76 1.00 1.15 0.62 -1 -1 1.00 0.469443 0.427248 1519 1625 627 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_35.v common 29.90 vpr 84.94 MiB 0.22 17020 -1 -1 1 0.77 -1 -1 41188 -1 -1 207 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86976 22 19 5093 4228 1 2607 258 22 22 484 mult_36 auto 46.1 MiB 1.11 17900 84.9 MiB 3.02 0.05 4.04336 -2813.59 -4.04336 4.04336 1.78 0.00941463 0.00790347 0.68423 0.58989 66 32457 44 1.31202e+07 6.87745e+06 1.96511e+06 4060.15 15.19 3.75818 3.31305 54986 507526 -1 25001 17 8868 10688 1630122 348190 0 0 1630122 348190 9329 8970 0 0 73133 64229 0 0 90122 79780 0 0 9336 9016 0 0 732638 92528 0 0 715564 93667 0 0 9329 0 0 480 6969 6503 11785 1415 96 4.54456 4.54456 -3415.49 -4.54456 0 0 2.45963e+06 5081.88 0.92 1.02 0.59 -1 -1 0.92 0.494916 0.449057 1572 1680 646 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_36.v common 40.55 vpr 84.07 MiB 0.26 17080 -1 -1 1 0.96 -1 -1 41588 -1 -1 209 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86092 22 19 5167 4285 1 2655 260 22 22 484 mult_36 auto 46.3 MiB 1.22 19138 84.1 MiB 2.99 0.05 3.91806 -2798.96 -3.91806 3.91806 2.16 0.0112161 0.00998026 0.693418 0.603494 68 32277 23 1.31202e+07 6.90564e+06 2.01763e+06 4168.66 24.44 5.08246 4.47929 55470 518816 -1 25818 17 9208 10813 1726380 370488 0 0 1726380 370488 9677 9279 0 0 74430 65891 0 0 89362 79893 0 0 9684 9307 0 0 777926 101889 0 0 765301 104229 0 0 9677 0 0 486 5543 5910 12284 1193 729 4.54456 4.54456 -3346.24 -4.54456 0 0 2.51205e+06 5190.18 1.12 1.32 0.57 -1 -1 1.12 0.604859 0.554693 1600 1699 665 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_37.v common 38.41 vpr 86.09 MiB 0.23 17624 -1 -1 1 0.94 -1 -1 40404 -1 -1 218 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88156 22 19 5380 4464 1 2756 270 24 24 576 mult_36 auto 47.3 MiB 1.23 20063 86.1 MiB 2.71 0.03 4.16866 -3164.83 -4.16866 4.16866 2.06 0.00702326 0.00604074 0.625416 0.556372 60 35296 33 1.58331e+07 7.42849e+06 2.13333e+06 3703.69 22.34 4.12192 3.62014 62730 548095 -1 28246 18 10104 12221 1936556 414741 0 0 1936556 414741 10596 10193 0 0 82747 72710 0 0 99443 88720 0 0 10603 10263 0 0 874945 116235 0 0 858222 116620 0 0 10596 0 0 513 7283 8497 13389 1666 388 4.66986 4.66986 -3795.32 -4.66986 0 0 2.67122e+06 4637.53 1.18 1.24 0.65 -1 -1 1.18 0.533665 0.485197 1662 1772 684 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_38.v common 32.54 vpr 85.32 MiB 0.19 17780 -1 -1 1 1.03 -1 -1 41852 -1 -1 220 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87372 22 19 5454 4521 1 2804 272 24 24 576 mult_36 auto 47.6 MiB 1.24 19459 85.3 MiB 2.86 0.05 4.16866 -3108.05 -4.16866 4.16866 2.51 0.0109243 0.00964348 0.660881 0.58271 64 33829 26 1.58331e+07 7.45668e+06 2.26035e+06 3924.22 15.69 3.62667 3.18586 64454 586630 -1 27285 18 9748 11270 1913581 424064 0 0 1913581 424064 10172 9818 0 0 84614 75091 0 0 102473 91825 0 0 10178 9872 0 0 861860 118248 0 0 844284 119210 0 0 10172 0 0 442 5682 5776 12338 1156 412 4.54456 4.54456 -3514.29 -4.54456 0 0 2.84938e+06 4946.85 1.22 1.24 0.68 -1 -1 1.22 0.577936 0.524971 1690 1791 703 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_39.v common 31.90 vpr 86.16 MiB 0.16 18312 -1 -1 1 1.04 -1 -1 41068 -1 -1 228 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88224 22 19 5629 4662 1 2910 280 24 24 576 mult_36 auto 48.8 MiB 1.23 19361 86.2 MiB 2.90 0.05 3.91806 -3167.21 -3.91806 3.91806 2.67 0.0113525 0.00997347 0.696995 0.613579 60 34328 41 1.58331e+07 7.56943e+06 2.13333e+06 3703.69 15.87 4.31023 3.80348 62730 548095 -1 27360 23 10572 12445 2039567 465158 0 0 2039567 465158 11008 10616 0 0 94261 84539 0 0 112528 101333 0 0 11012 10674 0 0 903339 128735 0 0 907419 129261 0 0 11008 0 0 456 6459 7204 13411 1485 619 4.66986 4.66986 -3704.79 -4.66986 0 0 2.67122e+06 4637.53 0.83 1.12 0.41 -1 -1 0.83 0.582769 0.526084 1742 1846 722 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_40.v common 50.07 vpr 87.88 MiB 0.23 18284 -1 -1 1 0.91 -1 -1 42060 -1 -1 232 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89988 22 19 5703 4719 1 2952 284 24 24 576 mult_36 auto 49.3 MiB 1.33 20734 87.7 MiB 3.57 0.03 4.16866 -3276.4 -4.16866 4.16866 2.74 0.00720914 0.00640253 0.914052 0.770839 64 37401 34 1.58331e+07 7.62581e+06 2.26035e+06 3924.22 32.08 7.01254 6.18185 64454 586630 -1 29150 19 10714 12563 2133412 472386 0 0 2133412 472386 11179 10793 0 0 92540 82373 0 0 113510 100978 0 0 11180 10850 0 0 957885 132755 0 0 947118 134637 0 0 11179 0 0 483 6565 6978 14026 1413 175 4.52256 4.52256 -3859.66 -4.52256 0 0 2.84938e+06 4946.85 1.29 1.31 0.71 -1 -1 1.29 0.591972 0.533631 1771 1865 741 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_41.v common 54.62 vpr 90.41 MiB 0.25 18976 -1 -1 1 1.13 -1 -1 41152 -1 -1 240 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92576 22 19 5950 4932 1 3067 293 24 24 576 mult_36 auto 50.1 MiB 1.46 21064 87.4 MiB 3.28 0.04 4.04336 -3445.69 -4.04336 4.04336 2.93 0.0110631 0.00965368 0.760025 0.670442 68 36564 36 1.58331e+07 8.13456e+06 2.39371e+06 4155.74 36.78 7.84128 6.99804 65606 615345 -1 29319 20 11140 13425 2126161 453781 0 0 2126161 453781 11719 11280 0 0 95354 84858 0 0 114452 102419 0 0 11730 11381 0 0 958836 121675 0 0 934070 122168 0 0 11719 0 0 598 9040 8416 14742 1789 389 4.29396 4.29396 -3980.84 -4.29396 0 0 2.98162e+06 5176.42 1.22 1.32 0.47 -1 -1 1.22 0.574596 0.514834 1841 1956 760 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_42.v common 36.16 vpr 87.52 MiB 0.24 18944 -1 -1 1 1.20 -1 -1 42804 -1 -1 242 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89616 22 19 6024 4989 1 3108 295 24 24 576 mult_36 auto 50.0 MiB 1.35 20798 87.5 MiB 3.27 0.04 4.16866 -3417.51 -4.16866 4.16866 2.46 0.00798262 0.00689676 0.760763 0.665902 64 35011 29 1.58331e+07 8.16275e+06 2.26035e+06 3924.22 18.97 4.86442 4.31762 64454 586630 -1 29318 18 10688 12903 2129573 473975 0 0 2129573 473975 11207 10739 0 0 94570 83628 0 0 116042 103289 0 0 11214 10789 0 0 960905 130582 0 0 935635 134948 0 0 11207 0 0 537 7226 9127 13933 1762 255 4.64786 4.64786 -4100.73 -4.64786 0 0 2.84938e+06 4946.85 1.21 1.03 0.51 -1 -1 1.21 0.48456 0.440816 1869 1975 779 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_43.v common 35.68 vpr 88.70 MiB 0.44 19452 -1 -1 1 1.23 -1 -1 42912 -1 -1 250 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90824 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 51.3 MiB 1.46 22220 88.7 MiB 3.14 0.06 4.16866 -3551.25 -4.16866 4.16866 2.70 0.0123596 0.0110134 0.76067 0.674662 66 38599 44 1.58331e+07 8.2755e+06 2.33135e+06 4047.49 17.86 4.43045 3.93152 65030 601923 -1 30729 16 10882 12658 2015580 442185 0 0 2015580 442185 11376 10988 0 0 90069 79577 0 0 111041 98936 0 0 11380 11049 0 0 908312 120958 0 0 883402 120677 0 0 11376 0 0 514 6995 6759 14072 1325 85 4.54456 4.54456 -4129.43 -4.54456 0 0 2.91907e+06 5067.82 1.37 1.28 0.71 -1 -1 1.37 0.5631 0.510431 1921 2030 798 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_44.v common 38.47 vpr 89.21 MiB 0.27 19256 -1 -1 1 1.09 -1 -1 43104 -1 -1 253 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91356 22 19 6272 5186 1 3255 306 24 24 576 mult_36 auto 51.7 MiB 1.39 21683 89.2 MiB 3.60 0.06 3.91806 -3599.86 -3.91806 3.91806 2.66 0.0116363 0.0101911 0.807047 0.711041 66 37755 41 1.58331e+07 8.31778e+06 2.33135e+06 4047.49 20.51 5.58975 4.95166 65030 601923 -1 30053 17 11038 12939 2040304 455989 0 0 2040304 455989 11503 11126 0 0 96176 85457 0 0 116396 104380 0 0 11515 11198 0 0 914874 121905 0 0 889840 121923 0 0 11503 0 0 481 6393 7536 13951 1503 496 4.41926 4.41926 -4091.1 -4.41926 0 0 2.91907e+06 5067.82 1.15 1.28 0.62 -1 -1 1.15 0.57141 0.516846 1949 2049 817 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_45.v common 35.78 vpr 90.19 MiB 0.43 19816 -1 -1 1 1.40 -1 -1 43428 -1 -1 262 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92352 22 19 6485 5365 1 3364 316 24 24 576 mult_36 auto 52.7 MiB 1.57 23340 90.2 MiB 3.88 0.05 4.16866 -3679.38 -4.16866 4.16866 2.56 0.0137971 0.0123284 0.889857 0.786054 68 38626 38 1.58331e+07 8.84063e+06 2.39371e+06 4155.74 16.30 3.99148 3.53035 65606 615345 -1 31150 17 11240 13140 2051924 459468 0 0 2051924 459468 11689 11277 0 0 92934 82513 0 0 112267 100465 0 0 11692 11332 0 0 923791 125204 0 0 899551 128677 0 0 11689 0 0 465 6216 7198 14178 1496 510 4.41926 4.41926 -4297.54 -4.41926 0 0 2.98162e+06 5176.42 1.28 1.45 0.72 -1 -1 1.28 0.657358 0.598127 2011 2122 836 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_46.v common 58.05 vpr 93.34 MiB 0.44 19748 -1 -1 1 1.27 -1 -1 43480 -1 -1 266 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 95576 22 19 6559 5422 1 3406 320 24 24 576 mult_36 auto 52.9 MiB 1.46 23671 90.3 MiB 5.14 0.10 4.16866 -3712.31 -4.16866 4.16866 2.70 0.0112635 0.0100092 1.11562 0.990559 68 38983 36 1.58331e+07 8.897e+06 2.39371e+06 4155.74 37.28 7.76211 6.93112 65606 615345 -1 31944 17 11000 12742 2050814 447848 0 0 2050814 447848 11537 11061 0 0 89550 79187 0 0 106883 96083 0 0 11545 11117 0 0 923247 123274 0 0 908052 127126 0 0 11537 0 0 555 6162 6611 14365 1277 320 4.64786 4.64786 -4262.33 -4.64786 0 0 2.98162e+06 5176.42 1.31 1.31 0.84 -1 -1 1.31 0.625328 0.566962 2040 2141 855 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_47.v common 56.92 vpr 96.04 MiB 0.56 20328 -1 -1 1 1.27 -1 -1 43784 -1 -1 273 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98348 22 19 6735 5564 1 3513 327 24 24 576 mult_36 auto 53.9 MiB 1.72 23732 91.2 MiB 4.72 0.05 4.04336 -3875.46 -4.04336 4.04336 2.70 0.00932269 0.00805426 0.910809 0.782874 72 39218 24 1.58331e+07 8.99566e+06 2.50747e+06 4353.24 36.93 7.56763 6.71762 67330 654343 -1 32357 15 11529 13259 2311269 510739 0 0 2311269 510739 11975 11563 0 0 97366 86472 0 0 118673 105746 0 0 11986 11616 0 0 1032519 146633 0 0 1038750 148709 0 0 11975 0 0 467 6213 7254 14174 1362 548 4.54456 4.54456 -4512.49 -4.54456 0 0 3.14081e+06 5452.80 1.44 1.31 0.70 -1 -1 1.44 0.543081 0.48941 2092 2196 874 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_48.v common 58.90 vpr 96.59 MiB 0.33 20352 -1 -1 1 1.50 -1 -1 43644 -1 -1 276 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 98904 22 19 6809 5621 1 3556 330 24 24 576 mult_36 auto 54.2 MiB 1.45 25754 91.7 MiB 4.31 0.03 4.16866 -3927.23 -4.16866 4.16866 2.64 0.00683363 0.00593745 1.1064 0.970688 72 42351 32 1.58331e+07 9.03794e+06 2.50747e+06 4353.24 38.57 8.33924 7.40306 67330 654343 -1 34948 15 11839 14044 2565791 550405 0 0 2565791 550405 12373 11918 0 0 101664 89965 0 0 123857 109991 0 0 12379 11994 0 0 1159423 163002 0 0 1156095 163535 0 0 12373 0 0 553 8476 9096 15164 1739 1439 4.77316 4.77316 -4567.33 -4.77316 0 0 3.14081e+06 5452.80 1.41 1.36 0.84 -1 -1 1.41 0.560569 0.505592 2121 2215 893 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_49.v common 62.68 vpr 97.98 MiB 0.29 20928 -1 -1 1 1.45 -1 -1 43988 -1 -1 287 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100336 22 19 7094 5872 1 3671 342 24 24 576 mult_36 auto 55.7 MiB 1.65 26414 93.3 MiB 4.41 0.05 4.16866 -4112.14 -4.16866 4.16866 2.48 0.0100671 0.00879585 1.01946 0.909257 72 44205 37 1.58331e+07 9.58898e+06 2.50747e+06 4353.24 41.33 9.58713 8.53089 67330 654343 -1 35373 17 12117 14511 2301231 494833 0 0 2301231 494833 12643 12218 0 0 100179 87920 0 0 123910 109352 0 0 12647 12274 0 0 1019909 138506 0 0 1031943 134563 0 0 12643 0 0 544 9004 9342 15574 1920 221 4.64786 4.64786 -4910.55 -4.64786 0 0 3.14081e+06 5452.80 1.52 2.20 0.96 -1 -1 1.52 0.953389 0.859871 2200 2324 912 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_50.v common 58.23 vpr 98.52 MiB 0.27 21048 -1 -1 1 1.28 -1 -1 43688 -1 -1 290 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 100888 22 19 7168 5929 1 3712 345 24 24 576 mult_36 auto 55.7 MiB 1.64 25005 93.1 MiB 3.90 0.08 4.16866 -4097.24 -4.16866 4.16866 2.32 0.0249966 0.0227111 0.893038 0.787414 72 41778 45 1.58331e+07 9.63126e+06 2.50747e+06 4353.24 38.53 8.57331 7.65029 67330 654343 -1 33887 19 12170 14450 2208825 490117 0 0 2208825 490117 12725 12249 0 0 101897 89691 0 0 126449 111631 0 0 12732 12294 0 0 979552 131840 0 0 975470 132412 0 0 12725 0 0 572 7945 7934 15501 1812 534 4.52256 4.52256 -4818.74 -4.52256 0 0 3.14081e+06 5452.80 1.48 1.44 0.73 -1 -1 1.48 0.677551 0.608883 2229 2343 931 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_51.v common 39.94 vpr 94.64 MiB 0.27 21468 -1 -1 1 1.57 -1 -1 44516 -1 -1 297 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96916 22 19 7344 6071 1 3815 352 24 24 576 mult_36 auto 57.0 MiB 1.74 27352 94.6 MiB 5.55 0.08 4.16866 -4185.33 -4.16866 4.16866 2.58 0.0159791 0.014308 1.15779 1.00089 74 43261 26 1.58331e+07 9.72992e+06 2.56259e+06 4448.94 18.09 4.73446 4.16919 67906 667765 -1 37598 16 12547 14942 2893172 605463 0 0 2893172 605463 13043 12608 0 0 104251 92219 0 0 129211 114037 0 0 13045 12678 0 0 1328555 182027 0 0 1305067 191894 0 0 13043 0 0 513 8637 9751 15745 1955 530 4.79516 4.79516 -5106.88 -4.79516 0 0 3.19068e+06 5539.38 1.34 1.60 0.80 -1 -1 1.34 0.682617 0.61689 2282 2398 950 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_pipe_52.v common 70.22 vpr 100.57 MiB 0.27 21644 -1 -1 1 1.63 -1 -1 44440 -1 -1 301 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 102984 22 19 7418 6128 1 3860 356 24 24 576 mult_36 auto 57.3 MiB 1.35 30449 94.7 MiB 5.18 0.05 4.29396 -4395.87 -4.29396 4.29396 2.52 0.0115222 0.0101272 1.35118 1.18347 78 45732 30 1.58331e+07 9.78629e+06 2.67122e+06 4637.53 49.63 9.05807 8.00248 69630 706637 -1 39290 17 12969 15224 2492396 517522 0 0 2492396 517522 13573 13060 0 0 100343 87964 0 0 125615 109825 0 0 13575 13121 0 0 1126986 146882 0 0 1112304 146670 0 0 13573 0 0 622 8065 8328 17018 1724 1219 4.64786 4.64786 -5024.68 -4.64786 0 0 3.35110e+06 5817.88 1.49 1.47 0.93 -1 -1 1.49 0.621511 0.557499 2310 2417 969 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_14.v common 16.90 vpr 65.78 MiB 0.06 9116 -1 -1 1 0.16 -1 -1 33996 -1 -1 58 22 0 4 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67360 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 27.3 MiB 1.62 4199 65.8 MiB 0.62 0.01 7.56363 -345.083 -7.56363 7.56363 0.92 0.00198803 0.00170317 0.146899 0.129943 46 8614 36 6.54114e+06 2.40144e+06 723233. 2825.13 10.04 1.25185 1.13223 24832 174915 -1 6763 23 5159 6022 867473 210383 0 0 867473 210383 6022 5375 0 0 48045 44479 0 0 55889 50622 0 0 6130 5460 0 0 379681 52946 0 0 371706 51501 0 0 6022 0 0 882 4187 4189 40118 0 0 7.90214 7.90214 -444.971 -7.90214 0 0 890343. 3477.90 0.35 0.53 0.20 -1 -1 0.35 0.159032 0.147552 421 285 247 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_15.v common 11.46 vpr 66.16 MiB 0.07 9504 -1 -1 1 0.21 -1 -1 34692 -1 -1 61 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67744 22 19 1344 989 1 791 107 16 16 256 mult_36 auto 27.9 MiB 1.30 4448 66.2 MiB 0.59 0.01 7.59857 -338.987 -7.59857 7.59857 0.91 0.00180217 0.00158435 0.14707 0.129162 46 8733 33 6.54114e+06 2.83972e+06 723233. 2825.13 4.71 0.867951 0.788334 24832 174915 -1 6675 22 4390 4914 734731 196941 0 0 734731 196941 4914 4479 0 0 45518 42840 0 0 50533 47037 0 0 4961 4540 0 0 322307 49693 0 0 306498 48352 0 0 4914 0 0 546 2391 2777 29266 0 0 7.56783 7.56783 -468.481 -7.56783 0 0 890343. 3477.90 0.35 0.47 0.20 -1 -1 0.35 0.159809 0.148586 453 304 266 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_16.v common 16.04 vpr 66.20 MiB 0.07 9544 -1 -1 1 0.21 -1 -1 34640 -1 -1 65 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67792 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 27.8 MiB 1.79 4747 66.2 MiB 0.88 0.01 7.22861 -377.81 -7.22861 7.22861 0.91 0.00181577 0.00156238 0.216639 0.189745 48 8905 25 6.54114e+06 2.89609e+06 755748. 2952.14 8.37 1.2612 1.12763 25088 180500 -1 7501 25 6050 6646 1061416 256007 0 0 1061416 256007 6646 6237 0 0 54919 50756 0 0 67208 59895 0 0 6695 6298 0 0 460681 68272 0 0 465267 64549 0 0 6646 0 0 620 3143 3521 36290 0 0 7.73873 7.73873 -480.008 -7.73873 0 0 916467. 3579.95 0.37 0.81 0.28 -1 -1 0.37 0.228257 0.212028 481 323 285 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_17.v common 15.13 vpr 67.22 MiB 0.08 10088 -1 -1 1 0.23 -1 -1 34652 -1 -1 71 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68836 22 19 1518 1112 1 895 117 16 16 256 mult_36 auto 29.0 MiB 1.43 5305 67.2 MiB 1.01 0.01 7.96791 -388.775 -7.96791 7.96791 1.01 0.00285382 0.00251327 0.233064 0.204626 46 10617 43 6.54114e+06 2.98066e+06 723233. 2825.13 7.92 1.15757 1.0413 24832 174915 -1 8136 22 6375 7195 1210202 306640 0 0 1210202 306640 6949 6530 0 0 62187 58334 0 0 70870 64680 0 0 6976 6583 0 0 538329 84807 0 0 524891 85706 0 0 6949 0 0 600 3427 3708 25949 264 12 8.41027 8.41027 -486.017 -8.41027 0 0 890343. 3477.90 0.34 0.67 0.21 -1 -1 0.34 0.164383 0.150663 514 342 304 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_18.v common 17.32 vpr 67.27 MiB 0.09 10180 -1 -1 1 0.24 -1 -1 34748 -1 -1 74 22 0 5 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68888 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 29.1 MiB 2.28 5629 67.3 MiB 0.94 0.02 8.07121 -411.148 -8.07121 8.07121 0.92 0.00295285 0.00257155 0.205864 0.180323 50 10306 28 6.54114e+06 3.02294e+06 787708. 3076.99 8.91 1.48178 1.33147 25344 186282 -1 8386 23 6301 7185 954103 240883 0 0 954103 240883 6811 6398 0 0 55556 50711 0 0 65866 59086 0 0 6816 6439 0 0 413196 60197 0 0 405858 58052 0 0 6811 0 0 536 3669 3584 21584 394 39 8.83428 8.83428 -660.355 -8.83428 0 0 943753. 3686.54 0.34 0.62 0.22 -1 -1 0.34 0.234257 0.2182 542 361 323 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_19.v common 16.69 vpr 67.73 MiB 0.09 10524 -1 -1 1 0.21 -1 -1 35216 -1 -1 79 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69356 22 19 1688 1231 1 993 126 16 16 256 mult_36 auto 29.8 MiB 1.90 6105 67.7 MiB 0.69 0.01 8.17337 -408.351 -8.17337 8.17337 0.92 0.0034072 0.00301146 0.168807 0.149575 52 11550 46 6.54114e+06 3.48941e+06 808720. 3159.06 8.74 1.46137 1.32097 25852 197779 -1 8696 21 6124 6903 1074347 280877 0 0 1074347 280877 6708 6268 0 0 59620 55511 0 0 68915 63119 0 0 6721 6294 0 0 469737 75922 0 0 462646 73763 0 0 6708 0 0 606 3230 3942 27000 253 2 8.38333 8.38333 -552.706 -8.38333 0 0 1.00038e+06 3907.74 0.37 0.73 0.22 -1 -1 0.37 0.223746 0.207306 573 380 342 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_20.v common 14.42 vpr 67.95 MiB 0.09 10632 -1 -1 1 0.27 -1 -1 35216 -1 -1 81 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69580 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 30.0 MiB 1.58 6158 67.9 MiB 1.06 0.03 7.8183 -416.944 -7.8183 7.8183 0.92 0.00343799 0.00303187 0.229624 0.203306 50 12049 28 6.54114e+06 3.51759e+06 787708. 3076.99 7.02 1.19361 1.07317 25344 186282 -1 9359 26 7708 8718 1418550 345173 0 0 1418550 345173 8428 7953 0 0 71577 65873 0 0 84752 76161 0 0 8475 8036 0 0 625992 90686 0 0 619326 96464 0 0 8428 0 0 752 5534 4923 36144 352 1 8.59692 8.59692 -683.011 -8.59692 0 0 943753. 3686.54 0.36 0.66 0.22 -1 -1 0.36 0.217829 0.198553 601 399 361 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_21.v common 15.55 vpr 68.52 MiB 0.11 10804 -1 -1 1 0.30 -1 -1 35644 -1 -1 85 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70160 22 19 1859 1351 1 1092 132 16 16 256 mult_36 auto 30.4 MiB 1.60 6980 68.5 MiB 1.07 0.02 8.05907 -434.522 -8.05907 8.05907 1.02 0.00306387 0.00263533 0.20695 0.182124 52 13660 45 6.54114e+06 3.57397e+06 808720. 3159.06 8.09 1.51104 1.38307 25852 197779 -1 10160 23 6930 7976 1444632 362314 0 0 1444632 362314 7676 7102 0 0 65470 60718 0 0 75811 69039 0 0 7693 7166 0 0 646856 107339 0 0 641126 110950 0 0 7676 0 0 767 3802 4102 27517 351 1 8.56247 8.56247 -594.703 -8.56247 0 0 1.00038e+06 3907.74 0.36 0.67 0.23 -1 -1 0.36 0.210636 0.192502 632 418 380 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_22.v common 19.87 vpr 68.86 MiB 0.11 10864 -1 -1 1 0.31 -1 -1 35504 -1 -1 90 22 0 6 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70516 22 19 1933 1408 1 1130 137 16 16 256 mult_36 auto 30.8 MiB 2.50 7098 68.9 MiB 0.89 0.02 7.98086 -441.507 -7.98086 7.98086 0.87 0.00337982 0.00290635 0.185141 0.162226 54 12969 36 6.54114e+06 3.64444e+06 829453. 3240.05 11.66 1.89181 1.69542 26108 202796 -1 10241 22 6560 7511 1320686 334667 0 0 1320686 334667 7228 6682 0 0 63439 58960 0 0 72252 66362 0 0 7237 6751 0 0 588137 96780 0 0 582393 99132 0 0 7228 0 0 687 3560 3338 22758 402 142 8.47133 8.47133 -702.847 -8.47133 0 0 1.02522e+06 4004.78 0.35 0.62 0.22 -1 -1 0.35 0.190715 0.174887 661 437 399 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_23.v common 18.51 vpr 68.84 MiB 0.09 11364 -1 -1 1 0.29 -1 -1 35588 -1 -1 94 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70496 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 31.0 MiB 2.49 7327 68.8 MiB 1.19 0.02 7.94165 -476.826 -7.94165 7.94165 1.26 0.00337559 0.00289283 0.252635 0.21923 46 16395 49 8.06603e+06 4.09681e+06 948677. 2928.01 8.76 1.48779 1.33521 32096 231720 -1 11525 24 7643 8726 1470927 349533 0 0 1470927 349533 8425 7821 0 0 72067 66802 0 0 82437 75177 0 0 8452 7915 0 0 658872 94954 0 0 640674 96864 0 0 8425 0 0 807 4751 4977 36177 316 1 8.62207 8.62207 -688.219 -8.62207 0 0 1.16833e+06 3605.96 0.46 0.74 0.27 -1 -1 0.46 0.288113 0.262459 693 456 418 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_24.v common 21.19 vpr 69.38 MiB 0.11 11312 -1 -1 1 0.34 -1 -1 35712 -1 -1 97 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71044 22 19 2105 1529 1 1230 145 18 18 324 mult_36 auto 31.4 MiB 1.82 7498 69.4 MiB 1.37 0.02 8.06696 -495.55 -8.06696 8.06696 1.29 0.00405343 0.00357903 0.319638 0.281174 50 14667 40 8.06603e+06 4.13909e+06 1.03391e+06 3191.07 12.44 2.07214 1.85847 32744 246704 -1 11475 21 6905 8143 1309766 304549 0 0 1309766 304549 7737 7138 0 0 65028 59425 0 0 76539 69357 0 0 7788 7235 0 0 579998 79150 0 0 572676 82244 0 0 7737 0 0 855 5598 6077 37674 446 2 8.54152 8.54152 -701.685 -8.54152 0 0 1.23838e+06 3822.15 0.45 0.64 0.24 -1 -1 0.45 0.215647 0.196911 721 475 437 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_25.v common 24.58 vpr 69.98 MiB 0.13 11700 -1 -1 1 0.30 -1 -1 36036 -1 -1 101 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71660 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 32.1 MiB 2.12 7979 70.0 MiB 0.97 0.02 8.31162 -488.996 -8.31162 8.31162 1.19 0.00371001 0.00329605 0.234849 0.206498 54 14170 42 8.06603e+06 4.19547e+06 1.08842e+06 3359.33 15.46 2.41668 2.16919 33712 268580 -1 11399 24 8426 9483 1466240 347645 0 0 1466240 347645 9136 8580 0 0 72540 66851 0 0 84394 76166 0 0 9173 8663 0 0 650583 92669 0 0 640414 94716 0 0 9136 0 0 731 4526 4316 32345 382 1 8.81243 8.81243 -714.04 -8.81243 0 0 1.34436e+06 4149.26 0.38 1.10 0.26 -1 -1 0.38 0.372748 0.344702 751 494 456 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_26.v common 23.60 vpr 70.49 MiB 0.15 11808 -1 -1 1 0.33 -1 -1 36352 -1 -1 105 22 0 7 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72184 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 32.7 MiB 1.96 8151 70.5 MiB 1.33 0.02 8.26141 -557.097 -8.26141 8.26141 1.21 0.00515222 0.00468455 0.320467 0.281284 58 13063 33 8.06603e+06 4.25184e+06 1.14310e+06 3528.09 13.82 2.11796 1.89408 34680 290288 -1 11325 23 6806 7815 1268301 300351 0 0 1268301 300351 7425 6930 0 0 62602 57414 0 0 73246 67348 0 0 7449 6985 0 0 561037 81663 0 0 556542 80011 0 0 7425 0 0 638 4284 5322 31646 400 2 8.53852 8.53852 -732.028 -8.53852 0 0 1.43297e+06 4422.75 0.60 0.72 0.37 -1 -1 0.60 0.289987 0.266732 779 513 475 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_27.v common 24.14 vpr 70.70 MiB 0.15 12024 -1 -1 1 0.37 -1 -1 36264 -1 -1 111 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72396 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 32.8 MiB 2.51 9073 70.7 MiB 1.42 0.02 7.83356 -576.168 -7.83356 7.83356 1.11 0.00430155 0.00377401 0.275473 0.240818 56 16789 38 8.06603e+06 4.73242e+06 1.11497e+06 3441.27 13.82 2.02677 1.8111 34036 275796 -1 13726 22 10227 11689 1907377 439639 0 0 1907377 439639 11143 10460 0 0 93933 85454 0 0 110882 100052 0 0 11166 10566 0 0 842881 118386 0 0 837372 114721 0 0 11143 0 0 943 8545 7956 47657 565 43 8.56673 8.56673 -796.798 -8.56673 0 0 1.37338e+06 4238.83 0.57 0.87 0.34 -1 -1 0.57 0.269027 0.245147 817 532 494 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_28.v common 24.11 vpr 71.08 MiB 0.14 12196 -1 -1 1 0.45 -1 -1 36472 -1 -1 114 22 0 8 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72788 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 33.1 MiB 2.29 9268 71.1 MiB 1.42 0.02 7.83161 -557.515 -7.83161 7.83161 1.20 0.00429928 0.00375738 0.322798 0.284973 54 16905 38 8.06603e+06 4.7747e+06 1.08842e+06 3359.33 14.10 2.22587 1.96263 33712 268580 -1 13212 24 8694 10094 1782098 407050 0 0 1782098 407050 9536 8819 0 0 77751 71945 0 0 92807 83233 0 0 9547 8875 0 0 792202 114173 0 0 800255 120005 0 0 9536 0 0 868 6624 6233 37142 576 1 8.66993 8.66993 -816.798 -8.66993 0 0 1.34436e+06 4149.26 0.56 0.96 0.33 -1 -1 0.56 0.360623 0.332389 845 551 513 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_29.v common 35.80 vpr 71.78 MiB 0.15 12464 -1 -1 1 0.38 -1 -1 36288 -1 -1 118 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73504 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 34.0 MiB 2.12 10821 71.8 MiB 1.90 0.02 7.96791 -544.735 -7.96791 7.96791 1.82 0.00530059 0.00468012 0.43113 0.371291 56 17930 41 1.31202e+07 5.22708e+06 1.71605e+06 3545.56 23.28 3.15892 2.77455 51606 428054 -1 15582 23 10588 11995 2388487 547665 0 0 2388487 547665 11528 10755 0 0 104442 95988 0 0 122776 111387 0 0 11548 10834 0 0 1075284 157147 0 0 1062909 161554 0 0 11528 0 0 967 7020 7500 45911 481 77 8.83012 8.83012 -1015.76 -8.83012 0 0 2.11301e+06 4365.72 0.93 1.12 0.52 -1 -1 0.93 0.310441 0.283414 881 570 532 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_30.v common 38.28 vpr 71.85 MiB 0.19 12560 -1 -1 1 0.45 -1 -1 36804 -1 -1 123 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73572 22 19 2639 1910 1 1548 173 22 22 484 mult_36 auto 34.1 MiB 2.65 10390 71.8 MiB 1.90 0.02 7.95691 -542.487 -7.95691 7.95691 2.12 0.00442258 0.00378659 0.39409 0.343688 52 22435 42 1.31202e+07 5.29755e+06 1.63434e+06 3376.74 24.18 2.96617 2.65344 50638 406276 -1 15864 25 12140 14086 2808137 630444 0 0 2808137 630444 12995 12372 0 0 113170 104667 0 0 133829 120012 0 0 12995 12453 0 0 1278466 187701 0 0 1256682 193239 0 0 12995 0 0 883 5678 6738 17520 1178 95 8.88677 8.88677 -1093.81 -8.88677 0 0 2.01763e+06 4168.66 0.88 1.53 0.50 -1 -1 0.88 0.407254 0.374243 910 589 551 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_31.v common 37.25 vpr 72.62 MiB 0.15 13112 -1 -1 1 0.49 -1 -1 36716 -1 -1 128 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74364 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 34.9 MiB 3.18 11314 72.6 MiB 1.83 0.01 8.19225 -602.916 -8.19225 8.19225 2.01 0.00265336 0.0023025 0.347513 0.303147 54 20376 47 1.31202e+07 5.36802e+06 1.67518e+06 3461.11 22.89 3.08242 2.76671 51122 416746 -1 16311 23 11917 13378 2505333 549393 0 0 2505333 549393 12634 12072 0 0 107283 98814 0 0 123770 111997 0 0 12635 12112 0 0 1136809 155606 0 0 1112202 158792 0 0 12634 0 0 742 5154 4957 16978 770 20 8.86142 8.86142 -955.512 -8.86142 0 0 2.06816e+06 4273.05 0.84 1.18 0.48 -1 -1 0.84 0.32439 0.296385 946 608 570 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_32.v common 75.51 vpr 72.72 MiB 0.17 12756 -1 -1 1 0.50 -1 -1 36892 -1 -1 131 22 0 9 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74468 22 19 2818 2038 1 1656 181 22 22 484 mult_36 auto 35.1 MiB 3.95 11120 72.7 MiB 1.86 0.02 8.19225 -611.518 -8.19225 8.19225 1.92 0.00561232 0.00498043 0.39625 0.347714 50 21307 50 1.31202e+07 5.4103e+06 1.59181e+06 3288.87 61.16 3.79353 3.38758 49674 382800 -1 16483 24 11997 13796 2462768 553683 0 0 2462768 553683 12822 12234 0 0 113180 103999 0 0 134663 120511 0 0 12828 12289 0 0 1090911 150827 0 0 1098364 153823 0 0 12822 0 0 854 5527 5910 17076 1051 281 8.75313 8.75313 -1249.02 -8.75313 0 0 1.90554e+06 3937.06 0.84 1.17 0.30 -1 -1 0.84 0.33256 0.304717 974 627 589 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_33.v common 40.04 vpr 73.43 MiB 0.20 13840 -1 -1 1 0.51 -1 -1 37320 -1 -1 137 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75196 22 19 2923 2109 1 1725 188 22 22 484 mult_36 auto 35.9 MiB 3.28 11560 73.4 MiB 2.05 0.03 8.6217 -605.128 -8.6217 8.6217 2.08 0.00783898 0.00689422 0.472741 0.418879 56 20412 33 1.31202e+07 5.89087e+06 1.71605e+06 3545.56 24.54 3.18781 2.87367 51606 428054 -1 17269 23 14384 16324 3350232 773818 0 0 3350232 773818 15392 14588 0 0 146863 135881 0 0 172268 155644 0 0 15394 14728 0 0 1513797 225237 0 0 1486518 227740 0 0 15392 0 0 1034 6445 6143 21035 1002 12 9.19047 9.19047 -1068.08 -9.19047 0 0 2.11301e+06 4365.72 0.82 1.76 0.50 -1 -1 0.82 0.445581 0.415238 1009 646 608 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_34.v common 29.21 vpr 73.59 MiB 0.32 13600 -1 -1 1 0.51 -1 -1 37888 -1 -1 140 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75356 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 36.0 MiB 5.54 11834 73.6 MiB 1.86 0.02 8.6547 -641.145 -8.6547 8.6547 2.35 0.00399001 0.00342636 0.341412 0.282237 54 21877 33 1.31202e+07 5.93316e+06 1.67518e+06 3461.11 12.14 2.0101 1.79103 51122 416746 -1 17087 25 11125 12732 2229486 518174 0 0 2229486 518174 11892 11286 0 0 106426 98855 0 0 121322 111140 0 0 11895 11334 0 0 1003510 143962 0 0 974441 141597 0 0 11892 0 0 793 4453 5155 15902 895 32 9.47697 9.47697 -1215.91 -9.47697 0 0 2.06816e+06 4273.05 0.96 1.17 0.50 -1 -1 0.96 0.386126 0.353444 1037 665 627 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_35.v common 38.50 vpr 74.30 MiB 0.30 14056 -1 -1 1 0.54 -1 -1 36884 -1 -1 145 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76084 22 19 3101 2236 1 1830 196 22 22 484 mult_36 auto 36.6 MiB 4.54 12141 74.3 MiB 1.96 0.03 8.8192 -651.805 -8.8192 8.8192 1.95 0.00628509 0.00563868 0.450707 0.398322 56 20673 42 1.31202e+07 6.00363e+06 1.71605e+06 3545.56 22.30 3.58219 3.22329 51606 428054 -1 17440 24 12078 14018 2624224 614162 0 0 2624224 614162 13029 12295 0 0 120554 110625 0 0 143759 128905 0 0 13032 12384 0 0 1178406 171594 0 0 1155444 178359 0 0 13029 0 0 977 5964 6012 18464 1048 3 9.71667 9.71667 -1169.4 -9.71667 0 0 2.11301e+06 4365.72 0.97 1.31 0.49 -1 -1 0.97 0.36873 0.336814 1072 684 646 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_36.v common 43.53 vpr 74.64 MiB 0.23 14076 -1 -1 1 0.58 -1 -1 37224 -1 -1 148 22 0 10 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76432 22 19 3175 2293 1 1870 199 22 22 484 mult_36 auto 36.9 MiB 5.86 13227 74.6 MiB 2.75 0.03 8.5294 -676.033 -8.5294 8.5294 2.55 0.00610378 0.00524745 0.506122 0.449274 56 23688 50 1.31202e+07 6.04591e+06 1.71605e+06 3545.56 24.59 3.57485 3.19588 51606 428054 -1 18778 23 13848 15746 2946541 671589 0 0 2946541 671589 14735 14067 0 0 129765 119417 0 0 155827 140136 0 0 14736 14185 0 0 1319477 187813 0 0 1312001 195971 0 0 14735 0 0 914 6124 6069 19832 1060 2 9.75701 9.75701 -1476.69 -9.75701 0 0 2.11301e+06 4365.72 1.05 1.33 0.45 -1 -1 1.05 0.39711 0.362429 1100 703 665 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_37.v common 32.08 vpr 75.01 MiB 0.30 14420 -1 -1 1 0.52 -1 -1 37716 -1 -1 152 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76812 22 19 3280 2364 1 1940 204 24 24 576 mult_36 auto 37.2 MiB 4.94 13543 75.0 MiB 2.57 0.02 8.78194 -780.252 -8.78194 8.78194 2.61 0.00310222 0.00268191 0.587354 0.532468 56 23414 30 1.58331e+07 6.49829e+06 2.03561e+06 3534.04 13.49 2.22884 1.9762 61006 507707 -1 18958 22 11809 13794 2559210 593769 0 0 2559210 593769 12671 12056 0 0 113523 103802 0 0 133945 121612 0 0 12674 12145 0 0 1150638 168930 0 0 1135759 175224 0 0 12671 0 0 893 6630 6548 17636 1179 36 9.64032 9.64032 -1315.55 -9.64032 0 0 2.50747e+06 4353.24 1.07 1.35 0.61 -1 -1 1.07 0.438589 0.401318 1135 722 684 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_38.v common 36.43 vpr 75.52 MiB 0.30 14560 -1 -1 1 0.62 -1 -1 38304 -1 -1 157 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77336 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 37.8 MiB 5.41 13078 75.5 MiB 3.61 0.04 8.86016 -714.943 -8.86016 8.86016 2.73 0.00794483 0.00712449 0.682583 0.597831 54 24765 49 1.58331e+07 6.56876e+06 1.98675e+06 3449.22 15.55 2.70479 2.40657 60430 494267 -1 19061 23 14167 15877 3729238 854991 0 0 3729238 854991 14995 14361 0 0 139758 130654 0 0 159003 144549 0 0 14998 14450 0 0 1695018 270572 0 0 1705466 280405 0 0 14995 0 0 856 4607 4648 19535 946 23 9.44326 9.44326 -1107.13 -9.44326 0 0 2.45377e+06 4260.01 1.12 1.87 0.58 -1 -1 1.12 0.436335 0.398383 1164 741 703 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_39.v common 89.79 vpr 75.90 MiB 0.20 14712 -1 -1 1 0.61 -1 -1 38072 -1 -1 161 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77724 22 19 3457 2490 1 2042 213 24 24 576 mult_36 auto 38.1 MiB 4.74 13744 75.9 MiB 2.73 0.02 8.68095 -856.443 -8.68095 8.68095 2.50 0.00419329 0.00371099 0.632711 0.562309 50 25278 35 1.58331e+07 6.62513e+06 1.88759e+06 3277.06 72.49 4.16782 3.69002 58706 454005 -1 19931 28 14109 16368 2595041 596617 0 0 2595041 596617 15089 14356 0 0 131113 119807 0 0 157154 139623 0 0 15090 14446 0 0 1138166 154679 0 0 1138429 153706 0 0 15089 0 0 1011 7968 7399 21003 1322 237 9.61872 9.61872 -1454 -9.61872 0 0 2.26035e+06 3924.22 0.80 0.84 0.43 -1 -1 0.80 0.278586 0.251107 1198 760 722 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_40.v common 35.59 vpr 76.28 MiB 0.38 14892 -1 -1 1 0.60 -1 -1 38312 -1 -1 164 22 0 11 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78112 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 38.4 MiB 6.55 13938 76.3 MiB 2.16 0.02 8.76111 -788.852 -8.76111 8.76111 2.56 0.00361442 0.00315075 0.441991 0.387463 56 24499 31 1.58331e+07 6.66742e+06 2.03561e+06 3534.04 15.43 2.59602 2.32376 61006 507707 -1 20067 23 13500 15680 2685347 618760 0 0 2685347 618760 14301 13719 0 0 124624 113601 0 0 148810 134224 0 0 14304 13770 0 0 1184942 170416 0 0 1198366 173030 0 0 14301 0 0 831 7518 8097 18578 1424 74 9.45977 9.45977 -1750.04 -9.45977 0 0 2.50747e+06 4353.24 1.17 1.48 0.63 -1 -1 1.17 0.41765 0.381349 1226 779 741 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_41.v common 55.32 vpr 76.64 MiB 0.35 15424 -1 -1 1 0.74 -1 -1 37896 -1 -1 170 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78480 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 39.1 MiB 4.74 15854 76.6 MiB 3.07 0.04 8.80625 -920.006 -8.80625 8.80625 2.52 0.0082107 0.00741346 0.564517 0.495714 58 28154 49 1.58331e+07 7.14798e+06 2.08734e+06 3623.85 35.42 4.47705 4.01515 62154 534210 -1 22290 26 12506 14468 2749189 597555 0 0 2749189 597555 13320 12754 0 0 114926 105043 0 0 134289 122246 0 0 13324 12820 0 0 1234346 174817 0 0 1238984 169875 0 0 13320 0 0 841 6016 7613 17884 1213 29 9.31877 9.31877 -1359.36 -9.31877 0 0 2.61600e+06 4541.67 1.31 1.45 0.70 -1 -1 1.31 0.505268 0.461667 1261 798 760 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_42.v common 37.74 vpr 77.41 MiB 0.27 15192 -1 -1 1 0.63 -1 -1 37596 -1 -1 173 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79268 22 19 3708 2673 1 2186 226 24 24 576 mult_36 auto 39.9 MiB 6.09 15681 77.4 MiB 2.39 0.04 8.79525 -907.06 -8.79525 8.79525 2.53 0.00722336 0.00642319 0.495584 0.437199 58 26192 48 1.58331e+07 7.19026e+06 2.08734e+06 3623.85 17.41 2.69597 2.4101 62154 534210 -1 21609 24 14705 16813 2761390 626440 0 0 2761390 626440 15652 14969 0 0 129477 118285 0 0 155438 139446 0 0 15654 15009 0 0 1222322 172129 0 0 1222847 166602 0 0 15652 0 0 975 6432 7433 21435 1192 3 9.54352 9.54352 -1430.8 -9.54352 0 0 2.61600e+06 4541.67 1.22 1.64 0.61 -1 -1 1.22 0.534927 0.490605 1289 817 779 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_43.v common 48.62 vpr 77.59 MiB 0.39 15428 -1 -1 1 0.82 -1 -1 39028 -1 -1 178 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79456 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 40.0 MiB 6.00 16164 77.6 MiB 2.52 0.04 8.9445 -909.833 -8.9445 8.9445 2.58 0.00709863 0.00631 0.494029 0.438952 58 27044 44 1.58331e+07 7.26073e+06 2.08734e+06 3623.85 27.97 4.30753 3.87147 62154 534210 -1 22173 25 14106 16356 3319452 736936 0 0 3319452 736936 15105 14381 0 0 134447 123592 0 0 159636 143521 0 0 15111 14467 0 0 1505004 218234 0 0 1490149 222741 0 0 15105 0 0 1026 7373 7737 20943 1296 165 9.37367 9.37367 -1454.81 -9.37367 0 0 2.61600e+06 4541.67 1.39 1.68 0.65 -1 -1 1.39 0.538504 0.492318 1323 836 798 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_44.v common 48.88 vpr 78.10 MiB 0.39 15712 -1 -1 1 0.78 -1 -1 38256 -1 -1 181 22 0 12 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79976 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 40.6 MiB 7.14 15940 78.1 MiB 2.42 0.03 8.84631 -887.82 -8.84631 8.84631 2.44 0.00629743 0.0055819 0.534903 0.475208 60 25684 30 1.58331e+07 7.30301e+06 2.13333e+06 3703.69 27.92 4.16908 3.74003 62730 548095 -1 21669 24 13152 14942 2974216 668041 0 0 2974216 668041 14048 13368 0 0 125675 116472 0 0 145411 132886 0 0 14052 13458 0 0 1348281 194320 0 0 1326749 197537 0 0 14048 0 0 922 5805 5338 18911 950 43 9.22651 9.22651 -1379.23 -9.22651 0 0 2.67122e+06 4637.53 1.33 1.48 0.66 -1 -1 1.33 0.517479 0.473873 1351 855 817 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_45.v common 54.84 vpr 77.93 MiB 0.39 16144 -1 -1 1 0.73 -1 -1 40012 -1 -1 186 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79800 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 40.4 MiB 7.00 16859 77.9 MiB 3.64 0.05 8.90724 -916.022 -8.90724 8.90724 3.05 0.00556068 0.00488357 0.584971 0.523154 64 26636 33 1.58331e+07 7.76948e+06 2.26035e+06 3924.22 32.05 4.57331 4.11533 64454 586630 -1 22516 24 12932 14957 2821484 637264 0 0 2821484 637264 13856 13120 0 0 120757 110555 0 0 145713 131223 0 0 13862 13234 0 0 1265211 186433 0 0 1262085 182699 0 0 13856 0 0 946 6614 6822 18965 1163 146 9.28757 9.28757 -1288.1 -9.28757 0 0 2.84938e+06 4946.85 1.36 1.57 0.73 -1 -1 1.36 0.548639 0.498426 1387 874 836 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_46.v common 47.95 vpr 78.27 MiB 0.40 15956 -1 -1 1 0.58 -1 -1 40196 -1 -1 189 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80152 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 40.7 MiB 6.71 17948 78.3 MiB 2.77 0.04 9.40056 -947.004 -9.40056 9.40056 2.42 0.00836849 0.00749336 0.55324 0.486601 62 29925 29 1.58331e+07 7.81177e+06 2.19658e+06 3813.51 26.93 3.79039 3.38923 63306 560109 -1 23881 23 13619 15646 2728571 603400 0 0 2728571 603400 14554 13770 0 0 130598 120232 0 0 148246 136047 0 0 14557 13871 0 0 1219720 161533 0 0 1200896 157947 0 0 14554 0 0 958 6388 6768 19817 1138 45 9.64467 9.64467 -1639.71 -9.64467 0 0 2.72095e+06 4723.87 1.33 1.26 0.69 -1 -1 1.33 0.419874 0.381474 1414 893 855 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_47.v common 37.19 vpr 78.94 MiB 0.40 16416 -1 -1 1 0.82 -1 -1 40340 -1 -1 194 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80836 22 19 4167 2996 1 2465 248 24 24 576 mult_36 auto 41.5 MiB 6.96 17017 78.9 MiB 1.77 0.04 8.9976 -923.78 -8.9976 8.9976 2.27 0.00814735 0.00723142 0.348392 0.303609 60 27718 30 1.58331e+07 7.88224e+06 2.13333e+06 3703.69 16.71 3.11495 2.78603 62730 548095 -1 22925 24 12311 14280 2803242 639509 0 0 2803242 639509 13132 12472 0 0 119084 109707 0 0 135725 125110 0 0 13135 12565 0 0 1263827 188874 0 0 1258339 190781 0 0 13132 0 0 845 5835 6574 17614 1206 11 9.59747 9.59747 -1539.76 -9.59747 0 0 2.67122e+06 4637.53 1.20 1.50 0.68 -1 -1 1.20 0.47716 0.435273 1449 912 874 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_48.v common 48.87 vpr 79.05 MiB 0.41 16472 -1 -1 1 0.84 -1 -1 40288 -1 -1 197 22 0 13 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80952 22 19 4241 3053 1 2504 251 24 24 576 mult_36 auto 41.6 MiB 7.46 17669 79.1 MiB 2.57 0.04 8.9445 -1012.84 -8.9445 8.9445 2.46 0.00714833 0.00620741 0.505926 0.447915 62 28570 31 1.58331e+07 7.92452e+06 2.19658e+06 3813.51 26.83 4.41266 3.94636 63306 560109 -1 23358 23 13503 15334 2364866 545916 0 0 2364866 545916 14401 13620 0 0 126770 116758 0 0 144257 132921 0 0 14405 13682 0 0 1015669 138953 0 0 1049364 129982 0 0 14401 0 0 928 6001 5646 19475 1005 295 8.98402 8.98402 -1596.61 -8.98402 0 0 2.72095e+06 4723.87 1.30 1.39 0.69 -1 -1 1.30 0.562391 0.514409 1477 931 893 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_49.v common 111.09 vpr 79.52 MiB 0.44 16804 -1 -1 1 0.71 -1 -1 40352 -1 -1 204 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81428 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 42.0 MiB 7.76 17642 79.5 MiB 3.87 0.06 9.0698 -922.225 -9.0698 9.0698 3.46 0.0118814 0.0105035 0.865575 0.776964 58 30104 49 1.58331e+07 8.41918e+06 2.08734e+06 3623.85 87.67 6.52272 5.84657 62154 534210 -1 24633 23 15997 18549 3230823 742052 0 0 3230823 742052 17127 16309 0 0 149891 137530 0 0 177092 160750 0 0 17130 16422 0 0 1446894 203670 0 0 1422689 207371 0 0 17127 0 0 1158 7610 8416 23146 1503 347 9.45371 9.45371 -1494.6 -9.45371 0 0 2.61600e+06 4541.67 0.89 0.95 0.45 -1 -1 0.89 0.308422 0.279019 1512 950 912 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_50.v common 46.53 vpr 79.74 MiB 0.41 17048 -1 -1 1 0.82 -1 -1 40528 -1 -1 206 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81656 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 42.2 MiB 8.31 18336 79.7 MiB 3.03 0.04 9.11076 -1017 -9.11076 9.11076 2.46 0.00536296 0.00479337 0.58345 0.513406 60 30405 47 1.58331e+07 8.44736e+06 2.13333e+06 3703.69 22.75 3.54587 3.15784 62730 548095 -1 24968 24 13915 16364 3081808 678920 0 0 3081808 678920 14958 14069 0 0 132013 121163 0 0 151817 139627 0 0 14962 14215 0 0 1369591 193714 0 0 1398467 196132 0 0 14958 0 0 1070 7531 7728 20729 1464 99 9.36567 9.36567 -1641.82 -9.36567 0 0 2.67122e+06 4637.53 1.33 1.61 0.68 -1 -1 1.33 0.562355 0.50941 1541 969 931 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_51.v common 55.50 vpr 80.96 MiB 0.40 17188 -1 -1 1 0.89 -1 -1 40644 -1 -1 211 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82900 22 19 4524 3251 1 2680 266 24 24 576 mult_36 auto 43.5 MiB 7.88 20504 80.9 MiB 3.65 0.05 9.1229 -1058 -9.1229 9.1229 2.40 0.00906733 0.00812677 0.678164 0.596909 64 31638 44 1.58331e+07 8.51783e+06 2.26035e+06 3924.22 31.70 5.49587 4.92773 64454 586630 -1 26919 22 13444 15561 3181973 698261 0 0 3181973 698261 14385 13666 0 0 132429 121724 0 0 153159 140924 0 0 14388 13773 0 0 1442820 201630 0 0 1424792 206544 0 0 14385 0 0 967 6371 7613 19848 1233 24 9.25032 9.25032 -1725.68 -9.25032 0 0 2.84938e+06 4946.85 1.02 1.58 0.71 -1 -1 1.02 0.533633 0.488701 1576 988 950 19 0 0 -k6_frac_uripple_N8_22nm.xml fir_nopipe_52.v common 47.04 vpr 80.57 MiB 0.41 17396 -1 -1 1 0.84 -1 -1 39112 -1 -1 215 22 0 14 success v8.0.0-7451-g4adf6aecc release IPO VTR_ASSERT_LEVEL=3 GNU 7.5.0 on Linux-4.15.0-197-generic x86_64 2023-04-04T13:43:47 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82504 22 19 4598 3308 1 2717 270 24 24 576 mult_36 auto 43.3 MiB 8.80 18601 80.6 MiB 2.76 0.05 8.97446 -1039.07 -8.97446 8.97446 2.48 0.00893596 0.00789895 0.542862 0.477777 58 30901 47 1.58331e+07 8.57421e+06 2.08734e+06 3623.85 23.11 3.50886 3.13792 62154 534210 -1 25023 22 15497 18202 3107801 718145 0 0 3107801 718145 16629 15784 0 0 144659 132774 0 0 172787 156216 0 0 16630 15843 0 0 1375153 200132 0 0 1381943 197396 0 0 16629 0 0 1158 9120 9013 22467 1695 469 9.59137 9.59137 -1943.03 -9.59137 0 0 2.61600e+06 4541.67 1.35 1.61 0.65 -1 -1 1.35 0.548137 0.49794 1605 1007 969 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_14.v common 8.70 vpr 62.34 MiB 0.07 10340 -1 -1 1 0.27 -1 -1 35584 -1 -1 65 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63832 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 24.6 MiB 0.85 5366 62.3 MiB 0.20 0.00 3.77076 -1035.59 -3.77076 3.77076 0.51 0.00118173 0.00101864 0.0863581 0.0750971 58 11364 32 6.59459e+06 2.52492e+06 871168. 3403.00 4.38 0.508525 0.447393 26872 219187 -1 9253 19 4459 5017 908425 202125 0 0 908425 202125 4792 4531 0 0 38601 35201 0 0 49456 42088 0 0 4829 4563 0 0 404690 57597 0 0 406057 58145 0 0 4792 0 0 352 2010 2688 17233 236 1 4.27196 4.27196 -1275.82 -4.27196 0 0 1.09288e+06 4269.05 0.26 0.19 0.12 -1 -1 0.26 0.0772451 0.0704118 481 649 247 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_15.v common 8.35 vpr 63.32 MiB 0.08 10668 -1 -1 1 0.29 -1 -1 35900 -1 -1 72 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64840 22 19 2144 1789 1 1110 118 16 16 256 mult_36 auto 25.7 MiB 1.20 6094 63.3 MiB 0.40 0.01 4.02136 -1124.61 -4.02136 4.02136 0.81 0.00234334 0.00201755 0.187266 0.163983 66 11727 27 6.59459e+06 3.02225e+06 974584. 3806.97 2.91 0.655891 0.577177 28148 247068 -1 9508 16 4298 4938 816397 184971 0 0 816397 184971 4747 4382 0 0 36647 33388 0 0 47748 40533 0 0 4809 4453 0 0 360948 51908 0 0 361498 50307 0 0 4747 0 0 467 3664 3729 30254 222 8 4.39726 4.39726 -1333.61 -4.39726 0 0 1.22072e+06 4768.46 0.29 0.19 0.14 -1 -1 0.29 0.0801623 0.0737239 521 704 266 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_16.v common 10.68 vpr 63.80 MiB 0.08 10920 -1 -1 1 0.30 -1 -1 35876 -1 -1 74 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65328 22 19 2218 1846 1 1154 120 16 16 256 mult_36 auto 26.0 MiB 1.13 6705 63.8 MiB 0.46 0.01 3.89606 -1175.83 -3.89606 3.89606 0.82 0.00281022 0.00248949 0.219632 0.194431 60 13554 39 6.59459e+06 3.0512e+06 890343. 3477.90 5.12 0.784729 0.692885 27128 224764 -1 10853 27 5146 5941 1128590 279945 0 0 1128590 279945 5591 5188 0 0 43361 39471 0 0 57990 47922 0 0 5593 5212 0 0 503103 93557 0 0 512952 88595 0 0 5591 0 0 464 4094 3407 28507 369 1 4.39726 4.39726 -1456.06 -4.39726 0 0 1.11577e+06 4358.47 0.26 0.25 0.12 -1 -1 0.26 0.0999662 0.0896967 540 723 285 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_17.v common 24.33 vpr 65.39 MiB 0.09 11548 -1 -1 1 0.28 -1 -1 36680 -1 -1 83 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66960 22 19 2536 2130 1 1256 129 16 16 256 mult_36 auto 27.8 MiB 1.42 7097 65.4 MiB 0.22 0.00 3.89606 -1305 -3.89606 3.89606 0.54 0.00158169 0.00135863 0.0980906 0.0849951 60 14394 49 6.59459e+06 3.18149e+06 890343. 3477.90 19.11 1.30428 1.1454 27128 224764 -1 10987 20 5114 5751 1061070 247019 0 0 1061070 247019 5479 5152 0 0 44278 40525 0 0 56633 48178 0 0 5494 5187 0 0 475183 73041 0 0 474003 74936 0 0 5479 0 0 382 2541 2537 19410 295 199 4.52256 4.52256 -1546.95 -4.52256 0 0 1.11577e+06 4358.47 0.26 0.22 0.12 -1 -1 0.26 0.0927547 0.0841089 617 851 304 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_18.v common 9.33 vpr 65.59 MiB 0.10 11704 -1 -1 1 0.39 -1 -1 36556 -1 -1 86 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67160 22 19 2610 2187 1 1305 132 16 16 256 mult_36 auto 28.2 MiB 1.32 7245 65.6 MiB 0.25 0.00 3.89606 -1380.69 -3.89606 3.89606 0.51 0.00139503 0.0011771 0.10459 0.0899395 64 14771 30 6.59459e+06 3.22491e+06 943753. 3686.54 4.01 0.668079 0.584308 27892 240595 -1 11408 18 5181 5899 1055496 237831 0 0 1055496 237831 5620 5299 0 0 44452 40248 0 0 58814 49667 0 0 5693 5387 0 0 474135 68095 0 0 466782 69135 0 0 5620 0 0 456 3909 3538 26086 292 14 4.39726 4.39726 -1612.74 -4.39726 0 0 1.19033e+06 4649.74 0.29 0.24 0.14 -1 -1 0.29 0.102864 0.0939483 636 870 323 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_19.v common 9.83 vpr 66.71 MiB 0.07 12172 -1 -1 1 0.40 -1 -1 36760 -1 -1 91 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68316 22 19 2778 2321 1 1401 138 16 16 256 mult_36 auto 29.4 MiB 1.25 8014 66.7 MiB 0.39 0.01 4.02136 -1450.91 -4.02136 4.02136 0.82 0.00442055 0.00398005 0.192024 0.170961 70 14162 31 6.59459e+06 3.69329e+06 1.02522e+06 4004.78 3.90 1.04227 0.929638 28912 262511 -1 11956 15 5075 5923 934815 218802 0 0 934815 218802 5373 5115 0 0 44130 39792 0 0 57374 48410 0 0 5384 5163 0 0 410271 60288 0 0 412283 60034 0 0 5373 0 0 315 3086 2625 6489 645 193 4.27196 4.27196 -1778.69 -4.27196 0 0 1.29210e+06 5047.26 0.31 0.23 0.15 -1 -1 0.31 0.104715 0.0960002 676 925 342 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_20.v common 25.61 vpr 66.89 MiB 0.11 12344 -1 -1 1 0.43 -1 -1 37264 -1 -1 93 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68496 22 19 2852 2378 1 1441 140 16 16 256 mult_36 auto 29.5 MiB 1.42 7863 66.9 MiB 0.31 0.00 4.02136 -1481.38 -4.02136 4.02136 0.51 0.00176202 0.00152253 0.126835 0.110021 68 15461 48 6.59459e+06 3.72224e+06 1.00038e+06 3907.74 20.34 1.42311 1.23019 28404 252462 -1 12105 16 5470 6222 903151 209474 0 0 903151 209474 5779 5526 0 0 43246 39043 0 0 57251 47728 0 0 5781 5567 0 0 398716 56058 0 0 392378 55552 0 0 5779 0 0 324 2538 2284 7267 475 16 4.52256 4.52256 -1772.48 -4.52256 0 0 1.24648e+06 4869.04 0.29 0.19 0.14 -1 -1 0.29 0.0913293 0.0833791 695 944 361 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_21.v common 12.46 vpr 68.04 MiB 0.11 12580 -1 -1 1 0.31 -1 -1 37088 -1 -1 97 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69672 22 19 3057 2549 1 1544 144 16 16 256 mult_36 auto 30.7 MiB 1.66 8892 68.0 MiB 0.59 0.01 4.02136 -1636.32 -4.02136 4.02136 0.84 0.00473468 0.00420038 0.305608 0.273962 70 16111 48 6.59459e+06 3.78015e+06 1.02522e+06 4004.78 5.90 1.3596 1.203 28912 262511 -1 13171 19 5821 6948 1092361 257777 0 0 1092361 257777 6165 5857 0 0 51617 46407 0 0 67414 56422 0 0 6175 5900 0 0 480563 71067 0 0 480427 72124 0 0 6165 0 0 359 3917 3495 7714 858 89 4.27196 4.27196 -2018.68 -4.27196 0 0 1.29210e+06 5047.26 0.30 0.28 0.15 -1 -1 0.30 0.130338 0.118414 742 1017 380 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_22.v common 12.22 vpr 68.45 MiB 0.12 12820 -1 -1 1 0.46 -1 -1 37416 -1 -1 100 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70092 22 19 3131 2606 1 1587 147 16 16 256 mult_36 auto 31.1 MiB 1.20 9428 68.4 MiB 0.37 0.00 3.89606 -1628.34 -3.89606 3.89606 0.52 0.00209843 0.00180043 0.158569 0.137256 70 17539 45 6.59459e+06 3.82357e+06 1.02522e+06 4004.78 6.74 1.79546 1.59745 28912 262511 -1 13830 19 6233 7200 1204425 275278 0 0 1204425 275278 6609 6284 0 0 51936 46789 0 0 69069 57019 0 0 6616 6328 0 0 537452 78465 0 0 532743 80393 0 0 6609 0 0 392 2981 3612 8325 671 115 4.27196 4.27196 -1941.46 -4.27196 0 0 1.29210e+06 5047.26 0.30 0.29 0.15 -1 -1 0.30 0.13052 0.118675 762 1036 399 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_23.v common 13.29 vpr 69.22 MiB 0.08 13136 -1 -1 1 0.51 -1 -1 37352 -1 -1 107 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70884 22 19 3301 2742 1 1685 155 18 18 324 mult_36 auto 31.9 MiB 1.16 9566 69.2 MiB 0.60 0.01 4.27196 -1725.13 -4.27196 4.27196 1.17 0.00266332 0.00234275 0.297545 0.266416 68 18355 50 8.13932e+06 4.3209e+06 1.31159e+06 4048.11 5.84 1.24303 1.10136 36620 334356 -1 14765 19 6833 7654 1360627 293484 0 0 1360627 293484 7192 6865 0 0 53626 48955 0 0 72098 59905 0 0 7194 6929 0 0 617969 83300 0 0 602548 87530 0 0 7192 0 0 378 2772 2733 9171 499 2 4.27196 4.27196 -1996.38 -4.27196 0 0 1.63345e+06 5041.52 0.43 0.37 0.27 -1 -1 0.43 0.163177 0.149198 802 1091 418 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_24.v common 15.15 vpr 69.38 MiB 0.12 13308 -1 -1 1 0.53 -1 -1 37136 -1 -1 109 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71048 22 19 3375 2799 1 1732 157 18 18 324 mult_36 auto 32.3 MiB 1.02 10421 69.4 MiB 0.83 0.01 3.89606 -1763.04 -3.89606 3.89606 1.18 0.00491894 0.00437031 0.405791 0.361921 74 18744 26 8.13932e+06 4.34985e+06 1.40368e+06 4332.34 6.91 1.73936 1.55449 37912 362744 -1 15993 18 6776 7852 1424420 297324 0 0 1424420 297324 7107 6821 0 0 51479 46272 0 0 70270 57204 0 0 7115 6877 0 0 638763 88363 0 0 649686 91787 0 0 7107 0 0 347 3708 3389 8728 809 43 4.52256 4.52256 -2111.67 -4.52256 0 0 1.74764e+06 5393.95 0.58 0.56 0.25 -1 -1 0.58 0.244379 0.221883 821 1110 437 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_25.v common 13.96 vpr 70.59 MiB 0.14 13784 -1 -1 1 0.51 -1 -1 37860 -1 -1 116 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72284 22 19 3615 3005 1 1836 164 18 18 324 mult_36 auto 33.5 MiB 1.27 11333 70.6 MiB 0.91 0.01 4.27196 -1928.99 -4.27196 4.27196 1.22 0.00500972 0.00446832 0.443673 0.395843 74 20910 30 8.13932e+06 4.45118e+06 1.40368e+06 4332.34 5.04 1.24696 1.09918 37912 362744 -1 17170 16 7421 8502 1559887 323698 0 0 1559887 323698 7758 7457 0 0 58047 52650 0 0 79191 65020 0 0 7760 7505 0 0 700747 96223 0 0 706384 94843 0 0 7758 0 0 356 3470 3556 9389 796 16 4.52256 4.52256 -2368.73 -4.52256 0 0 1.74764e+06 5393.95 0.73 0.68 0.34 -1 -1 0.73 0.32929 0.301269 877 1201 456 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_26.v common 13.88 vpr 70.98 MiB 0.14 13916 -1 -1 1 0.55 -1 -1 37552 -1 -1 118 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72688 22 19 3689 3062 1 1874 166 18 18 324 mult_36 auto 33.8 MiB 1.39 10423 71.0 MiB 0.84 0.01 3.89606 -1897.14 -3.89606 3.89606 1.17 0.00587691 0.00535171 0.416944 0.375238 66 21667 39 8.13932e+06 4.48013e+06 1.27759e+06 3943.17 5.96 1.40663 1.24499 36296 327148 -1 16303 18 7570 9196 1446521 333154 0 0 1446521 333154 8014 7623 0 0 66461 60119 0 0 87283 73438 0 0 8024 7706 0 0 624330 92831 0 0 652409 91437 0 0 8014 0 0 462 6239 5782 9747 1312 246 4.27196 4.27196 -2378.18 -4.27196 0 0 1.59950e+06 4936.74 0.43 0.37 0.19 -1 -1 0.43 0.165423 0.150378 896 1220 475 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_27.v common 17.51 vpr 72.41 MiB 0.14 14272 -1 -1 1 0.58 -1 -1 38160 -1 -1 126 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74152 22 19 3871 3210 1 1982 175 18 18 324 mult_36 auto 35.3 MiB 1.64 12196 72.4 MiB 0.95 0.01 4.14666 -2025.63 -4.14666 4.14666 1.19 0.00573308 0.00510524 0.470913 0.421693 74 21829 44 8.13932e+06 4.99193e+06 1.40368e+06 4332.34 8.36 2.70695 2.4178 37912 362744 -1 18397 17 7675 8924 1605694 341211 0 0 1605694 341211 8122 7769 0 0 60429 54263 0 0 83214 67279 0 0 8128 7824 0 0 718586 100785 0 0 727215 103291 0 0 8122 0 0 464 3582 4665 10131 901 213 4.39726 4.39726 -2635.62 -4.39726 0 0 1.74764e+06 5393.95 0.75 0.49 0.34 -1 -1 0.75 0.200263 0.182418 944 1275 494 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_28.v common 15.36 vpr 72.82 MiB 0.12 14300 -1 -1 1 0.64 -1 -1 37848 -1 -1 128 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74568 22 19 3945 3267 1 2025 177 18 18 324 mult_36 auto 35.8 MiB 1.24 11387 72.8 MiB 0.52 0.01 3.89606 -2106.62 -3.89606 3.89606 0.73 0.00282649 0.00246893 0.227954 0.199768 70 21909 34 8.13932e+06 5.02088e+06 1.34436e+06 4149.26 7.56 1.82207 1.61641 37264 347768 -1 17347 20 8059 9105 1589950 349497 0 0 1589950 349497 8460 8103 0 0 67506 61027 0 0 90417 74269 0 0 8468 8156 0 0 700140 99517 0 0 714959 98425 0 0 8460 0 0 415 3249 3170 10380 695 10 4.27196 4.27196 -2559.57 -4.27196 0 0 1.69344e+06 5226.66 0.70 0.78 0.33 -1 -1 0.70 0.422314 0.385062 962 1294 513 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_29.v common 17.12 vpr 73.93 MiB 0.16 14836 -1 -1 1 0.63 -1 -1 38760 -1 -1 135 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75700 22 19 4159 3447 1 2141 185 22 22 484 mult_36 auto 36.9 MiB 1.69 13290 73.9 MiB 0.58 0.01 3.89606 -2170.33 -3.89606 3.89606 1.23 0.00292538 0.00254888 0.250728 0.218729 68 24792 49 1.32347e+07 5.5182e+06 2.01763e+06 4168.66 7.82 1.30778 1.1422 55470 518816 -1 19720 18 8392 9799 1675281 361152 0 0 1675281 361152 8804 8442 0 0 68743 62007 0 0 90599 75051 0 0 8815 8524 0 0 744439 104474 0 0 753881 102654 0 0 8804 0 0 430 4061 5106 10797 1043 316 4.27196 4.27196 -2629.7 -4.27196 0 0 2.51205e+06 5190.18 0.89 0.43 0.46 -1 -1 0.89 0.185262 0.168315 1015 1367 532 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_30.v common 17.07 vpr 74.04 MiB 0.15 15020 -1 -1 1 0.69 -1 -1 40340 -1 -1 137 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75820 22 19 4233 3504 1 2181 187 22 22 484 mult_36 auto 37.2 MiB 1.17 13678 74.0 MiB 0.56 0.01 3.77076 -2179.16 -3.77076 3.77076 1.95 0.00292491 0.00254455 0.248585 0.217592 68 24441 26 1.32347e+07 5.54715e+06 2.01763e+06 4168.66 6.47 1.24341 1.09132 55470 518816 -1 20282 29 8720 10247 1924971 455022 0 0 1924971 455022 9214 8833 0 0 72027 65113 0 0 96056 79865 0 0 9214 8897 0 0 867771 146049 0 0 870689 146265 0 0 9214 0 0 511 4309 5473 11913 1057 28 4.52256 4.52256 -2745.67 -4.52256 0 0 2.51205e+06 5190.18 1.00 0.57 0.49 -1 -1 1.00 0.259327 0.23256 1034 1386 551 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_31.v common 20.14 vpr 75.59 MiB 0.16 15324 -1 -1 1 0.70 -1 -1 40372 -1 -1 143 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77408 22 19 4410 3647 1 2284 193 22 22 484 mult_36 auto 37.9 MiB 1.71 13644 75.6 MiB 0.65 0.01 3.89606 -2272.68 -3.89606 3.89606 1.27 0.00331683 0.00290517 0.290988 0.254762 68 24967 24 1.32347e+07 5.63401e+06 2.01763e+06 4168.66 10.39 2.43574 2.16818 55470 518816 -1 20507 15 8680 9906 1641219 347698 0 0 1641219 347698 9059 8740 0 0 68299 61477 0 0 89391 75028 0 0 9059 8778 0 0 741685 94229 0 0 723726 99446 0 0 9059 0 0 396 4207 4323 11271 869 485 4.52256 4.52256 -2774.15 -4.52256 0 0 2.51205e+06 5190.18 0.80 0.61 0.42 -1 -1 0.80 0.249974 0.228334 1077 1441 570 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_32.v common 23.20 vpr 75.56 MiB 0.16 15588 -1 -1 1 0.69 -1 -1 40564 -1 -1 145 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77372 22 19 4484 3704 1 2331 195 22 22 484 mult_36 auto 38.5 MiB 1.57 14654 75.6 MiB 1.04 0.01 3.89606 -2316.3 -3.89606 3.89606 2.00 0.00605082 0.00541533 0.479783 0.427685 72 28562 39 1.32347e+07 5.66296e+06 2.11301e+06 4365.72 11.16 2.30889 2.05151 56918 551676 -1 22650 33 9999 11462 2668350 634634 0 0 2668350 634634 10555 10103 0 0 82321 75042 0 0 114004 93521 0 0 10567 10161 0 0 1221536 229642 0 0 1229367 216165 0 0 10555 0 0 574 4474 4504 13473 962 66 4.27196 4.27196 -2971.2 -4.27196 0 0 2.64603e+06 5467.00 0.95 1.12 0.38 -1 -1 0.95 0.448494 0.401269 1096 1460 589 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_33.v common 26.79 vpr 77.79 MiB 0.18 16632 -1 -1 1 0.75 -1 -1 40816 -1 -1 157 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79660 22 19 4843 4029 1 2441 208 22 22 484 mult_36 auto 40.3 MiB 2.24 15149 77.8 MiB 1.11 0.02 3.89606 -2514.82 -3.89606 3.89606 1.98 0.00821891 0.00746621 0.56532 0.511319 70 27473 34 1.32347e+07 6.23266e+06 2.06816e+06 4273.05 13.81 2.9891 2.67505 56434 539830 -1 22742 17 9309 10921 1929493 403263 0 0 1929493 403263 9835 9388 0 0 76592 68466 0 0 102783 84530 0 0 9837 9420 0 0 857903 115136 0 0 872543 116323 0 0 9835 0 0 548 4882 5177 12570 1141 364 4.52256 4.52256 -3117.17 -4.52256 0 0 2.60483e+06 5381.88 1.14 0.78 0.52 -1 -1 1.14 0.343925 0.31338 1185 1606 608 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_34.v common 19.19 vpr 77.30 MiB 0.18 16728 -1 -1 1 0.60 -1 -1 40692 -1 -1 160 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79160 22 19 4917 4086 1 2486 211 22 22 484 mult_36 auto 40.7 MiB 1.49 14895 77.3 MiB 0.67 0.01 3.89606 -2490.39 -3.89606 3.89606 1.25 0.00373242 0.00326679 0.288213 0.252272 68 29022 29 1.32347e+07 6.27609e+06 2.01763e+06 4168.66 8.71 1.80776 1.59027 55470 518816 -1 22687 18 10037 11831 1942787 418529 0 0 1942787 418529 10646 10115 0 0 84086 76239 0 0 108364 91507 0 0 10651 10168 0 0 851791 116006 0 0 877249 114494 0 0 10646 0 0 626 5616 6203 13540 1273 88 4.27196 4.27196 -3134.39 -4.27196 0 0 2.51205e+06 5190.18 1.15 0.90 0.52 -1 -1 1.15 0.467237 0.428978 1205 1625 627 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_35.v common 20.56 vpr 78.80 MiB 0.15 17048 -1 -1 1 0.58 -1 -1 41380 -1 -1 163 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80692 22 19 5093 4228 1 2588 214 22 22 484 mult_36 auto 42.0 MiB 1.49 16010 78.8 MiB 1.28 0.02 3.89606 -2614.77 -3.89606 3.89606 1.99 0.00769372 0.00693568 0.633581 0.570187 74 29369 42 1.32347e+07 6.31951e+06 2.15943e+06 4461.62 9.11 2.36612 2.09925 57402 562966 -1 24189 18 10463 12068 2602636 540131 0 0 2602636 540131 10989 10545 0 0 89037 81172 0 0 119280 98652 0 0 10994 10609 0 0 1180049 165865 0 0 1192287 173288 0 0 10989 0 0 544 5541 4981 13654 1136 153 4.39726 4.39726 -3393.35 -4.39726 0 0 2.68771e+06 5553.12 1.07 0.76 0.52 -1 -1 1.07 0.282126 0.256384 1248 1680 646 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_36.v common 26.03 vpr 78.62 MiB 0.20 17092 -1 -1 1 0.97 -1 -1 41204 -1 -1 165 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80508 22 19 5167 4285 1 2632 216 22 22 484 mult_36 auto 42.1 MiB 2.04 16595 78.6 MiB 1.28 0.02 3.89606 -2653.33 -3.89606 3.89606 1.40 0.00791791 0.00715438 0.601636 0.539244 76 29465 42 1.32347e+07 6.34846e+06 2.20457e+06 4554.90 13.15 2.98433 2.65122 57882 574062 -1 24499 18 10245 11944 2157165 449545 0 0 2157165 449545 10808 10315 0 0 82303 74580 0 0 111989 91399 0 0 10811 10359 0 0 962376 131371 0 0 978878 131521 0 0 10808 0 0 578 5324 5961 13813 1195 584 4.39726 4.39726 -3315.87 -4.39726 0 0 2.73077e+06 5642.09 1.26 0.98 0.57 -1 -1 1.26 0.497513 0.452342 1267 1699 665 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_37.v common 23.97 vpr 80.12 MiB 0.21 17400 -1 -1 1 0.95 -1 -1 40068 -1 -1 173 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82044 22 19 5380 4464 1 2743 225 24 24 576 mult_36 auto 43.6 MiB 1.71 17747 80.1 MiB 0.80 0.01 4.14666 -2916.96 -4.14666 4.14666 2.42 0.00420034 0.00369306 0.358739 0.315519 74 31381 35 1.59675e+07 6.86027e+06 2.56259e+06 4448.94 10.81 2.59382 2.3073 67906 667765 -1 26084 18 10424 12045 2131286 448303 0 0 2131286 448303 10980 10516 0 0 79717 71642 0 0 108325 88903 0 0 10985 10575 0 0 959779 132756 0 0 961500 133911 0 0 10980 0 0 573 5605 6009 13868 1144 250 4.64786 4.64786 -3495.37 -4.64786 0 0 3.19068e+06 5539.38 1.03 0.58 0.56 -1 -1 1.03 0.257243 0.232784 1321 1772 684 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_38.v common 30.90 vpr 80.10 MiB 0.14 17804 -1 -1 1 0.89 -1 -1 41788 -1 -1 176 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82020 22 19 5454 4521 1 2787 228 24 24 576 mult_36 auto 43.8 MiB 2.29 17903 80.1 MiB 1.48 0.02 4.02136 -2982.57 -4.02136 4.02136 2.42 0.00859569 0.00769322 0.687743 0.612357 74 33607 45 1.59675e+07 6.90369e+06 2.56259e+06 4448.94 16.41 3.4369 3.07188 67906 667765 -1 26662 17 10693 12555 2408488 498648 0 0 2408488 498648 11317 10763 0 0 85278 76921 0 0 115093 94812 0 0 11317 10828 0 0 1093519 150303 0 0 1091964 155021 0 0 11317 0 0 644 6044 6580 14908 1275 380 4.52256 4.52256 -3668.38 -4.52256 0 0 3.19068e+06 5539.38 0.96 0.57 0.54 -1 -1 0.96 0.233256 0.211311 1340 1791 703 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_39.v common 79.55 vpr 80.91 MiB 0.14 17984 -1 -1 1 1.06 -1 -1 40600 -1 -1 180 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82852 22 19 5629 4662 1 2884 232 24 24 576 mult_36 auto 44.4 MiB 2.10 19446 80.9 MiB 0.85 0.01 4.14666 -3053.8 -4.14666 4.14666 1.66 0.00410219 0.00357999 0.365036 0.320327 70 36575 44 1.59675e+07 6.9616e+06 2.45377e+06 4260.01 68.37 2.93924 2.52939 66754 640332 -1 28816 16 11518 13242 2571498 527649 0 0 2571498 527649 12180 11666 0 0 95194 85500 0 0 125389 104324 0 0 12183 11770 0 0 1169366 153738 0 0 1157186 160651 0 0 12180 0 0 681 5650 6215 16146 1095 23 4.52256 4.52256 -3715.24 -4.52256 0 0 3.09179e+06 5367.68 0.75 0.46 0.35 -1 -1 0.75 0.178372 0.161313 1381 1846 722 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_40.v common 28.09 vpr 81.57 MiB 0.22 18152 -1 -1 1 0.80 -1 -1 42092 -1 -1 182 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83532 22 19 5703 4719 1 2932 234 24 24 576 mult_36 auto 45.3 MiB 2.17 19863 81.6 MiB 0.88 0.01 4.14666 -3075.56 -4.14666 4.14666 1.61 0.00450107 0.00396245 0.377503 0.331437 76 35388 42 1.59675e+07 6.99055e+06 2.61600e+06 4541.67 14.88 2.96237 2.61434 68478 680951 -1 28413 19 11615 13403 2758841 567891 0 0 2758841 567891 12257 11728 0 0 91167 82564 0 0 122781 101065 0 0 12257 11781 0 0 1255327 177559 0 0 1265052 183194 0 0 12257 0 0 661 5606 6422 15860 1199 279 4.52256 4.52256 -3677.42 -4.52256 0 0 3.24203e+06 5628.53 1.04 0.70 0.61 -1 -1 1.04 0.292266 0.264382 1400 1865 741 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_41.v common 27.83 vpr 82.50 MiB 0.22 18728 -1 -1 1 1.13 -1 -1 41000 -1 -1 190 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84476 22 19 5950 4932 1 3040 243 24 24 576 mult_36 auto 46.1 MiB 2.76 19463 82.5 MiB 1.70 0.02 4.14666 -3316.72 -4.14666 4.14666 2.42 0.00957511 0.00872752 0.8112 0.723507 74 33639 48 1.59675e+07 7.50235e+06 2.56259e+06 4448.94 12.10 3.80441 3.38473 67906 667765 -1 28278 16 11118 12938 2279496 476502 0 0 2279496 476502 11663 11216 0 0 85389 76686 0 0 119240 96073 0 0 11666 11271 0 0 1022802 141151 0 0 1028736 140105 0 0 11663 0 0 563 5458 6488 14568 1322 275 4.64786 4.64786 -4001.67 -4.64786 0 0 3.19068e+06 5539.38 1.55 1.03 0.68 -1 -1 1.55 0.500026 0.456112 1461 1956 760 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_42.v common 27.03 vpr 83.02 MiB 0.24 19104 -1 -1 1 1.05 -1 -1 42512 -1 -1 193 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85008 22 19 6024 4989 1 3083 246 24 24 576 mult_36 auto 46.5 MiB 2.12 21094 83.0 MiB 1.04 0.01 4.02136 -3285.13 -4.02136 4.02136 1.50 0.00477884 0.00421376 0.442086 0.3868 80 33456 26 1.59675e+07 7.54578e+06 2.72095e+06 4723.87 14.66 3.31712 2.92142 70206 720185 -1 29687 15 11411 13172 2339146 482941 0 0 2339146 482941 12094 11513 0 0 89209 80221 0 0 121603 99001 0 0 12098 11614 0 0 1051644 141297 0 0 1052498 139295 0 0 12094 0 0 704 5314 6276 16097 1113 30 4.52256 4.52256 -3918.64 -4.52256 0 0 3.41546e+06 5929.62 1.05 0.57 0.43 -1 -1 1.05 0.248255 0.225794 1480 1975 779 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_43.v common 32.63 vpr 83.68 MiB 0.24 19244 -1 -1 1 0.77 -1 -1 42720 -1 -1 199 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85688 22 19 6198 5129 1 3182 252 24 24 576 mult_36 auto 47.5 MiB 2.23 21170 83.7 MiB 1.59 0.02 4.27196 -3455.47 -4.27196 4.27196 2.42 0.00830071 0.00733401 0.761847 0.684666 74 38262 40 1.59675e+07 7.63263e+06 2.56259e+06 4448.94 17.95 3.47548 3.09256 67906 667765 -1 30941 16 12293 14565 2833699 576261 0 0 2833699 576261 12953 12382 0 0 94424 84636 0 0 129893 105513 0 0 12966 12465 0 0 1295181 178531 0 0 1288282 182734 0 0 12953 0 0 680 7874 8084 16612 1681 656 4.77316 4.77316 -4176.13 -4.77316 0 0 3.19068e+06 5539.38 1.17 0.65 0.62 -1 -1 1.17 0.268801 0.244641 1523 2030 798 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_44.v common 32.96 vpr 84.57 MiB 0.26 19412 -1 -1 1 1.25 -1 -1 42980 -1 -1 200 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86604 22 19 6272 5186 1 3228 253 24 24 576 mult_36 auto 48.2 MiB 2.21 21298 84.6 MiB 1.05 0.01 4.02136 -3400.38 -4.02136 4.02136 2.40 0.00508965 0.00448792 0.444617 0.392737 78 35898 40 1.59675e+07 7.64711e+06 2.67122e+06 4637.53 19.02 2.99897 2.62676 69630 706637 -1 30241 18 12039 14055 2610256 537086 0 0 2610256 537086 12682 12105 0 0 98242 88394 0 0 130115 108326 0 0 12683 12172 0 0 1177325 157147 0 0 1179209 158942 0 0 12682 0 0 663 6425 7490 16294 1424 280 4.52256 4.52256 -4077.55 -4.52256 0 0 3.35110e+06 5817.88 1.01 0.65 0.43 -1 -1 1.01 0.288122 0.260255 1542 2049 817 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_45.v common 38.09 vpr 85.25 MiB 0.20 19784 -1 -1 1 1.34 -1 -1 43168 -1 -1 208 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87300 22 19 6485 5365 1 3341 262 24 24 576 mult_36 auto 49.3 MiB 1.96 22454 85.3 MiB 1.61 0.02 4.14666 -3614.83 -4.14666 4.14666 1.96 0.00848914 0.0075083 0.709068 0.62613 80 37463 31 1.59675e+07 8.15891e+06 2.72095e+06 4723.87 24.59 4.01927 3.55053 70206 720185 -1 31900 17 12682 14705 2444809 499878 0 0 2444809 499878 13407 12769 0 0 98092 87923 0 0 134962 109634 0 0 13409 12830 0 0 1085488 140379 0 0 1099451 136343 0 0 13407 0 0 745 6517 7527 17515 1400 186 4.52256 4.52256 -4365.6 -4.52256 0 0 3.41546e+06 5929.62 0.90 0.55 0.42 -1 -1 0.90 0.245968 0.222444 1593 2122 836 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_46.v common 29.90 vpr 85.80 MiB 0.25 19744 -1 -1 1 0.82 -1 -1 43336 -1 -1 210 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87864 22 19 6559 5422 1 3381 264 24 24 576 mult_36 auto 49.7 MiB 2.48 21956 85.8 MiB 1.88 0.02 4.14666 -3557.64 -4.14666 4.14666 1.87 0.00831435 0.00732527 0.849069 0.75087 76 37183 29 1.59675e+07 8.18786e+06 2.61600e+06 4541.67 15.53 4.1831 3.71401 68478 680951 -1 31236 17 13070 15136 2812753 594279 0 0 2812753 594279 13806 13163 0 0 100548 90824 0 0 139842 113139 0 0 13815 13226 0 0 1272389 178578 0 0 1272353 185349 0 0 13806 0 0 754 6523 7607 17607 1400 255 4.52256 4.52256 -4312.43 -4.52256 0 0 3.24203e+06 5628.53 1.05 0.72 0.66 -1 -1 1.05 0.301366 0.27282 1613 2141 855 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_47.v common 37.58 vpr 86.79 MiB 0.26 20164 -1 -1 1 1.21 -1 -1 43644 -1 -1 216 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88872 22 19 6735 5564 1 3478 270 24 24 576 mult_36 auto 50.6 MiB 2.55 23179 86.8 MiB 2.08 0.02 4.14666 -3746.57 -4.14666 4.14666 2.30 0.0111309 0.0100258 0.961832 0.862385 80 37843 32 1.59675e+07 8.27472e+06 2.72095e+06 4723.87 23.00 4.65672 4.13415 70206 720185 -1 32139 17 12589 14266 2462069 511321 0 0 2462069 511321 13182 12666 0 0 95311 85449 0 0 129082 105499 0 0 13188 12735 0 0 1112984 146466 0 0 1098322 148506 0 0 13182 0 0 609 5080 5687 16510 1139 270 4.52256 4.52256 -4368.5 -4.52256 0 0 3.41546e+06 5929.62 0.91 0.57 0.43 -1 -1 0.91 0.260609 0.235951 1656 2196 874 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_48.v common 32.57 vpr 87.09 MiB 0.27 20356 -1 -1 1 1.22 -1 -1 43412 -1 -1 218 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89180 22 19 6809 5621 1 3528 272 24 24 576 mult_36 auto 51.1 MiB 2.00 23697 87.1 MiB 1.23 0.01 4.02136 -3739.94 -4.02136 4.02136 1.48 0.00540484 0.00476021 0.512366 0.448031 82 39597 45 1.59675e+07 8.30367e+06 2.78508e+06 4835.20 18.87 4.28569 3.79253 70778 734779 -1 33279 16 13296 15154 2708984 551703 0 0 2708984 551703 14068 13404 0 0 102400 92159 0 0 140530 113594 0 0 14069 13483 0 0 1208148 161921 0 0 1229769 157142 0 0 14068 0 0 788 6062 5707 18497 1149 36 4.52256 4.52256 -4635.56 -4.52256 0 0 3.48632e+06 6052.64 1.25 0.71 0.65 -1 -1 1.25 0.326241 0.298634 1674 2215 893 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_49.v common 41.82 vpr 89.11 MiB 0.27 20864 -1 -1 1 1.45 -1 -1 44016 -1 -1 228 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91244 22 19 7094 5872 1 3643 283 24 24 576 mult_36 auto 52.9 MiB 3.07 26701 89.1 MiB 1.26 0.01 4.27196 -3967.24 -4.27196 4.27196 1.80 0.00592229 0.00524753 0.533279 0.470511 84 43943 34 1.59675e+07 8.84444e+06 2.84938e+06 4946.85 27.14 3.61095 3.17631 71930 760447 -1 35945 16 13806 15906 3002313 601571 0 0 3002313 601571 14515 13903 0 0 105959 95502 0 0 143638 116627 0 0 14519 13986 0 0 1369459 177324 0 0 1354223 184229 0 0 14515 0 0 730 6363 6596 18697 1442 625 4.64786 4.64786 -4676.16 -4.64786 0 0 3.60864e+06 6265.01 0.91 0.63 0.44 -1 -1 0.91 0.251626 0.228029 1745 2324 912 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_50.v common 37.38 vpr 88.88 MiB 0.27 21100 -1 -1 1 1.49 -1 -1 43620 -1 -1 230 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91016 22 19 7168 5929 1 3677 285 24 24 576 mult_36 auto 52.9 MiB 2.82 24124 88.9 MiB 2.15 0.02 4.39726 -3899.23 -4.39726 4.39726 2.02 0.0107573 0.00967932 0.973283 0.867425 80 38015 32 1.59675e+07 8.87339e+06 2.72095e+06 4723.87 22.25 5.49815 4.88133 70206 720185 -1 33468 15 13227 14841 2770518 570638 0 0 2770518 570638 13977 13330 0 0 103655 93105 0 0 142418 115684 0 0 13983 13406 0 0 1236290 168228 0 0 1260195 166885 0 0 13977 0 0 766 4198 5870 18307 908 29 4.64786 4.64786 -4886.71 -4.64786 0 0 3.41546e+06 5929.62 0.90 0.63 0.43 -1 -1 0.90 0.272067 0.245809 1764 2343 931 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_51.v common 32.75 vpr 90.19 MiB 0.24 21732 -1 -1 1 1.22 -1 -1 44396 -1 -1 235 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92352 22 19 7344 6071 1 3784 290 24 24 576 mult_36 auto 54.0 MiB 2.56 24958 90.2 MiB 1.25 0.01 4.14666 -4033.64 -4.14666 4.14666 1.74 0.00596475 0.00527254 0.521674 0.459771 78 43791 45 1.59675e+07 8.94577e+06 2.67122e+06 4637.53 17.42 4.04225 3.55659 69630 706637 -1 35451 15 14456 16316 3024369 637812 0 0 3024369 637812 15234 14560 0 0 115301 104441 0 0 157637 128597 0 0 15237 14657 0 0 1358569 188191 0 0 1362391 187366 0 0 15234 0 0 796 5563 6506 19410 1134 18 4.64786 4.64786 -4941.37 -4.64786 0 0 3.35110e+06 5817.88 1.29 0.72 0.72 -1 -1 1.29 0.30643 0.27834 1808 2398 950 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_pipe_52.v common 38.98 vpr 90.14 MiB 0.18 21560 -1 -1 1 1.16 -1 -1 44320 -1 -1 237 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 92300 22 19 7418 6128 1 3829 292 24 24 576 mult_36 auto 54.0 MiB 2.61 25267 90.1 MiB 1.53 0.01 4.14666 -4056.06 -4.14666 4.14666 2.04 0.00599333 0.00529293 0.643505 0.563805 80 42359 40 1.59675e+07 8.97472e+06 2.72095e+06 4723.87 25.21 4.81971 4.23632 70206 720185 -1 35314 16 14446 16351 2728788 589034 0 0 2728788 589034 15178 14570 0 0 114604 103244 0 0 153319 127197 0 0 15180 14649 0 0 1208189 166290 0 0 1222318 163084 0 0 15178 0 0 752 4953 7035 19317 1223 461 4.39726 4.39726 -4789.94 -4.39726 0 0 3.41546e+06 5929.62 0.91 0.64 0.42 -1 -1 0.91 0.286873 0.260433 1827 2417 969 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_14.v common 8.44 vpr 58.59 MiB 0.06 9240 -1 -1 1 0.19 -1 -1 34236 -1 -1 43 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60000 22 19 1246 925 1 719 88 16 16 256 mult_36 auto 20.8 MiB 1.17 3950 58.6 MiB 0.14 0.00 6.98711 -334.178 -6.98711 6.98711 0.72 0.000604475 0.000499131 0.0514816 0.0436013 56 7274 28 6.59459e+06 2.20645e+06 849745. 3319.32 3.28 0.450153 0.400389 26364 208198 -1 6619 26 6682 7552 1237557 281768 0 0 1237557 281768 7552 6880 0 0 53663 50368 0 0 75047 58677 0 0 7596 6945 0 0 550117 80799 0 0 543582 78099 0 0 7552 0 0 897 4525 3651 42775 0 0 8.19264 8.19264 -457.679 -8.19264 0 0 1.04740e+06 4091.43 0.39 0.39 0.19 -1 -1 0.39 0.120152 0.109604 299 285 247 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_15.v common 9.56 vpr 59.07 MiB 0.07 9388 -1 -1 1 0.17 -1 -1 34608 -1 -1 46 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60492 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 21.4 MiB 0.97 4251 59.1 MiB 0.17 0.00 7.02947 -342.05 -7.02947 7.02947 0.70 0.000692184 0.000576284 0.0598171 0.0506029 54 8831 46 6.59459e+06 2.64588e+06 829453. 3240.05 4.81 0.515616 0.460082 26108 202796 -1 7281 23 7336 8378 1492501 356251 0 0 1492501 356251 8378 7543 0 0 69010 65710 0 0 85985 71952 0 0 8466 7638 0 0 662671 103441 0 0 657991 99967 0 0 8378 0 0 1064 3897 4897 53508 0 0 8.61383 8.61383 -420.283 -8.61383 0 0 1.02522e+06 4004.78 0.38 0.46 0.19 -1 -1 0.38 0.132508 0.121464 321 304 266 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_16.v common 9.76 vpr 59.33 MiB 0.07 9620 -1 -1 1 0.22 -1 -1 34800 -1 -1 48 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60752 22 19 1418 1046 1 822 94 16 16 256 mult_36 auto 21.5 MiB 1.40 4676 59.3 MiB 0.22 0.00 7.09841 -340.993 -7.09841 7.09841 0.59 0.000737846 0.000604235 0.0831971 0.0707497 56 8599 28 6.59459e+06 2.67484e+06 849745. 3319.32 4.37 0.544586 0.483352 26364 208198 -1 7458 25 8060 9086 1944921 456122 0 0 1944921 456122 9086 8228 0 0 73449 69398 0 0 100069 79364 0 0 9094 8275 0 0 884108 142201 0 0 869115 148656 0 0 9086 0 0 1049 5301 4471 47477 0 0 8.57773 8.57773 -471.689 -8.57773 0 0 1.04740e+06 4091.43 0.39 0.48 0.20 -1 -1 0.39 0.105573 0.0969421 340 323 285 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_17.v common 9.07 vpr 59.77 MiB 0.08 10164 -1 -1 1 0.21 -1 -1 34404 -1 -1 52 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61204 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 22.2 MiB 1.24 4861 59.8 MiB 0.17 0.00 7.80825 -382.565 -7.80825 7.80825 0.77 0.000873096 0.000745122 0.0624608 0.0539128 60 9516 36 6.59459e+06 2.73274e+06 890343. 3477.90 3.91 0.447762 0.397051 27128 224764 -1 7470 24 7628 8517 1266506 301586 0 0 1266506 301586 8517 7819 0 0 62950 59564 0 0 82773 67071 0 0 8585 7907 0 0 573416 79149 0 0 530265 80076 0 0 8517 0 0 912 3632 4158 43899 0 0 8.89448 8.89448 -499.261 -8.89448 0 0 1.11577e+06 4358.47 0.27 0.26 0.24 -1 -1 0.27 0.0770227 0.0703228 365 342 304 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_18.v common 12.04 vpr 60.45 MiB 0.08 10212 -1 -1 1 0.24 -1 -1 34656 -1 -1 55 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61904 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 22.6 MiB 1.69 5268 60.5 MiB 0.31 0.01 7.72835 -401.323 -7.72835 7.72835 0.71 0.00192698 0.0016851 0.12305 0.107418 56 10979 44 6.59459e+06 2.77617e+06 849745. 3319.32 6.33 0.766347 0.687908 26364 208198 -1 9074 25 9168 10314 1932510 430754 0 0 1932510 430754 10314 9506 0 0 76894 72311 0 0 105216 83542 0 0 10379 9575 0 0 867138 126087 0 0 862569 129733 0 0 10314 0 0 1173 5866 6469 57504 0 0 9.33468 9.33468 -567.027 -9.33468 0 0 1.04740e+06 4091.43 0.27 0.35 0.12 -1 -1 0.27 0.0811607 0.0738819 383 361 323 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_19.v common 10.07 vpr 60.88 MiB 0.09 10388 -1 -1 1 0.25 -1 -1 35032 -1 -1 58 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62344 22 19 1688 1231 1 975 105 16 16 256 mult_36 auto 23.2 MiB 1.25 5779 60.9 MiB 0.21 0.00 7.75835 -390.261 -7.75835 7.75835 0.52 0.000903449 0.00076309 0.0733893 0.0631692 64 10849 45 6.59459e+06 3.21559e+06 943753. 3686.54 5.40 0.680333 0.605839 27892 240595 -1 8556 25 7224 8309 1087210 250867 0 0 1087210 250867 7979 7326 0 0 51659 47750 0 0 74750 57377 0 0 7995 7410 0 0 469825 66867 0 0 475002 64137 0 0 7979 0 0 778 4654 4234 35730 369 9 9.58838 9.58838 -597.752 -9.58838 0 0 1.19033e+06 4649.74 0.29 0.23 0.17 -1 -1 0.29 0.0793978 0.0718946 404 380 342 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_20.v common 12.00 vpr 61.26 MiB 0.09 10788 -1 -1 1 0.26 -1 -1 35096 -1 -1 59 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62728 22 19 1762 1288 1 1013 106 16 16 256 mult_36 auto 23.7 MiB 1.75 6222 61.3 MiB 0.19 0.00 7.68911 -431.664 -7.68911 7.68911 0.52 0.00103822 0.000889916 0.0691261 0.0595505 62 12520 34 6.59459e+06 3.23007e+06 916467. 3579.95 6.35 0.757621 0.678235 27384 229598 -1 9364 23 8026 9244 1390051 309174 0 0 1390051 309174 8903 8237 0 0 63939 60008 0 0 82665 67128 0 0 8965 8352 0 0 610001 82836 0 0 615578 82613 0 0 8903 0 0 902 4815 4719 38901 370 2 9.37378 9.37378 -564.448 -9.37378 0 0 1.13630e+06 4438.68 0.42 0.45 0.21 -1 -1 0.42 0.143723 0.130377 423 399 361 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_21.v common 12.78 vpr 61.85 MiB 0.10 10920 -1 -1 1 0.18 -1 -1 35584 -1 -1 62 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63336 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 24.2 MiB 1.73 6303 61.9 MiB 0.44 0.01 7.62205 -457.249 -7.62205 7.62205 0.85 0.00250789 0.00221809 0.186417 0.165552 64 12190 48 6.59459e+06 3.2735e+06 943753. 3686.54 6.25 0.898093 0.803378 27892 240595 -1 9835 26 9070 10262 1521610 339009 0 0 1521610 339009 9952 9412 0 0 68120 63431 0 0 96416 74745 0 0 10014 9500 0 0 683455 92150 0 0 653653 89771 0 0 9952 0 0 905 4872 5050 35698 327 2 8.98378 8.98378 -627.371 -8.98378 0 0 1.19033e+06 4649.74 0.45 0.47 0.22 -1 -1 0.45 0.160933 0.147604 445 418 380 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_22.v common 13.42 vpr 62.11 MiB 0.10 11080 -1 -1 1 0.27 -1 -1 35000 -1 -1 66 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63604 22 19 1933 1408 1 1112 113 16 16 256 mult_36 auto 24.6 MiB 2.01 6333 62.1 MiB 0.41 0.01 7.62315 -473.145 -7.62315 7.62315 0.81 0.00218861 0.00189894 0.154638 0.133459 64 12429 31 6.59459e+06 3.3314e+06 943753. 3686.54 6.58 0.862982 0.76945 27892 240595 -1 9808 25 9584 10846 1683948 381323 0 0 1683948 381323 10211 9743 0 0 75442 70393 0 0 107315 83340 0 0 10215 9784 0 0 753662 107480 0 0 727103 100583 0 0 10211 0 0 656 3246 3885 14160 677 2 8.66969 8.66969 -746.461 -8.66969 0 0 1.19033e+06 4649.74 0.46 0.56 0.21 -1 -1 0.46 0.182161 0.166186 464 437 399 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_23.v common 12.51 vpr 62.37 MiB 0.07 11240 -1 -1 1 0.20 -1 -1 35860 -1 -1 68 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63864 22 19 2031 1472 1 1172 116 18 18 324 mult_36 auto 24.7 MiB 1.41 7302 62.4 MiB 0.41 0.01 7.71915 -469.387 -7.71915 7.71915 0.97 0.00289149 0.0024649 0.171024 0.14955 62 14803 38 8.13932e+06 3.75635e+06 1.20291e+06 3712.69 6.27 0.851593 0.75936 35328 304176 -1 11663 24 10309 11824 2139086 462153 0 0 2139086 462153 11119 10443 0 0 87634 82781 0 0 113865 92261 0 0 11126 10535 0 0 969114 131148 0 0 946228 134985 0 0 11119 0 0 839 3943 5009 18002 781 2 9.31258 9.31258 -752.691 -9.31258 0 0 1.49010e+06 4599.06 0.61 0.50 0.29 -1 -1 0.61 0.126621 0.115925 486 456 418 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_24.v common 15.37 vpr 63.14 MiB 0.11 11460 -1 -1 1 0.32 -1 -1 35736 -1 -1 71 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64656 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 25.5 MiB 2.19 6909 63.1 MiB 0.51 0.01 7.56085 -470.498 -7.56085 7.56085 1.14 0.00216685 0.00185267 0.220515 0.193591 64 13430 34 8.13932e+06 3.79978e+06 1.23838e+06 3822.15 7.05 1.00386 0.89642 35972 318676 -1 11061 24 9564 10965 1884847 406164 0 0 1884847 406164 10336 9818 0 0 78715 73700 0 0 108242 86500 0 0 10350 9882 0 0 846015 111568 0 0 831189 114696 0 0 10336 0 0 800 4273 4910 18619 669 9 9.16728 9.16728 -775.541 -9.16728 0 0 1.56068e+06 4816.91 0.62 0.62 0.30 -1 -1 0.62 0.208116 0.190618 505 475 437 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_25.v common 12.66 vpr 63.52 MiB 0.16 11644 -1 -1 1 0.30 -1 -1 35468 -1 -1 73 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65048 22 19 2201 1591 1 1267 121 18 18 324 mult_36 auto 26.3 MiB 2.08 7669 63.5 MiB 0.51 0.01 7.62205 -492.613 -7.62205 7.62205 1.14 0.0030417 0.00272988 0.22393 0.197643 68 13647 28 8.13932e+06 3.82873e+06 1.31159e+06 4048.11 5.04 0.813151 0.723746 36620 334356 -1 11520 23 9389 11018 1759568 384822 0 0 1759568 384822 10157 9527 0 0 76861 72190 0 0 102702 82765 0 0 10163 9611 0 0 770873 107585 0 0 788812 103144 0 0 10157 0 0 792 4538 5339 13613 991 21 8.95588 8.95588 -839.515 -8.95588 0 0 1.63345e+06 5041.52 0.43 0.37 0.19 -1 -1 0.43 0.109629 0.0995486 526 494 456 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_26.v common 13.65 vpr 63.86 MiB 0.12 11756 -1 -1 1 0.37 -1 -1 36360 -1 -1 76 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65392 22 19 2275 1648 1 1304 124 18 18 324 mult_36 auto 26.4 MiB 2.27 7450 63.9 MiB 0.34 0.00 7.80825 -523.983 -7.80825 7.80825 0.74 0.00146921 0.00127349 0.126689 0.109781 72 12810 26 8.13932e+06 3.87216e+06 1.37338e+06 4238.83 5.75 1.10245 0.993304 37588 355536 -1 11175 25 10276 11592 2031586 434781 0 0 2031586 434781 11057 10454 0 0 81627 76634 0 0 116305 89151 0 0 11057 10563 0 0 914331 123667 0 0 897209 124312 0 0 11057 0 0 806 3084 3321 14895 574 21 8.87728 8.87728 -752.323 -8.87728 0 0 1.72054e+06 5310.31 0.70 0.71 0.35 -1 -1 0.70 0.247003 0.226685 546 513 475 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_27.v common 15.73 vpr 64.54 MiB 0.13 12128 -1 -1 1 0.23 -1 -1 36176 -1 -1 82 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66088 22 19 2385 1724 1 1377 131 18 18 324 mult_36 auto 27.2 MiB 2.29 8656 64.5 MiB 0.66 0.01 7.67995 -523.927 -7.67995 7.67995 1.18 0.00320786 0.00282479 0.287216 0.254109 62 17421 47 8.13932e+06 4.35501e+06 1.20291e+06 3712.69 7.00 1.06604 0.947591 35328 304176 -1 13139 24 11813 13550 2319149 502142 0 0 2319149 502142 12648 11962 0 0 97579 91875 0 0 125721 102676 0 0 12648 12051 0 0 1038804 142455 0 0 1031749 141123 0 0 12648 0 0 863 4608 5187 16758 1006 67 8.96188 8.96188 -852.074 -8.96188 0 0 1.49010e+06 4599.06 0.60 0.79 0.28 -1 -1 0.60 0.244848 0.224461 575 532 494 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_28.v common 16.63 vpr 64.95 MiB 0.12 12308 -1 -1 1 0.37 -1 -1 36520 -1 -1 83 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66508 22 19 2459 1781 1 1418 132 18 18 324 mult_36 auto 27.4 MiB 2.59 8745 64.9 MiB 0.31 0.00 7.60005 -550.785 -7.60005 7.60005 0.74 0.00156159 0.00132976 0.118627 0.102723 66 15827 32 8.13932e+06 4.36948e+06 1.27759e+06 3943.17 7.93 1.13944 1.02489 36296 327148 -1 13390 26 12951 14549 2662497 565067 0 0 2662497 565067 13937 13222 0 0 99481 93698 0 0 141486 108649 0 0 13939 13301 0 0 1205886 165574 0 0 1187768 170623 0 0 13937 0 0 1018 5246 5058 31184 634 35 9.09798 9.09798 -878.539 -9.09798 0 0 1.59950e+06 4936.74 0.67 0.90 0.31 -1 -1 0.67 0.273595 0.249878 594 551 513 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_29.v common 22.54 vpr 65.46 MiB 0.14 12420 -1 -1 1 0.39 -1 -1 36156 -1 -1 85 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67032 22 19 2565 1853 1 1483 135 22 22 484 mult_36 auto 28.2 MiB 2.98 9467 65.5 MiB 0.61 0.01 7.58425 -519.207 -7.58425 7.58425 1.97 0.00370019 0.00332353 0.271136 0.241262 68 16435 45 1.32347e+07 4.79443e+06 2.01763e+06 4168.66 10.53 1.40299 1.25167 55470 518816 -1 13853 25 12220 14490 2783050 587169 0 0 2783050 587169 13275 12421 0 0 105016 99072 0 0 141915 112813 0 0 13288 12527 0 0 1262134 172292 0 0 1247422 178044 0 0 13275 0 0 1082 6812 6375 18476 1305 219 9.21838 9.21838 -933.695 -9.21838 0 0 2.51205e+06 5190.18 1.16 0.77 0.51 -1 -1 1.16 0.199899 0.181635 619 570 532 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_30.v common 20.46 vpr 65.71 MiB 0.13 12512 -1 -1 1 0.44 -1 -1 36576 -1 -1 89 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67288 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 28.6 MiB 2.78 9163 65.7 MiB 0.69 0.01 7.71115 -535.323 -7.71115 7.71115 1.93 0.00382225 0.00340019 0.31184 0.276712 66 16255 28 1.32347e+07 4.85233e+06 1.96511e+06 4060.15 9.55 1.46174 1.31073 54986 507526 -1 13759 24 12873 14544 2859992 606760 0 0 2859992 606760 13853 13088 0 0 115809 109850 0 0 159179 126302 0 0 13866 13188 0 0 1276728 171362 0 0 1280557 172970 0 0 13853 0 0 1007 4248 4781 18903 761 2 9.09008 9.09008 -854.358 -9.09008 0 0 2.45963e+06 5081.88 0.75 0.55 0.31 -1 -1 0.75 0.139378 0.126543 639 589 551 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_31.v common 18.23 vpr 66.36 MiB 0.13 12864 -1 -1 1 0.43 -1 -1 36960 -1 -1 93 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67952 22 19 2744 1981 1 1589 143 22 22 484 mult_36 auto 29.0 MiB 2.02 10314 66.4 MiB 0.43 0.01 7.68295 -597.427 -7.68295 7.68295 1.22 0.00188193 0.00163118 0.161103 0.140463 70 18057 41 1.32347e+07 4.91023e+06 2.06816e+06 4273.05 8.70 0.931285 0.828109 56434 539830 -1 15371 25 12743 14615 3049478 632328 0 0 3049478 632328 13706 13010 0 0 105022 98445 0 0 145859 113551 0 0 13709 13133 0 0 1369958 197251 0 0 1401224 196938 0 0 13706 0 0 992 4951 5330 19204 927 11 9.33888 9.33888 -1175.2 -9.33888 0 0 2.60483e+06 5381.88 1.21 0.92 0.53 -1 -1 1.21 0.233567 0.21267 665 608 570 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_32.v common 27.12 vpr 66.43 MiB 0.14 12872 -1 -1 1 0.49 -1 -1 36296 -1 -1 96 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68024 22 19 2818 2038 1 1626 146 22 22 484 mult_36 auto 29.2 MiB 3.32 10761 66.4 MiB 0.90 0.01 7.66715 -553.462 -7.66715 7.66715 1.94 0.0046296 0.00418177 0.392091 0.347985 68 20214 45 1.32347e+07 4.95366e+06 2.01763e+06 4168.66 14.60 1.72833 1.54539 55470 518816 -1 15948 27 15374 17821 3544346 735313 0 0 3544346 735313 16574 15628 0 0 125841 118846 0 0 177221 135954 0 0 16590 15770 0 0 1603920 222915 0 0 1604200 226200 0 0 16574 0 0 1231 7940 7676 33365 1298 135 9.43328 9.43328 -1200.18 -9.43328 0 0 2.51205e+06 5190.18 1.05 0.84 0.36 -1 -1 1.05 0.188988 0.171482 684 627 589 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_33.v common 21.64 vpr 67.34 MiB 0.15 13528 -1 -1 1 0.34 -1 -1 36604 -1 -1 100 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68956 22 19 2923 2109 1 1697 151 22 22 484 mult_36 auto 30.1 MiB 2.33 10682 67.3 MiB 1.02 0.01 8.36299 -612.502 -8.36299 8.36299 1.96 0.00401418 0.00357578 0.407471 0.361265 64 21092 45 1.32347e+07 5.40755e+06 1.90554e+06 3937.06 10.77 1.1999 1.064 54502 494576 -1 16584 25 16717 18815 4090813 849958 0 0 4090813 849958 17824 17045 0 0 136104 127265 0 0 189472 147378 0 0 17825 17108 0 0 1875770 265447 0 0 1853818 275715 0 0 17824 0 0 1137 5986 5968 23849 1064 138 9.98022 9.98022 -1074.71 -9.98022 0 0 2.40101e+06 4960.76 0.70 0.75 0.28 -1 -1 0.70 0.161972 0.147229 710 646 608 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_34.v common 17.94 vpr 67.56 MiB 0.12 13640 -1 -1 1 0.53 -1 -1 37036 -1 -1 101 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69184 22 19 2997 2166 1 1733 152 22 22 484 mult_36 auto 30.4 MiB 2.61 11016 67.6 MiB 0.50 0.01 8.20359 -612.989 -8.20359 8.20359 1.42 0.00213195 0.00182352 0.195556 0.170746 66 20704 39 1.32347e+07 5.42203e+06 1.96511e+06 4060.15 8.17 1.09242 0.969491 54986 507526 -1 16623 24 15229 17233 3510468 738061 0 0 3510468 738061 16318 15557 0 0 129062 121858 0 0 175963 139490 0 0 16321 15645 0 0 1594801 215885 0 0 1578003 229626 0 0 16318 0 0 1114 4880 5713 22414 953 2 9.64792 9.64792 -1054.11 -9.64792 0 0 2.45963e+06 5081.88 0.72 0.65 0.29 -1 -1 0.72 0.155505 0.140893 729 665 627 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_35.v common 19.56 vpr 68.34 MiB 0.15 13868 -1 -1 1 0.47 -1 -1 36808 -1 -1 106 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69976 22 19 3101 2236 1 1798 157 22 22 484 mult_36 auto 30.9 MiB 2.36 11748 68.3 MiB 0.52 0.01 8.32889 -634.18 -8.32889 8.32889 1.21 0.00220007 0.00191592 0.193991 0.17001 72 20808 32 1.32347e+07 5.49441e+06 2.11301e+06 4365.72 9.07 1.20688 1.07766 56918 551676 -1 17360 23 12772 14878 3121498 653933 0 0 3121498 653933 13673 12995 0 0 102559 96175 0 0 141758 112726 0 0 13674 13109 0 0 1421440 205421 0 0 1428394 213507 0 0 13673 0 0 926 6879 7036 18209 1258 75 10.1117 10.1117 -1103.59 -10.1117 0 0 2.64603e+06 5467.00 1.21 1.08 0.52 -1 -1 1.21 0.32263 0.295333 755 684 646 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_36.v common 23.86 vpr 68.70 MiB 0.16 14032 -1 -1 1 0.39 -1 -1 37764 -1 -1 107 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70348 22 19 3175 2293 1 1835 158 22 22 484 mult_36 auto 31.6 MiB 3.93 12781 68.7 MiB 0.86 0.01 8.44139 -676.284 -8.44139 8.44139 1.90 0.00218753 0.00191014 0.356419 0.316699 76 22477 49 1.32347e+07 5.50888e+06 2.20457e+06 4554.90 10.70 1.17733 1.04474 57882 574062 -1 18561 25 15277 17633 3650736 741168 0 0 3650736 741168 16462 15539 0 0 119504 112111 0 0 166512 128438 0 0 16464 15685 0 0 1666486 236571 0 0 1665308 232824 0 0 16462 0 0 1213 7285 6384 22946 1221 16 10.2448 10.2448 -1287.59 -10.2448 0 0 2.73077e+06 5642.09 0.84 0.88 0.41 -1 -1 0.84 0.237434 0.216667 773 703 665 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_37.v common 24.30 vpr 69.36 MiB 0.17 14252 -1 -1 1 0.38 -1 -1 37128 -1 -1 111 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71028 22 19 3280 2364 1 1905 163 24 24 576 mult_36 auto 32.0 MiB 3.07 12281 69.4 MiB 1.06 0.01 8.51829 -743.663 -8.51829 8.51829 1.87 0.00459537 0.00412764 0.449807 0.394145 64 23320 43 1.59675e+07 5.96278e+06 2.26035e+06 3924.22 12.30 1.53754 1.36644 64454 586630 -1 18470 25 16404 18951 3408789 711687 0 0 3408789 711687 17544 16673 0 0 133768 124864 0 0 183390 145237 0 0 17553 16765 0 0 1524503 203469 0 0 1532031 204679 0 0 17544 0 0 1168 10547 11390 50791 1467 33 9.99302 9.99302 -1075.61 -9.99302 0 0 2.84938e+06 4946.85 0.92 0.80 0.58 -1 -1 0.92 0.213127 0.192148 798 722 684 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_38.v common 79.18 vpr 69.72 MiB 0.17 14692 -1 -1 1 0.48 -1 -1 37820 -1 -1 113 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71396 22 19 3354 2421 1 1940 165 24 24 576 mult_36 auto 32.6 MiB 3.60 13705 69.7 MiB 0.56 0.01 8.63069 -824.429 -8.63069 8.63069 1.50 0.00244523 0.00212545 0.211826 0.185773 70 24665 50 1.59675e+07 5.99174e+06 2.45377e+06 4260.01 68.25 2.26367 1.99079 66754 640332 -1 20208 26 17084 19569 3775919 749233 0 0 3775919 749233 18334 17443 0 0 132670 123822 0 0 188792 144051 0 0 18342 17580 0 0 1707037 225765 0 0 1710744 220572 0 0 18334 0 0 1279 8446 8914 39611 1252 184 10.0505 10.0505 -1251.96 -10.0505 0 0 3.09179e+06 5367.68 0.77 0.57 0.35 -1 -1 0.77 0.140197 0.126349 818 741 703 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_39.v common 28.06 vpr 70.18 MiB 0.19 14732 -1 -1 1 0.38 -1 -1 37984 -1 -1 117 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71864 22 19 3457 2490 1 2006 169 24 24 576 mult_36 auto 32.9 MiB 4.54 13303 70.2 MiB 1.00 0.01 8.58539 -842.059 -8.58539 8.58539 2.18 0.00555066 0.00503902 0.435178 0.389069 74 22181 33 1.59675e+07 6.04964e+06 2.56259e+06 4448.94 12.23 1.92157 1.72118 67906 667765 -1 19078 24 15586 17760 3458932 696645 0 0 3458932 696645 16701 15846 0 0 122219 114511 0 0 173138 132741 0 0 16703 16007 0 0 1568910 209816 0 0 1561261 207724 0 0 16701 0 0 1141 5281 6293 22831 1080 14 9.88952 9.88952 -1345.91 -9.88952 0 0 3.19068e+06 5539.38 1.50 1.15 0.57 -1 -1 1.50 0.345269 0.313179 842 760 722 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_40.v common 29.07 vpr 70.34 MiB 0.18 14672 -1 -1 1 0.44 -1 -1 37724 -1 -1 120 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72028 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 33.4 MiB 4.82 13036 70.3 MiB 1.10 0.01 8.45419 -831.231 -8.45419 8.45419 2.38 0.00620253 0.00542248 0.477798 0.42315 70 22560 29 1.59675e+07 6.09306e+06 2.45377e+06 4260.01 12.77 2.1464 1.9321 66754 640332 -1 19265 25 16061 18668 3538769 751661 0 0 3538769 751661 17382 16420 0 0 133798 125278 0 0 185280 145226 0 0 17386 16508 0 0 1614577 221733 0 0 1570346 226496 0 0 17382 0 0 1347 8252 7983 28477 1340 174 9.81282 9.81282 -1305.19 -9.81282 0 0 3.09179e+06 5367.68 1.37 1.05 0.62 -1 -1 1.37 0.292621 0.265892 862 779 741 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_41.v common 29.07 vpr 70.96 MiB 0.13 15176 -1 -1 1 0.63 -1 -1 37560 -1 -1 122 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72668 22 19 3634 2616 1 2109 175 24 24 576 mult_36 auto 34.0 MiB 4.43 13522 71.0 MiB 1.10 0.01 8.53849 -836.13 -8.53849 8.53849 1.81 0.00479307 0.00411035 0.445086 0.390591 70 23859 37 1.59675e+07 6.51802e+06 2.45377e+06 4260.01 14.62 2.28794 2.0411 66754 640332 -1 20087 24 17696 20339 3636874 757647 0 0 3636874 757647 19093 18069 0 0 141981 132870 0 0 196499 153374 0 0 19119 18197 0 0 1628341 216780 0 0 1631841 218357 0 0 19093 0 0 1425 9535 10281 50631 1289 126 9.78602 9.78602 -1384.93 -9.78602 0 0 3.09179e+06 5367.68 1.45 0.87 0.64 -1 -1 1.45 0.234146 0.21327 886 798 760 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_42.v common 27.25 vpr 71.62 MiB 0.13 15292 -1 -1 1 0.55 -1 -1 37720 -1 -1 125 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73340 22 19 3708 2673 1 2146 178 24 24 576 mult_36 auto 34.5 MiB 4.69 13720 71.6 MiB 0.58 0.01 8.41799 -828.567 -8.41799 8.41799 1.49 0.00285304 0.0024252 0.222663 0.194281 66 25238 41 1.59675e+07 6.56144e+06 2.33135e+06 4047.49 12.42 1.66782 1.48426 65030 601923 -1 20211 25 17799 20512 3917564 811811 0 0 3917564 811811 19178 18127 0 0 144532 136066 0 0 205511 159414 0 0 19194 18260 0 0 1764748 240090 0 0 1764401 239854 0 0 19178 0 0 1407 8959 9372 35609 1376 2 9.92122 9.92122 -1402.93 -9.92122 0 0 2.91907e+06 5067.82 1.34 1.34 0.58 -1 -1 1.34 0.437946 0.397726 906 817 779 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_43.v common 28.56 vpr 71.88 MiB 0.16 15548 -1 -1 1 0.53 -1 -1 37776 -1 -1 129 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73608 22 19 3810 2741 1 2211 182 24 24 576 mult_36 auto 34.9 MiB 4.20 15182 71.9 MiB 1.02 0.01 8.70475 -847.982 -8.70475 8.70475 1.94 0.00510109 0.00440807 0.399366 0.348411 68 26353 39 1.59675e+07 6.61934e+06 2.39371e+06 4155.74 14.26 1.90734 1.69684 65606 615345 -1 21386 26 16065 18609 3449770 726656 0 0 3449770 726656 17368 16328 0 0 134012 126249 0 0 180335 144455 0 0 17372 16437 0 0 1541973 211098 0 0 1558710 212089 0 0 17368 0 0 1330 7312 7531 24429 1275 60 10.3763 10.3763 -1440.62 -10.3763 0 0 2.98162e+06 5176.42 0.93 0.73 0.50 -1 -1 0.93 0.223383 0.20165 930 836 798 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_44.v common 22.93 vpr 72.32 MiB 0.17 15696 -1 -1 1 0.48 -1 -1 38380 -1 -1 132 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74052 22 19 3884 2798 1 2252 185 24 24 576 mult_36 auto 35.2 MiB 3.65 14741 72.3 MiB 0.65 0.01 8.80515 -846.092 -8.80515 8.80515 1.47 0.0028153 0.00246397 0.246062 0.214502 68 27010 41 1.59675e+07 6.66277e+06 2.39371e+06 4155.74 10.07 1.23654 1.09172 65606 615345 -1 21281 24 16894 19389 3776684 795847 0 0 3776684 795847 18163 17168 0 0 141557 133427 0 0 187060 152049 0 0 18165 17292 0 0 1679859 236594 0 0 1731880 239317 0 0 18163 0 0 1297 6914 6776 25002 1280 28 10.1037 10.1037 -1274.18 -10.1037 0 0 2.98162e+06 5176.42 1.41 1.01 0.60 -1 -1 1.41 0.26823 0.243873 949 855 817 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_45.v common 30.49 vpr 72.55 MiB 0.19 15816 -1 -1 1 0.75 -1 -1 39980 -1 -1 135 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74288 22 19 3989 2869 1 2317 189 24 24 576 mult_36 auto 35.5 MiB 5.60 15307 72.5 MiB 1.19 0.02 8.58375 -899.572 -8.58375 8.58375 2.36 0.00632734 0.00539568 0.48402 0.427597 74 25426 50 1.59675e+07 7.1022e+06 2.56259e+06 4448.94 13.58 2.40319 2.14187 67906 667765 -1 21828 25 17197 20383 3509109 723161 0 0 3509109 723161 18491 17525 0 0 134309 125694 0 0 192347 147763 0 0 18494 17654 0 0 1562858 207920 0 0 1582610 206605 0 0 18491 0 0 1321 9870 10180 25464 1930 241 10.0535 10.0535 -1410.54 -10.0535 0 0 3.19068e+06 5539.38 1.15 1.09 0.41 -1 -1 1.15 0.37473 0.340726 975 874 836 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_46.v common 28.87 vpr 72.95 MiB 0.21 16260 -1 -1 1 0.47 -1 -1 39980 -1 -1 136 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74696 22 19 4063 2926 1 2354 190 24 24 576 mult_36 auto 35.9 MiB 4.61 15749 72.9 MiB 0.61 0.01 8.58249 -857.872 -8.58249 8.58249 1.44 0.0026471 0.00228107 0.223 0.194109 78 25387 44 1.59675e+07 7.11667e+06 2.67122e+06 4637.53 15.26 2.2816 2.0255 69630 706637 -1 21867 25 15871 18384 3403674 704952 0 0 3403674 704952 17148 16126 0 0 137200 128744 0 0 186568 148195 0 0 17148 16200 0 0 1505899 201283 0 0 1539711 194404 0 0 17148 0 0 1299 5898 7717 24207 1284 79 9.61362 9.61362 -1431.18 -9.61362 0 0 3.35110e+06 5817.88 1.16 0.75 0.71 -1 -1 1.16 0.228358 0.206867 993 893 855 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_47.v common 31.99 vpr 73.72 MiB 0.22 16480 -1 -1 1 0.47 -1 -1 40272 -1 -1 141 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75488 22 19 4167 2996 1 2420 195 24 24 576 mult_36 auto 36.5 MiB 5.31 16868 73.7 MiB 1.23 0.02 8.63695 -958.698 -8.63695 8.63695 2.30 0.00576461 0.00515487 0.473976 0.412844 74 28413 35 1.59675e+07 7.18905e+06 2.56259e+06 4448.94 14.46 2.4355 2.17099 67906 667765 -1 23928 26 18540 21810 4034882 822976 0 0 4034882 822976 19861 18863 0 0 144280 135090 0 0 205004 156756 0 0 19862 18966 0 0 1820641 246449 0 0 1825234 246852 0 0 19861 0 0 1352 10455 10721 27105 2005 219 10.0366 10.0366 -1447.59 -10.0366 0 0 3.19068e+06 5539.38 1.59 1.45 0.67 -1 -1 1.59 0.435019 0.394653 1019 912 874 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_48.v common 68.33 vpr 73.76 MiB 0.22 16540 -1 -1 1 0.82 -1 -1 40224 -1 -1 144 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75532 22 19 4241 3053 1 2458 198 24 24 576 mult_36 auto 36.8 MiB 5.50 15648 73.8 MiB 0.70 0.01 8.54649 -901.089 -8.54649 8.54649 1.59 0.00322927 0.00276582 0.26157 0.22713 70 27078 34 1.59675e+07 7.23248e+06 2.45377e+06 4260.01 53.94 3.35061 2.95254 66754 640332 -1 22499 24 17491 20550 3495767 764851 0 0 3495767 764851 18846 17756 0 0 145497 135497 0 0 201578 159086 0 0 18855 17869 0 0 1568690 214593 0 0 1542301 220050 0 0 18846 0 0 1385 8889 9817 25983 1789 463 10.0036 10.0036 -1659.59 -10.0036 0 0 3.09179e+06 5367.68 0.88 0.70 0.37 -1 -1 0.88 0.211815 0.191808 1038 931 893 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_49.v common 36.81 vpr 74.49 MiB 0.24 16876 -1 -1 1 0.79 -1 -1 40632 -1 -1 145 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76280 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 37.8 MiB 6.12 17914 74.5 MiB 1.47 0.02 8.67149 -899.265 -8.67149 8.67149 2.30 0.00666216 0.00593984 0.579115 0.508032 74 30787 42 1.59675e+07 7.64295e+06 2.56259e+06 4448.94 18.04 2.95346 2.63599 67906 667765 -1 25475 26 23355 27104 6018365 1227340 0 0 6018365 1227340 25276 23803 0 0 189936 178846 0 0 266305 203790 0 0 25279 23994 0 0 2732170 398735 0 0 2779399 398172 0 0 25276 0 0 1951 12562 12698 55015 1857 555 10.1993 10.1993 -1502.89 -10.1993 0 0 3.19068e+06 5539.38 1.31 1.44 0.73 -1 -1 1.31 0.315585 0.285183 1062 950 912 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_50.v common 27.36 vpr 74.69 MiB 0.18 17056 -1 -1 1 0.78 -1 -1 40452 -1 -1 148 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76484 22 19 4420 3181 1 2563 203 24 24 576 mult_36 auto 38.1 MiB 6.66 17842 74.7 MiB 0.72 0.01 9.01655 -961.77 -9.01655 9.01655 1.57 0.00354776 0.00307211 0.261634 0.228273 70 30643 40 1.59675e+07 7.68637e+06 2.45377e+06 4260.01 10.24 1.42759 1.26198 66754 640332 -1 25117 22 19334 22724 4115308 869383 0 0 4115308 869383 20786 19702 0 0 161847 150765 0 0 220265 175486 0 0 20790 19855 0 0 1848292 248660 0 0 1843328 254915 0 0 20786 0 0 1479 10032 11044 28696 2007 747 10.3265 10.3265 -1708.83 -10.3265 0 0 3.09179e+06 5367.68 1.46 1.29 0.64 -1 -1 1.46 0.376355 0.341803 1082 969 931 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_51.v common 34.64 vpr 75.42 MiB 0.24 17208 -1 -1 1 0.92 -1 -1 40544 -1 -1 152 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77232 22 19 4524 3251 1 2633 207 24 24 576 mult_36 auto 38.5 MiB 6.58 17656 75.4 MiB 1.21 0.02 8.50409 -1012.06 -8.50409 8.50409 2.39 0.00700961 0.0062661 0.499725 0.440099 74 29723 39 1.59675e+07 7.74428e+06 2.56259e+06 4448.94 15.76 2.4365 2.16758 67906 667765 -1 25531 25 22236 25618 4764084 952226 0 0 4764084 952226 23809 22450 0 0 167986 157411 0 0 244095 183837 0 0 23810 22627 0 0 2132945 285952 0 0 2171439 279949 0 0 23809 0 0 1601 9205 10987 32741 1833 213 10.215 10.215 -1591.21 -10.215 0 0 3.19068e+06 5539.38 1.33 1.35 0.40 -1 -1 1.33 0.412133 0.372314 1107 988 950 19 0 0 +k6_frac_2ripple_N8_22nm.xml fir_nopipe_52.v common 33.09 vpr 75.62 MiB 0.27 17284 -1 -1 1 0.83 -1 -1 38796 -1 -1 155 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77440 22 19 4598 3308 1 2667 210 24 24 576 mult_36 auto 39.0 MiB 5.29 18143 75.6 MiB 1.40 0.02 8.85319 -995.156 -8.85319 8.85319 2.29 0.00694687 0.00624339 0.562046 0.493313 74 31788 47 1.59675e+07 7.7877e+06 2.56259e+06 4448.94 15.59 2.24567 1.99529 67906 667765 -1 25922 30 20829 24352 4698218 964838 0 0 4698218 964838 22538 21138 0 0 150050 139964 0 0 238597 167585 0 0 22543 21290 0 0 2129961 308161 0 0 2134529 306700 0 0 22538 0 0 1733 10864 9637 32256 1861 165 10.0223 10.0223 -1669.6 -10.0223 0 0 3.19068e+06 5539.38 1.20 1.01 0.61 -1 -1 1.20 0.319242 0.287891 1127 1007 969 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_14.v common 9.35 vpr 62.11 MiB 0.08 10424 -1 -1 1 0.28 -1 -1 35476 -1 -1 65 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63600 22 19 1974 1653 1 1013 110 16 16 256 mult_36 auto 24.4 MiB 0.50 5455 62.1 MiB 0.31 0.00 3.89606 -995.417 -3.89606 3.89606 0.84 0.00237112 0.00206954 0.140848 0.123815 64 10286 29 6.62819e+06 2.54052e+06 943753. 3686.54 4.24 0.838245 0.739775 27892 240595 -1 8612 20 3771 4299 609202 136076 0 0 609202 136076 4127 3868 0 0 28547 25537 0 0 39253 32491 0 0 4167 3911 0 0 265810 35414 0 0 267298 34855 0 0 4127 0 0 370 2178 1952 15558 197 1 4.27196 4.27196 -1190.62 -4.27196 0 0 1.19033e+06 4649.74 0.45 0.27 0.24 -1 -1 0.45 0.134568 0.121931 481 649 247 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_15.v common 8.24 vpr 63.16 MiB 0.07 10728 -1 -1 1 0.31 -1 -1 36060 -1 -1 72 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64676 22 19 2144 1789 1 1107 118 16 16 256 mult_36 auto 25.3 MiB 0.77 5718 63.2 MiB 0.22 0.00 3.89606 -1112.51 -3.89606 3.89606 0.53 0.00112594 0.000937157 0.0927979 0.0790612 56 12361 48 6.62819e+06 3.03953e+06 849745. 3319.32 3.43 0.588387 0.513432 26364 208198 -1 10180 21 4736 5399 1076168 305549 0 0 1076168 305549 5075 4823 0 0 40417 36838 0 0 54677 45737 0 0 5132 4880 0 0 485835 105849 0 0 485032 107422 0 0 5075 0 0 357 2950 2997 20823 340 25 4.27196 4.27196 -1351.76 -4.27196 0 0 1.04740e+06 4091.43 0.40 0.31 0.20 -1 -1 0.40 0.120728 0.110734 521 704 266 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_16.v common 11.38 vpr 63.54 MiB 0.08 10784 -1 -1 1 0.33 -1 -1 35764 -1 -1 74 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65068 22 19 2218 1846 1 1153 120 16 16 256 mult_36 auto 25.9 MiB 0.68 6289 63.5 MiB 0.39 0.01 3.89606 -1149.49 -3.89606 3.89606 0.85 0.00270818 0.00236912 0.187351 0.165192 56 14077 34 6.62819e+06 3.06896e+06 849745. 3319.32 6.11 1.0556 0.930564 26364 208198 -1 11084 20 5001 5670 1037995 245468 0 0 1037995 245468 5487 5107 0 0 44132 40293 0 0 57444 48949 0 0 5543 5204 0 0 464443 71688 0 0 460946 74227 0 0 5487 0 0 501 3163 3408 25573 208 1 4.27196 4.27196 -1398.88 -4.27196 0 0 1.04740e+06 4091.43 0.39 0.44 0.20 -1 -1 0.39 0.195955 0.17845 540 723 285 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_17.v common 9.75 vpr 65.07 MiB 0.09 11612 -1 -1 1 0.36 -1 -1 36604 -1 -1 83 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66636 22 19 2536 2130 1 1255 129 16 16 256 mult_36 auto 27.6 MiB 0.93 6827 65.1 MiB 0.40 0.01 3.89606 -1296.1 -3.89606 3.89606 0.59 0.00337072 0.00299421 0.191994 0.168938 60 13881 31 6.62819e+06 3.20141e+06 890343. 3477.90 4.08 0.723152 0.633932 27128 224764 -1 10875 19 5135 5905 916034 212668 0 0 916034 212668 5450 5192 0 0 43390 39459 0 0 54177 46582 0 0 5472 5251 0 0 405762 56621 0 0 401783 59563 0 0 5450 0 0 331 2592 2661 6611 555 17 4.27196 4.27196 -1546.11 -4.27196 0 0 1.11577e+06 4358.47 0.40 0.37 0.21 -1 -1 0.40 0.171617 0.155359 617 851 304 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_18.v common 10.71 vpr 65.46 MiB 0.10 11712 -1 -1 1 0.37 -1 -1 36628 -1 -1 86 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67028 22 19 2610 2187 1 1302 132 16 16 256 mult_36 auto 27.9 MiB 0.89 7491 65.5 MiB 0.34 0.00 3.89606 -1345.56 -3.89606 3.89606 0.87 0.00139812 0.00118272 0.152029 0.13173 66 15279 37 6.62819e+06 3.24555e+06 974584. 3806.97 5.30 1.22496 1.08469 28148 247068 -1 11466 18 4897 5602 888829 200765 0 0 888829 200765 5278 4983 0 0 40041 36203 0 0 51677 43918 0 0 5316 5044 0 0 395442 56492 0 0 391075 54125 0 0 5278 0 0 396 3213 3451 22596 350 2 4.27196 4.27196 -1580.71 -4.27196 0 0 1.22072e+06 4768.46 0.30 0.22 0.14 -1 -1 0.30 0.0996891 0.0908527 636 870 323 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_19.v common 8.91 vpr 66.46 MiB 0.08 12096 -1 -1 1 0.38 -1 -1 36772 -1 -1 91 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68052 22 19 2778 2321 1 1398 138 16 16 256 mult_36 auto 29.0 MiB 0.94 7954 66.5 MiB 0.33 0.00 3.89606 -1429.01 -3.89606 3.89606 0.77 0.00224821 0.00196461 0.151859 0.133681 68 14511 31 6.62819e+06 3.71513e+06 1.00038e+06 3907.74 3.42 0.829178 0.729484 28404 252462 -1 11685 17 5436 6171 874974 213327 0 0 874974 213327 5728 5493 0 0 46380 42485 0 0 60510 51115 0 0 5734 5535 0 0 380579 53996 0 0 376043 54703 0 0 5728 0 0 309 2035 2324 6955 509 49 4.27196 4.27196 -1708.86 -4.27196 0 0 1.24648e+06 4869.04 0.31 0.27 0.14 -1 -1 0.31 0.150301 0.137717 676 925 342 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_20.v common 12.13 vpr 66.68 MiB 0.10 12164 -1 -1 1 0.46 -1 -1 37200 -1 -1 93 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68284 22 19 2852 2378 1 1440 140 16 16 256 mult_36 auto 29.4 MiB 0.97 8088 66.7 MiB 0.29 0.01 3.89606 -1432.9 -3.89606 3.89606 0.57 0.00397671 0.0035496 0.119731 0.104081 68 15219 44 6.62819e+06 3.74456e+06 1.00038e+06 3907.74 6.29 1.22464 1.0847 28404 252462 -1 12027 16 5268 6092 844988 197290 0 0 844988 197290 5599 5333 0 0 43229 39134 0 0 55078 46791 0 0 5604 5379 0 0 363178 49611 0 0 372300 51042 0 0 5599 0 0 347 2255 2518 7158 544 11 4.27196 4.27196 -1695.63 -4.27196 0 0 1.24648e+06 4869.04 0.42 0.38 0.23 -1 -1 0.42 0.201704 0.184249 695 944 361 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_21.v common 11.33 vpr 67.55 MiB 0.11 12764 -1 -1 1 0.39 -1 -1 37036 -1 -1 97 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69176 22 19 3057 2549 1 1542 144 16 16 256 mult_36 auto 30.1 MiB 1.08 8730 67.6 MiB 0.43 0.00 4.02136 -1577.56 -4.02136 4.02136 0.51 0.00183031 0.00156054 0.188845 0.163383 70 15517 36 6.62819e+06 3.80343e+06 1.02522e+06 4004.78 5.76 1.26131 1.10675 28912 262511 -1 13063 19 5713 6765 1030885 239892 0 0 1030885 239892 6035 5740 0 0 50245 45203 0 0 64205 54220 0 0 6039 5779 0 0 454635 65061 0 0 449726 63889 0 0 6035 0 0 342 3429 3768 7384 810 2 4.27196 4.27196 -1878.29 -4.27196 0 0 1.29210e+06 5047.26 0.30 0.28 0.16 -1 -1 0.30 0.140812 0.129061 742 1017 380 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_22.v common 10.24 vpr 68.19 MiB 0.12 12680 -1 -1 1 0.47 -1 -1 37376 -1 -1 100 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69824 22 19 3131 2606 1 1585 147 16 16 256 mult_36 auto 31.0 MiB 0.65 9937 68.2 MiB 0.51 0.01 4.02136 -1634.72 -4.02136 4.02136 0.53 0.00402399 0.00356119 0.242976 0.216897 72 19024 32 6.62819e+06 3.84757e+06 1.04740e+06 4091.43 4.66 0.968394 0.852226 29168 268476 -1 14853 16 6083 7149 1335544 289554 0 0 1335544 289554 6382 6133 0 0 50554 45635 0 0 66212 55447 0 0 6393 6173 0 0 603159 88629 0 0 602844 87537 0 0 6382 0 0 314 3622 3960 7616 842 55 4.52256 4.52256 -1980.38 -4.52256 0 0 1.31294e+06 5128.69 0.34 0.45 0.26 -1 -1 0.34 0.174477 0.160055 762 1036 399 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_23.v common 13.61 vpr 68.86 MiB 0.12 13028 -1 -1 1 0.41 -1 -1 37280 -1 -1 107 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70512 22 19 3301 2742 1 1683 155 18 18 324 mult_36 auto 31.4 MiB 0.90 9471 68.9 MiB 0.62 0.01 4.02136 -1706.28 -4.02136 4.02136 0.89 0.00205899 0.00176279 0.286503 0.250587 70 18248 49 8.18539e+06 4.34658e+06 1.34436e+06 4149.26 6.61 1.62235 1.42796 37264 347768 -1 14508 18 6224 7225 1157806 258991 0 0 1157806 258991 6590 6266 0 0 52027 47030 0 0 68145 57109 0 0 6596 6305 0 0 513501 70614 0 0 510947 71667 0 0 6590 0 0 382 3073 3583 8023 715 130 4.39726 4.39726 -2080.7 -4.39726 0 0 1.69344e+06 5226.66 0.51 0.37 0.35 -1 -1 0.51 0.188076 0.171447 802 1091 418 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_24.v common 15.83 vpr 69.15 MiB 0.13 13296 -1 -1 1 0.51 -1 -1 37136 -1 -1 109 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70808 22 19 3375 2799 1 1730 157 18 18 324 mult_36 auto 31.9 MiB 0.90 10319 69.1 MiB 0.70 0.01 3.77076 -1743.26 -3.77076 3.77076 1.18 0.00409513 0.00359819 0.324608 0.285045 68 19284 29 8.18539e+06 4.37601e+06 1.31159e+06 4048.11 8.14 1.92966 1.71826 36620 334356 -1 15345 18 6770 7825 1259917 277735 0 0 1259917 277735 7148 6820 0 0 56138 51103 0 0 71099 60765 0 0 7165 6859 0 0 558427 75744 0 0 559940 76444 0 0 7148 0 0 393 3382 3538 8828 763 24 4.39726 4.39726 -2102.6 -4.39726 0 0 1.63345e+06 5041.52 0.44 0.37 0.31 -1 -1 0.44 0.196765 0.17871 821 1110 437 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_25.v common 16.89 vpr 70.56 MiB 0.13 13780 -1 -1 1 0.56 -1 -1 37864 -1 -1 116 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72252 22 19 3615 3005 1 1835 164 18 18 324 mult_36 auto 33.2 MiB 1.01 10681 70.6 MiB 0.83 0.01 3.89606 -1905.11 -3.89606 3.89606 1.21 0.00619355 0.0056415 0.421442 0.381052 68 20567 41 8.18539e+06 4.47902e+06 1.31159e+06 4048.11 8.29 2.42247 2.17009 36620 334356 -1 16275 18 7004 7823 1366273 300388 0 0 1366273 300388 7282 7067 0 0 58913 53694 0 0 74652 63751 0 0 7285 7095 0 0 603806 85978 0 0 614335 82803 0 0 7282 0 0 296 2601 2394 8737 563 183 4.39726 4.39726 -2281.95 -4.39726 0 0 1.63345e+06 5041.52 0.67 0.61 0.32 -1 -1 0.67 0.324178 0.298051 877 1201 456 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_26.v common 15.77 vpr 70.71 MiB 0.15 13812 -1 -1 1 0.61 -1 -1 37656 -1 -1 118 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72404 22 19 3689 3062 1 1872 166 18 18 324 mult_36 auto 33.4 MiB 0.89 10842 70.7 MiB 0.81 0.01 3.77076 -1893.81 -3.77076 3.77076 1.20 0.0042656 0.0037131 0.393836 0.350502 70 19569 29 8.18539e+06 4.50845e+06 1.34436e+06 4149.26 7.24 2.23028 1.99467 37264 347768 -1 16606 15 7094 8192 1381500 300240 0 0 1381500 300240 7451 7138 0 0 59124 53275 0 0 75979 64063 0 0 7457 7194 0 0 615239 83529 0 0 616250 85041 0 0 7451 0 0 374 3538 4044 9206 802 235 4.39726 4.39726 -2311.09 -4.39726 0 0 1.69344e+06 5226.66 0.72 0.60 0.34 -1 -1 0.72 0.291209 0.267447 896 1220 475 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_27.v common 17.84 vpr 71.92 MiB 0.14 14316 -1 -1 1 0.59 -1 -1 38124 -1 -1 126 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73644 22 19 3871 3210 1 1979 175 18 18 324 mult_36 auto 34.9 MiB 1.14 11433 71.9 MiB 0.95 0.01 3.89606 -1981.57 -3.89606 3.89606 1.20 0.00557403 0.00497454 0.469958 0.419578 68 22283 39 8.18539e+06 5.02217e+06 1.31159e+06 4048.11 8.69 2.48055 2.20272 36620 334356 -1 17472 19 7737 8725 1391939 311827 0 0 1391939 311827 8054 7795 0 0 63451 57858 0 0 80282 68464 0 0 8058 7828 0 0 609501 85506 0 0 622593 84376 0 0 8054 0 0 336 3248 3234 9504 729 247 4.27196 4.27196 -2338.39 -4.27196 0 0 1.63345e+06 5041.52 0.67 0.77 0.30 -1 -1 0.67 0.415319 0.378714 944 1275 494 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_28.v common 17.58 vpr 72.33 MiB 0.11 14412 -1 -1 1 0.63 -1 -1 37856 -1 -1 128 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74064 22 19 3945 3267 1 2024 177 18 18 324 mult_36 auto 35.3 MiB 1.13 11681 72.3 MiB 0.98 0.01 4.02136 -2037.61 -4.02136 4.02136 1.21 0.00579253 0.00524941 0.482741 0.435257 70 21620 31 8.18539e+06 5.0516e+06 1.34436e+06 4149.26 8.46 2.39209 2.13402 37264 347768 -1 17704 15 7541 8837 1442349 318893 0 0 1442349 318893 7945 7591 0 0 63705 57224 0 0 82471 69579 0 0 7958 7660 0 0 642725 87607 0 0 637545 89232 0 0 7945 0 0 422 4183 4696 9682 984 50 4.52256 4.52256 -2497.97 -4.52256 0 0 1.69344e+06 5226.66 0.70 0.59 0.34 -1 -1 0.70 0.290116 0.266366 962 1294 513 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_29.v common 19.57 vpr 73.43 MiB 0.10 15024 -1 -1 1 0.48 -1 -1 38780 -1 -1 135 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75192 22 19 4159 3447 1 2140 185 22 22 484 mult_36 auto 36.2 MiB 0.66 13379 73.4 MiB 0.60 0.01 3.89606 -2167.34 -3.89606 3.89606 1.24 0.00306703 0.00264003 0.244566 0.212045 68 26287 45 1.33067e+07 5.5506e+06 2.01763e+06 4168.66 11.38 1.86332 1.64546 55470 518816 -1 20287 19 8403 9886 1847263 392459 0 0 1847263 392459 8801 8457 0 0 70702 64302 0 0 90026 76613 0 0 8803 8517 0 0 835082 118823 0 0 833849 115747 0 0 8801 0 0 417 4419 5194 10888 1130 126 4.39726 4.39726 -2864.08 -4.39726 0 0 2.51205e+06 5190.18 0.95 0.79 0.33 -1 -1 0.95 0.377215 0.343338 1015 1367 532 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_30.v common 20.54 vpr 73.81 MiB 0.11 14932 -1 -1 1 0.69 -1 -1 40244 -1 -1 137 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75580 22 19 4233 3504 1 2179 187 22 22 484 mult_36 auto 36.8 MiB 1.02 13676 73.8 MiB 0.96 0.01 3.77076 -2120.46 -3.77076 3.77076 2.00 0.00530872 0.00465627 0.442661 0.391545 70 24321 28 1.33067e+07 5.58003e+06 2.06816e+06 4273.05 9.60 2.17959 1.93738 56434 539830 -1 20411 19 8458 9929 1954456 415180 0 0 1954456 415180 8936 8534 0 0 74645 67369 0 0 95807 81307 0 0 8940 8612 0 0 877213 123441 0 0 888915 125917 0 0 8936 0 0 493 4140 5694 11066 1080 68 4.39726 4.39726 -2673.53 -4.39726 0 0 2.60483e+06 5381.88 0.91 0.81 0.35 -1 -1 0.91 0.34685 0.315167 1034 1386 551 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_31.v common 20.15 vpr 75.38 MiB 0.14 15224 -1 -1 1 0.63 -1 -1 40372 -1 -1 143 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77184 22 19 4410 3647 1 2283 193 22 22 484 mult_36 auto 37.3 MiB 1.31 14460 75.4 MiB 1.10 0.01 3.89606 -2213.07 -3.89606 3.89606 2.00 0.00679869 0.00618349 0.55016 0.493392 70 25164 41 1.33067e+07 5.66832e+06 2.06816e+06 4273.05 8.80 2.56433 2.29248 56434 539830 -1 21753 16 8661 9981 1804264 382134 0 0 1804264 382134 9008 8691 0 0 71874 64860 0 0 94355 79240 0 0 9009 8731 0 0 821766 106046 0 0 798252 114566 0 0 9008 0 0 366 4871 4429 10872 1019 296 4.52256 4.52256 -2872.8 -4.52256 0 0 2.60483e+06 5381.88 1.10 0.44 0.51 -1 -1 1.10 0.195343 0.178182 1077 1441 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_32.v common 20.03 vpr 75.13 MiB 0.17 15448 -1 -1 1 0.59 -1 -1 40516 -1 -1 145 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76936 22 19 4484 3704 1 2328 195 22 22 484 mult_36 auto 38.1 MiB 0.96 14008 75.1 MiB 0.61 0.01 3.77076 -2263.87 -3.77076 3.77076 1.25 0.00344096 0.00302435 0.264765 0.231939 68 27330 44 1.33067e+07 5.69776e+06 2.01763e+06 4168.66 11.32 1.88438 1.6656 55470 518816 -1 20985 23 9698 11440 1886849 406909 0 0 1886849 406909 10230 9776 0 0 83533 76164 0 0 105343 89884 0 0 10239 9859 0 0 824309 111092 0 0 853195 110134 0 0 10230 0 0 553 5549 6159 12903 1277 175 4.39726 4.39726 -2885.9 -4.39726 0 0 2.51205e+06 5190.18 0.84 0.88 0.30 -1 -1 0.84 0.441779 0.396669 1096 1460 589 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_33.v common 19.68 vpr 76.45 MiB 0.19 16480 -1 -1 1 0.78 -1 -1 40752 -1 -1 157 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78280 22 19 4843 4029 1 2439 208 22 22 484 mult_36 auto 39.7 MiB 0.75 14297 76.4 MiB 1.10 0.01 3.77076 -2409.32 -3.77076 3.77076 2.00 0.00358092 0.00311977 0.519514 0.46174 68 26380 24 1.33067e+07 6.27034e+06 2.01763e+06 4168.66 8.09 1.87594 1.65474 55470 518816 -1 21476 16 8831 10383 1694194 370818 0 0 1694194 370818 9327 8933 0 0 77354 70476 0 0 97191 83430 0 0 9339 8998 0 0 739864 101333 0 0 761119 97648 0 0 9327 0 0 512 5265 5661 11757 1118 246 4.39726 4.39726 -3176.06 -4.39726 0 0 2.51205e+06 5190.18 1.10 0.70 0.49 -1 -1 1.10 0.34516 0.313728 1185 1606 608 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_34.v common 19.46 vpr 76.66 MiB 0.19 16552 -1 -1 1 0.71 -1 -1 40692 -1 -1 160 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78504 22 19 4917 4086 1 2483 211 22 22 484 mult_36 auto 40.0 MiB 1.05 16311 76.7 MiB 0.75 0.01 4.02136 -2519.45 -4.02136 4.02136 1.25 0.00362458 0.0031647 0.323569 0.282476 74 29743 47 1.33067e+07 6.31449e+06 2.15943e+06 4461.62 9.41 1.62466 1.42052 57402 562966 -1 24396 16 9887 11478 2397145 481602 0 0 2397145 481602 10452 9998 0 0 77068 69668 0 0 103246 84759 0 0 10460 10063 0 0 1092564 150853 0 0 1103355 156261 0 0 10452 0 0 584 5522 5161 13375 1089 206 4.52256 4.52256 -3217.23 -4.52256 0 0 2.68771e+06 5553.12 1.16 0.72 0.34 -1 -1 1.16 0.275825 0.251823 1205 1625 627 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_35.v common 88.54 vpr 78.18 MiB 0.13 17132 -1 -1 1 0.56 -1 -1 41452 -1 -1 163 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80060 22 19 5093 4228 1 2586 214 22 22 484 mult_36 auto 41.7 MiB 1.32 17244 78.2 MiB 0.71 0.01 3.89606 -2602.71 -3.89606 3.89606 1.26 0.00408705 0.00358379 0.308538 0.269973 70 31189 40 1.33067e+07 6.35863e+06 2.06816e+06 4273.05 79.92 5.20735 4.58917 56434 539830 -1 25466 17 10023 11636 2300827 477634 0 0 2300827 477634 10538 10099 0 0 86927 78686 0 0 111275 94277 0 0 10539 10148 0 0 1033666 141286 0 0 1047882 143138 0 0 10538 0 0 533 5541 5434 13485 1140 207 4.52256 4.52256 -3245.93 -4.52256 0 0 2.60483e+06 5381.88 0.67 0.49 0.31 -1 -1 0.67 0.193303 0.175127 1248 1680 646 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_36.v common 23.40 vpr 78.48 MiB 0.19 17068 -1 -1 1 0.90 -1 -1 41212 -1 -1 165 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80368 22 19 5167 4285 1 2630 216 22 22 484 mult_36 auto 41.9 MiB 1.25 15944 78.5 MiB 1.33 0.02 4.02136 -2636.64 -4.02136 4.02136 1.99 0.00734545 0.00661808 0.6237 0.556961 74 29769 46 1.33067e+07 6.38806e+06 2.15943e+06 4461.62 11.77 3.44852 3.0703 57402 562966 -1 24294 17 10288 11994 1977380 411307 0 0 1977380 411307 10809 10347 0 0 78833 71139 0 0 106254 87472 0 0 10811 10404 0 0 877214 117611 0 0 893459 114334 0 0 10809 0 0 542 5212 6416 13715 1234 3 4.27196 4.27196 -3335.05 -4.27196 0 0 2.68771e+06 5553.12 0.81 0.83 0.34 -1 -1 0.81 0.435834 0.397019 1267 1699 665 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_37.v common 20.10 vpr 79.07 MiB 0.21 17632 -1 -1 1 0.72 -1 -1 40072 -1 -1 173 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80964 22 19 5380 4464 1 2739 225 24 24 576 mult_36 auto 42.5 MiB 1.39 17893 79.1 MiB 0.82 0.01 4.02136 -2915.58 -4.02136 4.02136 1.51 0.00397778 0.00346659 0.344405 0.300155 74 30118 32 1.60519e+07 6.90179e+06 2.56259e+06 4448.94 7.64 2.00963 1.76983 67906 667765 -1 25456 17 9846 11504 2099895 440259 0 0 2099895 440259 10315 9907 0 0 78089 70269 0 0 103183 85609 0 0 10320 9969 0 0 950598 131339 0 0 947390 133166 0 0 10315 0 0 486 5822 6038 12896 1247 506 4.64786 4.64786 -3554.28 -4.64786 0 0 3.19068e+06 5539.38 1.30 0.98 0.62 -1 -1 1.30 0.497362 0.452831 1321 1772 684 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_38.v common 20.83 vpr 79.60 MiB 0.18 17648 -1 -1 1 0.92 -1 -1 41744 -1 -1 176 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81508 22 19 5454 4521 1 2784 228 24 24 576 mult_36 auto 43.1 MiB 1.25 17465 79.6 MiB 1.41 0.02 4.14666 -2931.9 -4.14666 4.14666 1.51 0.00890041 0.00804328 0.64108 0.571048 76 30411 23 1.60519e+07 6.94594e+06 2.61600e+06 4541.67 8.40 1.9125 1.68606 68478 680951 -1 25523 18 9919 11342 2160619 459180 0 0 2160619 459180 10413 9961 0 0 79415 72231 0 0 104673 87490 0 0 10416 10009 0 0 986893 136169 0 0 968809 143320 0 0 10413 0 0 512 4429 5752 13234 963 21 4.39726 4.39726 -3523.92 -4.39726 0 0 3.24203e+06 5628.53 1.40 1.02 0.41 -1 -1 1.40 0.526533 0.479773 1340 1791 703 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_39.v common 23.81 vpr 80.38 MiB 0.22 18184 -1 -1 1 0.98 -1 -1 40556 -1 -1 180 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82308 22 19 5629 4662 1 2882 232 24 24 576 mult_36 auto 43.9 MiB 1.43 18842 80.4 MiB 1.17 0.01 4.27196 -3070.83 -4.27196 4.27196 2.37 0.00399828 0.00347383 0.546487 0.481328 76 33822 47 1.60519e+07 7.0048e+06 2.61600e+06 4541.67 10.51 2.41003 2.11123 68478 680951 -1 27851 16 10624 12223 2414798 490349 0 0 2414798 490349 11140 10695 0 0 83558 75441 0 0 109795 91560 0 0 11140 10757 0 0 1100805 152317 0 0 1098360 149579 0 0 11140 0 0 533 4771 6365 14302 1108 132 4.64786 4.64786 -3729.72 -4.64786 0 0 3.24203e+06 5628.53 1.07 0.73 0.45 -1 -1 1.07 0.354932 0.322067 1381 1846 722 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_40.v common 27.36 vpr 81.09 MiB 0.23 18184 -1 -1 1 0.82 -1 -1 41676 -1 -1 182 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83032 22 19 5703 4719 1 2929 234 24 24 576 mult_36 auto 44.6 MiB 1.28 19511 81.1 MiB 0.90 0.01 4.02136 -3137.4 -4.02136 4.02136 1.52 0.00435674 0.00380883 0.370764 0.323561 68 37642 48 1.60519e+07 7.03423e+06 2.39371e+06 4155.74 15.68 2.60907 2.29389 65606 615345 -1 28472 28 11875 13800 2590467 581457 0 0 2590467 581457 12457 11975 0 0 94374 85530 0 0 126052 105133 0 0 12460 12034 0 0 1182478 183379 0 0 1162646 183406 0 0 12457 0 0 604 6749 7018 15727 1394 223 4.52256 4.52256 -3881.14 -4.52256 0 0 2.98162e+06 5176.42 0.90 0.73 0.48 -1 -1 0.90 0.3426 0.307185 1400 1865 741 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_41.v common 31.90 vpr 81.88 MiB 0.23 18716 -1 -1 1 0.80 -1 -1 40984 -1 -1 190 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83848 22 19 5950 4932 1 3039 243 24 24 576 mult_36 auto 45.4 MiB 1.28 20898 81.9 MiB 1.64 0.02 4.27196 -3240.13 -4.27196 4.27196 2.33 0.00980662 0.00885531 0.776889 0.6954 76 35735 31 1.60519e+07 7.54795e+06 2.61600e+06 4541.67 17.80 4.33503 3.88095 68478 680951 -1 29526 16 11001 12721 2468017 506797 0 0 2468017 506797 11553 11136 0 0 87755 79480 0 0 115054 96264 0 0 11559 11199 0 0 1107372 155366 0 0 1134724 153352 0 0 11553 0 0 572 6211 6115 14748 1211 498 4.89846 4.89846 -3940.35 -4.89846 0 0 3.24203e+06 5628.53 1.50 1.03 0.71 -1 -1 1.50 0.465548 0.422559 1461 1956 760 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_42.v common 30.50 vpr 82.37 MiB 0.22 18800 -1 -1 1 1.09 -1 -1 42572 -1 -1 193 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84344 22 19 6024 4989 1 3082 246 24 24 576 mult_36 auto 45.9 MiB 1.47 19813 82.4 MiB 1.68 0.02 4.02136 -3217.23 -4.02136 4.02136 2.32 0.00751177 0.0066022 0.758393 0.674445 76 34752 39 1.60519e+07 7.5921e+06 2.61600e+06 4541.67 16.38 4.35323 3.8525 68478 680951 -1 28927 19 11681 13378 2534201 534113 0 0 2534201 534113 12308 11769 0 0 93171 84459 0 0 122276 102172 0 0 12309 11828 0 0 1143626 162087 0 0 1150511 161798 0 0 12308 0 0 647 5595 5337 15803 1129 163 4.39726 4.39726 -3959.46 -4.39726 0 0 3.24203e+06 5628.53 1.27 1.21 0.44 -1 -1 1.27 0.615619 0.559918 1480 1975 779 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_43.v common 25.91 vpr 83.25 MiB 0.22 19136 -1 -1 1 0.82 -1 -1 42820 -1 -1 199 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85248 22 19 6198 5129 1 3181 252 24 24 576 mult_36 auto 47.0 MiB 1.57 20655 83.2 MiB 1.55 0.01 4.14666 -3346.84 -4.14666 4.14666 2.36 0.00491024 0.00433043 0.696628 0.617937 74 37107 44 1.60519e+07 7.68039e+06 2.56259e+06 4448.94 12.95 3.51123 3.10268 67906 667765 -1 30308 18 12350 14284 2757615 577678 0 0 2757615 577678 12936 12444 0 0 99862 90795 0 0 132920 109679 0 0 12936 12507 0 0 1242055 178152 0 0 1256906 174101 0 0 12936 0 0 603 7140 6756 16422 1377 673 4.39726 4.39726 -4239.22 -4.39726 0 0 3.19068e+06 5539.38 1.01 0.72 0.40 -1 -1 1.01 0.302116 0.273323 1523 2030 798 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_44.v common 31.42 vpr 83.93 MiB 0.29 19380 -1 -1 1 0.82 -1 -1 42920 -1 -1 200 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85944 22 19 6272 5186 1 3226 253 24 24 576 mult_36 auto 47.6 MiB 1.66 21784 83.9 MiB 1.49 0.02 4.14666 -3366.96 -4.14666 4.14666 1.61 0.00792463 0.00693276 0.633516 0.555168 82 34125 47 1.60519e+07 7.69511e+06 2.78508e+06 4835.20 17.89 4.88729 4.33761 70778 734779 -1 29262 17 11360 13038 2199998 461194 0 0 2199998 461194 11919 11454 0 0 86116 77331 0 0 114078 94530 0 0 11921 11519 0 0 993344 130955 0 0 982620 135405 0 0 11919 0 0 576 5130 5587 15034 1168 385 4.52256 4.52256 -3919.58 -4.52256 0 0 3.48632e+06 6052.64 1.64 0.93 0.74 -1 -1 1.64 0.426729 0.388164 1542 2049 817 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_45.v common 29.00 vpr 84.56 MiB 0.32 19700 -1 -1 1 0.86 -1 -1 43260 -1 -1 208 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86592 22 19 6485 5365 1 3338 262 24 24 576 mult_36 auto 48.3 MiB 1.16 22644 84.6 MiB 1.08 0.01 4.14666 -3504.85 -4.14666 4.14666 1.73 0.00524408 0.00463825 0.481515 0.427072 84 37706 34 1.60519e+07 8.20883e+06 2.84938e+06 4946.85 15.22 3.6725 3.25717 71930 760447 -1 30720 16 11634 13638 2261912 474169 0 0 2261912 474169 12219 11705 0 0 91347 82302 0 0 121385 100092 0 0 12234 11796 0 0 1022712 132059 0 0 1002015 136215 0 0 12219 0 0 604 6859 6752 15269 1487 476 4.64786 4.64786 -4096.67 -4.64786 0 0 3.60864e+06 6265.01 1.69 1.05 0.79 -1 -1 1.69 0.529052 0.482376 1593 2122 836 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_46.v common 29.89 vpr 85.00 MiB 0.27 19844 -1 -1 1 1.28 -1 -1 43308 -1 -1 210 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87036 22 19 6559 5422 1 3380 264 24 24 576 mult_36 auto 48.7 MiB 1.46 22795 85.0 MiB 1.76 0.02 4.14666 -3537.9 -4.14666 4.14666 1.68 0.0100897 0.00905129 0.751575 0.65952 78 37117 50 1.60519e+07 8.23826e+06 2.67122e+06 4637.53 14.85 3.63936 3.19237 69630 706637 -1 31531 17 12527 14798 2555511 549221 0 0 2555511 549221 13191 12627 0 0 101510 91694 0 0 134624 111757 0 0 13194 12695 0 0 1141514 161812 0 0 1151478 158636 0 0 13191 0 0 682 7784 8593 16646 1701 669 4.39726 4.39726 -4226.25 -4.39726 0 0 3.35110e+06 5817.88 1.61 1.12 0.74 -1 -1 1.61 0.51491 0.468729 1613 2141 855 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_47.v common 35.97 vpr 86.32 MiB 0.31 20312 -1 -1 1 0.83 -1 -1 43628 -1 -1 216 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88388 22 19 6735 5564 1 3477 270 24 24 576 mult_36 auto 50.2 MiB 1.74 24680 86.3 MiB 1.88 0.02 4.52256 -3782.14 -4.52256 4.52256 1.98 0.0102599 0.00921537 0.848542 0.756981 82 40151 44 1.60519e+07 8.32656e+06 2.78508e+06 4835.20 21.56 4.70508 4.15757 70778 734779 -1 33310 16 12709 14582 2738720 561613 0 0 2738720 561613 13258 12793 0 0 98034 88135 0 0 130783 107316 0 0 13260 12858 0 0 1236344 171727 0 0 1247041 168784 0 0 13258 0 0 566 6601 7069 16362 1376 54 4.89846 4.89846 -4451.49 -4.89846 0 0 3.48632e+06 6052.64 1.16 0.67 0.57 -1 -1 1.16 0.28113 0.254441 1656 2196 874 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_48.v common 39.66 vpr 86.71 MiB 0.28 20456 -1 -1 1 1.41 -1 -1 43408 -1 -1 218 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88796 22 19 6809 5621 1 3526 272 24 24 576 mult_36 auto 50.7 MiB 1.35 23908 86.7 MiB 2.02 0.02 4.02136 -3693.79 -4.02136 4.02136 2.18 0.0108642 0.00989476 0.928435 0.827213 82 40663 46 1.60519e+07 8.35599e+06 2.78508e+06 4835.20 23.18 4.997 4.41492 70778 734779 -1 32725 17 12567 14420 2628492 552991 0 0 2628492 552991 13190 12656 0 0 99962 90116 0 0 130310 108468 0 0 13194 12718 0 0 1193099 161456 0 0 1178737 167577 0 0 13190 0 0 645 6404 5811 16599 1285 706 4.52256 4.52256 -4726.77 -4.52256 0 0 3.48632e+06 6052.64 1.64 1.14 0.76 -1 -1 1.64 0.543537 0.491272 1674 2215 893 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_49.v common 46.72 vpr 87.64 MiB 0.26 20816 -1 -1 1 1.26 -1 -1 43896 -1 -1 228 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89748 22 19 7094 5872 1 3640 283 24 24 576 mult_36 auto 51.6 MiB 1.80 23816 87.6 MiB 2.15 0.03 4.27196 -3979.66 -4.27196 4.27196 1.77 0.0112633 0.0100886 0.936974 0.826827 78 41490 47 1.60519e+07 8.89916e+06 2.67122e+06 4637.53 32.38 5.94762 5.24915 69630 706637 -1 33616 16 12984 15090 2797542 567951 0 0 2797542 567951 13592 13057 0 0 101708 91026 0 0 135966 111883 0 0 13597 13111 0 0 1265761 171137 0 0 1266918 167737 0 0 13592 0 0 625 6998 7415 16785 1556 228 4.77316 4.77316 -4868.19 -4.77316 0 0 3.35110e+06 5817.88 1.07 0.72 0.43 -1 -1 1.07 0.312803 0.28388 1745 2324 912 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_50.v common 33.69 vpr 88.14 MiB 0.28 21028 -1 -1 1 1.23 -1 -1 43676 -1 -1 230 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90256 22 19 7168 5929 1 3676 285 24 24 576 mult_36 auto 51.8 MiB 1.74 24753 88.1 MiB 1.20 0.01 4.14666 -3986.24 -4.14666 4.14666 2.00 0.00572912 0.0050578 0.481679 0.422791 84 41338 30 1.60519e+07 8.92859e+06 2.84938e+06 4946.85 19.09 4.14844 3.65315 71930 760447 -1 34036 18 12877 14990 2676930 541389 0 0 2676930 541389 13507 12964 0 0 99808 89990 0 0 130273 108351 0 0 13510 13044 0 0 1207771 160234 0 0 1212061 156806 0 0 13507 0 0 650 7728 8659 16822 1551 696 4.64786 4.64786 -4700.22 -4.64786 0 0 3.60864e+06 6265.01 1.21 0.80 0.48 -1 -1 1.21 0.373205 0.338492 1764 2343 931 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_51.v common 31.67 vpr 89.33 MiB 0.26 21416 -1 -1 1 1.47 -1 -1 44452 -1 -1 235 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91472 22 19 7344 6071 1 3782 290 24 24 576 mult_36 auto 53.3 MiB 1.90 26953 89.3 MiB 1.15 0.01 4.39726 -4060.21 -4.39726 4.39726 1.73 0.00597647 0.00526425 0.472478 0.415595 88 42143 36 1.60519e+07 9.00217e+06 2.98162e+06 5176.42 16.96 4.35554 3.83717 73078 787199 -1 36249 18 13376 15456 2994147 604506 0 0 2994147 604506 13987 13462 0 0 102842 92226 0 0 139646 115134 0 0 13989 13543 0 0 1355590 187361 0 0 1368093 182780 0 0 13987 0 0 629 6629 8055 17576 1519 922 4.77316 4.77316 -5039.11 -4.77316 0 0 3.70823e+06 6437.90 1.25 1.18 0.55 -1 -1 1.25 0.539107 0.486697 1808 2398 950 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_pipe_52.v common 36.32 vpr 89.41 MiB 0.31 21748 -1 -1 1 1.62 -1 -1 44400 -1 -1 237 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 91556 22 19 7418 6128 1 3828 292 24 24 576 mult_36 auto 53.4 MiB 1.98 25183 89.4 MiB 2.07 0.02 4.14666 -3993.8 -4.14666 4.14666 2.34 0.00945088 0.00831192 0.929647 0.83112 78 42609 33 1.60519e+07 9.0316e+06 2.67122e+06 4637.53 20.64 3.70859 3.26049 69630 706637 -1 35584 16 14122 16543 2974148 623128 0 0 2974148 623128 14827 14240 0 0 115003 103688 0 0 152499 126511 0 0 14831 14324 0 0 1339108 180311 0 0 1337880 184054 0 0 14827 0 0 723 8785 9664 18674 1786 820 4.52256 4.52256 -4766.31 -4.52256 0 0 3.35110e+06 5817.88 1.11 0.73 0.46 -1 -1 1.11 0.313007 0.283862 1827 2417 969 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_14.v common 7.77 vpr 58.56 MiB 0.06 9312 -1 -1 1 0.21 -1 -1 34188 -1 -1 43 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59964 22 19 1246 925 1 718 88 16 16 256 mult_36 auto 20.5 MiB 0.26 3935 58.6 MiB 0.19 0.00 7.03101 -320.951 -7.03101 7.03101 0.90 0.000990758 0.000828682 0.07401 0.0626736 54 7598 31 6.62819e+06 2.21677e+06 829453. 3240.05 3.68 0.511529 0.456882 26108 202796 -1 6246 30 6107 6843 1306069 347543 0 0 1306069 347543 6843 6223 0 0 50695 48243 0 0 70909 54111 0 0 6874 6303 0 0 587540 118945 0 0 583208 113718 0 0 6843 0 0 755 3335 2885 37434 0 0 7.78353 7.78353 -418.187 -7.78353 0 0 1.02522e+06 4004.78 0.24 0.26 0.12 -1 -1 0.24 0.0669836 0.0606951 299 285 247 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_15.v common 7.62 vpr 58.75 MiB 0.06 9396 -1 -1 1 0.18 -1 -1 34716 -1 -1 46 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60164 22 19 1344 989 1 778 92 16 16 256 mult_36 auto 20.8 MiB 0.34 4309 58.8 MiB 0.20 0.00 6.86185 -318.377 -6.86185 6.86185 0.57 0.000702418 0.000575626 0.0747758 0.0630188 56 8709 31 6.62819e+06 2.65692e+06 849745. 3319.32 3.85 0.457296 0.405495 26364 208198 -1 7175 38 9347 10495 2241356 621767 0 0 2241356 621767 10495 9635 0 0 75405 70778 0 0 113967 82462 0 0 10555 9708 0 0 1018669 225109 0 0 1012265 224075 0 0 10495 0 0 1176 6049 5031 57327 0 0 8.25203 8.25203 -469.107 -8.25203 0 0 1.04740e+06 4091.43 0.29 0.46 0.11 -1 -1 0.29 0.0966128 0.0877823 321 304 266 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_16.v common 9.11 vpr 59.17 MiB 0.06 9608 -1 -1 1 0.14 -1 -1 34908 -1 -1 48 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60588 22 19 1418 1046 1 821 94 16 16 256 mult_36 auto 21.2 MiB 0.45 4533 59.2 MiB 0.27 0.00 7.04201 -332.846 -7.04201 7.04201 0.60 0.00131721 0.00112043 0.106393 0.0906566 56 8805 33 6.62819e+06 2.68636e+06 849745. 3319.32 4.67 0.592466 0.524792 26364 208198 -1 7200 24 6776 7744 1291063 323531 0 0 1291063 323531 7744 7029 0 0 60153 56491 0 0 79991 64841 0 0 7802 7088 0 0 559091 93700 0 0 576282 94382 0 0 7744 0 0 994 4383 3812 47503 0 0 8.75508 8.75508 -464.641 -8.75508 0 0 1.04740e+06 4091.43 0.39 0.44 0.20 -1 -1 0.39 0.140585 0.129107 340 323 285 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_17.v common 9.28 vpr 59.59 MiB 0.08 9948 -1 -1 1 0.21 -1 -1 34304 -1 -1 52 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61020 22 19 1518 1112 1 879 98 16 16 256 mult_36 auto 21.8 MiB 0.31 4914 59.6 MiB 0.31 0.00 7.54655 -377.521 -7.54655 7.54655 0.56 0.00164435 0.00141864 0.117877 0.102056 56 9847 38 6.62819e+06 2.74522e+06 849745. 3319.32 5.42 0.773428 0.695136 26364 208198 -1 8172 29 8511 9452 1620916 387505 0 0 1620916 387505 9452 8682 0 0 68373 64093 0 0 94361 74351 0 0 9498 8732 0 0 736595 115620 0 0 702637 116027 0 0 9452 0 0 967 6672 6211 60384 0 0 9.48072 9.48072 -559.343 -9.48072 0 0 1.04740e+06 4091.43 0.29 0.50 0.11 -1 -1 0.29 0.140379 0.12721 365 342 304 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_18.v common 9.49 vpr 60.03 MiB 0.05 10156 -1 -1 1 0.22 -1 -1 34592 -1 -1 55 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61468 22 19 1592 1169 1 918 101 16 16 256 mult_36 auto 22.4 MiB 0.49 5324 60.0 MiB 0.22 0.00 7.49539 -396.092 -7.49539 7.49539 0.54 0.00172821 0.00148149 0.0772006 0.0662113 56 10175 41 6.62819e+06 2.78937e+06 849745. 3319.32 5.00 0.72265 0.649785 26364 208198 -1 8820 25 8485 9392 1754146 399895 0 0 1754146 399895 9392 8760 0 0 73262 68935 0 0 96411 78553 0 0 9497 8844 0 0 780385 116312 0 0 785199 118491 0 0 9392 0 0 934 5700 5057 51989 0 0 9.29732 9.29732 -569.304 -9.29732 0 0 1.04740e+06 4091.43 0.40 0.44 0.20 -1 -1 0.40 0.111418 0.101789 383 361 323 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_19.v common 10.66 vpr 60.61 MiB 0.09 10520 -1 -1 1 0.25 -1 -1 35064 -1 -1 58 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62064 22 19 1688 1231 1 976 105 16 16 256 mult_36 auto 22.8 MiB 0.53 5689 60.6 MiB 0.32 0.00 7.48725 -407.023 -7.48725 7.48725 0.84 0.00150267 0.00125934 0.12109 0.104651 58 11164 50 6.62819e+06 3.22951e+06 871168. 3403.00 5.51 0.706564 0.627303 26872 219187 -1 9023 28 8283 9373 1575543 378918 0 0 1575543 378918 9140 8457 0 0 63141 59205 0 0 88321 68810 0 0 9174 8542 0 0 712447 117167 0 0 693320 116737 0 0 9140 0 0 884 3947 4133 33901 251 1 8.99658 8.99658 -560.549 -8.99658 0 0 1.09288e+06 4269.05 0.40 0.52 0.20 -1 -1 0.40 0.157835 0.143243 404 380 342 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_20.v common 9.62 vpr 60.85 MiB 0.09 10664 -1 -1 1 0.23 -1 -1 35052 -1 -1 59 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62312 22 19 1762 1288 1 1014 106 16 16 256 mult_36 auto 23.2 MiB 0.56 5969 60.9 MiB 0.45 0.01 7.3951 -425.079 -7.3951 7.3951 0.82 0.00214305 0.00186579 0.177073 0.154283 64 10985 45 6.62819e+06 3.24423e+06 943753. 3686.54 4.69 0.704437 0.625919 27892 240595 -1 8995 25 7632 8671 1307192 296614 0 0 1307192 296614 8671 7840 0 0 61282 57126 0 0 83018 66388 0 0 8722 7913 0 0 586842 78817 0 0 558657 78530 0 0 8671 0 0 1063 5680 6502 64790 0 0 8.58677 8.58677 -595.348 -8.58677 0 0 1.19033e+06 4649.74 0.29 0.34 0.19 -1 -1 0.29 0.113146 0.101887 423 399 361 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_21.v common 10.06 vpr 61.45 MiB 0.09 10984 -1 -1 1 0.30 -1 -1 35544 -1 -1 62 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62920 22 19 1859 1351 1 1072 109 16 16 256 mult_36 auto 23.8 MiB 0.59 6209 61.4 MiB 0.26 0.00 7.42524 -437.67 -7.42524 7.42524 0.68 0.00105541 0.000897699 0.0983351 0.0850267 68 10750 34 6.62819e+06 3.28838e+06 1.00038e+06 3907.74 5.03 0.768128 0.687377 28404 252462 -1 9000 26 8038 9122 1342352 301835 0 0 1342352 301835 8892 8203 0 0 63463 59905 0 0 85157 67970 0 0 8917 8311 0 0 586354 80069 0 0 589569 77377 0 0 8892 0 0 876 4434 4440 37532 251 2 8.40132 8.40132 -614.701 -8.40132 0 0 1.24648e+06 4869.04 0.48 0.37 0.25 -1 -1 0.48 0.115955 0.105473 445 418 380 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_22.v common 10.38 vpr 61.76 MiB 0.10 10848 -1 -1 1 0.29 -1 -1 35060 -1 -1 66 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63244 22 19 1933 1408 1 1111 113 16 16 256 mult_36 auto 24.0 MiB 0.50 6696 61.8 MiB 0.27 0.00 7.42025 -475.635 -7.42025 7.42025 0.63 0.00124837 0.00107567 0.100214 0.0866911 64 12438 27 6.62819e+06 3.34724e+06 943753. 3686.54 5.55 0.840507 0.748363 27892 240595 -1 10417 25 8720 10261 1590282 353061 0 0 1590282 353061 9438 8878 0 0 70251 65368 0 0 94294 76000 0 0 9442 8957 0 0 692973 99671 0 0 713884 94187 0 0 9438 0 0 746 4298 4607 13342 857 26 8.55982 8.55982 -827.888 -8.55982 0 0 1.19033e+06 4649.74 0.42 0.32 0.23 -1 -1 0.42 0.100907 0.0918827 464 437 399 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_23.v common 30.20 vpr 62.25 MiB 0.11 11356 -1 -1 1 0.30 -1 -1 35852 -1 -1 68 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63744 22 19 2031 1472 1 1174 116 18 18 324 mult_36 auto 24.6 MiB 0.64 7205 62.2 MiB 0.25 0.00 7.41124 -456.649 -7.41124 7.41124 0.70 0.00103383 0.000874717 0.0863803 0.0741143 60 14535 30 8.18539e+06 3.77267e+06 1.16833e+06 3605.96 24.33 0.955977 0.839494 35004 297736 -1 11718 25 10242 11824 2283889 503811 0 0 2283889 503811 11018 10385 0 0 91073 86117 0 0 116262 95820 0 0 11025 10482 0 0 1040635 147605 0 0 1013876 153402 0 0 11018 0 0 801 4373 4176 15067 881 17 9.13612 9.13612 -741.067 -9.13612 0 0 1.46313e+06 4515.82 0.61 0.77 0.28 -1 -1 0.61 0.232192 0.212517 486 456 418 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_24.v common 12.14 vpr 62.58 MiB 0.11 11260 -1 -1 1 0.32 -1 -1 35772 -1 -1 71 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64084 22 19 2105 1529 1 1210 119 18 18 324 mult_36 auto 24.8 MiB 0.65 7199 62.6 MiB 0.49 0.01 7.45239 -513.793 -7.45239 7.45239 1.17 0.00358134 0.00318715 0.217481 0.193769 60 13436 43 8.18539e+06 3.81682e+06 1.16833e+06 3605.96 5.80 0.922247 0.825926 35004 297736 -1 11139 25 9768 11288 1773678 391274 0 0 1773678 391274 10439 9948 0 0 80739 75951 0 0 103678 84944 0 0 10449 10009 0 0 788110 106212 0 0 780263 104210 0 0 10439 0 0 700 3822 4833 13994 881 20 8.84022 8.84022 -915.141 -8.84022 0 0 1.46313e+06 4515.82 0.50 0.40 0.18 -1 -1 0.50 0.124612 0.113533 505 475 437 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_25.v common 15.16 vpr 62.91 MiB 0.12 11676 -1 -1 1 0.34 -1 -1 35404 -1 -1 73 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64416 22 19 2201 1591 1 1268 121 18 18 324 mult_36 auto 25.4 MiB 0.67 7323 62.9 MiB 0.62 0.01 7.52039 -496.459 -7.52039 7.52039 1.17 0.00322012 0.0028946 0.273557 0.243489 58 14599 31 8.18539e+06 3.84625e+06 1.14310e+06 3528.09 8.36 1.16592 1.04899 34680 290288 -1 12204 26 12491 14297 2555693 556298 0 0 2555693 556298 13411 12760 0 0 99954 93832 0 0 133003 106287 0 0 13411 12831 0 0 1132493 167085 0 0 1163421 163503 0 0 13411 0 0 947 5393 5971 20150 922 11 9.02177 9.02177 -873.394 -9.02177 0 0 1.43297e+06 4422.75 0.45 0.53 0.26 -1 -1 0.45 0.125495 0.113655 526 494 456 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_26.v common 14.00 vpr 63.55 MiB 0.12 11956 -1 -1 1 0.34 -1 -1 36268 -1 -1 76 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65072 22 19 2275 1648 1 1306 124 18 18 324 mult_36 auto 26.1 MiB 0.70 8154 63.5 MiB 0.50 0.01 7.8713 -494.386 -7.8713 7.8713 1.18 0.00323836 0.00289643 0.201216 0.176322 66 15030 37 8.18539e+06 3.8904e+06 1.27759e+06 3943.17 7.51 1.16261 1.04422 36296 327148 -1 12316 24 9811 10877 2416659 509317 0 0 2416659 509317 10421 10034 0 0 83531 78767 0 0 109777 89079 0 0 10436 10065 0 0 1108208 157594 0 0 1094286 163778 0 0 10421 0 0 634 2408 3187 13131 552 2 8.75592 8.75592 -671.212 -8.75592 0 0 1.59950e+06 4936.74 0.49 0.45 0.18 -1 -1 0.49 0.130478 0.119217 546 513 475 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_27.v common 42.23 vpr 63.89 MiB 0.12 12144 -1 -1 1 0.24 -1 -1 36140 -1 -1 82 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65428 22 19 2385 1724 1 1378 131 18 18 324 mult_36 auto 26.5 MiB 0.77 8296 63.9 MiB 0.71 0.01 7.43624 -537.906 -7.43624 7.43624 1.15 0.0036055 0.00313551 0.297343 0.261732 60 17417 44 8.18539e+06 4.37469e+06 1.16833e+06 3605.96 35.17 2.00168 1.78577 35004 297736 -1 13385 28 11364 12911 2578391 561505 0 0 2578391 561505 12349 11617 0 0 96058 90461 0 0 125924 101544 0 0 12359 11724 0 0 1163592 170998 0 0 1168109 175161 0 0 12349 0 0 1010 4040 3773 18018 614 2 9.04582 9.04582 -735.69 -9.04582 0 0 1.46313e+06 4515.82 0.58 0.82 0.21 -1 -1 0.58 0.236392 0.214199 575 532 494 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_28.v common 10.71 vpr 64.50 MiB 0.12 12224 -1 -1 1 0.38 -1 -1 36508 -1 -1 83 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66052 22 19 2459 1781 1 1417 132 18 18 324 mult_36 auto 27.2 MiB 0.51 8901 64.5 MiB 0.32 0.00 7.8713 -549.689 -7.8713 7.8713 0.74 0.0015927 0.00137368 0.123399 0.107322 68 15372 24 8.18539e+06 4.3894e+06 1.31159e+06 4048.11 4.96 0.685742 0.606058 36620 334356 -1 13204 24 9296 10858 1886768 401124 0 0 1886768 401124 9998 9428 0 0 78516 73655 0 0 100620 83250 0 0 10006 9497 0 0 850334 113033 0 0 837294 112261 0 0 9998 0 0 722 4655 4846 13716 903 18 8.98558 8.98558 -1053.82 -8.98558 0 0 1.63345e+06 5041.52 0.70 0.59 0.32 -1 -1 0.70 0.184667 0.168952 594 551 513 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_29.v common 14.45 vpr 65.02 MiB 0.10 12540 -1 -1 1 0.27 -1 -1 36088 -1 -1 85 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66584 22 19 2565 1853 1 1485 135 22 22 484 mult_36 auto 27.7 MiB 0.83 9689 65.0 MiB 0.65 0.01 7.43624 -544.661 -7.43624 7.43624 1.92 0.00367834 0.00317457 0.27212 0.237839 74 15847 29 1.33067e+07 4.81483e+06 2.15943e+06 4461.62 5.86 0.820055 0.723434 57402 562966 -1 13943 25 11215 12893 2368384 490605 0 0 2368384 490605 12177 11408 0 0 92127 86593 0 0 124365 98933 0 0 12178 11488 0 0 1051849 144544 0 0 1075688 137639 0 0 12177 0 0 985 4080 4735 17259 748 2 8.75427 8.75427 -904.863 -8.75427 0 0 2.68771e+06 5553.12 0.83 0.70 0.34 -1 -1 0.83 0.238793 0.216371 619 570 532 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_30.v common 17.03 vpr 65.51 MiB 0.13 12464 -1 -1 1 0.37 -1 -1 36556 -1 -1 89 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67084 22 19 2639 1910 1 1523 139 22 22 484 mult_36 auto 28.2 MiB 0.84 9650 65.5 MiB 0.87 0.01 7.43624 -524.521 -7.43624 7.43624 1.93 0.0021113 0.0018528 0.402948 0.363418 70 16643 47 1.33067e+07 4.87369e+06 2.06816e+06 4273.05 7.76 1.14747 1.02617 56434 539830 -1 14296 28 12062 14042 2642552 543182 0 0 2642552 543182 13161 12240 0 0 92763 86251 0 0 133095 101165 0 0 13169 12355 0 0 1195638 166627 0 0 1194726 164544 0 0 13161 0 0 1129 5437 5220 19219 974 83 8.65597 8.65597 -934.518 -8.65597 0 0 2.60483e+06 5381.88 0.72 0.53 0.36 -1 -1 0.72 0.16844 0.153064 639 589 551 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_31.v common 16.68 vpr 65.88 MiB 0.14 12908 -1 -1 1 0.46 -1 -1 36972 -1 -1 93 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67456 22 19 2744 1981 1 1590 143 22 22 484 mult_36 auto 28.7 MiB 0.88 10213 65.9 MiB 0.45 0.01 7.49539 -582.535 -7.49539 7.49539 1.21 0.00180279 0.00155782 0.155757 0.135941 66 19115 41 1.33067e+07 4.93255e+06 1.96511e+06 4060.15 8.04 0.886013 0.785721 54986 507526 -1 15427 26 13248 15585 3206151 671977 0 0 3206151 671977 14478 13489 0 0 110810 103724 0 0 152621 119258 0 0 14483 13561 0 0 1448395 210870 0 0 1465364 211075 0 0 14478 0 0 1259 6528 7096 21924 1152 33 8.85917 8.85917 -1094.79 -8.85917 0 0 2.45963e+06 5081.88 1.14 1.07 0.49 -1 -1 1.14 0.308636 0.282749 665 608 570 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_32.v common 14.63 vpr 65.95 MiB 0.14 12888 -1 -1 1 0.45 -1 -1 36292 -1 -1 96 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67536 22 19 2818 2038 1 1627 146 22 22 484 mult_36 auto 28.7 MiB 0.94 10362 66.0 MiB 0.43 0.01 7.3951 -550.069 -7.3951 7.3951 1.22 0.00180333 0.00154063 0.157978 0.136575 72 17928 49 1.33067e+07 4.9767e+06 2.11301e+06 4365.72 6.86 0.867959 0.76684 56918 551676 -1 15334 24 13147 15116 2915499 602826 0 0 2915499 602826 14274 13410 0 0 104515 97870 0 0 145569 112538 0 0 14285 13523 0 0 1302518 181690 0 0 1334338 183795 0 0 14274 0 0 1151 5635 5705 20562 901 2 9.17512 9.17512 -1040.08 -9.17512 0 0 2.64603e+06 5467.00 0.76 0.58 0.32 -1 -1 0.76 0.147419 0.133169 684 627 589 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_33.v common 15.44 vpr 66.59 MiB 0.11 13628 -1 -1 1 0.51 -1 -1 36672 -1 -1 100 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68188 22 19 2923 2109 1 1695 151 22 22 484 mult_36 auto 29.3 MiB 0.80 10491 66.6 MiB 0.50 0.01 7.94064 -597.141 -7.94064 7.94064 1.21 0.00197855 0.00170667 0.187693 0.163045 64 18725 50 1.33067e+07 5.43155e+06 1.90554e+06 3937.06 6.72 0.927283 0.820125 54502 494576 -1 15624 26 14025 15725 2844460 605059 0 0 2844460 605059 14922 14277 0 0 112829 105589 0 0 153766 122042 0 0 14930 14390 0 0 1284410 172497 0 0 1263603 176264 0 0 14922 0 0 920 5184 5513 22697 853 34 9.66307 9.66307 -1135.39 -9.66307 0 0 2.40101e+06 4960.76 1.09 1.03 0.46 -1 -1 1.09 0.344986 0.314087 710 646 608 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_34.v common 21.45 vpr 67.02 MiB 0.16 13740 -1 -1 1 0.34 -1 -1 37104 -1 -1 101 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68628 22 19 2997 2166 1 1734 152 22 22 484 mult_36 auto 29.7 MiB 1.10 10939 67.0 MiB 0.84 0.01 7.88963 -601.708 -7.88963 7.88963 1.91 0.00458161 0.00410176 0.353428 0.31282 64 20629 44 1.33067e+07 5.44627e+06 1.90554e+06 3937.06 11.76 1.68384 1.50483 54502 494576 -1 16432 23 12305 14141 2480038 520783 0 0 2480038 520783 13303 12597 0 0 98622 91921 0 0 131586 107417 0 0 13311 12690 0 0 1115088 145783 0 0 1108128 150375 0 0 13303 0 0 1024 5137 5851 18838 893 45 9.49497 9.49497 -1263.79 -9.49497 0 0 2.40101e+06 4960.76 0.84 0.76 0.28 -1 -1 0.84 0.248798 0.225518 729 665 627 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_35.v common 16.62 vpr 67.72 MiB 0.16 13976 -1 -1 1 0.35 -1 -1 36920 -1 -1 106 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69348 22 19 3101 2236 1 1801 157 22 22 484 mult_36 auto 30.5 MiB 0.77 11969 67.7 MiB 0.42 0.01 8.30854 -645.602 -8.30854 8.30854 1.21 0.00205881 0.00179102 0.15225 0.133076 72 21260 42 1.33067e+07 5.51985e+06 2.11301e+06 4365.72 7.79 0.905505 0.80194 56918 551676 -1 17602 28 14440 16721 3289301 678899 0 0 3289301 678899 15722 14784 0 0 115902 108413 0 0 157930 123714 0 0 15727 14868 0 0 1478587 207986 0 0 1505433 209134 0 0 15722 0 0 1309 6270 7156 22767 1084 15 10.2964 10.2964 -1101.77 -10.2964 0 0 2.64603e+06 5467.00 1.24 1.13 0.53 -1 -1 1.24 0.313494 0.286537 755 684 646 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_36.v common 19.75 vpr 68.07 MiB 0.11 13992 -1 -1 1 0.36 -1 -1 37732 -1 -1 107 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69708 22 19 3175 2293 1 1836 158 22 22 484 mult_36 auto 30.9 MiB 0.98 12024 68.1 MiB 0.47 0.01 8.31654 -624.914 -8.31654 8.31654 1.22 0.00217404 0.00189617 0.176347 0.15444 70 21857 47 1.33067e+07 5.53456e+06 2.06816e+06 4273.05 11.55 1.66068 1.48118 56434 539830 -1 17897 24 14712 17132 3610829 744407 0 0 3610829 744407 15996 15005 0 0 125170 117118 0 0 166800 132585 0 0 15997 15159 0 0 1649993 229338 0 0 1636873 235202 0 0 15996 0 0 1308 6187 7670 23496 1167 212 10.0053 10.0053 -1119.05 -10.0053 0 0 2.60483e+06 5381.88 0.86 0.78 0.47 -1 -1 0.86 0.180301 0.162818 773 703 665 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_37.v common 21.86 vpr 68.46 MiB 0.17 14328 -1 -1 1 0.54 -1 -1 37112 -1 -1 111 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70100 22 19 3280 2364 1 1904 163 24 24 576 mult_36 auto 31.2 MiB 0.89 12635 68.5 MiB 0.94 0.01 8.4137 -696.557 -8.4137 8.4137 2.36 0.00480431 0.0043025 0.387896 0.344252 70 21805 32 1.60519e+07 5.98942e+06 2.45377e+06 4260.01 10.81 1.6771 1.49762 66754 640332 -1 18474 24 14238 16841 2928484 617751 0 0 2928484 617751 15661 14512 0 0 117748 109863 0 0 156238 125533 0 0 15666 14677 0 0 1299018 177918 0 0 1324153 175248 0 0 15661 0 0 1448 6260 7508 23478 1264 16 10.0063 10.0063 -1238.37 -10.0063 0 0 3.09179e+06 5367.68 1.01 0.67 0.38 -1 -1 1.01 0.197936 0.179195 798 722 684 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_38.v common 23.22 vpr 68.91 MiB 0.17 14492 -1 -1 1 0.59 -1 -1 37732 -1 -1 113 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70564 22 19 3354 2421 1 1941 165 24 24 576 mult_36 auto 31.8 MiB 1.33 12518 68.9 MiB 0.95 0.01 8.4137 -735.79 -8.4137 8.4137 2.41 0.00470182 0.00413542 0.393883 0.346911 68 22306 46 1.60519e+07 6.01886e+06 2.39371e+06 4155.74 11.83 1.78561 1.5946 65606 615345 -1 18217 27 15971 18457 3286501 707942 0 0 3286501 707942 17385 16236 0 0 134221 126367 0 0 177365 141784 0 0 17390 16304 0 0 1457725 203293 0 0 1482415 203958 0 0 17385 0 0 1441 6137 6485 25611 1140 20 9.66151 9.66151 -1221.14 -9.66151 0 0 2.98162e+06 5176.42 1.08 0.82 0.54 -1 -1 1.08 0.223876 0.203499 818 741 703 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_39.v common 23.63 vpr 69.38 MiB 0.18 14596 -1 -1 1 0.45 -1 -1 37992 -1 -1 117 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71048 22 19 3457 2490 1 2007 169 24 24 576 mult_36 auto 32.3 MiB 1.03 13220 69.4 MiB 1.09 0.01 8.17224 -882.394 -8.17224 8.17224 2.41 0.00531411 0.00465658 0.447222 0.395593 68 22506 49 1.60519e+07 6.07772e+06 2.39371e+06 4155.74 11.95 2.17041 1.94815 65606 615345 -1 18840 25 13908 16460 2836354 587375 0 0 2836354 587375 15143 14138 0 0 112456 105181 0 0 147535 119542 0 0 15146 14238 0 0 1256174 168154 0 0 1289900 166122 0 0 15143 0 0 1265 7480 8203 22064 1344 121 9.34467 9.34467 -1333 -9.34467 0 0 2.98162e+06 5176.42 1.22 0.98 0.51 -1 -1 1.22 0.301661 0.272707 842 760 722 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_40.v common 19.72 vpr 69.67 MiB 0.17 14716 -1 -1 1 0.52 -1 -1 37724 -1 -1 120 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71344 22 19 3531 2547 1 2046 172 24 24 576 mult_36 auto 32.6 MiB 1.45 13688 69.7 MiB 0.95 0.01 8.34154 -875.21 -8.34154 8.34154 2.34 0.00245876 0.00213107 0.38841 0.340808 70 23055 35 1.60519e+07 6.12186e+06 2.45377e+06 4260.01 8.57 1.22512 1.0805 66754 640332 -1 19523 23 13601 16151 2728954 581910 0 0 2728954 581910 15016 13901 0 0 114097 105947 0 0 151978 122905 0 0 15019 14002 0 0 1220905 164380 0 0 1211939 160775 0 0 15016 0 0 1442 6053 7325 23566 1164 247 9.91787 9.91787 -1289.67 -9.91787 0 0 3.09179e+06 5367.68 0.95 0.58 0.37 -1 -1 0.95 0.179214 0.162315 862 779 741 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_41.v common 21.93 vpr 70.29 MiB 0.18 15208 -1 -1 1 0.41 -1 -1 37620 -1 -1 122 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71972 22 19 3634 2616 1 2113 175 24 24 576 mult_36 auto 33.0 MiB 1.42 13869 70.3 MiB 0.57 0.01 8.14823 -817.705 -8.14823 8.14823 1.54 0.00278875 0.00243288 0.216665 0.190323 68 23987 29 1.60519e+07 6.5473e+06 2.39371e+06 4155.74 10.39 1.38798 1.24101 65606 615345 -1 19994 24 15476 18124 3768212 791193 0 0 3768212 791193 16829 15666 0 0 134628 126591 0 0 171057 142519 0 0 16831 15808 0 0 1709696 239969 0 0 1719171 250640 0 0 16829 0 0 1382 7774 8165 24412 1359 253 9.53231 9.53231 -1397.99 -9.53231 0 0 2.98162e+06 5176.42 1.42 1.18 0.61 -1 -1 1.42 0.336365 0.305967 886 798 760 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_42.v common 26.15 vpr 70.79 MiB 0.19 15168 -1 -1 1 0.57 -1 -1 37712 -1 -1 125 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72484 22 19 3708 2673 1 2147 178 24 24 576 mult_36 auto 33.9 MiB 1.53 14396 70.8 MiB 1.06 0.01 8.34154 -807.018 -8.34154 8.34154 2.36 0.00587999 0.00533124 0.45909 0.406705 68 25119 45 1.60519e+07 6.59144e+06 2.39371e+06 4155.74 13.52 2.17611 1.93926 65606 615345 -1 20417 29 16576 19390 3584894 752230 0 0 3584894 752230 18211 16853 0 0 138527 130445 0 0 186940 147024 0 0 18212 16996 0 0 1603939 222389 0 0 1619065 218523 0 0 18211 0 0 1663 6192 7604 27612 1220 13 9.50726 9.50726 -1175.54 -9.50726 0 0 2.98162e+06 5176.42 1.26 0.81 0.61 -1 -1 1.26 0.252779 0.228923 906 817 779 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_43.v common 26.16 vpr 71.11 MiB 0.19 15396 -1 -1 1 0.71 -1 -1 37884 -1 -1 129 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72812 22 19 3810 2741 1 2214 182 24 24 576 mult_36 auto 34.0 MiB 1.03 15273 71.1 MiB 1.13 0.01 8.22139 -844.621 -8.22139 8.22139 2.36 0.00319605 0.0028408 0.484232 0.429383 74 24868 28 1.60519e+07 6.6503e+06 2.56259e+06 4448.94 13.69 2.29461 2.05134 67906 667765 -1 21240 26 15566 18511 4493655 949689 0 0 4493655 949689 17043 15837 0 0 136438 127972 0 0 184537 146601 0 0 17043 15967 0 0 2096157 313264 0 0 2042437 330048 0 0 17043 0 0 1499 8291 8307 25509 1514 112 9.84961 9.84961 -1407.36 -9.84961 0 0 3.19068e+06 5539.38 1.46 1.33 0.66 -1 -1 1.46 0.35833 0.326544 930 836 798 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_44.v common 23.00 vpr 71.47 MiB 0.20 15592 -1 -1 1 0.46 -1 -1 38452 -1 -1 132 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73188 22 19 3884 2798 1 2251 185 24 24 576 mult_36 auto 34.5 MiB 1.07 14737 71.5 MiB 0.98 0.01 8.39064 -943.666 -8.39064 8.39064 2.35 0.00280683 0.00243771 0.392806 0.343794 76 25138 29 1.60519e+07 6.69445e+06 2.61600e+06 4541.67 11.06 1.78216 1.58279 68478 680951 -1 20784 28 16219 18889 3090963 652662 0 0 3090963 652662 17681 16486 0 0 124922 116275 0 0 171524 133383 0 0 17681 16659 0 0 1388131 186143 0 0 1371024 183716 0 0 17681 0 0 1489 6338 8290 26275 1230 258 9.76457 9.76457 -1619.43 -9.76457 0 0 3.24203e+06 5628.53 1.55 1.18 0.44 -1 -1 1.55 0.438162 0.396009 949 855 817 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_45.v common 22.96 vpr 71.73 MiB 0.22 15936 -1 -1 1 0.63 -1 -1 39968 -1 -1 135 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73448 22 19 3989 2869 1 2318 189 24 24 576 mult_36 auto 34.5 MiB 1.61 15141 71.7 MiB 0.78 0.01 8.4137 -874.23 -8.4137 8.4137 1.79 0.00286378 0.0024982 0.299244 0.262844 74 24533 27 1.60519e+07 7.1346e+06 2.56259e+06 4448.94 10.96 1.86114 1.66059 67906 667765 -1 21279 23 14462 16933 3203286 666848 0 0 3203286 666848 15930 14737 0 0 119134 111713 0 0 161782 128508 0 0 15941 14879 0 0 1440014 200794 0 0 1450485 196217 0 0 15930 0 0 1490 6347 6055 24150 1072 2 9.57716 9.57716 -1434.52 -9.57716 0 0 3.19068e+06 5539.38 1.19 1.04 0.67 -1 -1 1.19 0.370334 0.336606 975 874 836 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_46.v common 24.51 vpr 72.19 MiB 0.16 16124 -1 -1 1 0.66 -1 -1 39984 -1 -1 136 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73924 22 19 4063 2926 1 2357 190 24 24 576 mult_36 auto 35.2 MiB 1.24 16042 72.2 MiB 0.82 0.02 8.30554 -961.246 -8.30554 8.30554 1.46 0.00630832 0.00541109 0.298766 0.259398 80 24029 26 1.60519e+07 7.14931e+06 2.72095e+06 4723.87 12.91 1.9334 1.71165 70206 720185 -1 21546 25 15450 18131 3537268 718577 0 0 3537268 718577 16977 15660 0 0 131184 122670 0 0 172255 140279 0 0 16977 15785 0 0 1592251 210412 0 0 1607624 213771 0 0 16977 0 0 1553 6293 7462 25785 1202 20 9.17417 9.17417 -1479.79 -9.17417 0 0 3.41546e+06 5929.62 1.62 0.89 0.73 -1 -1 1.62 0.279187 0.25441 993 893 855 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_47.v common 24.93 vpr 72.92 MiB 0.23 16484 -1 -1 1 0.55 -1 -1 40328 -1 -1 141 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74672 22 19 4167 2996 1 2421 195 24 24 576 mult_36 auto 36.0 MiB 1.70 15866 72.9 MiB 1.32 0.01 8.2457 -854.27 -8.2457 8.2457 2.09 0.00493787 0.00432972 0.498976 0.436432 74 26113 43 1.60519e+07 7.22289e+06 2.56259e+06 4448.94 11.02 1.89602 1.68078 67906 667765 -1 22579 24 16819 19633 4273815 905792 0 0 4273815 905792 18317 17113 0 0 144871 135939 0 0 188193 153699 0 0 18318 17228 0 0 1959809 288561 0 0 1944307 293252 0 0 18317 0 0 1526 8141 7951 27270 1346 52 9.75551 9.75551 -1306.46 -9.75551 0 0 3.19068e+06 5539.38 1.53 1.32 0.65 -1 -1 1.53 0.348015 0.314804 1019 912 874 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_48.v common 24.16 vpr 73.25 MiB 0.22 16472 -1 -1 1 0.77 -1 -1 40244 -1 -1 144 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75004 22 19 4241 3053 1 2459 198 24 24 576 mult_36 auto 36.2 MiB 1.77 15835 73.2 MiB 0.87 0.01 8.25153 -946.137 -8.25153 8.25153 1.90 0.00330665 0.00283834 0.325457 0.283827 72 27021 38 1.60519e+07 7.26704e+06 2.50747e+06 4353.24 10.97 1.90178 1.68832 67330 654343 -1 22011 23 15838 18683 3162988 688680 0 0 3162988 688680 17413 16168 0 0 131366 122076 0 0 173006 141073 0 0 17415 16298 0 0 1420730 195142 0 0 1403058 197923 0 0 17413 0 0 1600 8010 7649 26502 1297 170 9.47921 9.47921 -1532 -9.47921 0 0 3.14081e+06 5452.80 1.49 1.23 0.58 -1 -1 1.49 0.457853 0.414837 1038 931 893 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_49.v common 28.74 vpr 73.58 MiB 0.18 16920 -1 -1 1 0.78 -1 -1 40576 -1 -1 145 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75348 22 19 4346 3124 1 2527 200 24 24 576 mult_36 auto 37.1 MiB 1.65 17627 73.6 MiB 1.25 0.01 8.38055 -927.403 -8.38055 8.38055 1.55 0.00386539 0.00345009 0.502048 0.446123 74 30469 41 1.60519e+07 7.67775e+06 2.56259e+06 4448.94 16.29 2.74969 2.45528 67906 667765 -1 24632 27 19735 22995 4730851 964157 0 0 4730851 964157 21741 20132 0 0 153720 143874 0 0 215137 165409 0 0 21742 20349 0 0 2156420 305739 0 0 2162091 308654 0 0 21741 0 0 2030 8700 7768 34022 1281 190 10.0844 10.0844 -1564.76 -10.0844 0 0 3.19068e+06 5539.38 1.43 1.16 0.55 -1 -1 1.43 0.342838 0.312452 1062 950 912 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_50.v common 26.40 vpr 74.05 MiB 0.18 17036 -1 -1 1 0.84 -1 -1 40520 -1 -1 148 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75828 22 19 4420 3181 1 2564 203 24 24 576 mult_36 auto 37.3 MiB 1.69 17684 74.1 MiB 1.08 0.01 8.43799 -901.079 -8.43799 8.43799 2.00 0.00334393 0.00290133 0.407916 0.356705 74 30424 34 1.60519e+07 7.72189e+06 2.56259e+06 4448.94 12.71 2.04817 1.82248 67906 667765 -1 25185 27 21673 25268 6014160 1237795 0 0 6014160 1237795 23816 21969 0 0 179319 168492 0 0 243182 189945 0 0 23822 22218 0 0 2752175 413472 0 0 2791846 421699 0 0 23816 0 0 2175 9698 10019 36591 1516 537 10.1105 10.1105 -1511.73 -10.1105 0 0 3.19068e+06 5539.38 1.29 1.53 0.53 -1 -1 1.29 0.331691 0.300713 1082 969 931 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_51.v common 23.72 vpr 74.52 MiB 0.27 17296 -1 -1 1 0.86 -1 -1 40528 -1 -1 152 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76308 22 19 4524 3251 1 2634 207 24 24 576 mult_36 auto 37.8 MiB 1.64 17414 74.5 MiB 0.79 0.01 8.38584 -1089.25 -8.38584 8.38584 1.63 0.00328748 0.00287945 0.291324 0.256666 76 28092 39 1.60519e+07 7.78076e+06 2.61600e+06 4541.67 11.14 1.64508 1.46025 68478 680951 -1 24355 25 19290 22691 4033385 831289 0 0 4033385 831289 21204 19627 0 0 157018 147221 0 0 211302 167347 0 0 21205 19736 0 0 1835661 237183 0 0 1786995 240175 0 0 21204 0 0 1940 9073 9199 32674 1514 92 10.0143 10.0143 -1711.69 -10.0143 0 0 3.24203e+06 5628.53 1.58 1.39 0.68 -1 -1 1.58 0.467328 0.423878 1107 988 950 19 0 0 +k6_frac_2uripple_N8_22nm.xml fir_nopipe_52.v common 32.29 vpr 74.81 MiB 0.25 17212 -1 -1 1 0.63 -1 -1 38796 -1 -1 155 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76604 22 19 4598 3308 1 2668 210 24 24 576 mult_36 auto 37.9 MiB 1.58 18532 74.8 MiB 1.32 0.02 8.22439 -1032.19 -8.22439 8.22439 2.16 0.00809872 0.00734297 0.544712 0.479362 78 29734 45 1.60519e+07 7.8249e+06 2.67122e+06 4637.53 19.19 3.12791 2.78038 69630 706637 -1 25472 24 19725 23351 4028468 834493 0 0 4028468 834493 21806 20034 0 0 161406 150524 0 0 220565 172153 0 0 21810 20216 0 0 1792336 239788 0 0 1810545 231778 0 0 21806 0 0 2108 9760 9992 34339 1589 14 9.66151 9.66151 -1400.93 -9.66151 0 0 3.35110e+06 5817.88 1.57 1.08 0.57 -1 -1 1.57 0.332271 0.301557 1127 1007 969 19 0 0 +k6_frac_N8_22nm.xml fir_pipe_14.v common 7.83 vpr 61.52 MiB 0.07 10504 -1 -1 8 0.68 -1 -1 36368 -1 -1 79 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62996 22 19 1764 1664 1 1014 124 16 16 256 mult_36 auto 23.1 MiB 0.43 6664 61.5 MiB 0.15 0.00 4.14666 -1180.14 -4.14666 4.14666 0.52 0.00109134 0.000895133 0.0603551 0.0511596 64 12519 50 6.45408e+06 2.64829e+06 943753. 3686.54 3.57 0.66098 0.581263 27332 240185 -1 10495 15 4068 7084 715713 165388 0 0 715713 165388 6334 4594 0 0 38637 33625 0 0 53540 43248 0 0 6340 4910 0 0 303844 39375 0 0 307018 39636 0 0 6334 0 0 2286 5461 5792 19227 778 11 4.27196 4.27196 -1335.68 -4.27196 0 0 1.19033e+06 4649.74 0.32 0.18 0.13 -1 -1 0.32 0.081023 0.0747104 599 909 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_15.v common 10.26 vpr 62.19 MiB 0.08 10560 -1 -1 8 0.72 -1 -1 36516 -1 -1 85 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63680 22 19 1918 1801 1 1104 131 16 16 256 mult_36 auto 23.8 MiB 0.68 6819 62.2 MiB 0.40 0.01 4.14666 -1318.66 -4.14666 4.14666 0.81 0.00265378 0.00232544 0.185964 0.161766 66 12539 24 6.45408e+06 3.12512e+06 974584. 3806.97 4.25 1.05067 0.933827 27588 246658 -1 10862 14 4239 7235 804613 183146 0 0 804613 183146 6502 4736 0 0 40803 35803 0 0 55681 44962 0 0 6508 5020 0 0 349908 46719 0 0 345211 45906 0 0 6502 0 0 2283 5281 5781 18891 758 68 4.39726 4.39726 -1510.89 -4.39726 0 0 1.22072e+06 4768.46 0.45 0.34 0.23 -1 -1 0.45 0.1609 0.149033 651 984 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_16.v common 11.41 vpr 62.75 MiB 0.13 10840 -1 -1 8 0.67 -1 -1 35912 -1 -1 87 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64252 22 19 1976 1859 1 1141 133 16 16 256 mult_36 auto 24.4 MiB 0.68 7432 62.7 MiB 0.40 0.01 4.02136 -1345.26 -4.02136 4.02136 0.84 0.00371364 0.00333373 0.195823 0.171719 68 13873 39 6.45408e+06 3.15206e+06 1.00038e+06 3907.74 5.61 1.25036 1.11689 27844 252052 -1 11545 14 4567 8006 875720 202594 0 0 875720 202594 7218 5073 0 0 42808 37509 0 0 57955 46661 0 0 7231 5463 0 0 385713 53002 0 0 374795 54886 0 0 7218 0 0 2673 6170 6295 21656 868 25 4.39726 4.39726 -1519.17 -4.39726 0 0 1.24648e+06 4869.04 0.45 0.34 0.24 -1 -1 0.45 0.141402 0.12959 679 1023 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_17.v common 10.69 vpr 63.49 MiB 0.10 11700 -1 -1 8 0.87 -1 -1 36800 -1 -1 102 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65012 22 19 2278 2144 1 1269 148 16 16 256 mult_36 auto 25.5 MiB 0.76 8156 63.5 MiB 0.23 0.00 4.02136 -1502.91 -4.02136 4.02136 0.65 0.00154862 0.0012964 0.0971392 0.0829771 68 15244 27 6.45408e+06 3.35414e+06 1.00038e+06 3907.74 4.78 1.0529 0.929621 27844 252052 -1 12768 16 5165 8848 942693 217535 0 0 942693 217535 8170 5849 0 0 49183 43311 0 0 66459 53858 0 0 8186 6192 0 0 409575 53838 0 0 401120 54487 0 0 8170 0 0 3025 6228 6749 24730 787 2 4.27196 4.27196 -1694.32 -4.27196 0 0 1.24648e+06 4869.04 0.46 0.43 0.24 -1 -1 0.46 0.215348 0.198092 768 1171 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_18.v common 11.14 vpr 64.28 MiB 0.08 11980 -1 -1 8 0.84 -1 -1 37008 -1 -1 105 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65824 22 19 2336 2202 1 1299 151 16 16 256 mult_36 auto 26.1 MiB 0.73 8121 64.3 MiB 0.49 0.01 4.02136 -1558.46 -4.02136 4.02136 0.74 0.00449476 0.00402714 0.250294 0.223718 64 16667 48 6.45408e+06 3.39456e+06 943753. 3686.54 5.28 1.24209 1.10198 27332 240185 -1 13380 16 5488 9706 1150054 259085 0 0 1150054 259085 8778 6266 0 0 55046 48242 0 0 75710 60901 0 0 8782 6606 0 0 495844 68136 0 0 505894 68934 0 0 8778 0 0 3312 7490 8407 27685 1009 79 4.27196 4.27196 -1830.49 -4.27196 0 0 1.19033e+06 4649.74 0.28 0.28 0.14 -1 -1 0.28 0.113009 0.103545 794 1210 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_19.v common 13.62 vpr 65.24 MiB 0.10 12176 -1 -1 8 0.96 -1 -1 36936 -1 -1 111 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66804 22 19 2488 2337 1 1399 158 16 16 256 mult_36 auto 27.3 MiB 0.78 9918 65.2 MiB 0.34 0.01 4.14666 -1722.94 -4.14666 4.14666 0.71 0.00419801 0.00369125 0.147604 0.126102 80 15911 35 6.45408e+06 3.87139e+06 1.13630e+06 4438.68 7.44 1.90911 1.70442 29884 294868 -1 14502 17 5260 9195 1039281 224421 0 0 1039281 224421 8340 5967 0 0 48268 41707 0 0 67431 53101 0 0 8353 6405 0 0 444873 60774 0 0 462016 56467 0 0 8340 0 0 3101 7313 7483 25295 921 36 4.39726 4.39726 -1949.86 -4.39726 0 0 1.42763e+06 5576.70 0.35 0.31 0.17 -1 -1 0.35 0.146722 0.133861 837 1285 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_20.v common 11.51 vpr 65.42 MiB 0.11 12284 -1 -1 8 1.07 -1 -1 37288 -1 -1 114 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66992 22 19 2546 2395 1 1440 161 16 16 256 mult_36 auto 27.4 MiB 0.84 9776 65.4 MiB 0.36 0.01 4.14666 -1761.21 -4.14666 4.14666 0.51 0.0020461 0.0017442 0.152561 0.131829 76 17543 23 6.45408e+06 3.91181e+06 1.09288e+06 4269.05 5.38 1.483 1.33288 29116 278758 -1 14884 14 5618 10190 1068168 234261 0 0 1068168 234261 9175 6508 0 0 52997 46259 0 0 73745 59050 0 0 9178 6972 0 0 457764 58673 0 0 465309 56799 0 0 9175 0 0 3575 8430 8650 29604 1085 20 4.39726 4.39726 -1972.51 -4.39726 0 0 1.35486e+06 5292.42 0.55 0.43 0.17 -1 -1 0.55 0.174371 0.160944 867 1324 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_21.v common 13.52 vpr 66.62 MiB 0.08 12768 -1 -1 8 0.80 -1 -1 37260 -1 -1 122 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68216 22 19 2735 2567 1 1547 169 16 16 256 mult_36 auto 28.4 MiB 0.69 11045 66.6 MiB 0.57 0.01 4.27196 -1939.62 -4.27196 4.27196 0.84 0.00525797 0.00470696 0.282512 0.251619 74 20359 48 6.45408e+06 4.01958e+06 1.07073e+06 4182.55 6.78 1.55274 1.37701 28864 273460 -1 16345 13 6242 11040 1212688 267829 0 0 1212688 267829 9803 7078 0 0 59153 51562 0 0 81433 64914 0 0 9813 7582 0 0 524958 69464 0 0 527528 67229 0 0 9803 0 0 3578 9624 9361 30164 1311 116 4.64786 4.64786 -2181.73 -4.64786 0 0 1.33358e+06 5209.30 0.50 0.52 0.26 -1 -1 0.50 0.244696 0.224751 931 1417 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_22.v common 14.83 vpr 66.45 MiB 0.12 12884 -1 -1 8 0.95 -1 -1 37676 -1 -1 126 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68044 22 19 2793 2625 1 1580 173 16 16 256 mult_36 auto 28.8 MiB 0.88 11763 66.4 MiB 0.71 0.01 4.27196 -1979.74 -4.27196 4.27196 0.79 0.00535246 0.00478461 0.353524 0.31093 74 21414 49 6.45408e+06 4.07347e+06 1.07073e+06 4182.55 7.66 2.26141 2.01576 28864 273460 -1 17592 16 6529 11591 1300915 285802 0 0 1300915 285802 10517 7385 0 0 58849 51024 0 0 82660 65028 0 0 10523 7993 0 0 566390 77861 0 0 571976 76511 0 0 10517 0 0 4009 9203 9701 34063 1142 162 4.52256 4.52256 -2172.97 -4.52256 0 0 1.33358e+06 5209.30 0.51 0.49 0.26 -1 -1 0.51 0.197662 0.180931 962 1456 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_23.v common 15.92 vpr 67.16 MiB 0.13 13192 -1 -1 8 1.05 -1 -1 38924 -1 -1 131 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68768 22 19 2947 2762 1 1693 179 18 18 324 mult_36 auto 29.7 MiB 1.01 11113 67.2 MiB 0.66 0.01 4.14666 -2006.09 -4.14666 4.14666 1.17 0.00558825 0.00501849 0.334688 0.29874 70 19988 23 7.94662e+06 4.53683e+06 1.34436e+06 4149.26 7.14 1.667 1.49043 36496 347204 -1 17551 16 6873 11967 1285765 290243 0 0 1285765 290243 10786 7700 0 0 65501 56976 0 0 92423 73314 0 0 10794 8189 0 0 557843 71309 0 0 548418 72755 0 0 10786 0 0 3932 8120 10963 33583 1249 359 4.39726 4.39726 -2271.23 -4.39726 0 0 1.69344e+06 5226.66 0.70 0.63 0.32 -1 -1 0.70 0.321201 0.295249 1008 1531 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_24.v common 14.72 vpr 67.46 MiB 0.12 13504 -1 -1 8 1.10 -1 -1 38256 -1 -1 135 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69076 22 19 3005 2820 1 1720 183 18 18 324 mult_36 auto 29.9 MiB 1.01 11269 67.5 MiB 0.67 0.01 4.14666 -2096.61 -4.14666 4.14666 1.13 0.00500806 0.00441261 0.32406 0.288102 72 22153 24 7.94662e+06 4.59072e+06 1.37338e+06 4238.83 6.37 1.72028 1.53447 36820 354972 -1 18033 15 6909 12254 1302664 275973 0 0 1302664 275973 11029 7911 0 0 63653 55100 0 0 92118 71683 0 0 11032 8424 0 0 556169 68238 0 0 568663 64617 0 0 11029 0 0 4142 9656 10101 34686 1278 102 4.52256 4.52256 -2347.69 -4.52256 0 0 1.72054e+06 5310.31 0.71 0.60 0.34 -1 -1 0.71 0.305757 0.281155 1039 1570 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_25.v common 18.48 vpr 68.48 MiB 0.13 14068 -1 -1 8 1.50 -1 -1 39632 -1 -1 145 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70128 22 19 3229 3027 1 1824 193 18 18 324 mult_36 auto 31.0 MiB 1.12 12146 68.5 MiB 0.72 0.01 4.02136 -2210.67 -4.02136 4.02136 1.25 0.00607122 0.00546225 0.332712 0.292655 70 22739 37 7.94662e+06 4.72544e+06 1.34436e+06 4149.26 9.33 2.11205 1.88319 36496 347204 -1 19213 17 7570 13561 1540093 336741 0 0 1540093 336741 12036 8506 0 0 74249 64654 0 0 102961 82258 0 0 12040 9119 0 0 666463 85818 0 0 672344 86386 0 0 12036 0 0 4485 11395 12122 38090 1584 450 4.27196 4.27196 -2595.58 -4.27196 0 0 1.69344e+06 5226.66 0.44 0.40 0.20 -1 -1 0.44 0.202738 0.186492 1106 1681 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_26.v common 16.30 vpr 69.91 MiB 0.14 14092 -1 -1 8 1.63 -1 -1 40208 -1 -1 151 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71588 22 19 3287 3085 1 1862 199 18 18 324 mult_36 auto 31.6 MiB 1.22 13093 69.9 MiB 0.81 0.01 4.02136 -2277.85 -4.02136 4.02136 1.13 0.00478524 0.00415815 0.381446 0.338119 76 23702 29 7.94662e+06 4.80627e+06 1.43297e+06 4422.75 6.39 1.68973 1.49994 37464 369264 -1 20288 16 7605 13428 1503742 321185 0 0 1503742 321185 12132 8518 0 0 68188 59603 0 0 96852 76279 0 0 12134 8981 0 0 654496 85054 0 0 659940 82750 0 0 12132 0 0 4548 10415 11124 39158 1330 129 4.27196 4.27196 -2617.6 -4.27196 0 0 1.77541e+06 5479.65 0.73 0.71 0.35 -1 -1 0.73 0.342761 0.314655 1134 1720 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_27.v common 22.81 vpr 70.92 MiB 0.16 14472 -1 -1 8 1.74 -1 -1 40444 -1 -1 156 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72620 22 19 3453 3234 1 1964 205 18 18 324 mult_36 auto 32.5 MiB 0.97 14116 70.9 MiB 0.78 0.01 4.02136 -2356.9 -4.02136 4.02136 1.13 0.00647333 0.00583256 0.385489 0.343945 74 27600 47 7.94662e+06 5.26963e+06 1.40368e+06 4332.34 13.21 2.4296 2.15862 37144 362180 -1 21982 21 8434 15288 1858136 394162 0 0 1858136 394162 13402 9627 0 0 79226 69060 0 0 110671 87474 0 0 13410 10318 0 0 816547 107641 0 0 824880 110042 0 0 13402 0 0 4991 14158 14815 42510 1993 606 4.27196 4.27196 -2809.64 -4.27196 0 0 1.74764e+06 5393.95 0.76 0.52 0.35 -1 -1 0.76 0.215978 0.196325 1189 1795 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_28.v common 14.47 vpr 71.32 MiB 0.18 14640 -1 -1 8 1.55 -1 -1 40772 -1 -1 160 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73032 22 19 3511 3292 1 2001 209 18 18 324 mult_36 auto 33.1 MiB 1.20 13669 71.3 MiB 0.51 0.02 4.02136 -2389.87 -4.02136 4.02136 0.84 0.00923209 0.00835954 0.23287 0.205604 74 24660 32 7.94662e+06 5.32352e+06 1.40368e+06 4332.34 6.34 1.27209 1.11814 37144 362180 -1 20935 15 7817 14366 1624283 350318 0 0 1624283 350318 12705 8722 0 0 73062 63424 0 0 103216 81095 0 0 12715 9383 0 0 706575 93511 0 0 716010 94183 0 0 12705 0 0 4909 13130 13551 40828 1778 451 4.39726 4.39726 -2815.24 -4.39726 0 0 1.74764e+06 5393.95 0.48 0.43 0.21 -1 -1 0.48 0.183306 0.167638 1221 1834 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_29.v common 24.83 vpr 72.29 MiB 0.18 15132 -1 -1 8 1.57 -1 -1 39308 -1 -1 168 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74024 22 19 3709 3473 1 2127 218 22 22 484 mult_36 auto 34.1 MiB 1.08 14626 72.3 MiB 0.54 0.01 4.02136 -2545.74 -4.02136 4.02136 1.66 0.00319888 0.00272316 0.229666 0.195126 66 29135 40 1.29336e+07 5.8273e+06 1.96511e+06 4060.15 13.69 2.02748 1.78458 53786 506641 -1 23163 19 8772 15838 1646298 352161 0 0 1646298 352161 14086 10061 0 0 82056 71253 0 0 114854 90791 0 0 14089 10696 0 0 709530 84425 0 0 711683 84935 0 0 14086 0 0 5338 13358 15632 44930 1826 768 4.52256 4.52256 -3093.77 -4.52256 0 0 2.45963e+06 5081.88 1.11 0.86 0.46 -1 -1 1.11 0.439751 0.399951 1281 1927 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_30.v common 21.13 vpr 72.62 MiB 0.15 15160 -1 -1 8 1.87 -1 -1 41060 -1 -1 170 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74368 22 19 3767 3531 1 2168 220 22 22 484 mult_36 auto 34.3 MiB 1.03 15943 72.6 MiB 0.58 0.01 4.02136 -2629.36 -4.02136 4.02136 1.29 0.00320126 0.0027724 0.244711 0.211496 74 28994 34 1.29336e+07 5.85424e+06 2.15943e+06 4461.62 9.88 2.05058 1.81972 56202 562081 -1 24544 15 8887 15825 1942314 398265 0 0 1942314 398265 14222 10017 0 0 81802 71363 0 0 115170 90354 0 0 14222 10653 0 0 851450 110322 0 0 865448 105556 0 0 14222 0 0 5358 12399 14048 46287 1633 214 4.52256 4.52256 -3225.5 -4.52256 0 0 2.68771e+06 5553.12 1.25 0.84 0.55 -1 -1 1.25 0.378586 0.347551 1309 1966 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_31.v common 107.33 vpr 73.10 MiB 0.15 15672 -1 -1 8 1.96 -1 -1 41756 -1 -1 177 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74856 22 19 3928 3675 1 2252 227 22 22 484 mult_36 auto 34.8 MiB 1.35 15600 73.1 MiB 1.14 0.02 3.89606 -2728.48 -3.89606 3.89606 1.82 0.00780622 0.0070197 0.570979 0.510175 68 30987 47 1.29336e+07 5.94854e+06 2.01763e+06 4168.66 95.05 4.14667 3.63949 54270 517931 -1 24546 15 9495 17240 1812127 380226 0 0 1812127 380226 15261 10833 0 0 87442 75987 0 0 121112 95976 0 0 15261 11580 0 0 780202 94208 0 0 792849 91642 0 0 15261 0 0 5787 15369 15362 49855 2006 52 4.39726 4.39726 -3234.99 -4.39726 0 0 2.51205e+06 5190.18 0.86 0.53 0.30 -1 -1 0.86 0.225966 0.208186 1363 2041 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_32.v common 23.81 vpr 73.66 MiB 0.18 15840 -1 -1 8 1.70 -1 -1 39904 -1 -1 181 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75428 22 19 3986 3733 1 2287 231 22 22 484 mult_36 auto 35.5 MiB 1.15 16835 73.7 MiB 0.94 0.01 4.02136 -2767.1 -4.02136 4.02136 1.63 0.00627407 0.00550348 0.416579 0.363471 80 27676 17 1.29336e+07 6.00243e+06 2.29262e+06 4736.82 12.18 2.64974 2.34932 58134 606231 -1 25075 15 8796 15991 1718289 352451 0 0 1718289 352451 14203 9789 0 0 79426 67938 0 0 113904 88020 0 0 14207 10435 0 0 750725 88651 0 0 745824 87618 0 0 14203 0 0 5427 13548 14640 46527 1823 12 4.52256 4.52256 -3269.52 -4.52256 0 0 2.87723e+06 5944.70 1.13 0.69 0.62 -1 -1 1.13 0.294704 0.271101 1391 2080 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_33.v common 25.97 vpr 75.40 MiB 0.21 16776 -1 -1 8 1.59 -1 -1 41584 -1 -1 192 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77212 22 19 4329 4059 1 2422 243 22 22 484 mult_36 auto 37.1 MiB 0.91 17478 75.4 MiB 0.82 0.01 4.14666 -2966.64 -4.14666 4.14666 1.62 0.00412399 0.00356671 0.368532 0.322822 74 32810 31 1.29336e+07 6.54662e+06 2.15943e+06 4461.62 14.70 2.95189 2.61388 56202 562081 -1 27049 16 9867 17456 2289141 474616 0 0 2289141 474616 15813 11069 0 0 91317 79702 0 0 127606 101123 0 0 15816 11881 0 0 1009823 134360 0 0 1028766 136481 0 0 15813 0 0 5969 14253 14817 50991 1702 149 4.52256 4.52256 -3487.29 -4.52256 0 0 2.68771e+06 5553.12 1.03 0.96 0.56 -1 -1 1.03 0.394202 0.358394 1494 2246 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_34.v common 24.04 vpr 75.81 MiB 0.14 16968 -1 -1 8 2.36 -1 -1 42220 -1 -1 198 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77632 22 19 4387 4117 1 2459 249 22 22 484 mult_36 auto 37.5 MiB 1.27 17850 75.8 MiB 0.98 0.01 4.02136 -2976 -4.02136 4.02136 1.50 0.00375356 0.00325789 0.431709 0.373843 76 31954 33 1.29336e+07 6.62746e+06 2.20457e+06 4554.90 11.81 2.54076 2.25395 56682 573177 -1 27093 15 9798 17433 2029456 432691 0 0 2029456 432691 15946 11030 0 0 89871 78566 0 0 125755 99885 0 0 15960 11761 0 0 882483 114779 0 0 899441 116670 0 0 15946 0 0 6170 13595 14678 52120 1596 143 4.39726 4.39726 -3472.9 -4.39726 0 0 2.73077e+06 5642.09 1.07 0.87 0.41 -1 -1 1.07 0.388773 0.358226 1521 2285 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_35.v common 28.12 vpr 76.75 MiB 0.19 17356 -1 -1 8 2.13 -1 -1 40932 -1 -1 208 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78592 22 19 4547 4260 1 2575 259 22 22 484 mult_36 auto 38.5 MiB 1.39 17782 76.8 MiB 1.28 0.02 4.02136 -3114.87 -4.02136 4.02136 1.87 0.0089017 0.00801864 0.599505 0.52986 70 33025 36 1.29336e+07 6.76218e+06 2.06816e+06 4273.05 14.34 2.95484 2.63551 55234 538945 -1 27814 16 10449 18232 2204205 473115 0 0 2204205 473115 16515 11663 0 0 100838 87832 0 0 141802 112438 0 0 16518 12444 0 0 960414 123654 0 0 968118 125084 0 0 16515 0 0 6087 13859 14866 51935 1771 574 4.52256 4.52256 -3695.86 -4.52256 0 0 2.60483e+06 5381.88 1.14 0.99 0.56 -1 -1 1.14 0.477057 0.43744 1571 2360 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_36.v common 23.14 vpr 76.99 MiB 0.23 17516 -1 -1 8 2.36 -1 -1 42652 -1 -1 210 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78836 22 19 4605 4318 1 2609 261 22 22 484 mult_36 auto 38.8 MiB 0.98 18420 77.0 MiB 1.11 0.02 4.02136 -3107.21 -4.02136 4.02136 1.51 0.00774186 0.00686216 0.506579 0.447903 76 32081 36 1.29336e+07 6.78912e+06 2.20457e+06 4554.90 9.85 2.4894 2.20817 56682 573177 -1 27810 16 10294 18816 1946807 416742 0 0 1946807 416742 16701 11472 0 0 93642 81363 0 0 133681 104639 0 0 16709 12349 0 0 832157 104986 0 0 853917 101933 0 0 16701 0 0 6430 16209 17404 54805 2172 563 4.39726 4.39726 -3740.88 -4.39726 0 0 2.73077e+06 5642.09 1.26 1.02 0.54 -1 -1 1.26 0.533156 0.487414 1597 2399 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_37.v common 31.34 vpr 77.86 MiB 0.22 17864 -1 -1 8 2.74 -1 -1 39624 -1 -1 218 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79724 22 19 4802 4498 1 2726 270 24 24 576 mult_36 auto 40.1 MiB 1.47 19138 77.9 MiB 0.81 0.01 4.14666 -3404.17 -4.14666 4.14666 1.77 0.00416941 0.00359494 0.336612 0.290974 74 36202 47 1.56141e+07 7.2929e+06 2.56259e+06 4448.94 17.18 3.61571 3.222 66498 666725 -1 29796 14 10684 19122 2091368 446223 0 0 2091368 446223 17151 12258 0 0 98498 85492 0 0 139015 109664 0 0 17152 13003 0 0 905453 115802 0 0 914099 110004 0 0 17151 0 0 6488 15878 16511 54747 2011 388 4.52256 4.52256 -3921.18 -4.52256 0 0 3.19068e+06 5539.38 1.47 0.63 0.65 -1 -1 1.47 0.267533 0.246116 1661 2492 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_38.v common 34.98 vpr 78.28 MiB 0.21 18144 -1 -1 8 2.65 -1 -1 43136 -1 -1 221 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80156 22 19 4860 4556 1 2764 273 24 24 576 mult_36 auto 40.6 MiB 1.58 20168 78.3 MiB 1.45 0.02 4.27196 -3479.6 -4.27196 4.27196 2.08 0.0137278 0.0127859 0.744012 0.674841 74 37197 49 1.56141e+07 7.33331e+06 2.56259e+06 4448.94 18.71 4.4703 4.02191 66498 666725 -1 30709 18 11248 20538 2499065 522232 0 0 2499065 522232 17979 12689 0 0 104937 91121 0 0 149427 116680 0 0 17986 13498 0 0 1096938 143800 0 0 1111798 144444 0 0 17979 0 0 6751 17623 20608 57250 2621 796 4.52256 4.52256 -3994.89 -4.52256 0 0 3.19068e+06 5539.38 1.45 1.16 0.50 -1 -1 1.45 0.562739 0.5139 1689 2531 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_39.v common 35.01 vpr 79.06 MiB 0.18 18448 -1 -1 8 2.95 -1 -1 43516 -1 -1 226 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80960 22 19 5019 4698 1 2868 278 24 24 576 mult_36 auto 41.4 MiB 1.64 21602 79.1 MiB 1.55 0.02 4.14666 -3593.28 -4.14666 4.14666 2.45 0.00991191 0.00894563 0.714126 0.633817 80 35912 25 1.56141e+07 7.40067e+06 2.72095e+06 4723.87 17.91 4.01497 3.57338 68798 719145 -1 31945 14 11104 20220 2291269 477937 0 0 2291269 477937 17912 12370 0 0 104453 90473 0 0 146539 114595 0 0 17917 13189 0 0 1007732 124433 0 0 996716 122877 0 0 17912 0 0 6830 19439 19192 59642 2367 537 4.52256 4.52256 -4189.11 -4.52256 0 0 3.41546e+06 5929.62 1.17 1.05 0.69 -1 -1 1.17 0.491539 0.451879 1735 2606 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_40.v common 37.26 vpr 79.39 MiB 0.23 18628 -1 -1 8 2.53 -1 -1 43752 -1 -1 230 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81292 22 19 5077 4756 1 2904 282 24 24 576 mult_36 auto 41.7 MiB 1.71 21930 79.4 MiB 1.76 0.03 4.14666 -3671.85 -4.14666 4.14666 2.31 0.0154512 0.0142025 0.910802 0.815106 78 37461 39 1.56141e+07 7.45456e+06 2.67122e+06 4637.53 21.63 4.50465 3.99079 68222 705597 -1 32589 15 11153 20176 2364504 485781 0 0 2364504 485781 17994 12668 0 0 102975 88215 0 0 147800 115936 0 0 18003 13556 0 0 1037209 127365 0 0 1040523 128041 0 0 17994 0 0 6865 19049 18613 59997 2258 882 4.52256 4.52256 -4161.17 -4.52256 0 0 3.35110e+06 5817.88 1.22 0.68 0.70 -1 -1 1.22 0.299354 0.274534 1765 2645 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_41.v common 28.72 vpr 80.50 MiB 0.23 19084 -1 -1 8 2.61 -1 -1 43756 -1 -1 239 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82428 22 19 5308 4970 1 3021 292 24 24 576 mult_36 auto 42.8 MiB 1.15 21921 80.5 MiB 1.63 0.02 4.14666 -3885.06 -4.14666 4.14666 1.98 0.0110264 0.00960153 0.754552 0.664521 76 39595 42 1.56141e+07 7.97181e+06 2.61600e+06 4541.67 14.32 4.2024 3.75543 67070 679911 -1 33670 14 11947 21831 2407182 505898 0 0 2407182 505898 19508 13500 0 0 111646 97174 0 0 156723 123566 0 0 19509 14546 0 0 1060200 128753 0 0 1039596 128359 0 0 19508 0 0 7584 19026 19570 64716 2343 525 4.64786 4.64786 -4480.94 -4.64786 0 0 3.24203e+06 5628.53 1.16 0.76 0.41 -1 -1 1.16 0.346586 0.319788 1838 2756 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_42.v common 35.60 vpr 80.79 MiB 0.23 19288 -1 -1 8 3.09 -1 -1 44412 -1 -1 242 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82724 22 19 5366 5028 1 3055 295 24 24 576 mult_36 auto 43.4 MiB 1.20 22765 80.8 MiB 1.60 0.02 4.27196 -3912.77 -4.27196 4.27196 2.38 0.0108505 0.00982404 0.731778 0.649244 78 39143 45 1.56141e+07 8.01222e+06 2.67122e+06 4637.53 18.76 4.03404 3.57171 68222 705597 -1 34147 16 11869 21944 2548554 512010 0 0 2548554 512010 19542 13422 0 0 108202 92708 0 0 158498 121951 0 0 19542 14386 0 0 1099482 138420 0 0 1143288 131123 0 0 19542 0 0 7692 20680 19058 66129 2424 333 4.64786 4.64786 -4620.52 -4.64786 0 0 3.35110e+06 5817.88 1.26 1.23 0.72 -1 -1 1.26 0.559536 0.512103 1862 2795 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_43.v common 38.38 vpr 82.80 MiB 0.26 19616 -1 -1 8 2.62 -1 -1 44200 -1 -1 255 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84784 22 19 5524 5169 1 3162 308 24 24 576 mult_36 auto 44.3 MiB 1.89 22483 82.8 MiB 1.54 0.02 4.27196 -3937.42 -4.27196 4.27196 1.78 0.0106334 0.00959647 0.712791 0.633357 76 42029 38 1.56141e+07 8.18736e+06 2.61600e+06 4541.67 21.84 3.81686 3.37604 67070 679911 -1 34242 17 12907 22977 2421899 519757 0 0 2421899 519757 20933 14560 0 0 117031 102118 0 0 165009 130148 0 0 20940 15695 0 0 1029754 133656 0 0 1068232 123580 0 0 20933 0 0 8048 17831 19375 68422 2125 188 4.39726 4.39726 -4594.94 -4.39726 0 0 3.24203e+06 5628.53 1.51 1.15 0.67 -1 -1 1.51 0.542862 0.4941 1916 2870 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_44.v common 47.37 vpr 81.20 MiB 0.24 19828 -1 -1 8 3.43 -1 -1 43200 -1 -1 254 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83144 22 19 5582 5227 1 3204 307 24 24 576 mult_36 auto 44.7 MiB 1.36 24330 81.2 MiB 1.31 0.02 4.27196 -4171.59 -4.27196 4.27196 2.28 0.0105332 0.00935171 0.565418 0.496375 80 41408 42 1.56141e+07 8.17389e+06 2.72095e+06 4723.87 30.03 4.26001 3.7668 68798 719145 -1 35864 16 12313 22244 2529196 517669 0 0 2529196 517669 20119 13855 0 0 114718 99140 0 0 161389 126320 0 0 20121 14772 0 0 1117054 132792 0 0 1095795 130790 0 0 20119 0 0 7829 18571 19534 67389 2152 1473 4.64786 4.64786 -4699.78 -4.64786 0 0 3.41546e+06 5929.62 1.60 1.27 0.71 -1 -1 1.60 0.639941 0.584843 1945 2909 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_45.v common 37.33 vpr 82.25 MiB 0.17 20316 -1 -1 8 3.13 -1 -1 43424 -1 -1 262 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84224 22 19 5779 5407 1 3306 316 24 24 576 mult_36 auto 45.5 MiB 1.83 25034 82.2 MiB 1.75 0.02 4.27196 -4178.46 -4.27196 4.27196 2.50 0.0113661 0.0101351 0.829241 0.743966 76 44912 44 1.56141e+07 8.67766e+06 2.61600e+06 4541.67 19.24 5.18718 4.62014 67070 679911 -1 37700 16 13590 24644 2842764 604363 0 0 2842764 604363 21914 15285 0 0 126179 110402 0 0 176900 139697 0 0 21915 16193 0 0 1258211 160817 0 0 1237645 161969 0 0 21914 0 0 8347 22553 23276 72216 2784 588 4.52256 4.52256 -4828.1 -4.52256 0 0 3.24203e+06 5628.53 1.17 1.35 0.47 -1 -1 1.17 0.590232 0.540373 2012 3002 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_46.v common 53.88 vpr 84.48 MiB 0.18 20496 -1 -1 8 3.88 -1 -1 45464 -1 -1 267 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86512 22 19 5837 5465 1 3341 321 24 24 576 mult_36 auto 46.0 MiB 1.81 25644 84.5 MiB 1.69 0.03 4.52256 -4257.26 -4.52256 4.52256 1.61 0.0173613 0.0160609 0.815496 0.73158 78 44721 48 1.56141e+07 8.74502e+06 2.67122e+06 4637.53 35.45 5.23639 4.63139 68222 705597 -1 37922 15 13417 24333 2954666 597265 0 0 2954666 597265 21745 15117 0 0 125359 108176 0 0 180593 141248 0 0 21752 16240 0 0 1290343 158972 0 0 1314874 157512 0 0 21745 0 0 8351 23247 21701 72007 2637 1227 4.52256 4.52256 -4813.34 -4.52256 0 0 3.35110e+06 5817.88 1.53 1.33 0.62 -1 -1 1.53 0.57191 0.522412 2043 3041 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_47.v common 31.26 vpr 83.34 MiB 0.18 20852 -1 -1 8 2.87 -1 -1 45268 -1 -1 275 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85340 22 19 5997 5608 1 3446 329 24 24 576 mult_36 auto 46.8 MiB 1.73 24110 83.3 MiB 1.80 0.03 4.27196 -4282.3 -4.27196 4.27196 2.05 0.014839 0.0135842 0.781958 0.683973 76 42740 36 1.56141e+07 8.8528e+06 2.61600e+06 4541.67 15.05 4.65866 4.16082 67070 679911 -1 36118 17 13455 23876 2594769 560963 0 0 2594769 560963 21449 15094 0 0 122496 106823 0 0 173643 137093 0 0 21459 16062 0 0 1117818 143812 0 0 1137904 142079 0 0 21449 0 0 8016 21341 20577 69060 2503 858 4.39726 4.39726 -4906.67 -4.39726 0 0 3.24203e+06 5628.53 1.07 0.76 0.45 -1 -1 1.07 0.357616 0.326518 2100 3116 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_48.v common 47.14 vpr 85.68 MiB 0.26 21008 -1 -1 8 3.69 -1 -1 46004 -1 -1 279 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87736 22 19 6055 5666 1 3477 333 24 24 576 mult_36 auto 47.2 MiB 1.72 25932 85.7 MiB 1.86 0.02 4.27196 -4460.71 -4.27196 4.27196 2.27 0.0089462 0.00773338 0.822855 0.719259 80 43384 35 1.56141e+07 8.90669e+06 2.72095e+06 4723.87 28.28 5.93925 5.27098 68798 719145 -1 38171 14 13473 24141 2627724 545080 0 0 2627724 545080 21615 14936 0 0 123227 106008 0 0 174099 135367 0 0 21617 15860 0 0 1153908 137207 0 0 1133258 135702 0 0 21615 0 0 8164 21775 22442 71299 2549 1906 4.52256 4.52256 -5117.04 -4.52256 0 0 3.41546e+06 5929.62 1.67 1.26 0.72 -1 -1 1.67 0.632333 0.57931 2126 3155 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_49.v common 33.79 vpr 86.79 MiB 0.26 21572 -1 -1 8 4.53 -1 -1 46096 -1 -1 285 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88872 22 19 6324 5918 1 3577 340 24 24 576 mult_36 auto 48.5 MiB 1.74 26212 86.8 MiB 1.42 0.02 4.27196 -4538.26 -4.27196 4.27196 1.85 0.00673621 0.00593146 0.576456 0.501887 76 47502 47 1.56141e+07 9.38352e+06 2.61600e+06 4541.67 15.29 3.85983 3.41651 67070 679911 -1 39258 16 14161 25891 3090924 645275 0 0 3090924 645275 23060 16127 0 0 133463 116360 0 0 188040 148576 0 0 23066 17181 0 0 1341960 172589 0 0 1381335 174442 0 0 23060 0 0 8923 23748 24233 76304 2926 1132 4.64786 4.64786 -5171.62 -4.64786 0 0 3.24203e+06 5628.53 1.59 1.26 0.72 -1 -1 1.59 0.509189 0.465264 2206 3284 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_50.v common 47.27 vpr 87.19 MiB 0.27 21704 -1 -1 8 4.58 -1 -1 46692 -1 -1 292 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89280 22 19 6382 5976 1 3610 347 24 24 576 mult_36 auto 48.9 MiB 1.52 29603 87.2 MiB 1.64 0.04 4.39726 -4599.11 -4.39726 4.39726 1.79 0.0245515 0.0231316 0.756907 0.66874 84 50960 39 1.56141e+07 9.47782e+06 2.84938e+06 4946.85 27.20 6.85476 6.11709 70522 759407 -1 41657 16 14122 25753 3384293 691202 0 0 3384293 691202 23148 15721 0 0 131863 115130 0 0 180838 142412 0 0 23155 16758 0 0 1522968 195919 0 0 1502321 205262 0 0 23148 0 0 9049 24391 25276 79905 2686 2063 4.52256 4.52256 -5209.39 -4.52256 0 0 3.60864e+06 6265.01 1.73 1.62 0.75 -1 -1 1.73 0.736073 0.672485 2235 3323 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_51.v common 38.22 vpr 87.96 MiB 0.21 22076 -1 -1 8 2.95 -1 -1 46956 -1 -1 297 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90068 22 19 6542 6119 1 3736 352 24 24 576 mult_36 auto 49.7 MiB 1.84 29625 88.0 MiB 2.06 0.03 4.27196 -4812.72 -4.27196 4.27196 1.65 0.0129827 0.0115813 0.90201 0.795862 88 46639 37 1.56141e+07 9.54518e+06 2.98162e+06 5176.42 21.21 6.04148 5.36092 71670 786159 -1 41997 14 13689 24609 2757822 567091 0 0 2757822 567091 22362 15510 0 0 124256 106813 0 0 177466 139319 0 0 22365 16473 0 0 1174909 150529 0 0 1236464 138447 0 0 22362 0 0 8694 22855 20860 76132 2317 1196 4.64786 4.64786 -5476.7 -4.64786 0 0 3.70823e+06 6437.90 1.27 1.04 0.79 -1 -1 1.27 0.436936 0.399001 2287 3398 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_pipe_52.v common 42.45 vpr 88.26 MiB 0.28 22244 -1 -1 8 3.24 -1 -1 46492 -1 -1 301 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90380 22 19 6600 6177 1 3777 356 24 24 576 mult_36 auto 50.1 MiB 1.81 28901 88.3 MiB 1.38 0.02 4.27196 -4740.14 -4.27196 4.27196 2.12 0.00610023 0.00530535 0.55657 0.484491 80 47550 38 1.56141e+07 9.59907e+06 2.72095e+06 4723.87 25.42 5.88781 5.22466 68798 719145 -1 42516 14 14912 27229 2994777 630196 0 0 2994777 630196 24476 16631 0 0 137657 118401 0 0 193657 151129 0 0 24488 17722 0 0 1320335 160986 0 0 1294164 165327 0 0 24476 0 0 9584 22341 26229 83300 2824 569 4.52256 4.52256 -5359.53 -4.52256 0 0 3.41546e+06 5929.62 1.56 0.94 0.67 -1 -1 1.56 0.409 0.376123 2318 3437 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_14.v common 10.45 vpr 58.30 MiB 0.07 9280 -1 -1 10 0.69 -1 -1 34704 -1 -1 57 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59696 22 19 1149 1049 1 785 102 16 16 256 mult_36 auto 20.1 MiB 0.39 5145 58.3 MiB 0.23 0.00 12.0204 -361.379 -12.0204 12.0204 0.83 0.000896494 0.000776649 0.102712 0.0900178 68 10281 29 6.45408e+06 2.3519e+06 1.00038e+06 3907.74 5.27 0.567242 0.505595 27844 252052 -1 9044 19 4869 9419 1105135 239642 0 0 1105135 239642 9419 5851 0 0 49382 44924 0 0 66894 53463 0 0 9886 6761 0 0 477457 64833 0 0 492097 63810 0 0 9419 0 0 4577 12724 10344 87264 0 0 12.3927 12.3927 -459.515 -12.3927 0 0 1.24648e+06 4869.04 0.46 0.35 0.25 -1 -1 0.46 0.110844 0.101969 433 658 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_15.v common 11.46 vpr 59.07 MiB 0.07 9360 -1 -1 11 0.64 -1 -1 35160 -1 -1 63 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60488 22 19 1261 1144 1 857 109 16 16 256 mult_36 auto 20.9 MiB 0.40 5395 59.1 MiB 0.12 0.00 12.4748 -393.909 -12.4748 12.4748 0.52 0.00087702 0.0007461 0.0455833 0.0393943 64 11799 39 6.45408e+06 2.82874e+06 943753. 3686.54 6.82 0.625471 0.559083 27332 240185 -1 9607 21 5169 10063 1108773 241951 0 0 1108773 241951 9745 6116 0 0 51498 46314 0 0 71578 56537 0 0 10156 6869 0 0 476101 63352 0 0 489695 62763 0 0 9745 0 0 4601 9783 10063 62326 363 1 12.8934 12.8934 -590.94 -12.8934 0 0 1.19033e+06 4649.74 0.49 0.43 0.24 -1 -1 0.49 0.146459 0.13419 471 727 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_16.v common 10.94 vpr 59.21 MiB 0.12 9664 -1 -1 11 0.73 -1 -1 35732 -1 -1 70 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60636 22 19 1336 1219 1 919 116 16 16 256 mult_36 auto 21.2 MiB 0.45 5948 59.2 MiB 0.26 0.00 13.6285 -453.588 -13.6285 13.6285 0.70 0.00181561 0.00155582 0.107575 0.0926117 64 12359 26 6.45408e+06 2.92304e+06 943753. 3686.54 5.62 0.757242 0.673945 27332 240185 -1 10516 18 5327 10451 1173946 255080 0 0 1173946 255080 10156 6074 0 0 53946 48678 0 0 75770 59840 0 0 10381 6865 0 0 506070 67709 0 0 517623 65914 0 0 10156 0 0 4852 11632 10153 65376 335 1 13.9183 13.9183 -614.979 -13.9183 0 0 1.19033e+06 4649.74 0.42 0.38 0.22 -1 -1 0.42 0.118412 0.108325 512 783 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_17.v common 11.47 vpr 59.93 MiB 0.08 9932 -1 -1 11 0.85 -1 -1 35436 -1 -1 77 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61364 22 19 1446 1312 1 981 123 16 16 256 mult_36 auto 22.0 MiB 0.41 6339 59.9 MiB 0.16 0.00 12.8431 -458.354 -12.8431 12.8431 0.51 0.000970045 0.000823293 0.0597853 0.0516354 64 14123 43 6.45408e+06 3.01734e+06 943753. 3686.54 6.45 0.828942 0.740949 27332 240185 -1 11611 18 5743 11089 1204411 270351 0 0 1204411 270351 10535 6972 0 0 60776 54674 0 0 82229 66403 0 0 11056 7885 0 0 524601 68274 0 0 515214 66143 0 0 10535 0 0 4817 8710 8987 40713 592 2 13.3631 13.3631 -640.32 -13.3631 0 0 1.19033e+06 4649.74 0.48 0.48 0.25 -1 -1 0.48 0.171535 0.15798 558 848 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_18.v common 10.45 vpr 60.34 MiB 0.08 10044 -1 -1 11 0.85 -1 -1 36224 -1 -1 79 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61792 22 19 1507 1373 1 1020 125 16 16 256 mult_36 auto 22.6 MiB 0.48 7248 60.3 MiB 0.29 0.01 13.0656 -433.002 -13.0656 13.0656 0.78 0.00234036 0.00206235 0.128001 0.112386 72 14511 26 6.45408e+06 3.04429e+06 1.04740e+06 4091.43 4.58 0.678484 0.604286 28608 268066 -1 12225 20 5787 11421 1300359 292005 0 0 1300359 292005 10859 6799 0 0 59811 53652 0 0 82443 65635 0 0 11152 7800 0 0 560232 78759 0 0 575862 79360 0 0 10859 0 0 5101 9352 9370 41830 668 48 13.814 13.814 -697.656 -13.814 0 0 1.31294e+06 5128.69 0.48 0.47 0.28 -1 -1 0.48 0.157847 0.14401 576 890 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_19.v common 13.88 vpr 60.97 MiB 0.09 10356 -1 -1 11 0.60 -1 -1 35856 -1 -1 80 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62432 22 19 1596 1445 1 1103 127 16 16 256 mult_36 auto 23.1 MiB 0.53 7942 61.0 MiB 0.25 0.01 13.4135 -482.658 -13.4135 13.4135 0.76 0.00256266 0.00223659 0.0970978 0.0842603 70 16470 46 6.45408e+06 3.45376e+06 1.02522e+06 4004.78 8.22 0.966879 0.858737 28352 262101 -1 13897 20 6791 13476 1545857 337290 0 0 1545857 337290 12666 8300 0 0 70245 62898 0 0 98733 77431 0 0 13189 9362 0 0 668088 89909 0 0 682936 89390 0 0 12666 0 0 5904 11304 11665 49063 874 2 13.6641 13.6641 -707.811 -13.6641 0 0 1.29210e+06 5047.26 0.49 0.61 0.22 -1 -1 0.49 0.209069 0.19161 615 938 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_20.v common 11.71 vpr 61.09 MiB 0.09 10448 -1 -1 11 0.99 -1 -1 35808 -1 -1 86 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62556 22 19 1656 1505 1 1131 133 16 16 256 mult_36 auto 23.2 MiB 0.55 8031 61.1 MiB 0.35 0.01 13.1944 -495.967 -13.1944 13.1944 0.83 0.00312907 0.00281314 0.165122 0.14642 76 15112 31 6.45408e+06 3.53459e+06 1.09288e+06 4269.05 5.32 1.03003 0.92638 29116 278758 -1 13023 20 6718 13368 1398934 308843 0 0 1398934 308843 12572 7866 0 0 68329 62097 0 0 95259 74918 0 0 13028 8812 0 0 599166 79942 0 0 610580 75208 0 0 12572 0 0 5881 12511 10723 49140 839 2 13.9854 13.9854 -716.853 -13.9854 0 0 1.35486e+06 5292.42 0.34 0.58 0.26 -1 -1 0.34 0.196854 0.178689 637 979 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_21.v common 12.62 vpr 61.71 MiB 0.09 10660 -1 -1 12 1.14 -1 -1 36668 -1 -1 91 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63196 22 19 1754 1586 1 1196 138 16 16 256 mult_36 auto 23.7 MiB 0.53 8206 61.7 MiB 0.20 0.00 13.688 -507.173 -13.688 13.688 0.54 0.00163087 0.00139392 0.0820178 0.0716406 68 17279 45 6.45408e+06 3.60195e+06 1.00038e+06 3907.74 7.19 0.883819 0.786922 27844 252052 -1 13604 20 6778 13015 1578312 344831 0 0 1578312 344831 12273 7989 0 0 68463 61777 0 0 92467 74141 0 0 12712 8691 0 0 693646 94049 0 0 698751 98184 0 0 12273 0 0 5522 10576 10517 44707 836 2 14.4398 14.4398 -713.501 -14.4398 0 0 1.24648e+06 4869.04 0.49 0.53 0.15 -1 -1 0.49 0.177045 0.161711 662 1035 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_22.v common 13.51 vpr 62.15 MiB 0.10 10928 -1 -1 11 1.12 -1 -1 37584 -1 -1 97 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63644 22 19 1827 1659 1 1261 144 16 16 256 mult_36 auto 24.3 MiB 0.61 9037 62.2 MiB 0.39 0.01 12.8941 -491.838 -12.8941 12.8941 0.83 0.00362573 0.00317273 0.180766 0.161138 76 17668 33 6.45408e+06 3.68278e+06 1.09288e+06 4269.05 6.58 1.34437 1.20723 29116 278758 -1 14721 19 7553 15065 1687352 379860 0 0 1687352 379860 14079 8741 0 0 74452 67002 0 0 105064 82185 0 0 14611 9768 0 0 732217 104898 0 0 746929 107266 0 0 14079 0 0 6554 12627 12172 53944 1068 117 13.5276 13.5276 -757.528 -13.5276 0 0 1.35486e+06 5292.42 0.54 0.66 0.27 -1 -1 0.54 0.240351 0.220232 708 1089 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_23.v common 13.23 vpr 62.53 MiB 0.12 11380 -1 -1 12 1.25 -1 -1 37708 -1 -1 97 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64028 22 19 1905 1720 1 1293 145 18 18 324 mult_36 auto 24.8 MiB 0.61 9192 62.5 MiB 0.24 0.00 13.8995 -555.981 -13.8995 13.8995 0.76 0.00173863 0.00148979 0.0993454 0.0872637 70 18619 48 7.94662e+06 4.07878e+06 1.34436e+06 4149.26 5.95 0.738776 0.652663 36496 347204 -1 16098 21 7668 14962 2031639 422704 0 0 2031639 422704 14022 8960 0 0 81295 73115 0 0 110808 88388 0 0 14558 9710 0 0 899613 119390 0 0 911343 123141 0 0 14022 0 0 6380 12119 12664 52839 1001 192 14.6547 14.6547 -869.331 -14.6547 0 0 1.69344e+06 5226.66 0.70 0.74 0.32 -1 -1 0.70 0.254133 0.232728 722 1124 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_24.v common 15.37 vpr 62.96 MiB 0.07 11508 -1 -1 12 0.87 -1 -1 36524 -1 -1 98 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64468 22 19 1979 1794 1 1336 146 18 18 324 mult_36 auto 25.1 MiB 0.56 9655 63.0 MiB 0.48 0.01 13.3044 -573.887 -13.3044 13.3044 1.17 0.00374244 0.00333065 0.225701 0.198973 70 18941 35 7.94662e+06 4.09226e+06 1.34436e+06 4149.26 8.76 1.46425 1.30804 36496 347204 -1 16351 19 7901 15064 1757286 371051 0 0 1757286 371051 14002 9207 0 0 77325 69055 0 0 108964 85315 0 0 14528 10199 0 0 770207 100052 0 0 772260 97223 0 0 14002 0 0 6128 13306 12950 52153 1089 2 14.4398 14.4398 -904.773 -14.4398 0 0 1.69344e+06 5226.66 0.46 0.39 0.21 -1 -1 0.46 0.126144 0.115177 739 1179 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_25.v common 56.27 vpr 64.29 MiB 0.12 11636 -1 -1 12 1.37 -1 -1 36600 -1 -1 105 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65828 22 19 2073 1871 1 1394 153 18 18 324 mult_36 auto 26.4 MiB 0.64 9629 64.3 MiB 0.50 0.01 14.762 -609.654 -14.762 14.762 1.18 0.00374673 0.00337297 0.23682 0.210063 70 20114 48 7.94662e+06 4.18656e+06 1.34436e+06 4149.26 48.64 2.93632 2.60832 36496 347204 -1 17314 19 8102 15928 1979979 424760 0 0 1979979 424760 14620 9892 0 0 85957 76855 0 0 119221 94669 0 0 15400 11037 0 0 882273 115802 0 0 862508 116505 0 0 14620 0 0 6547 15550 15381 55905 1342 46 15.3493 15.3493 -1049.25 -15.3493 0 0 1.69344e+06 5226.66 0.45 0.43 0.20 -1 -1 0.45 0.133426 0.121546 791 1232 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_26.v common 17.06 vpr 64.62 MiB 0.12 11716 -1 -1 12 1.45 -1 -1 36880 -1 -1 106 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66172 22 19 2130 1928 1 1451 154 18 18 324 mult_36 auto 26.7 MiB 0.69 10169 64.6 MiB 0.58 0.01 14.0681 -619.224 -14.0681 14.0681 1.18 0.00407309 0.00365919 0.263577 0.232456 76 20093 31 7.94662e+06 4.20003e+06 1.43297e+06 4422.75 8.36 1.63873 1.46457 37464 369264 -1 17149 19 8277 16250 1887938 399118 0 0 1887938 399118 15103 9850 0 0 80941 73206 0 0 113263 89462 0 0 15737 11206 0 0 829217 108323 0 0 833677 107071 0 0 15103 0 0 6851 13196 14847 57062 1213 26 14.5301 14.5301 -983.587 -14.5301 0 0 1.77541e+06 5479.65 0.67 0.72 0.35 -1 -1 0.67 0.238277 0.217667 811 1270 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_27.v common 15.97 vpr 64.48 MiB 0.12 11908 -1 -1 12 1.21 -1 -1 37212 -1 -1 114 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66024 22 19 2238 2019 1 1541 163 18 18 324 mult_36 auto 26.9 MiB 0.43 11015 64.5 MiB 0.33 0.01 13.5032 -633.141 -13.5032 13.5032 0.72 0.00194463 0.00166486 0.126882 0.110291 70 24160 44 7.94662e+06 4.70381e+06 1.34436e+06 4149.26 8.93 0.854253 0.750403 36496 347204 -1 19217 22 10306 20438 2404134 499638 0 0 2404134 499638 19107 12307 0 0 104443 93594 0 0 148229 114254 0 0 19893 14164 0 0 1046000 136449 0 0 1066462 128870 0 0 19107 0 0 8828 18225 18749 76483 1391 58 14.7485 14.7485 -1009.8 -14.7485 0 0 1.69344e+06 5226.66 0.71 0.93 0.33 -1 -1 0.71 0.327517 0.298806 851 1323 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_28.v common 19.61 vpr 65.21 MiB 0.12 12224 -1 -1 12 1.28 -1 -1 37408 -1 -1 117 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66772 22 19 2299 2080 1 1575 166 18 18 324 mult_36 auto 27.1 MiB 0.73 10911 65.2 MiB 0.53 0.01 14.0471 -622.998 -14.0471 14.0471 1.15 0.00450724 0.00404915 0.243694 0.215511 74 21902 38 7.94662e+06 4.74422e+06 1.40368e+06 4332.34 10.99 1.88626 1.68479 37144 362180 -1 18418 18 8568 16347 2400810 507492 0 0 2400810 507492 15333 10228 0 0 87248 78692 0 0 117644 94644 0 0 16107 11284 0 0 1087981 153306 0 0 1076497 159338 0 0 15333 0 0 6792 13694 14396 58718 1044 2 15.1245 15.1245 -946.028 -15.1245 0 0 1.74764e+06 5393.95 0.75 0.86 0.36 -1 -1 0.75 0.261837 0.239656 874 1365 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_29.v common 19.55 vpr 65.95 MiB 0.13 12448 -1 -1 12 1.52 -1 -1 37588 -1 -1 121 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67536 22 19 2400 2164 1 1649 171 22 22 484 mult_36 auto 27.9 MiB 0.48 12373 66.0 MiB 0.36 0.01 12.9796 -660.103 -12.9796 12.9796 1.21 0.00221206 0.00194274 0.141885 0.123695 72 26277 45 1.29336e+07 5.19411e+06 2.11301e+06 4365.72 10.36 0.923563 0.812094 55718 550791 -1 21080 19 10024 19599 2371232 484003 0 0 2371232 484003 18114 12012 0 0 98975 88762 0 0 138080 108924 0 0 19035 13736 0 0 1061380 128811 0 0 1035648 131758 0 0 18114 0 0 8117 17511 18458 68631 1529 394 14.2718 14.2718 -1223.01 -14.2718 0 0 2.64603e+06 5467.00 1.23 0.91 0.54 -1 -1 1.23 0.303006 0.277247 915 1415 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_30.v common 20.80 vpr 66.45 MiB 0.15 12536 -1 -1 12 1.47 -1 -1 37512 -1 -1 127 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68048 22 19 2474 2238 1 1692 177 22 22 484 mult_36 auto 28.5 MiB 0.75 12402 66.5 MiB 0.62 0.01 13.1798 -668.115 -13.1798 13.1798 1.99 0.00514632 0.00448922 0.281589 0.247518 74 24265 47 1.29336e+07 5.27494e+06 2.15943e+06 4461.62 10.15 1.55381 1.37812 56202 562081 -1 20834 19 11175 21756 2461756 505464 0 0 2461756 505464 20368 12986 0 0 108276 97791 0 0 151288 118174 0 0 21171 15276 0 0 1075254 134584 0 0 1085399 126653 0 0 20368 0 0 9222 18300 19754 76793 1432 2 14.1318 14.1318 -1060.98 -14.1318 0 0 2.68771e+06 5553.12 0.83 0.64 0.40 -1 -1 0.83 0.21421 0.194878 947 1470 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_31.v common 23.24 vpr 67.02 MiB 0.13 12860 -1 -1 12 1.27 -1 -1 39184 -1 -1 137 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68624 22 19 2603 2350 1 1765 187 22 22 484 mult_36 auto 29.2 MiB 0.78 12571 67.0 MiB 0.70 0.01 13.3737 -659.34 -13.3737 13.3737 1.93 0.00516092 0.00462123 0.319461 0.281484 70 24588 33 1.29336e+07 5.40966e+06 2.06816e+06 4273.05 12.18 2.13108 1.90587 55234 538945 -1 21448 19 10064 19891 2576889 524040 0 0 2576889 524040 18378 11391 0 0 103914 92828 0 0 143779 114405 0 0 18874 12697 0 0 1128842 146611 0 0 1163102 146108 0 0 18378 0 0 8341 18267 19081 72067 1572 270 14.7128 14.7128 -1205.77 -14.7128 0 0 2.60483e+06 5381.88 1.21 0.62 0.54 -1 -1 1.21 0.178346 0.163147 1001 1549 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_32.v common 26.80 vpr 67.06 MiB 0.14 12856 -1 -1 12 1.92 -1 -1 38172 -1 -1 141 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68668 22 19 2694 2441 1 1849 191 22 22 484 mult_36 auto 29.7 MiB 0.80 13128 67.1 MiB 0.73 0.01 13.4059 -652.366 -13.4059 13.4059 1.96 0.00536749 0.00482079 0.340093 0.301357 74 26088 47 1.29336e+07 5.46355e+06 2.15943e+06 4461.62 15.69 2.00632 1.783 56202 562081 -1 21704 22 10757 20256 2539471 515819 0 0 2539471 515819 18894 12184 0 0 101146 90642 0 0 141052 111245 0 0 19325 13606 0 0 1125663 141724 0 0 1133391 146418 0 0 18894 0 0 8168 16510 17889 67204 1501 25 14.283 14.283 -1091.43 -14.283 0 0 2.68771e+06 5553.12 0.86 0.60 0.36 -1 -1 0.86 0.190145 0.172726 1040 1621 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_33.v common 26.13 vpr 67.53 MiB 0.12 13452 -1 -1 13 1.83 -1 -1 38164 -1 -1 140 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69148 22 19 2787 2517 1 1916 191 22 22 484 mult_36 auto 30.1 MiB 0.83 13860 67.5 MiB 0.76 0.01 13.6488 -711.294 -13.6488 13.6488 1.97 0.00430716 0.00376237 0.349934 0.307496 74 27172 29 1.29336e+07 5.84608e+06 2.15943e+06 4461.62 13.96 2.10749 1.87132 56202 562081 -1 22940 21 11002 21468 2868174 596117 0 0 2868174 596117 20052 12692 0 0 108058 97265 0 0 150078 118373 0 0 20680 14221 0 0 1274243 173756 0 0 1295063 179810 0 0 20052 0 0 9078 18376 18415 75878 1474 299 15.0741 15.0741 -1268.72 -15.0741 0 0 2.68771e+06 5553.12 1.03 1.06 0.55 -1 -1 1.03 0.357746 0.325239 1070 1664 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_34.v common 25.43 vpr 67.77 MiB 0.12 13604 -1 -1 13 1.46 -1 -1 39716 -1 -1 142 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69400 22 19 2834 2564 1 1944 193 22 22 484 mult_36 auto 30.4 MiB 0.86 13776 67.8 MiB 0.76 0.01 14.2753 -741.266 -14.2753 14.2753 1.85 0.005308 0.00475847 0.332139 0.289614 76 27411 35 1.29336e+07 5.87302e+06 2.20457e+06 4554.90 13.73 2.2192 1.98123 56682 573177 -1 23086 20 10872 20923 2566066 535285 0 0 2566066 535285 19742 12690 0 0 109924 99410 0 0 152514 121275 0 0 20362 14498 0 0 1144473 144447 0 0 1119051 142965 0 0 19742 0 0 8900 17654 17464 75775 1210 37 16.0296 16.0296 -1349.18 -16.0296 0 0 2.73077e+06 5642.09 1.36 1.04 0.38 -1 -1 1.36 0.364328 0.332457 1084 1692 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_35.v common 18.54 vpr 68.44 MiB 0.11 13884 -1 -1 13 2.01 -1 -1 40080 -1 -1 150 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70084 22 19 2941 2654 1 2012 201 22 22 484 mult_36 auto 31.0 MiB 0.90 14392 68.4 MiB 0.52 0.01 13.9352 -781.481 -13.9352 13.9352 1.22 0.00260787 0.0022738 0.202764 0.176972 74 28682 29 1.29336e+07 5.9808e+06 2.15943e+06 4461.62 7.95 1.10595 0.971184 56202 562081 -1 24136 21 11626 22459 2761295 568544 0 0 2761295 568544 20799 13386 0 0 117286 105910 0 0 160773 127612 0 0 21415 14970 0 0 1225182 154685 0 0 1215840 151981 0 0 20799 0 0 9203 19077 20055 76621 1713 228 15.074 15.074 -1574.59 -15.074 0 0 2.68771e+06 5553.12 0.95 0.97 0.54 -1 -1 0.95 0.345789 0.31397 1131 1750 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_36.v common 27.33 vpr 68.89 MiB 0.16 13980 -1 -1 13 2.08 -1 -1 40032 -1 -1 153 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70548 22 19 3011 2724 1 2050 204 22 22 484 mult_36 auto 31.5 MiB 0.99 14453 68.9 MiB 0.85 0.01 13.7707 -751.494 -13.7707 13.7707 1.96 0.0058713 0.00525496 0.38135 0.334677 76 29166 47 1.29336e+07 6.02122e+06 2.20457e+06 4554.90 15.06 2.28366 2.01976 56682 573177 -1 24174 21 12121 23445 2974695 614218 0 0 2974695 614218 21988 13845 0 0 122333 110950 0 0 168746 134322 0 0 22790 15583 0 0 1310893 167979 0 0 1327945 171539 0 0 21988 0 0 9898 19163 19575 82292 1497 212 14.9018 14.9018 -1391.02 -14.9018 0 0 2.73077e+06 5642.09 0.92 0.68 0.57 -1 -1 0.92 0.223405 0.203602 1168 1801 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_37.v common 20.49 vpr 70.30 MiB 0.16 14328 -1 -1 13 1.92 -1 -1 39096 -1 -1 158 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71988 22 19 3132 2828 1 2123 210 24 24 576 mult_36 auto 32.1 MiB 0.83 15481 70.3 MiB 0.52 0.01 14.4868 -903.454 -14.4868 14.4868 1.47 0.00306847 0.00263064 0.207105 0.179949 74 29452 32 1.56141e+07 6.48458e+06 2.56259e+06 4448.94 8.43 1.17288 1.02856 66498 666725 -1 25337 21 11769 22731 2983928 599958 0 0 2983928 599958 21317 13737 0 0 114590 102878 0 0 157808 125386 0 0 21951 15152 0 0 1311616 173115 0 0 1356646 169690 0 0 21317 0 0 9577 19036 19669 80749 1448 22 14.8704 14.8704 -1523.2 -14.8704 0 0 3.19068e+06 5539.38 1.52 1.15 0.64 -1 -1 1.52 0.412289 0.377043 1192 1872 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_38.v common 23.84 vpr 69.82 MiB 0.13 14456 -1 -1 13 2.29 -1 -1 39136 -1 -1 160 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71496 22 19 3159 2855 1 2172 212 24 24 576 mult_36 auto 32.5 MiB 0.64 15337 69.8 MiB 0.44 0.01 14.4084 -940.203 -14.4084 14.4084 1.48 0.00302875 0.00265189 0.178818 0.156722 74 30259 35 1.56141e+07 6.51152e+06 2.56259e+06 4448.94 12.51 1.52698 1.35053 66498 666725 -1 25578 20 12078 22960 2674420 542857 0 0 2674420 542857 21228 13939 0 0 113706 101270 0 0 158343 125181 0 0 21777 15614 0 0 1174697 148697 0 0 1184669 138156 0 0 21228 0 0 9177 19896 21161 78183 1763 104 15.2386 15.2386 -1564.1 -15.2386 0 0 3.19068e+06 5539.38 1.40 0.63 0.66 -1 -1 1.40 0.210823 0.191438 1207 1880 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_39.v common 28.11 vpr 70.57 MiB 0.17 14744 -1 -1 13 2.23 -1 -1 39360 -1 -1 169 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72264 22 19 3284 2963 1 2259 221 24 24 576 mult_36 auto 33.3 MiB 1.01 16556 70.6 MiB 0.90 0.01 14.8416 -966.85 -14.8416 14.8416 1.59 0.00650907 0.00585699 0.393855 0.346342 76 32170 30 1.56141e+07 6.63277e+06 2.61600e+06 4541.67 14.41 2.18024 1.93456 67070 679911 -1 26884 21 13810 27680 3176058 652222 0 0 3176058 652222 25655 16135 0 0 137932 124280 0 0 192955 149921 0 0 26692 18056 0 0 1400623 174048 0 0 1392201 169782 0 0 25655 0 0 11873 26622 27157 100786 2051 376 15.4681 15.4681 -1620.41 -15.4681 0 0 3.24203e+06 5628.53 1.62 1.27 0.67 -1 -1 1.62 0.473982 0.431196 1267 1957 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_40.v common 26.77 vpr 70.73 MiB 0.17 14836 -1 -1 13 2.00 -1 -1 39440 -1 -1 169 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72424 22 19 3343 3022 1 2282 221 24 24 576 mult_36 auto 33.6 MiB 1.05 16103 70.7 MiB 0.58 0.01 14.5379 -829.329 -14.5379 14.5379 2.04 0.00343434 0.00300382 0.232702 0.203659 80 29222 36 1.56141e+07 6.63277e+06 2.72095e+06 4723.87 14.59 2.49836 2.21411 68798 719145 -1 25637 21 12426 23913 3552178 755815 0 0 3552178 755815 22411 14441 0 0 128209 114994 0 0 173105 138175 0 0 23278 16247 0 0 1607227 230429 0 0 1597948 241529 0 0 22411 0 0 10013 19456 19893 83655 1535 171 14.9564 14.9564 -1203.73 -14.9564 0 0 3.41546e+06 5929.62 1.10 0.91 0.59 -1 -1 1.10 0.2891 0.260412 1284 1997 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_41.v common 37.06 vpr 71.28 MiB 0.18 15156 -1 -1 13 2.57 -1 -1 41032 -1 -1 175 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72988 22 19 3448 3110 1 2364 228 24 24 576 mult_36 auto 34.2 MiB 1.07 17649 71.3 MiB 1.02 0.02 14.3188 -964.321 -14.3188 14.3188 2.43 0.00675759 0.00584811 0.444538 0.388722 78 32357 39 1.56141e+07 7.1096e+06 2.67122e+06 4637.53 22.91 3.03376 2.67828 68222 705597 -1 28453 21 13551 26328 3635002 733011 0 0 3635002 733011 24522 15496 0 0 141779 127416 0 0 197677 156706 0 0 25322 17215 0 0 1581279 210240 0 0 1664423 205938 0 0 24522 0 0 11003 24627 22161 93773 1842 81 14.7304 14.7304 -1614.39 -14.7304 0 0 3.35110e+06 5817.88 1.09 0.86 0.49 -1 -1 1.09 0.25542 0.230798 1333 2054 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_42.v common 38.22 vpr 72.71 MiB 0.19 15256 -1 -1 13 2.42 -1 -1 41432 -1 -1 179 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74460 22 19 3510 3172 1 2403 232 24 24 576 mult_36 auto 34.7 MiB 0.87 18000 72.7 MiB 0.63 0.01 14.4441 -997.144 -14.4441 14.4441 1.61 0.00364618 0.0032181 0.254867 0.222427 78 33010 27 1.56141e+07 7.16349e+06 2.67122e+06 4637.53 24.63 3.03733 2.68228 68222 705597 -1 29079 20 13363 25835 3098611 622458 0 0 3098611 622458 24053 15542 0 0 131352 117386 0 0 185001 145637 0 0 24858 17574 0 0 1358194 166877 0 0 1375153 159442 0 0 24053 0 0 10717 23329 23655 92480 1844 32 14.9453 14.9453 -1699.6 -14.9453 0 0 3.35110e+06 5817.88 1.62 1.21 0.73 -1 -1 1.62 0.445071 0.40401 1352 2097 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_43.v common 29.28 vpr 73.19 MiB 0.12 15548 -1 -1 13 2.88 -1 -1 38336 -1 -1 182 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74948 22 19 3598 3243 1 2469 235 24 24 576 mult_36 auto 35.2 MiB 0.95 18261 73.2 MiB 1.11 0.02 14.6232 -927.547 -14.6232 14.6232 2.36 0.0104718 0.00944984 0.506083 0.44603 76 36211 43 1.56141e+07 7.2039e+06 2.61600e+06 4541.67 14.53 2.11618 1.8695 67070 679911 -1 29422 21 13780 27118 3755300 769975 0 0 3755300 769975 25212 16118 0 0 140806 127180 0 0 191391 153917 0 0 26161 17789 0 0 1641643 227480 0 0 1730087 227491 0 0 25212 0 0 11459 23819 23226 95820 1991 507 15.6648 15.6648 -1425.06 -15.6648 0 0 3.24203e+06 5628.53 1.57 1.40 0.41 -1 -1 1.57 0.407998 0.368807 1391 2138 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_44.v common 28.80 vpr 73.72 MiB 0.19 15552 -1 -1 13 2.83 -1 -1 41632 -1 -1 189 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75492 22 19 3689 3334 1 2527 242 24 24 576 mult_36 auto 35.7 MiB 1.14 17950 73.7 MiB 0.61 0.01 14.7093 -995.949 -14.7093 14.7093 1.56 0.00364852 0.00321538 0.242786 0.212595 80 31854 24 1.56141e+07 7.29821e+06 2.72095e+06 4723.87 15.92 1.98952 1.74643 68798 719145 -1 28673 18 12944 25586 2715756 560406 0 0 2715756 560406 24115 14817 0 0 123992 109544 0 0 174043 135460 0 0 24954 16750 0 0 1160984 143006 0 0 1207668 140829 0 0 24115 0 0 11197 21780 21638 94095 1564 191 15.4611 15.4611 -1510.96 -15.4611 0 0 3.41546e+06 5929.62 1.10 0.88 0.44 -1 -1 1.10 0.323775 0.292925 1433 2210 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_45.v common 36.07 vpr 73.93 MiB 0.15 15908 -1 -1 13 2.40 -1 -1 38328 -1 -1 191 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75708 22 19 3763 3391 1 2591 245 24 24 576 mult_36 auto 36.1 MiB 0.82 18553 73.9 MiB 1.26 0.02 14.3222 -1050.75 -14.3222 14.3222 2.04 0.00807882 0.00686666 0.530683 0.462128 78 34887 31 1.56141e+07 7.72115e+06 2.67122e+06 4637.53 22.02 2.76881 2.4236 68222 705597 -1 30167 20 14304 28037 3284685 677320 0 0 3284685 677320 25946 16458 0 0 148275 133119 0 0 206134 163390 0 0 26718 18401 0 0 1428332 175965 0 0 1449280 169987 0 0 25946 0 0 11670 25311 24767 97343 2122 90 14.9487 14.9487 -1615.32 -14.9487 0 0 3.35110e+06 5817.88 1.36 0.74 0.82 -1 -1 1.36 0.256704 0.232712 1453 2234 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_46.v common 25.46 vpr 74.38 MiB 0.23 16116 -1 -1 13 2.97 -1 -1 42156 -1 -1 195 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76160 22 19 3845 3473 1 2635 249 24 24 576 mult_36 auto 36.4 MiB 0.79 19437 74.4 MiB 0.63 0.01 14.8984 -1016.65 -14.8984 14.8984 1.81 0.00394853 0.00346565 0.252476 0.220627 84 34637 50 1.56141e+07 7.77504e+06 2.84938e+06 4946.85 12.53 2.05384 1.79913 70522 759407 -1 29931 19 13077 25267 2706634 553613 0 0 2706634 553613 23821 14871 0 0 122332 108789 0 0 163366 130026 0 0 24560 16358 0 0 1168270 143528 0 0 1204285 140041 0 0 23821 0 0 10773 22176 20578 91713 1521 189 15.7789 15.7789 -1519.94 -15.7789 0 0 3.60864e+06 6265.01 1.24 0.66 0.46 -1 -1 1.24 0.273961 0.249371 1482 2297 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_47.v common 28.37 vpr 75.70 MiB 0.23 16440 -1 -1 13 3.43 -1 -1 38604 -1 -1 206 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77512 22 19 3983 3594 1 2724 260 24 24 576 mult_36 auto 37.7 MiB 1.27 19383 75.7 MiB 1.24 0.02 14.4083 -1073.29 -14.4083 14.4083 2.43 0.00794371 0.00715968 0.513734 0.445792 76 37619 40 1.56141e+07 7.92323e+06 2.61600e+06 4541.67 13.34 2.59635 2.28175 67070 679911 -1 31418 19 14350 27897 3024453 647081 0 0 3024453 647081 26087 16696 0 0 141954 127412 0 0 192823 154889 0 0 27079 18681 0 0 1319692 167343 0 0 1316818 162060 0 0 26087 0 0 11766 24510 24504 98247 1847 321 15.4577 15.4577 -1762.38 -15.4577 0 0 3.24203e+06 5628.53 1.02 0.77 0.45 -1 -1 1.02 0.277828 0.251478 1559 2386 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_48.v common 37.64 vpr 74.86 MiB 0.21 16680 -1 -1 13 2.71 -1 -1 38320 -1 -1 202 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76656 22 19 4025 3636 1 2760 256 24 24 576 mult_36 auto 37.7 MiB 1.04 19748 74.9 MiB 1.17 0.02 14.4441 -1129.92 -14.4441 14.4441 2.33 0.00810187 0.00718297 0.506709 0.442287 78 36206 32 1.56141e+07 7.86934e+06 2.67122e+06 4637.53 22.06 3.55016 3.13353 68222 705597 -1 31780 20 14732 29166 3050171 640462 0 0 3050171 640462 27073 17004 0 0 144560 128289 0 0 205853 160431 0 0 27915 19257 0 0 1310627 160508 0 0 1334143 154973 0 0 27073 0 0 12370 25514 25794 102982 2183 744 15.1959 15.1959 -1647.86 -15.1959 0 0 3.35110e+06 5817.88 1.41 1.15 0.72 -1 -1 1.41 0.426697 0.384812 1547 2409 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_49.v common 33.22 vpr 76.54 MiB 0.22 16872 -1 -1 13 3.12 -1 -1 42156 -1 -1 213 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78376 22 19 4164 3758 1 2857 268 24 24 576 mult_36 auto 39.0 MiB 1.07 23570 76.5 MiB 1.20 0.02 15.3682 -1091.87 -15.3682 15.3682 2.34 0.00651244 0.00570404 0.50039 0.43526 82 43360 42 1.56141e+07 8.41354e+06 2.78508e+06 4835.20 16.80 3.01358 2.64948 69370 733739 -1 36213 19 16044 31330 4179863 872972 0 0 4179863 872972 28929 18379 0 0 162680 145923 0 0 221101 176026 0 0 29807 20573 0 0 1871773 259724 0 0 1865573 252347 0 0 28929 0 0 12914 32029 29407 112534 2435 420 15.7049 15.7049 -1961.31 -15.7049 0 0 3.48632e+06 6052.64 1.68 1.60 0.74 -1 -1 1.68 0.519552 0.473195 1622 2498 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_50.v common 31.46 vpr 76.77 MiB 0.24 17316 -1 -1 13 3.31 -1 -1 38876 -1 -1 212 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78612 22 19 4190 3784 1 2864 267 24 24 576 mult_36 auto 39.2 MiB 0.81 20824 76.8 MiB 1.26 0.02 14.6589 -1033.43 -14.6589 14.6589 1.94 0.00800152 0.00710899 0.54039 0.473187 76 41580 39 1.56141e+07 8.40006e+06 2.61600e+06 4541.67 16.07 2.67548 2.35983 67070 679911 -1 33992 21 15684 30416 4399730 932746 0 0 4399730 932746 28054 17931 0 0 160316 144471 0 0 216328 174713 0 0 28880 20107 0 0 1976819 281765 0 0 1989333 293759 0 0 28054 0 0 12400 27584 27617 104428 2415 1002 15.536 15.536 -1815.29 -15.536 0 0 3.24203e+06 5628.53 1.61 1.04 0.68 -1 -1 1.61 0.323721 0.293488 1618 2505 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_51.v common 38.78 vpr 77.61 MiB 0.23 17392 -1 -1 13 2.65 -1 -1 43008 -1 -1 216 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79468 22 19 4305 3882 1 2950 271 24 24 576 mult_36 auto 39.8 MiB 1.34 22869 77.6 MiB 0.86 0.01 14.9061 -1242.71 -14.9061 14.9061 1.65 0.00476557 0.00410516 0.32654 0.283959 86 40531 32 1.56141e+07 8.45395e+06 2.91907e+06 5067.82 23.52 3.55731 3.14162 71098 772847 -1 35651 21 15658 31646 3584692 726369 0 0 3584692 726369 28734 18151 0 0 158422 140913 0 0 225128 175563 0 0 29965 20156 0 0 1550980 192621 0 0 1591463 178965 0 0 28734 0 0 13105 33825 31633 112909 2946 531 15.5214 15.5214 -1802.51 -15.5214 0 0 3.65856e+06 6351.67 1.71 1.20 0.87 -1 -1 1.71 0.48373 0.439215 1666 2571 -1 -1 -1 -1 +k6_frac_N8_22nm.xml fir_nopipe_52.v common 33.18 vpr 77.91 MiB 0.24 17564 -1 -1 13 3.76 -1 -1 39476 -1 -1 227 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79780 22 19 4363 3940 1 3005 282 24 24 576 mult_36 auto 40.2 MiB 1.34 22655 77.9 MiB 0.77 0.01 14.5582 -1126.55 -14.5582 14.5582 1.49 0.00461825 0.00408966 0.307361 0.269556 84 40631 33 1.56141e+07 8.60214e+06 2.84938e+06 4946.85 18.51 2.93428 2.57254 70522 759407 -1 34378 19 16460 32184 3917767 793689 0 0 3917767 793689 29904 18370 0 0 159185 143402 0 0 212628 169300 0 0 30671 20643 0 0 1680611 222904 0 0 1804768 219070 0 0 29904 0 0 13471 31423 27704 114486 2377 1574 14.9879 14.9879 -1965.6 -14.9879 0 0 3.60864e+06 6265.01 1.24 1.00 0.48 -1 -1 1.24 0.316016 0.285032 1697 2610 -1 -1 -1 -1 +k6_frac_ripple_N8_22nm.xml fir_pipe_14.v common 7.78 vpr 61.65 MiB 0.08 10412 -1 -1 1 0.25 -1 -1 35556 -1 -1 81 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63132 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 23.6 MiB 0.33 5532 61.7 MiB 0.23 0.00 3.91806 -1040.42 -3.91806 3.91806 0.85 0.00109344 0.00091958 0.0901239 0.0785615 54 11342 33 6.52434e+06 2.71588e+06 829453. 3240.05 3.43 0.664174 0.583742 26108 202796 -1 8650 20 4018 4750 649693 168989 0 0 649693 168989 4454 4033 0 0 36219 32933 0 0 42534 38339 0 0 4467 4056 0 0 277772 43888 0 0 284247 45740 0 0 4454 0 0 456 3917 3417 27350 360 2 4.29396 4.29396 -1256.64 -4.29396 0 0 1.02522e+06 4004.78 0.33 0.18 0.15 -1 -1 0.33 0.079332 0.0718892 605 649 247 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_15.v common 7.53 vpr 62.57 MiB 0.08 10724 -1 -1 1 0.31 -1 -1 36140 -1 -1 88 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64068 22 19 2144 1789 1 1119 134 16 16 256 mult_36 auto 24.4 MiB 0.49 6531 62.6 MiB 0.17 0.00 3.91806 -1168.25 -3.91806 3.91806 0.55 0.00126729 0.00108108 0.0610998 0.0528026 56 11905 25 6.52434e+06 3.20969e+06 849745. 3319.32 3.33 0.603471 0.530657 26364 208198 -1 10017 16 4104 4669 690773 169975 0 0 690773 169975 4335 4126 0 0 34740 31006 0 0 42417 38039 0 0 4345 4159 0 0 303224 45243 0 0 301712 47402 0 0 4335 0 0 250 1783 2119 5006 438 10 4.41926 4.41926 -1412.23 -4.41926 0 0 1.04740e+06 4091.43 0.28 0.27 0.12 -1 -1 0.28 0.11477 0.103522 654 704 266 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_16.v common 10.42 vpr 62.88 MiB 0.05 11092 -1 -1 1 0.30 -1 -1 35804 -1 -1 91 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64384 22 19 2218 1846 1 1161 137 16 16 256 mult_36 auto 24.7 MiB 0.37 6725 62.9 MiB 0.36 0.01 3.91806 -1218.73 -3.91806 3.91806 0.80 0.00305548 0.00270151 0.149102 0.131663 56 13191 40 6.52434e+06 3.25161e+06 849745. 3319.32 5.79 0.851366 0.751885 26364 208198 -1 10869 20 4819 5527 890551 213383 0 0 890551 213383 5030 4853 0 0 41273 37144 0 0 50707 45232 0 0 5033 4880 0 0 403268 59703 0 0 385240 61571 0 0 5030 0 0 228 2525 2548 5890 559 21 4.41926 4.41926 -1406.51 -4.41926 0 0 1.04740e+06 4091.43 0.37 0.33 0.19 -1 -1 0.37 0.145371 0.131302 683 723 285 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_17.v common 9.10 vpr 64.20 MiB 0.09 11544 -1 -1 1 0.32 -1 -1 36572 -1 -1 103 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65740 22 19 2536 2130 1 1274 149 16 16 256 mult_36 auto 26.1 MiB 0.60 7384 64.2 MiB 0.31 0.00 4.04336 -1366.18 -4.04336 4.04336 0.53 0.00172887 0.00147842 0.114746 0.0991618 54 14694 39 6.52434e+06 3.4193e+06 829453. 3240.05 4.70 1.06189 0.941419 26108 202796 -1 11063 19 4686 5415 805239 204345 0 0 805239 204345 4878 4704 0 0 41629 37778 0 0 48615 44000 0 0 4881 4727 0 0 352891 55114 0 0 352345 58022 0 0 4878 0 0 210 2273 2877 5641 596 120 4.41926 4.41926 -1537.81 -4.41926 0 0 1.02522e+06 4004.78 0.24 0.26 0.14 -1 -1 0.24 0.124617 0.111908 770 851 304 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_18.v common 9.90 vpr 64.61 MiB 0.10 12020 -1 -1 1 0.23 -1 -1 36600 -1 -1 107 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66164 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 26.7 MiB 0.61 7505 64.6 MiB 0.41 0.01 3.79276 -1370.42 -3.79276 3.79276 0.85 0.00364165 0.00322374 0.161757 0.141566 58 14015 35 6.52434e+06 3.47519e+06 871168. 3403.00 4.96 1.15651 1.02442 26872 219187 -1 11258 18 4808 5568 739157 183362 0 0 739157 183362 5069 4872 0 0 40530 36270 0 0 49740 44354 0 0 5077 4902 0 0 316326 46799 0 0 322415 46165 0 0 5069 0 0 276 2374 2716 6047 582 35 4.29396 4.29396 -1585.89 -4.29396 0 0 1.09288e+06 4269.05 0.30 0.32 0.12 -1 -1 0.30 0.173111 0.15743 798 870 323 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_19.v common 10.32 vpr 65.62 MiB 0.10 12092 -1 -1 1 0.37 -1 -1 36812 -1 -1 113 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67192 22 19 2778 2321 1 1410 160 16 16 256 mult_36 auto 27.8 MiB 0.70 8691 65.6 MiB 0.54 0.01 3.91806 -1509.95 -3.91806 3.91806 0.83 0.00204361 0.00179622 0.223625 0.198054 60 15087 28 6.52434e+06 3.95503e+06 890343. 3477.90 4.39 1.07912 0.950695 27128 224764 -1 12451 18 5081 5941 840313 204622 0 0 840313 204622 5391 5117 0 0 43815 39351 0 0 52006 46842 0 0 5396 5141 0 0 371684 53493 0 0 362021 54678 0 0 5391 0 0 328 3218 2936 6406 679 57 4.41926 4.41926 -1819.23 -4.41926 0 0 1.11577e+06 4358.47 0.39 0.38 0.23 -1 -1 0.39 0.16737 0.153336 846 925 342 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_20.v common 8.97 vpr 65.90 MiB 0.10 12360 -1 -1 1 0.26 -1 -1 37344 -1 -1 118 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67484 22 19 2852 2378 1 1454 165 16 16 256 mult_36 auto 28.0 MiB 0.67 9483 65.9 MiB 0.36 0.01 4.04336 -1544.54 -4.04336 4.04336 0.56 0.00192936 0.00166899 0.129061 0.111752 66 15447 26 6.52434e+06 4.0249e+06 974584. 3806.97 3.60 0.884492 0.776276 28148 247068 -1 12702 16 4968 5709 783144 192127 0 0 783144 192127 5238 5021 0 0 42094 37740 0 0 51121 45860 0 0 5242 5046 0 0 343111 49122 0 0 336338 49338 0 0 5238 0 0 286 2436 2530 6230 557 26 4.41926 4.41926 -1751.26 -4.41926 0 0 1.22072e+06 4768.46 0.49 0.40 0.24 -1 -1 0.49 0.189233 0.171288 875 944 361 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_21.v common 8.55 vpr 66.72 MiB 0.12 12820 -1 -1 1 0.29 -1 -1 37052 -1 -1 122 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68320 22 19 3057 2549 1 1559 169 16 16 256 mult_36 auto 28.9 MiB 0.54 10025 66.7 MiB 0.28 0.01 4.16866 -1686.98 -4.16866 4.16866 0.76 0.00200218 0.00173706 0.105976 0.0927816 62 17895 38 6.52434e+06 4.0808e+06 916467. 3579.95 4.04 0.810534 0.706101 27384 229598 -1 13915 17 5736 6724 1049725 259179 0 0 1049725 259179 5996 5782 0 0 53921 48820 0 0 63148 57310 0 0 6000 5806 0 0 463070 69332 0 0 457590 72129 0 0 5996 0 0 277 3412 3655 6795 840 212 4.41926 4.41926 -2002.24 -4.41926 0 0 1.13630e+06 4438.68 0.26 0.26 0.13 -1 -1 0.26 0.111785 0.101398 932 1017 380 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_22.v common 9.65 vpr 67.36 MiB 0.08 12788 -1 -1 1 0.32 -1 -1 37428 -1 -1 125 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68980 22 19 3131 2606 1 1599 172 16 16 256 mult_36 auto 29.5 MiB 0.67 9771 67.4 MiB 0.31 0.01 4.04336 -1711.14 -4.04336 4.04336 0.81 0.00200468 0.0017144 0.110532 0.0961652 64 16768 28 6.52434e+06 4.12272e+06 943753. 3686.54 4.33 1.11399 0.9808 27892 240595 -1 13524 16 5637 6577 904226 221207 0 0 904226 221207 5884 5688 0 0 48062 42825 0 0 59166 52880 0 0 5889 5707 0 0 394843 56868 0 0 390382 57239 0 0 5884 0 0 264 3491 3569 6856 770 107 4.41926 4.41926 -2045.7 -4.41926 0 0 1.19033e+06 4649.74 0.46 0.24 0.14 -1 -1 0.46 0.111263 0.100975 961 1036 399 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_23.v common 15.68 vpr 68.36 MiB 0.12 13164 -1 -1 1 0.48 -1 -1 37288 -1 -1 133 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70004 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 30.7 MiB 0.81 9614 68.4 MiB 0.82 0.01 3.91806 -1787.72 -3.91806 3.91806 1.17 0.00486532 0.00435307 0.353254 0.315856 58 17491 26 8.04299e+06 4.63052e+06 1.14310e+06 3528.09 8.03 1.70424 1.5124 34680 290288 -1 14748 19 6534 7558 1147484 273613 0 0 1147484 273613 6790 6574 0 0 57230 51557 0 0 69112 62294 0 0 6795 6606 0 0 501947 72093 0 0 505610 74489 0 0 6790 0 0 276 3674 4069 7867 835 30 4.29396 4.29396 -2144.48 -4.29396 0 0 1.43297e+06 4422.75 0.54 0.51 0.27 -1 -1 0.54 0.257387 0.233056 1012 1091 418 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_24.v common 17.23 vpr 68.49 MiB 0.13 13284 -1 -1 1 0.54 -1 -1 37016 -1 -1 137 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70136 22 19 3375 2799 1 1743 185 18 18 324 mult_36 auto 30.6 MiB 0.85 10338 68.5 MiB 0.81 0.01 4.16866 -1810.95 -4.16866 4.16866 1.18 0.00492577 0.00440868 0.330276 0.294381 58 19035 49 8.04299e+06 4.68641e+06 1.14310e+06 3528.09 9.30 2.24209 1.99349 34680 290288 -1 15628 19 6420 7514 1247362 294088 0 0 1247362 294088 6728 6474 0 0 56581 50751 0 0 69222 61961 0 0 6734 6512 0 0 553104 82907 0 0 554993 85483 0 0 6728 0 0 326 3689 4120 7972 872 128 4.64786 4.64786 -2086.5 -4.64786 0 0 1.43297e+06 4422.75 0.62 0.56 0.27 -1 -1 0.62 0.271414 0.246519 1041 1110 437 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_25.v common 18.99 vpr 69.36 MiB 0.14 13768 -1 -1 1 0.49 -1 -1 37876 -1 -1 146 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71028 22 19 3615 3005 1 1847 194 18 18 324 mult_36 auto 31.7 MiB 0.89 11465 69.4 MiB 0.90 0.01 4.04336 -2012.57 -4.04336 4.04336 1.15 0.00580966 0.00526578 0.384871 0.346112 58 21207 44 8.04299e+06 4.81218e+06 1.14310e+06 3528.09 10.89 2.23317 1.99583 34680 290288 -1 16861 18 6917 8332 1253666 293735 0 0 1253666 293735 7162 6954 0 0 59060 52667 0 0 72446 64645 0 0 7164 6973 0 0 553627 79779 0 0 554207 82717 0 0 7162 0 0 264 5759 5338 8269 1220 266 4.41926 4.41926 -2378.91 -4.41926 0 0 1.43297e+06 4422.75 0.57 0.61 0.27 -1 -1 0.57 0.31277 0.284438 1107 1201 456 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_26.v common 10.96 vpr 69.76 MiB 0.14 13876 -1 -1 1 0.60 -1 -1 37600 -1 -1 148 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71436 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 32.0 MiB 0.96 11745 69.8 MiB 0.47 0.01 3.79276 -1993.71 -3.79276 3.79276 0.74 0.00273272 0.00236741 0.16771 0.146621 64 20921 30 8.04299e+06 4.84013e+06 1.23838e+06 3822.15 4.64 1.01012 0.883137 35972 318676 -1 16768 17 7074 8107 1252216 283611 0 0 1252216 283611 7379 7115 0 0 59487 53017 0 0 73056 65248 0 0 7383 7156 0 0 552687 74947 0 0 552224 76128 0 0 7379 0 0 324 3730 3758 8779 796 56 4.79516 4.79516 -2402.43 -4.79516 0 0 1.56068e+06 4816.91 0.42 0.33 0.18 -1 -1 0.42 0.150513 0.136027 1135 1220 475 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_27.v common 13.48 vpr 71.02 MiB 0.16 14308 -1 -1 1 0.61 -1 -1 38240 -1 -1 156 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72728 22 19 3871 3210 1 1998 205 18 18 324 mult_36 auto 33.2 MiB 0.99 12494 71.0 MiB 0.80 0.02 4.16866 -2116.43 -4.16866 4.16866 0.87 0.0062806 0.00567492 0.302945 0.264909 66 21954 33 8.04299e+06 5.34793e+06 1.27759e+06 3943.17 6.45 1.66209 1.46727 36296 327148 -1 17589 18 6955 7945 1151159 265542 0 0 1151159 265542 7244 7001 0 0 55946 49562 0 0 68894 61409 0 0 7253 7029 0 0 516273 69157 0 0 495549 71384 0 0 7244 0 0 304 3305 3717 8473 770 46 4.52256 4.52256 -2411.76 -4.52256 0 0 1.59950e+06 4936.74 0.41 0.32 0.18 -1 -1 0.41 0.154957 0.13994 1191 1275 494 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_28.v common 18.14 vpr 71.45 MiB 0.15 14552 -1 -1 1 0.61 -1 -1 37836 -1 -1 160 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73160 22 19 3945 3267 1 2043 209 18 18 324 mult_36 auto 33.6 MiB 1.03 13469 71.4 MiB 0.96 0.01 4.04336 -2173.61 -4.04336 4.04336 1.13 0.00516656 0.00462575 0.384899 0.343719 64 24442 44 8.04299e+06 5.40382e+06 1.23838e+06 3822.15 9.89 2.50473 2.23944 35972 318676 -1 19057 20 7480 8574 1272210 285216 0 0 1272210 285216 7775 7515 0 0 59346 52543 0 0 74503 65892 0 0 7780 7572 0 0 560447 77112 0 0 562359 74582 0 0 7775 0 0 312 3438 4111 9295 838 180 4.41926 4.41926 -2635.89 -4.41926 0 0 1.56068e+06 4816.91 0.61 0.47 0.28 -1 -1 0.61 0.219257 0.197717 1219 1294 513 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_29.v common 20.69 vpr 72.38 MiB 0.10 15028 -1 -1 1 0.68 -1 -1 38748 -1 -1 170 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74112 22 19 4159 3447 1 2157 220 22 22 484 mult_36 auto 34.7 MiB 1.05 13881 72.4 MiB 1.03 0.01 3.91806 -2256.75 -3.91806 3.91806 1.97 0.00495141 0.00432268 0.425121 0.379799 56 25870 28 1.30842e+07 5.93957e+06 1.71605e+06 3545.56 10.72 2.36173 2.11002 51606 428054 -1 21578 17 8723 10189 1827548 416661 0 0 1827548 416661 9097 8805 0 0 81086 72985 0 0 97944 88169 0 0 9099 8863 0 0 809356 118178 0 0 820966 119661 0 0 9097 0 0 397 5343 5818 11154 1135 79 4.41926 4.41926 -2881.94 -4.41926 0 0 2.11301e+06 4365.72 0.68 0.43 0.31 -1 -1 0.68 0.164264 0.148159 1283 1367 532 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_30.v common 22.99 vpr 72.87 MiB 0.16 14932 -1 -1 1 0.59 -1 -1 40368 -1 -1 173 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74616 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 35.2 MiB 1.05 14538 72.9 MiB 1.07 0.02 3.79276 -2331.2 -3.79276 3.79276 1.92 0.00628993 0.00563238 0.421649 0.374091 58 27133 33 1.30842e+07 5.98149e+06 1.75961e+06 3635.55 13.13 2.50232 2.22172 52570 450426 -1 21764 18 8536 10026 1662281 366926 0 0 1662281 366926 8947 8619 0 0 72074 64370 0 0 88358 78903 0 0 8951 8689 0 0 747280 101739 0 0 736671 104606 0 0 8947 0 0 427 5026 5796 11156 1125 250 4.41926 4.41926 -2770.54 -4.41926 0 0 2.20457e+06 4554.90 0.62 0.40 0.25 -1 -1 0.62 0.1636 0.147172 1311 1386 551 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_31.v common 15.60 vpr 73.41 MiB 0.16 15280 -1 -1 1 0.78 -1 -1 40288 -1 -1 179 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75176 22 19 4410 3647 1 2304 229 22 22 484 mult_36 auto 35.8 MiB 1.00 14019 73.4 MiB 0.62 0.01 3.79276 -2360.11 -3.79276 3.79276 1.21 0.00306003 0.00266269 0.221721 0.19292 58 27437 41 1.30842e+07 6.06533e+06 1.75961e+06 3635.55 7.51 1.26527 1.09841 52570 450426 -1 21673 20 9118 10564 1758128 401153 0 0 1758128 401153 9431 9168 0 0 81625 73861 0 0 98312 88328 0 0 9432 9203 0 0 774195 112209 0 0 785133 108384 0 0 9431 0 0 332 5036 5516 11066 1178 68 4.39726 4.39726 -2947.03 -4.39726 0 0 2.20457e+06 4554.90 0.62 0.45 0.25 -1 -1 0.62 0.190861 0.170992 1363 1441 570 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_32.v common 20.90 vpr 74.71 MiB 0.17 15552 -1 -1 1 0.76 -1 -1 40416 -1 -1 183 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76504 22 19 4484 3704 1 2346 233 22 22 484 mult_36 auto 36.1 MiB 0.87 15386 74.7 MiB 1.42 0.02 4.04336 -2411.15 -4.04336 4.04336 2.05 0.00584658 0.00521574 0.661211 0.601421 60 28281 31 1.30842e+07 6.12123e+06 1.79840e+06 3715.71 10.73 2.81762 2.51689 53054 462096 -1 22591 18 8761 10239 1814040 392114 0 0 1814040 392114 9124 8817 0 0 77936 69890 0 0 92855 83673 0 0 9125 8861 0 0 820011 108805 0 0 804989 112068 0 0 9124 0 0 382 4899 5847 11094 1146 27 4.64786 4.64786 -2928.97 -4.64786 0 0 2.25108e+06 4650.99 0.70 0.44 0.26 -1 -1 0.70 0.197952 0.179387 1393 1460 589 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_33.v common 20.56 vpr 76.00 MiB 0.18 16484 -1 -1 1 0.80 -1 -1 40844 -1 -1 196 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77820 22 19 4843 4029 1 2462 247 22 22 484 mult_36 auto 37.6 MiB 1.18 16459 76.0 MiB 0.68 0.01 3.89606 -2651.16 -3.89606 3.89606 1.38 0.003748 0.00317273 0.237436 0.205998 62 30168 49 1.30842e+07 6.6989e+06 1.85176e+06 3825.95 10.34 2.28041 2.01318 53538 472186 -1 22898 17 8776 10377 1483263 329023 0 0 1483263 329023 9174 8830 0 0 75335 67392 0 0 89475 80522 0 0 9178 8891 0 0 651579 82449 0 0 648522 80939 0 0 9174 0 0 417 5645 5452 11258 1248 15 4.39726 4.39726 -3165.23 -4.39726 0 0 2.29262e+06 4736.82 0.97 0.53 0.44 -1 -1 0.97 0.272642 0.243712 1490 1606 608 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_34.v common 18.64 vpr 75.38 MiB 0.18 16696 -1 -1 1 0.69 -1 -1 40728 -1 -1 199 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77184 22 19 4917 4086 1 2503 250 22 22 484 mult_36 auto 37.9 MiB 1.18 17150 75.4 MiB 1.04 0.02 3.91806 -2639.01 -3.91806 3.91806 1.32 0.00786258 0.00708691 0.402646 0.358773 64 29030 40 1.30842e+07 6.74082e+06 1.90554e+06 3937.06 8.96 2.36609 2.09772 54502 494576 -1 24080 17 9325 11144 1850076 402603 0 0 1850076 402603 9724 9377 0 0 79950 71020 0 0 98560 87457 0 0 9729 9403 0 0 824022 111129 0 0 828091 114217 0 0 9724 0 0 421 6977 6924 11857 1475 1073 4.41926 4.41926 -3264.59 -4.41926 0 0 2.40101e+06 4960.76 0.69 0.46 0.28 -1 -1 0.69 0.191871 0.172984 1519 1625 627 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_35.v common 21.71 vpr 77.75 MiB 0.19 16948 -1 -1 1 0.68 -1 -1 41432 -1 -1 207 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79620 22 19 5093 4228 1 2606 258 22 22 484 mult_36 auto 39.2 MiB 1.06 18465 77.8 MiB 0.83 0.02 3.79276 -2819.04 -3.79276 3.79276 2.05 0.00756118 0.00642976 0.295463 0.2556 64 32846 49 1.30842e+07 6.85261e+06 1.90554e+06 3937.06 11.26 2.47621 2.18044 54502 494576 -1 26210 19 10148 12063 2053669 446910 0 0 2053669 446910 10593 10255 0 0 86601 76963 0 0 106741 94705 0 0 10598 10314 0 0 913952 125449 0 0 925184 129224 0 0 10593 0 0 464 6611 7382 12734 1537 163 4.41926 4.41926 -3447.39 -4.41926 0 0 2.40101e+06 4960.76 0.69 0.52 0.28 -1 -1 0.69 0.219984 0.197676 1572 1680 646 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_36.v common 25.15 vpr 76.85 MiB 0.13 17200 -1 -1 1 0.64 -1 -1 41284 -1 -1 209 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78696 22 19 5167 4285 1 2653 260 22 22 484 mult_36 auto 39.2 MiB 0.93 17974 76.9 MiB 1.35 0.02 3.79276 -2763.15 -3.79276 3.79276 1.73 0.00855294 0.00735212 0.484758 0.421363 66 33446 38 1.30842e+07 6.88056e+06 1.96511e+06 4060.15 13.87 3.2111 2.83215 54986 507526 -1 25571 19 9957 11511 1992287 435170 0 0 1992287 435170 10461 10036 0 0 87438 78852 0 0 105574 95001 0 0 10473 10096 0 0 898991 120186 0 0 879350 120999 0 0 10461 0 0 524 5184 6006 12936 1154 67 4.29396 4.29396 -3320.74 -4.29396 0 0 2.45963e+06 5081.88 1.18 0.97 0.49 -1 -1 1.18 0.489416 0.446066 1600 1699 665 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_37.v common 29.85 vpr 79.11 MiB 0.20 17520 -1 -1 1 0.91 -1 -1 39988 -1 -1 218 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81012 22 19 5380 4464 1 2755 270 24 24 576 mult_36 auto 40.7 MiB 0.84 18637 79.1 MiB 1.24 0.02 4.16866 -3145.82 -4.16866 4.16866 2.42 0.00958579 0.00869167 0.484531 0.429998 58 35336 46 1.57908e+07 7.40233e+06 2.08734e+06 3623.85 17.60 2.87159 2.53734 62154 534210 -1 28370 23 11306 13304 2308958 513018 0 0 2308958 513018 11714 11355 0 0 101509 91611 0 0 123532 110764 0 0 11715 11423 0 0 1034331 144891 0 0 1026157 142974 0 0 11714 0 0 431 7888 7985 13954 1633 124 4.54456 4.54456 -3952.02 -4.54456 0 0 2.61600e+06 4541.67 1.00 0.72 0.47 -1 -1 1.00 0.324841 0.28788 1662 1772 684 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_38.v common 19.37 vpr 78.06 MiB 0.21 17528 -1 -1 1 0.81 -1 -1 41712 -1 -1 220 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79932 22 19 5454 4521 1 2802 272 24 24 576 mult_36 auto 40.5 MiB 1.08 19630 78.1 MiB 0.78 0.01 4.04336 -3159.99 -4.04336 4.04336 1.48 0.00391703 0.00342304 0.264007 0.22977 62 35837 37 1.57908e+07 7.43028e+06 2.19658e+06 3813.51 8.84 1.61325 1.40348 63306 560109 -1 27373 20 10539 12452 1958235 439033 0 0 1958235 439033 10964 10604 0 0 93232 83861 0 0 109740 99131 0 0 10968 10652 0 0 875276 115901 0 0 858055 118884 0 0 10964 0 0 442 5963 7386 13286 1547 476 4.41926 4.41926 -3744.33 -4.41926 0 0 2.72095e+06 4723.87 0.94 0.57 0.53 -1 -1 0.94 0.274303 0.246108 1690 1791 703 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_39.v common 30.14 vpr 79.02 MiB 0.15 18148 -1 -1 1 0.80 -1 -1 40516 -1 -1 228 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80916 22 19 5629 4662 1 2909 280 24 24 576 mult_36 auto 42.0 MiB 1.34 18773 79.0 MiB 1.51 0.02 4.04336 -3208.57 -4.04336 4.04336 1.84 0.00739118 0.00652359 0.520395 0.456085 58 35135 44 1.57908e+07 7.54207e+06 2.08734e+06 3623.85 18.10 3.07248 2.71476 62154 534210 -1 27530 17 10702 12609 2192053 495504 0 0 2192053 495504 11128 10785 0 0 92395 82793 0 0 112518 100667 0 0 11131 10829 0 0 988465 143307 0 0 976416 147123 0 0 11128 0 0 445 6543 7375 13201 1554 116 4.54456 4.54456 -3739.15 -4.54456 0 0 2.61600e+06 4541.67 0.95 0.79 0.49 -1 -1 0.95 0.27789 0.249368 1742 1846 722 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_40.v common 28.29 vpr 80.64 MiB 0.15 18196 -1 -1 1 1.01 -1 -1 41936 -1 -1 232 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82580 22 19 5703 4719 1 2951 284 24 24 576 mult_36 auto 42.6 MiB 0.88 19791 80.6 MiB 1.38 0.02 4.16866 -3225.65 -4.16866 4.16866 1.89 0.00890325 0.00799853 0.490511 0.4282 64 36918 44 1.57908e+07 7.59797e+06 2.26035e+06 3924.22 16.26 3.64295 3.21998 64454 586630 -1 28354 19 10740 12619 2023263 456596 0 0 2023263 456596 11162 10836 0 0 95430 85387 0 0 116102 103764 0 0 11165 10887 0 0 894018 123082 0 0 895386 122640 0 0 11162 0 0 443 6630 7196 13416 1509 186 4.41926 4.41926 -3967.59 -4.41926 0 0 2.84938e+06 4946.85 1.21 0.61 0.58 -1 -1 1.21 0.27021 0.242225 1771 1865 741 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_41.v common 24.85 vpr 80.57 MiB 0.23 18664 -1 -1 1 0.77 -1 -1 40960 -1 -1 240 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82508 22 19 5950 4932 1 3065 293 24 24 576 mult_36 auto 43.5 MiB 1.45 20763 80.6 MiB 1.58 0.02 4.04336 -3408.74 -4.04336 4.04336 2.37 0.00737526 0.00639173 0.606686 0.538965 64 35795 46 1.57908e+07 8.10576e+06 2.26035e+06 3924.22 10.50 2.7429 2.41828 64454 586630 -1 29070 17 10701 12361 2055646 466496 0 0 2055646 466496 11090 10777 0 0 89895 80120 0 0 110311 98446 0 0 11095 10828 0 0 922278 130456 0 0 910977 135869 0 0 11090 0 0 408 6162 7428 12982 1333 392 4.54456 4.54456 -3887.52 -4.54456 0 0 2.84938e+06 4946.85 1.35 1.03 0.58 -1 -1 1.35 0.523222 0.476962 1841 1956 760 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_42.v common 24.86 vpr 80.89 MiB 0.23 18704 -1 -1 1 0.99 -1 -1 42456 -1 -1 242 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82832 22 19 6024 4989 1 3106 295 24 24 576 mult_36 auto 43.8 MiB 1.44 22076 80.9 MiB 1.01 0.01 4.16866 -3520.33 -4.16866 4.16866 2.37 0.00476336 0.00417996 0.357488 0.313997 70 35862 26 1.57908e+07 8.13371e+06 2.45377e+06 4260.01 12.23 2.82096 2.49755 66754 640332 -1 29886 17 10550 12706 1909066 414328 0 0 1909066 414328 11032 10624 0 0 87513 76803 0 0 107418 94802 0 0 11035 10686 0 0 847757 111842 0 0 844311 109571 0 0 11032 0 0 503 7751 7861 13929 1710 258 4.54456 4.54456 -3978.56 -4.54456 0 0 3.09179e+06 5367.68 0.94 0.53 0.38 -1 -1 0.94 0.265728 0.240276 1869 1975 779 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_43.v common 23.03 vpr 81.64 MiB 0.22 19024 -1 -1 1 1.21 -1 -1 42748 -1 -1 250 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83604 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 44.7 MiB 1.50 22368 81.6 MiB 1.14 0.01 4.16866 -3591.6 -4.16866 4.16866 1.48 0.00467958 0.00409337 0.383914 0.334723 66 39251 46 1.57908e+07 8.2455e+06 2.33135e+06 4047.49 10.58 2.53952 2.22638 65030 601923 -1 30844 17 11509 13494 2204654 487349 0 0 2204654 487349 12043 11601 0 0 99479 88966 0 0 121612 108570 0 0 12046 11663 0 0 978785 134510 0 0 980689 132039 0 0 12043 0 0 552 7276 8401 14897 1509 205 4.54456 4.54456 -4264.7 -4.54456 0 0 2.91907e+06 5067.82 1.15 0.70 0.57 -1 -1 1.15 0.33365 0.301618 1921 2030 798 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_44.v common 31.29 vpr 82.54 MiB 0.17 19608 -1 -1 1 0.75 -1 -1 42952 -1 -1 253 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84524 22 19 6272 5186 1 3253 306 24 24 576 mult_36 auto 45.4 MiB 1.54 24531 82.5 MiB 1.85 0.03 4.16866 -3662 -4.16866 4.16866 2.41 0.00992457 0.00893317 0.716858 0.642575 68 39697 34 1.57908e+07 8.28742e+06 2.39371e+06 4155.74 17.02 3.64601 3.26152 65606 615345 -1 32596 16 11495 13516 2175186 470257 0 0 2175186 470257 11979 11573 0 0 93815 83490 0 0 113776 101416 0 0 11985 11647 0 0 959674 130579 0 0 983957 131552 0 0 11979 0 0 501 7648 7963 14672 1588 3246 4.66986 4.66986 -4280.07 -4.66986 0 0 2.98162e+06 5176.42 1.23 0.56 0.62 -1 -1 1.23 0.286793 0.259829 1949 2049 817 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_45.v common 24.86 vpr 83.22 MiB 0.24 19820 -1 -1 1 1.28 -1 -1 43176 -1 -1 262 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85216 22 19 6485 5365 1 3362 316 24 24 576 mult_36 auto 46.2 MiB 1.56 24875 83.2 MiB 1.13 0.02 4.16866 -3860.22 -4.16866 4.16866 2.08 0.00510833 0.00434475 0.361976 0.312313 72 42703 41 1.57908e+07 8.80919e+06 2.50747e+06 4353.24 11.80 2.41671 2.11494 67330 654343 -1 33856 20 12125 14244 2370878 505780 0 0 2370878 505780 12687 12227 0 0 98991 88022 0 0 121915 108275 0 0 12690 12336 0 0 1063725 143808 0 0 1060870 141112 0 0 12687 0 0 581 7429 8215 16000 1595 1007 4.54456 4.54456 -4492.65 -4.54456 0 0 3.14081e+06 5452.80 0.98 0.66 0.48 -1 -1 0.98 0.30566 0.274394 2011 2122 836 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_46.v common 22.20 vpr 83.41 MiB 0.21 19960 -1 -1 1 1.10 -1 -1 43388 -1 -1 266 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85408 22 19 6559 5422 1 3404 320 24 24 576 mult_36 auto 46.5 MiB 1.29 23197 83.4 MiB 1.00 0.01 4.16866 -3803.43 -4.16866 4.16866 1.70 0.00520688 0.00458273 0.336882 0.29487 66 38742 35 1.57908e+07 8.86508e+06 2.33135e+06 4047.49 10.33 2.48316 2.17667 65030 601923 -1 31592 17 11527 13424 2138348 486221 0 0 2138348 486221 12042 11586 0 0 100422 89505 0 0 121463 109052 0 0 12043 11647 0 0 952489 133236 0 0 939889 131195 0 0 12042 0 0 533 6361 6901 14621 1452 598 4.54456 4.54456 -4396.18 -4.54456 0 0 2.91907e+06 5067.82 1.04 0.67 0.53 -1 -1 1.04 0.339976 0.306286 2040 2141 855 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_47.v common 24.52 vpr 84.53 MiB 0.19 20148 -1 -1 1 1.38 -1 -1 43620 -1 -1 273 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86556 22 19 6735 5564 1 3511 327 24 24 576 mult_36 auto 47.6 MiB 1.17 23716 84.5 MiB 1.10 0.02 4.16866 -3895.9 -4.16866 4.16866 1.97 0.0052778 0.00464634 0.364537 0.319368 70 37921 23 1.57908e+07 8.9629e+06 2.45377e+06 4260.01 10.98 2.76944 2.44767 66754 640332 -1 31853 18 11704 13832 2021801 455296 0 0 2021801 455296 12202 11754 0 0 95046 83567 0 0 118173 103720 0 0 12212 11811 0 0 892872 122643 0 0 891296 121801 0 0 12202 0 0 517 7329 8392 14604 1717 1047 4.52256 4.52256 -4377.81 -4.52256 0 0 3.09179e+06 5367.68 1.38 0.65 0.65 -1 -1 1.38 0.354578 0.320315 2092 2196 874 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_48.v common 27.65 vpr 84.81 MiB 0.23 20340 -1 -1 1 1.42 -1 -1 43464 -1 -1 276 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 86844 22 19 6809 5621 1 3555 330 24 24 576 mult_36 auto 47.7 MiB 1.47 26298 84.8 MiB 1.65 0.03 4.04336 -3971.87 -4.04336 4.04336 1.92 0.00901817 0.00792885 0.527713 0.463207 74 41851 35 1.57908e+07 9.00482e+06 2.56259e+06 4448.94 14.02 3.85351 3.40767 67906 667765 -1 35491 18 12373 14314 2480035 530605 0 0 2480035 530605 12892 12460 0 0 97782 86976 0 0 122676 107850 0 0 12903 12552 0 0 1125700 154336 0 0 1108082 156431 0 0 12892 0 0 540 6365 6775 15947 1472 766 4.54456 4.54456 -4756.94 -4.54456 0 0 3.19068e+06 5539.38 1.06 0.68 0.58 -1 -1 1.06 0.312145 0.282256 2121 2215 893 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_49.v common 31.04 vpr 86.53 MiB 0.26 21032 -1 -1 1 1.35 -1 -1 43924 -1 -1 287 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88608 22 19 7094 5872 1 3669 342 24 24 576 mult_36 auto 49.4 MiB 1.76 25761 86.5 MiB 1.39 0.02 4.29396 -4126.54 -4.29396 4.29396 2.30 0.00764055 0.0068909 0.499067 0.444542 68 41911 40 1.57908e+07 9.55454e+06 2.39371e+06 4155.74 15.22 3.02938 2.68692 65606 615345 -1 33965 17 12548 15195 2377820 529113 0 0 2377820 529113 13075 12620 0 0 108314 96382 0 0 130080 116544 0 0 13081 12713 0 0 1055861 145158 0 0 1057409 145696 0 0 13075 0 0 544 9351 11650 15859 2183 1614 4.54456 4.54456 -4777.31 -4.54456 0 0 2.98162e+06 5176.42 1.40 1.07 0.58 -1 -1 1.40 0.569591 0.514898 2200 2324 912 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_50.v common 28.39 vpr 86.44 MiB 0.28 21080 -1 -1 1 1.52 -1 -1 43756 -1 -1 290 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88516 22 19 7168 5929 1 3710 345 24 24 576 mult_36 auto 49.4 MiB 1.39 24936 86.4 MiB 1.70 0.02 4.04336 -4136.97 -4.04336 4.04336 1.63 0.00557264 0.00487455 0.559348 0.49162 68 42433 36 1.57908e+07 9.59646e+06 2.39371e+06 4155.74 13.25 2.50289 2.18787 65606 615345 -1 34116 19 12986 15314 2298005 507439 0 0 2298005 507439 13522 13073 0 0 108176 96401 0 0 130305 116563 0 0 13523 13117 0 0 1039343 130190 0 0 993136 138095 0 0 13522 0 0 552 8599 8801 16348 1851 959 4.41926 4.41926 -4698.88 -4.41926 0 0 2.98162e+06 5176.42 1.43 1.30 0.61 -1 -1 1.43 0.744533 0.67587 2229 2343 931 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_51.v common 29.86 vpr 87.27 MiB 0.27 21452 -1 -1 1 1.62 -1 -1 44432 -1 -1 297 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89368 22 19 7344 6071 1 3814 352 24 24 576 mult_36 auto 50.3 MiB 1.45 28314 87.3 MiB 1.32 0.02 4.29396 -4303.37 -4.29396 4.29396 1.58 0.00601435 0.00531107 0.411724 0.360466 74 45280 28 1.57908e+07 9.69428e+06 2.56259e+06 4448.94 15.96 4.5329 4.04771 67906 667765 -1 38552 15 13344 15881 2736685 580320 0 0 2736685 580320 13898 13401 0 0 106405 94322 0 0 132297 116680 0 0 13899 13462 0 0 1242901 169684 0 0 1227285 172771 0 0 13898 0 0 571 9666 10717 16809 2066 773 4.66986 4.66986 -5106.69 -4.66986 0 0 3.19068e+06 5539.38 1.05 0.76 0.62 -1 -1 1.05 0.324566 0.293478 2282 2398 950 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_pipe_52.v common 31.12 vpr 87.71 MiB 0.28 21636 -1 -1 1 1.61 -1 -1 44304 -1 -1 301 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 89812 22 19 7418 6128 1 3859 356 24 24 576 mult_36 auto 50.7 MiB 1.52 27209 87.7 MiB 1.54 0.02 4.27196 -4220.72 -4.27196 4.27196 1.89 0.00601936 0.00531824 0.48076 0.421537 74 43396 31 1.57908e+07 9.75017e+06 2.56259e+06 4448.94 15.69 3.43218 3.02833 67906 667765 -1 36748 18 13148 15874 2736435 593714 0 0 2736435 593714 13699 13176 0 0 107396 95076 0 0 133285 117317 0 0 13700 13222 0 0 1235692 175901 0 0 1232663 179022 0 0 13699 0 0 571 10372 11196 16250 2295 1876 4.54456 4.54456 -4842.34 -4.54456 0 0 3.19068e+06 5539.38 1.16 1.48 0.59 -1 -1 1.16 0.738026 0.670799 2310 2417 969 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_14.v common 10.02 vpr 58.24 MiB 0.06 9168 -1 -1 1 0.17 -1 -1 34152 -1 -1 58 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59640 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 19.8 MiB 3.03 4081 58.2 MiB 0.16 0.00 7.39293 -331.127 -7.39293 7.39293 0.51 0.000626232 0.000510442 0.0432106 0.0363348 40 8622 37 6.52434e+06 2.39448e+06 616420. 2407.89 3.71 0.377057 0.333883 23812 153515 -1 7234 27 7536 8347 1393382 352416 0 0 1393382 352416 8347 7772 0 0 68226 63064 0 0 84982 74664 0 0 8386 7851 0 0 618435 100766 0 0 605006 98299 0 0 8347 0 0 840 4669 4583 43707 0 0 8.41534 8.41534 -471.286 -8.41534 0 0 808720. 3159.06 0.30 0.45 0.14 -1 -1 0.30 0.124215 0.113398 421 285 247 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_15.v common 9.12 vpr 58.59 MiB 0.07 9316 -1 -1 1 0.20 -1 -1 34616 -1 -1 61 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60000 22 19 1344 989 1 793 107 16 16 256 mult_36 auto 20.5 MiB 2.35 4749 58.6 MiB 0.18 0.00 7.43507 -344.031 -7.43507 7.43507 0.79 0.000677866 0.000567541 0.05538 0.0474545 44 9557 33 6.52434e+06 2.8324e+06 686998. 2683.59 3.33 0.473154 0.420141 24576 170172 -1 7140 23 5095 5887 826439 215440 0 0 826439 215440 5887 5247 0 0 49433 46432 0 0 56984 52217 0 0 5934 5301 0 0 360637 53077 0 0 347564 53166 0 0 5887 0 0 820 5885 5117 50695 0 0 8.06643 8.06643 -446.895 -8.06643 0 0 871168. 3403.00 0.29 0.24 0.15 -1 -1 0.29 0.0876793 0.0792904 453 304 266 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_16.v common 10.31 vpr 58.73 MiB 0.07 9684 -1 -1 1 0.21 -1 -1 34760 -1 -1 65 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60140 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 20.7 MiB 2.99 4817 58.7 MiB 0.20 0.00 7.30977 -364.374 -7.30977 7.30977 0.50 0.000768788 0.000629739 0.0581612 0.0491206 46 10099 41 6.52434e+06 2.88829e+06 723233. 2825.13 4.01 0.469658 0.416962 24832 174915 -1 7678 22 6962 7756 1181959 293265 0 0 1181959 293265 7756 7119 0 0 64230 60620 0 0 74116 67087 0 0 7803 7188 0 0 514653 74793 0 0 513401 76458 0 0 7756 0 0 814 4807 4906 51883 0 0 8.32803 8.32803 -516.053 -8.32803 0 0 890343. 3477.90 0.33 0.37 0.16 -1 -1 0.33 0.0996926 0.0904763 481 323 285 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_17.v common 27.59 vpr 59.34 MiB 0.08 10164 -1 -1 1 0.23 -1 -1 34316 -1 -1 71 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60764 22 19 1518 1112 1 896 117 16 16 256 mult_36 auto 21.2 MiB 3.58 5385 59.3 MiB 0.30 0.00 8.10891 -418.461 -8.10891 8.10891 0.53 0.00100509 0.000859087 0.0826458 0.0706308 50 11038 46 6.52434e+06 2.97214e+06 787708. 3076.99 20.30 0.952474 0.846254 25344 186282 -1 8376 23 6929 7632 1146396 301811 0 0 1146396 301811 7632 7054 0 0 69310 64912 0 0 79792 72939 0 0 7680 7141 0 0 502132 75662 0 0 479850 74103 0 0 7632 0 0 731 4246 4553 44588 0 0 8.82158 8.82158 -526.691 -8.82158 0 0 943753. 3686.54 0.36 0.45 0.17 -1 -1 0.36 0.164809 0.150983 514 342 304 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_18.v common 12.97 vpr 59.77 MiB 0.08 10452 -1 -1 1 0.24 -1 -1 34572 -1 -1 74 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61204 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 21.9 MiB 4.80 5761 59.8 MiB 0.23 0.00 7.95061 -441.879 -7.95061 7.95061 0.51 0.000954871 0.000826588 0.0656771 0.0556389 46 12197 39 6.52434e+06 3.01406e+06 723233. 2825.13 4.48 0.553698 0.492034 24832 174915 -1 8801 23 7411 8334 1122296 283958 0 0 1122296 283958 8334 7618 0 0 66482 62486 0 0 76133 69599 0 0 8390 7682 0 0 487106 69657 0 0 475851 66916 0 0 8334 0 0 952 5764 5915 59767 0 0 8.66998 8.66998 -562.591 -8.66998 0 0 890343. 3477.90 0.32 0.25 0.16 -1 -1 0.32 0.0770943 0.070126 542 361 323 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_19.v common 13.32 vpr 60.17 MiB 0.09 10472 -1 -1 1 0.23 -1 -1 35004 -1 -1 79 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61612 22 19 1688 1231 1 994 126 16 16 256 mult_36 auto 22.1 MiB 4.02 5706 60.2 MiB 0.43 0.01 8.06677 -399.655 -8.06677 8.06677 0.87 0.00226635 0.00201991 0.156481 0.138489 54 11416 45 6.52434e+06 3.47993e+06 829453. 3240.05 4.78 0.75775 0.677718 26108 202796 -1 8377 24 6918 7778 1050656 272461 0 0 1050656 272461 7599 7044 0 0 60215 56524 0 0 69941 63405 0 0 7647 7099 0 0 458140 69248 0 0 447114 69141 0 0 7599 0 0 705 4017 3783 33300 248 1 8.95158 8.95158 -515.887 -8.95158 0 0 1.02522e+06 4004.78 0.31 0.40 0.15 -1 -1 0.31 0.137272 0.124287 573 380 342 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_20.v common 11.35 vpr 60.60 MiB 0.09 10792 -1 -1 1 0.28 -1 -1 35096 -1 -1 81 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62056 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 22.6 MiB 3.81 5976 60.6 MiB 0.23 0.00 8.06677 -426.077 -8.06677 8.06677 0.56 0.000968142 0.000813478 0.0669608 0.0570484 50 12037 50 6.52434e+06 3.50787e+06 787708. 3076.99 4.02 0.555109 0.488975 25344 186282 -1 9044 24 7463 8409 1149185 300275 0 0 1149185 300275 8206 7637 0 0 70140 65380 0 0 81244 73988 0 0 8297 7740 0 0 496884 73446 0 0 484414 72084 0 0 8206 0 0 770 5539 5087 44174 225 15 8.68998 8.68998 -608.281 -8.68998 0 0 943753. 3686.54 0.30 0.42 0.10 -1 -1 0.30 0.147937 0.133909 601 399 361 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_21.v common 13.15 vpr 61.18 MiB 0.09 10796 -1 -1 1 0.29 -1 -1 35524 -1 -1 85 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62644 22 19 1859 1351 1 1093 132 16 16 256 mult_36 auto 23.2 MiB 3.61 6741 61.2 MiB 0.23 0.00 7.98361 -446.241 -7.98361 7.98361 0.52 0.00116681 0.00100392 0.0721461 0.0626151 52 13640 48 6.52434e+06 3.56377e+06 808720. 3159.06 5.53 0.757856 0.671648 25852 197779 -1 9861 22 7279 8262 1337756 329246 0 0 1337756 329246 8073 7468 0 0 66434 62120 0 0 77420 71061 0 0 8130 7547 0 0 590101 90246 0 0 587598 90804 0 0 8073 0 0 818 5625 4802 43602 237 1 8.80128 8.80128 -592.932 -8.80128 0 0 1.00038e+06 3907.74 0.39 0.49 0.18 -1 -1 0.39 0.169783 0.155809 632 418 380 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_22.v common 16.44 vpr 61.50 MiB 0.09 11208 -1 -1 1 0.29 -1 -1 34980 -1 -1 90 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62976 22 19 1933 1408 1 1131 137 16 16 256 mult_36 auto 23.7 MiB 5.79 7075 61.5 MiB 0.41 0.01 8.10891 -466.13 -8.10891 8.10891 0.83 0.00263276 0.00233165 0.146968 0.130582 54 13043 42 6.52434e+06 3.63364e+06 829453. 3240.05 5.87 1.05371 0.946208 26108 202796 -1 10039 24 7336 8267 1090947 283206 0 0 1090947 283206 8035 7470 0 0 63029 59061 0 0 73048 66424 0 0 8049 7525 0 0 475174 70571 0 0 463612 72155 0 0 8035 0 0 722 4483 4184 39444 246 1 8.66198 8.66198 -659.137 -8.66198 0 0 1.02522e+06 4004.78 0.39 0.45 0.19 -1 -1 0.39 0.180727 0.165034 661 437 399 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_23.v common 17.69 vpr 61.70 MiB 0.10 11260 -1 -1 1 0.29 -1 -1 35812 -1 -1 94 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63184 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 23.9 MiB 4.79 7675 61.7 MiB 0.31 0.00 8.28437 -491.885 -8.28437 8.28437 0.70 0.00115024 0.000985167 0.0831304 0.0712567 48 16112 37 8.04299e+06 4.08553e+06 991730. 3060.90 8.08 0.780109 0.69364 32420 239176 -1 12305 26 8944 10440 1978494 446045 0 0 1978494 446045 9577 9255 0 0 84742 78867 0 0 102662 92399 0 0 9579 9304 0 0 889660 126016 0 0 882274 130204 0 0 9577 0 0 664 5077 5076 13096 910 2 9.16918 9.16918 -723.218 -9.16918 0 0 1.20291e+06 3712.69 0.49 0.69 0.22 -1 -1 0.49 0.220886 0.201528 693 456 418 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_24.v common 18.44 vpr 62.18 MiB 0.10 11440 -1 -1 1 0.33 -1 -1 35616 -1 -1 97 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63672 22 19 2105 1529 1 1232 145 18 18 324 mult_36 auto 24.3 MiB 6.02 8304 62.2 MiB 0.48 0.01 8.09791 -534.964 -8.09791 8.09791 1.17 0.00236079 0.00204926 0.153472 0.133119 54 15824 31 8.04299e+06 4.12745e+06 1.08842e+06 3359.33 6.89 1.07193 0.955763 33712 268580 -1 11719 22 8615 9932 1499942 356145 0 0 1499942 356145 9191 8789 0 0 76937 71805 0 0 88872 80962 0 0 9193 8833 0 0 668361 92697 0 0 647388 93059 0 0 9191 0 0 603 3442 4298 12296 773 2 8.54039 8.54039 -784.408 -8.54039 0 0 1.34436e+06 4149.26 0.38 0.37 0.25 -1 -1 0.38 0.119 0.107805 721 475 437 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_25.v common 19.47 vpr 62.62 MiB 0.11 11712 -1 -1 1 0.35 -1 -1 35432 -1 -1 101 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64124 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 24.9 MiB 5.66 8532 62.6 MiB 0.48 0.01 8.06491 -503.392 -8.06491 8.06491 1.18 0.00320815 0.00286956 0.163587 0.144899 50 17147 40 8.04299e+06 4.18335e+06 1.03391e+06 3191.07 7.73 1.20979 1.08234 32744 246704 -1 12701 22 9852 11353 2143317 494736 0 0 2143317 494736 10516 10000 0 0 96949 90021 0 0 111924 101956 0 0 10528 10058 0 0 958333 140144 0 0 955067 142557 0 0 10516 0 0 693 5058 5197 19613 939 59 9.05188 9.05188 -992.524 -9.05188 0 0 1.23838e+06 3822.15 0.50 0.69 0.23 -1 -1 0.50 0.199016 0.182232 751 494 456 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_26.v common 16.83 vpr 62.84 MiB 0.11 11960 -1 -1 1 0.35 -1 -1 36236 -1 -1 105 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64344 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 25.1 MiB 6.56 8137 62.8 MiB 0.58 0.00 8.06677 -535.891 -8.06677 8.06677 1.13 0.0015016 0.00129054 0.207783 0.182219 50 16279 48 8.04299e+06 4.23924e+06 1.03391e+06 3191.07 4.25 0.753008 0.663634 32744 246704 -1 12276 24 9434 10965 1636329 385379 0 0 1636329 385379 9917 9636 0 0 87818 81472 0 0 103580 93249 0 0 9922 9677 0 0 716583 95570 0 0 708509 95775 0 0 9917 0 0 512 5618 5444 12440 1094 40 8.77628 8.77628 -864.423 -8.77628 0 0 1.23838e+06 3822.15 0.50 0.63 0.22 -1 -1 0.50 0.238053 0.217459 779 513 475 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_27.v common 17.56 vpr 63.50 MiB 0.12 12028 -1 -1 1 0.33 -1 -1 36216 -1 -1 111 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65024 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 25.7 MiB 5.40 8719 63.5 MiB 0.75 0.01 7.97261 -566.816 -7.97261 7.97261 1.13 0.00332731 0.00297771 0.244858 0.214318 54 16092 32 8.04299e+06 4.7191e+06 1.08842e+06 3359.33 5.86 1.17496 1.0529 33712 268580 -1 12792 22 9899 11296 1786527 424562 0 0 1786527 424562 10534 10021 0 0 88622 83271 0 0 102733 93650 0 0 10537 10127 0 0 786497 113886 0 0 787604 113607 0 0 10534 0 0 657 4620 4352 13717 850 16 8.61468 8.61468 -794.099 -8.61468 0 0 1.34436e+06 4149.26 0.54 0.66 0.25 -1 -1 0.54 0.234827 0.214789 817 532 494 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_28.v common 16.08 vpr 64.04 MiB 0.12 12112 -1 -1 1 0.38 -1 -1 36508 -1 -1 114 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65576 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 26.3 MiB 5.54 9043 64.0 MiB 0.44 0.01 8.31737 -559.506 -8.31737 8.31737 0.70 0.00154288 0.00133712 0.11266 0.0968887 54 16884 39 8.04299e+06 4.76102e+06 1.08842e+06 3359.33 5.17 0.817124 0.720752 33712 268580 -1 13321 24 10306 11938 2171936 517620 0 0 2171936 517620 11135 10544 0 0 94497 88508 0 0 110937 99914 0 0 11151 10645 0 0 965594 151536 0 0 978622 156473 0 0 11135 0 0 859 5012 4592 15142 916 246 8.86858 8.86858 -857.135 -8.86858 0 0 1.34436e+06 4149.26 0.54 0.78 0.25 -1 -1 0.54 0.254104 0.23051 845 551 513 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_29.v common 21.70 vpr 64.53 MiB 0.08 12452 -1 -1 1 0.39 -1 -1 36108 -1 -1 118 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66076 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 26.7 MiB 6.81 10043 64.5 MiB 0.50 0.01 8.06677 -579.764 -8.06677 8.06677 1.21 0.00176962 0.00153548 0.148952 0.128793 48 19988 46 1.30842e+07 5.21292e+06 1.52614e+06 3153.19 8.00 0.977964 0.867078 49190 371334 -1 15546 25 14163 16028 2754286 616310 0 0 2754286 616310 14854 14332 0 0 125849 116882 0 0 156077 137652 0 0 14859 14437 0 0 1237562 165641 0 0 1205085 167366 0 0 14854 0 0 722 6545 7435 18701 1204 48 9.14218 9.14218 -1062.13 -9.14218 0 0 1.85176e+06 3825.95 0.82 0.94 0.34 -1 -1 0.82 0.277591 0.253316 881 570 532 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_30.v common 17.01 vpr 64.82 MiB 0.08 12700 -1 -1 1 0.26 -1 -1 36632 -1 -1 123 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66376 22 19 2639 1910 1 1549 173 22 22 484 mult_36 auto 27.2 MiB 4.75 10614 64.8 MiB 0.47 0.01 8.23421 -554.147 -8.23421 8.23421 1.15 0.0015657 0.00131343 0.124484 0.1065 52 22015 32 1.30842e+07 5.28279e+06 1.63434e+06 3376.74 5.62 0.699779 0.615903 50638 406276 -1 15697 25 12395 14215 2562127 583907 0 0 2562127 583907 13110 12648 0 0 112704 104952 0 0 133705 120372 0 0 13112 12715 0 0 1140238 166948 0 0 1149258 166272 0 0 13110 0 0 749 6406 6242 17165 1146 82 9.31048 9.31048 -1168.2 -9.31048 0 0 2.01763e+06 4168.66 0.92 0.89 0.37 -1 -1 0.92 0.271605 0.248162 910 589 551 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_31.v common 74.44 vpr 65.32 MiB 0.14 12680 -1 -1 1 0.25 -1 -1 36856 -1 -1 128 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66892 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 27.8 MiB 7.45 10337 65.3 MiB 0.86 0.01 7.94147 -603.174 -7.94147 7.94147 1.93 0.00506642 0.00460446 0.316054 0.285053 50 21632 41 1.30842e+07 5.35266e+06 1.59181e+06 3288.87 58.62 2.44817 2.18674 49674 382800 -1 16071 25 14179 16571 2899585 634252 0 0 2899585 634252 15014 14502 0 0 132884 122910 0 0 157171 140525 0 0 15023 14572 0 0 1305096 169309 0 0 1274397 172434 0 0 15014 0 0 867 8633 9532 19885 1622 51 9.00488 9.00488 -1222.36 -9.00488 0 0 1.90554e+06 3937.06 0.84 0.58 0.35 -1 -1 0.84 0.14205 0.127827 946 608 570 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_32.v common 25.83 vpr 65.38 MiB 0.09 12888 -1 -1 1 0.28 -1 -1 36324 -1 -1 131 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66952 22 19 2818 2038 1 1657 181 22 22 484 mult_36 auto 27.9 MiB 9.11 10554 65.4 MiB 0.98 0.01 8.06677 -582.352 -8.06677 8.06677 1.90 0.00408017 0.00365613 0.327326 0.288699 56 18497 29 1.30842e+07 5.39458e+06 1.71605e+06 3545.56 8.50 1.28328 1.14358 51606 428054 -1 15637 22 12547 14519 2401826 569206 0 0 2401826 569206 13367 12773 0 0 116489 107856 0 0 140259 126445 0 0 13375 12900 0 0 1048630 153241 0 0 1069706 155991 0 0 13367 0 0 846 6605 6706 17643 1219 335 8.92358 8.92358 -1033.41 -8.92358 0 0 2.11301e+06 4365.72 0.65 0.48 0.40 -1 -1 0.65 0.1337 0.120649 974 627 589 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_33.v common 26.63 vpr 66.28 MiB 0.15 13512 -1 -1 1 0.32 -1 -1 36648 -1 -1 137 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67868 22 19 2923 2109 1 1726 188 22 22 484 mult_36 auto 28.8 MiB 7.26 11348 66.3 MiB 1.04 0.01 8.60431 -609.519 -8.60431 8.60431 1.96 0.00440498 0.00384785 0.358199 0.316687 54 21270 33 1.30842e+07 5.87443e+06 1.67518e+06 3461.11 10.28 1.67687 1.50225 51122 416746 -1 16699 25 12444 14319 2422501 565779 0 0 2422501 565779 13310 12663 0 0 114427 107278 0 0 134014 121218 0 0 13318 12771 0 0 1071723 155373 0 0 1075709 156476 0 0 13310 0 0 894 6040 5626 17974 1082 185 9.88532 9.88532 -1029.67 -9.88532 0 0 2.06816e+06 4273.05 0.91 0.83 0.39 -1 -1 0.91 0.280804 0.255929 1009 646 608 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_34.v common 25.98 vpr 66.56 MiB 0.10 13628 -1 -1 1 0.32 -1 -1 37020 -1 -1 140 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68156 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 29.0 MiB 10.80 11877 66.6 MiB 0.92 0.01 8.48815 -621.554 -8.48815 8.48815 1.90 0.00370946 0.00324905 0.302835 0.266313 52 23899 47 1.30842e+07 5.91636e+06 1.63434e+06 3376.74 7.39 1.05801 0.93446 50638 406276 -1 17339 24 13375 15398 3459114 793379 0 0 3459114 793379 14277 13573 0 0 136135 127661 0 0 157744 144332 0 0 14289 13730 0 0 1570254 245155 0 0 1566415 248928 0 0 14277 0 0 928 7033 8280 28169 1173 51 10.1026 10.1026 -1265.17 -10.1026 0 0 2.01763e+06 4168.66 0.61 0.65 0.22 -1 -1 0.61 0.14444 0.130067 1037 665 627 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_35.v common 21.02 vpr 67.08 MiB 0.16 13868 -1 -1 1 0.52 -1 -1 36856 -1 -1 145 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68692 22 19 3101 2236 1 1831 196 22 22 484 mult_36 auto 29.6 MiB 7.84 12013 67.1 MiB 0.58 0.01 8.73875 -694.534 -8.73875 8.73875 1.18 0.00226253 0.00197498 0.153971 0.134211 54 23267 45 1.30842e+07 5.98623e+06 1.67518e+06 3461.11 6.78 0.928716 0.821908 51122 416746 -1 17907 24 14879 16912 2731796 626601 0 0 2731796 626601 15736 15107 0 0 133976 125629 0 0 155139 140679 0 0 15770 15181 0 0 1219759 165472 0 0 1191416 164533 0 0 15736 0 0 888 8397 8473 39112 1215 76 9.62342 9.62342 -1351.07 -9.62342 0 0 2.06816e+06 4273.05 0.57 0.56 0.23 -1 -1 0.57 0.164283 0.148595 1072 684 646 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_36.v common 29.98 vpr 67.47 MiB 0.16 13900 -1 -1 1 0.37 -1 -1 37740 -1 -1 148 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69088 22 19 3175 2293 1 1871 199 22 22 484 mult_36 auto 30.0 MiB 13.05 12991 67.5 MiB 0.98 0.02 8.86591 -715.004 -8.86591 8.86591 1.97 0.00705602 0.00653835 0.349763 0.310485 54 25176 46 1.30842e+07 6.02815e+06 1.67518e+06 3461.11 8.52 1.33874 1.19329 51122 416746 -1 18954 24 15446 17471 2825079 652786 0 0 2825079 652786 16305 15662 0 0 140079 131470 0 0 165741 148664 0 0 16309 15731 0 0 1253632 172816 0 0 1233013 168443 0 0 16305 0 0 891 5975 6281 21307 1206 120 10.2002 10.2002 -1399.57 -10.2002 0 0 2.06816e+06 4273.05 0.58 0.59 0.23 -1 -1 0.58 0.155982 0.140639 1100 703 665 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_37.v common 30.45 vpr 67.99 MiB 0.17 14324 -1 -1 1 0.56 -1 -1 37160 -1 -1 152 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69624 22 19 3280 2364 1 1938 204 24 24 576 mult_36 auto 30.6 MiB 10.49 12732 68.0 MiB 0.64 0.01 8.90805 -748.944 -8.90805 8.90805 1.64 0.00242551 0.002095 0.187089 0.163012 56 22834 34 1.57908e+07 6.48005e+06 2.03561e+06 3534.04 10.13 1.32275 1.17716 61006 507707 -1 18797 22 13411 15307 2810659 664274 0 0 2810659 664274 14182 13624 0 0 127071 117648 0 0 149697 136333 0 0 14190 13688 0 0 1264400 188218 0 0 1241119 194763 0 0 14182 0 0 798 6078 6163 18204 1189 95 9.62402 9.62402 -1110.03 -9.62402 0 0 2.50747e+06 4353.24 1.21 1.03 0.42 -1 -1 1.21 0.308524 0.280331 1135 722 684 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_38.v common 34.62 vpr 68.40 MiB 0.17 14252 -1 -1 1 0.45 -1 -1 37720 -1 -1 157 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70044 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 30.9 MiB 13.76 13773 68.4 MiB 0.67 0.01 9.11651 -769.173 -9.11651 9.11651 2.21 0.00231774 0.00201352 0.200392 0.175143 58 23474 41 1.57908e+07 6.54992e+06 2.08734e+06 3623.85 10.96 1.3862 1.22998 62154 534210 -1 19215 26 12520 14050 2631166 598040 0 0 2631166 598040 13106 12693 0 0 109493 101525 0 0 131228 118661 0 0 13109 12750 0 0 1178287 177846 0 0 1185943 174565 0 0 13106 0 0 610 4490 5525 16254 990 2 10.0436 10.0436 -1093.5 -10.0436 0 0 2.61600e+06 4541.67 1.15 0.96 0.35 -1 -1 1.15 0.316996 0.286106 1164 741 703 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_39.v common 35.33 vpr 68.86 MiB 0.17 14584 -1 -1 1 0.60 -1 -1 38008 -1 -1 161 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70508 22 19 3457 2490 1 2044 213 24 24 576 mult_36 auto 31.4 MiB 12.79 13664 68.9 MiB 1.16 0.01 8.86591 -773.732 -8.86591 8.86591 2.35 0.00473647 0.00418301 0.367434 0.321233 54 26142 39 1.57908e+07 6.60581e+06 1.98675e+06 3449.22 12.41 1.73769 1.54448 60430 494267 -1 19479 22 13042 15273 2563276 618172 0 0 2563276 618172 13855 13219 0 0 122565 114817 0 0 141455 129420 0 0 13863 13305 0 0 1149288 171880 0 0 1122250 175531 0 0 13855 0 0 837 7643 7401 18008 1535 23 9.73772 9.73772 -1252.66 -9.73772 0 0 2.45377e+06 4260.01 0.75 0.61 0.44 -1 -1 0.75 0.182067 0.164725 1198 760 722 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_40.v common 29.97 vpr 69.16 MiB 0.17 14704 -1 -1 1 0.55 -1 -1 37756 -1 -1 164 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70816 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 31.8 MiB 10.12 13852 69.2 MiB 0.69 0.02 8.95821 -843.505 -8.95821 8.95821 1.47 0.0047773 0.00414499 0.207603 0.181643 54 26462 42 1.57908e+07 6.64774e+06 1.98675e+06 3449.22 11.01 1.26646 1.12367 60430 494267 -1 20173 24 15076 17247 2565070 595036 0 0 2565070 595036 15898 15279 0 0 125510 116681 0 0 148041 133102 0 0 15907 15326 0 0 1142153 157542 0 0 1117561 157106 0 0 15898 0 0 850 6958 7048 20140 1430 118 10.0573 10.0573 -1473.95 -10.0573 0 0 2.45377e+06 4260.01 1.14 1.02 0.46 -1 -1 1.14 0.38785 0.352119 1226 779 741 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_41.v common 24.50 vpr 69.71 MiB 0.18 15188 -1 -1 1 0.62 -1 -1 37496 -1 -1 170 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71388 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 32.5 MiB 8.82 15822 69.7 MiB 0.80 0.01 9.03335 -936.123 -9.03335 9.03335 1.45 0.0026427 0.00229944 0.221865 0.194307 60 25342 27 1.57908e+07 7.12758e+06 2.13333e+06 3703.69 7.94 1.04612 0.926024 62730 548095 -1 21470 24 12788 14844 2518622 561158 0 0 2518622 561158 13498 12974 0 0 116577 108266 0 0 135588 124011 0 0 13500 13046 0 0 1130251 151001 0 0 1109208 151860 0 0 13498 0 0 737 5879 7198 17395 1380 16 9.68942 9.68942 -1624.51 -9.68942 0 0 2.67122e+06 4637.53 0.80 0.56 0.31 -1 -1 0.80 0.177081 0.159501 1261 798 760 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_42.v common 28.78 vpr 70.17 MiB 0.20 15292 -1 -1 1 0.53 -1 -1 37840 -1 -1 173 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71856 22 19 3708 2673 1 2187 226 24 24 576 mult_36 auto 32.8 MiB 10.90 14199 70.2 MiB 0.69 0.01 9.11651 -862.039 -9.11651 9.11651 1.53 0.00283931 0.00244532 0.191852 0.167053 58 22801 27 1.57908e+07 7.1695e+06 2.08734e+06 3623.85 9.15 1.37743 1.21874 62154 534210 -1 19622 23 13349 15173 2336242 550432 0 0 2336242 550432 14004 13465 0 0 113511 105067 0 0 139516 124919 0 0 14004 13533 0 0 1049165 145819 0 0 1006042 147629 0 0 14004 0 0 687 5978 5992 17631 1199 48 9.78672 9.78672 -1329.82 -9.78672 0 0 2.61600e+06 4541.67 1.25 0.82 0.50 -1 -1 1.25 0.275633 0.25118 1289 817 779 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_43.v common 28.64 vpr 70.56 MiB 0.13 15472 -1 -1 1 0.43 -1 -1 37768 -1 -1 178 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72256 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 33.3 MiB 8.91 15675 70.6 MiB 0.78 0.01 8.88605 -942.223 -8.88605 8.88605 1.45 0.00278511 0.00244342 0.213723 0.186827 56 28181 44 1.57908e+07 7.23937e+06 2.03561e+06 3534.04 10.92 1.6386 1.45459 61006 507707 -1 22273 26 16642 19345 3073848 710032 0 0 3073848 710032 17593 16981 0 0 145658 133744 0 0 176304 157628 0 0 17595 17067 0 0 1365178 191672 0 0 1351520 192940 0 0 17593 0 0 979 9048 9880 22931 1798 175 9.76902 9.76902 -1544.31 -9.76902 0 0 2.50747e+06 4353.24 1.07 1.20 0.49 -1 -1 1.07 0.425017 0.384947 1323 836 798 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_44.v common 30.96 vpr 70.96 MiB 0.20 15624 -1 -1 1 0.55 -1 -1 38424 -1 -1 181 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72668 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 33.7 MiB 11.63 15422 71.0 MiB 0.76 0.01 8.86591 -857.062 -8.86591 8.86591 1.50 0.00288626 0.00251417 0.21435 0.186816 56 26552 37 1.57908e+07 7.28129e+06 2.03561e+06 3534.04 10.15 1.68347 1.49604 61006 507707 -1 21513 26 16205 18786 3146021 748972 0 0 3146021 748972 17258 16446 0 0 149331 138131 0 0 179531 160789 0 0 17264 16540 0 0 1379783 205840 0 0 1402854 211226 0 0 17258 0 0 1077 8242 9099 22839 1611 170 9.87002 9.87002 -1271.36 -9.87002 0 0 2.50747e+06 4353.24 1.15 1.21 0.47 -1 -1 1.15 0.434939 0.394662 1351 855 817 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_45.v common 36.28 vpr 71.07 MiB 0.20 15960 -1 -1 1 0.59 -1 -1 39912 -1 -1 186 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72780 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 33.9 MiB 13.40 16774 71.1 MiB 1.05 0.01 8.98021 -909.184 -8.98021 8.98021 2.25 0.00299356 0.00263674 0.319617 0.28108 56 29821 36 1.57908e+07 7.74716e+06 2.03561e+06 3534.04 12.22 1.60232 1.41791 61006 507707 -1 24106 23 16920 19594 3477283 828924 0 0 3477283 828924 17840 17198 0 0 165224 153442 0 0 196021 177450 0 0 17846 17292 0 0 1537664 233189 0 0 1542688 230353 0 0 17840 0 0 950 10351 10325 22977 1813 333 9.78672 9.78672 -1526.25 -9.78672 0 0 2.50747e+06 4353.24 1.06 0.86 0.35 -1 -1 1.06 0.238434 0.215513 1387 874 836 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_46.v common 30.05 vpr 71.55 MiB 0.21 16080 -1 -1 1 0.53 -1 -1 39996 -1 -1 189 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73272 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 34.3 MiB 12.95 16570 71.6 MiB 0.69 0.01 8.99121 -895.905 -8.99121 8.99121 1.48 0.0031684 0.00275901 0.194718 0.169461 60 26772 27 1.57908e+07 7.78909e+06 2.13333e+06 3703.69 8.08 1.1075 0.976826 62730 548095 -1 21881 24 14117 16315 2439131 565674 0 0 2439131 565674 14890 14285 0 0 122290 113275 0 0 145402 131712 0 0 14890 14362 0 0 1090442 144680 0 0 1051217 147360 0 0 14890 0 0 802 7530 7995 19253 1463 128 9.55642 9.55642 -1439.05 -9.55642 0 0 2.67122e+06 4637.53 1.24 0.79 0.50 -1 -1 1.24 0.270205 0.24413 1414 893 855 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_47.v common 40.66 vpr 72.19 MiB 0.19 16276 -1 -1 1 0.73 -1 -1 40256 -1 -1 194 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73920 22 19 4167 2996 1 2466 248 24 24 576 mult_36 auto 35.0 MiB 14.64 17393 72.2 MiB 1.63 0.02 9.11651 -968.129 -9.11651 9.11651 2.36 0.0053889 0.00473377 0.50934 0.454805 58 29750 46 1.57908e+07 7.85896e+06 2.08734e+06 3623.85 14.11 1.8693 1.66617 62154 534210 -1 23972 24 15675 18304 3298494 747876 0 0 3298494 747876 16619 15963 0 0 141375 130992 0 0 172378 154263 0 0 16621 16069 0 0 1490856 213494 0 0 1460645 217095 0 0 16619 0 0 969 9263 9632 22051 1718 270 10.1766 10.1766 -1491.01 -10.1766 0 0 2.61600e+06 4541.67 1.13 1.16 0.32 -1 -1 1.13 0.367201 0.329804 1449 912 874 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_48.v common 38.53 vpr 72.23 MiB 0.23 16548 -1 -1 1 0.77 -1 -1 40256 -1 -1 197 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73960 22 19 4241 3053 1 2505 251 24 24 576 mult_36 auto 35.0 MiB 15.87 18540 72.2 MiB 0.83 0.01 9.11651 -916.185 -9.11651 9.11651 2.24 0.00323569 0.00278378 0.224207 0.195584 60 30474 41 1.57908e+07 7.90088e+06 2.13333e+06 3703.69 12.18 1.62543 1.43835 62730 548095 -1 24848 24 17343 20039 4009005 904507 0 0 4009005 904507 18237 17557 0 0 161464 150842 0 0 189175 172107 0 0 18239 17670 0 0 1836340 268778 0 0 1785550 277553 0 0 18237 0 0 927 8636 10630 23353 1881 450 10.0936 10.0936 -1512.97 -10.0936 0 0 2.67122e+06 4637.53 1.22 1.25 0.51 -1 -1 1.22 0.334727 0.302459 1477 931 893 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_49.v common 32.99 vpr 72.71 MiB 0.23 17160 -1 -1 1 0.72 -1 -1 40528 -1 -1 204 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74460 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 35.4 MiB 12.25 18886 72.7 MiB 0.85 0.01 9.40925 -1010.13 -9.40925 9.40925 1.46 0.0034866 0.00299242 0.230356 0.200735 60 32096 49 1.57908e+07 8.3947e+06 2.13333e+06 3703.69 12.37 2.01191 1.78346 62730 548095 -1 25755 22 15180 17529 2863977 653883 0 0 2863977 653883 15919 15356 0 0 142881 133040 0 0 164581 151710 0 0 15922 15451 0 0 1270404 170906 0 0 1254270 167420 0 0 15919 0 0 768 8528 9472 20064 1667 108 10.3022 10.3022 -1748.68 -10.3022 0 0 2.67122e+06 4637.53 0.80 0.81 0.31 -1 -1 0.80 0.268093 0.240801 1512 950 912 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_50.v common 46.35 vpr 73.03 MiB 0.23 16888 -1 -1 1 0.80 -1 -1 40544 -1 -1 206 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74780 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 35.8 MiB 19.58 17972 73.0 MiB 1.46 0.02 9.03335 -975.073 -9.03335 9.03335 2.36 0.00671233 0.00599006 0.457291 0.397591 58 30357 34 1.57908e+07 8.42264e+06 2.08734e+06 3623.85 14.58 2.44513 2.17137 62154 534210 -1 24697 22 17394 19842 3364825 788744 0 0 3364825 788744 18369 17622 0 0 157838 146884 0 0 187299 170095 0 0 18370 17730 0 0 1501619 219737 0 0 1481330 216676 0 0 18369 0 0 1004 7879 8526 23962 1519 249 9.66713 9.66713 -1584.01 -9.66713 0 0 2.61600e+06 4541.67 1.25 1.22 0.50 -1 -1 1.25 0.421311 0.382175 1541 969 931 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_51.v common 38.78 vpr 73.67 MiB 0.23 17176 -1 -1 1 0.74 -1 -1 40560 -1 -1 211 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75436 22 19 4524 3251 1 2681 266 24 24 576 mult_36 auto 36.6 MiB 17.68 18180 73.7 MiB 1.59 0.02 9.36711 -1018.4 -9.36711 9.36711 2.34 0.00646821 0.00582611 0.517625 0.461244 64 28144 33 1.57908e+07 8.49251e+06 2.26035e+06 3924.22 9.24 1.83511 1.63364 64454 586630 -1 24153 24 15670 18150 3057720 705467 0 0 3057720 705467 16622 15938 0 0 145372 135105 0 0 177887 159376 0 0 16624 16057 0 0 1348488 192092 0 0 1352727 186899 0 0 16622 0 0 978 7935 8782 21959 1595 151 9.80202 9.80202 -1750.42 -9.80202 0 0 2.84938e+06 4946.85 1.30 0.72 0.56 -1 -1 1.30 0.244642 0.220991 1576 988 950 19 0 0 +k6_frac_ripple_N8_22nm.xml fir_nopipe_52.v common 41.85 vpr 73.92 MiB 0.24 17256 -1 -1 1 0.74 -1 -1 38772 -1 -1 215 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75696 22 19 4598 3308 1 2718 270 24 24 576 mult_36 auto 37.0 MiB 14.59 21535 73.9 MiB 0.97 0.01 9.20881 -1033.49 -9.20881 9.20881 1.49 0.00346836 0.0029877 0.265903 0.23241 70 33048 29 1.57908e+07 8.54841e+06 2.45377e+06 4260.01 17.82 1.60404 1.4175 66754 640332 -1 27827 22 17227 19551 4901421 1016673 0 0 4901421 1016673 18003 17399 0 0 157864 146615 0 0 187564 169641 0 0 18006 17475 0 0 2229366 325849 0 0 2290618 339694 0 0 18003 0 0 805 7463 9038 22248 1600 88 9.93232 9.93232 -1588.22 -9.93232 0 0 3.09179e+06 5367.68 0.93 0.96 0.63 -1 -1 0.93 0.22136 0.199035 1605 1007 969 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_14.v common 8.04 vpr 61.36 MiB 0.07 10340 -1 -1 1 0.27 -1 -1 35508 -1 -1 81 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62832 22 19 1974 1653 1 1020 126 16 16 256 mult_36 auto 23.0 MiB 0.38 5972 61.4 MiB 0.23 0.00 3.79276 -1064.84 -3.79276 3.79276 0.53 0.00116223 0.000969968 0.0809245 0.0693157 50 13019 46 6.54114e+06 2.7256e+06 787708. 3076.99 3.82 0.696093 0.608233 25344 186282 -1 9739 20 4172 4793 798055 191604 0 0 798055 191604 4519 4248 0 0 40070 36515 0 0 47519 42889 0 0 4566 4295 0 0 353790 50454 0 0 347591 53203 0 0 4519 0 0 366 3037 3362 22755 314 1 4.52256 4.52256 -1258.87 -4.52256 0 0 943753. 3686.54 0.35 0.29 0.17 -1 -1 0.35 0.119125 0.106609 605 649 247 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_15.v common 8.07 vpr 62.21 MiB 0.08 10692 -1 -1 1 0.28 -1 -1 36096 -1 -1 88 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63704 22 19 2144 1789 1 1120 134 16 16 256 mult_36 auto 24.1 MiB 0.26 6659 62.2 MiB 0.42 0.01 4.04336 -1171.67 -4.04336 4.04336 0.64 0.00246786 0.00214712 0.176615 0.154617 54 13390 41 6.54114e+06 3.22025e+06 829453. 3240.05 3.92 0.872143 0.769805 26108 202796 -1 10584 20 4334 5101 698961 173217 0 0 698961 173217 4561 4371 0 0 37426 33928 0 0 44219 39574 0 0 4573 4385 0 0 307241 44958 0 0 300941 46001 0 0 4561 0 0 245 2367 2540 5222 645 3 4.29396 4.29396 -1372.96 -4.29396 0 0 1.02522e+06 4004.78 0.38 0.22 0.19 -1 -1 0.38 0.0911393 0.0829121 654 704 266 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_16.v common 8.77 vpr 62.51 MiB 0.07 10892 -1 -1 1 0.30 -1 -1 35888 -1 -1 91 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64008 22 19 2218 1846 1 1162 137 16 16 256 mult_36 auto 24.3 MiB 0.43 6645 62.5 MiB 0.40 0.01 3.91806 -1189.41 -3.91806 3.91806 0.72 0.00284291 0.00247927 0.153184 0.132753 54 14055 36 6.54114e+06 3.26253e+06 829453. 3240.05 3.90 0.870232 0.766819 26108 202796 -1 10583 20 4697 5359 816374 199868 0 0 816374 199868 4935 4743 0 0 41132 37509 0 0 48277 43531 0 0 4935 4753 0 0 361726 53920 0 0 355369 55412 0 0 4935 0 0 255 2530 2054 5893 502 10 4.39726 4.39726 -1353.36 -4.39726 0 0 1.02522e+06 4004.78 0.31 0.33 0.19 -1 -1 0.31 0.14915 0.134141 683 723 285 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_17.v common 7.87 vpr 63.89 MiB 0.10 11580 -1 -1 1 0.35 -1 -1 36700 -1 -1 103 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65424 22 19 2536 2130 1 1275 149 16 16 256 mult_36 auto 25.8 MiB 0.31 7862 63.9 MiB 0.47 0.01 4.04336 -1364.39 -4.04336 4.04336 0.74 0.00327083 0.00286818 0.196065 0.17215 58 12981 30 6.54114e+06 3.43166e+06 871168. 3403.00 3.21 0.792923 0.697466 26872 219187 -1 10958 18 4294 5014 769453 192821 0 0 769453 192821 4534 4309 0 0 39174 35164 0 0 46940 42443 0 0 4544 4343 0 0 336100 52730 0 0 338161 53832 0 0 4534 0 0 256 2209 2733 5288 580 75 4.29396 4.29396 -1540.21 -4.29396 0 0 1.09288e+06 4269.05 0.41 0.32 0.21 -1 -1 0.41 0.139383 0.125339 770 851 304 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_18.v common 9.86 vpr 64.22 MiB 0.10 11788 -1 -1 1 0.26 -1 -1 36640 -1 -1 107 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65760 22 19 2610 2187 1 1316 153 16 16 256 mult_36 auto 26.1 MiB 0.40 7910 64.2 MiB 0.43 0.01 3.79276 -1415.98 -3.79276 3.79276 0.70 0.00343608 0.00298005 0.157298 0.136403 56 15309 35 6.54114e+06 3.48803e+06 849745. 3319.32 5.12 1.07437 0.937268 26364 208198 -1 11980 19 5036 5970 904298 220894 0 0 904298 220894 5252 5075 0 0 45558 40639 0 0 55173 49491 0 0 5259 5102 0 0 398916 59514 0 0 394140 61073 0 0 5252 0 0 236 3290 3269 6249 765 156 4.39726 4.39726 -1668.04 -4.39726 0 0 1.04740e+06 4091.43 0.39 0.34 0.20 -1 -1 0.39 0.151076 0.135237 798 870 323 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_19.v common 10.72 vpr 65.01 MiB 0.11 12200 -1 -1 1 0.37 -1 -1 36812 -1 -1 113 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66572 22 19 2778 2321 1 1412 160 16 16 256 mult_36 auto 27.1 MiB 0.49 8346 65.0 MiB 0.32 0.01 3.79276 -1487.7 -3.79276 3.79276 0.77 0.00184622 0.00159137 0.110301 0.0942769 58 15230 41 6.54114e+06 3.96859e+06 871168. 3403.00 5.76 0.816321 0.710312 26872 219187 -1 12136 18 5089 5880 814912 204128 0 0 814912 204128 5325 5113 0 0 43081 38530 0 0 52108 46807 0 0 5327 5137 0 0 355185 53433 0 0 353886 55108 0 0 5325 0 0 255 2273 3009 6331 616 163 4.29396 4.29396 -1724.8 -4.29396 0 0 1.09288e+06 4269.05 0.27 0.20 0.12 -1 -1 0.27 0.100456 0.0909223 846 925 342 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_20.v common 8.28 vpr 65.52 MiB 0.09 12352 -1 -1 1 0.40 -1 -1 37248 -1 -1 118 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67088 22 19 2852 2378 1 1455 165 16 16 256 mult_36 auto 27.4 MiB 0.54 9052 65.5 MiB 0.22 0.01 3.91806 -1567.01 -3.91806 3.91806 0.53 0.00210309 0.00183743 0.0817035 0.0714512 60 14855 31 6.54114e+06 4.03906e+06 890343. 3477.90 3.70 0.855182 0.749212 27128 224764 -1 12241 16 4918 5599 829361 212572 0 0 829361 212572 5156 4971 0 0 44594 40215 0 0 51833 47374 0 0 5165 4993 0 0 358412 56374 0 0 364201 58645 0 0 5156 0 0 255 2177 2743 6163 513 2 4.29396 4.29396 -1737.03 -4.29396 0 0 1.11577e+06 4358.47 0.28 0.22 0.21 -1 -1 0.28 0.102435 0.0932098 875 944 361 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_21.v common 12.08 vpr 66.38 MiB 0.12 12704 -1 -1 1 0.45 -1 -1 37108 -1 -1 122 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67972 22 19 3057 2549 1 1560 169 16 16 256 mult_36 auto 28.5 MiB 0.60 10145 66.4 MiB 0.63 0.01 3.91806 -1657.7 -3.91806 3.91806 0.85 0.00440877 0.00371022 0.281583 0.253313 60 16591 34 6.54114e+06 4.09544e+06 890343. 3477.90 5.92 1.27018 1.12723 27128 224764 -1 13770 18 5500 6444 1071451 259247 0 0 1071451 259247 5777 5524 0 0 50281 45334 0 0 59730 53937 0 0 5778 5545 0 0 473949 73157 0 0 475936 75750 0 0 5777 0 0 295 3339 3527 6737 770 244 4.41926 4.41926 -1879.02 -4.41926 0 0 1.11577e+06 4358.47 0.40 0.44 0.20 -1 -1 0.40 0.204595 0.185679 932 1017 380 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_22.v common 12.22 vpr 66.64 MiB 0.11 12788 -1 -1 1 0.49 -1 -1 37400 -1 -1 125 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68244 22 19 3131 2606 1 1600 172 16 16 256 mult_36 auto 28.6 MiB 0.61 10124 66.6 MiB 0.63 0.01 4.02136 -1704.37 -4.02136 4.02136 0.84 0.00712865 0.00663381 0.265632 0.237532 68 16819 31 6.54114e+06 4.13772e+06 1.00038e+06 3907.74 6.34 1.39321 1.23904 28404 252462 -1 13635 20 5537 6193 867491 206106 0 0 867491 206106 5781 5561 0 0 43283 38610 0 0 52695 47065 0 0 5786 5579 0 0 383087 52952 0 0 376859 56339 0 0 5781 0 0 261 2348 2015 6802 476 2 4.39726 4.39726 -1896.61 -4.39726 0 0 1.24648e+06 4869.04 0.32 0.28 0.24 -1 -1 0.32 0.138947 0.125458 961 1036 399 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_23.v common 15.35 vpr 67.70 MiB 0.13 13024 -1 -1 1 0.49 -1 -1 37276 -1 -1 133 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69328 22 19 3301 2742 1 1700 181 18 18 324 mult_36 auto 29.7 MiB 0.63 10269 67.7 MiB 0.66 0.02 3.91806 -1815.19 -3.91806 3.91806 1.14 0.00830175 0.00747252 0.305599 0.276071 56 19535 36 8.06603e+06 4.64648e+06 1.11497e+06 3441.27 8.17 2.01167 1.79827 34036 275796 -1 16012 16 6494 7589 1166508 276969 0 0 1166508 276969 6833 6512 0 0 56729 50590 0 0 68786 61708 0 0 6836 6539 0 0 514529 75194 0 0 512795 76426 0 0 6833 0 0 358 3645 3976 8220 848 20 4.54456 4.54456 -2213.39 -4.54456 0 0 1.37338e+06 4238.83 0.47 0.46 0.25 -1 -1 0.47 0.213417 0.193747 1012 1091 418 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_24.v common 14.55 vpr 67.82 MiB 0.12 13472 -1 -1 1 0.50 -1 -1 37072 -1 -1 137 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69444 22 19 3375 2799 1 1744 185 18 18 324 mult_36 auto 29.9 MiB 0.66 10613 67.8 MiB 0.47 0.01 4.04336 -1855.71 -4.04336 4.04336 0.87 0.00229114 0.00198621 0.171787 0.149276 60 20330 50 8.06603e+06 4.70285e+06 1.16833e+06 3605.96 8.12 1.89764 1.6839 35004 297736 -1 15716 18 6382 7415 1250228 292002 0 0 1250228 292002 6699 6453 0 0 55997 50285 0 0 66530 59907 0 0 6708 6483 0 0 565108 83246 0 0 549186 85628 0 0 6699 0 0 337 3130 4070 8036 795 20 4.39726 4.39726 -2180.44 -4.39726 0 0 1.46313e+06 4515.82 0.41 0.32 0.28 -1 -1 0.41 0.131711 0.11876 1041 1110 437 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_25.v common 14.55 vpr 68.88 MiB 0.14 13808 -1 -1 1 0.55 -1 -1 37892 -1 -1 146 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70528 22 19 3615 3005 1 1848 194 18 18 324 mult_36 auto 30.8 MiB 0.72 11307 68.9 MiB 0.91 0.01 3.91806 -1971.06 -3.91806 3.91806 1.13 0.00605485 0.00544395 0.394359 0.353326 60 18893 30 8.06603e+06 4.8297e+06 1.16833e+06 3605.96 7.14 2.17349 1.94645 35004 297736 -1 16146 16 6464 7598 1227259 287669 0 0 1227259 287669 6796 6512 0 0 57794 51650 0 0 68503 61744 0 0 6807 6550 0 0 553979 78767 0 0 533380 82446 0 0 6796 0 0 347 3984 3756 8137 891 145 4.39726 4.39726 -2319.28 -4.39726 0 0 1.46313e+06 4515.82 0.51 0.32 0.27 -1 -1 0.51 0.138925 0.126021 1107 1201 456 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_26.v common 17.06 vpr 69.18 MiB 0.13 14028 -1 -1 1 0.58 -1 -1 37600 -1 -1 148 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70840 22 19 3689 3062 1 1888 196 18 18 324 mult_36 auto 31.1 MiB 0.71 12301 69.2 MiB 0.89 0.01 4.04336 -2020.33 -4.04336 4.04336 1.13 0.00574925 0.00519498 0.376658 0.337436 66 22366 34 8.06603e+06 4.85789e+06 1.27759e+06 3943.17 9.39 2.10061 1.87261 36296 327148 -1 17195 19 6576 7557 1314540 294198 0 0 1314540 294198 6936 6624 0 0 57665 51509 0 0 68758 62176 0 0 6941 6658 0 0 586357 82101 0 0 587883 85130 0 0 6936 0 0 378 2919 3301 8343 723 81 4.41926 4.41926 -2337.7 -4.41926 0 0 1.59950e+06 4936.74 0.42 0.55 0.20 -1 -1 0.42 0.250187 0.22459 1135 1220 475 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_27.v common 12.55 vpr 70.24 MiB 0.13 14296 -1 -1 1 0.66 -1 -1 38192 -1 -1 156 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71924 22 19 3871 3210 1 2002 205 18 18 324 mult_36 auto 32.4 MiB 0.75 12335 70.2 MiB 0.48 0.01 4.04336 -2177.99 -4.04336 4.04336 0.75 0.0028901 0.00252128 0.17472 0.152922 64 21265 29 8.06603e+06 5.36665e+06 1.23838e+06 3822.15 5.59 1.44401 1.2758 35972 318676 -1 17337 17 6939 7994 1218901 286489 0 0 1218901 286489 7243 6968 0 0 60909 54271 0 0 73492 66153 0 0 7249 7013 0 0 548590 74428 0 0 521418 77656 0 0 7243 0 0 324 3563 3898 8699 815 127 4.41926 4.41926 -2475.79 -4.41926 0 0 1.56068e+06 4816.91 0.65 0.62 0.30 -1 -1 0.65 0.33642 0.308117 1191 1275 494 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_28.v common 12.96 vpr 70.63 MiB 0.14 14532 -1 -1 1 0.61 -1 -1 37824 -1 -1 160 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72328 22 19 3945 3267 1 2045 209 18 18 324 mult_36 auto 32.6 MiB 0.76 12356 70.6 MiB 0.92 0.01 3.91806 -2130.05 -3.91806 3.91806 1.18 0.0060984 0.00546394 0.378305 0.340127 64 21708 29 8.06603e+06 5.42302e+06 1.23838e+06 3822.15 5.66 1.34541 1.1887 35972 318676 -1 17506 18 7087 8292 1326254 307260 0 0 1326254 307260 7403 7125 0 0 64473 57458 0 0 77743 69929 0 0 7411 7164 0 0 578854 83518 0 0 590370 82066 0 0 7403 0 0 334 4503 4101 8602 991 92 4.29396 4.29396 -2523.87 -4.29396 0 0 1.56068e+06 4816.91 0.41 0.35 0.18 -1 -1 0.41 0.160852 0.145 1219 1294 513 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_29.v common 22.42 vpr 71.92 MiB 0.16 14976 -1 -1 1 0.67 -1 -1 38848 -1 -1 170 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73648 22 19 4159 3447 1 2159 220 22 22 484 mult_36 auto 33.9 MiB 0.82 14296 71.9 MiB 1.07 0.02 3.91806 -2272.88 -3.91806 3.91806 1.83 0.00553388 0.00483671 0.405451 0.3571 58 28364 39 1.31202e+07 5.95997e+06 1.75961e+06 3635.55 12.32 2.17365 1.91986 52570 450426 -1 21836 20 8713 10544 1785055 388229 0 0 1785055 388229 9105 8803 0 0 75403 66971 0 0 91273 81546 0 0 9116 8871 0 0 806904 109438 0 0 793254 112600 0 0 9105 0 0 412 6090 7186 11079 1493 304 4.52256 4.52256 -2814.06 -4.52256 0 0 2.20457e+06 4554.90 0.85 0.42 0.43 -1 -1 0.85 0.1692 0.15201 1283 1367 532 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_30.v common 16.03 vpr 71.79 MiB 0.15 15088 -1 -1 1 0.65 -1 -1 40220 -1 -1 173 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73516 22 19 4233 3504 1 2198 223 22 22 484 mult_36 auto 33.8 MiB 0.78 14580 71.8 MiB 1.18 0.01 3.91806 -2232.55 -3.91806 3.91806 1.85 0.00602701 0.00536925 0.476695 0.422325 60 25392 27 1.31202e+07 6.00225e+06 1.79840e+06 3715.71 6.56 1.45371 1.27628 53054 462096 -1 20637 17 7950 9421 1500708 338777 0 0 1500708 338777 8387 8112 0 0 70477 63010 0 0 84007 75506 0 0 8391 8166 0 0 663802 91336 0 0 665644 92647 0 0 8387 0 0 459 5154 5467 10470 1099 152 4.41926 4.41926 -2696.08 -4.41926 0 0 2.25108e+06 4650.99 0.68 0.47 0.28 -1 -1 0.68 0.201292 0.181461 1311 1386 551 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_31.v common 18.30 vpr 73.68 MiB 0.16 15332 -1 -1 1 0.74 -1 -1 40284 -1 -1 179 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 75448 22 19 4410 3647 1 2305 229 22 22 484 mult_36 auto 34.9 MiB 0.91 15174 73.7 MiB 1.14 0.02 3.79276 -2360.14 -3.79276 3.79276 1.89 0.00704559 0.00637063 0.469299 0.421644 62 26919 35 1.31202e+07 6.08682e+06 1.85176e+06 3825.95 7.94 2.04678 1.81251 53538 472186 -1 20914 17 7889 9383 1264357 294908 0 0 1264357 294908 8205 7947 0 0 69852 62254 0 0 82350 74182 0 0 8216 7968 0 0 552932 70862 0 0 542802 71695 0 0 8205 0 0 335 5215 5627 9644 1247 499 4.29396 4.29396 -3039.44 -4.29396 0 0 2.29262e+06 4736.82 0.66 0.51 0.37 -1 -1 0.66 0.290126 0.262987 1363 1441 570 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_32.v common 17.98 vpr 73.20 MiB 0.11 15344 -1 -1 1 0.72 -1 -1 40376 -1 -1 183 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74952 22 19 4484 3704 1 2348 233 22 22 484 mult_36 auto 35.2 MiB 0.55 15026 73.2 MiB 0.71 0.01 3.79276 -2437.3 -3.79276 3.79276 1.22 0.00332152 0.00289842 0.252534 0.220905 58 28136 43 1.31202e+07 6.14319e+06 1.75961e+06 3635.55 9.41 1.36006 1.18403 52570 450426 -1 22569 19 8937 10584 1635344 363842 0 0 1635344 363842 9305 8994 0 0 75807 67469 0 0 92476 82685 0 0 9313 9043 0 0 727503 98380 0 0 720940 97271 0 0 9305 0 0 388 5704 6691 11120 1337 69 4.54456 4.54456 -2943.41 -4.54456 0 0 2.20457e+06 4554.90 0.98 0.72 0.40 -1 -1 0.98 0.367975 0.333483 1393 1460 589 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_33.v common 20.39 vpr 75.46 MiB 0.18 16396 -1 -1 1 0.82 -1 -1 40800 -1 -1 196 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77276 22 19 4843 4029 1 2463 247 22 22 484 mult_36 auto 36.6 MiB 0.66 17421 75.5 MiB 0.65 0.01 3.91806 -2610.2 -3.91806 3.91806 1.24 0.00364204 0.0031856 0.232231 0.203245 62 31794 48 1.31202e+07 6.72242e+06 1.85176e+06 3825.95 11.27 1.90802 1.67097 53538 472186 -1 24422 19 9475 11148 1996420 428215 0 0 1996420 428215 9944 9551 0 0 83056 74195 0 0 97183 87836 0 0 9950 9603 0 0 907062 120503 0 0 889225 126527 0 0 9944 0 0 490 6103 6048 12229 1275 60 4.52256 4.52256 -3063.87 -4.52256 0 0 2.29262e+06 4736.82 0.93 0.51 0.44 -1 -1 0.93 0.244385 0.220624 1490 1606 608 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_34.v common 21.84 vpr 74.74 MiB 0.17 16776 -1 -1 1 0.80 -1 -1 40672 -1 -1 199 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76532 22 19 4917 4086 1 2505 250 22 22 484 mult_36 auto 37.1 MiB 0.92 16861 74.7 MiB 1.26 0.02 3.91806 -2596.99 -3.91806 3.91806 1.89 0.00754946 0.00674858 0.488662 0.43293 64 29911 38 1.31202e+07 6.7647e+06 1.90554e+06 3937.06 10.90 2.61247 2.31336 54502 494576 -1 23699 19 9000 10475 1899761 415182 0 0 1899761 415182 9442 9075 0 0 79371 70688 0 0 95680 86052 0 0 9446 9136 0 0 857087 115646 0 0 848735 124585 0 0 9442 0 0 460 5197 5178 11754 1098 382 4.39726 4.39726 -3168.37 -4.39726 0 0 2.40101e+06 4960.76 0.87 0.53 0.37 -1 -1 0.87 0.248775 0.224332 1519 1625 627 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_35.v common 18.15 vpr 77.02 MiB 0.12 16888 -1 -1 1 0.89 -1 -1 41332 -1 -1 207 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 78872 22 19 5093 4228 1 2607 258 22 22 484 mult_36 auto 38.2 MiB 0.94 17900 77.0 MiB 0.85 0.01 4.04336 -2813.59 -4.04336 4.04336 1.68 0.0040699 0.00349114 0.290365 0.25142 66 32457 44 1.31202e+07 6.87745e+06 1.96511e+06 4060.15 7.73 1.61974 1.41325 54986 507526 -1 25001 17 8868 10688 1630122 348190 0 0 1630122 348190 9329 8970 0 0 73133 64229 0 0 90122 79780 0 0 9336 9016 0 0 732638 92528 0 0 715564 93667 0 0 9329 0 0 480 6969 6503 11785 1415 96 4.54456 4.54456 -3415.49 -4.54456 0 0 2.45963e+06 5081.88 1.17 0.77 0.48 -1 -1 1.17 0.395123 0.356651 1572 1680 646 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_36.v common 18.93 vpr 76.13 MiB 0.15 17200 -1 -1 1 0.62 -1 -1 41148 -1 -1 209 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77960 22 19 5167 4285 1 2655 260 22 22 484 mult_36 auto 38.4 MiB 0.81 19138 76.1 MiB 1.15 0.02 3.91806 -2798.96 -3.91806 3.91806 1.20 0.00616655 0.00536063 0.39622 0.343766 68 32277 23 1.31202e+07 6.90564e+06 2.01763e+06 4168.66 9.05 2.18484 1.92214 55470 518816 -1 25818 17 9208 10813 1726380 370488 0 0 1726380 370488 9677 9279 0 0 74430 65891 0 0 89362 79893 0 0 9684 9307 0 0 777926 101889 0 0 765301 104229 0 0 9677 0 0 486 5543 5910 12284 1193 729 4.54456 4.54456 -3346.24 -4.54456 0 0 2.51205e+06 5190.18 1.16 0.83 0.49 -1 -1 1.16 0.425637 0.387271 1600 1699 665 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_37.v common 27.71 vpr 77.21 MiB 0.20 17456 -1 -1 1 0.93 -1 -1 39972 -1 -1 218 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79064 22 19 5380 4464 1 2756 270 24 24 576 mult_36 auto 39.4 MiB 1.01 20063 77.2 MiB 1.32 0.02 4.16866 -3164.83 -4.16866 4.16866 2.37 0.00673327 0.00588958 0.511959 0.457838 60 35296 33 1.58331e+07 7.42849e+06 2.13333e+06 3703.69 15.36 2.99938 2.65468 62730 548095 -1 28246 18 10104 12221 1936556 414741 0 0 1936556 414741 10596 10193 0 0 82747 72710 0 0 99443 88720 0 0 10603 10263 0 0 874945 116235 0 0 858222 116620 0 0 10596 0 0 513 7283 8497 13389 1666 388 4.66986 4.66986 -3795.32 -4.66986 0 0 2.67122e+06 4637.53 0.80 0.56 0.32 -1 -1 0.80 0.228386 0.204891 1662 1772 684 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_38.v common 19.85 vpr 77.45 MiB 0.16 17764 -1 -1 1 1.01 -1 -1 41788 -1 -1 220 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79312 22 19 5454 4521 1 2804 272 24 24 576 mult_36 auto 39.7 MiB 1.02 19459 77.5 MiB 0.84 0.01 4.16866 -3108.05 -4.16866 4.16866 2.24 0.00404759 0.00354303 0.300621 0.26467 64 33829 26 1.58331e+07 7.45668e+06 2.26035e+06 3924.22 8.45 1.56716 1.36714 64454 586630 -1 27285 18 9748 11270 1913581 424064 0 0 1913581 424064 10172 9818 0 0 84614 75091 0 0 102473 91825 0 0 10178 9872 0 0 861860 118248 0 0 844284 119210 0 0 10172 0 0 442 5682 5776 12338 1156 412 4.54456 4.54456 -3514.29 -4.54456 0 0 2.84938e+06 4946.85 0.86 0.51 0.34 -1 -1 0.86 0.253055 0.227765 1690 1791 703 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_39.v common 22.91 vpr 78.16 MiB 0.21 18128 -1 -1 1 0.66 -1 -1 40468 -1 -1 228 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80032 22 19 5629 4662 1 2910 280 24 24 576 mult_36 auto 40.8 MiB 0.68 19361 78.2 MiB 1.30 0.02 3.91806 -3167.21 -3.91806 3.91806 1.58 0.00703804 0.00615567 0.460337 0.402746 60 34328 41 1.58331e+07 7.56943e+06 2.13333e+06 3703.69 12.32 2.69352 2.36641 62730 548095 -1 27360 23 10572 12445 2039567 465158 0 0 2039567 465158 11008 10616 0 0 94261 84539 0 0 112528 101333 0 0 11012 10674 0 0 903339 128735 0 0 907419 129261 0 0 11008 0 0 456 6459 7204 13411 1485 619 4.66986 4.66986 -3704.79 -4.66986 0 0 2.67122e+06 4637.53 1.20 0.67 0.33 -1 -1 1.20 0.320854 0.285368 1742 1846 722 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_40.v common 26.45 vpr 79.79 MiB 0.17 18124 -1 -1 1 0.99 -1 -1 41772 -1 -1 232 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81704 22 19 5703 4719 1 2952 284 24 24 576 mult_36 auto 41.4 MiB 1.07 20734 79.8 MiB 1.37 0.02 4.16866 -3276.4 -4.16866 4.16866 1.67 0.00829912 0.00725513 0.475923 0.416226 64 37401 34 1.58331e+07 7.62581e+06 2.26035e+06 3924.22 14.46 3.24083 2.86971 64454 586630 -1 29150 19 10714 12563 2133412 472386 0 0 2133412 472386 11179 10793 0 0 92540 82373 0 0 113510 100978 0 0 11180 10850 0 0 957885 132755 0 0 947118 134637 0 0 11179 0 0 483 6565 6978 14026 1413 175 4.52256 4.52256 -3859.66 -4.52256 0 0 2.84938e+06 4946.85 0.87 0.56 0.35 -1 -1 0.87 0.239086 0.213867 1771 1865 741 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_41.v common 25.55 vpr 79.81 MiB 0.15 18616 -1 -1 1 1.03 -1 -1 40956 -1 -1 240 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81724 22 19 5950 4932 1 3067 293 24 24 576 mult_36 auto 42.4 MiB 0.76 21064 79.8 MiB 0.98 0.01 4.04336 -3445.69 -4.04336 4.04336 1.91 0.00479645 0.00423863 0.329011 0.288864 68 36564 36 1.58331e+07 8.13456e+06 2.39371e+06 4155.74 13.46 2.4058 2.11611 65606 615345 -1 29319 20 11140 13425 2126161 453781 0 0 2126161 453781 11719 11280 0 0 95354 84858 0 0 114452 102419 0 0 11730 11381 0 0 958836 121675 0 0 934070 122168 0 0 11719 0 0 598 9040 8416 14742 1789 389 4.29396 4.29396 -3980.84 -4.29396 0 0 2.98162e+06 5176.42 1.35 1.02 0.54 -1 -1 1.35 0.523937 0.475599 1841 1956 760 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_42.v common 22.22 vpr 79.99 MiB 0.23 18912 -1 -1 1 1.14 -1 -1 42508 -1 -1 242 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81912 22 19 6024 4989 1 3108 295 24 24 576 mult_36 auto 42.5 MiB 1.01 20798 80.0 MiB 1.87 0.02 4.16866 -3417.51 -4.16866 4.16866 2.04 0.0086826 0.00773599 0.706302 0.627995 64 35011 29 1.58331e+07 8.16275e+06 2.26035e+06 3924.22 9.43 2.33851 2.05713 64454 586630 -1 29318 18 10688 12903 2129573 473975 0 0 2129573 473975 11207 10739 0 0 94570 83628 0 0 116042 103289 0 0 11214 10789 0 0 960905 130582 0 0 935635 134948 0 0 11207 0 0 537 7226 9127 13933 1762 255 4.64786 4.64786 -4100.73 -4.64786 0 0 2.84938e+06 4946.85 1.00 0.66 0.52 -1 -1 1.00 0.279928 0.2525 1869 1975 779 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_43.v common 24.42 vpr 80.84 MiB 0.23 19136 -1 -1 1 1.01 -1 -1 42748 -1 -1 250 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 82780 22 19 6198 5129 1 3209 303 24 24 576 mult_36 auto 43.4 MiB 1.22 22220 80.8 MiB 0.86 0.01 4.16866 -3551.25 -4.16866 4.16866 1.52 0.0048441 0.0042722 0.300756 0.264878 66 38599 44 1.58331e+07 8.2755e+06 2.33135e+06 4047.49 12.65 2.83956 2.50211 65030 601923 -1 30729 16 10882 12658 2015580 442185 0 0 2015580 442185 11376 10988 0 0 90069 79577 0 0 111041 98936 0 0 11380 11049 0 0 908312 120958 0 0 883402 120677 0 0 11376 0 0 514 6995 6759 14072 1325 85 4.54456 4.54456 -4129.43 -4.54456 0 0 2.91907e+06 5067.82 1.10 0.75 0.59 -1 -1 1.10 0.436318 0.393962 1921 2030 798 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_44.v common 26.22 vpr 81.54 MiB 0.18 19416 -1 -1 1 0.97 -1 -1 42996 -1 -1 253 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 83500 22 19 6272 5186 1 3255 306 24 24 576 mult_36 auto 44.1 MiB 0.86 21683 81.5 MiB 1.31 0.03 3.91806 -3599.86 -3.91806 3.91806 2.14 0.00972336 0.00869751 0.465236 0.413706 66 37755 41 1.58331e+07 8.31778e+06 2.33135e+06 4047.49 13.64 3.64074 3.22457 65030 601923 -1 30053 17 11038 12939 2040304 455989 0 0 2040304 455989 11503 11126 0 0 96176 85457 0 0 116396 104380 0 0 11515 11198 0 0 914874 121905 0 0 889840 121923 0 0 11503 0 0 481 6393 7536 13951 1503 496 4.41926 4.41926 -4091.1 -4.41926 0 0 2.91907e+06 5067.82 1.06 0.90 0.50 -1 -1 1.06 0.441254 0.401093 1949 2049 817 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_45.v common 21.97 vpr 82.24 MiB 0.25 19716 -1 -1 1 0.94 -1 -1 43192 -1 -1 262 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84212 22 19 6485 5365 1 3364 316 24 24 576 mult_36 auto 44.7 MiB 1.11 23340 82.2 MiB 1.08 0.02 4.16866 -3679.38 -4.16866 4.16866 1.80 0.0051742 0.00449219 0.364115 0.320247 68 38626 38 1.58331e+07 8.84063e+06 2.39371e+06 4155.74 9.21 2.09998 1.84353 65606 615345 -1 31150 17 11240 13140 2051924 459468 0 0 2051924 459468 11689 11277 0 0 92934 82513 0 0 112267 100465 0 0 11692 11332 0 0 923791 125204 0 0 899551 128677 0 0 11689 0 0 465 6216 7198 14178 1496 510 4.41926 4.41926 -4297.54 -4.41926 0 0 2.98162e+06 5176.42 1.43 1.09 0.54 -1 -1 1.43 0.5916 0.541237 2011 2122 836 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_46.v common 29.75 vpr 82.55 MiB 0.22 19812 -1 -1 1 0.82 -1 -1 43280 -1 -1 266 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 84532 22 19 6559 5422 1 3406 320 24 24 576 mult_36 auto 45.2 MiB 1.21 23671 82.6 MiB 1.63 0.02 4.16866 -3712.31 -4.16866 4.16866 2.30 0.00540317 0.00479297 0.547743 0.479258 68 38983 36 1.58331e+07 8.897e+06 2.39371e+06 4155.74 16.44 3.14103 2.77197 65606 615345 -1 31944 17 11000 12742 2050814 447848 0 0 2050814 447848 11537 11061 0 0 89550 79187 0 0 106883 96083 0 0 11545 11117 0 0 923247 123274 0 0 908052 127126 0 0 11537 0 0 555 6162 6611 14365 1277 320 4.64786 4.64786 -4262.33 -4.64786 0 0 2.98162e+06 5176.42 0.89 0.76 0.44 -1 -1 0.89 0.37287 0.331964 2040 2141 855 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_47.v common 27.02 vpr 83.54 MiB 0.25 20268 -1 -1 1 1.06 -1 -1 43648 -1 -1 273 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85548 22 19 6735 5564 1 3513 327 24 24 576 mult_36 auto 46.2 MiB 1.21 23732 83.5 MiB 1.23 0.02 4.04336 -3875.46 -4.04336 4.04336 2.23 0.00522419 0.00460265 0.393398 0.343504 72 39218 24 1.58331e+07 8.99566e+06 2.50747e+06 4353.24 14.13 3.12961 2.76605 67330 654343 -1 32357 15 11529 13259 2311269 510739 0 0 2311269 510739 11975 11563 0 0 97366 86472 0 0 118673 105746 0 0 11986 11616 0 0 1032519 146633 0 0 1038750 148709 0 0 11975 0 0 467 6213 7254 14174 1362 548 4.54456 4.54456 -4512.49 -4.54456 0 0 3.14081e+06 5452.80 1.09 0.61 0.55 -1 -1 1.09 0.296899 0.268844 2092 2196 874 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_48.v common 26.49 vpr 83.91 MiB 0.25 20452 -1 -1 1 1.17 -1 -1 43504 -1 -1 276 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 85920 22 19 6809 5621 1 3556 330 24 24 576 mult_36 auto 46.4 MiB 1.27 25754 83.9 MiB 1.17 0.02 4.16866 -3927.23 -4.16866 4.16866 1.80 0.00517032 0.00454584 0.389888 0.343776 72 42351 32 1.58331e+07 9.03794e+06 2.50747e+06 4353.24 13.36 3.18903 2.81527 67330 654343 -1 34948 15 11839 14044 2565791 550405 0 0 2565791 550405 12373 11918 0 0 101664 89965 0 0 123857 109991 0 0 12379 11994 0 0 1159423 163002 0 0 1156095 163535 0 0 12373 0 0 553 8476 9096 15164 1739 1439 4.77316 4.77316 -4567.33 -4.77316 0 0 3.14081e+06 5452.80 1.42 1.06 0.59 -1 -1 1.42 0.455107 0.414296 2121 2215 893 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_49.v common 26.25 vpr 85.60 MiB 0.27 20920 -1 -1 1 1.44 -1 -1 43880 -1 -1 287 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87652 22 19 7094 5872 1 3671 342 24 24 576 mult_36 auto 48.1 MiB 1.08 26414 85.6 MiB 1.24 0.03 4.16866 -4112.14 -4.16866 4.16866 1.65 0.00941245 0.00833415 0.395904 0.34644 72 44205 37 1.58331e+07 9.58898e+06 2.50747e+06 4353.24 13.64 3.33836 2.9569 67330 654343 -1 35373 17 12117 14511 2301231 494833 0 0 2301231 494833 12643 12218 0 0 100179 87920 0 0 123910 109352 0 0 12647 12274 0 0 1019909 138506 0 0 1031943 134563 0 0 12643 0 0 544 9004 9342 15574 1920 221 4.64786 4.64786 -4910.55 -4.64786 0 0 3.14081e+06 5452.80 1.04 0.66 0.39 -1 -1 1.04 0.306526 0.276045 2200 2324 912 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_50.v common 27.46 vpr 85.59 MiB 0.28 21200 -1 -1 1 1.28 -1 -1 43704 -1 -1 290 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 87640 22 19 7168 5929 1 3712 345 24 24 576 mult_36 auto 48.1 MiB 1.35 25005 85.6 MiB 2.12 0.04 4.16866 -4097.24 -4.16866 4.16866 2.00 0.0172809 0.0156867 0.780961 0.695717 72 41778 45 1.58331e+07 9.63126e+06 2.50747e+06 4353.24 12.31 3.24019 2.87393 67330 654343 -1 33887 19 12170 14450 2208825 490117 0 0 2208825 490117 12725 12249 0 0 101897 89691 0 0 126449 111631 0 0 12732 12294 0 0 979552 131840 0 0 975470 132412 0 0 12725 0 0 572 7945 7934 15501 1812 534 4.52256 4.52256 -4818.74 -4.52256 0 0 3.14081e+06 5452.80 1.45 1.10 0.64 -1 -1 1.45 0.580447 0.523685 2229 2343 931 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_51.v common 30.83 vpr 88.22 MiB 0.27 21456 -1 -1 1 1.48 -1 -1 44372 -1 -1 297 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90336 22 19 7344 6071 1 3815 352 24 24 576 mult_36 auto 48.8 MiB 1.15 27352 88.2 MiB 1.52 0.02 4.16866 -4185.33 -4.16866 4.16866 1.76 0.00565189 0.00497873 0.474288 0.41502 74 43261 26 1.58331e+07 9.72992e+06 2.56259e+06 4448.94 16.47 3.84929 3.40711 67906 667765 -1 37598 16 12547 14942 2893172 605463 0 0 2893172 605463 13043 12608 0 0 104251 92219 0 0 129211 114037 0 0 13045 12678 0 0 1328555 182027 0 0 1305067 191894 0 0 13043 0 0 513 8637 9751 15745 1955 530 4.79516 4.79516 -5106.88 -4.79516 0 0 3.19068e+06 5539.38 1.02 1.07 0.65 -1 -1 1.02 0.446611 0.398983 2282 2398 950 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_pipe_52.v common 43.97 vpr 86.72 MiB 0.27 21744 -1 -1 1 1.52 -1 -1 44408 -1 -1 301 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 88804 22 19 7418 6128 1 3860 356 24 24 576 mult_36 auto 49.2 MiB 1.37 30449 86.7 MiB 1.81 0.03 4.29396 -4395.87 -4.29396 4.29396 1.69 0.0105613 0.00919006 0.590264 0.518604 78 45732 30 1.58331e+07 9.78629e+06 2.67122e+06 4637.53 28.93 4.53249 3.95922 69630 706637 -1 39290 17 12969 15224 2492396 517522 0 0 2492396 517522 13573 13060 0 0 100343 87964 0 0 125615 109825 0 0 13575 13121 0 0 1126986 146882 0 0 1112304 146670 0 0 13573 0 0 622 8065 8328 17018 1724 1219 4.64786 4.64786 -5024.68 -4.64786 0 0 3.35110e+06 5817.88 1.54 1.11 0.75 -1 -1 1.54 0.516737 0.462742 2310 2417 969 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_14.v common 9.19 vpr 57.95 MiB 0.07 9484 -1 -1 1 0.18 -1 -1 34148 -1 -1 58 22 0 4 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59344 22 19 1246 925 1 732 103 16 16 256 mult_36 auto 19.5 MiB 1.45 4199 58.0 MiB 0.22 0.00 7.56363 -345.083 -7.56363 7.56363 0.74 0.000603483 0.000506322 0.0771602 0.0672092 46 8614 36 6.54114e+06 2.40144e+06 723233. 2825.13 4.32 0.440162 0.391359 24832 174915 -1 6763 23 5159 6022 867473 210383 0 0 867473 210383 6022 5375 0 0 48045 44479 0 0 55889 50622 0 0 6130 5460 0 0 379681 52946 0 0 371706 51501 0 0 6022 0 0 882 4187 4189 40118 0 0 7.90214 7.90214 -444.971 -7.90214 0 0 890343. 3477.90 0.33 0.30 0.15 -1 -1 0.33 0.105972 0.0970562 421 285 247 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_15.v common 6.90 vpr 58.23 MiB 0.07 9384 -1 -1 1 0.18 -1 -1 34740 -1 -1 61 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59628 22 19 1344 989 1 791 107 16 16 256 mult_36 auto 19.9 MiB 1.07 4448 58.2 MiB 0.18 0.00 7.59857 -338.987 -7.59857 7.59857 0.56 0.000707231 0.00060563 0.0539159 0.0458495 46 8733 33 6.54114e+06 2.83972e+06 723233. 2825.13 2.98 0.424217 0.376399 24832 174915 -1 6675 22 4390 4914 734731 196941 0 0 734731 196941 4914 4479 0 0 45518 42840 0 0 50533 47037 0 0 4961 4540 0 0 322307 49693 0 0 306498 48352 0 0 4914 0 0 546 2391 2777 29266 0 0 7.56783 7.56783 -468.481 -7.56783 0 0 890343. 3477.90 0.22 0.17 0.09 -1 -1 0.22 0.0553663 0.0502842 453 304 266 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_16.v common 23.11 vpr 58.59 MiB 0.07 9632 -1 -1 1 0.20 -1 -1 34768 -1 -1 65 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59992 22 19 1418 1046 1 832 111 16 16 256 mult_36 auto 20.2 MiB 1.66 4747 58.6 MiB 0.42 0.00 7.22861 -377.81 -7.22861 7.22861 0.80 0.00141547 0.0011988 0.147285 0.128058 44 10333 33 6.54114e+06 2.89609e+06 686998. 2683.59 17.33 1.02999 0.915302 24576 170172 -1 7480 23 5937 6604 933408 231583 0 0 933408 231583 6604 6061 0 0 53970 50222 0 0 62530 56901 0 0 6643 6111 0 0 398088 58236 0 0 405573 54052 0 0 6604 0 0 693 4130 5437 47186 0 0 7.69848 7.69848 -492.096 -7.69848 0 0 871168. 3403.00 0.32 0.35 0.15 -1 -1 0.32 0.134012 0.122479 481 323 285 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_17.v common 9.15 vpr 59.10 MiB 0.05 9940 -1 -1 1 0.15 -1 -1 34368 -1 -1 71 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60516 22 19 1518 1112 1 895 117 16 16 256 mult_36 auto 20.8 MiB 1.08 5305 59.1 MiB 0.25 0.00 7.96791 -388.775 -7.96791 7.96791 0.51 0.000883331 0.000752979 0.0709006 0.0605134 46 10617 43 6.54114e+06 2.98066e+06 723233. 2825.13 4.85 0.534059 0.473197 24832 174915 -1 8136 22 6375 7195 1210202 306640 0 0 1210202 306640 6949 6530 0 0 62187 58334 0 0 70870 64680 0 0 6976 6583 0 0 538329 84807 0 0 524891 85706 0 0 6949 0 0 600 3427 3708 25949 264 12 8.41027 8.41027 -486.017 -8.41027 0 0 890343. 3477.90 0.34 0.42 0.13 -1 -1 0.34 0.119216 0.108701 514 342 304 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_18.v common 9.15 vpr 59.23 MiB 0.08 10172 -1 -1 1 0.24 -1 -1 34580 -1 -1 74 22 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60652 22 19 1592 1169 1 934 120 16 16 256 mult_36 auto 21.1 MiB 2.00 5629 59.2 MiB 0.42 0.01 8.07121 -411.148 -8.07121 8.07121 0.81 0.0020155 0.00177188 0.143986 0.126795 50 10306 28 6.54114e+06 3.02294e+06 787708. 3076.99 3.14 0.601448 0.536459 25344 186282 -1 8386 23 6301 7185 954103 240883 0 0 954103 240883 6811 6398 0 0 55556 50711 0 0 65866 59086 0 0 6816 6439 0 0 413196 60197 0 0 405858 58052 0 0 6811 0 0 536 3669 3584 21584 394 39 8.83428 8.83428 -660.355 -8.83428 0 0 943753. 3686.54 0.35 0.36 0.17 -1 -1 0.35 0.136004 0.124227 542 361 323 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_19.v common 9.36 vpr 59.75 MiB 0.08 10508 -1 -1 1 0.24 -1 -1 35108 -1 -1 79 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61184 22 19 1688 1231 1 993 126 16 16 256 mult_36 auto 21.8 MiB 1.14 6105 59.8 MiB 0.30 0.01 8.17337 -408.351 -8.17337 8.17337 0.80 0.00202431 0.00176716 0.0973398 0.0848406 52 11550 46 6.54114e+06 3.48941e+06 808720. 3159.06 4.44 0.960655 0.864872 25852 197779 -1 8696 21 6124 6903 1074347 280877 0 0 1074347 280877 6708 6268 0 0 59620 55511 0 0 68915 63119 0 0 6721 6294 0 0 469737 75922 0 0 462646 73763 0 0 6708 0 0 606 3230 3942 27000 253 2 8.38333 8.38333 -552.706 -8.38333 0 0 1.00038e+06 3907.74 0.24 0.22 0.11 -1 -1 0.24 0.0668023 0.0604248 573 380 342 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_20.v common 9.58 vpr 60.20 MiB 0.09 10500 -1 -1 1 0.27 -1 -1 35000 -1 -1 81 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61644 22 19 1762 1288 1 1031 128 16 16 256 mult_36 auto 22.1 MiB 2.10 6158 60.2 MiB 0.36 0.00 7.8183 -416.944 -7.8183 7.8183 0.78 0.00096982 0.000824839 0.116376 0.100939 50 12049 28 6.54114e+06 3.51759e+06 787708. 3076.99 3.40 0.522855 0.462489 25344 186282 -1 9359 26 7708 8718 1418550 345173 0 0 1418550 345173 8428 7953 0 0 71577 65873 0 0 84752 76161 0 0 8475 8036 0 0 625992 90686 0 0 619326 96464 0 0 8428 0 0 752 5534 4923 36144 352 1 8.59692 8.59692 -683.011 -8.59692 0 0 943753. 3686.54 0.31 0.39 0.12 -1 -1 0.31 0.121899 0.10943 601 399 361 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_21.v common 11.90 vpr 59.95 MiB 0.10 10784 -1 -1 1 0.25 -1 -1 35400 -1 -1 85 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61392 22 19 1859 1351 1 1092 132 16 16 256 mult_36 auto 21.8 MiB 1.58 6980 60.0 MiB 0.38 0.01 8.05907 -434.522 -8.05907 8.05907 0.78 0.00172615 0.00146479 0.111947 0.0964253 52 13660 45 6.54114e+06 3.57397e+06 808720. 3159.06 5.70 0.955006 0.85063 25852 197779 -1 10160 23 6930 7976 1444632 362314 0 0 1444632 362314 7676 7102 0 0 65470 60718 0 0 75811 69039 0 0 7693 7166 0 0 646856 107339 0 0 641126 110950 0 0 7676 0 0 767 3802 4102 27517 351 1 8.56247 8.56247 -594.703 -8.56247 0 0 1.00038e+06 3907.74 0.38 0.52 0.18 -1 -1 0.38 0.1747 0.159848 632 418 380 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_22.v common 9.08 vpr 60.34 MiB 0.10 10924 -1 -1 1 0.22 -1 -1 35088 -1 -1 90 22 0 6 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61792 22 19 1933 1408 1 1130 137 16 16 256 mult_36 auto 22.2 MiB 1.94 7098 60.3 MiB 0.22 0.00 7.98086 -441.507 -7.98086 7.98086 0.49 0.000990376 0.000816059 0.0549774 0.0466852 54 12969 36 6.54114e+06 3.64444e+06 829453. 3240.05 3.42 0.517588 0.454921 26108 202796 -1 10241 22 6560 7511 1320686 334667 0 0 1320686 334667 7228 6682 0 0 63439 58960 0 0 72252 66362 0 0 7237 6751 0 0 588137 96780 0 0 582393 99132 0 0 7228 0 0 687 3560 3338 22758 402 142 8.47133 8.47133 -702.847 -8.47133 0 0 1.02522e+06 4004.78 0.37 0.47 0.18 -1 -1 0.37 0.161066 0.147314 661 437 399 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_23.v common 12.41 vpr 60.66 MiB 0.07 11236 -1 -1 1 0.31 -1 -1 35848 -1 -1 94 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62112 22 19 2031 1472 1 1193 142 18 18 324 mult_36 auto 22.5 MiB 2.00 7327 60.7 MiB 0.32 0.01 7.94165 -476.826 -7.94165 7.94165 0.66 0.00186002 0.00153972 0.0851514 0.0715082 46 16395 49 8.06603e+06 4.09681e+06 948677. 2928.01 6.01 0.623547 0.546368 32096 231720 -1 11525 24 7643 8726 1470927 349533 0 0 1470927 349533 8425 7821 0 0 72067 66802 0 0 82437 75177 0 0 8452 7915 0 0 658872 94954 0 0 640674 96864 0 0 8425 0 0 807 4751 4977 36177 316 1 8.62207 8.62207 -688.219 -8.62207 0 0 1.16833e+06 3605.96 0.47 0.53 0.21 -1 -1 0.47 0.190436 0.173747 693 456 418 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_24.v common 9.64 vpr 61.12 MiB 0.12 11428 -1 -1 1 0.25 -1 -1 35536 -1 -1 97 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62588 22 19 2105 1529 1 1230 145 18 18 324 mult_36 auto 23.0 MiB 1.80 7498 61.1 MiB 0.33 0.00 8.06696 -495.55 -8.06696 8.06696 0.67 0.00102198 0.0008562 0.0885213 0.0748352 50 14667 40 8.06603e+06 4.13909e+06 1.03391e+06 3191.07 3.58 0.54366 0.477288 32744 246704 -1 11475 21 6905 8143 1309766 304549 0 0 1309766 304549 7737 7138 0 0 65028 59425 0 0 76539 69357 0 0 7788 7235 0 0 579998 79150 0 0 572676 82244 0 0 7737 0 0 855 5598 6077 37674 446 2 8.54152 8.54152 -701.685 -8.54152 0 0 1.23838e+06 3822.15 0.47 0.46 0.21 -1 -1 0.47 0.164634 0.149797 721 475 437 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_25.v common 11.90 vpr 61.55 MiB 0.13 11680 -1 -1 1 0.24 -1 -1 35312 -1 -1 101 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63024 22 19 2201 1591 1 1290 149 18 18 324 mult_36 auto 23.5 MiB 2.33 7979 61.5 MiB 0.44 0.01 8.31162 -488.996 -8.31162 8.31162 1.11 0.00239701 0.00206097 0.14486 0.125807 54 14170 42 8.06603e+06 4.19547e+06 1.08842e+06 3359.33 4.14 0.661733 0.584481 33712 268580 -1 11399 24 8426 9483 1466240 347645 0 0 1466240 347645 9136 8580 0 0 72540 66851 0 0 84394 76166 0 0 9173 8663 0 0 650583 92669 0 0 640414 94716 0 0 9136 0 0 731 4526 4316 32345 382 1 8.81243 8.81243 -714.04 -8.81243 0 0 1.34436e+06 4149.26 0.53 0.32 0.24 -1 -1 0.53 0.102842 0.0926665 751 494 456 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_26.v common 15.57 vpr 61.73 MiB 0.08 11720 -1 -1 1 0.27 -1 -1 36164 -1 -1 105 22 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63212 22 19 2275 1648 1 1330 153 18 18 324 mult_36 auto 23.8 MiB 2.76 8151 61.7 MiB 0.61 0.01 8.26141 -557.097 -8.26141 8.26141 1.13 0.00295235 0.00259374 0.20966 0.182714 58 13063 33 8.06603e+06 4.25184e+06 1.14310e+06 3528.09 7.10 1.29718 1.16065 34680 290288 -1 11325 23 6806 7815 1268301 300351 0 0 1268301 300351 7425 6930 0 0 62602 57414 0 0 73246 67348 0 0 7449 6985 0 0 561037 81663 0 0 556542 80011 0 0 7425 0 0 638 4284 5322 31646 400 2 8.53852 8.53852 -732.028 -8.53852 0 0 1.43297e+06 4422.75 0.48 0.49 0.25 -1 -1 0.48 0.197551 0.179974 779 513 475 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_27.v common 17.54 vpr 62.27 MiB 0.13 12012 -1 -1 1 0.41 -1 -1 36068 -1 -1 111 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63764 22 19 2385 1724 1 1404 160 18 18 324 mult_36 auto 24.3 MiB 2.37 9073 62.3 MiB 0.62 0.01 7.83356 -576.168 -7.83356 7.83356 1.12 0.00261404 0.00226207 0.185434 0.16104 56 16789 38 8.06603e+06 4.73242e+06 1.11497e+06 3441.27 9.53 1.25328 1.11979 34036 275796 -1 13726 22 10227 11689 1907377 439639 0 0 1907377 439639 11143 10460 0 0 93933 85454 0 0 110882 100052 0 0 11166 10566 0 0 842881 118386 0 0 837372 114721 0 0 11143 0 0 943 8545 7956 47657 565 43 8.56673 8.56673 -796.798 -8.56673 0 0 1.37338e+06 4238.83 0.35 0.45 0.15 -1 -1 0.35 0.143521 0.130292 817 532 494 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_28.v common 16.19 vpr 62.74 MiB 0.08 12116 -1 -1 1 0.31 -1 -1 36420 -1 -1 114 22 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64244 22 19 2459 1781 1 1443 163 18 18 324 mult_36 auto 24.9 MiB 3.07 9268 62.7 MiB 0.35 0.01 7.83161 -557.515 -7.83161 7.83161 0.75 0.00135829 0.00116062 0.0963025 0.0817842 54 16905 38 8.06603e+06 4.7747e+06 1.08842e+06 3359.33 8.03 1.19378 1.06417 33712 268580 -1 13212 24 8694 10094 1782098 407050 0 0 1782098 407050 9536 8819 0 0 77751 71945 0 0 92807 83233 0 0 9547 8875 0 0 792202 114173 0 0 800255 120005 0 0 9536 0 0 868 6624 6233 37142 576 1 8.66993 8.66993 -816.798 -8.66993 0 0 1.34436e+06 4149.26 0.48 0.41 0.24 -1 -1 0.48 0.124699 0.112494 845 551 513 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_29.v common 18.25 vpr 63.24 MiB 0.14 12460 -1 -1 1 0.44 -1 -1 36192 -1 -1 118 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 64760 22 19 2565 1853 1 1511 168 22 22 484 mult_36 auto 25.3 MiB 2.81 10821 63.2 MiB 0.85 0.01 7.96791 -544.735 -7.96791 7.96791 1.85 0.00348496 0.00307211 0.281122 0.24674 56 17930 41 1.31202e+07 5.22708e+06 1.71605e+06 3545.56 7.40 1.03176 0.917149 51606 428054 -1 15582 23 10588 11995 2388487 547665 0 0 2388487 547665 11528 10755 0 0 104442 95988 0 0 122776 111387 0 0 11548 10834 0 0 1075284 157147 0 0 1062909 161554 0 0 11528 0 0 967 7020 7500 45911 481 77 8.83012 8.83012 -1015.76 -8.83012 0 0 2.11301e+06 4365.72 0.61 0.56 0.33 -1 -1 0.61 0.137652 0.124947 881 570 532 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_30.v common 17.01 vpr 63.63 MiB 0.15 12492 -1 -1 1 0.27 -1 -1 36544 -1 -1 123 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65156 22 19 2639 1910 1 1548 173 22 22 484 mult_36 auto 25.7 MiB 2.06 10390 63.6 MiB 0.85 0.01 7.95691 -542.487 -7.95691 7.95691 1.20 0.00351177 0.00305571 0.289005 0.252352 52 22435 42 1.31202e+07 5.29755e+06 1.63434e+06 3376.74 7.78 1.07214 0.948278 50638 406276 -1 15864 25 12140 14086 2808137 630444 0 0 2808137 630444 12995 12372 0 0 113170 104667 0 0 133829 120012 0 0 12995 12453 0 0 1278466 187701 0 0 1256682 193239 0 0 12995 0 0 883 5678 6738 17520 1178 95 8.88677 8.88677 -1093.81 -8.88677 0 0 2.01763e+06 4168.66 0.90 0.93 0.37 -1 -1 0.90 0.271901 0.247685 910 589 551 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_31.v common 17.85 vpr 64.09 MiB 0.17 12924 -1 -1 1 0.45 -1 -1 36784 -1 -1 128 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65628 22 19 2744 1981 1 1618 178 22 22 484 mult_36 auto 26.3 MiB 2.13 11314 64.1 MiB 0.52 0.01 8.19225 -602.916 -8.19225 8.19225 1.16 0.00171645 0.00148066 0.148111 0.128626 54 20376 47 1.31202e+07 5.36802e+06 1.67518e+06 3461.11 8.75 1.1788 1.05494 51122 416746 -1 16311 23 11917 13378 2505333 549393 0 0 2505333 549393 12634 12072 0 0 107283 98814 0 0 123770 111997 0 0 12635 12112 0 0 1136809 155606 0 0 1112202 158792 0 0 12634 0 0 742 5154 4957 16978 770 20 8.86142 8.86142 -955.512 -8.86142 0 0 2.06816e+06 4273.05 0.90 0.82 0.39 -1 -1 0.90 0.244697 0.223332 946 608 570 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_32.v common 21.47 vpr 64.23 MiB 0.18 12960 -1 -1 1 0.49 -1 -1 36172 -1 -1 131 22 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65772 22 19 2818 2038 1 1656 181 22 22 484 mult_36 auto 26.5 MiB 3.69 11120 64.2 MiB 0.80 0.01 8.19225 -611.518 -8.19225 8.19225 1.13 0.00399116 0.00355236 0.260328 0.227547 50 21307 50 1.31202e+07 5.4103e+06 1.59181e+06 3288.87 10.63 1.75141 1.56996 49674 382800 -1 16483 24 11997 13796 2462768 553683 0 0 2462768 553683 12822 12234 0 0 113180 103999 0 0 134663 120511 0 0 12828 12289 0 0 1090911 150827 0 0 1098364 153823 0 0 12822 0 0 854 5527 5910 17076 1051 281 8.75313 8.75313 -1249.02 -8.75313 0 0 1.90554e+06 3937.06 0.63 0.62 0.21 -1 -1 0.63 0.159771 0.144345 974 627 589 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_33.v common 19.64 vpr 65.02 MiB 0.18 13536 -1 -1 1 0.49 -1 -1 36512 -1 -1 137 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66576 22 19 2923 2109 1 1725 188 22 22 484 mult_36 auto 27.3 MiB 3.28 11560 65.0 MiB 0.58 0.01 8.6217 -605.128 -8.6217 8.6217 1.77 0.00201868 0.00174345 0.16867 0.146733 56 20412 33 1.31202e+07 5.89087e+06 1.71605e+06 3545.56 8.03 1.09219 0.968488 51606 428054 -1 17269 23 14384 16324 3350232 773818 0 0 3350232 773818 15392 14588 0 0 146863 135881 0 0 172268 155644 0 0 15394 14728 0 0 1513797 225237 0 0 1486518 227740 0 0 15392 0 0 1034 6445 6143 21035 1002 12 9.19047 9.19047 -1068.08 -9.19047 0 0 2.11301e+06 4365.72 0.65 0.88 0.29 -1 -1 0.65 0.236655 0.2136 1009 646 608 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_34.v common 22.62 vpr 65.16 MiB 0.11 13748 -1 -1 1 0.47 -1 -1 36932 -1 -1 140 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 66720 22 19 2997 2166 1 1764 191 22 22 484 mult_36 auto 27.5 MiB 4.38 11834 65.2 MiB 0.88 0.01 8.6547 -641.145 -8.6547 8.6547 1.90 0.00450188 0.00398599 0.29732 0.261812 54 21877 33 1.31202e+07 5.93316e+06 1.67518e+06 3461.11 9.64 1.65956 1.48599 51122 416746 -1 17087 25 11125 12732 2229486 518174 0 0 2229486 518174 11892 11286 0 0 106426 98855 0 0 121322 111140 0 0 11895 11334 0 0 1003510 143962 0 0 974441 141597 0 0 11892 0 0 793 4453 5155 15902 895 32 9.47697 9.47697 -1215.91 -9.47697 0 0 2.06816e+06 4273.05 0.90 0.52 0.38 -1 -1 0.90 0.153108 0.137777 1037 665 627 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_35.v common 16.87 vpr 65.70 MiB 0.17 13828 -1 -1 1 0.50 -1 -1 36740 -1 -1 145 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67280 22 19 3101 2236 1 1830 196 22 22 484 mult_36 auto 28.0 MiB 2.76 12141 65.7 MiB 0.52 0.01 8.8192 -651.805 -8.8192 8.8192 1.19 0.00188675 0.00162608 0.152688 0.132591 56 20673 42 1.31202e+07 6.00363e+06 1.71605e+06 3545.56 7.51 1.17092 1.03961 51606 428054 -1 17440 24 12078 14018 2624224 614162 0 0 2624224 614162 13029 12295 0 0 120554 110625 0 0 143759 128905 0 0 13032 12384 0 0 1178406 171594 0 0 1155444 178359 0 0 13029 0 0 977 5964 6012 18464 1048 3 9.71667 9.71667 -1169.4 -9.71667 0 0 2.11301e+06 4365.72 0.66 0.74 0.24 -1 -1 0.66 0.242137 0.219657 1072 684 646 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_36.v common 22.64 vpr 66.39 MiB 0.11 13940 -1 -1 1 0.44 -1 -1 37688 -1 -1 148 22 0 10 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 67988 22 19 3175 2293 1 1870 199 22 22 484 mult_36 auto 28.6 MiB 3.34 13227 66.4 MiB 0.93 0.01 8.5294 -676.033 -8.5294 8.5294 1.19 0.00388436 0.00332309 0.270523 0.234038 56 23688 50 1.31202e+07 6.04591e+06 1.71605e+06 3545.56 12.11 1.70081 1.50719 51606 428054 -1 18778 23 13848 15746 2946541 671589 0 0 2946541 671589 14735 14067 0 0 129765 119417 0 0 155827 140136 0 0 14736 14185 0 0 1319477 187813 0 0 1312001 195971 0 0 14735 0 0 914 6124 6069 19832 1060 2 9.75701 9.75701 -1476.69 -9.75701 0 0 2.11301e+06 4365.72 0.87 0.58 0.40 -1 -1 0.87 0.160011 0.144165 1100 703 665 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_37.v common 19.59 vpr 66.65 MiB 0.17 14228 -1 -1 1 0.51 -1 -1 37164 -1 -1 152 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68252 22 19 3280 2364 1 1940 204 24 24 576 mult_36 auto 28.8 MiB 2.97 13543 66.7 MiB 0.99 0.01 8.78194 -780.252 -8.78194 8.78194 2.19 0.00232193 0.00202331 0.309712 0.271232 56 23414 30 1.58331e+07 6.49829e+06 2.03561e+06 3534.04 6.94 1.19066 1.05862 61006 507707 -1 18958 22 11809 13794 2559210 593769 0 0 2559210 593769 12671 12056 0 0 113523 103802 0 0 133945 121612 0 0 12674 12145 0 0 1150638 168930 0 0 1135759 175224 0 0 12671 0 0 893 6630 6548 17636 1179 36 9.64032 9.64032 -1315.55 -9.64032 0 0 2.50747e+06 4353.24 1.13 0.70 0.48 -1 -1 1.13 0.196371 0.177958 1135 722 684 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_38.v common 21.95 vpr 67.21 MiB 0.20 14484 -1 -1 1 0.40 -1 -1 37640 -1 -1 157 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 68824 22 19 3354 2421 1 1977 209 24 24 576 mult_36 auto 29.5 MiB 3.95 13078 67.2 MiB 0.66 0.01 8.86016 -714.943 -8.86016 8.86016 1.71 0.0022565 0.00194879 0.182762 0.158333 54 24765 49 1.58331e+07 6.56876e+06 1.98675e+06 3449.22 9.40 1.33318 1.18118 60430 494267 -1 19061 23 14167 15877 3729238 854991 0 0 3729238 854991 14995 14361 0 0 139758 130654 0 0 159003 144549 0 0 14998 14450 0 0 1695018 270572 0 0 1705466 280405 0 0 14995 0 0 856 4607 4648 19535 946 23 9.44326 9.44326 -1107.13 -9.44326 0 0 2.45377e+06 4260.01 0.97 1.05 0.49 -1 -1 0.97 0.232085 0.208729 1164 741 703 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_39.v common 26.52 vpr 67.50 MiB 0.20 14712 -1 -1 1 0.55 -1 -1 37992 -1 -1 161 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69116 22 19 3457 2490 1 2042 213 24 24 576 mult_36 auto 29.8 MiB 5.25 13744 67.5 MiB 1.12 0.02 8.68095 -856.443 -8.68095 8.68095 2.30 0.00519084 0.00467318 0.388562 0.345353 50 25278 35 1.58331e+07 6.62513e+06 1.88759e+06 3277.06 10.87 1.96924 1.76734 58706 454005 -1 19931 28 14109 16368 2595041 596617 0 0 2595041 596617 15089 14356 0 0 131113 119807 0 0 157154 139623 0 0 15090 14446 0 0 1138166 154679 0 0 1138429 153706 0 0 15089 0 0 1011 7968 7399 21003 1322 237 9.61872 9.61872 -1454 -9.61872 0 0 2.26035e+06 3924.22 0.83 1.03 0.28 -1 -1 0.83 0.399964 0.359512 1198 760 722 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_40.v common 23.79 vpr 67.86 MiB 0.20 14708 -1 -1 1 0.48 -1 -1 37784 -1 -1 164 22 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69484 22 19 3531 2547 1 2082 216 24 24 576 mult_36 auto 30.0 MiB 6.02 13938 67.9 MiB 0.66 0.01 8.76111 -788.852 -8.76111 8.76111 1.80 0.00240622 0.00207827 0.182698 0.158871 56 24499 31 1.58331e+07 6.66742e+06 2.03561e+06 3534.04 8.31 1.08469 0.959521 61006 507707 -1 20067 23 13500 15680 2685347 618760 0 0 2685347 618760 14301 13719 0 0 124624 113601 0 0 148810 134224 0 0 14304 13770 0 0 1184942 170416 0 0 1198366 173030 0 0 14301 0 0 831 7518 8097 18578 1424 74 9.45977 9.45977 -1750.04 -9.45977 0 0 2.50747e+06 4353.24 0.94 1.07 0.29 -1 -1 0.94 0.385288 0.348934 1226 779 741 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_41.v common 30.78 vpr 68.35 MiB 0.17 15160 -1 -1 1 0.62 -1 -1 37424 -1 -1 170 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69988 22 19 3634 2616 1 2147 223 24 24 576 mult_36 auto 30.6 MiB 3.52 15854 68.3 MiB 1.38 0.02 8.80625 -920.006 -8.80625 8.80625 2.11 0.0049573 0.00444957 0.428168 0.38012 58 28154 49 1.58331e+07 7.14798e+06 2.08734e+06 3623.85 16.85 2.10176 1.88443 62154 534210 -1 22290 26 12506 14468 2749189 597555 0 0 2749189 597555 13320 12754 0 0 114926 105043 0 0 134289 122246 0 0 13324 12820 0 0 1234346 174817 0 0 1238984 169875 0 0 13320 0 0 841 6016 7613 17884 1213 29 9.31877 9.31877 -1359.36 -9.31877 0 0 2.61600e+06 4541.67 1.24 1.08 0.51 -1 -1 1.24 0.407315 0.371807 1261 798 760 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_42.v common 26.69 vpr 68.94 MiB 0.22 15148 -1 -1 1 0.67 -1 -1 37676 -1 -1 173 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70596 22 19 3708 2673 1 2186 226 24 24 576 mult_36 auto 31.2 MiB 5.63 15681 68.9 MiB 1.14 0.02 8.79525 -907.06 -8.79525 8.79525 1.98 0.00731122 0.00674441 0.394397 0.352173 58 26192 48 1.58331e+07 7.19026e+06 2.08734e+06 3623.85 12.38 2.05145 1.83876 62154 534210 -1 21609 24 14705 16813 2761390 626440 0 0 2761390 626440 15652 14969 0 0 129477 118285 0 0 155438 139446 0 0 15654 15009 0 0 1222322 172129 0 0 1222847 166602 0 0 15652 0 0 975 6432 7433 21435 1192 3 9.54352 9.54352 -1430.8 -9.54352 0 0 2.61600e+06 4541.67 0.78 0.61 0.31 -1 -1 0.78 0.183778 0.165172 1289 817 779 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_43.v common 25.52 vpr 69.10 MiB 0.21 15404 -1 -1 1 0.73 -1 -1 37696 -1 -1 178 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 70756 22 19 3810 2741 1 2253 231 24 24 576 mult_36 auto 31.3 MiB 3.72 16164 69.1 MiB 0.73 0.01 8.9445 -909.833 -8.9445 8.9445 1.45 0.00279737 0.00245241 0.207685 0.182417 58 27044 44 1.58331e+07 7.26073e+06 2.08734e+06 3623.85 13.03 2.04241 1.83311 62154 534210 -1 22173 25 14106 16356 3319452 736936 0 0 3319452 736936 15105 14381 0 0 134447 123592 0 0 159636 143521 0 0 15111 14467 0 0 1505004 218234 0 0 1490149 222741 0 0 15105 0 0 1026 7373 7737 20943 1296 165 9.37367 9.37367 -1454.81 -9.37367 0 0 2.61600e+06 4541.67 1.01 1.10 0.30 -1 -1 1.01 0.336404 0.301597 1323 836 798 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_44.v common 22.59 vpr 69.47 MiB 0.13 15540 -1 -1 1 0.56 -1 -1 38292 -1 -1 181 22 0 12 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71140 22 19 3884 2798 1 2294 234 24 24 576 mult_36 auto 31.8 MiB 4.98 15940 69.5 MiB 0.78 0.01 8.84631 -887.82 -8.84631 8.84631 1.43 0.00343021 0.00303523 0.213027 0.184872 60 25684 30 1.58331e+07 7.30301e+06 2.13333e+06 3703.69 9.17 1.47473 1.30222 62730 548095 -1 21669 24 13152 14942 2974216 668041 0 0 2974216 668041 14048 13368 0 0 125675 116472 0 0 145411 132886 0 0 14052 13458 0 0 1348281 194320 0 0 1326749 197537 0 0 14048 0 0 922 5805 5338 18911 950 43 9.22651 9.22651 -1379.23 -9.22651 0 0 2.67122e+06 4637.53 0.86 0.63 0.37 -1 -1 0.86 0.190235 0.170918 1351 855 817 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_45.v common 23.71 vpr 69.53 MiB 0.24 15796 -1 -1 1 0.63 -1 -1 39884 -1 -1 186 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71200 22 19 3989 2869 1 2359 240 24 24 576 mult_36 auto 31.8 MiB 5.24 16859 69.5 MiB 0.80 0.01 8.90724 -916.022 -8.90724 8.90724 2.23 0.00285561 0.00251358 0.22878 0.20033 64 26636 33 1.58331e+07 7.76948e+06 2.26035e+06 3924.22 9.49 1.37683 1.22225 64454 586630 -1 22516 24 12932 14957 2821484 637264 0 0 2821484 637264 13856 13120 0 0 120757 110555 0 0 145713 131223 0 0 13862 13234 0 0 1265211 186433 0 0 1262085 182699 0 0 13856 0 0 946 6614 6822 18965 1163 146 9.28757 9.28757 -1288.1 -9.28757 0 0 2.84938e+06 4946.85 0.87 0.67 0.37 -1 -1 0.87 0.211116 0.190624 1387 874 836 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_46.v common 28.42 vpr 70.14 MiB 0.16 15956 -1 -1 1 0.77 -1 -1 39872 -1 -1 189 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71820 22 19 4063 2926 1 2398 243 24 24 576 mult_36 auto 32.4 MiB 6.52 17948 70.1 MiB 1.27 0.02 9.40056 -947.004 -9.40056 9.40056 2.01 0.00579361 0.00512028 0.399092 0.351902 62 29925 29 1.58331e+07 7.81177e+06 2.19658e+06 3813.51 11.51 2.11275 1.89724 63306 560109 -1 23881 23 13619 15646 2728571 603400 0 0 2728571 603400 14554 13770 0 0 130598 120232 0 0 148246 136047 0 0 14557 13871 0 0 1219720 161533 0 0 1200896 157947 0 0 14554 0 0 958 6388 6768 19817 1138 45 9.64467 9.64467 -1639.71 -9.64467 0 0 2.72095e+06 4723.87 1.22 1.02 0.53 -1 -1 1.22 0.375063 0.340896 1414 893 855 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_47.v common 22.93 vpr 70.61 MiB 0.24 16328 -1 -1 1 0.51 -1 -1 40180 -1 -1 194 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72308 22 19 4167 2996 1 2465 248 24 24 576 mult_36 auto 33.0 MiB 6.15 17017 70.6 MiB 0.82 0.01 8.9976 -923.78 -8.9976 8.9976 1.44 0.00309296 0.00271197 0.231185 0.202702 60 27718 30 1.58331e+07 7.88224e+06 2.13333e+06 3703.69 8.39 1.1787 1.03978 62730 548095 -1 22925 24 12311 14280 2803242 639509 0 0 2803242 639509 13132 12472 0 0 119084 109707 0 0 135725 125110 0 0 13135 12565 0 0 1263827 188874 0 0 1258339 190781 0 0 13132 0 0 845 5835 6574 17614 1206 11 9.59747 9.59747 -1539.76 -9.59747 0 0 2.67122e+06 4637.53 0.78 1.05 0.48 -1 -1 0.78 0.398217 0.360917 1449 912 874 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_48.v common 24.49 vpr 70.76 MiB 0.18 16428 -1 -1 1 0.68 -1 -1 40240 -1 -1 197 22 0 13 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72456 22 19 4241 3053 1 2504 251 24 24 576 mult_36 auto 33.2 MiB 6.93 17669 70.8 MiB 1.12 0.02 8.9445 -1012.84 -8.9445 8.9445 1.91 0.00514476 0.00451534 0.340137 0.299101 62 28570 31 1.58331e+07 7.92452e+06 2.19658e+06 3813.51 7.62 1.45157 1.28787 63306 560109 -1 23358 23 13503 15334 2364866 545916 0 0 2364866 545916 14401 13620 0 0 126770 116758 0 0 144257 132921 0 0 14405 13682 0 0 1015669 138953 0 0 1049364 129982 0 0 14401 0 0 928 6001 5646 19475 1005 295 8.98402 8.98402 -1596.61 -8.98402 0 0 2.72095e+06 4723.87 1.22 0.93 0.55 -1 -1 1.22 0.322322 0.291449 1477 931 893 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_49.v common 34.27 vpr 71.18 MiB 0.21 16860 -1 -1 1 0.76 -1 -1 40560 -1 -1 204 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 72892 22 19 4346 3124 1 2572 259 24 24 576 mult_36 auto 33.7 MiB 7.23 17642 71.2 MiB 1.64 0.02 9.0698 -922.225 -9.0698 9.0698 2.30 0.00772251 0.00689332 0.522493 0.467218 58 30104 49 1.58331e+07 8.41918e+06 2.08734e+06 3623.85 14.72 2.21139 1.96865 62154 534210 -1 24633 23 15997 18549 3230823 742052 0 0 3230823 742052 17127 16309 0 0 149891 137530 0 0 177092 160750 0 0 17130 16422 0 0 1446894 203670 0 0 1422689 207371 0 0 17127 0 0 1158 7610 8416 23146 1503 347 9.45371 9.45371 -1494.6 -9.45371 0 0 2.61600e+06 4541.67 1.24 1.21 0.50 -1 -1 1.24 0.43249 0.391914 1512 950 912 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_50.v common 28.58 vpr 71.55 MiB 0.19 16924 -1 -1 1 0.59 -1 -1 40484 -1 -1 206 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 73268 22 19 4420 3181 1 2611 261 24 24 576 mult_36 auto 34.0 MiB 7.68 18336 71.6 MiB 0.93 0.01 9.11076 -1017 -9.11076 9.11076 1.44 0.00328329 0.00288742 0.256283 0.223795 60 30405 47 1.58331e+07 8.44736e+06 2.13333e+06 3703.69 12.39 1.70745 1.50719 62730 548095 -1 24968 24 13915 16364 3081808 678920 0 0 3081808 678920 14958 14069 0 0 132013 121163 0 0 151817 139627 0 0 14962 14215 0 0 1369591 193714 0 0 1398467 196132 0 0 14958 0 0 1070 7531 7728 20729 1464 99 9.36567 9.36567 -1641.82 -9.36567 0 0 2.67122e+06 4637.53 0.81 0.69 0.42 -1 -1 0.81 0.219812 0.197156 1541 969 931 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_51.v common 30.61 vpr 72.29 MiB 0.23 17280 -1 -1 1 0.75 -1 -1 40568 -1 -1 211 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74024 22 19 4524 3251 1 2680 266 24 24 576 mult_36 auto 34.8 MiB 7.45 20504 72.3 MiB 1.42 0.01 9.1229 -1058 -9.1229 9.1229 2.28 0.00342404 0.00300731 0.433427 0.381833 64 31638 44 1.58331e+07 8.51783e+06 2.26035e+06 3924.22 12.26 2.48255 2.21459 64454 586630 -1 26919 22 13444 15561 3181973 698261 0 0 3181973 698261 14385 13666 0 0 132429 121724 0 0 153159 140924 0 0 14388 13773 0 0 1442820 201630 0 0 1424792 206544 0 0 14385 0 0 967 6371 7613 19848 1233 24 9.25032 9.25032 -1725.68 -9.25032 0 0 2.84938e+06 4946.85 0.87 0.70 0.34 -1 -1 0.87 0.213906 0.192222 1576 988 950 19 0 0 +k6_frac_uripple_N8_22nm.xml fir_nopipe_52.v common 29.28 vpr 72.31 MiB 0.24 17368 -1 -1 1 0.67 -1 -1 38916 -1 -1 215 22 0 14 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 74044 22 19 4598 3308 1 2717 270 24 24 576 mult_36 auto 34.7 MiB 6.54 18601 72.3 MiB 0.96 0.01 8.97446 -1039.07 -8.97446 8.97446 1.44 0.00338537 0.00296694 0.259869 0.226308 58 30901 47 1.58331e+07 8.57421e+06 2.08734e+06 3623.85 13.27 1.59333 1.40347 62154 534210 -1 25023 22 15497 18202 3107801 718145 0 0 3107801 718145 16629 15784 0 0 144659 132774 0 0 172787 156216 0 0 16630 15843 0 0 1375153 200132 0 0 1381943 197396 0 0 16629 0 0 1158 9120 9013 22467 1695 469 9.59137 9.59137 -1943.03 -9.59137 0 0 2.61600e+06 4541.67 0.98 1.19 0.49 -1 -1 0.98 0.456183 0.414602 1605 1007 969 19 0 0 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt index f4336ce4abf..a65ebf78df0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt @@ -1,41 +1,41 @@ - arch circuit script_params vtr_flow_elapsed_time error odin_synth_time max_odin_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_time placed_wirelength_est place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time placement_technique reward uniform_percentage median_percentage wmedian_percentage wcent_percentage fr_percentage critUni_percentage centroid_percentage - k4_n4_v7_bidir.xml alu4.blif common 11.07 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 52840 14 8 1536 1544 0 1091 497 24 24 576 clb auto 0.26 14211 1.00 0.01 13.0983 -94.4664 -13.0983 nan 0.83 0.00163744 0.00115747 0.19781 0.139042 28 20574 40 1.452e+07 1.425e+07 -1 -1 5.64 0.948771 0.736113 19680 18 7047 26040 2129119 195146 15.7251 nan -112.343 -15.7251 0 0 -1 -1 0.47 0.70 0.223402 0.193943 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml apex2.blif common 14.19 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 62176 38 3 1916 1919 0 1509 641 27 27 729 clb auto 0.42 19833 1.40 0.01 14.9213 -43.761 -14.9213 nan 1.03 0.00190804 0.00129682 0.234982 0.163356 31 29272 26 1.875e+07 1.8e+07 -1 -1 7.57 0.883645 0.671334 27789 19 10539 35881 3312448 286512 17.7762 nan -51.8034 -17.7762 0 0 -1 -1 0.49 0.57 0.118345 0.10146 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml apex4.blif common 13.73 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 50704 9 19 1271 1290 0 990 436 23 23 529 clb auto 0.19 13403 0.78 0.01 12.7596 -207.869 -12.7596 nan 0.75 0.00125477 0.000907351 0.138847 0.103842 31 21201 42 1.323e+07 1.224e+07 -1 -1 8.96 0.94684 0.7591 19825 24 8365 30838 3221816 263579 15.6767 nan -258.154 -15.6767 0 0 -1 -1 0.47 0.73 0.142195 0.119483 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml bigkey.blif common 18.93 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 64944 229 197 2152 2349 1 1587 882 29 29 841 io auto 0.25 12773 1.90 0.01 8.11566 -1837.61 -8.11566 8.11566 1.30 0.00288529 0.00234879 0.369948 0.287182 18 19196 34 2.187e+07 1.368e+07 -1 -1 12.02 1.84018 1.4871 17779 16 8151 22689 1483562 163143 9.34562 9.34562 -2384.44 -9.34562 0 0 -1 -1 0.32 0.34 0.110551 0.0965953 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml clma.blif common 282.88 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 213532 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 1.59 108145 14.81 0.11 27.1133 -1300.25 -27.1133 27.1133 8.57 0.0143389 0.00908322 2.1185 1.38834 39 144124 45 7.803e+07 7.569e+07 -1 -1 233.38 10.9206 8.01586 154835 39 51213 180936 57671903 5731305 44.064 44.064 -2251 -44.064 0 0 -1 -1 3.23 9.65 1.37473 1.06846 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml des.blif common 17.66 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 73620 256 245 1847 2092 0 1443 950 34 34 1156 io auto 0.45 16400 1.82 0.01 12.9518 -2228.4 -12.9518 nan 1.83 0.00268244 0.0020762 0.345739 0.271564 20 23560 29 3.072e+07 1.347e+07 -1 -1 8.28 1.30769 1.094 22541 42 9845 33221 2975131 290011 16.7767 nan -2864.22 -16.7767 0 0 -1 -1 0.73 0.75 0.269897 0.232891 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml diffeq.blif common 12.09 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 53440 64 39 1935 1974 1 1104 519 23 23 529 clb auto 0.25 9904 0.94 0.01 10.2214 -2370.11 -10.2214 10.2214 0.70 0.00181829 0.00132982 0.202734 0.14876 24 14138 24 1.323e+07 1.248e+07 -1 -1 7.63 1.29563 1.02155 13608 20 6885 22692 1450938 147188 13.2451 13.2451 -3039.56 -13.2451 0 0 -1 -1 0.25 0.42 0.159712 0.136108 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml dsip.blif common 14.77 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 60884 229 197 1815 2012 1 1190 816 29 29 841 io auto 0.28 11657 1.51 0.01 9.26809 -1990.62 -9.26809 9.26809 1.25 0.00217039 0.00173776 0.287064 0.230282 18 17581 46 2.187e+07 1.17e+07 -1 -1 8.53 0.934098 0.787897 15603 13 6163 18775 1285701 138057 11.1252 11.1252 -2522.76 -11.1252 0 0 -1 -1 0.33 0.27 0.0815293 0.0727934 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml elliptic.blif common 31.45 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 98644 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 0.59 31225 3.09 0.03 19.1878 -11126 -19.1878 19.1878 1.86 0.00447829 0.00356697 0.630414 0.422614 31 43559 30 3.072e+07 2.988e+07 -1 -1 19.12 3.42581 2.62884 41263 19 11379 51547 4559102 384283 22.8979 22.8979 -13923.9 -22.8979 0 0 -1 -1 0.90 1.21 0.401269 0.336794 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml ex1010.blif common 46.04 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 126272 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 0.75 46089 5.22 0.05 26.0539 -248.208 -26.0539 nan 2.89 0.00559803 0.00434192 0.778777 0.466372 29 71455 36 4.563e+07 4.5e+07 -1 -1 26.47 3.87955 2.81999 69776 39 31271 128361 15356572 1379781 36.3794 nan -343.568 -36.3794 0 0 -1 -1 1.28 2.80 0.595526 0.469545 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml ex5p.blif common 8.65 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 44992 8 63 1072 1135 0 907 417 21 21 441 clb auto 0.26 11820 0.71 0.01 11.8238 -534.303 -11.8238 nan 0.55 0.00114058 0.000846698 0.126256 0.095118 31 17675 33 1.083e+07 1.038e+07 -1 -1 5.05 0.514905 0.403248 16709 21 7866 27344 2620945 231128 14.6224 nan -690.625 -14.6224 0 0 -1 -1 0.24 0.39 0.0706941 0.0595025 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml frisc.blif common 36.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 100508 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 0.69 38045 3.22 0.03 23.0239 -12398.7 -23.0239 23.0239 1.95 0.00418714 0.0033667 0.613618 0.414262 35 55104 29 3.267e+07 3.138e+07 -1 -1 21.43 2.3605 1.76317 56773 31 18064 80456 15682592 1456397 30.9394 30.9394 -17857.8 -30.9394 0 0 -1 -1 1.27 3.05 0.51405 0.419442 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml misex3.blif common 10.13 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 53136 14 14 1411 1425 0 1075 460 23 23 529 clb auto 0.25 13755 0.85 0.01 12.5326 -153.272 -12.5326 nan 0.70 0.00142164 0.00100096 0.154925 0.113149 31 20019 23 1.323e+07 1.296e+07 -1 -1 5.74 0.623678 0.480528 18881 16 6769 23892 2010630 184078 16.099 nan -189.126 -16.099 0 0 -1 -1 0.39 0.46 0.113986 0.0992255 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml pdc.blif common 252.82 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 132952 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 0.99 70226 5.61 0.05 23.2426 -822.618 -23.2426 nan 3.17 0.00662038 0.0040819 0.91238 0.557766 43 109241 49 4.8e+07 4.587e+07 -1 -1 232.22 5.087 3.64539 94225 19 24198 100758 12509943 967765 27.7283 nan -987.788 -27.7283 0 0 -1 -1 1.93 2.18 0.378667 0.306827 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml s298.blif common 13.75 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 62080 4 6 1942 1948 1 1189 579 26 26 676 clb auto 0.24 13762 1.14 0.01 19.8236 -154.221 -19.8236 19.8236 0.93 0.00204849 0.00140228 0.233398 0.163917 28 19936 25 1.728e+07 1.707e+07 -1 -1 8.15 1.03864 0.777526 19742 22 7507 40891 3217680 264674 23.2248 23.2248 -193.321 -23.2248 0 0 -1 -1 0.40 0.65 0.148329 0.12236 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml s38417.blif common 59.71 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 146992 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 1.22 47115 6.95 0.06 17.8162 -10115.7 -17.8162 17.8162 3.40 0.00778337 0.0062841 1.13799 0.766608 24 63180 33 5.292e+07 5.205e+07 -1 -1 37.46 4.6845 3.4667 59927 23 28586 92817 6429852 631249 21.038 21.038 -12714 -21.038 0 0 -1 -1 1.22 1.62 0.628862 0.52147 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml s38584.1.blif common 43.90 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 141556 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 1.49 44608 6.95 0.09 13.3433 -8858.5 -13.3433 13.3433 3.18 0.0093468 0.00601706 1.18703 0.778996 24 58293 41 5.043e+07 4.941e+07 -1 -1 20.25 3.73828 2.77332 54993 16 21450 63838 4297205 440419 15.42 15.42 -10990.6 -15.42 0 0 -1 -1 1.16 1.16 0.500868 0.429515 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml seq.blif common 16.16 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 60288 41 35 1791 1826 0 1383 615 26 26 676 clb auto 0.48 18138 2.29 0.02 14.1803 -411.194 -14.1803 nan 1.51 0.00499693 0.00332819 0.498046 0.347195 31 26878 32 1.728e+07 1.617e+07 -1 -1 8.02 1.34549 1.0195 25446 19 9067 30778 2790607 244334 16.5135 nan -486.65 -16.5135 0 0 -1 -1 0.42 0.48 0.106861 0.0899019 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml spla.blif common 54.36 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 108256 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 0.78 47643 6.05 0.06 19.051 -639.357 -19.051 nan 2.35 0.0129338 0.0103206 1.3129 0.87499 39 70731 43 3.888e+07 3.696e+07 -1 -1 34.78 3.44374 2.44148 75109 45 24531 104991 24569363 2309193 34.5888 nan -1084.82 -34.5888 0 0 -1 -1 1.40 3.67 0.519928 0.410292 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_bidir.xml tseng.blif common 5.90 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 41344 52 122 1483 1605 1 736 453 19 19 361 clb auto 0.48 5917 0.70 0.01 9.50835 -2029.54 -9.50835 9.50835 0.47 0.00135774 0.00103547 0.162665 0.1242 20 9220 29 8.67e+06 8.37e+06 -1 -1 2.21 0.459077 0.368366 9689 29 5363 17968 1399465 158160 16.9333 16.9333 -3339.36 -16.9333 0 0 -1 -1 0.20 0.29 0.102864 0.0874592 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml alu4.blif common 16.90 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 64312 14 8 1536 1544 0 1091 497 24 24 576 clb auto 0.37 14048 1.00 0.01 16.7593 -122.298 -16.7593 nan 1.84 0.00172724 0.00117793 0.191324 0.135141 21 16257 49 1.452e+07 1.425e+07 -1 -1 9.36 0.675865 0.51249 13977 15 6760 26718 1680290 293381 18.256 nan -133.685 -18.256 0 0 -1 -1 0.45 0.49 0.0883869 0.0735863 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml apex2.blif common 38.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 78040 38 3 1916 1919 0 1509 641 27 27 729 clb auto 0.36 21062 1.43 0.01 26.8632 -72.0679 -26.8632 nan 1.58 0.00196071 0.00134348 0.243504 0.170356 25 24266 43 1.875e+07 1.8e+07 -1 -1 29.88 0.947941 0.719925 21310 16 8912 32135 3158305 469266 28.6605 nan -77.591 -28.6605 0 0 -1 -1 0.66 0.66 0.105255 0.0902418 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml apex4.blif common 57.21 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 59076 9 19 1271 1290 0 990 436 23 23 529 clb auto 0.22 13548 0.86 0.01 16.0406 -255.562 -16.0406 nan 1.11 0.00127169 0.000931923 0.151719 0.11311 24 16662 46 1.323e+07 1.224e+07 -1 -1 51.67 0.621207 0.480607 13903 17 7254 26390 2665052 368809 17.3954 nan -278.694 -17.3954 0 0 -1 -1 0.44 0.49 0.0673342 0.0578407 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml bigkey.blif common 48.11 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 80760 229 197 2152 2349 1 1587 882 29 29 841 io auto 0.26 12712 1.84 0.02 9.6961 -2283.15 -9.6961 9.6961 1.93 0.00283321 0.00231613 0.351032 0.274016 12 12628 44 2.187e+07 1.368e+07 -1 -1 38.97 1.30882 1.05907 11505 13 7425 20802 1091223 212784 11.2829 11.2829 -2691.87 -11.2829 0 0 -1 -1 0.42 0.33 0.0903187 0.0790532 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml clma.blif common 291.21 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 261540 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 1.56 105013 16.60 0.11 41.0672 -1745.15 -41.0672 41.0672 8.16 0.0145096 0.00906988 2.3604 1.54313 31 115771 49 7.803e+07 7.569e+07 -1 -1 235.52 8.05413 5.86319 99930 14 35958 132477 13716687 2161138 43.3998 43.3998 -2048.94 -43.3998 0 0 -1 -1 5.91 3.79 0.715778 0.600224 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml des.blif common 38.33 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 91100 256 245 1847 2092 0 1443 950 34 34 1156 io auto 0.32 16748 1.82 0.02 17.1436 -2958.43 -17.1436 nan 2.85 0.00262928 0.00206182 0.34331 0.270781 14 17753 44 3.072e+07 1.347e+07 -1 -1 26.62 0.9187 0.754154 16257 15 8632 27599 2145856 364356 17.9159 nan -3260.11 -17.9159 0 0 -1 -1 0.64 0.55 0.136648 0.12077 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml diffeq.blif common 10.08 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 59988 64 39 1935 1974 1 1104 519 23 23 529 clb auto 0.24 9968 1.01 0.01 11.8412 -2944.96 -11.8412 11.8412 1.07 0.00187762 0.00135008 0.220374 0.160566 17 10173 31 1.323e+07 1.248e+07 -1 -1 4.69 0.597832 0.461069 9418 17 6805 22648 1705941 296791 12.841 12.841 -3293.23 -12.841 0 0 -1 -1 0.29 0.38 0.094041 0.0788423 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml dsip.blif common 18.11 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 75068 229 197 1815 2012 1 1190 816 29 29 841 io auto 0.28 11718 1.56 0.02 9.21374 -2166.18 -9.21374 9.21374 1.90 0.00212664 0.00168601 0.296182 0.236119 13 11308 29 2.187e+07 1.17e+07 -1 -1 9.94 0.860087 0.715734 10707 12 5721 19278 1121555 229860 10.6804 10.6804 -2588 -10.6804 0 0 -1 -1 0.38 0.30 0.0773555 0.0685494 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml elliptic.blif common 124.08 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 115740 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 0.60 31473 3.09 0.03 25.5738 -14255.6 -25.5738 25.5738 2.75 0.00554678 0.00363479 0.645904 0.427987 24 32832 35 3.072e+07 2.988e+07 -1 -1 108.28 2.97488 2.19288 29881 14 11165 48425 4507742 675341 27.6272 27.6272 -16425.8 -27.6272 0 0 -1 -1 1.52 1.30 0.309968 0.244608 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml ex1010.blif common 54.37 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 150176 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 1.23 45167 5.80 0.05 32.6168 -318.311 -32.6168 nan 4.91 0.00797213 0.00426928 0.901405 0.542589 22 49590 47 4.563e+07 4.5e+07 -1 -1 27.09 2.77298 1.9221 44774 17 24527 94907 5869066 971713 35.9202 nan -344.114 -35.9202 0 0 -1 -1 1.69 1.97 0.405456 0.315432 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml ex5p.blif common 31.86 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 52008 8 63 1072 1135 0 907 417 21 21 441 clb auto 0.27 11704 0.77 0.01 14.6293 -646.263 -14.6293 nan 0.87 0.00114989 0.000853542 0.140532 0.105309 24 13924 42 1.083e+07 1.038e+07 -1 -1 27.15 0.486424 0.373419 11874 19 7049 24199 2141610 331895 15.5054 nan -710.699 -15.5054 0 0 -1 -1 0.34 0.41 0.0643652 0.055439 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml frisc.blif common 111.39 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 114956 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 0.74 37944 3.68 0.03 26.4877 -15148.6 -26.4877 26.4877 3.48 0.00454083 0.00354357 0.713225 0.465896 28 40478 28 3.267e+07 3.138e+07 -1 -1 91.14 3.08786 2.29342 37401 17 13876 59978 6263830 1029258 27.9124 27.9124 -16694.9 -27.9124 0 0 -1 -1 1.95 2.11 0.493812 0.425118 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml misex3.blif common 20.98 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 61160 14 14 1411 1425 0 1075 460 23 23 529 clb auto 0.40 13634 0.89 0.01 14.4458 -186.524 -14.4458 nan 1.12 0.00141281 0.00100658 0.164447 0.119604 23 16607 49 1.323e+07 1.296e+07 -1 -1 14.47 0.730921 0.549857 14237 18 8434 30019 3292468 587668 15.9992 nan -209.047 -15.9992 0 0 -1 -1 0.42 0.64 0.0814511 0.0676548 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml pdc.blif common 420.57 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 167056 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 1.01 70023 5.69 0.04 29.2234 -992.775 -29.2234 nan 4.81 0.00714875 0.00426905 0.874359 0.536331 36 81743 36 4.8e+07 4.587e+07 -1 -1 387.55 3.68045 2.58418 75575 22 28841 117618 31658833 7073349 34.4499 nan -1181.19 -34.4499 0 0 -1 -1 2.72 7.43 0.519387 0.402468 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml s298.blif common 21.45 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 69668 4 6 1942 1948 1 1189 579 26 26 676 clb auto 0.34 13861 1.19 0.01 25.4721 -187.068 -25.4721 25.4721 1.52 0.00249359 0.00157851 0.253443 0.17329 18 15128 44 1.728e+07 1.707e+07 -1 -1 13.94 0.868343 0.635276 13761 17 7573 36478 2668702 349351 26.7915 26.7915 -205.146 -26.7915 0 0 -1 -1 0.44 0.59 0.107721 0.0899265 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml s38417.blif common 76.98 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 180640 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 1.69 46742 7.42 0.06 21.3047 -12732.5 -21.3047 21.3047 6.84 0.0097459 0.00627782 1.30016 0.84304 17 43605 49 5.292e+07 5.205e+07 -1 -1 42.11 4.03157 2.95932 41528 21 28494 91246 7324401 1369034 23.5956 23.5956 -15237.3 -23.5956 0 0 -1 -1 1.45 2.21 0.655959 0.530626 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml s38584.1.blif common 56.94 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 185528 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 1.22 44295 7.18 0.08 18.2092 -11848 -18.2092 18.2092 5.56 0.0118219 0.00827303 1.23875 0.803856 19 43502 40 5.043e+07 4.941e+07 -1 -1 27.71 4.53627 3.40653 38245 15 19606 60447 3646831 640242 19.9023 19.9023 -13529.4 -19.9023 0 0 -1 -1 1.61 1.32 0.502175 0.428801 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml seq.blif common 28.15 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 72024 41 35 1791 1826 0 1383 615 26 26 676 clb auto 0.36 18151 1.37 0.01 18.4145 -509.727 -18.4145 nan 1.50 0.00191208 0.00128502 0.243906 0.167286 24 21362 47 1.728e+07 1.617e+07 -1 -1 20.23 0.755415 0.55902 18351 15 8660 31019 2621080 393638 19.5631 nan -555.43 -19.5631 0 0 -1 -1 0.61 0.59 0.0982973 0.0848008 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml spla.blif common 295.96 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 137320 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 0.80 48919 4.05 0.04 26.047 -874.222 -26.047 nan 3.84 0.00508008 0.00305798 0.62191 0.384869 32 54167 39 3.888e+07 3.696e+07 -1 -1 271.63 2.80249 1.99807 51048 22 22299 94467 16101210 3005556 29.7522 nan -1021.67 -29.7522 0 0 -1 -1 1.91 4.13 0.596449 0.485386 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 - k4_n4_v7_l1_bidir.xml tseng.blif common 12.16 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 47848 52 122 1483 1605 1 736 453 19 19 361 clb auto 0.17 5907 0.71 0.01 9.74872 -2405.86 -9.74872 9.74872 0.67 0.0014311 0.00107726 0.164537 0.125294 14 6679 40 8.67e+06 8.37e+06 -1 -1 8.59 0.687461 0.551289 5676 16 4487 15915 921732 182635 10.8554 10.8554 -3107.32 -10.8554 0 0 -1 -1 0.15 0.23 0.0691939 0.0597474 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_n4_v7_bidir.xml alu4.blif common 12.93 vpr 57.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59380 14 8 1536 1544 0 1091 497 24 24 576 clb auto 20.5 MiB 0.35 14174 58.0 MiB 0.69 0.01 13.4464 -91.906 -13.4464 nan 0.99 0.00197045 0.00171146 0.1415 0.125455 28 20463 28 1.452e+07 1.425e+07 -1 -1 6.68 0.819332 0.704049 21174 279108 -1 19598 19 6807 25919 2078035 194779 0 0 2078035 194779 15373 10550 0 0 29131 25944 0 0 45655 30105 0 0 48196 22207 0 0 998095 52431 0 0 941585 53542 0 0 15373 0 0 11078 109655 107247 331954 11386 3093 16.2751 nan -109.855 -16.2751 0 0 -1 -1 0.60 0.73 0.18 -1 -1 0.60 0.205871 0.183458 +k4_n4_v7_bidir.xml apex2.blif common 24.63 vpr 61.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62796 38 3 1916 1919 0 1509 641 27 27 729 clb auto 23.5 MiB 0.46 19839 61.3 MiB 1.65 0.02 14.9286 -44.0658 -14.9286 nan 2.03 0.00490849 0.00412046 0.342073 0.287132 31 29897 31 1.875e+07 1.8e+07 -1 -1 14.03 2.05729 1.74306 28210 394495 -1 27890 18 10464 35736 3265200 283178 0 0 3265200 283178 29903 16339 0 0 40244 35744 0 0 61669 41369 0 0 80355 34066 0 0 1573920 76686 0 0 1479109 78974 0 0 29903 0 0 24685 197688 217231 896136 6630 249 17.6121 nan -52.0326 -17.6121 0 0 -1 -1 0.94 1.05 0.25 -1 -1 0.94 0.257385 0.228628 +k4_n4_v7_bidir.xml apex4.blif common 20.23 vpr 55.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 57324 9 19 1271 1290 0 990 436 23 23 529 clb auto 18.2 MiB 0.27 13522 56.0 MiB 0.50 0.01 12.9459 -210.249 -12.9459 nan 0.85 0.00137474 0.00119032 0.094381 0.0828491 31 21956 40 1.323e+07 1.224e+07 -1 -1 14.61 1.21617 1.05206 20514 283063 -1 19433 19 7640 27441 2865228 238249 0 0 2865228 238249 25285 13813 0 0 30900 27502 0 0 49222 31653 0 0 76261 30154 0 0 1360289 67682 0 0 1323271 67445 0 0 25285 0 0 29476 198667 205876 1051755 2550 560 16.0159 nan -258.937 -16.0159 0 0 -1 -1 0.58 0.66 0.18 -1 -1 0.58 0.115272 0.103103 +k4_n4_v7_bidir.xml bigkey.blif common 22.45 vpr 61.67 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63152 229 197 2152 2349 1 1587 882 29 29 841 io auto 23.8 MiB 0.33 12959 61.7 MiB 1.64 0.01 7.48553 -1803.94 -7.48553 7.48553 2.31 0.00257927 0.00226842 0.304015 0.268905 20 18822 25 2.187e+07 1.368e+07 -1 -1 11.98 2.20869 1.9438 26634 302857 -1 18874 19 8529 25333 1876033 193507 0 0 1876033 193507 13934 10399 0 0 31161 26482 0 0 50002 32564 0 0 43112 23196 0 0 851286 51450 0 0 886538 49416 0 0 13934 0 0 6917 80816 79228 196615 12301 4037 13.497 13.497 -2834.47 -13.497 0 0 -1 -1 0.70 0.87 0.19 -1 -1 0.70 0.354463 0.319745 +k4_n4_v7_bidir.xml clma.blif common 100.15 vpr 162.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 166028 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 80.8 MiB 1.64 106462 156.9 MiB 11.66 0.10 27.3694 -1405.65 -27.3694 27.3694 6.50 0.0131872 0.0108944 1.45874 1.21036 39 139970 28 7.803e+07 7.569e+07 -1 -1 51.45 6.12069 5.06849 121914 1953961 -1 144931 31 48619 167828 39940771 3423139 0 0 39940771 3423139 127336 79736 0 0 191042 168106 0 0 313664 199838 0 0 404795 200009 0 0 19021932 1422009 0 0 19882002 1353441 0 0 127336 0 0 118401 973249 968550 3286447 44995 45725 41.0337 41.0337 -1992.23 -41.0337 0 0 -1 -1 3.51 6.52 0.80 -1 -1 3.51 1.03288 0.877172 +k4_n4_v7_bidir.xml des.blif common 22.29 vpr 60.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61696 256 245 1847 2092 0 1443 950 34 34 1156 io auto 22.6 MiB 0.39 16116 60.2 MiB 1.59 0.01 12.1555 -2310.02 -12.1555 nan 3.43 0.00287245 0.00259734 0.321435 0.289343 20 23642 47 3.072e+07 1.347e+07 -1 -1 8.33 1.61049 1.43891 36518 419916 -1 22570 33 10798 37572 3378704 331305 0 0 3378704 331305 35132 20964 0 0 43843 38573 0 0 74570 45055 0 0 87140 41461 0 0 1535270 94174 0 0 1602749 91078 0 0 35132 0 0 30148 139576 137253 678795 3362 10 16.3314 nan -2877.32 -16.3314 0 0 -1 -1 1.02 1.18 0.28 -1 -1 1.02 0.410536 0.369845 +k4_n4_v7_bidir.xml diffeq.blif common 14.43 vpr 58.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60288 64 39 1935 1974 1 1104 519 23 23 529 clb auto 21.4 MiB 0.21 10612 58.9 MiB 1.04 0.02 11.2136 -2465.35 -11.2136 11.2136 0.92 0.00365958 0.00310677 0.249642 0.210862 24 15154 26 1.323e+07 1.248e+07 -1 -1 8.73 1.3049 1.11443 18402 227975 -1 14571 22 6635 22303 1557986 155357 0 0 1557986 155357 18616 9633 0 0 25799 22432 0 0 42133 26690 0 0 53364 21465 0 0 691822 38517 0 0 726252 36620 0 0 18616 0 0 18142 80816 80173 408262 4469 1644 15.4487 15.4487 -3188.69 -15.4487 0 0 -1 -1 0.49 0.60 0.15 -1 -1 0.49 0.223841 0.197561 +k4_n4_v7_bidir.xml dsip.blif common 18.85 vpr 58.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60312 229 197 1815 2012 1 1190 816 29 29 841 io auto 21.3 MiB 0.31 11338 58.9 MiB 1.99 0.02 6.78424 -1682.3 -6.78424 6.78424 2.26 0.00407534 0.00352197 0.375455 0.327199 18 18194 30 2.187e+07 1.17e+07 -1 -1 8.38 1.50299 1.3315 25794 279159 -1 15867 18 6974 23868 1601609 168766 0 0 1601609 168766 13665 8341 0 0 29511 25150 0 0 47223 30160 0 0 35614 17332 0 0 747782 42942 0 0 727814 44841 0 0 13665 0 0 7600 71637 72136 191940 10761 3393 8.24975 8.24975 -2170.38 -8.24975 0 0 -1 -1 0.65 0.69 0.19 -1 -1 0.65 0.252336 0.226967 +k4_n4_v7_bidir.xml elliptic.blif common 86.64 vpr 78.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 80460 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 41.9 MiB 0.78 31456 78.6 MiB 4.60 0.05 18.9025 -10909.3 -18.9025 18.9025 3.38 0.00918327 0.00807442 0.907521 0.750946 29 50334 48 3.072e+07 2.988e+07 -1 -1 67.99 4.77234 3.99873 43448 604980 -1 45796 24 14035 59384 10157891 928544 0 0 10157891 928544 45109 23366 0 0 68556 60048 0 0 107303 70374 0 0 134089 59464 0 0 4836494 361852 0 0 4966340 353440 0 0 45109 0 0 52561 379686 395718 1589611 16484 11508 27.1986 27.1986 -15880.5 -27.1986 0 0 -1 -1 0.95 1.71 0.24 -1 -1 0.95 0.366436 0.316548 +k4_n4_v7_bidir.xml ex1010.blif common 54.33 vpr 93.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 96024 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 48.2 MiB 1.02 45872 89.4 MiB 6.07 0.05 24.5792 -235.267 -24.5792 nan 5.32 0.006415 0.00538584 0.793132 0.663681 31 65254 20 4.563e+07 4.5e+07 -1 -1 27.66 3.25018 2.71407 64722 929407 -1 63954 18 24216 95771 7055573 666763 0 0 7055573 666763 56961 36111 0 0 109273 95813 0 0 174451 113693 0 0 175534 76141 0 0 3293471 169392 0 0 3245883 175613 0 0 56961 0 0 41588 334322 328232 718151 42383 22554 27.9887 nan -272.755 -27.9887 0 0 -1 -1 1.58 1.58 0.37 -1 -1 1.58 0.369406 0.323913 +k4_n4_v7_bidir.xml ex5p.blif common 12.21 vpr 54.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55976 8 63 1072 1135 0 907 417 21 21 441 clb auto 16.6 MiB 0.24 11634 54.7 MiB 0.43 0.01 11.978 -548.759 -11.978 nan 0.68 0.0011525 0.000985486 0.0747832 0.065051 31 17207 33 1.083e+07 1.038e+07 -1 -1 7.08 0.739789 0.639275 17122 234247 -1 16571 22 8904 31025 3098432 273627 0 0 3098432 273627 28948 17377 0 0 35377 31395 0 0 57187 36143 0 0 89992 34431 0 0 1473287 76095 0 0 1413641 78186 0 0 28948 0 0 29553 151360 160093 816246 2196 77 15.5226 nan -700.83 -15.5226 0 0 -1 -1 0.47 0.79 0.15 -1 -1 0.47 0.149624 0.133676 +k4_n4_v7_bidir.xml frisc.blif common 50.08 vpr 77.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 79744 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 41.2 MiB 0.91 38585 77.9 MiB 2.67 0.03 22.1146 -12365.8 -22.1146 22.1146 3.71 0.00528366 0.00447534 0.475209 0.407038 35 56359 32 3.267e+07 3.138e+07 -1 -1 29.98 2.88268 2.43689 50922 772933 -1 57324 25 16993 76342 16168415 1581856 0 0 16168415 1581856 62435 30760 0 0 88133 77267 0 0 145133 90673 0 0 170949 77480 0 0 7697195 661582 0 0 8004570 644094 0 0 62435 0 0 61149 408140 405060 1641874 15662 13138 32.2346 32.2346 -18032.9 -32.2346 0 0 -1 -1 1.88 2.69 0.50 -1 -1 1.88 0.424962 0.369636 +k4_n4_v7_bidir.xml misex3.blif common 22.44 vpr 56.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 58332 14 14 1411 1425 0 1075 460 23 23 529 clb auto 19.3 MiB 0.33 13609 57.0 MiB 0.58 0.01 12.4424 -149.071 -12.4424 nan 0.86 0.00163903 0.0014081 0.114916 0.101379 29 21846 42 1.323e+07 1.296e+07 -1 -1 16.04 1.4815 1.28088 19986 270173 -1 20590 32 9086 30571 4469118 419574 0 0 4469118 419574 24995 16810 0 0 34386 30615 0 0 56986 35644 0 0 78754 39751 0 0 2170985 145882 0 0 2103012 150872 0 0 24995 0 0 21397 128227 141318 518440 6355 168 18.3893 nan -221.934 -18.3893 0 0 -1 -1 0.55 1.16 0.17 -1 -1 0.55 0.234413 0.205353 +k4_n4_v7_bidir.xml pdc.blif common 98.95 vpr 97.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 99388 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 49.3 MiB 0.81 69136 93.3 MiB 7.10 0.05 21.6179 -743.475 -21.6179 nan 4.96 0.00700891 0.00590051 1.01388 0.835457 44 100646 48 4.8e+07 4.587e+07 -1 -1 70.12 4.57502 3.80785 83766 1407084 -1 95600 20 24773 102469 15423308 1166810 0 0 15423308 1166810 74016 39242 0 0 116224 102629 0 0 197984 121917 0 0 214383 84581 0 0 7373680 413621 0 0 7447021 404820 0 0 74016 0 0 73441 716903 740696 2381599 32053 14947 26.1183 nan -906.175 -26.1183 0 0 -1 -1 2.46 2.66 0.57 -1 -1 2.46 0.422895 0.367668 +k4_n4_v7_bidir.xml s298.blif common 25.62 vpr 61.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62724 4 6 1942 1948 1 1189 579 26 26 676 clb auto 23.6 MiB 0.37 13902 61.3 MiB 1.32 0.02 21.2653 -159.337 -21.2653 21.2653 1.75 0.00320531 0.00267168 0.264571 0.223752 24 20305 27 1.728e+07 1.707e+07 -1 -1 16.56 1.41965 1.18851 23472 293888 -1 19274 18 6943 36590 2638267 234017 0 0 2638267 234017 17805 10475 0 0 41752 36688 0 0 65211 42563 0 0 59625 22353 0 0 1226514 61624 0 0 1227360 60314 0 0 17805 0 0 22194 266705 262746 1092478 21066 18873 25.5314 25.5314 -197.336 -25.5314 0 0 -1 -1 0.64 0.88 0.20 -1 -1 0.64 0.228434 0.202045 +k4_n4_v7_bidir.xml s38417.blif common 84.42 vpr 109.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 111656 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 64.0 MiB 1.37 47115 108.9 MiB 10.35 0.07 18.2412 -10727.7 -18.2412 18.2412 7.33 0.0104869 0.00875618 1.67387 1.33366 24 62051 31 5.292e+07 5.205e+07 -1 -1 49.78 5.82268 4.76783 66744 864380 -1 59129 18 26681 84526 5460148 563598 0 0 5460148 563598 64615 36408 0 0 98271 84977 0 0 158580 102786 0 0 183290 79708 0 0 2471241 128411 0 0 2484151 131308 0 0 64615 0 0 45134 233171 226422 823325 21243 27715 21.4718 21.4718 -13370 -21.4718 0 0 -1 -1 1.44 1.45 0.34 -1 -1 1.44 0.547571 0.478136 +k4_n4_v7_bidir.xml s38584.1.blif common 64.64 vpr 106.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 108732 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 62.9 MiB 1.43 45240 105.7 MiB 9.95 0.14 11.9263 -8962.66 -11.9263 11.9263 4.12 0.0204781 0.0166675 1.72119 1.38324 24 61212 36 5.043e+07 4.941e+07 -1 -1 34.07 5.86018 4.81494 63762 824815 -1 56605 22 22572 68759 4884198 488322 0 0 4884198 488322 60772 29939 0 0 80932 69828 0 0 125514 83937 0 0 158536 66964 0 0 2264487 115193 0 0 2193957 122461 0 0 60772 0 0 46050 185857 193259 964282 8427 16272 13.755 13.755 -10762.8 -13.755 0 0 -1 -1 1.40 1.48 0.33 -1 -1 1.40 0.643036 0.561895 +k4_n4_v7_bidir.xml seq.blif common 20.07 vpr 59.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61292 41 35 1791 1826 0 1383 615 26 26 676 clb auto 22.2 MiB 0.41 18103 59.9 MiB 1.49 0.01 14.1718 -400.404 -14.1718 nan 1.82 0.00303307 0.00272398 0.303942 0.259221 31 26761 43 1.728e+07 1.617e+07 -1 -1 10.87 1.46069 1.2527 26172 364912 -1 25314 17 8904 30236 2761081 242974 0 0 2761081 242974 24676 13763 0 0 34465 30361 0 0 52828 35470 0 0 68647 29227 0 0 1342315 65741 0 0 1238150 68412 0 0 24676 0 0 21575 149219 155663 633503 6083 601 16.7189 nan -485.694 -16.7189 0 0 -1 -1 0.78 0.87 0.23 -1 -1 0.78 0.226284 0.202578 +k4_n4_v7_bidir.xml spla.blif common 66.71 vpr 79.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 81380 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 40.7 MiB 0.98 48512 77.6 MiB 5.03 0.03 19.8708 -663.452 -19.8708 nan 4.51 0.00544925 0.00460716 0.802941 0.666385 39 73127 49 3.888e+07 3.696e+07 -1 -1 41.07 3.28196 2.735 62858 992060 -1 76689 38 24938 108317 27614243 2739526 0 0 27614243 2739526 76714 49943 0 0 122678 108535 0 0 200513 126481 0 0 249994 127773 0 0 13332877 1176574 0 0 13631467 1150220 0 0 76714 0 0 82252 703135 728328 2244915 37471 5691 37.5659 nan -1175.98 -37.5659 0 0 -1 -1 1.68 4.28 0.40 -1 -1 1.68 0.519453 0.445216 +k4_n4_v7_bidir.xml tseng.blif common 6.22 vpr 55.24 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 56568 52 122 1483 1605 1 736 453 19 19 361 clb auto 17.4 MiB 0.17 6088 55.2 MiB 0.48 0.01 10.2937 -2093.39 -10.2937 10.2937 0.82 0.00138201 0.00118438 0.110916 0.0954812 20 9675 50 8.67e+06 8.37e+06 -1 -1 2.39 0.40655 0.349492 11514 125901 -1 9673 32 5136 17053 1401159 155924 0 0 1401159 155924 14106 8513 0 0 20041 17496 0 0 30847 20533 0 0 41694 20676 0 0 635052 44949 0 0 659419 43757 0 0 14106 0 0 11131 34553 34528 136721 3279 924 15.9977 15.9977 -3144.79 -15.9977 0 0 -1 -1 0.24 0.37 0.08 -1 -1 0.24 0.134475 0.118872 +k4_n4_v7_l1_bidir.xml alu4.blif common 33.56 vpr 57.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 59300 14 8 1536 1544 0 1091 497 24 24 576 clb auto 20.4 MiB 0.31 14281 57.9 MiB 0.78 0.01 17.405 -119.79 -17.405 nan 1.78 0.00184221 0.00161656 0.154632 0.136316 22 16570 35 1.452e+07 1.425e+07 -1 -1 24.39 0.918558 0.789986 39160 271852 -1 14294 17 7016 28109 1977925 330598 0 0 1977925 330598 15326 8868 0 0 31846 28139 0 0 60488 32028 0 0 42915 17650 0 0 915107 121672 0 0 912243 122241 0 0 15326 0 0 9202 236629 247885 514191 13461 9470 18.5804 nan -132.237 -18.5804 0 0 -1 -1 0.71 0.84 0.20 -1 -1 0.71 0.173059 0.154279 +k4_n4_v7_l1_bidir.xml apex2.blif common 37.63 vpr 61.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62788 38 3 1916 1919 0 1509 641 27 27 729 clb auto 23.5 MiB 0.45 20018 61.3 MiB 1.09 0.02 19.526 -55.2387 -19.526 nan 2.20 0.00523962 0.00454581 0.215913 0.18937 24 22361 36 1.875e+07 1.8e+07 -1 -1 26.66 1.40815 1.20568 55250 396047 -1 19916 13 8987 31337 2752007 398559 0 0 2752007 398559 25182 11800 0 0 35578 31350 0 0 67906 35893 0 0 60868 23319 0 0 1290702 143807 0 0 1271771 152390 0 0 25182 0 0 17839 420776 467955 1189438 6915 1684 20.6169 nan -59.9228 -20.6169 0 0 -1 -1 0.94 0.65 0.28 -1 -1 0.94 0.123143 0.112218 +k4_n4_v7_l1_bidir.xml apex4.blif common 79.45 vpr 56.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 57404 9 19 1271 1290 0 990 436 23 23 529 clb auto 18.3 MiB 0.28 13467 56.1 MiB 0.97 0.01 17.1168 -270.116 -17.1168 nan 2.00 0.00260616 0.00216057 0.193008 0.163472 24 16172 34 1.323e+07 1.224e+07 -1 -1 71.42 0.933329 0.794523 39522 283015 -1 13934 23 7236 27503 2867797 366950 0 0 2867797 366950 24414 11077 0 0 31211 27595 0 0 61307 31454 0 0 64430 23333 0 0 1369894 135490 0 0 1316541 138001 0 0 24414 0 0 24153 574618 563683 1758928 3335 2073 18.4157 nan -300.859 -18.4157 0 0 -1 -1 0.50 0.58 0.12 -1 -1 0.50 0.0898418 0.0799685 +k4_n4_v7_l1_bidir.xml bigkey.blif common 56.34 vpr 61.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63116 229 197 2152 2349 1 1587 882 29 29 841 io auto 23.8 MiB 0.23 12931 61.6 MiB 2.55 0.03 11.5134 -2580.62 -11.5134 11.5134 2.88 0.00421654 0.00364254 0.47615 0.412335 12 13164 47 2.187e+07 1.368e+07 -1 -1 44.04 1.61239 1.41322 39906 235943 -1 11855 13 7765 23146 1291955 248188 0 0 1291955 248188 12643 8362 0 0 28505 24092 0 0 49719 28704 0 0 34448 15944 0 0 581487 86144 0 0 585153 84942 0 0 12643 0 0 5333 124609 126725 163069 11277 9582 11.8255 11.8255 -2862.95 -11.8255 0 0 -1 -1 0.44 0.39 0.10 -1 -1 0.44 0.0972249 0.0880432 +k4_n4_v7_l1_bidir.xml clma.blif common 340.15 vpr 206.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 211676 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 80.9 MiB 1.80 104583 206.0 MiB 12.08 0.10 40.1845 -1767.17 -40.1845 40.1845 11.40 0.0136538 0.0113861 1.48842 1.24517 32 105692 33 7.803e+07 7.569e+07 -1 -1 280.19 6.43213 5.33296 274482 2081397 -1 102186 15 40416 150858 23165682 4295349 0 0 23165682 4295349 100109 51082 0 0 171431 151091 0 0 338274 173548 0 0 267727 109583 0 0 11216246 1884669 0 0 11071895 1925376 0 0 100109 0 0 70020 2252605 2258862 4673936 54052 149183 43.3092 43.3092 -2193.45 -43.3092 0 0 -1 -1 4.48 5.31 0.94 -1 -1 4.48 0.622857 0.546404 +k4_n4_v7_l1_bidir.xml des.blif common 49.20 vpr 75.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77004 256 245 1847 2092 0 1443 950 34 34 1156 io auto 22.7 MiB 0.31 16346 75.2 MiB 1.46 0.01 19.6565 -2858.74 -19.6565 nan 4.86 0.00284857 0.00257838 0.283101 0.257273 14 16552 27 3.072e+07 1.347e+07 -1 -1 31.55 1.26213 1.13583 59520 369080 -1 15505 13 7511 24050 1860449 313436 0 0 1860449 313436 22152 10525 0 0 28983 24875 0 0 53359 29212 0 0 48185 20572 0 0 860349 116526 0 0 847421 111726 0 0 22152 0 0 15840 247570 252604 750939 2508 18 21.3793 nan -3183.93 -21.3793 0 0 -1 -1 0.72 0.47 0.17 -1 -1 0.72 0.120924 0.11178 +k4_n4_v7_l1_bidir.xml diffeq.blif common 24.14 vpr 58.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60248 64 39 1935 1974 1 1104 519 23 23 529 clb auto 21.3 MiB 0.33 10465 58.8 MiB 1.18 0.02 11.8225 -2870.74 -11.8225 11.8225 1.89 0.00511196 0.00457381 0.333762 0.28735 18 11160 32 1.323e+07 1.248e+07 -1 -1 14.86 1.37445 1.19204 32130 214167 -1 9789 17 6691 22909 1510953 250707 0 0 1510953 250707 18516 9798 0 0 26296 23083 0 0 49394 26552 0 0 52340 20358 0 0 684926 86132 0 0 679481 84784 0 0 18516 0 0 15930 204242 199035 622517 5035 6553 12.5315 12.5315 -3204.37 -12.5315 0 0 -1 -1 0.58 0.70 0.16 -1 -1 0.58 0.214184 0.191419 +k4_n4_v7_l1_bidir.xml dsip.blif common 23.51 vpr 58.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60396 229 197 1815 2012 1 1190 816 29 29 841 io auto 21.2 MiB 0.34 11724 59.0 MiB 1.32 0.01 9.84842 -2315.87 -9.84842 9.84842 3.44 0.00218157 0.00193177 0.230269 0.204499 13 11503 47 2.187e+07 1.17e+07 -1 -1 10.46 1.16394 1.03964 39906 235943 -1 10908 15 6258 21910 1258931 240379 0 0 1258931 240379 12551 7065 0 0 27236 23215 0 0 47561 27320 0 0 30588 14201 0 0 572530 85636 0 0 568465 82942 0 0 12551 0 0 6519 128245 127399 230946 9836 12901 10.5206 10.5206 -2625.5 -10.5206 0 0 -1 -1 0.68 0.68 0.19 -1 -1 0.68 0.215595 0.19482 +k4_n4_v7_l1_bidir.xml elliptic.blif common 160.00 vpr 88.24 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 90360 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 41.9 MiB 0.82 31289 88.1 MiB 4.69 0.05 24.5087 -13712.9 -24.5087 24.5087 4.92 0.0106927 0.0088657 0.98531 0.811583 24 33336 38 3.072e+07 2.988e+07 -1 -1 137.40 3.62962 3.0277 89088 639360 -1 29972 14 11457 51206 5336173 914779 0 0 5336173 914779 35443 14409 0 0 59947 51878 0 0 111786 60450 0 0 88118 30209 0 0 2531597 371395 0 0 2509282 386438 0 0 35443 0 0 33426 778466 828204 2041062 17548 37702 26.4067 26.4067 -15864.2 -26.4067 0 0 -1 -1 1.27 1.30 0.28 -1 -1 1.27 0.257507 0.227847 +k4_n4_v7_l1_bidir.xml ex1010.blif common 70.32 vpr 121.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 124688 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 48.1 MiB 1.05 45506 121.8 MiB 8.43 0.08 35.0666 -326.901 -35.0666 nan 5.86 0.0118445 0.00914672 1.17524 0.911921 21 50038 50 4.563e+07 4.5e+07 -1 -1 36.85 3.40866 2.78018 118482 826103 -1 44418 14 23834 91894 5561009 959966 0 0 5561009 959966 52411 31278 0 0 104185 91942 0 0 198164 105431 0 0 153125 66213 0 0 2525458 332837 0 0 2527666 332265 0 0 52411 0 0 32691 601081 610030 690604 43113 80630 37.3324 nan -349.905 -37.3324 0 0 -1 -1 1.70 1.68 0.38 -1 -1 1.70 0.310469 0.275438 +k4_n4_v7_l1_bidir.xml ex5p.blif common 27.69 vpr 54.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55832 8 63 1072 1135 0 907 417 21 21 441 clb auto 16.5 MiB 0.23 11821 54.5 MiB 0.87 0.01 15.1106 -656.442 -15.1106 nan 1.77 0.00226083 0.00190398 0.169572 0.145031 25 13896 33 1.083e+07 1.038e+07 -1 -1 19.53 0.952819 0.818796 32642 233591 -1 12126 17 7100 24125 2468264 400747 0 0 2468264 400747 21863 11273 0 0 27575 24438 0 0 54620 27797 0 0 61067 21819 0 0 1169552 154997 0 0 1133587 160423 0 0 21863 0 0 19464 297997 303068 951464 2405 280 16.0274 nan -722.325 -16.0274 0 0 -1 -1 0.61 0.82 0.17 -1 -1 0.61 0.126359 0.113635 +k4_n4_v7_l1_bidir.xml frisc.blif common 126.45 vpr 91.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93328 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 41.2 MiB 0.87 37497 90.9 MiB 5.18 0.05 24.4278 -14825.6 -24.4278 24.4278 3.69 0.011256 0.00924867 1.04417 0.864716 28 40396 33 3.267e+07 3.138e+07 -1 -1 102.22 3.47424 2.8993 103554 761463 -1 37472 16 14545 65250 6748340 1094963 0 0 6748340 1094963 51839 20960 0 0 74784 65913 0 0 147412 75320 0 0 124639 42362 0 0 3180898 442393 0 0 3168768 448015 0 0 51839 0 0 44682 913658 964708 2547867 14341 30993 25.9394 25.9394 -16407.8 -25.9394 0 0 -1 -1 1.53 1.58 0.35 -1 -1 1.53 0.264722 0.233403 +k4_n4_v7_l1_bidir.xml misex3.blif common 40.68 vpr 56.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 58284 14 14 1411 1425 0 1075 460 23 23 529 clb auto 19.2 MiB 0.23 13559 56.9 MiB 0.92 0.01 15.1312 -191.55 -15.1312 nan 2.00 0.00218608 0.00184569 0.194811 0.167757 24 14933 33 1.323e+07 1.296e+07 -1 -1 32.68 1.14987 0.986492 39522 283015 -1 13559 16 6945 25011 1949638 293678 0 0 1949638 293678 19302 9448 0 0 28270 25064 0 0 54963 28521 0 0 49675 18530 0 0 887784 105602 0 0 909644 106513 0 0 19302 0 0 14303 269839 305045 781317 6280 329 16.3426 nan -207.471 -16.3426 0 0 -1 -1 0.51 0.46 0.12 -1 -1 0.51 0.0865513 0.0778952 +k4_n4_v7_l1_bidir.xml pdc.blif common 557.85 vpr 125.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 128012 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 49.2 MiB 1.30 69783 125.0 MiB 6.42 0.05 33.871 -1073.72 -33.871 nan 6.18 0.00699802 0.00589801 0.910004 0.768433 36 78968 41 4.8e+07 4.587e+07 -1 -1 516.51 3.83176 3.19908 183520 1412616 -1 73165 19 26743 110329 30207887 6932804 0 0 30207887 6932804 75914 39272 0 0 124503 110532 0 0 253579 125570 0 0 208587 91070 0 0 14783600 3307687 0 0 14761704 3258673 0 0 75914 0 0 61677 1926991 1935543 4156709 38205 46838 37.0174 nan -1232.06 -37.0174 0 0 -1 -1 3.20 6.83 0.68 -1 -1 3.20 0.436531 0.380246 +k4_n4_v7_l1_bidir.xml s298.blif common 37.58 vpr 61.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62768 4 6 1942 1948 1 1189 579 26 26 676 clb auto 23.7 MiB 0.34 13873 61.3 MiB 1.35 0.02 24.2645 -193.053 -24.2645 24.2645 2.45 0.0041446 0.00341936 0.294175 0.249736 18 15535 42 1.728e+07 1.707e+07 -1 -1 26.17 1.48666 1.26431 41472 276960 -1 13860 17 7610 39805 2906585 379757 0 0 2906585 379757 18689 10053 0 0 45026 39946 0 0 86533 45268 0 0 56155 21208 0 0 1366072 132494 0 0 1334110 130788 0 0 18689 0 0 17799 645846 615458 1654259 22883 60013 25.7713 25.7713 -215.418 -25.7713 0 0 -1 -1 0.76 1.13 0.20 -1 -1 0.76 0.237676 0.211277 +k4_n4_v7_l1_bidir.xml s38417.blif common 66.71 vpr 143.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 147016 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 63.9 MiB 1.38 45823 143.6 MiB 8.73 0.07 22.8839 -12843.2 -22.8839 22.8839 8.40 0.00977925 0.00824865 1.49261 1.21027 17 43163 40 5.292e+07 5.205e+07 -1 -1 23.33 4.23076 3.50425 115248 760028 -1 41128 18 28261 92950 7948381 1518251 0 0 7948381 1518251 69307 37985 0 0 106536 93496 0 0 193523 107704 0 0 190632 80873 0 0 3683204 599873 0 0 3705179 598320 0 0 69307 0 0 44754 719843 771922 1984489 24820 86818 25.14 25.14 -15595.2 -25.14 0 0 -1 -1 1.84 2.24 0.60 -1 -1 1.84 0.559665 0.488111 +k4_n4_v7_l1_bidir.xml s38584.1.blif common 117.02 vpr 140.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 144160 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 63.0 MiB 1.26 43857 140.8 MiB 10.37 0.09 16.7322 -11603.5 -16.7322 16.7322 8.15 0.010904 0.00914326 1.7393 1.40031 18 40982 38 5.043e+07 4.941e+07 -1 -1 77.35 5.61243 4.66345 116850 784767 -1 37635 12 19817 61405 3597315 612912 0 0 3597315 612912 51852 23136 0 0 72468 62331 0 0 125179 73271 0 0 124179 46367 0 0 1626073 193860 0 0 1597564 213947 0 0 51852 0 0 33835 414734 459921 1331434 9898 33449 17.1951 17.1951 -12925.6 -17.1951 0 0 -1 -1 1.62 1.22 0.36 -1 -1 1.62 0.416389 0.371329 +k4_n4_v7_l1_bidir.xml seq.blif common 36.27 vpr 59.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61424 41 35 1791 1826 0 1383 615 26 26 676 clb auto 22.4 MiB 0.30 18265 60.0 MiB 1.69 0.02 17.4129 -521.247 -17.4129 nan 2.62 0.00374591 0.00319704 0.325761 0.272509 25 20249 35 1.728e+07 1.617e+07 -1 -1 25.01 1.43902 1.22664 51072 366016 -1 18520 15 9196 33616 2989180 446006 0 0 2989180 446006 26359 12417 0 0 38313 33765 0 0 73490 38646 0 0 65263 24902 0 0 1401501 167478 0 0 1384254 168798 0 0 26359 0 0 19621 438846 469238 1208589 7716 1628 18.2072 nan -565.551 -18.2072 0 0 -1 -1 0.95 0.69 0.26 -1 -1 0.95 0.12182 0.110706 +k4_n4_v7_l1_bidir.xml spla.blif common 196.97 vpr 106.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 109340 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 40.6 MiB 0.94 47819 106.8 MiB 5.37 0.05 25.6975 -850.101 -25.6975 nan 6.61 0.00868641 0.00714317 0.823337 0.681109 32 53781 33 3.888e+07 3.696e+07 -1 -1 165.70 2.84279 2.37047 138672 1051752 -1 50398 22 20422 87313 14493536 2685062 0 0 14493536 2685062 60340 30084 0 0 98575 87521 0 0 203107 99439 0 0 162715 66046 0 0 7033398 1202081 0 0 6935401 1199891 0 0 60340 0 0 50761 1399051 1395910 3073721 31368 17675 32.7346 nan -1011.41 -32.7346 0 0 -1 -1 2.14 2.98 0.48 -1 -1 2.14 0.325518 0.283942 +k4_n4_v7_l1_bidir.xml tseng.blif common 8.33 vpr 55.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 56548 52 122 1483 1605 1 736 453 19 19 361 clb auto 17.4 MiB 0.19 5903 55.2 MiB 0.44 0.01 9.31933 -2372.61 -9.31933 9.31933 0.76 0.00133135 0.00113349 0.0954906 0.0822718 15 6780 34 8.67e+06 8.37e+06 -1 -1 4.56 0.719686 0.622182 19074 119991 -1 5453 18 4114 14172 662101 126995 0 0 662101 126995 11029 6064 0 0 16827 14628 0 0 29363 16930 0 0 30631 12837 0 0 288032 38497 0 0 286219 38039 0 0 11029 0 0 8003 60771 59632 156668 3426 4185 10.6804 10.6804 -2794.19 -10.6804 0 0 -1 -1 0.20 0.21 0.05 -1 -1 0.20 0.0756839 0.0675885 From ee8b0b5c2cbdee755afd2a0d878002c685e94efd Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 24 Apr 2023 20:53:52 -0400 Subject: [PATCH 76/81] updated golden result for odin test1 and test3 --- .../config/golden_results.txt | 30 ++++++------- .../config/golden_results.txt | 44 +++++++++---------- 2 files changed, 37 insertions(+), 37 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_circuit_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_circuit_list/config/golden_results.txt index 8df9132f128..b2b7ffb508a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_circuit_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_circuit_list/config/golden_results.txt @@ -1,15 +1,15 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml bgm.v common 980.83 vpr 617.22 MiB 24.29 380292 -1 -1 22 480.85 -1 -1 152772 -1 -1 2559 257 0 11 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 632036 257 32 32168 31683 1 18900 2859 61 61 3721 clb auto 292.2 MiB 27.25 255540 584.3 MiB 51.44 0.41 17.6215 -22775.4 -17.6215 17.6215 35.84 0.0676244 0.0599679 7.92979 6.59703 80 390222 31 2.18169e+08 1.42274e+08 2.00267e+07 5382.08 222.90 43.9025 36.5947 365498 20 94763 419629 23340473 3791789 18.9519 18.9519 -25566.3 -18.9519 0 0 2.52656e+07 6790.00 10.31 10.39 4.66914 4.10934 0.1657 0.4532 0.02566 0.5211 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 159.30 vpr 146.02 MiB 0.48 63028 -1 -1 18 86.64 -1 -1 71988 -1 -1 547 36 0 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 149524 36 100 6600 6700 1 2892 683 30 30 900 clb auto 78.8 MiB 3.80 46348 114.2 MiB 3.68 0.04 9.29601 -2541.25 -9.29601 9.29601 2.64 0.0141607 0.0126632 1.2954 1.13944 76 70659 19 4.8774e+07 2.948e+07 4.44306e+06 4936.73 39.66 6.66003 5.72683 65960 15 12412 60185 2779693 359963 10.2484 10.2484 -2908.62 -10.2484 0 0 5.55667e+06 6174.08 1.96 1.39 0.78949 0.717491 0.02471 0.4113 0.04178 0.5469 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 6.41 vpr 63.45 MiB 0.71 47420 -1 -1 2 0.41 -1 -1 41412 -1 -1 84 114 0 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64972 114 193 455 648 1 311 391 13 13 169 clb auto 25.2 MiB 0.07 812 63.4 MiB 0.18 0.00 1.7995 -220.497 -1.7995 1.7995 0.30 0.000612754 0.000555531 0.0497264 0.0454615 36 2431 20 6.63067e+06 4.5271e+06 367804. 2176.36 2.25 0.286514 0.266951 1947 10 752 946 78215 21517 2.47318 2.47318 -276.442 -2.47318 0 0 456028. 2698.39 0.12 0.04 0.0262814 0.0252225 0.005804 0.4612 0.1077 0.4311 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.25 vpr 62.23 MiB 0.04 9660 -1 -1 3 0.24 -1 -1 38428 -1 -1 68 99 1 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 63720 99 130 363 493 1 258 298 12 12 144 clb auto 24.1 MiB 0.07 663 62.2 MiB 0.11 0.00 1.8822 -194.336 -1.8822 1.8822 0.24 0.000362025 0.000323207 0.0277835 0.0249368 46 1554 15 5.66058e+06 4.21279e+06 378970. 2631.74 1.17 0.159807 0.146674 1338 10 535 664 53989 17476 2.37728 2.37728 -235.992 -2.37728 0 0 486261. 3376.82 0.11 0.03 0.0148012 0.0139954 0.008293 0.2268 0.08234 0.6908 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 12.65 vpr 66.14 MiB 0.03 9600 -1 -1 15 0.38 -1 -1 38820 -1 -1 40 162 0 5 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67724 162 96 999 932 1 694 303 16 16 256 mult_36 auto 28.1 MiB 0.23 5322 66.1 MiB 0.34 0.01 19.6096 -1746.99 -19.6096 19.6096 0.53 0.00131179 0.00119416 0.127174 0.115642 48 12619 24 1.21132e+07 4.13576e+06 756778. 2956.16 7.83 0.72127 0.66122 9816 15 3082 6134 1533841 391381 22.3371 22.3371 -2005.48 -22.3371 0 0 968034. 3781.38 0.24 0.30 0.0746635 0.0708063 0.007649 0.3582 0.01718 0.6246 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 11.53 vpr 64.44 MiB 0.02 8716 -1 -1 14 0.26 -1 -1 37784 -1 -1 26 66 0 7 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 66 96 719 590 1 526 195 18 18 324 mult_36 auto 26.4 MiB 0.16 4899 64.4 MiB 0.20 0.00 15.809 -899.495 -15.809 15.809 0.73 0.00109702 0.00100687 0.0844071 0.0770612 40 11350 31 1.57076e+07 4.17324e+06 840073. 2592.82 6.76 0.533404 0.494247 9972 18 2778 6041 2656148 648913 18.3418 18.3418 -1067.38 -18.3418 0 0 1.05274e+06 3249.19 0.29 0.45 0.0672565 0.0636858 0.009022 0.3217 0.01969 0.6586 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 791.98 vpr 502.13 MiB 23.77 219880 -1 -1 129 290.27 -1 -1 98612 -1 -1 2018 114 44 8 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 514184 114 102 29578 29304 1 16035 2286 54 54 2916 clb auto 262.1 MiB 23.49 227724 483.5 MiB 39.85 0.30 70.0264 -59744.6 -70.0264 70.0264 27.27 0.0574192 0.0499987 7.70339 6.30381 100 333375 32 1.70873e+08 1.36042e+08 1.90496e+07 6532.79 262.95 27.7274 22.822 306670 21 61491 243022 41249600 9105554 81.358 81.358 -74066.1 -81.358 -14.9014 -0.296573 2.40310e+07 8241.08 9.59 14.53 4.31758 3.73291 0.1043 0.4232 0.01037 0.5664 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 86.40 vpr 299.57 MiB 0.92 71568 -1 -1 5 8.51 -1 -1 56680 -1 -1 456 506 47 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 306756 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 52.1 MiB 2.48 15478 299.6 MiB 3.16 0.04 7.44169 -1878.33 -7.44169 7.44169 23.55 0.011137 0.0101253 1.50511 1.36461 32 23890 24 1.47946e+08 5.03323e+07 6.04247e+06 2416.99 27.60 5.60152 5.19431 23313 14 3762 5005 3934975 1002932 8.38637 8.38637 -2390.5 -8.38637 -1.39324 -0.196402 7.45580e+06 2982.32 2.85 1.17 0.544473 0.51841 0.1479 0.1395 0.03871 0.8218 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 22.44 vpr 67.93 MiB 0.11 16740 -1 -1 2 0.10 -1 -1 37700 -1 -1 26 311 15 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69560 311 156 972 1128 1 953 508 28 28 784 memory auto 29.7 MiB 0.39 8776 67.9 MiB 0.67 0.01 3.89075 -4078.33 -3.89075 3.89075 2.21 0.00262357 0.00228808 0.28833 0.24771 36 15333 20 4.25198e+07 9.62124e+06 1.94918e+06 2486.20 13.01 1.19607 1.06809 14222 18 3012 3465 2855692 813720 4.3699 4.3699 -4963.77 -4.3699 -15.4964 -0.29768 2.40571e+06 3068.51 0.78 0.65 0.13711 0.126162 0.08427 0.1566 0.01738 0.826 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 20.64 vpr 75.50 MiB 0.28 30324 -1 -1 7 3.02 -1 -1 43716 -1 -1 167 193 5 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77312 193 205 2232 2437 1 1226 570 20 20 400 memory auto 37.8 MiB 0.85 9464 75.5 MiB 0.98 0.01 4.82409 -2740.23 -4.82409 4.82409 0.99 0.0030363 0.00262756 0.342377 0.297511 50 17335 37 2.07112e+07 1.17403e+07 1.26944e+06 3173.59 8.39 1.58452 1.39803 14910 15 4339 10922 846070 194268 5.40212 5.40212 -3167.13 -5.40212 -9.23078 -0.340786 1.63222e+06 4080.54 0.45 0.33 0.186541 0.172752 0.02863 0.2174 0.02557 0.757 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 57.63 vpr 111.89 MiB 0.48 41180 -1 -1 27 5.67 -1 -1 48024 -1 -1 246 385 2 1 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 114576 385 394 3979 4310 1 2376 1028 27 27 729 io auto 52.6 MiB 2.11 31571 89.9 MiB 3.25 0.04 12.7524 -11525.4 -12.7524 12.7524 2.08 0.0082788 0.00752168 1.00978 0.911385 80 50848 37 3.93038e+07 1.47499e+07 3.74040e+06 5130.86 30.02 4.81396 4.34499 45024 14 10281 36302 3252651 627001 13.852 13.852 -13144.9 -13.852 0 0 4.71674e+06 6470.15 1.45 1.11 0.460257 0.430665 0.02336 0.4635 0.02739 0.5091 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 26.42 vpr 77.37 MiB 0.35 33068 -1 -1 8 1.65 -1 -1 44696 -1 -1 135 214 0 9 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79224 214 305 2625 2741 1 1503 663 22 22 484 mult_36 auto 39.6 MiB 0.86 13041 77.4 MiB 1.20 0.01 4.58124 -2447.95 -4.58124 4.58124 1.28 0.00353282 0.00315638 0.391712 0.35074 54 27124 30 2.50602e+07 1.08397e+07 1.67900e+06 3469.01 12.65 1.88349 1.71427 22642 17 6070 13869 3703163 834378 5.17664 5.17664 -3060.81 -5.17664 0 0 2.18083e+06 4505.84 0.64 0.79 0.204208 0.191444 0.02215 0.4832 0.044 0.4728 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 620.27 abc 97.25 MiB 0.86 39064 -1 -1 20 593.68 -1 -1 99584 -1 -1 233 38 0 0 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84728 38 36 3404 3440 1 1306 307 20 20 400 clb auto 46.5 MiB 1.35 14931 82.7 MiB 0.89 0.01 11.3864 -4439.85 -11.3864 11.3864 0.93 0.00431487 0.00379094 0.33675 0.288196 58 25739 41 2.07112e+07 1.25573e+07 1.47096e+06 3677.41 10.13 1.72349 1.45781 21822 14 5553 22071 770650 126196 13.7359 13.7359 -5106.17 -13.7359 0 0 1.87544e+06 4688.60 0.50 0.41 0.261212 0.236459 0.01072 0.3913 0.03124 0.5775 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 9243.85 vpr 1.65 GiB 69.92 925684 -1 -1 76 7423.14 -1 -1 451060 -1 -1 7370 36 159 27 success 9b1abd6-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-5.10.35-v8 x86_64 2022-11-27T23:54:07 gh-actions-runner-vtr-auto-spawned24 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1731508 36 356 134771 133552 1 43112 7948 102 102 10404 clb auto 894.7 MiB 76.13 540144 1683.5 MiB 206.14 1.33 62.3249 -309394 -62.3249 62.3249 106.56 0.175932 0.148878 27.4041 22.4397 88 733931 46 6.36957e+08 4.94984e+08 6.24837e+07 6005.73 840.45 98.7283 81.6934 689222 20 158905 485087 75128480 16222876 68.9889 68.9889 -392449 -68.9889 -0.672583 -0.168146 7.83483e+07 7530.59 33.75 29.74 12.0372 10.6139 0.302 0.3887 0.01336 0.598 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml bgm.v common 800.41 vpr 580.59 MiB 24.29 379656 -1 -1 22 432.84 -1 -1 152396 -1 -1 2559 257 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 594520 257 32 32168 31683 1 18900 2859 61 61 3721 clb auto 285.1 MiB 23.26 253233 580.6 MiB 39.60 0.33 15.7007 -22259.6 -15.7007 15.7007 30.43 0.0669927 0.0537706 7.2301 5.86993 78 401601 49 2.18169e+08 1.42274e+08 1.95891e+07 5264.48 134.80 30.0652 24.9324 467924 4120392 -1 371566 20 97862 434918 25460394 4104197 0 0 25460394 4104197 434918 163770 0 0 631659 535541 0 0 901186 633643 0 0 461892 183568 0 0 11692200 1293690 0 0 11338539 1293985 0 0 434918 0 0 348532 1962960 2054975 14186263 0 0 18.1969 18.1969 -25155.3 -18.1969 0 0 2.48035e+07 6665.81 7.73 9.23 2.76 -1 -1 7.73 3.94573 3.47309 0.1677 0.4523 0.02623 0.5214 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 124.04 vpr 114.57 MiB 0.48 62564 -1 -1 18 75.52 -1 -1 67188 -1 -1 547 36 0 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 117324 36 100 6600 6700 1 2892 683 30 30 900 clb auto 71.1 MiB 3.19 46921 106.8 MiB 4.04 0.04 9.03391 -2674.61 -9.03391 9.03391 2.30 0.0193272 0.0162268 1.67834 1.47155 72 75020 48 4.8774e+07 2.948e+07 4.28420e+06 4760.23 17.56 5.37287 4.67068 107632 872270 -1 67129 14 12764 63969 3034575 393559 0 0 3034575 393559 62683 16297 0 0 86932 64609 0 0 126380 86981 0 0 65400 19178 0 0 1378497 106179 0 0 1314683 100315 0 0 62683 0 0 52556 480582 474877 2723846 1446 156 9.7156 9.7156 -2954.17 -9.7156 0 0 5.36707e+06 5963.41 1.52 1.27 0.57 -1 -1 1.52 0.676237 0.617607 0.02478 0.4043 0.04334 0.5523 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 5.14 vpr 55.98 MiB 0.73 47092 -1 -1 2 0.54 -1 -1 35804 -1 -1 84 114 0 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 57324 114 193 455 648 1 311 391 13 13 169 clb auto 17.5 MiB 0.07 806 56.0 MiB 0.21 0.00 1.77044 -224.083 -1.77044 1.77044 0.28 0.000538998 0.000490672 0.0454844 0.0415085 36 2252 18 6.63067e+06 4.5271e+06 367804. 2176.36 0.68 0.186149 0.173607 14500 70634 -1 1927 12 672 884 68765 18889 0 0 68765 18889 884 728 0 0 2641 2417 0 0 2974 2642 0 0 908 759 0 0 30133 6058 0 0 31225 6285 0 0 884 0 0 212 1117 1239 5716 0 0 2.41199 2.41199 -274.153 -2.41199 0 0 456028. 2698.39 0.10 0.04 0.04 -1 -1 0.10 0.0205206 0.0195082 0.005817 0.451 0.1102 0.4389 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.04 vpr 55.12 MiB 0.05 9248 -1 -1 3 0.24 -1 -1 35636 -1 -1 68 99 1 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 56444 99 130 363 493 1 258 298 12 12 144 clb auto 16.7 MiB 0.06 730 55.1 MiB 0.16 0.00 1.86328 -196.275 -1.86328 1.86328 0.22 0.0005608 0.000489618 0.0291311 0.0259443 50 1577 12 5.66058e+06 4.21279e+06 406292. 2821.48 1.38 0.144841 0.132256 13526 77840 -1 1496 9 503 612 57866 18952 0 0 57866 18952 612 553 0 0 2619 2490 0 0 2859 2620 0 0 630 575 0 0 23272 6684 0 0 27874 6030 0 0 612 0 0 109 136 166 1313 0 0 2.46581 2.46581 -231.6 -2.46581 0 0 520805. 3616.70 0.11 0.03 0.05 -1 -1 0.11 0.0122591 0.0116194 0.00832 0.2557 0.07901 0.6653 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 11.59 vpr 58.77 MiB 0.04 9240 -1 -1 15 0.40 -1 -1 34392 -1 -1 40 162 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60180 162 96 999 932 1 694 303 16 16 256 mult_36 auto 20.5 MiB 0.22 5389 58.8 MiB 0.43 0.01 19.7676 -1782.41 -19.7676 19.7676 0.51 0.00124538 0.00113196 0.144505 0.13178 50 12648 42 1.21132e+07 4.13576e+06 780512. 3048.87 6.53 0.708541 0.655075 25484 153448 -1 9978 17 3114 6384 1919594 506731 0 0 1919594 506731 6384 3918 0 0 77963 76627 0 0 80991 78134 0 0 6838 4323 0 0 847617 167989 0 0 899801 175740 0 0 6384 0 0 3304 9373 8940 55487 0 0 22.5564 22.5564 -2004.38 -22.5564 0 0 1.00276e+06 3917.05 0.22 0.34 0.09 -1 -1 0.22 0.0711376 0.0673561 0.007637 0.3619 0.01676 0.6213 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 10.76 vpr 57.25 MiB 0.03 8532 -1 -1 14 0.37 -1 -1 33272 -1 -1 26 66 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 58628 66 96 719 590 1 526 195 18 18 324 mult_36 auto 18.9 MiB 0.23 4827 57.3 MiB 0.22 0.00 15.6921 -896.753 -15.6921 15.6921 0.78 0.000893904 0.000818269 0.0828432 0.0761803 40 12416 31 1.57076e+07 4.17324e+06 840073. 2592.82 5.08 0.406528 0.379067 30996 167808 -1 10246 17 3235 7078 3823005 906661 0 0 3823005 906661 7078 5332 0 0 127289 126096 0 0 132571 127870 0 0 8046 5861 0 0 1785378 319843 0 0 1762643 321659 0 0 7078 0 0 3862 11838 10946 50552 0 0 17.951 17.951 -1043.72 -17.951 0 0 1.05274e+06 3249.19 0.25 0.58 0.10 -1 -1 0.25 0.0586019 0.0557731 0.00912 0.319 0.01987 0.6611 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 777.91 vpr 478.03 MiB 18.31 218792 -1 -1 129 248.80 -1 -1 98260 -1 -1 2018 114 44 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 489500 114 102 29578 29304 1 16035 2286 54 54 2916 clb auto 253.9 MiB 25.46 231009 477.3 MiB 34.69 0.27 69.6118 -57509.6 -69.6118 69.6118 25.15 0.0570113 0.0503337 7.30556 5.96083 100 337981 48 1.70873e+08 1.36042e+08 1.90496e+07 6532.79 316.39 27.392 22.5716 408276 4062182 -1 309689 19 61153 243064 45563750 10348878 0 0 45563750 10348878 235465 77399 0 0 696328 640331 0 0 852314 702439 0 0 244715 93011 0 0 21636056 4363065 0 0 21898872 4472633 0 0 235465 0 0 181010 843167 840258 5564161 8092 12329 80.487 80.487 -72900.8 -80.487 -35.5126 -0.296573 2.40310e+07 8241.08 8.43 13.80 2.96 -1 -1 8.43 3.62057 3.13185 0.1047 0.4234 0.01042 0.5662 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 83.37 vpr 293.47 MiB 0.87 71200 -1 -1 5 8.03 -1 -1 52248 -1 -1 456 506 47 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 300516 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 44.4 MiB 2.15 15312 293.5 MiB 3.64 0.03 6.1775 -1795.6 -6.1775 6.1775 21.72 0.0108844 0.0100145 1.50545 1.37901 38 23176 16 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 28.46 5.58087 5.2171 251304 1421084 -1 22294 15 3861 5396 4216039 1050967 0 0 4216039 1050967 4666 4492 0 0 106493 105158 0 0 109198 107014 0 0 4937 4682 0 0 1968003 409784 0 0 2022742 419837 0 0 4666 0 0 819 16012 11798 19152 770 2347 7.11612 7.11612 -2254.2 -7.11612 -2.30143 -0.218188 8.69095e+06 3476.38 2.73 1.07 0.86 -1 -1 2.73 0.456438 0.433292 0.172 0.1416 0.03943 0.819 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 21.16 vpr 60.43 MiB 0.14 16412 -1 -1 2 0.09 -1 -1 33332 -1 -1 26 311 15 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61876 311 156 972 1128 1 953 508 28 28 784 memory auto 21.9 MiB 0.55 8782 60.4 MiB 0.64 0.01 4.18654 -4307.38 -4.18654 4.18654 1.93 0.00207108 0.00179299 0.231376 0.199499 40 14897 15 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 11.89 1.05836 0.944336 76686 431115 -1 14227 15 2647 3051 3333719 992039 0 0 3333719 992039 3051 2757 0 0 83894 83233 0 0 85046 84086 0 0 3062 2801 0 0 1584724 408285 0 0 1573942 410877 0 0 3051 0 0 404 3347 3146 12768 0 0 4.6476 4.6476 -5304.43 -4.6476 -11.1197 -0.340786 2.67004e+06 3405.67 0.70 0.66 0.25 -1 -1 0.70 0.100632 0.0928728 0.08042 0.1653 0.01808 0.8166 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 15.63 vpr 67.67 MiB 0.39 29912 -1 -1 7 2.83 -1 -1 39204 -1 -1 167 193 5 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 69292 193 205 2232 2437 1 1226 570 20 20 400 memory auto 30.0 MiB 0.73 9310 67.7 MiB 0.97 0.01 4.4031 -2593.9 -4.4031 4.4031 0.91 0.00284866 0.0025004 0.307188 0.26894 50 16747 19 2.07112e+07 1.17403e+07 1.26944e+06 3173.59 4.04 1.21031 1.08002 40848 252947 -1 15013 15 4340 10982 889491 204175 0 0 889491 204175 10462 6020 0 0 34079 31378 0 0 38360 34204 0 0 11033 6555 0 0 412486 63896 0 0 383071 62122 0 0 10462 0 0 6288 25320 23988 161436 528 159 5.25552 5.25552 -3114.14 -5.25552 -10.4479 -0.360359 1.63222e+06 4080.54 0.40 0.32 0.15 -1 -1 0.40 0.173959 0.162211 0.02923 0.2147 0.02573 0.7596 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 54.07 vpr 101.82 MiB 0.57 40720 -1 -1 27 5.40 -1 -1 43380 -1 -1 246 385 2 1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 104268 385 394 3979 4310 1 2376 1028 27 27 729 io auto 45.0 MiB 1.82 31150 81.8 MiB 3.46 0.03 12.7213 -11849.2 -12.7213 12.7213 1.90 0.00948468 0.0087314 1.13024 1.03344 82 50579 35 3.93038e+07 1.47499e+07 3.81403e+06 5231.86 28.14 4.57068 4.13913 91857 789111 -1 44932 15 10290 36318 3663270 734163 0 0 3663270 734163 34841 14383 0 0 80413 71874 0 0 102130 80595 0 0 36425 16280 0 0 1726287 273421 0 0 1683174 277610 0 0 34841 0 0 25139 119387 115958 683911 1618 176 14.1282 14.1282 -13598.2 -14.1282 0 0 4.78922e+06 6569.57 1.30 1.05 0.52 -1 -1 1.30 0.401523 0.373169 0.02326 0.4658 0.02725 0.507 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 27.33 vpr 69.96 MiB 0.38 32664 -1 -1 8 1.87 -1 -1 40020 -1 -1 135 214 0 9 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 71636 214 305 2625 2741 1 1503 663 22 22 484 mult_36 auto 32.0 MiB 0.73 12787 70.0 MiB 1.25 0.01 4.30664 -2476.68 -4.30664 4.30664 1.13 0.00304156 0.00272544 0.358006 0.320596 50 28034 45 2.50602e+07 1.08397e+07 1.56759e+06 3238.82 13.75 1.63559 1.49636 49974 314245 -1 22374 16 6434 14370 3700962 819988 0 0 3700962 819988 14019 8523 0 0 119213 115659 0 0 124460 119295 0 0 14755 9187 0 0 1712801 277737 0 0 1715714 289587 0 0 14019 0 0 7689 26193 27956 154153 366 21 4.90516 4.90516 -3018.11 -4.90516 0 0 2.01671e+06 4166.75 0.52 0.82 0.19 -1 -1 0.52 0.211409 0.199514 0.02256 0.4757 0.04224 0.4821 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 510.52 abc 92.95 MiB 0.87 38464 -1 -1 20 489.93 -1 -1 95176 -1 -1 233 38 0 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77164 38 36 3404 3440 1 1306 307 20 20 400 clb auto 39.2 MiB 1.16 14677 75.4 MiB 0.77 0.01 11.7434 -4242.54 -11.7434 11.7434 0.83 0.00380369 0.00330008 0.280557 0.238246 58 24115 50 2.07112e+07 1.25573e+07 1.47096e+06 3677.41 5.36 1.56117 1.32271 43240 297040 -1 21385 14 5402 21727 740679 122372 0 0 740679 122372 18019 6975 0 0 27769 22068 0 0 37821 27774 0 0 18750 8013 0 0 325587 30467 0 0 312733 27075 0 0 18019 0 0 12976 79344 80077 378720 4407 1386 13.8548 13.8548 -4976.67 -13.8548 0 0 1.87544e+06 4688.60 0.42 0.36 0.18 -1 -1 0.42 0.220456 0.199854 0.01066 0.3896 0.03116 0.5793 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 6842.27 vpr 1.64 GiB 58.61 923592 -1 -1 76 5668.21 -1 -1 448304 -1 -1 7370 36 159 27 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 1723544 36 356 134771 133552 1 43112 7948 102 102 10404 clb auto 886.7 MiB 58.41 535651 1683.1 MiB 143.35 0.92 62.9913 -301355 -62.9913 62.9913 87.48 0.161341 0.126626 24.2595 19.3512 88 721453 30 6.36957e+08 4.94984e+08 6.24837e+07 6005.73 430.04 80.6341 65.9975 1388044 13170686 -1 681713 20 155665 477226 80025365 19650266 0 0 80025365 19650266 429713 211876 0 0 1554026 1430579 0 0 1828389 1563910 0 0 450293 241761 0 0 37959582 8069612 0 0 37803362 8132528 0 0 429713 0 0 277252 1125617 1106746 5157413 50313 507495 70.1152 70.1152 -371409 -70.1152 0 0 7.83483e+07 7530.59 25.72 26.50 9.44 -1 -1 25.72 10.0902 8.74154 0.3006 0.3894 0.01326 0.5974 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt index d239626ec16..f1a94f91e12 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt @@ -1,22 +1,22 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 307.53 vpr 318.74 MiB 1.57 128020 -1 -1 18 77.70 -1 -1 66356 -1 -1 1012 133 24 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 326388 133 179 18379 18161 1 8999 1348 39 39 1521 clb auto 179.1 MiB 21.62 141285 210.9 MiB 13.12 0.11 16.936 -137241 -16.936 16.936 4.41 0.0364706 0.0322636 4.32024 3.5915 112 201210 23 8.65315e+07 6.7694e+07 1.08482e+07 7132.26 137.46 21.6843 18.5167 185260 14 34612 124621 22427316 4905994 18.6335 18.6335 -154369 -18.6335 0 0 1.37577e+07 9045.20 4.32 6.36 1.97008 1.79317 - k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 569.65 vpr 658.21 MiB 5.32 375528 -1 -1 14 235.92 -1 -1 146572 -1 -1 2738 257 0 11 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 674004 257 32 36518 33906 1 19790 3038 63 63 3969 clb auto 375.0 MiB 52.18 249910 658.2 MiB 46.23 0.40 18.1225 -23618.3 -18.1225 18.1225 34.61 0.0810383 0.0725839 9.22694 7.70622 76 388448 35 2.36641e+08 1.5192e+08 2.05973e+07 5189.55 129.52 39.7436 33.6625 369845 20 93406 418289 26715277 4596083 20.153 20.153 -26194.3 -20.153 0 0 2.57532e+07 6488.59 9.05 11.94 5.70167 5.06051 - k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 138.43 vpr 158.75 MiB 0.65 58040 -1 -1 5 43.97 -1 -1 60080 -1 -1 616 36 0 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 162556 36 100 14036 11283 1 3221 752 31 31 961 clb auto 118.2 MiB 13.02 45615 151.4 MiB 4.75 0.04 13.2792 -2507.52 -13.2792 13.2792 3.02 0.0180021 0.0161962 2.24101 1.94951 60 78682 46 5.14688e+07 3.31987e+07 3.85800e+06 4014.56 59.74 9.1149 7.81725 66036 16 12597 58970 2509404 335949 15.3476 15.3476 -2881.45 -15.3476 0 0 4.86014e+06 5057.38 1.33 1.53 1.04215 0.940563 - k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 7.60 vpr 68.37 MiB 0.53 44900 -1 -1 3 0.40 -1 -1 37656 -1 -1 92 142 0 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 70008 142 193 1069 1140 1 565 427 14 14 196 clb auto 30.3 MiB 0.58 1806 68.4 MiB 0.31 0.00 2.96665 -441.537 -2.96665 2.96665 0.34 0.0010771 0.000978102 0.111741 0.101773 38 3683 14 9.20055e+06 4.95825e+06 467348. 2384.43 2.90 0.645953 0.595818 3321 10 1126 1647 74188 19740 3.53597 3.53597 -541.947 -3.53597 0 0 593372. 3027.41 0.13 0.06 0.0520413 0.0499736 - k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 4.91 vpr 63.09 MiB 0.08 9328 -1 -1 3 0.30 -1 -1 35988 -1 -1 65 99 1 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 64608 99 130 363 493 1 251 295 12 12 144 clb auto 24.8 MiB 0.13 627 63.1 MiB 0.11 0.00 1.84767 -197.764 -1.84767 1.84767 0.22 0.000343218 0.000305929 0.0288527 0.0258559 40 1467 19 5.66058e+06 4.05111e+06 333335. 2314.82 1.62 0.227107 0.207197 1388 10 601 777 75622 26045 2.52204 2.52204 -237.648 -2.52204 0 0 419432. 2912.72 0.13 0.05 0.0236528 0.0223683 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 18.45 vpr 66.71 MiB 0.05 9180 -1 -1 6 0.25 -1 -1 33872 -1 -1 32 162 0 5 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 68308 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 28.7 MiB 0.50 5064 66.7 MiB 0.39 0.01 15.2757 -1191.1 -15.2757 15.2757 0.59 0.0027593 0.00255805 0.161671 0.14857 52 10163 21 1.21132e+07 3.70461e+06 805949. 3148.24 12.84 1.03146 0.95771 8938 19 3176 5224 2217938 580796 17.1833 17.1833 -1426.83 -17.1833 0 0 1.06067e+06 4143.25 0.22 0.41 0.0847323 0.0806243 - k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 10.99 vpr 65.20 MiB 0.05 8364 -1 -1 6 0.17 -1 -1 32988 -1 -1 20 66 0 7 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 66768 66 96 866 607 1 547 189 18 18 324 mult_36 auto 27.2 MiB 0.38 4795 65.2 MiB 0.22 0.00 12.2857 -733.307 -12.2857 12.2857 0.64 0.00102288 0.000946388 0.0982678 0.091331 50 10253 23 1.57076e+07 3.84988e+06 1.01955e+06 3146.77 5.42 0.509211 0.480038 9398 18 3468 7276 4201444 976830 13.3633 13.3633 -880.186 -13.3633 0 0 1.31112e+06 4046.65 0.30 0.67 0.0695069 0.0665584 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 490.34 vpr 574.08 MiB 4.31 209564 -1 -1 101 92.51 -1 -1 104008 -1 -1 2196 114 44 8 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 587860 114 102 38224 33865 1 18116 2464 57 57 3249 clb auto 361.4 MiB 58.43 236454 570.7 MiB 46.40 0.35 67.1269 -54521.5 -67.1269 67.1269 28.99 0.073241 0.0655444 10.1616 8.29494 92 354297 49 1.92089e+08 1.45633e+08 1.98119e+07 6097.84 197.73 44.2289 36.7774 326494 23 73396 274970 39058697 8365472 76.8776 76.8776 -69382.6 -76.8776 0 0 2.51903e+07 7753.25 8.72 14.90 5.83301 5.06699 - k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 7673.94 vpr 1.95 GiB 20.41 709084 -1 -1 101 725.66 -1 -1 315548 -1 -1 7514 114 167 32 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 2049600 114 102 124851 111146 1 59132 7929 103 103 10609 clb auto 1158.3 MiB 199.50 1069500 1860.2 MiB 413.82 2.42 65.089 -317938 -65.089 65.089 109.70 0.305465 0.268288 45.1815 37.3184 126 1422736 39 6.46441e+08 5.09111e+08 8.73307e+07 8231.76 5929.26 191.675 159.918 1352572 24 215418 902232 254888876 65371048 74.7335 74.7335 -457089 -74.7335 0 0 1.10400e+08 10406.3 42.62 95.05 21.2607 18.245 - k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 4724.84 vpr 2.09 GiB 47.78 894244 -1 -1 26 3241.44 -1 -1 373104 -1 -1 7038 36 159 27 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 2196408 36 356 190343 166383 1 61580 7616 99 99 9801 clb auto 1350.9 MiB 203.11 711530 1905.2 MiB 405.88 2.31 43.5999 -302061 -43.5999 43.5999 90.21 0.251187 0.220277 43.6402 35.7472 152 933373 21 6.00857e+08 4.77096e+08 9.55486e+07 9748.86 505.13 149.495 125.315 910170 21 212558 537652 105598072 25390452 45.7114 45.7114 -376700 -45.7114 0 0 1.21036e+08 12349.3 45.15 44.59 17.6497 15.6428 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 88.53 vpr 309.78 MiB 0.85 70508 -1 -1 5 7.03 -1 -1 52944 -1 -1 456 506 45 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 317216 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 57.2 MiB 3.70 16276 309.8 MiB 3.09 0.03 7.44383 -2024.08 -7.44383 7.44383 23.00 0.011023 0.00997483 1.53363 1.38048 40 24428 15 1.47946e+08 4.92362e+07 7.18436e+06 2873.75 34.60 5.24115 4.84445 23593 16 3958 5134 3892667 936114 8.23668 8.23668 -2463.34 -8.23668 0 0 8.97548e+06 3590.19 2.91 1.29 0.595461 0.563734 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 14.88 vpr 69.29 MiB 0.16 16708 -1 -1 2 0.16 -1 -1 33980 -1 -1 29 311 15 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 70956 311 156 1019 1160 1 965 511 28 28 784 memory auto 31.0 MiB 0.75 8033 69.3 MiB 0.66 0.01 3.81344 -4117.29 -3.81344 3.81344 2.17 0.00273697 0.00237913 0.302921 0.263292 36 14637 26 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 4.85 1.05396 0.943807 13496 17 2863 3259 2097850 576951 4.15692 4.15692 -4782.89 -4.15692 -0.00135869 -0.00135869 2.40571e+06 3068.51 0.67 0.48 0.138425 0.128072 - k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 16.72 vpr 82.10 MiB 0.38 29896 -1 -1 4 1.87 -1 -1 38000 -1 -1 188 193 5 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 84068 193 205 2863 2789 1 1455 591 20 20 400 memory auto 45.0 MiB 2.30 11520 82.1 MiB 1.28 0.01 4.40167 -2490.11 -4.40167 4.40167 0.89 0.00406213 0.00362319 0.488777 0.433435 50 20644 26 2.07112e+07 1.28721e+07 1.26946e+06 3173.65 5.70 1.71074 1.53218 18089 16 5287 13185 935583 206087 4.89371 4.89371 -2914.73 -4.89371 -0.00135869 -0.00135869 1.63222e+06 4080.54 0.38 0.40 0.246504 0.230033 - k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 55.41 vpr 121.91 MiB 0.57 40356 -1 -1 8 4.63 -1 -1 43616 -1 -1 258 385 2 1 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 124832 385 394 4673 4537 1 2422 1040 27 27 729 io auto 60.4 MiB 6.41 30977 97.6 MiB 3.51 0.04 7.94168 -9402.04 -7.94168 7.94168 1.88 0.0120068 0.0112096 1.18858 1.09398 100 45138 22 3.93038e+07 1.53967e+07 4.55173e+06 6243.81 29.81 5.83283 5.31347 42820 15 9073 31415 2601508 484034 8.86401 8.86401 -10540.7 -8.86401 0 0 5.74540e+06 7881.21 1.55 0.97 0.495525 0.463415 - k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 18.27 vpr 81.98 MiB 0.33 31540 -1 -1 3 1.12 -1 -1 40020 -1 -1 112 214 0 8 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 83948 214 305 2963 2869 1 1445 639 19 19 361 io auto 44.4 MiB 2.77 10859 82.0 MiB 1.03 0.01 4.30443 -2452.3 -4.30443 4.30443 0.79 0.00401364 0.00363606 0.407746 0.37106 54 24820 38 1.72706e+07 9.20413e+06 1.22721e+06 3399.48 7.44 1.68225 1.54866 20046 21 6607 14833 4566469 1061519 5.02967 5.02967 -2938.62 -5.02967 0 0 1.59424e+06 4416.19 0.39 0.96 0.28137 0.266193 - k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 249.89 abc 93.20 MiB 0.94 38652 -1 -1 3 231.83 -1 -1 95436 -1 -1 156 38 0 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 83008 38 36 2995 2744 1 1210 230 17 17 289 clb auto 44.8 MiB 1.69 11577 81.1 MiB 0.59 0.01 8.48564 -2374.54 -8.48564 8.48564 0.53 0.00333295 0.00293634 0.241631 0.208452 66 17092 43 1.34605e+07 8.40746e+06 1.18400e+06 4096.89 7.69 2.38662 2.08317 15748 21 4905 13126 499613 85960 10.1387 10.1387 -2809.47 -10.1387 0 0 1.47169e+06 5092.36 0.30 0.34 0.247929 0.226303 - k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 11.58 vpr 70.93 MiB 0.18 20672 -1 -1 15 0.76 -1 -1 35180 -1 -1 65 45 3 1 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 72632 45 32 1275 1232 1 831 146 14 14 196 memory auto 33.4 MiB 1.99 7070 70.9 MiB 0.35 0.00 9.95862 -6348.65 -9.95862 9.95862 0.34 0.00176024 0.00151135 0.159254 0.137418 72 13225 19 9.20055e+06 5.54311e+06 844708. 4309.73 4.67 0.780672 0.684745 11642 15 3416 8892 1451305 381660 11.4235 11.4235 -7369.79 -11.4235 0 0 1.05868e+06 5401.43 0.21 0.40 0.149878 0.137948 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 69.81 vpr 235.55 MiB 1.65 122312 -1 -1 5 8.79 -1 -1 71296 -1 -1 706 157 0 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 241200 157 197 23846 21799 1 6628 1060 33 33 1089 clb auto 179.6 MiB 7.62 40277 213.7 MiB 5.27 0.05 3.00045 -13435.2 -3.00045 3.00045 2.98 0.0219152 0.0191037 2.4489 2.08934 52 60666 42 6.0475e+07 3.80493e+07 3.78249e+06 3473.36 26.98 12.2786 10.7014 56693 15 16106 25645 1095511 207657 3.43649 3.43649 -15920.1 -3.43649 0 0 4.97914e+06 4572.21 1.48 1.48 1.43644 1.33068 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 154.11 vpr 251.87 MiB 1.64 107984 -1 -1 3 44.56 -1 -1 84656 -1 -1 680 115 0 40 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 257912 115 145 23133 19546 1 9699 980 40 40 1600 mult_36 auto 180.3 MiB 7.50 84243 214.8 MiB 6.60 0.06 5.48632 -22371.2 -5.48632 5.48632 4.74 0.020436 0.0177716 2.53254 2.12468 86 132635 49 9.16046e+07 5.24886e+07 8.98461e+06 5615.38 63.63 12.8747 11.1574 121608 14 32162 50219 26009287 5180713 5.71396 5.71396 -25628.6 -5.71396 0 0 1.13675e+07 7104.67 3.16 5.63 1.28732 1.1906 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 3242.56 vpr 1.42 GiB 2.07 155224 -1 -1 3 7.85 -1 -1 202096 -1 -1 1652 149 0 324 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 1485320 149 182 65737 42630 1 35969 2307 104 104 10816 mult_36 auto 444.3 MiB 24.75 322679 1450.5 MiB 43.83 0.30 14.9335 -59696.9 -14.9335 14.9335 113.35 0.0795576 0.0722116 11.7258 10.1999 74 462593 38 6.67561e+08 2.17331e+08 5.58853e+07 5166.91 2943.00 67.08 58.657 454760 20 142806 164445 46892546 9335298 16.6838 16.6838 -69285.5 -16.6838 0 0 7.01856e+07 6489.05 25.06 13.69 5.25328 4.77497 - k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 3.41 vpr 62.12 MiB 0.06 9976 -1 -1 5 0.24 -1 -1 32716 -1 -1 14 11 0 0 success v8.0.0-6803-g88335ba34 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-12-16T09:53:38 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor2/vtr-verilog-to-routing 63616 11 30 313 321 2 118 55 7 7 49 clb auto 24.1 MiB 0.20 421 62.1 MiB 0.03 0.00 2.31674 -162.484 -2.31674 2.05087 0.05 0.000258192 0.000202173 0.0133778 0.0111689 34 928 26 1.07788e+06 754516 84249.8 1719.38 0.41 0.118898 0.100082 774 12 454 817 24833 8294 2.6525 2.26926 -187.459 -2.6525 0 0 103542. 2113.11 0.02 0.04 0.0283021 0.0263274 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 237.99 vpr 254.19 MiB 1.73 127476 -1 -1 18 79.84 -1 -1 65236 -1 -1 1012 133 24 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 260288 133 179 18379 18161 1 8999 1348 39 39 1521 clb auto 171.8 MiB 20.93 139498 204.0 MiB 12.80 0.11 16.8897 -129110 -16.8897 16.8897 4.44 0.0320332 0.0280834 3.71653 3.08529 104 197765 23 8.65315e+07 6.7694e+07 1.01293e+07 6659.65 67.92 14.2593 11.9716 220624 2170082 -1 184294 16 34489 126280 22298214 4855630 0 0 22298214 4855630 110176 42244 0 0 380269 342924 0 0 454609 382665 0 0 113881 47060 0 0 10518880 2006419 0 0 10720399 2034318 0 0 110176 0 0 78476 708242 751467 3826251 18134 7515 18.3647 18.3647 -145731 -18.3647 0 0 1.28536e+07 8450.78 3.78 7.14 1.59 -1 -1 3.78 2.1516 1.92841 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 519.43 vpr 653.67 MiB 4.61 375556 -1 -1 14 220.73 -1 -1 146508 -1 -1 2738 257 0 11 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 669360 257 32 36518 33906 1 19790 3038 63 63 3969 clb auto 368.1 MiB 50.99 252769 653.7 MiB 54.69 0.40 18.6432 -23351.3 -18.6432 18.6432 34.85 0.0703519 0.0628129 8.60252 7.07938 76 391210 35 2.36641e+08 1.5192e+08 2.05973e+07 5189.55 90.91 30.8851 25.7362 506266 4280222 -1 373083 19 91976 414517 22063335 3426016 0 0 22063335 3426016 414517 148360 0 0 609069 500669 0 0 868809 611250 0 0 435022 169877 0 0 9871347 992656 0 0 9864571 1003204 0 0 414517 0 0 334698 2166458 2099581 14726688 0 0 20.784 20.784 -25969.5 -20.784 0 0 2.57532e+07 6488.59 8.18 9.33 2.92 -1 -1 8.18 4.66564 4.13513 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 118.71 vpr 154.52 MiB 0.51 57964 -1 -1 5 41.19 -1 -1 59124 -1 -1 616 36 0 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 158224 36 100 14036 11283 1 3221 752 31 31 961 clb auto 111.7 MiB 12.79 45792 144.8 MiB 4.37 0.04 13.3702 -2605.71 -13.3702 13.3702 2.65 0.0166135 0.014878 1.73739 1.49632 62 76240 42 5.14688e+07 3.31987e+07 3.99881e+06 4161.10 44.23 8.5389 7.23157 110674 804802 -1 65806 19 12613 58308 2424466 320242 0 0 2424466 320242 56540 15171 0 0 74430 58826 0 0 103277 74445 0 0 57566 17334 0 0 1056441 76655 0 0 1076212 77811 0 0 56540 0 0 46263 401494 417135 2415374 1946 123 15.13 15.13 -2935.87 -15.13 0 0 4.96813e+06 5169.75 1.42 1.45 0.51 -1 -1 1.42 1.00048 0.895691 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 5.99 vpr 61.44 MiB 0.49 44920 -1 -1 3 0.41 -1 -1 37180 -1 -1 92 142 0 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 62916 142 193 1069 1140 1 565 427 14 14 196 clb auto 23.4 MiB 0.62 1752 61.4 MiB 0.52 0.00 2.96377 -460.634 -2.96377 2.96377 0.45 0.00111747 0.00102528 0.150161 0.136804 38 3638 11 9.20055e+06 4.95825e+06 467348. 2384.43 0.88 0.41375 0.381118 18724 93853 -1 3301 11 1157 1822 77689 20818 0 0 77689 20818 1822 1367 0 0 3402 2932 0 0 4074 3409 0 0 1961 1456 0 0 32516 5851 0 0 33914 5803 0 0 1822 0 0 670 1665 1664 11467 0 0 3.62254 3.62254 -560.037 -3.62254 0 0 593372. 3027.41 0.13 0.08 0.05 -1 -1 0.13 0.0666037 0.0636074 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.37 vpr 56.58 MiB 0.06 9188 -1 -1 3 0.24 -1 -1 35660 -1 -1 65 99 1 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 57936 99 130 363 493 1 251 295 12 12 144 clb auto 18.1 MiB 0.13 717 56.6 MiB 0.13 0.00 1.83922 -198.941 -1.83922 1.83922 0.23 0.000301066 0.000267288 0.0250214 0.022387 40 1645 10 5.66058e+06 4.05111e+06 333335. 2314.82 0.53 0.120528 0.110535 12946 64812 -1 1532 9 620 808 72040 24269 0 0 72040 24269 808 743 0 0 3914 3738 0 0 4492 3914 0 0 867 808 0 0 29829 7624 0 0 32130 7442 0 0 808 0 0 188 245 173 1848 0 0 2.45075 2.45075 -235.916 -2.45075 0 0 419432. 2912.72 0.09 0.03 0.04 -1 -1 0.09 0.0150527 0.0144198 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 11.31 vpr 60.15 MiB 0.03 9112 -1 -1 6 0.18 -1 -1 33420 -1 -1 32 162 0 5 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 61592 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 22.2 MiB 0.34 4798 60.1 MiB 0.37 0.00 15.573 -1229.29 -15.573 15.573 0.47 0.000953142 0.000857699 0.115767 0.104839 72 9466 41 1.21132e+07 3.70461e+06 1.11200e+06 4343.75 7.66 0.827819 0.767611 29868 220492 -1 8313 21 2687 4502 1591621 437609 0 0 1591621 437609 4502 3410 0 0 70582 69311 0 0 74831 71087 0 0 4876 3628 0 0 733031 145480 0 0 703799 144693 0 0 4502 0 0 1838 4665 4843 26554 0 0 17.1449 17.1449 -1351.54 -17.1449 0 0 1.39441e+06 5446.92 0.31 0.31 0.16 -1 -1 0.31 0.0822306 0.0778269 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 30.46 vpr 58.85 MiB 0.03 8128 -1 -1 6 0.15 -1 -1 33560 -1 -1 20 66 0 7 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 60264 66 96 866 607 1 547 189 18 18 324 mult_36 auto 20.6 MiB 0.33 4654 58.9 MiB 0.23 0.00 12.016 -717.144 -12.016 12.016 0.78 0.000849562 0.000779966 0.0853851 0.0782323 46 11740 34 1.57076e+07 3.84988e+06 949518. 2930.61 26.00 0.697117 0.651456 33056 191736 -1 9693 19 4292 9313 4610841 1111868 0 0 4610841 1111868 9313 7048 0 0 162153 160820 0 0 175338 162887 0 0 10387 8090 0 0 2127189 392549 0 0 2126461 380474 0 0 9313 0 0 5031 13910 14867 63143 0 0 13.2812 13.2812 -865.402 -13.2812 0 0 1.22123e+06 3769.23 0.28 0.68 0.11 -1 -1 0.28 0.0628532 0.0599499 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 510.26 vpr 616.90 MiB 5.06 209292 -1 -1 101 90.49 -1 -1 103784 -1 -1 2196 114 44 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 631708 114 102 38224 33865 1 18116 2464 57 57 3249 clb auto 355.1 MiB 58.20 234636 568.2 MiB 46.80 0.32 66.9135 -51945.6 -66.9135 66.9135 28.95 0.0603744 0.05275 9.11096 7.36426 98 345705 34 1.92089e+08 1.45633e+08 2.09305e+07 6442.12 217.84 43.1312 35.0368 461111 4477766 -1 320823 21 71566 270751 43728863 9899766 0 0 43728863 9899766 263120 93272 0 0 691367 628741 0 0 861838 696109 0 0 273758 107235 0 0 20518229 4100304 0 0 21120551 4274105 0 0 263120 0 0 199651 1004944 1007530 6544494 8063 6012 76.9242 76.9242 -64198.9 -76.9242 0 0 2.65396e+07 8168.55 9.52 15.04 3.31 -1 -1 9.52 4.90348 4.18557 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 2931.03 vpr 2.21 GiB 19.78 708276 -1 -1 101 731.12 -1 -1 312364 -1 -1 7514 114 167 32 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 2313244 114 102 124851 111146 1 59132 7929 103 103 10609 clb auto 1146.8 MiB 191.55 1052983 1856.2 MiB 352.94 2.19 65.2375 -338588 -65.2375 65.2375 102.90 0.283809 0.222166 38.7647 31.0501 128 1388736 25 6.46441e+08 5.09111e+08 8.86191e+07 8353.20 1279.88 159.877 128.912 1721044 19330720 -1 1334833 23 214364 899841 212820179 48714564 0 0 212820179 48714564 843411 266060 0 0 2609670 2368978 0 0 3228635 2628539 0 0 875957 317547 0 0 101251619 21194988 0 0 104010887 21938452 0 0 843411 0 0 658793 4280248 4291340 23394603 59086 247535 74.7939 74.7939 -482198 -74.7939 0 0 1.11898e+08 10547.4 42.76 74.82 15.82 -1 -1 42.76 22.0714 18.4553 +k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 4239.94 vpr 2.01 GiB 47.83 893848 -1 -1 26 2984.80 -1 -1 372920 -1 -1 7038 36 159 27 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 2112500 36 356 190343 166383 1 61580 7616 99 99 9801 clb auto 1339.5 MiB 193.43 722605 1899.0 MiB 348.69 2.05 40.0349 -291855 -40.0349 40.0349 87.98 0.223818 0.174422 36.1212 28.6193 152 950131 20 6.00857e+08 4.77096e+08 9.55486e+07 9748.86 365.86 114.53 94.0952 1749639 21204799 -1 926823 20 219745 554251 99095535 22368010 0 0 99095535 22368010 500725 264536 0 0 1490753 1352094 0 0 1900392 1497383 0 0 514880 290438 0 0 47255511 9330337 0 0 47433274 9633222 0 0 500725 0 0 283846 1202366 1236484 5095990 62718 113538 43.1312 43.1312 -349199 -43.1312 0 0 1.21036e+08 12349.3 42.03 34.82 18.26 -1 -1 42.03 14.751 13.0069 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 69.59 vpr 304.90 MiB 0.94 70504 -1 -1 5 7.00 -1 -1 52648 -1 -1 456 506 45 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 312216 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 50.6 MiB 3.97 15735 304.9 MiB 3.64 0.04 6.80432 -1955.3 -6.80432 6.80432 22.57 0.0112932 0.0103973 1.52083 1.39037 40 24016 15 1.47946e+08 4.92362e+07 7.18436e+06 2873.75 15.32 4.55585 4.24637 260716 1475984 -1 22984 13 3799 4917 3448532 824504 0 0 3448532 824504 4526 4368 0 0 98631 97449 0 0 101147 98956 0 0 4797 4569 0 0 1594731 306885 0 0 1644700 312277 0 0 4526 0 0 730 5225 3942 9251 400 961 7.7292 7.7292 -2398.92 -7.7292 0 0 8.97548e+06 3590.19 2.92 0.97 0.90 -1 -1 2.92 0.476873 0.455011 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 13.42 vpr 62.25 MiB 0.11 16736 -1 -1 2 0.11 -1 -1 33604 -1 -1 29 311 15 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 63748 311 156 1019 1160 1 965 511 28 28 784 memory auto 23.9 MiB 0.52 8204 62.3 MiB 0.68 0.01 3.71444 -4070.46 -3.71444 3.71444 2.02 0.00237172 0.00206852 0.251614 0.218882 36 15411 35 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 5.34 0.982491 0.88156 76314 389223 -1 13948 14 3166 3562 2712374 748186 0 0 2712374 748186 3562 3377 0 0 87585 86655 0 0 89265 87873 0 0 3598 3433 0 0 1251982 282755 0 0 1276382 284093 0 0 3562 0 0 396 2815 2263 11862 0 0 4.28754 4.28754 -4822.43 -4.28754 -0.00271738 -0.00135869 2.40571e+06 3068.51 0.72 0.55 0.23 -1 -1 0.72 0.113142 0.105068 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 21.16 vpr 75.10 MiB 0.36 29756 -1 -1 4 1.85 -1 -1 37584 -1 -1 188 193 5 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76904 193 205 2863 2789 1 1455 591 20 20 400 memory auto 38.0 MiB 2.16 11642 75.1 MiB 1.40 0.01 4.52152 -2547.1 -4.52152 4.52152 0.92 0.00405093 0.00363069 0.481799 0.429258 52 20422 29 2.07112e+07 1.28721e+07 1.31074e+06 3276.84 10.39 2.4099 2.15797 42580 268535 -1 18123 15 5304 12867 1421986 342404 0 0 1421986 342404 12422 7042 0 0 43315 38341 0 0 49610 43509 0 0 13239 7741 0 0 654803 124022 0 0 648597 121749 0 0 12422 0 0 7407 40584 38411 285473 482 98 4.91695 4.91695 -2979.81 -4.91695 -0.000474482 -0.000474482 1.72518e+06 4312.96 0.44 0.47 0.16 -1 -1 0.44 0.237369 0.221662 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 203.59 vpr 91.57 MiB 0.52 39884 -1 -1 8 4.47 -1 -1 43444 -1 -1 258 385 2 1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 93772 385 394 4673 4537 1 2422 1040 27 27 729 io auto 53.7 MiB 6.30 31057 90.6 MiB 3.90 0.04 8.28895 -9591.03 -8.28895 8.28895 2.17 0.00838517 0.00769453 1.09169 0.993732 80 50304 34 3.93038e+07 1.53967e+07 3.74040e+06 5130.86 178.01 6.07147 5.46671 93029 775453 -1 44704 19 10790 37776 3239827 591704 0 0 3239827 591704 35788 16252 0 0 86813 78637 0 0 109111 86864 0 0 37418 18144 0 0 1495382 190751 0 0 1475315 201056 0 0 35788 0 0 25638 134004 133584 812083 2219 201 8.86644 8.86644 -10632.1 -8.86644 0 0 4.71674e+06 6470.15 1.24 1.05 0.51 -1 -1 1.24 0.507334 0.469825 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 28.59 vpr 75.64 MiB 0.31 31476 -1 -1 3 1.26 -1 -1 39980 -1 -1 112 214 0 8 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 77460 214 305 2963 2869 1 1445 639 19 19 361 io auto 37.9 MiB 2.06 11737 75.6 MiB 1.07 0.01 4.44136 -2511.57 -4.44136 4.44136 0.80 0.0035705 0.00323596 0.357729 0.325237 64 23261 27 1.72706e+07 9.20413e+06 1.47376e+06 4082.44 18.64 2.18033 2.0028 41203 295207 -1 20670 16 5923 13194 3767807 812851 0 0 3767807 812851 12859 8224 0 0 108077 104102 0 0 115297 108235 0 0 13602 9051 0 0 1756786 287099 0 0 1761186 296140 0 0 12859 0 0 7006 25427 25210 134026 339 0 4.99203 4.99203 -2998.16 -4.99203 0 0 1.84179e+06 5101.91 0.46 0.77 0.18 -1 -1 0.46 0.215589 0.204391 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 251.27 abc 87.54 MiB 1.00 38588 -1 -1 3 233.89 -1 -1 89644 -1 -1 156 38 0 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 76412 38 36 2995 2744 1 1210 230 17 17 289 clb auto 37.9 MiB 1.68 11251 74.6 MiB 0.65 0.01 8.56417 -2373.71 -8.56417 8.56417 0.55 0.00258028 0.00219595 0.231783 0.196879 70 17107 43 1.34605e+07 8.40746e+06 1.24100e+06 4294.11 7.48 1.82587 1.55079 33499 247730 -1 15269 20 4202 11767 416454 70709 0 0 416454 70709 10473 4913 0 0 15291 12020 0 0 21003 15297 0 0 10779 5449 0 0 181336 15652 0 0 177572 17378 0 0 10473 0 0 6558 34411 37087 234899 1581 212 10.0582 10.0582 -2861.56 -10.0582 0 0 1.56192e+06 5404.58 0.33 0.28 0.16 -1 -1 0.33 0.212655 0.19397 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 17.92 vpr 64.11 MiB 0.17 20588 -1 -1 15 0.90 -1 -1 34724 -1 -1 65 45 3 1 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 65644 45 32 1275 1232 1 831 146 14 14 196 memory auto 26.5 MiB 1.99 7358 64.1 MiB 0.48 0.00 9.73534 -6189.64 -9.73534 9.73534 0.35 0.00192897 0.00169201 0.204155 0.174849 66 13761 23 9.20055e+06 5.54311e+06 787562. 4018.17 11.52 1.26249 1.09747 22236 154735 -1 11896 15 3603 9451 1894263 474918 0 0 1894263 474918 9451 5128 0 0 61594 58946 0 0 67047 62106 0 0 9844 5784 0 0 873457 170995 0 0 872870 171959 0 0 9451 0 0 5994 16871 19272 130048 0 0 11.5689 11.5689 -7446.16 -11.5689 0 0 978561. 4992.66 0.21 0.40 0.10 -1 -1 0.21 0.118548 0.110213 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 101.61 vpr 206.82 MiB 1.58 122388 -1 -1 5 8.50 -1 -1 70916 -1 -1 706 157 0 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 211784 157 197 23846 21799 1 6628 1060 33 33 1089 clb auto 172.9 MiB 7.51 39660 206.8 MiB 5.72 0.05 2.93357 -13269.6 -2.93357 2.93357 3.05 0.0198372 0.0173212 2.42052 2.0469 48 66913 47 6.0475e+07 3.80493e+07 3.54904e+06 3258.99 59.14 12.4713 10.6438 116215 723657 -1 55807 15 17711 26801 944837 193747 0 0 944837 193747 24516 19009 0 0 36730 28680 0 0 45410 36757 0 0 25039 19608 0 0 409041 45681 0 0 404101 44012 0 0 24516 0 0 6976 35093 35615 206957 2612 2577 3.56714 3.56714 -15459.8 -3.56714 0 0 4.54846e+06 4176.73 1.22 1.21 0.43 -1 -1 1.22 1.20399 1.10312 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 160.75 vpr 239.79 MiB 1.37 107908 -1 -1 3 45.69 -1 -1 84260 -1 -1 680 115 0 40 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 245540 115 145 23133 19546 1 9699 980 40 40 1600 mult_36 auto 173.2 MiB 7.32 81105 208.3 MiB 6.63 0.07 5.21748 -22044.5 -5.21748 5.21748 5.27 0.0201233 0.0158908 2.31124 1.89573 86 129171 43 9.16046e+07 5.24886e+07 8.98461e+06 5615.38 70.02 11.1155 9.40979 212028 1885476 -1 117724 15 31504 49498 21436499 4224925 0 0 21436499 4224925 44127 35657 0 0 530243 516130 0 0 559563 530803 0 0 45579 36684 0 0 9832098 1567534 0 0 10424889 1538117 0 0 44127 0 0 13076 164766 155396 637716 5998 4662 5.68185 5.68185 -25906.1 -5.68185 0 0 1.13675e+07 7104.67 3.30 4.51 1.31 -1 -1 3.30 1.22303 1.11763 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 631.38 vpr 1.42 GiB 2.18 155268 -1 -1 3 7.86 -1 -1 201788 -1 -1 1652 149 0 324 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 1486036 149 182 65737 42630 1 35969 2307 104 104 10816 mult_36 auto 437.3 MiB 23.85 336953 1451.2 MiB 38.84 0.26 14.2356 -61247.3 -14.2356 14.2356 109.87 0.065395 0.0587853 9.91911 8.34597 80 459787 42 6.67561e+08 2.17331e+08 5.94869e+07 5499.90 341.56 47.3082 40.6578 1421150 12563967 -1 438459 18 115719 135845 31571876 6342168 0 0 31571876 6342168 132995 120432 0 0 919852 880239 0 0 1053929 923496 0 0 134066 121693 0 0 14676287 2137206 0 0 14654747 2159102 0 0 132995 0 0 17381 115797 106663 443045 3223 4364 15.8485 15.8485 -70296.7 -15.8485 0 0 7.49726e+07 6931.63 27.92 9.15 8.84 -1 -1 27.92 3.94951 3.5461 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.08 vpr 55.70 MiB 0.08 9940 -1 -1 5 0.15 -1 -1 32716 -1 -1 14 11 0 0 success v8.0.0-7665-g5d69764bf Release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T18:37:45 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 57032 11 30 313 321 2 118 55 7 7 49 clb auto 17.6 MiB 0.28 384 55.7 MiB 0.02 0.00 2.27568 -156.828 -2.27568 2.03361 0.06 0.000179065 0.000134795 0.00894232 0.00760181 30 982 28 1.07788e+06 754516 77114.5 1573.76 0.39 0.0895676 0.0743918 3660 13876 -1 704 13 435 770 24606 8197 0 0 24606 8197 770 615 0 0 1332 1096 0 0 1458 1332 0 0 860 650 0 0 10575 2148 0 0 9611 2356 0 0 770 0 0 335 365 317 2897 0 0 2.49945 2.25671 -184.718 -2.49945 0 0 95414.1 1947.23 0.01 0.02 0.01 -1 -1 0.01 0.0175866 0.0164328 From 4b302e62f95a8ee70c329bbbaece84dfed207bbe Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 25 Apr 2023 15:59:11 -0400 Subject: [PATCH 77/81] make format --- vpr/src/place/RL_agent_util.cpp | 10 +-- vpr/src/place/place.cpp | 2 +- vpr/src/place/simpleRL_move_generator.cpp | 13 ++-- vpr/src/place/simpleRL_move_generator.h | 91 +++++++++++------------ 4 files changed, 56 insertions(+), 60 deletions(-) diff --git a/vpr/src/place/RL_agent_util.cpp b/vpr/src/place/RL_agent_util.cpp index a63fbb824d9..e960e74bff6 100644 --- a/vpr/src/place/RL_agent_util.cpp +++ b/vpr/src/place/RL_agent_util.cpp @@ -117,7 +117,7 @@ void update_move_generator(std::unique_ptr& move_generator, std:: } } -void determine_agent_block_types(){ +void determine_agent_block_types() { //Loop through all available logical block types and store the ones that exist in the netlist auto& device_ctx = g_vpr_ctx.device(); auto& cluster_ctx = g_vpr_ctx.clustering(); @@ -125,12 +125,12 @@ void determine_agent_block_types(){ int agent_type_index = 0; for (auto itype : device_ctx.logical_block_types) { if (itype.index == 0) //ignore empty type - continue; + continue; auto blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(itype); if (blk_per_type.size() != 0) { - place_ctx.phys_blk_type_to_agent_blk_type_map.insert(std::pair(agent_type_index, itype.index)); - place_ctx.agent_blk_type_to_phys_blk_type_map.insert(std::pair(itype.index, agent_type_index)); - agent_type_index++; + place_ctx.phys_blk_type_to_agent_blk_type_map.insert(std::pair(agent_type_index, itype.index)); + place_ctx.agent_blk_type_to_phys_blk_type_map.insert(std::pair(itype.index, agent_type_index)); + agent_type_index++; } } } \ No newline at end of file diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index a31a71bcff3..ff67c934e62 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -3224,7 +3224,7 @@ static void print_placement_move_types_stats( float moves, accepted, rejected, aborted; float total_moves = 0; - for(size_t iaction = 0; iaction < move_type_stat.blk_type_moves.size(); iaction++){ + for (size_t iaction = 0; iaction < move_type_stat.blk_type_moves.size(); iaction++) { total_moves += move_type_stat.blk_type_moves[iaction]; } diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 79d10f163fa..3f9c92f6ae0 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -82,12 +82,12 @@ void KArmedBanditAgent::process_outcome(double reward, e_reward_function reward_ //write agent internal q-table and actions into a file for debugging purposes //agent_info_file_ variable is a NULL pointer by default //info file is not generated unless the agent_info_file_ set to a filename in "init_q_scores" function - if(agent_info_file_) { + if (agent_info_file_) { write_agent_info(last_action_, reward); } } -void KArmedBanditAgent::write_agent_info(int last_action, double reward){ +void KArmedBanditAgent::write_agent_info(int last_action, double reward) { fseek(agent_info_file_, 0, SEEK_END); fprintf(agent_info_file_, "%d,", last_action); fprintf(agent_info_file_, "%g,", reward); @@ -134,9 +134,9 @@ void EpsilonGreedyAgent::init_q_scores() { //agent_info_file_ = vtr::fopen("agent_info.txt", "w"); //write agent internal q-table and actions into file for debugging purposes - if(agent_info_file_) { + if (agent_info_file_) { //we haven't performed any moves yet, hence last_aciton and reward are 0 - write_agent_info(0,0); + write_agent_info(0, 0); } set_epsilon_action_prob(); @@ -255,9 +255,9 @@ void SoftmaxAgent::init_q_scores() { // agent_info_file_ = vtr::fopen("agent_info.txt", "w"); //write agent internal q-table and actions into file for debugging purposes - if(agent_info_file_) { + if (agent_info_file_) { //we haven't performed any moves yet, hence last_aciton and reward are 0 - write_agent_info(0,0); + write_agent_info(0, 0); } /* @@ -269,7 +269,6 @@ void SoftmaxAgent::init_q_scores() { set_block_ratio(); } set_action_prob(); - } t_propose_action SoftmaxAgent::propose_action() { diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index e9c2554e1a5..f8f16602881 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -17,27 +17,27 @@ class KArmedBanditAgent { virtual ~KArmedBanditAgent() {} /** - * @brief Choose a move type to perform and a block type that move should be performed with based on Q-table - * - * @return A move type and a block type as a "t_propose_action" struct - * If the agent is set to only propose move type, then block type index in the struct will be set to -1 - */ + * @brief Choose a move type to perform and a block type that move should be performed with based on Q-table + * + * @return A move type and a block type as a "t_propose_action" struct + * If the agent is set to only propose move type, then block type index in the struct will be set to -1 + */ virtual t_propose_action propose_action() = 0; /** - * @brief Update the agent Q-table based on the reward received by the SA algorithm - * - * @param reward A double value calculated in "place.cpp" file showing how placement cost was affected by the prior action taken - * @param reward_func The reward function used by the agent, detail explanation can be found on "directed_moves_util.h" file - */ + * @brief Update the agent Q-table based on the reward received by the SA algorithm + * + * @param reward A double value calculated in "place.cpp" file showing how placement cost was affected by the prior action taken + * @param reward_func The reward function used by the agent, detail explanation can be found on "directed_moves_util.h" file + */ void process_outcome(double, e_reward_function); /** - * @brief write all agent internal information (Q-table, reward for each performed action, ...) to a file (agent_info_file_) - * - * @param last_action Last action performed by the RL-agent - * @param reward A double value calculated in "place.cpp" file showing how placement cost was affected by the prior action taken - */ + * @brief write all agent internal information (Q-table, reward for each performed action, ...) to a file (agent_info_file_) + * + * @param last_action Last action performed by the RL-agent + * @param reward A double value calculated in "place.cpp" file showing how placement cost was affected by the prior action taken + */ void write_agent_info(int last_action, double reward); protected: @@ -72,32 +72,31 @@ class EpsilonGreedyAgent : public KArmedBanditAgent { t_propose_action propose_action() override; //Returns the type of the next action as well as the block type the agent wishes to perform public: - /** - * @brief Set the user-specified epsilon for the E-greedy agent - * - * @param epsilon Epsilon value for the agent, can be specified by the command-line option "--place_agent_epsilon" - * Epsilon default value is 0.3. - */ + * @brief Set the user-specified epsilon for the E-greedy agent + * + * @param epsilon Epsilon value for the agent, can be specified by the command-line option "--place_agent_epsilon" + * Epsilon default value is 0.3. + */ void set_epsilon(float epsilon); /** - * @brief Set equal action probability to all available actions. - */ + * @brief Set equal action probability to all available actions. + */ void set_epsilon_action_prob(); /** - * @brief Set step size for q-table updates - * - * @param gamma Controls how quickly the agent's memory decays, can be specified by the command-line option "--place_agent_gamma" - * Gamma default value is 0.05. - * @param move_lim Number of moves per temperature - */ + * @brief Set step size for q-table updates + * + * @param gamma Controls how quickly the agent's memory decays, can be specified by the command-line option "--place_agent_gamma" + * Gamma default value is 0.05. + * @param move_lim Number of moves per temperature + */ void set_step(float gamma, int move_lim); /** - * @brief Initialize agent's Q-table and internal variable to zero (RL-agent learns everything throughout the placement run and has no prior knowledge) - */ + * @brief Initialize agent's Q-table and internal variable to zero (RL-agent learns everything throughout the placement run and has no prior knowledge) + */ void init_q_scores(); private: @@ -122,32 +121,30 @@ class SoftmaxAgent : public KArmedBanditAgent { t_propose_action propose_action() override; //Returns the type of the next action as well as the block type the agent wishes to perform public: - /** - * @brief Calculate the fraction of total netlist blocks for each agent block type and will be used by the "set_action_prob" function. - */ + * @brief Calculate the fraction of total netlist blocks for each agent block type and will be used by the "set_action_prob" function. + */ void set_block_ratio(); - /** - * @brief Set action probability for all available actions. - * If agent only proposes move type, the action probabilities would be equal for all move types at the beginning. - * If agent proposes both move and block type, the action_prob for each action would be based on its block type count in the netlist. - */ + * @brief Set action probability for all available actions. + * If agent only proposes move type, the action probabilities would be equal for all move types at the beginning. + * If agent proposes both move and block type, the action_prob for each action would be based on its block type count in the netlist. + */ void set_action_prob(); /** - * @brief Set step size for q-table updates - * - * @param gamma Controls how quickly the agent's memory decays, can be specified by the command-line option "--place_agent_gamma" - * Gamma default value is 0.05. - * @param move_lim Number of moves per temperature - */ + * @brief Set step size for q-table updates + * + * @param gamma Controls how quickly the agent's memory decays, can be specified by the command-line option "--place_agent_gamma" + * Gamma default value is 0.05. + * @param move_lim Number of moves per temperature + */ void set_step(float gamma, int move_lim); /** - * @brief Initialize agent's Q-table and internal variable to zero (RL-agent learns everything throughout the placement run and has no prior knowledge) - */ + * @brief Initialize agent's Q-table and internal variable to zero (RL-agent learns everything throughout the placement run and has no prior knowledge) + */ void init_q_scores(); private: From 2d751800a2b01660b197bb2945bc3c8cf2d9955c Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 4 May 2023 15:32:56 -0400 Subject: [PATCH 78/81] avoid updating move statistics if block type is not specified --- vpr/src/place/place.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 844eafe2eee..83ca223b057 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -1613,8 +1613,9 @@ static e_move_result try_swap(const t_annealing_state* state, /* Update clb data structures since we kept the move. */ commit_move_blocks(blocks_affected); - ++move_type_stat.accepted_moves[(move_blk_type.index * (placer_opts.place_static_move_prob.size())) + (int)move_type]; - + if (move_blk_type.index != -1) { //if the agent proposed the block type, then collect the block type stat + ++move_type_stat.accepted_moves[(move_blk_type.index * (placer_opts.place_static_move_prob.size())) + (int)move_type]; + } if (noc_opts.noc) { commit_noc_costs(number_of_affected_noc_traffic_flows); @@ -1670,8 +1671,9 @@ static e_move_result try_swap(const t_annealing_state* state, revert_td_cost(blocks_affected); } - ++move_type_stat.rejected_moves[(move_blk_type.index * (placer_opts.place_static_move_prob.size())) + (int)move_type]; - + if (move_blk_type.index != -1) { //if the agent proposed the block type, then collect the block type stat + ++move_type_stat.rejected_moves[(move_blk_type.index * (placer_opts.place_static_move_prob.size())) + (int)move_type]; + } /* Revert the traffic flow routes within the NoC*/ if (noc_opts.noc) { revert_noc_traffic_flow_routes(blocks_affected); From e57cda9f09ad7fa74a46f77bbb1df8f42dde2166 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 4 May 2023 19:35:52 -0400 Subject: [PATCH 79/81] updated golden result for vtr_reg_nightly_test1 --- .../multless_consts/config/golden_results.txt | 2048 ++++++++--------- 1 file changed, 1024 insertions(+), 1024 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt index 022ca67995a..7d97e1ff84e 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 place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops crit_path_total_internal_heap_pushes crit_path_total_internal_heap_pops crit_path_total_external_heap_pushes crit_path_total_external_heap_pops crit_path_total_external_SOURCE_pushes crit_path_total_external_SOURCE_pops crit_path_total_internal_SOURCE_pushes crit_path_total_internal_SOURCE_pops crit_path_total_external_SINK_pushes crit_path_total_external_SINK_pops crit_path_total_internal_SINK_pushes crit_path_total_internal_SINK_pops crit_path_total_external_IPIN_pushes crit_path_total_external_IPIN_pops crit_path_total_internal_IPIN_pushes crit_path_total_internal_IPIN_pops crit_path_total_external_OPIN_pushes crit_path_total_external_OPIN_pops crit_path_total_internal_OPIN_pushes crit_path_total_internal_OPIN_pops crit_path_total_external_CHANX_pushes crit_path_total_external_CHANX_pops crit_path_total_internal_CHANX_pushes crit_path_total_internal_CHANX_pops crit_path_total_external_CHANY_pushes crit_path_total_external_CHANY_pops crit_path_total_internal_CHANY_pushes crit_path_total_internal_CHANY_pops crit_path_rt_node_SOURCE_pushes crit_path_rt_node_SINK_pushes crit_path_rt_node_IPIN_pushes crit_path_rt_node_OPIN_pushes crit_path_rt_node_CHANX_pushes crit_path_rt_node_CHANY_pushes crit_path_adding_all_rt crit_path_adding_high_fanout_rt crit_path_total_number_of_adding_all_rt_from_calling_high_fanout_rt critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 6.52 vpr 53.16 MiB -1 -1 0.15 17548 14 0.32 -1 -1 32176 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54440 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 14.6 MiB 0.37 1389 53.2 MiB 0.04 0.00 6.52936 -137.096 -6.52936 6.52936 0.58 0.000167085 0.000135188 0.0100502 0.0083374 32 3881 45 6.55708e+06 325485 554710. 1919.41 3.22 0.120523 0.103813 22174 131602 -1 3423 47 2390 8119 950380 367097 0 0 950380 367097 8119 4736 0 0 28053 23056 0 0 54064 35635 0 0 8119 5583 0 0 424782 149788 0 0 427243 148299 0 0 8119 0 0 5729 12476 12169 69851 0 0 7.25056 7.25056 -165.952 -7.25056 0 0 701300. 2426.64 0.19 0.18 0.07 -1 -1 0.19 0.0227328 0.0199962 183 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 5.09 vpr 53.29 MiB -1 -1 0.25 17692 14 0.38 -1 -1 32376 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54564 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 14.6 MiB 0.54 1212 53.3 MiB 0.04 0.00 6.76976 -130.82 -6.76976 6.76976 0.58 0.000193666 0.000161187 0.0106125 0.00883452 28 3699 44 6.55708e+06 373705 500653. 1732.36 1.88 0.0668587 0.0587062 21310 115450 -1 3171 19 1590 4710 294141 67778 0 0 294141 67778 4710 2554 0 0 16187 13540 0 0 25500 19106 0 0 4710 2981 0 0 121366 14989 0 0 121668 14608 0 0 4710 0 0 3120 5855 6519 38198 0 0 7.17416 7.17416 -153.878 -7.17416 0 0 612192. 2118.31 0.17 0.06 0.06 -1 -1 0.17 0.0140193 0.0127089 184 181 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 5.69 vpr 53.26 MiB -1 -1 0.12 17472 11 0.30 -1 -1 32216 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 14.6 MiB 0.43 1329 53.3 MiB 0.05 0.00 5.87124 -120.512 -5.87124 5.87124 0.64 0.000181263 0.000140133 0.0110507 0.00902822 28 4037 43 6.55708e+06 313430 500653. 1732.36 2.47 0.0667267 0.0581822 21310 115450 -1 3260 27 1745 6552 571935 168183 0 0 571935 168183 6552 3069 0 0 21793 18165 0 0 35726 25169 0 0 6552 3673 0 0 247212 59673 0 0 254100 58434 0 0 6552 0 0 4807 11897 12099 72627 0 0 6.15344 6.15344 -139.362 -6.15344 0 0 612192. 2118.31 0.17 0.10 0.06 -1 -1 0.17 0.0163816 0.0146904 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 5.63 vpr 53.38 MiB -1 -1 0.16 17524 12 0.39 -1 -1 32204 -1 -1 30 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54664 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 14.9 MiB 0.67 1298 53.4 MiB 0.03 0.00 6.1983 -120.704 -6.1983 6.1983 0.58 0.000168876 0.000137044 0.00805426 0.00671427 36 3495 44 6.55708e+06 361650 612192. 2118.31 2.20 0.0966824 0.0852114 22750 144809 -1 2993 28 1377 4601 417723 148693 0 0 417723 148693 4601 2179 0 0 15122 12498 0 0 25467 17754 0 0 4601 2767 0 0 180694 56754 0 0 187238 56741 0 0 4601 0 0 3224 5822 6046 38271 0 0 6.78964 6.78964 -138.304 -6.78964 0 0 782063. 2706.10 0.20 0.09 0.08 -1 -1 0.20 0.017345 0.0155688 190 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 4.80 vpr 53.44 MiB -1 -1 0.24 17436 13 0.37 -1 -1 32188 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54720 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 14.9 MiB 0.57 1517 53.4 MiB 0.05 0.00 6.50744 -139.044 -6.50744 6.50744 0.75 0.000186964 0.000151778 0.0112939 0.00948046 30 3842 30 6.55708e+06 373705 526063. 1820.29 0.94 0.06202 0.054439 21886 126133 -1 3207 17 1492 4352 203820 49148 0 0 203820 49148 4352 2229 0 0 14028 11506 0 0 19513 14926 0 0 4352 2744 0 0 80198 8986 0 0 81377 8757 0 0 4352 0 0 2860 4923 4295 32414 0 0 6.5981 6.5981 -156.158 -6.5981 0 0 666494. 2306.21 0.19 0.05 0.07 -1 -1 0.19 0.0142449 0.0130289 210 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.53 vpr 53.31 MiB -1 -1 0.22 17544 13 0.29 -1 -1 32148 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 14.8 MiB 0.44 1415 53.3 MiB 0.04 0.00 6.3185 -131.425 -6.3185 6.3185 0.60 0.000182356 0.000145594 0.00941041 0.00784961 36 3592 27 6.55708e+06 385760 612192. 2118.31 3.44 0.133114 0.11606 22750 144809 -1 3134 17 1245 4000 209302 48204 0 0 209302 48204 4000 1784 0 0 13395 10705 0 0 20257 15092 0 0 4000 2260 0 0 82407 9309 0 0 85243 9054 0 0 4000 0 0 2755 4959 5509 34961 0 0 6.63024 6.63024 -147.594 -6.63024 0 0 782063. 2706.10 0.20 0.04 0.08 -1 -1 0.20 0.0133222 0.0121701 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.41 vpr 52.87 MiB -1 -1 0.18 17256 12 0.24 -1 -1 32096 -1 -1 27 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54140 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 14.3 MiB 0.29 1062 52.9 MiB 0.04 0.00 5.95024 -109.358 -5.95024 5.95024 0.92 0.000144071 0.000117315 0.00996486 0.00811834 30 2469 18 6.55708e+06 325485 526063. 1820.29 1.98 0.0660681 0.0562487 21886 126133 -1 2129 16 963 2662 117505 28698 0 0 117505 28698 2662 1226 0 0 8524 6810 0 0 11871 9063 0 0 2662 1522 0 0 46684 4951 0 0 45102 5126 0 0 2662 0 0 1699 2231 2407 17323 0 0 6.31084 6.31084 -123.284 -6.31084 0 0 666494. 2306.21 0.18 0.03 0.07 -1 -1 0.18 0.0098404 0.00894804 152 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.18 vpr 52.82 MiB -1 -1 0.19 17532 12 0.21 -1 -1 32292 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54092 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 14.3 MiB 0.27 1261 52.8 MiB 0.06 0.00 5.1068 -113.491 -5.1068 5.1068 0.95 0.000228802 0.000182738 0.0125762 0.0105383 36 3077 37 6.55708e+06 265210 612192. 2118.31 2.66 0.0747151 0.0655231 22750 144809 -1 2664 15 1037 3077 176903 40466 0 0 176903 40466 3077 1610 0 0 10518 8736 0 0 16229 12102 0 0 3077 1863 0 0 70854 8225 0 0 73148 7930 0 0 3077 0 0 2040 3962 4203 26262 0 0 5.68992 5.68992 -133.074 -5.68992 0 0 782063. 2706.10 0.20 0.04 0.08 -1 -1 0.20 0.00984658 0.00903783 140 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 6.12 vpr 52.78 MiB -1 -1 0.22 17580 12 0.19 -1 -1 32048 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54044 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 14.2 MiB 0.31 1233 52.8 MiB 0.08 0.00 5.43586 -115.338 -5.43586 5.43586 0.99 0.000259176 0.000211278 0.0179736 0.0150152 36 2808 19 6.55708e+06 313430 612192. 2118.31 2.37 0.0983909 0.0849787 22750 144809 -1 2483 15 1000 2603 152038 35488 0 0 152038 35488 2603 1439 0 0 9050 7439 0 0 14232 10686 0 0 2603 1716 0 0 60671 7282 0 0 62879 6926 0 0 2603 0 0 1603 2240 2483 16609 0 0 5.55806 5.55806 -131.568 -5.55806 0 0 782063. 2706.10 0.20 0.03 0.08 -1 -1 0.20 0.00998431 0.0091548 150 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 6.66 vpr 52.92 MiB -1 -1 0.19 17452 13 0.18 -1 -1 32028 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54188 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 14.3 MiB 0.36 1144 52.9 MiB 0.08 0.00 6.22784 -133.488 -6.22784 6.22784 0.78 0.000305924 0.000247864 0.0200863 0.0165705 34 3345 25 6.55708e+06 301375 585099. 2024.56 3.43 0.144678 0.126889 22462 138074 -1 2596 15 1165 3120 186825 45550 0 0 186825 45550 3120 1703 0 0 11091 8993 0 0 16943 12870 0 0 3120 2034 0 0 75188 10007 0 0 77363 9943 0 0 3120 0 0 1955 3184 3277 21964 0 0 6.61798 6.61798 -157.257 -6.61798 0 0 742403. 2568.87 0.21 0.04 0.07 -1 -1 0.21 0.0108939 0.0100145 157 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.10 vpr 52.70 MiB -1 -1 0.22 17612 12 0.22 -1 -1 31904 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53968 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 14.3 MiB 0.36 1091 52.7 MiB 0.08 0.00 5.79284 -116.37 -5.79284 5.79284 1.00 0.000256328 0.000209726 0.0186849 0.0155973 28 2783 23 6.55708e+06 289320 500653. 1732.36 2.31 0.0952438 0.0832217 21310 115450 -1 2414 26 918 2409 257210 102693 0 0 257210 102693 2409 1349 0 0 8382 6742 0 0 13994 10356 0 0 2409 1632 0 0 114801 42274 0 0 115215 40340 0 0 2409 0 0 1491 2261 2554 16305 0 0 6.03324 6.03324 -136.106 -6.03324 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0123213 0.0110618 132 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.04 vpr 52.73 MiB -1 -1 0.17 17632 12 0.17 -1 -1 32076 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53996 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 14.2 MiB 0.30 1224 52.7 MiB 0.03 0.00 5.35486 -125.963 -5.35486 5.35486 0.92 0.000150307 0.000121591 0.0077 0.00652764 28 3143 31 6.55708e+06 265210 500653. 1732.36 3.60 0.0925276 0.0810747 21310 115450 -1 2774 16 1096 2998 191188 43573 0 0 191188 43573 2998 1700 0 0 10435 8528 0 0 15990 11946 0 0 2998 1927 0 0 80159 9720 0 0 78608 9752 0 0 2998 0 0 1902 3377 3572 22131 0 0 5.83566 5.83566 -147.106 -5.83566 0 0 612192. 2118.31 0.17 0.04 0.07 -1 -1 0.17 0.00988592 0.00900461 146 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 8.20 vpr 53.29 MiB -1 -1 0.24 17440 13 0.27 -1 -1 32248 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54572 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 14.9 MiB 0.23 1442 53.3 MiB 0.06 0.00 6.60776 -142.469 -6.60776 6.60776 0.98 0.000346347 0.000288836 0.0133962 0.0114951 28 3749 31 6.55708e+06 361650 500653. 1732.36 4.60 0.12255 0.108402 21310 115450 -1 3232 18 1325 3790 231008 52889 0 0 231008 52889 3790 2016 0 0 13180 10691 0 0 20527 15524 0 0 3790 2316 0 0 94581 11343 0 0 95140 10999 0 0 3790 0 0 2465 4638 5257 32948 0 0 6.96836 6.96836 -161.405 -6.96836 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.013788 0.0125975 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 4.84 vpr 53.39 MiB -1 -1 0.24 17432 14 0.39 -1 -1 32320 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54668 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 14.7 MiB 0.41 1620 53.4 MiB 0.04 0.00 7.20676 -154.078 -7.20676 7.20676 0.76 0.000185126 0.000149037 0.00989222 0.00829103 30 3839 37 6.55708e+06 361650 526063. 1820.29 1.02 0.0679226 0.0598168 21886 126133 -1 3149 17 1408 4054 194194 46479 0 0 194194 46479 4054 1834 0 0 13299 10648 0 0 18515 14248 0 0 4054 2210 0 0 77025 8754 0 0 77247 8785 0 0 4054 0 0 2646 4426 4637 31311 0 0 7.48636 7.48636 -171.704 -7.48636 0 0 666494. 2306.21 0.19 0.05 0.08 -1 -1 0.19 0.0152992 0.0140279 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.63 vpr 52.91 MiB -1 -1 0.17 17204 11 0.24 -1 -1 32076 -1 -1 27 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54180 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 14.4 MiB 0.34 1113 52.9 MiB 0.02 0.00 5.89878 -113.462 -5.89878 5.89878 0.97 0.000153703 0.000120814 0.00531141 0.00451516 28 2723 18 6.55708e+06 325485 500653. 1732.36 1.04 0.0493638 0.0434133 21310 115450 -1 2443 17 1029 2879 164178 38754 0 0 164178 38754 2879 1705 0 0 9912 8073 0 0 15442 11565 0 0 2879 1984 0 0 64716 8050 0 0 68350 7377 0 0 2879 0 0 1850 3226 2832 19997 0 0 6.13918 6.13918 -127.95 -6.13918 0 0 612192. 2118.31 0.19 0.04 0.10 -1 -1 0.19 0.0103713 0.00944681 147 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.95 vpr 53.47 MiB -1 -1 0.23 17488 12 0.35 -1 -1 32228 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54756 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 14.9 MiB 0.31 1480 53.5 MiB 0.13 0.00 5.95024 -123.259 -5.95024 5.95024 0.77 0.000341163 0.000272374 0.0309652 0.0255273 36 4399 50 6.55708e+06 397815 612192. 2118.31 4.40 0.150828 0.131406 22750 144809 -1 3203 25 1532 5024 454992 160396 0 0 454992 160396 5024 2422 0 0 16828 13722 0 0 27065 19695 0 0 5024 2953 0 0 201614 63078 0 0 199437 58526 0 0 5024 0 0 3492 8413 8124 48913 0 0 6.47284 6.47284 -146.294 -6.47284 0 0 782063. 2706.10 0.21 0.10 0.08 -1 -1 0.21 0.020393 0.0185943 209 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 7.79 vpr 53.16 MiB -1 -1 0.20 17356 14 0.34 -1 -1 32208 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54432 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 14.5 MiB 0.40 1478 53.2 MiB 0.06 0.00 6.18864 -133.089 -6.18864 6.18864 1.01 0.000336868 0.000276041 0.014658 0.012303 36 3767 47 6.55708e+06 349595 612192. 2118.31 3.80 0.171015 0.151988 22750 144809 -1 3089 17 1374 4083 240340 53799 0 0 240340 53799 4083 1977 0 0 13833 11415 0 0 21724 15992 0 0 4083 2475 0 0 95904 11345 0 0 100713 10595 0 0 4083 0 0 2709 4979 5511 34418 0 0 6.42904 6.42904 -148.142 -6.42904 0 0 782063. 2706.10 0.23 0.05 0.12 -1 -1 0.23 0.0138249 0.0126102 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 6.78 vpr 52.83 MiB -1 -1 0.22 17360 12 0.18 -1 -1 31856 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 14.3 MiB 0.43 1184 52.8 MiB 0.06 0.00 5.7221 -133.678 -5.7221 5.7221 0.97 0.000275705 0.000226899 0.0133973 0.0111617 28 2709 18 6.55708e+06 277265 500653. 1732.36 3.12 0.104739 0.0918532 21310 115450 -1 2391 16 861 2478 136948 32380 0 0 136948 32380 2478 1355 0 0 8691 6958 0 0 12886 9846 0 0 2478 1532 0 0 54480 6411 0 0 55935 6278 0 0 2478 0 0 1617 2916 3025 19610 0 0 5.9625 5.9625 -149.294 -5.9625 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.0101516 0.00928124 140 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.48 vpr 52.29 MiB -1 -1 0.16 16908 10 0.11 -1 -1 31700 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53548 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 13.8 MiB 0.21 866 52.3 MiB 0.03 0.00 4.49614 -104.391 -4.49614 4.49614 1.00 0.000207342 0.000171736 0.00622234 0.00530128 26 2151 20 6.55708e+06 192880 477104. 1650.88 1.13 0.051955 0.0462204 21022 109990 -1 1809 13 625 1550 96030 22982 0 0 96030 22982 1550 916 0 0 5729 4666 0 0 8631 6657 0 0 1550 1065 0 0 39897 4833 0 0 38673 4845 0 0 1550 0 0 925 995 1231 8545 0 0 4.73654 4.73654 -118.935 -4.73654 0 0 585099. 2024.56 0.27 0.04 0.09 -1 -1 0.27 0.011493 0.0105331 91 84 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 6.54 vpr 52.90 MiB -1 -1 0.22 17468 13 0.23 -1 -1 32100 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54168 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 14.4 MiB 0.43 1233 52.9 MiB 0.03 0.00 5.77858 -122.39 -5.77858 5.77858 0.60 0.000153384 0.000126381 0.00651973 0.0056013 32 3543 35 6.55708e+06 289320 554710. 1919.41 3.14 0.141627 0.124459 22174 131602 -1 2689 24 1249 3416 243942 57714 0 0 243942 57714 3416 1937 0 0 12238 9797 0 0 21276 15448 0 0 3416 2276 0 0 102832 14165 0 0 100764 14091 0 0 3416 0 0 2167 3330 3411 22876 0 0 6.37958 6.37958 -147.976 -6.37958 0 0 701300. 2426.64 0.23 0.06 0.11 -1 -1 0.23 0.0185101 0.0170292 144 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.43 vpr 53.40 MiB -1 -1 0.22 17600 13 0.34 -1 -1 32256 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 14.8 MiB 0.54 1446 53.4 MiB 0.07 0.00 6.8013 -133.663 -6.8013 6.8013 1.01 0.000365782 0.000301735 0.0177787 0.0150242 30 3632 23 6.55708e+06 373705 526063. 1820.29 1.17 0.094283 0.083603 21886 126133 -1 3038 18 1345 4042 187625 45334 0 0 187625 45334 4042 1716 0 0 13447 10971 0 0 18204 14262 0 0 4042 2192 0 0 74711 7943 0 0 73179 8250 0 0 4042 0 0 2697 4896 5243 33818 0 0 6.93116 6.93116 -151.62 -6.93116 0 0 666494. 2306.21 0.25 0.05 0.11 -1 -1 0.25 0.0148223 0.0135272 211 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.53 vpr 53.20 MiB -1 -1 0.25 17716 13 0.39 -1 -1 32252 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54480 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 14.7 MiB 0.58 1526 53.2 MiB 0.04 0.00 6.6399 -141.079 -6.6399 6.6399 0.68 0.000174623 0.000141976 0.00859057 0.00717755 46 3540 18 6.55708e+06 325485 782063. 2706.10 2.32 0.119837 0.107452 24766 183262 -1 3073 17 1294 4376 229971 50638 0 0 229971 50638 4376 1813 0 0 13915 11673 0 0 21317 15264 0 0 4376 2360 0 0 91440 10082 0 0 94547 9446 0 0 4376 0 0 3082 5746 5633 38625 0 0 6.70864 6.70864 -154.66 -6.70864 0 0 958460. 3316.47 0.40 0.08 0.17 -1 -1 0.40 0.0249879 0.0229195 194 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.89 vpr 52.31 MiB -1 -1 0.16 16912 9 0.11 -1 -1 31564 -1 -1 24 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53564 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 13.9 MiB 0.21 729 52.3 MiB 0.03 0.00 4.2302 -82.3532 -4.2302 4.2302 0.74 9.7335e-05 7.9509e-05 0.00681979 0.00567541 26 1817 41 6.55708e+06 289320 477104. 1650.88 1.11 0.0522731 0.0458359 21022 109990 -1 1611 19 637 1613 94345 22209 0 0 94345 22209 1613 934 0 0 5490 4424 0 0 8880 6435 0 0 1613 1076 0 0 38649 4739 0 0 38100 4601 0 0 1613 0 0 976 1226 1484 9901 0 0 4.5908 4.5908 -95.5864 -4.5908 0 0 585099. 2024.56 0.26 0.05 0.08 -1 -1 0.26 0.0143711 0.0131059 87 69 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.06 vpr 53.30 MiB -1 -1 0.20 17584 13 0.38 -1 -1 32820 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 14.9 MiB 0.33 1436 53.3 MiB 0.08 0.00 6.4433 -127.373 -6.4433 6.4433 0.71 0.00032724 0.000268875 0.0191813 0.0158962 30 4226 35 6.55708e+06 301375 526063. 1820.29 2.42 0.0962314 0.0844703 21886 126133 -1 3178 32 1495 4528 384451 135019 0 0 384451 135019 4528 2173 0 0 14472 12252 0 0 21497 15952 0 0 4528 2630 0 0 174641 52313 0 0 164785 49699 0 0 4528 0 0 3033 5259 5609 35485 0 0 6.6837 6.6837 -146.261 -6.6837 0 0 666494. 2306.21 0.28 0.16 0.11 -1 -1 0.28 0.0397848 0.0361377 193 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 6.49 vpr 52.18 MiB -1 -1 0.14 17020 8 0.11 -1 -1 32068 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53432 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 13.6 MiB 0.16 572 52.2 MiB 0.07 0.00 3.37088 -74.2225 -3.37088 3.37088 0.72 0.000167737 0.000133983 0.0141719 0.0115605 34 1688 29 6.55708e+06 192880 585099. 2024.56 3.38 0.0986045 0.085149 22462 138074 -1 1334 14 612 1341 80611 21718 0 0 80611 21718 1341 809 0 0 4973 4012 0 0 7450 5889 0 0 1341 950 0 0 32384 5048 0 0 33122 5010 0 0 1341 0 0 729 784 1002 6574 0 0 3.62554 3.62554 -90.2316 -3.62554 0 0 742403. 2568.87 0.20 0.02 0.13 -1 -1 0.20 0.0058455 0.00530303 77 59 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 7.80 vpr 53.04 MiB -1 -1 0.20 17408 15 0.20 -1 -1 32768 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54312 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 14.5 MiB 0.44 1280 53.0 MiB 0.08 0.00 6.4785 -131.459 -6.4785 6.4785 0.66 0.000292387 0.000237344 0.0187398 0.0154892 38 3018 32 6.55708e+06 337540 638502. 2209.35 4.41 0.172887 0.151506 23326 155178 -1 2451 17 1132 3319 152764 37034 0 0 152764 37034 3319 1432 0 0 10830 8802 0 0 15838 11893 0 0 3319 1776 0 0 59737 6715 0 0 59721 6416 0 0 3319 0 0 2187 3215 3119 23060 0 0 6.8783 6.8783 -150.046 -6.8783 0 0 851065. 2944.86 0.22 0.04 0.09 -1 -1 0.22 0.0127491 0.0116553 165 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.88 vpr 53.14 MiB -1 -1 0.22 17612 13 0.30 -1 -1 32292 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 14.6 MiB 0.34 1368 53.1 MiB 0.03 0.00 5.80612 -130.083 -5.80612 5.80612 0.78 0.000177305 0.000146217 0.00720387 0.00612528 44 2983 23 6.55708e+06 313430 742403. 2568.87 3.13 0.113399 0.0997029 24478 177802 -1 2570 15 1018 2833 147835 34249 0 0 147835 34249 2833 1332 0 0 9467 7680 0 0 14274 10883 0 0 2833 1708 0 0 58991 6431 0 0 59437 6215 0 0 2833 0 0 1815 2784 2995 20915 0 0 6.13718 6.13718 -147.467 -6.13718 0 0 937218. 3242.97 0.39 0.06 0.15 -1 -1 0.39 0.0220178 0.0203446 168 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 7.54 vpr 53.25 MiB -1 -1 0.22 17448 13 0.36 -1 -1 32304 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 14.6 MiB 0.29 1374 53.3 MiB 0.07 0.00 6.5609 -138.596 -6.5609 6.5609 0.97 0.00020105 0.000158104 0.0164581 0.0134711 28 4106 46 6.55708e+06 349595 500653. 1732.36 3.62 0.123736 0.109113 21310 115450 -1 3284 20 1752 5516 364091 80469 0 0 364091 80469 5516 2841 0 0 18560 15140 0 0 29622 21509 0 0 5516 3400 0 0 151375 18901 0 0 153502 18678 0 0 5516 0 0 3764 7719 8297 48512 0 0 7.03004 7.03004 -162.585 -7.03004 0 0 612192. 2118.31 0.20 0.11 0.07 -1 -1 0.20 0.0250255 0.0225184 187 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 5.38 vpr 52.92 MiB -1 -1 0.20 17596 12 0.21 -1 -1 32064 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54188 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 14.4 MiB 0.43 1309 52.9 MiB 0.07 0.00 5.57998 -124.292 -5.57998 5.57998 0.87 0.000263116 0.000212897 0.0156532 0.0128937 34 3200 18 6.55708e+06 277265 585099. 2024.56 1.60 0.0632269 0.054888 22462 138074 -1 2819 18 1110 3240 205965 46142 0 0 205965 46142 3240 1785 0 0 11210 9181 0 0 18106 13261 0 0 3240 2091 0 0 83547 10119 0 0 86622 9705 0 0 3240 0 0 2130 3623 3844 24193 0 0 5.84992 5.84992 -142.369 -5.84992 0 0 742403. 2568.87 0.29 0.07 0.12 -1 -1 0.29 0.020188 0.0184526 147 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.83 vpr 52.77 MiB -1 -1 0.21 17324 11 0.17 -1 -1 32164 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54036 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 14.1 MiB 0.26 1043 52.8 MiB 0.06 0.00 5.26058 -113.411 -5.26058 5.26058 1.02 0.000252271 0.000206875 0.0145506 0.0121086 28 2742 20 6.55708e+06 277265 500653. 1732.36 1.14 0.0564502 0.0492017 21310 115450 -1 2328 16 935 2573 157684 36129 0 0 157684 36129 2573 1450 0 0 8890 7178 0 0 13453 10231 0 0 2573 1669 0 0 65227 7912 0 0 64968 7689 0 0 2573 0 0 1638 2622 2572 18009 0 0 5.74138 5.74138 -131.441 -5.74138 0 0 612192. 2118.31 0.19 0.06 0.11 -1 -1 0.19 0.0201895 0.0186698 131 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 7.00 vpr 52.91 MiB -1 -1 0.17 17256 11 0.22 -1 -1 32020 -1 -1 28 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54176 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 14.4 MiB 0.53 1012 52.9 MiB 0.07 0.00 5.29978 -104.369 -5.29978 5.29978 0.97 0.000277354 0.000229279 0.0174486 0.014608 30 2396 16 6.55708e+06 337540 526063. 1820.29 2.98 0.124182 0.108737 21886 126133 -1 1953 16 854 2338 107648 26441 0 0 107648 26441 2338 1120 0 0 7767 6079 0 0 10551 8344 0 0 2338 1348 0 0 41504 4913 0 0 43150 4637 0 0 2338 0 0 1484 2162 2175 15853 0 0 5.86158 5.86158 -122.232 -5.86158 0 0 666494. 2306.21 0.31 0.04 0.12 -1 -1 0.31 0.0159433 0.0148907 150 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 7.65 vpr 53.44 MiB -1 -1 0.14 17188 12 0.17 -1 -1 32216 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 14.6 MiB 0.32 1234 53.4 MiB 0.07 0.00 5.9619 -130.268 -5.9619 5.9619 0.65 0.000332149 0.000264684 0.0171386 0.0141092 26 3658 34 6.55708e+06 313430 477104. 1650.88 4.29 0.171106 0.151134 21022 109990 -1 3023 21 1399 3581 235870 57256 0 0 235870 57256 3581 2143 0 0 12682 10499 0 0 19749 14803 0 0 3581 2522 0 0 100303 13436 0 0 95974 13853 0 0 3581 0 0 2182 2763 3357 21425 0 0 6.5629 6.5629 -158.809 -6.5629 0 0 585099. 2024.56 0.26 0.09 0.10 -1 -1 0.26 0.0274502 0.0250239 181 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 7.75 vpr 52.88 MiB -1 -1 0.17 17216 12 0.24 -1 -1 32212 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54152 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 14.4 MiB 0.81 1048 52.9 MiB 0.11 0.01 5.95024 -121.701 -5.95024 5.95024 0.99 0.00024821 0.000199794 0.0207194 0.0174256 34 2791 50 6.55708e+06 277265 585099. 2024.56 3.39 0.174163 0.154311 22462 138074 -1 2337 19 1086 2939 162439 39713 0 0 162439 39713 2939 1487 0 0 10500 8744 0 0 16311 12423 0 0 2939 1830 0 0 64377 7752 0 0 65373 7477 0 0 2939 0 0 1853 2809 2942 20115 0 0 6.0037 6.0037 -136.862 -6.0037 0 0 742403. 2568.87 0.23 0.04 0.13 -1 -1 0.23 0.0124319 0.0113308 149 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 8.50 vpr 52.75 MiB -1 -1 0.12 17584 10 0.15 -1 -1 32040 -1 -1 22 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54012 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 14.3 MiB 0.17 1065 52.7 MiB 0.05 0.00 4.79906 -102.264 -4.79906 4.79906 0.72 0.00024383 0.00019699 0.0136375 0.0113395 28 2760 39 6.55708e+06 265210 500653. 1732.36 5.60 0.13219 0.117384 21310 115450 -1 2371 19 942 2889 175929 40436 0 0 175929 40436 2889 1539 0 0 10062 8438 0 0 15884 11760 0 0 2889 1759 0 0 72129 8355 0 0 72076 8585 0 0 2889 0 0 1947 3865 3965 25740 0 0 5.44186 5.44186 -124.411 -5.44186 0 0 612192. 2118.31 0.29 0.07 0.11 -1 -1 0.29 0.0208964 0.0190507 137 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.17 vpr 53.68 MiB -1 -1 0.24 17700 13 0.38 -1 -1 32232 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 15.2 MiB 0.34 1498 53.7 MiB 0.07 0.00 6.5589 -137.868 -6.5589 6.5589 1.01 0.000389821 0.000314459 0.018227 0.0152716 30 3693 27 6.55708e+06 373705 526063. 1820.29 1.92 0.122237 0.108388 21886 126133 -1 3051 16 1332 4345 209047 48999 0 0 209047 48999 4345 1852 0 0 13923 11342 0 0 20295 15185 0 0 4345 2300 0 0 83726 9108 0 0 82413 9212 0 0 4345 0 0 3013 6515 6535 43502 0 0 6.7967 6.7967 -153.557 -6.7967 0 0 666494. 2306.21 0.29 0.09 0.11 -1 -1 0.29 0.0295863 0.0271462 221 220 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 15.94 vpr 53.26 MiB -1 -1 0.23 17788 14 0.42 -1 -1 32680 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 14.7 MiB 0.65 1478 53.3 MiB 0.07 0.00 6.25538 -139.739 -6.25538 6.25538 0.95 0.000331902 0.00027218 0.0179163 0.0150364 28 4436 28 6.55708e+06 337540 500653. 1732.36 11.67 0.144946 0.127161 21310 115450 -1 3635 30 1580 4685 539549 198565 0 0 539549 198565 4685 2631 0 0 15900 12979 0 0 25961 18803 0 0 4685 3021 0 0 241575 79334 0 0 246743 81797 0 0 4685 0 0 3105 6671 6583 39972 0 0 6.81458 6.81458 -166.372 -6.81458 0 0 612192. 2118.31 0.17 0.11 0.06 -1 -1 0.17 0.0182813 0.0164031 191 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.08 vpr 52.92 MiB -1 -1 0.20 17432 12 0.20 -1 -1 32072 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54192 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 14.4 MiB 0.28 1173 52.9 MiB 0.06 0.00 6.2023 -123.636 -6.2023 6.2023 0.97 0.000282589 0.000233245 0.0133069 0.0112134 30 3009 43 6.55708e+06 349595 526063. 1820.29 1.35 0.0871406 0.0766452 21886 126133 -1 2482 17 1041 2908 152411 35513 0 0 152411 35513 2908 1488 0 0 9623 7683 0 0 13407 10327 0 0 2908 1730 0 0 60419 7456 0 0 63146 6829 0 0 2908 0 0 1867 3543 3010 22780 0 0 6.6021 6.6021 -142.188 -6.6021 0 0 666494. 2306.21 0.30 0.08 0.12 -1 -1 0.30 0.0233136 0.0213808 156 148 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.94 vpr 53.56 MiB -1 -1 0.23 17696 12 0.36 -1 -1 32260 -1 -1 33 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54848 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 14.9 MiB 0.57 1480 53.6 MiB 0.07 0.00 6.5197 -133.711 -6.5197 6.5197 0.72 0.000415494 0.000339876 0.0181485 0.0151041 36 3787 29 6.55708e+06 397815 612192. 2118.31 3.06 0.165065 0.147372 22750 144809 -1 3316 18 1545 4493 249906 59243 0 0 249906 59243 4493 2295 0 0 15448 12747 0 0 23467 18023 0 0 4493 2831 0 0 100166 11867 0 0 101839 11480 0 0 4493 0 0 2948 5136 5157 32998 0 0 6.7601 6.7601 -151.559 -6.7601 0 0 782063. 2706.10 0.30 0.10 0.12 -1 -1 0.30 0.0312679 0.0287107 218 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.09 vpr 53.42 MiB -1 -1 0.21 17836 14 0.35 -1 -1 32656 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54704 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1435 53.4 MiB 0.04 0.00 6.76976 -136.238 -6.76976 6.76976 0.65 0.000180218 0.000143744 0.00871027 0.00723421 30 3926 40 6.55708e+06 349595 526063. 1820.29 1.75 0.100954 0.0892511 21886 126133 -1 2952 20 1333 4044 189777 45018 0 0 189777 45018 4044 1837 0 0 12932 10417 0 0 18340 13795 0 0 4044 2276 0 0 73434 8529 0 0 76983 8164 0 0 4044 0 0 2711 3797 4184 30538 0 0 7.14002 7.14002 -155.895 -7.14002 0 0 666494. 2306.21 0.31 0.08 0.12 -1 -1 0.31 0.0291157 0.026591 202 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.77 vpr 53.23 MiB -1 -1 0.19 17752 13 0.28 -1 -1 32188 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54508 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 14.8 MiB 0.28 1410 53.2 MiB 0.09 0.00 6.54924 -133.182 -6.54924 6.54924 0.70 0.000326692 0.000264024 0.0209935 0.0171399 36 3588 34 6.55708e+06 337540 612192. 2118.31 2.43 0.166025 0.146396 22750 144809 -1 3032 19 1356 3969 218273 51471 0 0 218273 51471 3969 2003 0 0 13455 10834 0 0 20633 15560 0 0 3969 2433 0 0 87059 10290 0 0 89188 10351 0 0 3969 0 0 2613 3814 4650 28420 0 0 7.15024 7.15024 -153.256 -7.15024 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0269421 0.0247051 185 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 12.74 vpr 53.22 MiB -1 -1 0.22 17592 13 0.35 -1 -1 32192 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 14.6 MiB 0.46 1295 53.2 MiB 0.09 0.00 6.15144 -119.617 -6.15144 6.15144 1.05 0.000339815 0.000279206 0.021036 0.0176257 28 3972 50 6.55708e+06 313430 500653. 1732.36 8.45 0.199462 0.176226 21310 115450 -1 3160 27 1554 5412 425222 124396 0 0 425222 124396 5412 2710 0 0 17820 14650 0 0 28837 20471 0 0 5412 3140 0 0 184807 43245 0 0 182934 40180 0 0 5412 0 0 3858 9612 9086 55936 0 0 6.43304 6.43304 -141.606 -6.43304 0 0 612192. 2118.31 0.26 0.15 0.10 -1 -1 0.26 0.0328223 0.029683 179 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.53 vpr 53.09 MiB -1 -1 0.16 17440 12 0.25 -1 -1 32188 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 14.6 MiB 0.17 1325 53.1 MiB 0.03 0.00 5.76892 -119.845 -5.76892 5.76892 0.59 0.000170018 0.000134486 0.007699 0.00645775 28 3281 37 6.55708e+06 289320 500653. 1732.36 1.58 0.0844359 0.07523 21310 115450 -1 2813 22 1253 3646 225056 50660 0 0 225056 50660 3646 1866 0 0 12815 10340 0 0 19300 14682 0 0 3646 2140 0 0 91897 10995 0 0 93752 10637 0 0 3646 0 0 2393 5039 4932 32242 0 0 6.07244 6.07244 -140.255 -6.07244 0 0 612192. 2118.31 0.28 0.09 0.11 -1 -1 0.28 0.0266691 0.0241795 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.43 vpr 53.59 MiB -1 -1 0.20 18320 14 0.50 -1 -1 32408 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54880 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 15.1 MiB 0.50 1700 53.6 MiB 0.06 0.00 6.7555 -147.344 -6.7555 6.7555 0.89 0.00020653 0.000168433 0.0131132 0.0108912 36 4389 25 6.55708e+06 373705 612192. 2118.31 2.15 0.109569 0.0971923 22750 144809 -1 3698 18 1557 5197 295347 66321 0 0 295347 66321 5197 2547 0 0 17364 14369 0 0 27258 20123 0 0 5197 3099 0 0 117225 13559 0 0 123106 12624 0 0 5197 0 0 3640 7934 8230 52171 0 0 7.1991 7.1991 -166.714 -7.1991 0 0 782063. 2706.10 0.21 0.07 0.08 -1 -1 0.21 0.0217529 0.0198113 230 229 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 8.15 vpr 52.93 MiB -1 -1 0.15 17348 11 0.25 -1 -1 32196 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54200 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 14.5 MiB 0.43 1091 52.9 MiB 0.10 0.00 5.70218 -114.869 -5.70218 5.70218 1.03 0.000292035 0.000237519 0.024566 0.020342 36 3367 40 6.55708e+06 313430 612192. 2118.31 3.98 0.145913 0.127779 22750 144809 -1 2560 16 1224 3574 194343 47415 0 0 194343 47415 3574 1882 0 0 12221 9916 0 0 18811 14235 0 0 3574 2230 0 0 72985 10060 0 0 83178 9092 0 0 3574 0 0 2350 4203 3921 26964 0 0 5.82238 5.82238 -136.331 -5.82238 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0205183 0.0188483 163 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.61 vpr 53.35 MiB -1 -1 0.13 17584 13 0.33 -1 -1 32248 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 14.9 MiB 0.32 1379 53.4 MiB 0.05 0.00 6.48956 -129.592 -6.48956 6.48956 0.59 0.000184661 0.000143893 0.0119945 0.00983918 34 3374 22 6.55708e+06 337540 585099. 2024.56 4.43 0.186776 0.165184 22462 138074 -1 2911 18 1210 4065 247633 55280 0 0 247633 55280 4065 1837 0 0 13982 11318 0 0 23025 16622 0 0 4065 2232 0 0 102814 11339 0 0 99682 11932 0 0 4065 0 0 2855 5931 6531 41740 0 0 7.09056 7.09056 -152.828 -7.09056 0 0 742403. 2568.87 0.31 0.09 0.13 -1 -1 0.31 0.0281137 0.0256942 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 14.56 vpr 53.39 MiB -1 -1 0.24 17580 12 0.33 -1 -1 32144 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 14.8 MiB 0.63 1541 53.4 MiB 0.05 0.00 5.79284 -124.943 -5.79284 5.79284 0.75 0.000185775 0.000150994 0.011921 0.00998578 30 4024 28 6.55708e+06 349595 526063. 1820.29 10.71 0.141547 0.124139 21886 126133 -1 3352 16 1508 5077 267093 60608 0 0 267093 60608 5077 2239 0 0 16420 13597 0 0 23365 17595 0 0 5077 2770 0 0 107106 12650 0 0 110048 11757 0 0 5077 0 0 3569 8457 7894 51661 0 0 6.11424 6.11424 -145.745 -6.11424 0 0 666494. 2306.21 0.24 0.05 0.07 -1 -1 0.24 0.0140383 0.0128155 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 4.56 vpr 53.23 MiB -1 -1 0.12 17508 13 0.20 -1 -1 32148 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54504 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 14.8 MiB 0.23 1256 53.2 MiB 0.05 0.00 6.38724 -132.926 -6.38724 6.38724 0.61 0.000306676 0.000249203 0.0115348 0.00970675 28 3298 27 6.55708e+06 349595 500653. 1732.36 1.45 0.0673947 0.0596214 21310 115450 -1 2951 54 1382 4444 746637 396625 0 0 746637 396625 4444 2262 0 0 15157 12070 0 0 29138 19999 0 0 4444 2711 0 0 337556 178041 0 0 355898 181542 0 0 4444 0 0 3062 5294 5867 36865 0 0 6.51004 6.51004 -150.749 -6.51004 0 0 612192. 2118.31 0.26 0.30 0.10 -1 -1 0.26 0.0545938 0.0489094 183 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 8.35 vpr 53.26 MiB -1 -1 0.17 17424 13 0.28 -1 -1 32288 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 14.6 MiB 0.41 1396 53.3 MiB 0.04 0.00 5.85758 -132.307 -5.85758 5.85758 0.86 0.000179496 0.000146802 0.0104055 0.0087178 34 3579 42 6.55708e+06 313430 585099. 2024.56 4.35 0.189452 0.167857 22462 138074 -1 3012 15 1221 3676 219182 49812 0 0 219182 49812 3676 1871 0 0 12706 10332 0 0 20573 15126 0 0 3676 2259 0 0 88311 10235 0 0 90240 9989 0 0 3676 0 0 2455 4961 5114 33902 0 0 6.33838 6.33838 -150.89 -6.33838 0 0 742403. 2568.87 0.32 0.08 0.13 -1 -1 0.32 0.020762 0.0190363 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 13.65 vpr 53.30 MiB -1 -1 0.19 17584 12 0.29 -1 -1 32212 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54580 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 14.9 MiB 0.62 1487 53.3 MiB 0.07 0.00 6.19064 -133.107 -6.19064 6.19064 0.82 0.000395051 0.000317661 0.0169544 0.0142563 34 4249 42 6.55708e+06 361650 585099. 2024.56 9.52 0.210773 0.186634 22462 138074 -1 3556 27 1583 5557 564897 210046 0 0 564897 210046 5557 2716 0 0 19101 15888 0 0 31980 22811 0 0 5557 3284 0 0 250627 82966 0 0 252075 82381 0 0 5557 0 0 3974 10256 11043 63560 0 0 6.78198 6.78198 -156.198 -6.78198 0 0 742403. 2568.87 0.26 0.13 0.12 -1 -1 0.26 0.0205899 0.0184746 197 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 8.40 vpr 53.66 MiB -1 -1 0.23 17848 13 0.42 -1 -1 32744 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 14.9 MiB 0.35 1538 53.7 MiB 0.08 0.00 6.42904 -135.783 -6.42904 6.42904 1.06 0.000387499 0.000319254 0.0190271 0.0160375 36 3811 33 6.55708e+06 373705 612192. 2118.31 4.28 0.194038 0.17045 22750 144809 -1 3239 19 1504 4639 252636 58698 0 0 252636 58698 4639 2135 0 0 15752 12764 0 0 24810 18390 0 0 4639 2652 0 0 101388 11538 0 0 101408 11219 0 0 4639 0 0 3135 5923 6104 39313 0 0 6.75044 6.75044 -155.802 -6.75044 0 0 782063. 2706.10 0.34 0.13 0.14 -1 -1 0.34 0.0382819 0.0350072 212 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 8.00 vpr 53.04 MiB -1 -1 0.15 17472 14 0.28 -1 -1 32240 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54312 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 14.5 MiB 0.34 1235 53.0 MiB 0.08 0.00 6.8411 -136.331 -6.8411 6.8411 1.01 0.000322925 0.000266378 0.0201231 0.0168033 30 3217 23 6.55708e+06 289320 526063. 1820.29 4.01 0.157315 0.138016 21886 126133 -1 2542 18 1143 3437 168156 39963 0 0 168156 39963 3437 1611 0 0 11231 9182 0 0 15870 12062 0 0 3437 1932 0 0 66990 7766 0 0 67191 7410 0 0 3437 0 0 2294 4057 3831 27437 0 0 7.0795 7.0795 -154.218 -7.0795 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.0252436 0.0231486 168 167 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 13.54 vpr 53.58 MiB -1 -1 0.22 17432 13 0.34 -1 -1 32252 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 14.9 MiB 0.47 1427 53.6 MiB 0.07 0.00 7.05196 -137.739 -7.05196 7.05196 1.05 0.000322412 0.000263862 0.0162207 0.0135078 32 3890 33 6.55708e+06 361650 554710. 1919.41 9.46 0.252658 0.224894 22174 131602 -1 3407 19 1564 4457 268876 63093 0 0 268876 63093 4457 2525 0 0 15753 12807 0 0 25935 19240 0 0 4457 3025 0 0 109364 12595 0 0 108910 12901 0 0 4457 0 0 2893 4952 5283 33587 0 0 7.05196 7.05196 -156.427 -7.05196 0 0 701300. 2426.64 0.21 0.06 0.07 -1 -1 0.21 0.0155332 0.0141137 198 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.00 vpr 53.51 MiB -1 -1 0.24 17772 13 0.34 -1 -1 32244 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 14.8 MiB 0.36 1560 53.5 MiB 0.03 0.00 6.42904 -136.281 -6.42904 6.42904 0.59 0.000180291 0.000146488 0.00805195 0.00675471 30 3711 20 6.55708e+06 373705 526063. 1820.29 1.52 0.069021 0.0607203 21886 126133 -1 3136 20 1394 4183 203514 47746 0 0 203514 47746 4183 1868 0 0 13599 11020 0 0 19421 14732 0 0 4183 2307 0 0 81375 8797 0 0 80753 9022 0 0 4183 0 0 2789 4744 5116 34276 0 0 6.66944 6.66944 -155.032 -6.66944 0 0 666494. 2306.21 0.29 0.08 0.11 -1 -1 0.29 0.0269011 0.0244085 213 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 13.23 vpr 53.63 MiB -1 -1 0.25 17812 12 0.38 -1 -1 32292 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 14.8 MiB 0.25 1449 53.6 MiB 0.08 0.00 6.3623 -133.588 -6.3623 6.3623 1.02 0.000397758 0.000331973 0.0195726 0.0165255 28 4397 26 6.55708e+06 397815 500653. 1732.36 9.21 0.200768 0.177755 21310 115450 -1 3578 20 1975 5584 363337 85319 0 0 363337 85319 5584 3134 0 0 18958 15300 0 0 29424 21757 0 0 5584 3744 0 0 150375 21011 0 0 153412 20373 0 0 5584 0 0 3609 5946 6686 38775 0 0 6.79164 6.79164 -161.203 -6.79164 0 0 612192. 2118.31 0.21 0.07 0.10 -1 -1 0.21 0.0172782 0.0157089 216 213 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.43 vpr 52.62 MiB -1 -1 0.13 17096 11 0.15 -1 -1 31880 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53888 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 14.0 MiB 0.33 1080 52.6 MiB 0.04 0.00 4.96872 -107.91 -4.96872 4.96872 0.87 0.000195676 0.00015846 0.00920107 0.0076335 30 2311 16 6.55708e+06 216990 526063. 1820.29 2.87 0.10436 0.0911769 21886 126133 -1 1998 15 761 1974 94094 22758 0 0 94094 22758 1974 988 0 0 6488 5043 0 0 9012 6985 0 0 1974 1157 0 0 37300 4375 0 0 37346 4210 0 0 1974 0 0 1213 1729 1835 12625 0 0 5.44952 5.44952 -125.573 -5.44952 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.015479 0.014195 125 121 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 12.18 vpr 52.98 MiB -1 -1 0.21 17440 13 0.27 -1 -1 32072 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54248 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 14.5 MiB 0.42 1271 53.0 MiB 0.03 0.00 6.14684 -129.703 -6.14684 6.14684 0.88 0.000164344 0.000132956 0.00692158 0.00581548 28 3635 29 6.55708e+06 289320 500653. 1732.36 8.29 0.149761 0.132802 21310 115450 -1 3058 16 1242 3631 231896 52555 0 0 231896 52555 3631 2027 0 0 12407 10085 0 0 19677 14459 0 0 3631 2354 0 0 95182 11892 0 0 97368 11738 0 0 3631 0 0 2389 4807 4751 28948 0 0 6.74018 6.74018 -155.389 -6.74018 0 0 612192. 2118.31 0.28 0.09 0.11 -1 -1 0.28 0.0239888 0.0220792 161 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 9.46 vpr 53.76 MiB -1 -1 0.25 18016 14 0.56 -1 -1 32456 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55052 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 15.3 MiB 0.23 1685 53.8 MiB 0.08 0.00 7.1167 -147.065 -7.1167 7.1167 1.02 0.000403119 0.000327009 0.0215924 0.017927 34 4561 39 6.55708e+06 397815 585099. 2024.56 5.45 0.273652 0.241615 22462 138074 -1 3790 19 1738 5334 302368 69728 0 0 302368 69728 5334 2544 0 0 18530 15210 0 0 28577 21396 0 0 5334 3215 0 0 122498 13477 0 0 122095 13886 0 0 5334 0 0 3596 6609 6555 44204 0 0 7.61881 7.61881 -173.477 -7.61881 0 0 742403. 2568.87 0.32 0.11 0.13 -1 -1 0.32 0.0352595 0.0320223 245 243 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.87 vpr 53.11 MiB -1 -1 0.24 17440 13 0.36 -1 -1 32284 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 14.5 MiB 0.52 1363 53.1 MiB 0.08 0.00 6.4759 -140.429 -6.4759 6.4759 0.87 0.000341793 0.000282193 0.021453 0.017971 34 3820 21 6.55708e+06 325485 585099. 2024.56 4.15 0.196047 0.172693 22462 138074 -1 3103 31 1607 4697 485574 199651 0 0 485574 199651 4697 2373 0 0 15842 12900 0 0 27010 18971 0 0 4697 2838 0 0 220987 84375 0 0 212341 78194 0 0 4697 0 0 3090 5409 5631 36391 0 0 7.0397 7.0397 -167.577 -7.0397 0 0 742403. 2568.87 0.20 0.12 0.07 -1 -1 0.20 0.0208009 0.0186529 178 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 9.82 vpr 52.84 MiB -1 -1 0.20 17508 11 0.21 -1 -1 32076 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54108 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 14.4 MiB 0.21 1079 52.8 MiB 0.05 0.00 5.48612 -114.762 -5.48612 5.48612 0.94 0.000244044 0.000201334 0.0121541 0.01017 28 2966 46 6.55708e+06 277265 500653. 1732.36 6.24 0.168687 0.150334 21310 115450 -1 2389 19 1017 3069 184403 41885 0 0 184403 41885 3069 1619 0 0 10331 8471 0 0 16132 11915 0 0 3069 1838 0 0 74638 9363 0 0 77164 8679 0 0 3069 0 0 2052 3764 3770 25105 0 0 6.04792 6.04792 -137.641 -6.04792 0 0 612192. 2118.31 0.20 0.12 0.09 -1 -1 0.20 0.0261267 0.0239444 139 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 16.48 vpr 53.93 MiB -1 -1 0.24 18404 15 0.70 -1 -1 32336 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55224 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 15.3 MiB 0.38 1805 53.9 MiB 0.08 0.00 8.10727 -154.659 -8.10727 8.10727 0.95 0.000423961 0.000341924 0.0206312 0.0173132 30 4719 27 6.55708e+06 409870 526063. 1820.29 12.12 0.238774 0.210949 21886 126133 -1 3757 17 1950 6189 310180 70997 0 0 310180 70997 6189 2693 0 0 19893 16407 0 0 28318 21338 0 0 6189 3246 0 0 125994 13527 0 0 123597 13786 0 0 6189 0 0 4239 10004 9444 61988 0 0 8.10927 8.10927 -172.367 -8.10927 0 0 666494. 2306.21 0.29 0.10 0.11 -1 -1 0.29 0.03106 0.0284556 257 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.63 vpr 53.32 MiB -1 -1 0.21 17488 13 0.40 -1 -1 32276 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54596 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 14.8 MiB 0.40 1381 53.3 MiB 0.06 0.00 6.61236 -135.377 -6.61236 6.61236 1.00 0.000365762 0.000302037 0.0148724 0.0126528 34 3390 27 6.55708e+06 337540 585099. 2024.56 2.33 0.140384 0.122812 22462 138074 -1 2978 17 1316 3859 214908 50966 0 0 214908 50966 3859 1895 0 0 13758 11214 0 0 20989 15884 0 0 3859 2351 0 0 85487 9964 0 0 86956 9658 0 0 3859 0 0 2543 4724 4879 31675 0 0 7.05396 7.05396 -156.874 -7.05396 0 0 742403. 2568.87 0.26 0.08 0.11 -1 -1 0.26 0.0279912 0.0258048 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.70 vpr 52.75 MiB -1 -1 0.15 17172 11 0.16 -1 -1 32024 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 14.3 MiB 0.40 1107 52.8 MiB 0.03 0.00 5.08892 -112.714 -5.08892 5.08892 0.93 0.000159745 0.000131797 0.00796292 0.00664389 28 3096 31 6.55708e+06 265210 500653. 1732.36 1.95 0.0669585 0.0569313 21310 115450 -1 2514 18 1218 3604 212006 49018 0 0 212006 49018 3604 1875 0 0 12183 10104 0 0 19544 14296 0 0 3604 2193 0 0 85939 10493 0 0 87132 10057 0 0 3604 0 0 2386 4702 4867 29969 0 0 5.5086 5.5086 -132.558 -5.5086 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0208824 0.0190247 141 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 6.31 vpr 53.39 MiB -1 -1 0.21 17476 12 0.37 -1 -1 32304 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 14.8 MiB 0.55 1539 53.4 MiB 0.09 0.00 6.2813 -128.323 -6.2813 6.2813 0.71 0.000321579 0.000259694 0.024337 0.0201222 30 3992 39 6.55708e+06 361650 526063. 1820.29 2.36 0.115127 0.100852 21886 126133 -1 3137 30 1873 6821 580030 231037 0 0 580030 231037 6821 3067 0 0 21361 17549 0 0 33417 23717 0 0 6821 3859 0 0 253959 92317 0 0 257651 90528 0 0 6821 0 0 4948 12989 12287 76327 0 0 6.5217 6.5217 -147.893 -6.5217 0 0 666494. 2306.21 0.31 0.23 0.11 -1 -1 0.31 0.047836 0.043521 213 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 6.90 vpr 53.06 MiB -1 -1 0.16 17168 12 0.24 -1 -1 32172 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54336 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 14.4 MiB 0.39 1179 53.1 MiB 0.03 0.00 6.02924 -125.819 -6.02924 6.02924 0.69 0.000148364 0.000120184 0.00691545 0.00581789 26 3589 50 6.55708e+06 313430 477104. 1650.88 3.78 0.112285 0.0983423 21022 109990 -1 2916 15 1223 3398 223401 52162 0 0 223401 52162 3398 2011 0 0 11929 9725 0 0 18610 13810 0 0 3398 2283 0 0 92746 12092 0 0 93320 12241 0 0 3398 0 0 2175 3445 3693 23431 0 0 6.75044 6.75044 -154.865 -6.75044 0 0 585099. 2024.56 0.25 0.08 0.10 -1 -1 0.25 0.0201796 0.0185648 153 148 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 4.57 vpr 52.74 MiB -1 -1 0.19 17328 12 0.22 -1 -1 32120 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54008 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 14.3 MiB 0.16 1022 52.7 MiB 0.06 0.00 5.58904 -114.558 -5.58904 5.58904 0.63 0.000250078 0.000203754 0.014894 0.0123061 26 2671 34 6.55708e+06 253155 477104. 1650.88 1.71 0.0864117 0.0761647 21022 109990 -1 2369 63 1593 5936 1233036 771905 0 0 1233036 771905 5936 3174 0 0 19141 16179 0 0 44946 27537 0 0 5936 3533 0 0 571988 363491 0 0 585089 357991 0 0 5936 0 0 4343 9389 9663 56127 0 0 6.34238 6.34238 -141.449 -6.34238 0 0 585099. 2024.56 0.16 0.28 0.06 -1 -1 0.16 0.0262402 0.0230389 140 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 5.23 vpr 53.18 MiB -1 -1 0.24 17424 12 0.37 -1 -1 32264 -1 -1 31 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 14.5 MiB 0.29 1329 53.2 MiB 0.04 0.00 5.28752 -103.836 -5.28752 5.28752 0.59 0.000186273 0.00014754 0.00990526 0.00824012 30 3640 37 6.55708e+06 373705 526063. 1820.29 1.96 0.0943437 0.0838046 21886 126133 -1 2941 51 1313 4517 788610 452704 0 0 788610 452704 4517 2206 0 0 14214 11747 0 0 26182 17772 0 0 4517 2616 0 0 362148 209703 0 0 377032 208660 0 0 4517 0 0 3204 7857 7903 48109 0 0 6.10198 6.10198 -124.116 -6.10198 0 0 666494. 2306.21 0.23 0.19 0.11 -1 -1 0.23 0.0270923 0.0239901 191 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 8.17 vpr 53.70 MiB -1 -1 0.24 17476 13 0.43 -1 -1 32232 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 15.1 MiB 0.56 1579 53.7 MiB 0.08 0.00 6.9587 -147.728 -6.9587 6.9587 1.00 0.000389986 0.000318336 0.0190117 0.0159132 36 4081 27 6.55708e+06 397815 612192. 2118.31 3.60 0.181334 0.160266 22750 144809 -1 3404 21 1709 4771 251029 59698 0 0 251029 59698 4771 2335 0 0 16152 13273 0 0 24694 18567 0 0 4771 2892 0 0 98382 11679 0 0 102259 10952 0 0 4771 0 0 3062 4835 5102 33340 0 0 7.13036 7.13036 -166.054 -7.13036 0 0 782063. 2706.10 0.34 0.10 0.15 -1 -1 0.34 0.0342827 0.0312489 238 235 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 10.09 vpr 53.43 MiB -1 -1 0.22 17520 12 0.29 -1 -1 32708 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 14.8 MiB 0.54 1278 53.4 MiB 0.11 0.00 6.3225 -124.058 -6.3225 6.3225 0.95 0.000332251 0.000272562 0.0283997 0.0233766 38 3379 23 6.55708e+06 385760 638502. 2209.35 5.76 0.276068 0.243342 23326 155178 -1 2601 16 1252 3842 182696 44822 0 0 182696 44822 3842 1614 0 0 12632 10394 0 0 18089 13765 0 0 3842 2017 0 0 72126 8378 0 0 72165 8654 0 0 3842 0 0 2590 4114 4779 32589 0 0 6.5629 6.5629 -142.761 -6.5629 0 0 851065. 2944.86 0.37 0.08 0.15 -1 -1 0.37 0.0246931 0.0226238 200 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 5.73 vpr 52.75 MiB -1 -1 0.18 17220 12 0.20 -1 -1 32092 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 14.1 MiB 0.70 1131 52.8 MiB 0.07 0.00 5.60752 -118.877 -5.60752 5.60752 0.80 0.000256306 0.000209211 0.0156951 0.0130864 28 2998 32 6.55708e+06 241100 500653. 1732.36 1.74 0.0693055 0.0604568 21310 115450 -1 2644 19 1175 3346 219317 48875 0 0 219317 48875 3346 1775 0 0 11425 9409 0 0 18091 13271 0 0 3346 2067 0 0 91713 11232 0 0 91396 11121 0 0 3346 0 0 2171 4041 4135 25489 0 0 6.05112 6.05112 -146.523 -6.05112 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0214302 0.0195142 126 119 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 8.41 vpr 52.83 MiB -1 -1 0.22 17428 12 0.26 -1 -1 32208 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54100 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 14.2 MiB 0.37 1202 52.8 MiB 0.04 0.00 5.65838 -117.036 -5.65838 5.65838 1.00 0.000289568 0.000235127 0.00989307 0.00845692 34 2988 23 6.55708e+06 289320 585099. 2024.56 4.30 0.181561 0.160939 22462 138074 -1 2708 21 1089 3370 271454 92902 0 0 271454 92902 3370 1686 0 0 11738 9541 0 0 19215 14194 0 0 3370 2034 0 0 116621 32882 0 0 117140 32565 0 0 3370 0 0 2281 3851 4449 26981 0 0 6.01898 6.01898 -134.595 -6.01898 0 0 742403. 2568.87 0.32 0.10 0.14 -1 -1 0.32 0.0226436 0.0204626 154 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 8.10 vpr 53.30 MiB -1 -1 0.14 17472 11 0.22 -1 -1 32056 -1 -1 30 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 14.6 MiB 0.14 1424 53.3 MiB 0.10 0.00 5.67264 -114.054 -5.67264 5.67264 1.02 0.000292786 0.000235451 0.024 0.0196709 36 3541 29 6.55708e+06 361650 612192. 2118.31 4.28 0.165786 0.146671 22750 144809 -1 2905 14 1069 3470 198673 44535 0 0 198673 44535 3470 1648 0 0 11753 9443 0 0 17999 13410 0 0 3470 2043 0 0 80561 9056 0 0 81420 8935 0 0 3470 0 0 2401 5076 5458 34537 0 0 6.51404 6.51404 -135.732 -6.51404 0 0 782063. 2706.10 0.35 0.08 0.14 -1 -1 0.35 0.0229923 0.021227 190 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 7.21 vpr 53.01 MiB -1 -1 0.19 17452 11 0.22 -1 -1 32096 -1 -1 27 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54280 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 14.6 MiB 0.12 1199 53.0 MiB 0.04 0.00 5.32672 -100.829 -5.32672 5.32672 0.61 0.000160476 0.000123413 0.00884661 0.00726531 30 2836 50 6.55708e+06 325485 526063. 1820.29 4.32 0.201148 0.177514 21886 126133 -1 2445 25 1084 3820 449528 220146 0 0 449528 220146 3820 1646 0 0 12226 9994 0 0 19997 14461 0 0 3820 2055 0 0 203552 94975 0 0 206113 97015 0 0 3820 0 0 2736 5537 6392 40367 0 0 5.66238 5.66238 -118.823 -5.66238 0 0 666494. 2306.21 0.28 0.16 0.11 -1 -1 0.28 0.0257789 0.0233154 172 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 7.10 vpr 52.76 MiB -1 -1 0.21 17472 13 0.26 -1 -1 32184 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 14.2 MiB 0.39 1136 52.8 MiB 0.06 0.00 6.2421 -116.725 -6.2421 6.2421 0.88 0.000270963 0.000218952 0.0130421 0.0108789 30 2619 19 6.55708e+06 301375 526063. 1820.29 3.24 0.111202 0.0968121 21886 126133 -1 2309 14 919 2821 132733 31883 0 0 132733 31883 2821 1297 0 0 9083 7480 0 0 12827 9725 0 0 2821 1568 0 0 52237 6007 0 0 52944 5806 0 0 2821 0 0 1902 3202 3171 22344 0 0 6.8431 6.8431 -139.41 -6.8431 0 0 666494. 2306.21 0.31 0.06 0.11 -1 -1 0.31 0.0190877 0.0175649 148 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.08 vpr 53.00 MiB -1 -1 0.20 17452 12 0.26 -1 -1 32040 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54268 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 14.5 MiB 0.25 1327 53.0 MiB 0.08 0.00 5.8809 -127.055 -5.8809 5.8809 0.88 0.000301217 0.000244365 0.0184424 0.0152337 30 3219 17 6.55708e+06 337540 526063. 1820.29 1.40 0.0876331 0.0770758 21886 126133 -1 2680 19 1137 3225 158232 37376 0 0 158232 37376 3225 1721 0 0 10458 8367 0 0 14526 11151 0 0 3225 1993 0 0 61908 7336 0 0 64890 6808 0 0 3225 0 0 2088 3722 3506 23973 0 0 6.2833 6.2833 -149.485 -6.2833 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0232525 0.0212218 174 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 7.19 vpr 53.22 MiB -1 -1 0.16 17588 13 0.40 -1 -1 32128 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 14.5 MiB 0.37 1304 53.2 MiB 0.07 0.00 6.36936 -127.634 -6.36936 6.36936 0.93 0.000302753 0.000244623 0.017287 0.0142342 30 2954 18 6.55708e+06 325485 526063. 1820.29 3.22 0.165353 0.144571 21886 126133 -1 2528 17 1100 3342 154061 36935 0 0 154061 36935 3342 1477 0 0 10866 8604 0 0 15451 11787 0 0 3342 1827 0 0 60465 6566 0 0 60595 6674 0 0 3342 0 0 2242 4046 3871 27253 0 0 6.85016 6.85016 -145.735 -6.85016 0 0 666494. 2306.21 0.27 0.07 0.11 -1 -1 0.27 0.0232765 0.0212792 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 7.33 vpr 53.18 MiB -1 -1 0.22 17692 14 0.30 -1 -1 32728 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54452 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 14.7 MiB 0.33 1400 53.2 MiB 0.07 0.00 6.76976 -136.855 -6.76976 6.76976 1.00 0.000348915 0.000286567 0.0195585 0.0163838 30 2961 24 6.55708e+06 337540 526063. 1820.29 3.32 0.175577 0.154652 21886 126133 -1 2605 15 1072 3281 155740 36733 0 0 155740 36733 3281 1406 0 0 10798 8696 0 0 14849 11469 0 0 3281 1703 0 0 62600 6682 0 0 60931 6777 0 0 3281 0 0 2209 4371 3989 29442 0 0 7.46142 7.46142 -156.808 -7.46142 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0210899 0.0193278 196 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 10.89 vpr 53.13 MiB -1 -1 0.24 17628 14 0.32 -1 -1 32236 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 14.6 MiB 0.36 1181 53.1 MiB 0.04 0.00 6.18664 -123.776 -6.18664 6.18664 0.85 0.000179366 0.000146441 0.00925119 0.00778464 28 3525 35 6.55708e+06 301375 500653. 1732.36 6.85 0.140093 0.123343 21310 115450 -1 2747 20 1554 4958 371698 109195 0 0 371698 109195 4958 2649 0 0 16827 13425 0 0 27445 19926 0 0 4958 3004 0 0 161220 37190 0 0 156290 33001 0 0 4958 0 0 3404 9205 7391 48768 0 0 6.97658 6.97658 -148.894 -6.97658 0 0 612192. 2118.31 0.30 0.15 0.09 -1 -1 0.30 0.0351518 0.0326277 175 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 7.45 vpr 53.55 MiB -1 -1 0.20 17652 13 0.43 -1 -1 32160 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 14.9 MiB 0.40 1332 53.6 MiB 0.05 0.00 6.57056 -128.279 -6.57056 6.57056 0.74 0.000201349 0.000158079 0.0118948 0.00982654 36 3590 41 6.55708e+06 349595 612192. 2118.31 3.60 0.163045 0.143588 22750 144809 -1 3011 16 1311 4074 236306 53514 0 0 236306 53514 4074 1953 0 0 13467 10720 0 0 20711 15335 0 0 4074 2403 0 0 92412 12275 0 0 101568 10828 0 0 4074 0 0 2763 5648 5211 35074 0 0 7.17156 7.17156 -149.181 -7.17156 0 0 782063. 2706.10 0.21 0.07 0.10 -1 -1 0.21 0.0169813 0.0153969 205 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.62 vpr 52.91 MiB -1 -1 0.20 17096 13 0.21 -1 -1 32064 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54176 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 14.3 MiB 0.54 1111 52.9 MiB 0.09 0.00 6.02664 -124.389 -6.02664 6.02664 0.80 0.000998581 0.000599401 0.0286647 0.0244992 28 3051 39 6.55708e+06 289320 500653. 1732.36 1.90 0.127405 0.11425 21310 115450 -1 2501 16 1102 2745 153868 37454 0 0 153868 37454 2745 1612 0 0 9813 7957 0 0 14490 11330 0 0 2745 1943 0 0 60617 7632 0 0 63458 6980 0 0 2745 0 0 1643 2418 2490 17448 0 0 6.47024 6.47024 -143.406 -6.47024 0 0 612192. 2118.31 0.27 0.06 0.10 -1 -1 0.27 0.0194233 0.0177984 147 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.10 vpr 53.45 MiB -1 -1 0.23 17700 13 0.44 -1 -1 32308 -1 -1 32 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54732 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 14.9 MiB 0.31 1418 53.4 MiB 0.04 0.00 6.56856 -134.323 -6.56856 6.56856 0.60 0.000196387 0.000160914 0.00937404 0.0079504 36 3697 41 6.55708e+06 385760 612192. 2118.31 1.73 0.101938 0.0898686 22750 144809 -1 3137 19 1568 4556 255745 58099 0 0 255745 58099 4556 2211 0 0 15447 12727 0 0 23827 17553 0 0 4556 2856 0 0 101175 11702 0 0 106184 11050 0 0 4556 0 0 2988 4538 4843 32179 0 0 6.92916 6.92916 -151.647 -6.92916 0 0 782063. 2706.10 0.32 0.09 0.13 -1 -1 0.32 0.0275998 0.0251132 203 200 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.70 vpr 53.24 MiB -1 -1 0.22 17776 14 0.40 -1 -1 32296 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 14.6 MiB 0.60 1354 53.2 MiB 0.06 0.00 6.49216 -139.653 -6.49216 6.49216 0.95 0.000314898 0.000258975 0.014657 0.0122872 30 3556 33 6.55708e+06 325485 526063. 1820.29 2.34 0.113969 0.10199 21886 126133 -1 2841 17 1207 3959 197523 45557 0 0 197523 45557 3959 1676 0 0 12724 10485 0 0 18319 13635 0 0 3959 2056 0 0 78557 9056 0 0 80005 8649 0 0 3959 0 0 2752 6126 5476 39663 0 0 6.9195 6.9195 -158.1 -6.9195 0 0 666494. 2306.21 0.31 0.09 0.10 -1 -1 0.31 0.0336064 0.0314336 181 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.36 vpr 53.20 MiB -1 -1 0.16 17428 13 0.29 -1 -1 32152 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 14.6 MiB 0.37 1380 53.2 MiB 0.11 0.00 6.42704 -130.4 -6.42704 6.42704 0.97 0.000507127 0.000362404 0.028902 0.0246343 38 3174 29 6.55708e+06 301375 638502. 2209.35 4.34 0.215069 0.192081 23326 155178 -1 2680 17 1115 3336 171100 38326 0 0 171100 38326 3336 1479 0 0 10625 8564 0 0 15912 11559 0 0 3336 1880 0 0 68721 7485 0 0 69170 7359 0 0 3336 0 0 2221 4126 4001 28032 0 0 6.74844 6.74844 -147.384 -6.74844 0 0 851065. 2944.86 0.37 0.07 0.15 -1 -1 0.37 0.0222298 0.0203337 175 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 17.14 vpr 53.12 MiB -1 -1 0.24 17716 13 0.29 -1 -1 32328 -1 -1 27 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 14.6 MiB 0.50 1365 53.1 MiB 0.03 0.00 6.25938 -118.558 -6.25938 6.25938 0.92 0.000165503 0.000134626 0.00681547 0.00577453 28 3841 44 6.55708e+06 325485 500653. 1732.36 13.02 0.148686 0.13151 21310 115450 -1 3204 26 1661 5190 510610 170391 0 0 510610 170391 5190 2864 0 0 17492 14173 0 0 28314 20352 0 0 5190 3278 0 0 231363 68705 0 0 223061 61019 0 0 5190 0 0 3529 8307 8562 48844 0 0 6.61998 6.61998 -137.375 -6.61998 0 0 612192. 2118.31 0.28 0.18 0.10 -1 -1 0.28 0.0330932 0.0300348 178 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.93 vpr 53.79 MiB -1 -1 0.19 17876 14 0.47 -1 -1 32296 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55084 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 14.8 MiB 0.36 1469 53.8 MiB 0.13 0.00 7.06464 -143.336 -7.06464 7.06464 0.97 0.000340714 0.000268912 0.0309653 0.0255512 38 3355 24 6.55708e+06 446035 638502. 2209.35 3.04 0.1458 0.12631 23326 155178 -1 2787 15 1340 3805 170987 41559 0 0 170987 41559 3805 1659 0 0 12442 10061 0 0 17750 13642 0 0 3805 2159 0 0 66536 6997 0 0 66649 7041 0 0 3805 0 0 2465 3086 3812 25522 0 0 7.18484 7.18484 -156.435 -7.18484 0 0 851065. 2944.86 0.23 0.04 0.08 -1 -1 0.23 0.0149438 0.0138142 218 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.74 vpr 53.15 MiB -1 -1 0.26 17720 11 0.35 -1 -1 32200 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 14.5 MiB 0.51 1219 53.2 MiB 0.08 0.00 5.81778 -116.006 -5.81778 5.81778 0.99 0.000322308 0.000263745 0.0195845 0.0163575 30 3010 20 6.55708e+06 349595 526063. 1820.29 2.76 0.134948 0.118298 21886 126133 -1 2581 14 1120 3231 154914 37209 0 0 154914 37209 3231 1459 0 0 10604 8644 0 0 14723 11397 0 0 3231 1773 0 0 60945 7152 0 0 62180 6784 0 0 3231 0 0 2111 3636 3836 26630 0 0 5.89878 5.89878 -128.657 -5.89878 0 0 666494. 2306.21 0.20 0.04 0.07 -1 -1 0.20 0.0136392 0.0126047 177 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 7.42 vpr 52.89 MiB -1 -1 0.11 17244 13 0.13 -1 -1 32284 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54156 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 14.4 MiB 0.38 1022 52.9 MiB 0.09 0.00 5.85758 -132.511 -5.85758 5.85758 0.76 0.000246428 0.000190965 0.0195943 0.0157936 34 3082 46 6.55708e+06 289320 585099. 2024.56 4.15 0.193482 0.171521 22462 138074 -1 2353 17 1042 2672 156093 37343 0 0 156093 37343 2672 1485 0 0 9424 7656 0 0 14514 10976 0 0 2672 1707 0 0 62608 7857 0 0 64203 7662 0 0 2672 0 0 1630 2315 2682 16673 0 0 6.20592 6.20592 -152.765 -6.20592 0 0 742403. 2568.87 0.32 0.06 0.13 -1 -1 0.32 0.0186478 0.017042 138 127 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 7.83 vpr 53.19 MiB -1 -1 0.21 17788 14 0.29 -1 -1 32296 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54468 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 14.6 MiB 0.41 1315 53.2 MiB 0.07 0.00 6.7973 -141.369 -6.7973 6.7973 0.76 0.000303414 0.000237015 0.0150749 0.0124317 40 2933 26 6.55708e+06 337540 666494. 2306.21 4.46 0.195102 0.173719 23614 160646 -1 2854 16 1127 3427 192542 44602 0 0 192542 44602 3427 1567 0 0 11976 9616 0 0 19494 14167 0 0 3427 1990 0 0 75877 8850 0 0 78341 8412 0 0 3427 0 0 2300 4383 4045 28621 0 0 7.3591 7.3591 -160.163 -7.3591 0 0 872365. 3018.56 0.23 0.04 0.09 -1 -1 0.23 0.0124684 0.0114636 179 172 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 6.23 vpr 53.72 MiB -1 -1 0.16 17720 15 0.39 -1 -1 32264 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55008 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 15.1 MiB 0.35 1635 53.7 MiB 0.05 0.00 7.65861 -154.57 -7.65861 7.65861 0.92 0.000226461 0.000185656 0.0120877 0.0102047 30 4639 29 6.55708e+06 397815 526063. 1820.29 2.21 0.112227 0.0997032 21886 126133 -1 3716 21 1844 5324 266944 63679 0 0 266944 63679 5324 2710 0 0 17082 14031 0 0 23944 18077 0 0 5324 3178 0 0 105491 13060 0 0 109779 12623 0 0 5324 0 0 3480 5796 5869 39709 0 0 8.10221 8.10221 -179.88 -8.10221 0 0 666494. 2306.21 0.26 0.09 0.12 -1 -1 0.26 0.0292646 0.026397 241 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.55 vpr 52.80 MiB -1 -1 0.18 17172 11 0.18 -1 -1 32120 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54072 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 14.2 MiB 0.34 1063 52.8 MiB 0.05 0.00 5.34158 -111.815 -5.34158 5.34158 0.99 0.000248059 0.000203863 0.0114541 0.0096047 26 2865 34 6.55708e+06 265210 477104. 1650.88 1.88 0.0778555 0.0687582 21022 109990 -1 2540 20 1105 3337 277798 73676 0 0 277798 73676 3337 1827 0 0 12036 10116 0 0 19740 14641 0 0 3337 2099 0 0 119477 22950 0 0 119871 22043 0 0 3337 0 0 2232 4958 4661 29226 0 0 5.98178 5.98178 -138.978 -5.98178 0 0 585099. 2024.56 0.18 0.06 0.10 -1 -1 0.18 0.0122573 0.0110566 129 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.90 vpr 53.05 MiB -1 -1 0.20 17212 12 0.24 -1 -1 32008 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 14.4 MiB 0.32 1303 53.1 MiB 0.05 0.00 5.73678 -124.456 -5.73678 5.73678 0.87 0.00017375 0.000143492 0.0104716 0.00877886 36 3232 24 6.55708e+06 313430 612192. 2118.31 3.10 0.105709 0.0931289 22750 144809 -1 2806 16 1186 3320 189039 42740 0 0 189039 42740 3320 1750 0 0 11018 8951 0 0 17265 12676 0 0 3320 2123 0 0 77185 8564 0 0 76931 8676 0 0 3320 0 0 2134 3242 3823 23419 0 0 6.04392 6.04392 -144.786 -6.04392 0 0 782063. 2706.10 0.34 0.07 0.14 -1 -1 0.34 0.0198019 0.0181563 156 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 4.73 vpr 53.48 MiB -1 -1 0.24 17768 12 0.40 -1 -1 32152 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 14.8 MiB 0.33 1480 53.5 MiB 0.07 0.00 5.87124 -132.597 -5.87124 5.87124 0.80 0.000205752 0.000161192 0.0175785 0.0144185 30 3833 50 6.55708e+06 385760 526063. 1820.29 1.19 0.0802169 0.0694151 21886 126133 -1 3077 17 1558 4625 228675 53466 0 0 228675 53466 4625 2064 0 0 14971 12354 0 0 21308 16093 0 0 4625 2528 0 0 92445 10127 0 0 90701 10300 0 0 4625 0 0 3067 5098 5993 37521 0 0 6.11164 6.11164 -150.79 -6.11164 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0291463 0.0267879 213 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 8.22 vpr 53.30 MiB -1 -1 0.25 17588 12 0.32 -1 -1 32152 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 14.7 MiB 0.35 1399 53.3 MiB 0.04 0.00 6.1611 -131.692 -6.1611 6.1611 0.59 0.000170547 0.000135378 0.00823001 0.00680704 42 3648 48 6.55708e+06 313430 701300. 2426.64 4.68 0.250763 0.221872 23902 167433 -1 3016 29 1278 4059 633979 317690 0 0 633979 317690 4059 1964 0 0 14246 11647 0 0 26456 18856 0 0 4059 2474 0 0 281051 137327 0 0 304108 145422 0 0 4059 0 0 2781 5766 5741 35835 0 0 6.4825 6.4825 -147.182 -6.4825 0 0 896083. 3100.63 0.38 0.24 0.15 -1 -1 0.38 0.0346545 0.0313829 181 176 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 8.87 vpr 53.71 MiB -1 -1 0.24 17852 14 0.56 -1 -1 32300 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55000 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 15.0 MiB 0.71 1590 53.7 MiB 0.05 0.00 7.45681 -149.023 -7.45681 7.45681 0.82 0.000224299 0.000169687 0.0122427 0.0102106 38 3964 23 6.55708e+06 373705 638502. 2209.35 4.30 0.198096 0.174113 23326 155178 -1 3459 29 1581 5267 511764 223794 0 0 511764 223794 5267 2166 0 0 16926 14130 0 0 27338 19670 0 0 5267 2825 0 0 228947 93851 0 0 228019 91152 0 0 5267 0 0 3686 6632 7221 45132 0 0 7.69922 7.69922 -164.445 -7.69922 0 0 851065. 2944.86 0.24 0.15 0.09 -1 -1 0.24 0.0328488 0.0297853 234 232 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 6.26 vpr 53.20 MiB -1 -1 0.22 17488 12 0.28 -1 -1 32276 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 14.6 MiB 0.59 1295 53.2 MiB 0.08 0.00 6.13918 -117.757 -6.13918 6.13918 0.78 0.000314065 0.000260788 0.0200371 0.0167237 28 3840 38 6.55708e+06 301375 500653. 1732.36 2.28 0.0815038 0.0715533 21310 115450 -1 3224 22 1351 4234 330087 69544 0 0 330087 69544 4234 2432 0 0 14328 11841 0 0 22651 16635 0 0 4234 2873 0 0 142469 18282 0 0 142171 17481 0 0 4234 0 0 2883 6254 6288 38263 0 0 6.31284 6.31284 -134.771 -6.31284 0 0 612192. 2118.31 0.27 0.12 0.10 -1 -1 0.27 0.024934 0.0225549 160 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.95 vpr 52.80 MiB -1 -1 0.19 17148 11 0.23 -1 -1 32024 -1 -1 26 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54064 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 14.3 MiB 0.37 995 52.8 MiB 0.08 0.00 5.54984 -99.8768 -5.54984 5.54984 1.01 0.000279581 0.000230189 0.0200968 0.0168126 30 2509 32 6.55708e+06 313430 526063. 1820.29 3.01 0.109981 0.095538 21886 126133 -1 2077 14 861 2578 121083 29684 0 0 121083 29684 2578 1284 0 0 8269 6766 0 0 11679 8789 0 0 2578 1494 0 0 47447 5795 0 0 48532 5556 0 0 2578 0 0 1717 2615 2927 19429 0 0 5.99144 5.99144 -117.03 -5.99144 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0174001 0.0160325 140 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.44 vpr 53.75 MiB -1 -1 0.26 17956 13 0.40 -1 -1 32376 -1 -1 40 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55044 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 15.6 MiB 0.55 1850 53.8 MiB 0.06 0.00 6.5217 -134.01 -6.5217 6.5217 0.60 0.000243001 0.000199223 0.0148068 0.0122903 38 4809 50 6.55708e+06 482200 638502. 2209.35 5.41 0.200656 0.178226 23326 155178 -1 3726 17 1852 6072 288807 68052 0 0 288807 68052 6072 2525 0 0 19523 15915 0 0 27675 20873 0 0 6072 3200 0 0 110784 13441 0 0 118681 12098 0 0 6072 0 0 4220 7971 8085 55492 0 0 6.8013 6.8013 -151.312 -6.8013 0 0 851065. 2944.86 0.35 0.11 0.12 -1 -1 0.35 0.0364648 0.0335062 286 285 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.99 vpr 53.21 MiB -1 -1 0.25 17736 14 0.34 -1 -1 32568 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 14.6 MiB 0.27 1321 53.2 MiB 0.11 0.00 6.68876 -132.38 -6.68876 6.68876 1.00 0.000320672 0.000261783 0.0274476 0.0227652 34 3832 41 6.55708e+06 337540 585099. 2024.56 1.95 0.118571 0.103341 22462 138074 -1 2888 17 1277 3380 193742 45462 0 0 193742 45462 3380 1778 0 0 11742 9515 0 0 18285 13700 0 0 3380 2163 0 0 76752 9417 0 0 80203 8889 0 0 3380 0 0 2103 3046 3469 22484 0 0 7.28976 7.28976 -157.072 -7.28976 0 0 742403. 2568.87 0.22 0.08 0.12 -1 -1 0.22 0.0231938 0.0210795 188 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 8.05 vpr 52.71 MiB -1 -1 0.22 17592 12 0.21 -1 -1 32112 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53976 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 14.2 MiB 0.39 1169 52.7 MiB 0.06 0.00 5.95024 -129.421 -5.95024 5.95024 0.98 0.000279393 0.000229883 0.0125207 0.0105973 28 2949 18 6.55708e+06 325485 500653. 1732.36 4.15 0.124749 0.110054 21310 115450 -1 2563 16 1039 2874 164174 38256 0 0 164174 38256 2874 1505 0 0 9982 7949 0 0 15193 11464 0 0 2874 1726 0 0 66720 7940 0 0 66531 7672 0 0 2874 0 0 1835 3039 3058 20538 0 0 6.22984 6.22984 -146.616 -6.22984 0 0 612192. 2118.31 0.27 0.08 0.10 -1 -1 0.27 0.0198877 0.0182909 145 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 5.92 vpr 53.09 MiB -1 -1 0.23 17436 13 0.36 -1 -1 32188 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 14.5 MiB 0.55 1363 53.1 MiB 0.06 0.00 6.4825 -135.398 -6.4825 6.4825 0.98 0.000300291 0.00025021 0.014771 0.0124146 28 3348 46 6.55708e+06 313430 500653. 1732.36 1.65 0.116249 0.103073 21310 115450 -1 2948 20 1198 3594 208794 48344 0 0 208794 48344 3594 1794 0 0 12402 9948 0 0 18955 14292 0 0 3594 2128 0 0 85569 10042 0 0 84680 10140 0 0 3594 0 0 2396 4673 4862 29791 0 0 7.0443 7.0443 -153.736 -7.0443 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0262198 0.023951 169 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 8.19 vpr 53.55 MiB -1 -1 0.25 17732 13 0.43 -1 -1 32308 -1 -1 35 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 15.1 MiB 0.34 1793 53.6 MiB 0.05 0.00 6.5197 -138.073 -6.5197 6.5197 0.67 0.000194039 0.000157239 0.0106389 0.00886743 36 4477 30 6.55708e+06 421925 612192. 2118.31 4.27 0.117441 0.103191 22750 144809 -1 3769 17 1457 4428 269135 58607 0 0 269135 58607 4428 2106 0 0 15013 11743 0 0 23032 17054 0 0 4428 2606 0 0 109513 12993 0 0 112721 12105 0 0 4428 0 0 2971 5864 5631 38094 0 0 6.9613 6.9613 -158.522 -6.9613 0 0 782063. 2706.10 0.33 0.10 0.14 -1 -1 0.33 0.0305485 0.0281228 233 228 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 8.61 vpr 53.24 MiB -1 -1 0.21 17548 11 0.34 -1 -1 32192 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1443 53.2 MiB 0.07 0.00 5.31404 -109.502 -5.31404 5.31404 1.01 0.00038267 0.000313538 0.0177626 0.0148594 36 3678 42 6.55708e+06 373705 612192. 2118.31 4.45 0.210296 0.184963 22750 144809 -1 3153 20 1355 4842 300118 65190 0 0 300118 65190 4842 2381 0 0 16206 13533 0 0 26252 19020 0 0 4842 2949 0 0 120057 14193 0 0 127919 13114 0 0 4842 0 0 3487 8073 8006 50028 0 0 5.67464 5.67464 -125.507 -5.67464 0 0 782063. 2706.10 0.35 0.11 0.14 -1 -1 0.35 0.0292809 0.026654 199 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.28 vpr 53.45 MiB -1 -1 0.25 17852 15 0.48 -1 -1 32336 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54736 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 14.9 MiB 0.68 1529 53.5 MiB 0.08 0.00 7.33722 -153.781 -7.33722 7.33722 1.00 0.000388415 0.000322462 0.0207224 0.0173232 30 3689 41 6.55708e+06 349595 526063. 1820.29 1.71 0.107175 0.0942174 21886 126133 -1 3027 16 1359 4338 207750 48920 0 0 207750 48920 4338 1871 0 0 13963 11440 0 0 20174 15121 0 0 4338 2177 0 0 83561 8988 0 0 81376 9323 0 0 4338 0 0 2979 5296 5642 37745 0 0 7.57761 7.57761 -171.801 -7.57761 0 0 666494. 2306.21 0.26 0.05 0.12 -1 -1 0.26 0.015118 0.0138672 202 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 6.26 vpr 53.35 MiB -1 -1 0.24 17960 13 0.43 -1 -1 32156 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 14.8 MiB 0.58 1400 53.4 MiB 0.06 0.00 6.7601 -144.101 -6.7601 6.7601 0.96 0.000337716 0.000275939 0.0148853 0.0125193 34 3560 23 6.55708e+06 361650 585099. 2024.56 1.85 0.112965 0.100115 22462 138074 -1 3067 17 1394 4241 238850 55392 0 0 238850 55392 4241 2132 0 0 14598 11791 0 0 23353 17078 0 0 4241 2542 0 0 95466 11092 0 0 96951 10757 0 0 4241 0 0 2847 5413 5655 36592 0 0 7.0815 7.0815 -163.573 -7.0815 0 0 742403. 2568.87 0.33 0.09 0.12 -1 -1 0.33 0.0318059 0.0295032 194 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.85 vpr 53.07 MiB -1 -1 0.17 17164 12 0.26 -1 -1 32120 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54340 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 14.4 MiB 0.60 1134 53.1 MiB 0.07 0.00 6.1611 -125.432 -6.1611 6.1611 0.95 0.000266301 0.000218127 0.0154011 0.0129293 30 2779 29 6.55708e+06 349595 526063. 1820.29 2.67 0.10645 0.0919373 21886 126133 -1 2400 17 1088 3117 150749 35955 0 0 150749 35955 3117 1485 0 0 10082 8270 0 0 14275 10846 0 0 3117 1870 0 0 60217 6785 0 0 59941 6699 0 0 3117 0 0 2029 2706 2843 19885 0 0 6.4407 6.4407 -142.527 -6.4407 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0193702 0.0176273 157 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.84 vpr 52.84 MiB -1 -1 0.13 17452 11 0.21 -1 -1 32120 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54112 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 14.3 MiB 0.25 1059 52.8 MiB 0.07 0.00 5.51064 -114.131 -5.51064 5.51064 0.79 0.000275021 0.000222753 0.0172762 0.0142333 32 3266 40 6.55708e+06 253155 554710. 1919.41 3.41 0.142538 0.123312 22174 131602 -1 2681 27 1624 4535 362931 110790 0 0 362931 110790 4535 2516 0 0 15971 13083 0 0 28197 20096 0 0 4535 3150 0 0 155910 36494 0 0 153783 35451 0 0 4535 0 0 2911 5080 5139 31647 0 0 6.22218 6.22218 -142.909 -6.22218 0 0 701300. 2426.64 0.29 0.15 0.12 -1 -1 0.29 0.029033 0.0261503 145 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 8.34 vpr 53.43 MiB -1 -1 0.20 17548 13 0.43 -1 -1 32300 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54716 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 14.9 MiB 0.60 1313 53.4 MiB 0.08 0.00 6.4805 -129.871 -6.4805 6.4805 0.95 0.000332079 0.000266727 0.0198652 0.0164747 38 3103 27 6.55708e+06 349595 638502. 2209.35 4.19 0.216053 0.190475 23326 155178 -1 2638 17 1294 4309 192975 46423 0 0 192975 46423 4309 1699 0 0 13891 11249 0 0 19604 14788 0 0 4309 2167 0 0 74789 8387 0 0 76073 8133 0 0 4309 0 0 3015 5755 5484 40029 0 0 6.7209 6.7209 -143.139 -6.7209 0 0 851065. 2944.86 0.22 0.04 0.09 -1 -1 0.22 0.0142452 0.0130698 203 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.30 vpr 52.73 MiB -1 -1 0.13 17172 10 0.20 -1 -1 32164 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54000 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 14.3 MiB 0.23 889 52.7 MiB 0.05 0.00 4.89172 -95.2749 -4.89172 4.89172 0.73 0.000131975 0.000105769 0.0114009 0.00934159 30 2728 31 6.55708e+06 289320 526063. 1820.29 2.16 0.0777292 0.0667181 21886 126133 -1 1864 21 1084 3647 166359 40711 0 0 166359 40711 3647 1503 0 0 11450 9517 0 0 16880 12258 0 0 3647 1841 0 0 63848 7930 0 0 66887 7662 0 0 3647 0 0 2563 4449 4609 32660 0 0 5.21312 5.21312 -112.058 -5.21312 0 0 666494. 2306.21 0.19 0.04 0.07 -1 -1 0.19 0.0112697 0.0101557 137 130 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 8.24 vpr 52.85 MiB -1 -1 0.20 17316 14 0.25 -1 -1 32092 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54120 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 14.3 MiB 0.66 1126 52.9 MiB 0.06 0.00 6.58503 -136.393 -6.58503 6.58503 0.95 0.000278623 0.000224955 0.0133399 0.010917 34 3082 37 6.55708e+06 289320 585099. 2024.56 4.07 0.171076 0.150242 22462 138074 -1 2524 17 1223 3572 199143 48270 0 0 199143 48270 3572 1778 0 0 12296 10104 0 0 19585 14334 0 0 3572 2216 0 0 82878 9632 0 0 77240 10206 0 0 3572 0 0 2349 3725 4817 27715 0 0 6.70924 6.70924 -153.326 -6.70924 0 0 742403. 2568.87 0.32 0.06 0.09 -1 -1 0.32 0.0151385 0.0137335 146 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 4.26 vpr 53.18 MiB -1 -1 0.16 17868 13 0.36 -1 -1 32216 -1 -1 30 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54452 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 14.6 MiB 0.26 1236 53.2 MiB 0.06 0.00 6.10764 -127.964 -6.10764 6.10764 0.70 0.000294783 0.000230696 0.0149767 0.0123489 30 3031 16 6.55708e+06 361650 526063. 1820.29 1.17 0.0845553 0.0746626 21886 126133 -1 2674 14 1167 3324 157974 38276 0 0 157974 38276 3324 1625 0 0 10899 8805 0 0 14819 11464 0 0 3324 1948 0 0 61759 7447 0 0 63849 6987 0 0 3324 0 0 2157 3364 3420 23877 0 0 6.51004 6.51004 -151.536 -6.51004 0 0 666494. 2306.21 0.19 0.04 0.07 -1 -1 0.19 0.0115549 0.0106468 180 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 7.32 vpr 52.71 MiB -1 -1 0.20 17248 12 0.20 -1 -1 32144 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53980 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 14.3 MiB 0.40 1067 52.7 MiB 0.08 0.00 5.24892 -114.596 -5.24892 5.24892 0.85 0.000266233 0.000219462 0.0189659 0.0155394 34 2839 42 6.55708e+06 313430 585099. 2024.56 3.51 0.156967 0.136638 22462 138074 -1 2178 35 1196 3495 348322 142821 0 0 348322 142821 3495 1588 0 0 11941 9604 0 0 21493 15105 0 0 3495 1991 0 0 156033 58387 0 0 151865 56146 0 0 3495 0 0 2299 3374 4498 25846 0 0 5.69052 5.69052 -132.511 -5.69052 0 0 742403. 2568.87 0.29 0.14 0.12 -1 -1 0.29 0.031124 0.0278999 138 132 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 7.96 vpr 53.35 MiB -1 -1 0.24 17436 12 0.26 -1 -1 32212 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 14.9 MiB 0.40 1430 53.4 MiB 0.07 0.00 5.67264 -123.683 -5.67264 5.67264 1.01 0.000375179 0.000293642 0.018912 0.0158189 34 3802 45 6.55708e+06 313430 585099. 2024.56 3.99 0.150176 0.133422 22462 138074 -1 3121 16 1206 3859 243682 54056 0 0 243682 54056 3859 1907 0 0 13700 11034 0 0 21408 15930 0 0 3859 2297 0 0 99540 11855 0 0 101316 11033 0 0 3859 0 0 2653 6624 6908 41976 0 0 6.15344 6.15344 -146.405 -6.15344 0 0 742403. 2568.87 0.20 0.08 0.07 -1 -1 0.20 0.0220154 0.0201075 195 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.82 vpr 53.29 MiB -1 -1 0.16 17848 13 0.41 -1 -1 32264 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54572 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 14.8 MiB 0.64 1307 53.3 MiB 0.06 0.00 6.5981 -129.393 -6.5981 6.5981 0.73 0.000240846 0.000204081 0.0146285 0.0121778 36 3475 28 6.55708e+06 349595 612192. 2118.31 3.68 0.160381 0.14245 22750 144809 -1 2836 15 1281 3881 213326 50083 0 0 213326 50083 3881 1861 0 0 13210 10798 0 0 20096 15168 0 0 3881 2219 0 0 84003 10436 0 0 88255 9601 0 0 3881 0 0 2600 4972 5328 34381 0 0 6.8385 6.8385 -146.163 -6.8385 0 0 782063. 2706.10 0.33 0.08 0.14 -1 -1 0.33 0.0250068 0.0230326 193 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 6.76 vpr 52.75 MiB -1 -1 0.20 17492 11 0.15 -1 -1 31892 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 14.2 MiB 0.25 1110 52.8 MiB 0.09 0.00 5.45012 -121.16 -5.45012 5.45012 0.79 0.000242672 0.000194983 0.0200147 0.016433 30 3019 24 6.55708e+06 301375 526063. 1820.29 3.42 0.149727 0.132085 21886 126133 -1 2445 17 1019 2970 153900 36262 0 0 153900 36262 2970 1545 0 0 9721 7849 0 0 13886 10606 0 0 2970 1820 0 0 61927 7408 0 0 62426 7034 0 0 2970 0 0 1951 3313 3222 21998 0 0 5.69052 5.69052 -140.835 -5.69052 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0185813 0.0169817 148 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 5.20 vpr 53.11 MiB -1 -1 0.21 17432 13 0.27 -1 -1 32156 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54384 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 14.4 MiB 0.38 1213 53.1 MiB 0.06 0.00 6.2813 -133.177 -6.2813 6.2813 0.60 0.000154302 0.00012472 0.0134316 0.0110179 36 3172 25 6.55708e+06 289320 612192. 2118.31 1.74 0.0928409 0.0812749 22750 144809 -1 2623 17 1066 2995 175416 40542 0 0 175416 40542 2995 1541 0 0 10213 8278 0 0 15768 11906 0 0 2995 1812 0 0 70522 8846 0 0 72923 8159 0 0 2995 0 0 1929 3301 3496 22449 0 0 6.4015 6.4015 -149.131 -6.4015 0 0 782063. 2706.10 0.32 0.07 0.12 -1 -1 0.32 0.0214172 0.0196666 164 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.87 vpr 53.11 MiB -1 -1 0.21 17440 13 0.29 -1 -1 32308 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54380 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 14.7 MiB 0.88 1353 53.1 MiB 0.07 0.00 6.4779 -141.216 -6.4779 6.4779 0.95 0.000336457 0.00026838 0.0188887 0.0157081 30 3565 27 6.55708e+06 337540 526063. 1820.29 1.38 0.0841133 0.0741654 21886 126133 -1 2903 21 1388 3942 197590 47294 0 0 197590 47294 3942 1887 0 0 12875 10483 0 0 18075 13839 0 0 3942 2301 0 0 77892 9702 0 0 80864 9082 0 0 3942 0 0 2554 4208 4264 28504 0 0 7.1181 7.1181 -163.937 -7.1181 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0266021 0.0241253 193 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 5.33 vpr 52.98 MiB -1 -1 0.22 17636 11 0.22 -1 -1 32152 -1 -1 27 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54248 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 14.4 MiB 0.25 1166 53.0 MiB 0.03 0.00 5.08892 -102.906 -5.08892 5.08892 0.62 0.000147755 0.000119841 0.00678901 0.00569313 36 2822 30 6.55708e+06 325485 612192. 2118.31 1.82 0.086771 0.0769251 22750 144809 -1 2381 16 928 2837 155209 35637 0 0 155209 35637 2837 1325 0 0 9493 7572 0 0 14732 10883 0 0 2837 1614 0 0 62174 7064 0 0 63136 7179 0 0 2837 0 0 1909 3776 4132 26368 0 0 5.58398 5.58398 -117.885 -5.58398 0 0 782063. 2706.10 0.34 0.06 0.14 -1 -1 0.34 0.0212321 0.0195184 160 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.41 vpr 53.67 MiB -1 -1 0.26 17960 14 0.39 -1 -1 32232 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54956 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 15.1 MiB 0.45 1605 53.7 MiB 0.03 0.00 7.0377 -151.842 -7.0377 7.0377 0.60 0.00024404 0.000196372 0.00790932 0.00671271 34 4371 27 6.55708e+06 421925 585099. 2024.56 1.59 0.080737 0.0712751 22462 138074 -1 3759 34 1793 5454 463890 164916 0 0 463890 164916 5454 2674 0 0 18658 15247 0 0 31833 22455 0 0 5454 3252 0 0 203209 63175 0 0 199282 58113 0 0 5454 0 0 3661 7156 6661 46806 0 0 7.1971 7.1971 -169.83 -7.1971 0 0 742403. 2568.87 0.31 0.19 0.13 -1 -1 0.31 0.0488804 0.0439864 224 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.60 vpr 52.84 MiB -1 -1 0.19 17336 12 0.19 -1 -1 32024 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54104 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 14.4 MiB 0.32 1156 52.8 MiB 0.05 0.00 5.57998 -121.761 -5.57998 5.57998 0.82 0.000258812 0.000211473 0.0116434 0.00962528 36 2690 47 6.55708e+06 337540 612192. 2118.31 2.89 0.120084 0.105781 22750 144809 -1 2273 19 1043 2689 153836 35375 0 0 153836 35375 2689 1420 0 0 9166 7410 0 0 14693 10713 0 0 2689 1705 0 0 62594 7062 0 0 62005 7065 0 0 2689 0 0 1646 2145 2581 16723 0 0 5.82038 5.82038 -136.665 -5.82038 0 0 782063. 2706.10 0.33 0.06 0.14 -1 -1 0.33 0.0195454 0.0176169 138 129 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 9.30 vpr 53.36 MiB -1 -1 0.26 17624 13 0.39 -1 -1 32568 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54640 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 14.9 MiB 0.56 1307 53.4 MiB 0.06 0.00 6.3969 -131.553 -6.3969 6.3969 0.77 0.000310041 0.000252248 0.0137975 0.0116715 30 3707 34 6.55708e+06 301375 526063. 1820.29 5.19 0.164708 0.14489 21886 126133 -1 3008 20 1402 4381 217912 51411 0 0 217912 51411 4381 1901 0 0 13850 11390 0 0 20116 14863 0 0 4381 2298 0 0 87013 10636 0 0 88171 10323 0 0 4381 0 0 2979 5587 6240 40393 0 0 6.5171 6.5171 -148.42 -6.5171 0 0 666494. 2306.21 0.29 0.10 0.10 -1 -1 0.29 0.0334677 0.030786 189 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 7.56 vpr 52.93 MiB -1 -1 0.22 17416 13 0.23 -1 -1 31864 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54204 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 14.4 MiB 0.34 1197 52.9 MiB 0.07 0.00 6.3205 -136.346 -6.3205 6.3205 0.91 0.000271223 0.000213127 0.0164093 0.0134132 28 3457 38 6.55708e+06 313430 500653. 1732.36 4.15 0.142397 0.124603 21310 115450 -1 2818 29 1214 3284 273116 89732 0 0 273116 89732 3284 1820 0 0 11333 9106 0 0 17788 13297 0 0 3284 2102 0 0 119354 33095 0 0 118073 30312 0 0 3284 0 0 2070 3029 3338 21561 0 0 6.3205 6.3205 -152.823 -6.3205 0 0 612192. 2118.31 0.20 0.10 0.06 -1 -1 0.20 0.026406 0.0237191 151 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 12.23 vpr 53.18 MiB -1 -1 0.22 17596 12 0.28 -1 -1 32252 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54452 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 14.6 MiB 0.31 1319 53.2 MiB 0.04 0.00 6.07244 -127.971 -6.07244 6.07244 0.79 0.000172852 0.000140438 0.00931849 0.00782077 28 3698 31 6.55708e+06 313430 500653. 1732.36 8.75 0.132795 0.116585 21310 115450 -1 2889 20 1197 3722 289014 86004 0 0 289014 86004 3722 1848 0 0 12650 10380 0 0 19881 14623 0 0 3722 2145 0 0 126325 28560 0 0 122714 28448 0 0 3722 0 0 2525 5406 5944 35503 0 0 6.31284 6.31284 -147.835 -6.31284 0 0 612192. 2118.31 0.20 0.11 0.07 -1 -1 0.20 0.0264957 0.0241501 176 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 8.87 vpr 53.98 MiB -1 -1 0.25 18376 15 0.46 -1 -1 32596 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55272 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 15.4 MiB 0.30 1764 54.0 MiB 0.16 0.00 7.2801 -147.709 -7.2801 7.2801 0.98 0.000460265 0.000373076 0.041761 0.0344911 42 5077 50 6.55708e+06 433980 701300. 2426.64 4.40 0.276323 0.240869 23902 167433 -1 3840 24 2069 7006 431271 107728 0 0 431271 107728 7006 2877 0 0 23202 19088 0 0 38351 27002 0 0 7006 3739 0 0 176256 27114 0 0 179450 27908 0 0 7006 0 0 4937 11325 11257 71987 0 0 7.67024 7.67024 -166.252 -7.67024 0 0 896083. 3100.63 0.41 0.17 0.15 -1 -1 0.41 0.0512028 0.0470276 256 255 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 7.13 vpr 52.23 MiB -1 -1 0.17 16908 10 0.12 -1 -1 31968 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53488 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 13.7 MiB 0.13 808 52.2 MiB 0.05 0.00 4.56326 -103.904 -4.56326 4.56326 0.96 0.000183252 0.000150054 0.00949961 0.00790747 26 2235 28 6.55708e+06 216990 477104. 1650.88 3.78 0.0924082 0.0805871 21022 109990 -1 1824 26 801 2035 119569 28520 0 0 119569 28520 2035 1204 0 0 7177 5825 0 0 11201 8314 0 0 2035 1375 0 0 48590 6005 0 0 48531 5797 0 0 2035 0 0 1234 1464 1842 11891 0 0 4.84286 4.84286 -120.448 -4.84286 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.016391 0.0145643 90 81 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 12.79 vpr 52.99 MiB -1 -1 0.22 17472 13 0.18 -1 -1 32204 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54260 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 14.4 MiB 0.21 1023 53.0 MiB 0.03 0.00 6.05678 -122.123 -6.05678 6.05678 0.82 0.000155289 0.000127007 0.00791426 0.00658564 28 3394 40 6.55708e+06 301375 500653. 1732.36 9.60 0.13825 0.122608 21310 115450 -1 2574 16 1069 2884 180281 43029 0 0 180281 43029 2884 1635 0 0 10181 8312 0 0 15806 12123 0 0 2884 1946 0 0 74253 9340 0 0 74273 9673 0 0 2884 0 0 1815 2346 2930 17957 0 0 6.21618 6.21618 -141.615 -6.21618 0 0 612192. 2118.31 0.18 0.04 0.06 -1 -1 0.18 0.0104347 0.00953629 143 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 9.16 vpr 53.05 MiB -1 -1 0.22 17612 12 0.19 -1 -1 32104 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 14.5 MiB 0.28 1248 53.1 MiB 0.05 0.00 6.46824 -134.482 -6.46824 6.46824 0.68 0.000163994 0.000133179 0.0110993 0.00928797 28 3554 28 6.55708e+06 289320 500653. 1732.36 5.75 0.151392 0.131813 21310 115450 -1 2878 16 1235 3276 191988 44553 0 0 191988 44553 3276 1848 0 0 11029 8912 0 0 17099 12921 0 0 3276 2165 0 0 78309 9572 0 0 78999 9135 0 0 3276 0 0 2041 3525 3541 22755 0 0 6.99084 6.99084 -156.606 -6.99084 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.021333 0.0195494 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.31 vpr 52.47 MiB -1 -1 0.18 17232 9 0.16 -1 -1 31928 -1 -1 22 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53732 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 14.1 MiB 0.21 812 52.5 MiB 0.04 0.00 4.28106 -80.808 -4.28106 4.28106 0.99 0.000209996 0.000171498 0.00916832 0.00770293 26 2476 34 6.55708e+06 265210 477104. 1650.88 1.77 0.0681205 0.0599615 21022 109990 -1 1949 19 883 2478 146123 34173 0 0 146123 34173 2478 1347 0 0 8527 6904 0 0 13361 9767 0 0 2478 1545 0 0 59479 7280 0 0 59800 7330 0 0 2478 0 0 1595 2647 2787 18257 0 0 4.76186 4.76186 -97.0068 -4.76186 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.0143197 0.0128741 111 102 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 5.36 vpr 53.38 MiB -1 -1 0.23 17764 12 0.32 -1 -1 32304 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1597 53.4 MiB 0.06 0.00 5.8025 -131.877 -5.8025 5.8025 0.65 0.000191119 0.0001574 0.0137772 0.0115068 34 3936 31 6.55708e+06 397815 585099. 2024.56 2.22 0.0981156 0.0861148 22462 138074 -1 3433 20 1538 4446 277469 63161 0 0 277469 63161 4446 2256 0 0 15975 13117 0 0 24646 18794 0 0 4446 2647 0 0 113241 13434 0 0 114715 12913 0 0 4446 0 0 2908 5027 5403 33314 0 0 6.39184 6.39184 -152.688 -6.39184 0 0 742403. 2568.87 0.20 0.06 0.07 -1 -1 0.20 0.0156756 0.0142842 212 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 14.75 vpr 53.36 MiB -1 -1 0.27 18076 13 0.42 -1 -1 32196 -1 -1 30 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54640 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 14.8 MiB 0.33 1360 53.4 MiB 0.06 0.00 7.01016 -140.144 -7.01016 7.01016 0.74 0.000191282 0.000155108 0.0144122 0.0119065 38 3457 25 6.55708e+06 361650 638502. 2209.35 11.06 0.28275 0.25043 23326 155178 -1 2862 15 1235 3976 188218 44403 0 0 188218 44403 3976 1751 0 0 12590 10251 0 0 18551 13655 0 0 3976 2105 0 0 74298 8337 0 0 74827 8304 0 0 3976 0 0 2741 4693 4849 35509 0 0 7.49096 7.49096 -158.825 -7.49096 0 0 851065. 2944.86 0.34 0.07 0.14 -1 -1 0.34 0.0251757 0.023276 200 197 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 8.33 vpr 53.35 MiB -1 -1 0.16 17576 1 0.01 -1 -1 29720 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54628 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 15.0 MiB 0.30 1046 53.3 MiB 0.08 0.00 4.42712 -130.161 -4.42712 4.42712 1.01 0.000236227 0.000193201 0.0127809 0.0106588 26 3343 40 6.64007e+06 401856 477104. 1650.88 4.98 0.123532 0.10809 21682 110474 -1 2375 21 1581 2445 161318 41786 0 0 161318 41786 2445 1885 0 0 8965 7293 0 0 13438 10482 0 0 2445 2027 0 0 65702 9670 0 0 68323 10429 0 0 2445 0 0 864 1144 904 8001 0 0 4.73068 4.73068 -161.841 -4.73068 0 0 585099. 2024.56 0.17 0.04 0.06 -1 -1 0.17 0.0101444 0.00907046 154 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.05 vpr 53.59 MiB -1 -1 0.16 17352 1 0.01 -1 -1 29712 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54876 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 14.9 MiB 0.16 937 53.6 MiB 0.06 0.00 3.90562 -118.037 -3.90562 3.90562 0.80 0.000143519 0.000117801 0.0118306 0.00983148 32 2464 30 6.64007e+06 301392 554710. 1919.41 1.23 0.0753823 0.0658953 22834 132086 -1 2046 23 1763 2677 218325 54384 0 0 218325 54384 2677 2156 0 0 9689 8130 0 0 15075 11331 0 0 2677 2378 0 0 100567 14852 0 0 87640 15537 0 0 2677 0 0 914 917 773 7109 0 0 4.41709 4.41709 -143.021 -4.41709 0 0 701300. 2426.64 0.21 0.05 0.10 -1 -1 0.21 0.0108524 0.00963557 139 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 6.39 vpr 53.19 MiB -1 -1 0.16 17560 1 0.02 -1 -1 29836 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 14.7 MiB 0.25 1048 53.2 MiB 0.07 0.00 3.51556 -106.006 -3.51556 3.51556 1.01 0.000202977 0.000163394 0.0106823 0.0089445 26 2658 25 6.64007e+06 288834 477104. 1650.88 2.86 0.0865275 0.0745667 21682 110474 -1 2235 20 1330 1872 130885 30398 0 0 130885 30398 1872 1474 0 0 6888 5717 0 0 10194 7960 0 0 1872 1603 0 0 54701 6832 0 0 55358 6812 0 0 1872 0 0 542 566 681 4967 0 0 3.86422 3.86422 -124.693 -3.86422 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0155876 0.0140174 126 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.10 vpr 53.00 MiB -1 -1 0.15 17276 1 0.01 -1 -1 29732 -1 -1 27 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54276 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 14.6 MiB 0.06 934 53.0 MiB 0.09 0.00 3.59876 -97.8405 -3.59876 3.59876 0.75 0.000209627 0.000170468 0.0134296 0.0110754 26 2320 19 6.64007e+06 339066 477104. 1650.88 1.53 0.0781776 0.0670273 21682 110474 -1 1928 22 1439 2619 167889 38908 0 0 167889 38908 2619 1852 0 0 9073 7397 0 0 15067 10991 0 0 2619 1981 0 0 66984 8674 0 0 71527 8013 0 0 2619 0 0 1180 1521 1468 10236 0 0 3.91603 3.91603 -122.237 -3.91603 0 0 585099. 2024.56 0.17 0.04 0.06 -1 -1 0.17 0.00919741 0.00818128 126 25 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.65 vpr 53.26 MiB -1 -1 0.15 17276 1 0.02 -1 -1 29720 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 14.7 MiB 0.07 842 53.3 MiB 0.05 0.00 3.68447 -104.662 -3.68447 3.68447 0.70 0.000118581 9.4927e-05 0.00819027 0.00670242 32 2610 20 6.64007e+06 288834 554710. 1919.41 0.84 0.047819 0.0408347 22834 132086 -1 2107 21 1539 2886 204539 46923 0 0 204539 46923 2886 2183 0 0 10267 8544 0 0 15484 11454 0 0 2886 2403 0 0 84430 11514 0 0 88586 10825 0 0 2886 0 0 1347 1644 1522 11011 0 0 3.62543 3.62543 -124.295 -3.62543 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0164813 0.0147832 130 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.14 vpr 53.25 MiB -1 -1 0.15 17492 1 0.02 -1 -1 29684 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 14.9 MiB 0.11 938 53.3 MiB 0.11 0.00 2.68419 -93.4922 -2.68419 2.68419 1.05 0.000265091 0.000219099 0.0173805 0.0143965 30 2129 19 6.64007e+06 426972 526063. 1820.29 0.82 0.0501615 0.0428957 22546 126617 -1 1770 19 1147 1922 94709 24746 0 0 94709 24746 1922 1260 0 0 6678 5413 0 0 8559 7036 0 0 1922 1375 0 0 37547 5118 0 0 38081 4544 0 0 1922 0 0 775 857 921 6973 0 0 2.70757 2.70757 -109.683 -2.70757 0 0 666494. 2306.21 0.19 0.03 0.10 -1 -1 0.19 0.00942853 0.00837989 142 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.81 vpr 52.81 MiB -1 -1 0.13 17504 1 0.01 -1 -1 29840 -1 -1 19 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54076 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 14.3 MiB 0.10 702 52.8 MiB 0.08 0.00 3.15021 -84.1663 -3.15021 3.15021 0.95 0.000178011 0.000144438 0.0149556 0.0123632 32 1489 18 6.64007e+06 238602 554710. 1919.41 0.82 0.0451909 0.0383053 22834 132086 -1 1337 19 809 1354 87072 20498 0 0 87072 20498 1354 906 0 0 4954 4055 0 0 7991 6019 0 0 1354 971 0 0 34885 4404 0 0 36534 4143 0 0 1354 0 0 545 550 498 4299 0 0 2.96937 2.96937 -95.0852 -2.96937 0 0 701300. 2426.64 0.19 0.04 0.08 -1 -1 0.19 0.0107026 0.00952452 93 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.45 vpr 52.94 MiB -1 -1 0.16 17068 1 0.01 -1 -1 29648 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54212 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 14.3 MiB 0.05 1011 52.9 MiB 0.05 0.00 2.7039 -85.5872 -2.7039 2.7039 0.91 0.000113802 9.2726e-05 0.00782366 0.00646266 26 2372 18 6.64007e+06 389298 477104. 1650.88 1.65 0.0491102 0.0419256 21682 110474 -1 2084 24 1215 2190 158274 35779 0 0 158274 35779 2190 1532 0 0 8177 6665 0 0 12193 9484 0 0 2190 1688 0 0 65279 8530 0 0 68245 7880 0 0 2190 0 0 975 1469 1589 10073 0 0 2.91617 2.91617 -101.878 -2.91617 0 0 585099. 2024.56 0.18 0.04 0.10 -1 -1 0.18 0.00922126 0.00811035 115 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.03 vpr 53.18 MiB -1 -1 0.18 17500 1 0.02 -1 -1 29692 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 14.7 MiB 0.24 923 53.2 MiB 0.08 0.00 2.88585 -100.036 -2.88585 2.88585 0.63 0.000210094 0.000161301 0.0139766 0.0115249 32 2017 18 6.64007e+06 251160 554710. 1919.41 0.90 0.0500635 0.0427058 22834 132086 -1 1855 22 1169 1685 134461 30117 0 0 134461 30117 1685 1447 0 0 6337 5335 0 0 9912 7618 0 0 1685 1504 0 0 59157 6664 0 0 55685 7549 0 0 1685 0 0 516 479 330 4042 0 0 3.01963 3.01963 -116.46 -3.01963 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.0159257 0.0141816 111 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.60 vpr 53.14 MiB -1 -1 0.10 17632 1 0.02 -1 -1 29732 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54420 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 14.5 MiB 0.17 862 53.1 MiB 0.08 0.00 3.13721 -104.225 -3.13721 3.13721 0.99 0.000212388 0.000172712 0.0144843 0.012009 26 2067 20 6.64007e+06 213486 477104. 1650.88 2.36 0.0880269 0.0756884 21682 110474 -1 1886 20 1242 1979 134979 31680 0 0 134979 31680 1979 1575 0 0 7151 6033 0 0 11060 8429 0 0 1979 1630 0 0 57435 6776 0 0 55375 7237 0 0 1979 0 0 737 911 936 6627 0 0 3.33077 3.33077 -122.75 -3.33077 0 0 585099. 2024.56 0.28 0.06 0.09 -1 -1 0.28 0.0150778 0.013536 112 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.01 vpr 53.10 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29716 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54372 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 14.5 MiB 0.12 802 53.1 MiB 0.04 0.00 3.22421 -92.1331 -3.22421 3.22421 0.80 0.000107224 8.5544e-05 0.00870812 0.00714638 30 1612 15 6.64007e+06 213486 526063. 1820.29 1.33 0.0478934 0.0403779 22546 126617 -1 1463 16 650 1002 56304 13497 0 0 56304 13497 1002 750 0 0 3378 2703 0 0 4379 3508 0 0 1002 827 0 0 22544 3096 0 0 23999 2613 0 0 1002 0 0 352 393 361 3052 0 0 2.89296 2.89296 -101.966 -2.89296 0 0 666494. 2306.21 0.29 0.03 0.11 -1 -1 0.29 0.0111467 0.0099924 98 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 6.07 vpr 53.10 MiB -1 -1 0.13 17352 1 0.01 -1 -1 29684 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54376 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 14.5 MiB 0.27 966 53.1 MiB 0.08 0.00 2.9925 -99.7736 -2.9925 2.9925 0.96 0.000186179 0.000150982 0.0131797 0.0108673 32 2125 22 6.64007e+06 226044 554710. 1919.41 2.66 0.0752599 0.0634687 22834 132086 -1 1812 22 1083 1459 94322 22407 0 0 94322 22407 1459 1168 0 0 5211 4304 0 0 7975 6074 0 0 1459 1250 0 0 40380 4746 0 0 37838 4865 0 0 1459 0 0 376 314 332 3301 0 0 2.94917 2.94917 -110.751 -2.94917 0 0 701300. 2426.64 0.28 0.05 0.11 -1 -1 0.28 0.0138325 0.0122186 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 6.03 vpr 53.41 MiB -1 -1 0.13 17404 1 0.01 -1 -1 29640 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54688 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 15.0 MiB 0.28 1104 53.4 MiB 0.12 0.00 3.65347 -120.082 -3.65347 3.65347 1.01 0.000222093 0.000171599 0.0187727 0.0152598 26 2966 28 6.64007e+06 301392 477104. 1650.88 2.49 0.1014 0.0867282 21682 110474 -1 2352 20 1798 2742 213817 47912 0 0 213817 47912 2742 2148 0 0 10117 8544 0 0 15255 11926 0 0 2742 2217 0 0 93151 11469 0 0 89810 11608 0 0 2742 0 0 944 1100 878 7590 0 0 3.65363 3.65363 -134.874 -3.65363 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0177658 0.0159977 139 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 6.35 vpr 53.47 MiB -1 -1 0.16 17680 1 0.02 -1 -1 29680 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 15.1 MiB 0.17 993 53.5 MiB 0.13 0.00 4.00586 -115.692 -4.00586 4.00586 0.75 0.000250817 0.00020516 0.0227233 0.0187882 28 2504 27 6.64007e+06 389298 500653. 1732.36 3.14 0.126961 0.109025 21970 115934 -1 2126 20 1257 2080 158897 35440 0 0 158897 35440 2080 1572 0 0 7458 6085 0 0 10935 8573 0 0 2080 1735 0 0 68039 8911 0 0 68305 8564 0 0 2080 0 0 823 913 1026 7102 0 0 3.97483 3.97483 -138.464 -3.97483 0 0 612192. 2118.31 0.27 0.06 0.10 -1 -1 0.27 0.0169213 0.0151655 134 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.35 vpr 52.83 MiB -1 -1 0.15 17080 1 0.02 -1 -1 29668 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 14.4 MiB 0.11 768 52.8 MiB 0.08 0.00 2.68419 -78.2312 -2.68419 2.68419 1.02 0.000185234 0.000151872 0.0156167 0.0128866 32 1614 17 6.64007e+06 263718 554710. 1919.41 0.91 0.0459924 0.0391477 22834 132086 -1 1507 18 851 1440 95952 22532 0 0 95952 22532 1440 1051 0 0 5297 4405 0 0 8220 6221 0 0 1440 1129 0 0 39945 4981 0 0 39610 4745 0 0 1440 0 0 589 555 498 4482 0 0 2.72777 2.72777 -92.6556 -2.72777 0 0 701300. 2426.64 0.33 0.05 0.11 -1 -1 0.33 0.0139061 0.0125613 98 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 6.09 vpr 53.46 MiB -1 -1 0.15 17512 1 0.02 -1 -1 29760 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 15.0 MiB 0.16 1108 53.5 MiB 0.07 0.00 3.2847 -105.502 -3.2847 3.2847 0.91 0.000141801 0.000114333 0.0131827 0.0108163 32 2458 21 6.64007e+06 276276 554710. 1919.41 2.92 0.123785 0.105704 22834 132086 -1 2176 20 1421 2536 175731 39240 0 0 175731 39240 2536 1747 0 0 9003 7325 0 0 14330 10764 0 0 2536 2167 0 0 77116 8210 0 0 70210 9027 0 0 2536 0 0 1115 1324 1404 9545 0 0 3.23137 3.23137 -119.81 -3.23137 0 0 701300. 2426.64 0.29 0.05 0.08 -1 -1 0.29 0.0122366 0.0110197 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 6.91 vpr 53.46 MiB -1 -1 0.16 17524 1 0.01 -1 -1 29728 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 15.1 MiB 0.26 1058 53.5 MiB 0.10 0.00 3.51127 -116.59 -3.51127 3.51127 0.94 0.000230214 0.000188237 0.0186813 0.0155184 28 2738 22 6.64007e+06 288834 500653. 1732.36 3.52 0.132223 0.115298 21970 115934 -1 2349 21 1588 2323 238272 66892 0 0 238272 66892 2323 2055 0 0 8389 6809 0 0 12681 9996 0 0 2323 2185 0 0 108672 22619 0 0 103884 23228 0 0 2323 0 0 735 776 789 6143 0 0 3.28703 3.28703 -126.826 -3.28703 0 0 612192. 2118.31 0.28 0.08 0.06 -1 -1 0.28 0.0159629 0.0142191 138 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.05 vpr 53.13 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29728 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 14.7 MiB 0.12 845 53.1 MiB 0.08 0.00 2.30864 -86.9176 -2.30864 2.30864 0.95 0.000206533 0.00016788 0.0120945 0.0100055 28 1903 19 6.64007e+06 364182 500653. 1732.36 0.83 0.0481308 0.0410047 21970 115934 -1 1771 18 865 1480 83992 19996 0 0 83992 19996 1480 932 0 0 5084 3943 0 0 7246 5579 0 0 1480 1068 0 0 34400 4311 0 0 34302 4163 0 0 1480 0 0 615 816 780 5837 0 0 2.15051 2.15051 -97.8247 -2.15051 0 0 612192. 2118.31 0.26 0.04 0.10 -1 -1 0.26 0.0133575 0.0119044 110 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 5.79 vpr 52.68 MiB -1 -1 0.15 17220 1 0.01 -1 -1 29660 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53940 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 14.2 MiB 0.05 699 52.7 MiB 0.05 0.00 1.89953 -67.0868 -1.89953 1.89953 1.02 0.000163059 0.000132232 0.0103716 0.00856942 32 1433 17 6.64007e+06 188370 554710. 1919.41 2.65 0.0693839 0.0585947 22834 132086 -1 1315 21 678 1025 93365 19604 0 0 93365 19604 1025 791 0 0 3949 3272 0 0 6494 5005 0 0 1025 843 0 0 40928 4928 0 0 39944 4765 0 0 1025 0 0 347 367 381 2972 0 0 2.04311 2.04311 -84.7495 -2.04311 0 0 701300. 2426.64 0.33 0.05 0.11 -1 -1 0.33 0.0120258 0.0107012 81 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.02 vpr 53.15 MiB -1 -1 0.16 17488 1 0.01 -1 -1 29792 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 14.7 MiB 0.15 807 53.2 MiB 0.09 0.00 3.93687 -117.769 -3.93687 3.93687 0.95 0.000194274 0.000158161 0.0182685 0.0150627 32 2259 24 6.64007e+06 251160 554710. 1919.41 0.92 0.0563937 0.0480715 22834 132086 -1 1702 21 1145 1663 110175 26457 0 0 110175 26457 1663 1376 0 0 5859 4808 0 0 9514 7132 0 0 1663 1555 0 0 46290 5852 0 0 45186 5734 0 0 1663 0 0 518 609 485 4423 0 0 3.69043 3.69043 -130.345 -3.69043 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00841437 0.00752748 128 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.44 vpr 53.15 MiB -1 -1 0.15 17352 1 0.02 -1 -1 29868 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 14.6 MiB 0.06 1064 53.2 MiB 0.08 0.00 3.49156 -112.794 -3.49156 3.49156 0.80 0.00022181 0.00018106 0.0127141 0.0105858 32 2333 23 6.64007e+06 389298 554710. 1919.41 0.57 0.0371123 0.0315709 22834 132086 -1 2116 24 1520 2444 176829 39827 0 0 176829 39827 2444 1787 0 0 9114 7490 0 0 14758 11018 0 0 2444 2012 0 0 72474 9165 0 0 75595 8355 0 0 2444 0 0 924 1322 1273 9037 0 0 3.76663 3.76663 -132.153 -3.76663 0 0 701300. 2426.64 0.23 0.05 0.12 -1 -1 0.23 0.0119629 0.0105858 135 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.45 vpr 53.77 MiB -1 -1 0.10 17616 1 0.01 -1 -1 29664 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55060 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 15.0 MiB 0.28 1153 53.8 MiB 0.14 0.00 3.65022 -113.615 -3.65022 3.65022 1.01 0.000252609 0.000205676 0.0235364 0.0194218 32 2711 20 6.64007e+06 313950 554710. 1919.41 0.80 0.0644352 0.0548516 22834 132086 -1 2357 19 1474 2351 186257 39820 0 0 186257 39820 2351 1911 0 0 8577 7094 0 0 13199 9898 0 0 2351 2140 0 0 81222 9381 0 0 78557 9396 0 0 2351 0 0 877 1124 1030 7662 0 0 3.90048 3.90048 -132.181 -3.90048 0 0 701300. 2426.64 0.32 0.07 0.13 -1 -1 0.32 0.0181993 0.016366 144 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.70 vpr 52.43 MiB -1 -1 0.09 17200 1 0.01 -1 -1 29728 -1 -1 18 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53684 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 13.8 MiB 0.13 424 52.4 MiB 0.05 0.00 1.89953 -53.7606 -1.89953 1.89953 0.80 0.00012985 0.000104195 0.00837777 0.00686493 28 1299 26 6.64007e+06 226044 500653. 1732.36 1.02 0.0383286 0.0330343 21970 115934 -1 1081 25 685 946 115865 47440 0 0 115865 47440 946 798 0 0 3530 2844 0 0 5212 4113 0 0 946 839 0 0 53327 19839 0 0 51904 19007 0 0 946 0 0 261 283 284 2428 0 0 2.06751 2.06751 -68.3536 -2.06751 0 0 612192. 2118.31 0.18 0.03 0.06 -1 -1 0.18 0.00631388 0.00550066 77 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 5.90 vpr 53.07 MiB -1 -1 0.11 17320 1 0.01 -1 -1 29824 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 14.4 MiB 0.06 941 53.1 MiB 0.09 0.00 4.00635 -102.194 -4.00635 4.00635 0.92 0.000219284 0.000178541 0.0150583 0.0124319 32 2150 23 6.64007e+06 263718 554710. 1919.41 2.66 0.105821 0.0910932 22834 132086 -1 1974 19 1089 2067 148114 33840 0 0 148114 33840 2067 1576 0 0 7469 6075 0 0 11730 8752 0 0 2067 1814 0 0 63518 7633 0 0 61263 7990 0 0 2067 0 0 978 1181 1170 8116 0 0 4.04602 4.04602 -124.592 -4.04602 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0147424 0.0132703 118 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 5.03 vpr 52.36 MiB -1 -1 0.12 16568 1 0.01 -1 -1 29612 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53620 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 13.8 MiB 0.13 409 52.4 MiB 0.03 0.00 2.08773 -59.2766 -2.08773 2.08773 1.01 0.000147724 0.000119852 0.00539279 0.00450888 28 1291 47 6.64007e+06 175812 500653. 1732.36 1.98 0.0523679 0.0450797 21970 115934 -1 872 15 508 596 42287 12656 0 0 42287 12656 596 561 0 0 2235 1797 0 0 3131 2603 0 0 596 567 0 0 18478 3729 0 0 17251 3399 0 0 596 0 0 88 90 100 1050 0 0 2.14231 2.14231 -71.1836 -2.14231 0 0 612192. 2118.31 0.17 0.02 0.10 -1 -1 0.17 0.00456109 0.00409609 79 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.25 vpr 53.02 MiB -1 -1 0.15 17448 1 0.01 -1 -1 29748 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 14.6 MiB 0.06 1016 53.0 MiB 0.12 0.00 3.62727 -105.452 -3.62727 3.62727 0.90 0.00021582 0.00017509 0.0201888 0.0166937 28 2100 23 6.64007e+06 376740 500653. 1732.36 0.91 0.0631962 0.0541312 21970 115934 -1 1890 18 904 1451 93378 21459 0 0 93378 21459 1451 1054 0 0 5241 4084 0 0 7768 6156 0 0 1451 1123 0 0 38937 4510 0 0 38530 4532 0 0 1451 0 0 547 564 593 4757 0 0 3.41203 3.41203 -115.281 -3.41203 0 0 612192. 2118.31 0.28 0.05 0.10 -1 -1 0.28 0.0140116 0.0125195 123 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.42 vpr 53.14 MiB -1 -1 0.14 17244 1 0.01 -1 -1 29872 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.7 MiB 0.07 995 53.1 MiB 0.04 0.00 3.0905 -90.605 -3.0905 3.0905 0.66 0.000117773 9.4902e-05 0.0061215 0.00506089 26 2230 22 6.64007e+06 389298 477104. 1650.88 0.68 0.0396712 0.034085 21682 110474 -1 1988 18 1127 1955 122072 29452 0 0 122072 29452 1955 1346 0 0 7285 5808 0 0 10833 8487 0 0 1955 1485 0 0 50253 6062 0 0 49791 6264 0 0 1955 0 0 828 1074 1160 7879 0 0 2.84296 2.84296 -106.319 -2.84296 0 0 585099. 2024.56 0.21 0.05 0.09 -1 -1 0.21 0.0148332 0.0133213 128 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.72 vpr 53.36 MiB -1 -1 0.14 17632 1 0.01 -1 -1 29692 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 14.7 MiB 0.12 1072 53.4 MiB 0.14 0.00 3.69347 -110.77 -3.69347 3.69347 1.03 0.000234631 0.000188681 0.0230768 0.0190064 28 2357 20 6.64007e+06 339066 500653. 1732.36 2.24 0.0906452 0.0769993 21970 115934 -1 2149 22 1255 2171 145664 32598 0 0 145664 32598 2171 1653 0 0 7475 6014 0 0 11411 8640 0 0 2171 1750 0 0 62208 7080 0 0 60228 7461 0 0 2171 0 0 916 1084 1048 7921 0 0 3.67063 3.67063 -128.321 -3.67063 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0179278 0.0160374 126 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.37 vpr 53.04 MiB -1 -1 0.14 17464 1 0.02 -1 -1 29732 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54316 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 14.5 MiB 0.08 862 53.0 MiB 0.08 0.00 2.42079 -85.6615 -2.42079 2.42079 1.02 0.000201968 0.000163933 0.0156274 0.0127941 32 1901 20 6.64007e+06 200928 554710. 1919.41 0.94 0.0527246 0.0449924 22834 132086 -1 1676 16 853 1394 104135 24023 0 0 104135 24023 1394 1048 0 0 5343 4439 0 0 8433 6593 0 0 1394 1113 0 0 43885 5603 0 0 43686 5227 0 0 1394 0 0 541 511 506 4224 0 0 2.70477 2.70477 -104.674 -2.70477 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0149938 0.0134222 101 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.10 vpr 52.82 MiB -1 -1 0.16 17516 1 0.02 -1 -1 29708 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54088 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 14.4 MiB 0.07 763 52.8 MiB 0.06 0.00 2.64019 -83.9557 -2.64019 2.64019 0.98 0.000192293 0.000156902 0.00999511 0.00837115 32 1639 22 6.64007e+06 288834 554710. 1919.41 0.73 0.032596 0.0277622 22834 132086 -1 1486 20 827 1318 93734 21507 0 0 93734 21507 1318 916 0 0 4945 4163 0 0 7450 5648 0 0 1318 1017 0 0 38139 5087 0 0 40564 4676 0 0 1318 0 0 491 435 547 4175 0 0 2.79977 2.79977 -96.967 -2.79977 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0125941 0.01116 97 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.20 vpr 52.82 MiB -1 -1 0.16 17660 1 0.01 -1 -1 29720 -1 -1 23 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54088 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 14.4 MiB 0.06 801 52.8 MiB 0.08 0.00 2.7119 -80.2775 -2.7119 2.7119 0.87 0.000100033 8.0701e-05 0.0137099 0.0112265 32 1728 21 6.64007e+06 288834 554710. 1919.41 2.09 0.0698015 0.0584364 22834 132086 -1 1585 18 900 1584 113583 25503 0 0 113583 25503 1584 1188 0 0 5825 4913 0 0 8968 6950 0 0 1584 1263 0 0 48925 5514 0 0 46697 5675 0 0 1584 0 0 684 557 628 5171 0 0 2.88197 2.88197 -97.4045 -2.88197 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.011789 0.0105595 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.79 vpr 52.88 MiB -1 -1 0.14 16896 1 0.01 -1 -1 29720 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54144 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 14.4 MiB 0.03 642 52.9 MiB 0.02 0.00 3.19341 -91.8339 -3.19341 3.19341 0.62 0.000101865 8.257e-05 0.0036287 0.00308847 30 1801 23 6.64007e+06 238602 526063. 1820.29 1.41 0.042013 0.0358369 22546 126617 -1 1461 22 1081 1813 94964 24425 0 0 94964 24425 1813 1364 0 0 6183 5027 0 0 8072 6550 0 0 1813 1505 0 0 35532 5266 0 0 41551 4713 0 0 1813 0 0 732 805 807 6071 0 0 2.76077 2.76077 -102.608 -2.76077 0 0 666494. 2306.21 0.27 0.03 0.11 -1 -1 0.27 0.0076958 0.00682114 110 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.93 vpr 52.99 MiB -1 -1 0.16 17512 1 0.02 -1 -1 29668 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54260 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 14.5 MiB 0.05 855 53.0 MiB 0.04 0.00 2.8301 -90.1273 -2.8301 2.8301 0.61 0.000115867 9.5043e-05 0.00669373 0.00549792 30 1725 20 6.64007e+06 339066 526063. 1820.29 1.69 0.0553193 0.0465925 22546 126617 -1 1581 20 745 1288 65243 15965 0 0 65243 15965 1288 823 0 0 4263 3426 0 0 5904 4592 0 0 1288 902 0 0 26605 2998 0 0 25895 3224 0 0 1288 0 0 543 514 637 4810 0 0 2.66357 2.66357 -99.2184 -2.66357 0 0 666494. 2306.21 0.19 0.02 0.07 -1 -1 0.19 0.00735448 0.0065531 103 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.00 vpr 53.06 MiB -1 -1 0.16 17352 1 0.01 -1 -1 29684 -1 -1 26 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54336 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 14.5 MiB 0.14 863 53.1 MiB 0.09 0.00 2.6377 -86.5358 -2.6377 2.6377 0.82 0.000182894 0.000146722 0.0157033 0.0129043 32 1849 20 6.64007e+06 326508 554710. 1919.41 2.23 0.0656914 0.0553374 22834 132086 -1 1656 16 866 1275 78464 19022 0 0 78464 19022 1275 953 0 0 4650 3810 0 0 6960 5327 0 0 1275 1068 0 0 32252 3999 0 0 32052 3865 0 0 1275 0 0 409 520 503 3931 0 0 2.36297 2.36297 -94.6637 -2.36297 0 0 701300. 2426.64 0.19 0.02 0.08 -1 -1 0.19 0.00697114 0.00626742 105 48 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 7.30 vpr 53.31 MiB -1 -1 0.17 17400 1 0.02 -1 -1 29648 -1 -1 38 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54592 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 14.8 MiB 0.16 1145 53.3 MiB 0.10 0.00 3.51556 -101.772 -3.51556 3.51556 0.83 0.000265237 0.000217639 0.0150819 0.0125253 28 2857 35 6.64007e+06 477204 500653. 1732.36 4.50 0.118409 0.103341 21970 115934 -1 2299 17 1146 2198 146583 32476 0 0 146583 32476 2198 1382 0 0 7653 6015 0 0 11160 8636 0 0 2198 1552 0 0 64365 7109 0 0 59009 7782 0 0 2198 0 0 1052 1863 1992 12181 0 0 3.71062 3.71062 -122.464 -3.71062 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.0094632 0.00850856 151 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 5.66 vpr 53.58 MiB -1 -1 0.17 17472 1 0.02 -1 -1 29748 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 15.0 MiB 0.14 1037 53.6 MiB 0.10 0.00 3.11521 -106.201 -3.11521 3.11521 1.09 0.000284517 0.000233749 0.0154142 0.0126274 30 2168 22 6.64007e+06 464646 526063. 1820.29 2.10 0.112318 0.096092 22546 126617 -1 1853 18 1349 2140 108427 25981 0 0 108427 25981 2140 1415 0 0 7104 5696 0 0 9230 7409 0 0 2140 1590 0 0 45012 4871 0 0 42801 5000 0 0 2140 0 0 791 975 1028 7534 0 0 2.85977 2.85977 -115.993 -2.85977 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0178142 0.015991 147 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.31 vpr 53.14 MiB -1 -1 0.16 17560 1 0.02 -1 -1 29688 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 14.5 MiB 0.19 843 53.1 MiB 0.05 0.00 3.48127 -104.434 -3.48127 3.48127 0.60 0.000185801 0.000149218 0.00708322 0.00585482 32 2095 21 6.64007e+06 238602 554710. 1919.41 1.88 0.0530886 0.0447143 22834 132086 -1 1780 17 956 1369 103528 23513 0 0 103528 23513 1369 1106 0 0 5238 4376 0 0 7674 6048 0 0 1369 1167 0 0 45839 5076 0 0 42039 5740 0 0 1369 0 0 413 401 426 3781 0 0 3.04663 3.04663 -113.526 -3.04663 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00717905 0.00644233 112 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 7.14 vpr 53.41 MiB -1 -1 0.17 17464 1 0.02 -1 -1 29736 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54696 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 15.0 MiB 0.14 985 53.4 MiB 0.09 0.00 3.41261 -105.742 -3.41261 3.41261 1.02 0.000244956 0.00019852 0.0156426 0.0129373 28 2708 26 6.64007e+06 313950 500653. 1732.36 3.65 0.13292 0.115487 21970 115934 -1 2259 19 1276 2243 168205 37731 0 0 168205 37731 2243 1538 0 0 8225 6809 0 0 11793 9477 0 0 2243 1645 0 0 71956 9347 0 0 71745 8915 0 0 2243 0 0 967 1182 1179 8315 0 0 3.15237 3.15237 -122.751 -3.15237 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0188663 0.0170167 138 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 9.05 vpr 53.53 MiB -1 -1 0.15 17724 1 0.01 -1 -1 29732 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54812 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 15.3 MiB 0.41 1272 53.5 MiB 0.13 0.00 4.67899 -142.805 -4.67899 4.67899 1.01 0.000273794 0.000227787 0.0214468 0.0178589 28 3457 26 6.64007e+06 364182 500653. 1732.36 5.49 0.132994 0.115363 21970 115934 -1 2626 20 1939 2907 204299 47032 0 0 204299 47032 2907 2470 0 0 9951 7938 0 0 15030 11469 0 0 2907 2598 0 0 90747 10715 0 0 82757 11842 0 0 2907 0 0 968 1145 917 7873 0 0 5.26895 5.26895 -173.742 -5.26895 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0111074 0.00997465 172 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.32 vpr 53.63 MiB -1 -1 0.15 17764 1 0.02 -1 -1 29728 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 15.0 MiB 0.38 1024 53.6 MiB 0.09 0.00 4.12201 -121.45 -4.12201 4.12201 0.99 0.000251642 0.00020407 0.0144425 0.012015 32 2849 25 6.64007e+06 339066 554710. 1919.41 0.83 0.0583232 0.0500845 22834 132086 -1 2274 23 1863 2919 206177 47249 0 0 206177 47249 2919 2193 0 0 10441 8717 0 0 17079 12483 0 0 2919 2362 0 0 87524 10825 0 0 85295 10669 0 0 2919 0 0 1056 1140 1111 8684 0 0 4.60548 4.60548 -147.371 -4.60548 0 0 701300. 2426.64 0.21 0.08 0.08 -1 -1 0.21 0.0208578 0.0186655 164 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.83 vpr 53.41 MiB -1 -1 0.14 17340 1 0.01 -1 -1 29776 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 15.0 MiB 0.13 1038 53.4 MiB 0.11 0.00 3.81567 -112.348 -3.81567 3.81567 0.78 0.000243734 0.000194837 0.0169717 0.013946 28 2455 22 6.64007e+06 389298 500653. 1732.36 2.15 0.0863636 0.0738218 21970 115934 -1 2217 17 1183 2053 131966 30969 0 0 131966 30969 2053 1482 0 0 7257 5807 0 0 10676 8497 0 0 2053 1627 0 0 54514 6955 0 0 55413 6601 0 0 2053 0 0 870 1286 1237 7994 0 0 3.41203 3.41203 -125.003 -3.41203 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00900802 0.00810601 135 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 6.00 vpr 53.11 MiB -1 -1 0.15 17340 1 0.01 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54380 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 14.7 MiB 0.22 972 53.1 MiB 0.07 0.00 3.46356 -95.4486 -3.46356 3.46356 0.78 0.000119717 9.6268e-05 0.0117929 0.00971669 30 2237 22 6.64007e+06 288834 526063. 1820.29 3.08 0.114799 0.0989634 22546 126617 -1 1766 21 983 1453 83203 19713 0 0 83203 19713 1453 1184 0 0 4922 3918 0 0 6502 5218 0 0 1453 1261 0 0 35559 3946 0 0 33314 4186 0 0 1453 0 0 470 481 498 4130 0 0 3.46143 3.46143 -109.196 -3.46143 0 0 666494. 2306.21 0.18 0.03 0.10 -1 -1 0.18 0.00865734 0.00775714 119 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.24 vpr 53.69 MiB -1 -1 0.17 17776 1 0.02 -1 -1 29988 -1 -1 40 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 15.5 MiB 0.16 1263 53.7 MiB 0.08 0.00 4.04253 -135.234 -4.04253 4.04253 0.59 0.000161961 0.000131331 0.0128196 0.010622 28 3135 22 6.64007e+06 502320 500653. 1732.36 0.60 0.0459524 0.039214 21970 115934 -1 2560 18 1430 2291 144476 33254 0 0 144476 33254 2291 1687 0 0 7907 6342 0 0 11547 8951 0 0 2291 1837 0 0 60480 7402 0 0 59960 7035 0 0 2291 0 0 861 1223 1316 9041 0 0 4.23489 4.23489 -152.675 -4.23489 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0227496 0.0204961 174 84 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.84 vpr 52.87 MiB -1 -1 0.15 17184 1 0.01 -1 -1 29772 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54136 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 14.4 MiB 0.09 726 52.9 MiB 0.04 0.00 3.1015 -82.8434 -3.1015 3.1015 0.96 0.00010227 7.9878e-05 0.00734472 0.00607138 32 1718 18 6.64007e+06 263718 554710. 1919.41 2.72 0.0843013 0.0724181 22834 132086 -1 1511 18 811 1368 93469 21184 0 0 93469 21184 1368 1029 0 0 4778 3908 0 0 7463 5461 0 0 1368 1117 0 0 39598 4689 0 0 38894 4980 0 0 1368 0 0 557 564 647 4668 0 0 2.88077 2.88077 -99.6798 -2.88077 0 0 701300. 2426.64 0.30 0.04 0.12 -1 -1 0.30 0.0113072 0.0100858 101 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 6.81 vpr 53.66 MiB -1 -1 0.17 17560 1 0.01 -1 -1 29728 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 15.0 MiB 0.27 1164 53.7 MiB 0.12 0.00 4.15901 -127.454 -4.15901 4.15901 1.01 0.000225531 0.000181413 0.0212053 0.0175171 32 2762 22 6.64007e+06 313950 554710. 1919.41 3.17 0.138092 0.119104 22834 132086 -1 2304 20 1364 1912 130588 30254 0 0 130588 30254 1912 1650 0 0 7185 6031 0 0 10699 8337 0 0 1912 1733 0 0 54798 6238 0 0 54082 6265 0 0 1912 0 0 548 566 555 5017 0 0 4.19688 4.19688 -141.797 -4.19688 0 0 701300. 2426.64 0.25 0.05 0.12 -1 -1 0.25 0.0148944 0.0132362 144 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.21 vpr 53.40 MiB -1 -1 0.09 17404 1 0.01 -1 -1 29692 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 14.8 MiB 0.09 938 53.4 MiB 0.05 0.00 3.2547 -96.3729 -3.2547 3.2547 0.82 0.000128214 0.000103885 0.00701051 0.00580239 28 2544 25 6.64007e+06 414414 500653. 1732.36 2.58 0.0628079 0.0537369 21970 115934 -1 2040 18 1201 2133 138262 34033 0 0 138262 34033 2133 1560 0 0 7513 6205 0 0 11229 8817 0 0 2133 1685 0 0 56813 7966 0 0 58441 7800 0 0 2133 0 0 932 1189 1241 8443 0 0 2.94797 2.94797 -111.186 -2.94797 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0170677 0.0154111 131 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.14 vpr 53.07 MiB -1 -1 0.16 17244 1 0.01 -1 -1 29680 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54340 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 14.7 MiB 0.03 1001 53.1 MiB 0.08 0.00 3.34016 -104.784 -3.34016 3.34016 0.59 0.000121467 9.9557e-05 0.0135064 0.0111031 32 2447 19 6.64007e+06 301392 554710. 1919.41 0.67 0.0440121 0.0373919 22834 132086 -1 2118 19 1205 2245 161696 36444 0 0 161696 36444 2245 1720 0 0 8261 6788 0 0 12928 9704 0 0 2245 1860 0 0 66801 8625 0 0 69216 7747 0 0 2245 0 0 1040 1302 1175 8878 0 0 3.74283 3.74283 -126.33 -3.74283 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0135315 0.012152 123 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.19 vpr 53.42 MiB -1 -1 0.09 17484 1 0.02 -1 -1 29716 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 14.9 MiB 0.32 1042 53.4 MiB 0.12 0.00 3.67818 -109.821 -3.67818 3.67818 0.92 0.000243325 0.000198045 0.0210557 0.0174179 32 2713 23 6.64007e+06 301392 554710. 1919.41 0.90 0.0624896 0.0531992 22834 132086 -1 2139 18 1259 1765 132747 30385 0 0 132747 30385 1765 1482 0 0 6467 5324 0 0 10043 7759 0 0 1765 1571 0 0 55085 7476 0 0 57622 6773 0 0 1765 0 0 506 587 551 4707 0 0 3.48943 3.48943 -122.7 -3.48943 0 0 701300. 2426.64 0.22 0.03 0.12 -1 -1 0.22 0.00926514 0.00831363 138 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 6.17 vpr 53.42 MiB -1 -1 0.14 17488 1 0.01 -1 -1 29804 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 15.0 MiB 0.13 968 53.4 MiB 0.14 0.00 2.9151 -98.0492 -2.9151 2.9151 0.84 0.000254112 0.000207174 0.0228699 0.0189069 32 2462 25 6.64007e+06 401856 554710. 1919.41 3.16 0.144923 0.125027 22834 132086 -1 2107 18 1189 2066 146985 33316 0 0 146985 33316 2066 1454 0 0 7506 6177 0 0 11397 8553 0 0 2066 1607 0 0 60560 8176 0 0 63390 7349 0 0 2066 0 0 877 1330 1490 9369 0 0 3.10537 3.10537 -112.697 -3.10537 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0180384 0.0163056 133 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.44 vpr 53.53 MiB -1 -1 0.17 17488 1 0.01 -1 -1 29700 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 14.9 MiB 0.10 1147 53.5 MiB 0.08 0.00 3.71747 -115.643 -3.71747 3.71747 0.64 0.000238213 0.000196067 0.0111956 0.0092701 32 2558 19 6.64007e+06 464646 554710. 1919.41 0.71 0.0496986 0.0422637 22834 132086 -1 2345 17 1213 1880 133718 29783 0 0 133718 29783 1880 1412 0 0 6735 5533 0 0 10504 7821 0 0 1880 1561 0 0 55241 7092 0 0 57478 6364 0 0 1880 0 0 667 897 708 5934 0 0 3.35083 3.35083 -128.612 -3.35083 0 0 701300. 2426.64 0.21 0.04 0.09 -1 -1 0.21 0.0118168 0.0106334 145 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.58 vpr 53.14 MiB -1 -1 0.17 17272 1 0.02 -1 -1 29664 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 14.6 MiB 0.04 968 53.1 MiB 0.07 0.00 3.36216 -101.877 -3.36216 3.36216 0.89 0.000124545 0.000100806 0.0110365 0.00909794 32 2135 20 6.64007e+06 364182 554710. 1919.41 2.78 0.0943441 0.0796964 22834 132086 -1 1848 19 1181 1951 133114 29964 0 0 133114 29964 1951 1405 0 0 7196 5882 0 0 10773 8197 0 0 1951 1536 0 0 55428 6582 0 0 55815 6362 0 0 1951 0 0 770 1116 931 7146 0 0 3.67963 3.67963 -119.437 -3.67963 0 0 701300. 2426.64 0.21 0.03 0.07 -1 -1 0.21 0.0090905 0.0081299 122 21 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.37 vpr 53.51 MiB -1 -1 0.14 17476 1 0.02 -1 -1 29776 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 14.7 MiB 0.19 1100 53.5 MiB 0.03 0.00 3.96206 -114.577 -3.96206 3.96206 0.84 0.00012398 0.000101069 0.00524713 0.00448773 26 2523 28 6.64007e+06 301392 477104. 1650.88 1.75 0.0572462 0.048784 21682 110474 -1 2265 20 1355 1994 132927 31596 0 0 132927 31596 1994 1624 0 0 7338 6111 0 0 11032 8630 0 0 1994 1797 0 0 55523 6518 0 0 55046 6916 0 0 1994 0 0 639 675 702 5364 0 0 3.87483 3.87483 -133.126 -3.87483 0 0 585099. 2024.56 0.19 0.04 0.06 -1 -1 0.19 0.0103265 0.00927119 133 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.71 vpr 53.74 MiB -1 -1 0.15 17616 1 0.02 -1 -1 29748 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55028 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 15.0 MiB 0.29 1093 53.7 MiB 0.13 0.00 4.03253 -120.813 -4.03253 4.03253 0.95 0.000234494 0.000190192 0.021472 0.0176127 32 3086 25 6.64007e+06 313950 554710. 1919.41 1.12 0.0847676 0.0739747 22834 132086 -1 2367 20 1505 2501 185158 41296 0 0 185158 41296 2501 2102 0 0 9046 7396 0 0 13720 10317 0 0 2501 2310 0 0 79025 9797 0 0 78365 9374 0 0 2501 0 0 996 1192 1013 8242 0 0 4.22489 4.22489 -138.818 -4.22489 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.018749 0.0168233 148 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 5.71 vpr 53.46 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29788 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 15.1 MiB 0.16 1122 53.5 MiB 0.06 0.00 3.37636 -107.7 -3.37636 3.37636 0.59 0.000129683 0.000104112 0.011279 0.00925481 32 2779 21 6.64007e+06 276276 554710. 1919.41 2.70 0.0897121 0.0764433 22834 132086 -1 2429 17 1375 2440 189319 40413 0 0 189319 40413 2440 1844 0 0 8509 7009 0 0 13642 9792 0 0 2440 2122 0 0 80471 9997 0 0 81817 9649 0 0 2440 0 0 1065 1070 955 8024 0 0 3.53642 3.53642 -127.001 -3.53642 0 0 701300. 2426.64 0.32 0.08 0.11 -1 -1 0.32 0.0227681 0.0206637 136 74 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 5.69 vpr 52.90 MiB -1 -1 0.16 17412 1 0.01 -1 -1 29780 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54172 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 14.4 MiB 0.06 612 52.9 MiB 0.09 0.00 2.7119 -78.5001 -2.7119 2.7119 1.02 0.000189212 0.000154358 0.0141443 0.0116611 26 1952 44 6.64007e+06 301392 477104. 1650.88 2.34 0.0815239 0.0698933 21682 110474 -1 1461 18 873 1358 87504 21972 0 0 87504 21972 1358 1054 0 0 4870 3738 0 0 6892 5357 0 0 1358 1122 0 0 35908 5609 0 0 37118 5092 0 0 1358 0 0 485 633 613 4543 0 0 2.77597 2.77597 -96.3472 -2.77597 0 0 585099. 2024.56 0.27 0.04 0.11 -1 -1 0.27 0.0119943 0.010761 97 20 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 6.67 vpr 53.32 MiB -1 -1 0.16 17444 1 0.01 -1 -1 29824 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54596 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 14.7 MiB 0.28 1015 53.3 MiB 0.07 0.00 3.21396 -113.796 -3.21396 3.21396 1.03 0.000246586 0.000203254 0.0104604 0.00877531 28 2498 16 6.64007e+06 276276 500653. 1732.36 3.03 0.109112 0.0942394 21970 115934 -1 2182 23 1479 2112 147458 33641 0 0 147458 33641 2112 1792 0 0 7460 5894 0 0 11125 8706 0 0 2112 1979 0 0 63041 7500 0 0 61608 7770 0 0 2112 0 0 633 620 513 5144 0 0 3.21737 3.21737 -132.833 -3.21737 0 0 612192. 2118.31 0.29 0.07 0.10 -1 -1 0.29 0.0181602 0.0160495 127 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.44 vpr 53.53 MiB -1 -1 0.16 17912 1 0.02 -1 -1 29760 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 15.2 MiB 0.28 1417 53.5 MiB 0.12 0.00 4.40441 -137.453 -4.40441 4.40441 1.00 0.000264203 0.000212745 0.0191426 0.0158427 32 3308 41 6.64007e+06 364182 554710. 1919.41 1.69 0.105254 0.0911026 22834 132086 -1 2710 20 1762 2876 198556 47613 0 0 198556 47613 2876 2339 0 0 10949 9260 0 0 16728 13122 0 0 2876 2473 0 0 80686 10717 0 0 84441 9702 0 0 2876 0 0 1114 1241 1159 8996 0 0 4.55228 4.55228 -156.172 -4.55228 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0218209 0.0197257 169 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.20 vpr 53.39 MiB -1 -1 0.15 17464 1 0.01 -1 -1 29740 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54672 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 14.8 MiB 0.11 987 53.4 MiB 0.08 0.00 3.50652 -107.562 -3.50652 3.50652 0.96 0.000219541 0.000176689 0.0120686 0.0101071 26 2343 23 6.64007e+06 401856 477104. 1650.88 2.33 0.119882 0.105521 21682 110474 -1 2006 21 1266 1996 123318 29731 0 0 123318 29731 1996 1451 0 0 7217 5698 0 0 10658 8240 0 0 1996 1561 0 0 50081 6460 0 0 51370 6321 0 0 1996 0 0 730 856 878 6876 0 0 3.25677 3.25677 -121.832 -3.25677 0 0 585099. 2024.56 0.18 0.04 0.09 -1 -1 0.18 0.0104067 0.00926814 133 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 6.09 vpr 53.05 MiB -1 -1 0.16 17344 1 0.01 -1 -1 29668 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 14.4 MiB 0.06 762 53.1 MiB 0.06 0.00 2.7859 -87.0748 -2.7859 2.7859 1.03 0.000199082 0.000161165 0.0104533 0.00874861 30 1659 20 6.64007e+06 326508 526063. 1820.29 2.70 0.0779694 0.0666176 22546 126617 -1 1530 19 861 1536 83950 20558 0 0 83950 20558 1536 1003 0 0 5254 4432 0 0 7155 5713 0 0 1536 1114 0 0 33375 4252 0 0 35094 4044 0 0 1536 0 0 675 701 811 6125 0 0 2.68857 2.68857 -99.1432 -2.68857 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0132215 0.011824 104 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.80 vpr 53.68 MiB -1 -1 0.18 17764 1 0.02 -1 -1 29804 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 15.5 MiB 0.37 1347 53.7 MiB 0.15 0.00 5.15149 -153.628 -5.15149 5.15149 1.01 0.00029468 0.000243159 0.028043 0.0234129 32 3111 21 6.64007e+06 339066 554710. 1919.41 1.10 0.0857928 0.0739579 22834 132086 -1 2653 20 1931 2781 184157 42988 0 0 184157 42988 2781 2291 0 0 10371 8702 0 0 15855 12061 0 0 2781 2453 0 0 76147 8891 0 0 76222 8590 0 0 2781 0 0 850 1005 1144 8116 0 0 5.17674 5.17674 -169.727 -5.17674 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.02096 0.0188986 170 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.40 vpr 53.35 MiB -1 -1 0.15 17496 1 0.02 -1 -1 29648 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 14.7 MiB 0.16 913 53.4 MiB 0.06 0.00 3.69147 -113.746 -3.69147 3.69147 1.01 0.000240981 0.00019865 0.0098862 0.00833787 32 2150 19 6.64007e+06 414414 554710. 1919.41 0.97 0.0538277 0.0466002 22834 132086 -1 1913 18 1277 2014 132462 30284 0 0 132462 30284 2014 1439 0 0 7210 5899 0 0 11333 8501 0 0 2014 1606 0 0 52089 7001 0 0 57802 5838 0 0 2014 0 0 737 976 918 7269 0 0 3.64783 3.64783 -125.589 -3.64783 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0139383 0.0124563 130 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.49 vpr 52.73 MiB -1 -1 0.14 16960 1 0.01 -1 -1 29580 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53992 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 14.1 MiB 0.07 875 52.7 MiB 0.07 0.00 2.8441 -84.0966 -2.8441 2.8441 0.94 0.000156119 0.000126349 0.0108751 0.00894463 26 1931 19 6.64007e+06 288834 477104. 1650.88 0.68 0.030467 0.0258826 21682 110474 -1 1727 21 984 1774 125047 28820 0 0 125047 28820 1774 1232 0 0 6504 5512 0 0 9917 7499 0 0 1774 1371 0 0 53311 6337 0 0 51767 6869 0 0 1774 0 0 790 1029 1258 7593 0 0 2.90117 2.90117 -101.126 -2.90117 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.0117815 0.0104992 100 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 8.32 vpr 53.54 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29732 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54824 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 15.0 MiB 0.11 996 53.5 MiB 0.06 0.00 4.55432 -111.157 -4.55432 4.55432 1.03 0.000136765 0.000111487 0.0107316 0.0090171 28 2710 26 6.64007e+06 426972 500653. 1732.36 4.90 0.111987 0.0976318 21970 115934 -1 2122 19 1118 2303 148271 35459 0 0 148271 35459 2303 1483 0 0 7962 6247 0 0 11690 9011 0 0 2303 1604 0 0 59784 8467 0 0 64229 8647 0 0 2303 0 0 1185 2196 2455 14043 0 0 4.31888 4.31888 -132.825 -4.31888 0 0 612192. 2118.31 0.27 0.06 0.10 -1 -1 0.27 0.0166158 0.0149266 139 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 5.23 vpr 52.83 MiB -1 -1 0.14 16980 1 0.01 -1 -1 29644 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 14.4 MiB 0.06 636 52.8 MiB 0.06 0.00 2.7651 -83.8458 -2.7651 2.7651 0.94 0.00018351 0.000143329 0.00839125 0.00691915 30 1668 20 6.64007e+06 251160 526063. 1820.29 2.05 0.075828 0.0654701 22546 126617 -1 1377 19 869 1552 82194 20493 0 0 82194 20493 1552 1082 0 0 5146 4083 0 0 6847 5400 0 0 1552 1201 0 0 34201 4354 0 0 32896 4373 0 0 1552 0 0 683 553 798 5494 0 0 2.64177 2.64177 -96.5673 -2.64177 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0120386 0.0107695 104 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.71 vpr 53.00 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29704 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54276 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 14.4 MiB 0.11 872 53.0 MiB 0.07 0.00 3.22421 -90.956 -3.22421 3.22421 0.70 0.000113449 9.1407e-05 0.0106156 0.00866711 30 1720 19 6.64007e+06 414414 526063. 1820.29 0.74 0.0408236 0.0346337 22546 126617 -1 1560 19 723 1403 82478 18554 0 0 82478 18554 1403 844 0 0 4644 3826 0 0 6463 4995 0 0 1403 943 0 0 36649 3562 0 0 31916 4384 0 0 1403 0 0 680 707 852 6224 0 0 2.84657 2.84657 -100.54 -2.84657 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.0122726 0.0109427 105 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 6.30 vpr 53.54 MiB -1 -1 0.15 17340 1 0.01 -1 -1 29836 -1 -1 26 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 15.0 MiB 0.22 917 53.5 MiB 0.12 0.00 3.84787 -110.757 -3.84787 3.84787 1.01 0.000237358 0.000192812 0.0223153 0.0185219 32 2433 25 6.64007e+06 326508 554710. 1919.41 2.89 0.135301 0.116273 22834 132086 -1 2102 21 1534 2296 146756 35138 0 0 146756 35138 2296 1807 0 0 8109 6700 0 0 12493 9322 0 0 2296 1897 0 0 61172 7509 0 0 60390 7903 0 0 2296 0 0 762 811 683 6134 0 0 3.82483 3.82483 -127.869 -3.82483 0 0 701300. 2426.64 0.30 0.06 0.11 -1 -1 0.30 0.0161655 0.014456 139 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.76 vpr 53.36 MiB -1 -1 0.18 17564 1 0.02 -1 -1 29700 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54640 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 14.8 MiB 0.13 925 53.4 MiB 0.06 0.00 3.64276 -112.993 -3.64276 3.64276 1.01 0.000234017 0.000190535 0.00972625 0.00819596 28 2144 24 6.64007e+06 301392 500653. 1732.36 2.32 0.0907531 0.0779286 21970 115934 -1 1945 22 1459 2270 151414 35459 0 0 151414 35459 2270 1692 0 0 8269 6640 0 0 12231 9773 0 0 2270 1839 0 0 65249 7443 0 0 61125 8072 0 0 2270 0 0 811 764 955 6990 0 0 3.79303 3.79303 -130.827 -3.79303 0 0 612192. 2118.31 0.29 0.07 0.11 -1 -1 0.29 0.0191646 0.0170997 130 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 6.14 vpr 53.41 MiB -1 -1 0.17 17676 1 0.01 -1 -1 29804 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54696 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 14.7 MiB 0.09 1055 53.4 MiB 0.12 0.00 3.83895 -115.935 -3.83895 3.83895 0.89 0.000246178 0.000201695 0.0204626 0.0170593 32 2456 18 6.64007e+06 351624 554710. 1919.41 3.06 0.126473 0.108433 22834 132086 -1 2151 19 1242 2252 155825 35419 0 0 155825 35419 2252 1629 0 0 8173 6887 0 0 12566 9549 0 0 2252 1883 0 0 66925 7475 0 0 63657 7996 0 0 2252 0 0 1010 1222 1132 8562 0 0 3.51823 3.51823 -128.445 -3.51823 0 0 701300. 2426.64 0.28 0.05 0.12 -1 -1 0.28 0.0125194 0.0111852 133 48 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.59 vpr 53.07 MiB -1 -1 0.14 17560 1 0.01 -1 -1 29748 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54340 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 14.5 MiB 0.27 918 53.1 MiB 0.04 0.00 3.75438 -111.435 -3.75438 3.75438 0.68 0.000102419 8.299e-05 0.00636936 0.00527249 26 2221 18 6.64007e+06 213486 477104. 1650.88 0.53 0.0264194 0.0225817 21682 110474 -1 1889 18 941 1289 91196 21957 0 0 91196 21957 1289 1080 0 0 4826 3919 0 0 6998 5594 0 0 1289 1122 0 0 38356 4936 0 0 38438 5306 0 0 1289 0 0 348 397 372 3160 0 0 3.51843 3.51843 -124.499 -3.51843 0 0 585099. 2024.56 0.27 0.05 0.08 -1 -1 0.27 0.0152421 0.0138606 105 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.65 vpr 53.19 MiB -1 -1 0.12 17484 1 0.02 -1 -1 29760 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 14.7 MiB 0.25 901 53.2 MiB 0.05 0.00 3.24616 -105.943 -3.24616 3.24616 0.89 0.000110873 8.8376e-05 0.00944615 0.00770131 32 2143 21 6.64007e+06 238602 554710. 1919.41 0.56 0.0311741 0.0263817 22834 132086 -1 1816 18 1142 1696 116135 26730 0 0 116135 26730 1696 1347 0 0 6047 5021 0 0 9264 6956 0 0 1696 1443 0 0 48514 6152 0 0 48918 5811 0 0 1696 0 0 554 507 508 4373 0 0 3.07163 3.07163 -116.196 -3.07163 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00810894 0.0072483 113 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.64 vpr 53.17 MiB -1 -1 0.18 17508 1 0.01 -1 -1 29664 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54444 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 14.6 MiB 0.10 1034 53.2 MiB 0.06 0.00 2.9203 -83.2961 -2.9203 2.9203 0.60 0.000119252 9.4932e-05 0.00942528 0.00771156 26 2432 22 6.64007e+06 414414 477104. 1650.88 2.14 0.0814517 0.0698467 21682 110474 -1 2067 18 1028 1749 134027 28998 0 0 134027 28998 1749 1268 0 0 6340 5015 0 0 9584 7324 0 0 1749 1365 0 0 57975 7135 0 0 56630 6891 0 0 1749 0 0 721 1154 1281 7833 0 0 3.12537 3.12537 -102.23 -3.12537 0 0 585099. 2024.56 0.27 0.06 0.10 -1 -1 0.27 0.0169009 0.0152367 123 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 5.30 vpr 52.94 MiB -1 -1 0.16 17484 1 0.02 -1 -1 29752 -1 -1 35 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54208 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 14.3 MiB 0.06 819 52.9 MiB 0.11 0.00 3.52655 -87.4544 -3.52655 3.52655 0.96 0.000196316 0.000161223 0.0146311 0.0118416 28 1999 22 6.64007e+06 439530 500653. 1732.36 2.14 0.070985 0.0605425 21970 115934 -1 1720 16 825 1555 94886 22639 0 0 94886 22639 1555 951 0 0 5585 4468 0 0 8011 6321 0 0 1555 1040 0 0 38161 5115 0 0 40019 4744 0 0 1555 0 0 730 1073 1107 7651 0 0 3.67263 3.67263 -105.082 -3.67263 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.012741 0.0114951 115 20 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.67 vpr 53.11 MiB -1 -1 0.17 17420 1 0.01 -1 -1 29876 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54380 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 14.5 MiB 0.14 753 53.1 MiB 0.07 0.00 3.29461 -94.272 -3.29461 3.29461 1.01 0.000205262 0.000164259 0.0139716 0.0115111 30 1907 30 6.64007e+06 226044 526063. 1820.29 3.14 0.125523 0.107467 22546 126617 -1 1501 20 1066 1832 105155 27017 0 0 105155 27017 1832 1286 0 0 6148 4902 0 0 7972 6401 0 0 1832 1418 0 0 42313 6688 0 0 45058 6322 0 0 1832 0 0 766 766 816 6074 0 0 3.05117 3.05117 -106.8 -3.05117 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0152893 0.0136365 108 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.13 vpr 53.18 MiB -1 -1 0.11 17648 1 0.02 -1 -1 29796 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 14.6 MiB 0.22 1048 53.2 MiB 0.09 0.00 3.14796 -108.689 -3.14796 3.14796 0.90 0.000295238 0.000244951 0.0163457 0.0141193 32 2255 19 6.64007e+06 263718 554710. 1919.41 0.82 0.0535226 0.0462161 22834 132086 -1 1964 19 1151 1726 118148 26003 0 0 118148 26003 1726 1272 0 0 5991 4790 0 0 8979 6602 0 0 1726 1544 0 0 50511 5973 0 0 49215 5822 0 0 1726 0 0 575 525 457 4433 0 0 2.97343 2.97343 -119.106 -2.97343 0 0 701300. 2426.64 0.22 0.05 0.07 -1 -1 0.22 0.0151585 0.0135189 121 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 5.57 vpr 53.04 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29728 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54316 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 14.6 MiB 0.05 1027 53.0 MiB 0.12 0.00 3.58627 -107.127 -3.58627 3.58627 0.97 0.000208067 0.000170817 0.0177424 0.0147043 30 2241 22 6.64007e+06 401856 526063. 1820.29 2.76 0.122191 0.107402 22546 126617 -1 1979 19 1103 1994 107486 25153 0 0 107486 25153 1994 1315 0 0 6693 5305 0 0 9085 7232 0 0 1994 1573 0 0 45103 4681 0 0 42617 5047 0 0 1994 0 0 891 1018 1032 7625 0 0 3.57043 3.57043 -121.114 -3.57043 0 0 666494. 2306.21 0.19 0.03 0.07 -1 -1 0.19 0.00825856 0.00741389 127 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.54 vpr 53.52 MiB -1 -1 0.16 17648 1 0.01 -1 -1 29652 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 15.0 MiB 0.31 1171 53.5 MiB 0.09 0.00 4.22773 -138.276 -4.22773 4.22773 1.02 0.000121503 9.7444e-05 0.014365 0.0118751 28 2913 24 6.64007e+06 301392 500653. 1732.36 3.10 0.125922 0.109671 21970 115934 -1 2581 20 1489 2230 154494 35707 0 0 154494 35707 2230 1863 0 0 7905 6424 0 0 11526 9128 0 0 2230 1953 0 0 66232 8164 0 0 64371 8175 0 0 2230 0 0 741 752 684 5983 0 0 4.46508 4.46508 -158.544 -4.46508 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00986587 0.00885332 146 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.96 vpr 53.66 MiB -1 -1 0.17 17276 1 0.02 -1 -1 29816 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 15.0 MiB 0.18 1096 53.7 MiB 0.07 0.00 4.17072 -122.236 -4.17072 4.17072 0.86 0.00015071 0.000123313 0.01208 0.00993936 32 2451 19 6.64007e+06 426972 554710. 1919.41 0.79 0.0527639 0.0451921 22834 132086 -1 2140 24 1321 2225 146845 34186 0 0 146845 34186 2225 1643 0 0 8038 6805 0 0 12833 9540 0 0 2225 1729 0 0 60898 7352 0 0 60626 7117 0 0 2225 0 0 904 951 956 7808 0 0 4.02748 4.02748 -137.106 -4.02748 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0192262 0.0171024 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.64 vpr 53.52 MiB -1 -1 0.14 17680 1 0.02 -1 -1 29676 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 15.0 MiB 0.14 1122 53.5 MiB 0.07 0.00 3.58327 -116.354 -3.58327 3.58327 0.60 0.00013861 0.000112382 0.00922059 0.0075752 28 2544 21 6.64007e+06 464646 500653. 1732.36 0.78 0.0507611 0.04399 21970 115934 -1 2225 17 1245 2197 134856 32162 0 0 134856 32162 2197 1451 0 0 7816 6360 0 0 11559 9029 0 0 2197 1619 0 0 56615 6825 0 0 54472 6878 0 0 2197 0 0 952 1140 1075 8360 0 0 3.55223 3.55223 -132.959 -3.55223 0 0 612192. 2118.31 0.29 0.07 0.09 -1 -1 0.29 0.0225405 0.0204168 140 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.69 vpr 52.95 MiB -1 -1 0.13 17512 1 0.02 -1 -1 29708 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54216 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 14.4 MiB 0.11 782 52.9 MiB 0.05 0.00 3.00301 -92.2666 -3.00301 3.00301 0.60 0.000106185 8.5648e-05 0.00817489 0.00672947 26 2159 23 6.64007e+06 238602 477104. 1650.88 2.09 0.0738608 0.0639606 21682 110474 -1 1802 21 1122 1874 140581 31906 0 0 140581 31906 1874 1537 0 0 6770 5653 0 0 10215 7849 0 0 1874 1630 0 0 61959 7474 0 0 57889 7763 0 0 1874 0 0 752 673 813 6000 0 0 3.09217 3.09217 -112.077 -3.09217 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0145683 0.012949 104 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 5.79 vpr 53.57 MiB -1 -1 0.16 17540 1 0.01 -1 -1 29688 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54856 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 15.0 MiB 0.17 968 53.6 MiB 0.06 0.00 3.80967 -114.716 -3.80967 3.80967 0.92 0.00023913 0.000193522 0.0111614 0.00941255 26 2630 42 6.64007e+06 288834 477104. 1650.88 2.40 0.117487 0.102874 21682 110474 -1 2168 23 1784 2760 239334 50710 0 0 239334 50710 2760 2227 0 0 9901 8188 0 0 15727 11838 0 0 2760 2344 0 0 108070 12226 0 0 100116 13887 0 0 2760 0 0 976 1068 1080 8434 0 0 3.87103 3.87103 -135.728 -3.87103 0 0 585099. 2024.56 0.25 0.08 0.10 -1 -1 0.25 0.0205874 0.0183824 138 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 7.84 vpr 53.30 MiB -1 -1 0.16 17516 1 0.02 -1 -1 29792 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 14.9 MiB 0.16 1216 53.3 MiB 0.06 0.00 4.18044 -127.998 -4.18044 4.18044 0.61 0.000132623 0.000107584 0.00913854 0.00751675 26 2987 36 6.64007e+06 326508 477104. 1650.88 5.21 0.119274 0.103725 21682 110474 -1 2505 19 1633 2573 194587 43177 0 0 194587 43177 2573 2074 0 0 9409 7736 0 0 13980 10737 0 0 2573 2193 0 0 82225 10413 0 0 83827 10024 0 0 2573 0 0 940 1455 1870 10530 0 0 4.23643 4.23643 -145.234 -4.23643 0 0 585099. 2024.56 0.25 0.07 0.09 -1 -1 0.25 0.016979 0.0153225 140 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.49 vpr 53.41 MiB -1 -1 0.11 17348 1 0.01 -1 -1 29752 -1 -1 30 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54696 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 15.0 MiB 0.18 1079 53.4 MiB 0.12 0.00 4.22421 -124.775 -4.22421 4.22421 0.69 0.000223036 0.000181444 0.0200858 0.0166338 32 2481 27 6.64007e+06 376740 554710. 1919.41 0.82 0.0536285 0.0456618 22834 132086 -1 2210 20 1302 1955 143226 31946 0 0 143226 31946 1955 1605 0 0 7272 5964 0 0 10556 8243 0 0 1955 1716 0 0 63585 6662 0 0 57903 7756 0 0 1955 0 0 653 697 686 5917 0 0 4.17788 4.17788 -138.054 -4.17788 0 0 701300. 2426.64 0.25 0.06 0.10 -1 -1 0.25 0.0176912 0.0156983 148 43 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.18 vpr 53.45 MiB -1 -1 0.18 17352 1 0.02 -1 -1 29696 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54732 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 15.0 MiB 0.20 955 53.4 MiB 0.12 0.00 3.42407 -103.017 -3.42407 3.42407 0.94 0.000240957 0.000198791 0.0209666 0.0172099 32 2216 22 6.64007e+06 414414 554710. 1919.41 0.83 0.0634247 0.0536572 22834 132086 -1 1813 21 1168 1957 125923 29542 0 0 125923 29542 1957 1421 0 0 7198 5901 0 0 10985 8391 0 0 1957 1696 0 0 50815 6397 0 0 53011 5736 0 0 1957 0 0 789 908 743 6635 0 0 3.18063 3.18063 -115.658 -3.18063 0 0 701300. 2426.64 0.20 0.03 0.07 -1 -1 0.20 0.0109362 0.00983313 135 78 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.56 vpr 53.32 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29764 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 14.9 MiB 0.13 1097 53.3 MiB 0.12 0.00 4.09306 -121.368 -4.09306 4.09306 1.02 0.000272272 0.000225674 0.0197935 0.0165516 32 2595 19 6.64007e+06 263718 554710. 1919.41 1.00 0.0674262 0.0580804 22834 132086 -1 2302 17 1366 2373 160672 36584 0 0 160672 36584 2373 1616 0 0 8420 6947 0 0 13055 9600 0 0 2373 1829 0 0 65525 8512 0 0 68926 8080 0 0 2373 0 0 1007 915 1039 7786 0 0 3.87083 3.87083 -142.314 -3.87083 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0166306 0.0149913 134 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 5.99 vpr 53.34 MiB -1 -1 0.15 17404 1 0.02 -1 -1 29740 -1 -1 31 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54624 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 14.9 MiB 0.18 979 53.3 MiB 0.10 0.00 4.03206 -115.193 -4.03206 4.03206 1.02 0.000243272 0.000187724 0.016881 0.0139468 30 1959 21 6.64007e+06 389298 526063. 1820.29 2.49 0.0950871 0.0806839 22546 126617 -1 1750 16 892 1429 69362 17596 0 0 69362 17596 1429 979 0 0 4870 3928 0 0 6289 5141 0 0 1429 1023 0 0 27328 3474 0 0 28017 3051 0 0 1429 0 0 537 609 340 4239 0 0 3.53623 3.53623 -124.388 -3.53623 0 0 666494. 2306.21 0.29 0.05 0.11 -1 -1 0.29 0.0173788 0.0157337 132 79 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.27 vpr 52.62 MiB -1 -1 0.09 16960 1 0.01 -1 -1 29696 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53880 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 14.0 MiB 0.05 723 52.6 MiB 0.05 0.00 3.02901 -92.9822 -3.02901 3.02901 0.62 9.5003e-05 7.6216e-05 0.0088096 0.00721915 28 1718 21 6.64007e+06 188370 500653. 1732.36 2.03 0.0698171 0.0596411 21970 115934 -1 1614 21 927 1436 108654 24804 0 0 108654 24804 1436 1240 0 0 5141 4135 0 0 7667 5981 0 0 1436 1290 0 0 47827 5885 0 0 45147 6273 0 0 1436 0 0 509 606 557 4228 0 0 3.14437 3.14437 -108.665 -3.14437 0 0 612192. 2118.31 0.18 0.04 0.06 -1 -1 0.18 0.01143 0.0101608 96 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.70 vpr 53.37 MiB -1 -1 0.16 17500 1 0.02 -1 -1 29656 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 14.9 MiB 0.25 909 53.4 MiB 0.12 0.00 3.69947 -111.39 -3.69947 3.69947 1.02 0.000251787 0.000204743 0.0199185 0.0164266 32 2389 22 6.64007e+06 401856 554710. 1919.41 1.04 0.0673538 0.0576464 22834 132086 -1 2021 22 1269 2121 174308 37498 0 0 174308 37498 2121 1752 0 0 7781 6380 0 0 11943 9081 0 0 2121 1851 0 0 79298 8639 0 0 71044 9795 0 0 2121 0 0 852 1091 894 7464 0 0 3.70183 3.70183 -128.887 -3.70183 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0207352 0.0186297 132 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.61 vpr 53.48 MiB -1 -1 0.18 17676 1 0.01 -1 -1 29820 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 15.0 MiB 0.17 1111 53.5 MiB 0.10 0.00 3.95187 -126.029 -3.95187 3.95187 0.93 0.000239825 0.000197071 0.0182003 0.0149992 32 2479 23 6.64007e+06 276276 554710. 1919.41 2.41 0.0932342 0.0790605 22834 132086 -1 2276 22 1980 3203 214994 49845 0 0 214994 49845 3203 2377 0 0 11683 9726 0 0 19068 14069 0 0 3203 2589 0 0 86494 10721 0 0 91343 10363 0 0 3203 0 0 1223 1382 1372 10300 0 0 4.06523 4.06523 -144.101 -4.06523 0 0 701300. 2426.64 0.19 0.05 0.07 -1 -1 0.19 0.0110766 0.0098401 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.47 vpr 53.05 MiB -1 -1 0.08 17468 1 0.02 -1 -1 29756 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 14.5 MiB 0.25 962 53.1 MiB 0.08 0.00 3.43261 -105.637 -3.43261 3.43261 1.04 0.000205385 0.000172233 0.0138753 0.0116298 26 2304 19 6.64007e+06 251160 477104. 1650.88 0.98 0.0566077 0.0494563 21682 110474 -1 1915 20 1040 1385 101667 23226 0 0 101667 23226 1385 1201 0 0 5101 4222 0 0 7429 5807 0 0 1385 1260 0 0 43685 5269 0 0 42682 5467 0 0 1385 0 0 345 274 280 2990 0 0 3.20083 3.20083 -116.26 -3.20083 0 0 585099. 2024.56 0.26 0.05 0.10 -1 -1 0.26 0.0131838 0.0118021 109 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 5.28 vpr 52.77 MiB -1 -1 0.15 16880 1 0.02 -1 -1 29660 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54036 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 14.3 MiB 0.05 881 52.8 MiB 0.07 0.00 3.02901 -93.2662 -3.02901 3.02901 1.02 0.000175811 0.000141482 0.011945 0.00986995 30 1743 19 6.64007e+06 263718 526063. 1820.29 1.94 0.0748915 0.0643872 22546 126617 -1 1631 21 995 1666 96665 22106 0 0 96665 22106 1666 1206 0 0 5558 4272 0 0 7226 5804 0 0 1666 1332 0 0 39007 5042 0 0 41542 4450 0 0 1666 0 0 671 671 626 5378 0 0 2.76557 2.76557 -105.353 -2.76557 0 0 666494. 2306.21 0.28 0.04 0.10 -1 -1 0.28 0.0122281 0.0108643 106 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.78 vpr 53.68 MiB -1 -1 0.16 17324 1 0.02 -1 -1 29812 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 15.0 MiB 0.26 1109 53.7 MiB 0.14 0.00 4.18573 -134.334 -4.18573 4.18573 1.00 0.000239336 0.000194132 0.0227366 0.018769 28 3032 27 6.64007e+06 326508 500653. 1732.36 3.15 0.12858 0.111104 21970 115934 -1 2587 21 1818 2464 224352 48457 0 0 224352 48457 2464 2093 0 0 8974 7420 0 0 13109 10454 0 0 2464 2173 0 0 99528 13514 0 0 97813 12803 0 0 2464 0 0 646 720 735 5887 0 0 4.36909 4.36909 -163.101 -4.36909 0 0 612192. 2118.31 0.27 0.09 0.09 -1 -1 0.27 0.0253359 0.0230598 144 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.56 vpr 53.64 MiB -1 -1 0.16 17652 1 0.01 -1 -1 29736 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 15.0 MiB 0.15 1185 53.6 MiB 0.12 0.00 4.18102 -130.32 -4.18102 4.18102 1.00 0.000245724 0.000200762 0.020307 0.0168578 28 2775 21 6.64007e+06 364182 500653. 1732.36 1.23 0.0745533 0.0644628 21970 115934 -1 2445 20 1577 2470 176864 38778 0 0 176864 38778 2470 1844 0 0 8467 6609 0 0 12636 9557 0 0 2470 2078 0 0 76724 8879 0 0 74097 9811 0 0 2470 0 0 893 939 1051 7913 0 0 4.41048 4.41048 -147.886 -4.41048 0 0 612192. 2118.31 0.29 0.08 0.09 -1 -1 0.29 0.020521 0.0183564 155 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.94 vpr 53.51 MiB -1 -1 0.09 17324 1 0.01 -1 -1 29716 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 14.8 MiB 0.09 1217 53.5 MiB 0.13 0.00 4.49732 -123.789 -4.49732 4.49732 0.66 0.000253059 0.000204981 0.0192718 0.0159542 24 3445 33 6.64007e+06 452088 448715. 1552.65 3.01 0.0864362 0.07502 21394 104001 -1 2667 21 1667 2802 216487 48565 0 0 216487 48565 2802 2190 0 0 10480 8294 0 0 15617 11635 0 0 2802 2364 0 0 95731 11798 0 0 89055 12284 0 0 2802 0 0 1135 1395 1487 10551 0 0 4.84388 4.84388 -153.071 -4.84388 0 0 554710. 1919.41 0.24 0.08 0.10 -1 -1 0.24 0.0197301 0.017778 153 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 5.80 vpr 53.18 MiB -1 -1 0.15 17492 1 0.01 -1 -1 29860 -1 -1 32 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 14.7 MiB 0.14 941 53.2 MiB 0.08 0.00 2.7269 -84.2568 -2.7269 2.7269 0.99 0.000211253 0.000170571 0.012092 0.0100161 32 2070 16 6.64007e+06 401856 554710. 1919.41 2.40 0.0887467 0.0751733 22834 132086 -1 1866 23 1438 2469 162403 37070 0 0 162403 37070 2469 1749 0 0 8941 7230 0 0 14259 10385 0 0 2469 2089 0 0 68568 7674 0 0 65697 7943 0 0 2469 0 0 1031 1250 1119 8739 0 0 2.80477 2.80477 -101.175 -2.80477 0 0 701300. 2426.64 0.28 0.05 0.11 -1 -1 0.28 0.0120225 0.0106789 121 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.56 vpr 52.83 MiB -1 -1 0.14 17204 1 0.02 -1 -1 29912 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 14.4 MiB 0.05 715 52.8 MiB 0.04 0.00 2.8251 -80.2893 -2.8251 2.8251 0.76 0.000126144 9.2573e-05 0.00725578 0.00595269 32 1515 21 6.64007e+06 263718 554710. 1919.41 0.74 0.0352169 0.029753 22834 132086 -1 1351 22 1078 1595 113825 26607 0 0 113825 26607 1595 1254 0 0 6021 5035 0 0 9930 7657 0 0 1595 1336 0 0 47007 5691 0 0 47677 5634 0 0 1595 0 0 517 608 584 4620 0 0 2.87997 2.87997 -95.1792 -2.87997 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00743619 0.00656913 97 26 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.42 vpr 53.57 MiB -1 -1 0.13 17748 1 0.02 -1 -1 29880 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54856 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 15.2 MiB 0.26 1381 53.6 MiB 0.13 0.00 3.46936 -117.004 -3.46936 3.46936 0.96 0.00025214 0.000199089 0.0245574 0.0200913 28 3428 21 6.64007e+06 326508 500653. 1732.36 1.16 0.0698621 0.0597211 21970 115934 -1 2824 21 1835 3049 212412 46712 0 0 212412 46712 3049 2375 0 0 10444 8471 0 0 15884 12111 0 0 3049 2496 0 0 91728 10483 0 0 88258 10776 0 0 3049 0 0 1214 1443 1313 9959 0 0 3.91103 3.91103 -137.533 -3.91103 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0116329 0.0103494 170 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.63 vpr 53.37 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29732 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 14.9 MiB 0.32 843 53.4 MiB 0.11 0.00 4.40113 -127.812 -4.40113 4.40113 0.96 0.000239939 0.000189173 0.0217947 0.0178983 32 2838 48 6.64007e+06 288834 554710. 1919.41 1.19 0.087452 0.0754742 22834 132086 -1 2135 24 1582 2578 193181 47947 0 0 193181 47947 2578 2259 0 0 9555 7854 0 0 15470 11462 0 0 2578 2351 0 0 79728 12333 0 0 83272 11688 0 0 2578 0 0 996 1358 1338 9128 0 0 4.74788 4.74788 -149.657 -4.74788 0 0 701300. 2426.64 0.21 0.05 0.08 -1 -1 0.21 0.0124152 0.0109803 152 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.83 vpr 53.31 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29716 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 14.8 MiB 0.32 924 53.3 MiB 0.11 0.00 3.86515 -111.058 -3.86515 3.86515 0.87 0.000225917 0.000172364 0.0193852 0.0159196 32 2345 20 6.64007e+06 238602 554710. 1919.41 2.44 0.106643 0.0907693 22834 132086 -1 1944 16 1052 1536 104578 24438 0 0 104578 24438 1536 1286 0 0 5563 4560 0 0 8366 6238 0 0 1536 1333 0 0 44334 5580 0 0 43243 5441 0 0 1536 0 0 484 353 484 3935 0 0 3.83082 3.83082 -127.381 -3.83082 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0140956 0.0127729 128 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.72 vpr 53.37 MiB -1 -1 0.11 17500 1 0.02 -1 -1 29672 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 14.8 MiB 0.07 954 53.4 MiB 0.08 0.00 4.24618 -108.493 -4.24618 4.24618 0.77 0.000118669 9.4762e-05 0.011364 0.00921228 30 2269 22 6.64007e+06 376740 526063. 1820.29 2.80 0.102768 0.0876144 22546 126617 -1 1777 19 954 1564 93721 21530 0 0 93721 21530 1564 1130 0 0 5271 3990 0 0 6973 5640 0 0 1564 1241 0 0 40135 4690 0 0 38214 4839 0 0 1564 0 0 610 617 595 5026 0 0 3.61042 3.61042 -118.868 -3.61042 0 0 666494. 2306.21 0.20 0.05 0.08 -1 -1 0.20 0.0152727 0.0136705 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.23 vpr 53.40 MiB -1 -1 0.16 17592 1 0.02 -1 -1 29732 -1 -1 34 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54680 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 14.8 MiB 0.15 1045 53.4 MiB 0.14 0.00 4.02106 -114.421 -4.02106 4.02106 0.93 0.000248206 0.000199986 0.0239852 0.0199223 30 2071 18 6.64007e+06 426972 526063. 1820.29 2.88 0.131556 0.112482 22546 126617 -1 1813 16 776 1267 68557 16673 0 0 68557 16673 1267 890 0 0 4449 3467 0 0 5501 4629 0 0 1267 969 0 0 27718 3443 0 0 28355 3275 0 0 1267 0 0 491 624 680 4908 0 0 3.62562 3.62562 -124.029 -3.62562 0 0 666494. 2306.21 0.22 0.03 0.12 -1 -1 0.22 0.0097722 0.00885739 145 46 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.30 vpr 53.35 MiB -1 -1 0.16 17280 1 0.01 -1 -1 29716 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54628 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 14.8 MiB 0.13 999 53.3 MiB 0.08 0.00 2.8933 -92.6295 -2.8933 2.8933 0.67 0.000221453 0.000181834 0.013131 0.0108805 32 2352 19 6.64007e+06 389298 554710. 1919.41 2.57 0.101493 0.0861898 22834 132086 -1 2048 20 1121 1981 141306 31950 0 0 141306 31950 1981 1422 0 0 7294 5952 0 0 11453 8636 0 0 1981 1585 0 0 58284 7461 0 0 60313 6894 0 0 1981 0 0 860 1086 1009 7534 0 0 3.00217 3.00217 -107.751 -3.00217 0 0 701300. 2426.64 0.21 0.03 0.12 -1 -1 0.21 0.0088715 0.00792002 124 46 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 6.88 vpr 53.44 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29644 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1205 53.4 MiB 0.14 0.00 4.01133 -129.919 -4.01133 4.01133 0.99 0.000236167 0.000191754 0.0227646 0.0189016 32 2761 24 6.64007e+06 313950 554710. 1919.41 3.18 0.144058 0.124713 22834 132086 -1 2421 20 1881 2887 214443 47174 0 0 214443 47174 2887 2246 0 0 10306 8658 0 0 16028 11745 0 0 2887 2492 0 0 93412 10893 0 0 88923 11140 0 0 2887 0 0 1006 975 1047 7927 0 0 3.98829 3.98829 -143.609 -3.98829 0 0 701300. 2426.64 0.31 0.08 0.12 -1 -1 0.31 0.0194822 0.0175986 148 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.93 vpr 53.62 MiB -1 -1 0.11 17680 1 0.01 -1 -1 29788 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54908 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 15.0 MiB 0.12 1175 53.6 MiB 0.10 0.00 3.95787 -124.511 -3.95787 3.95787 0.96 0.000306108 0.000254461 0.0164697 0.0137341 26 2755 23 6.64007e+06 452088 477104. 1650.88 1.95 0.102023 0.0877355 21682 110474 -1 2322 18 1279 1961 128509 29780 0 0 128509 29780 1961 1410 0 0 7071 5638 0 0 10486 8203 0 0 1961 1542 0 0 53428 6299 0 0 53602 6688 0 0 1961 0 0 682 785 747 5985 0 0 3.62143 3.62143 -136.26 -3.62143 0 0 585099. 2024.56 0.16 0.03 0.06 -1 -1 0.16 0.00983458 0.00881582 144 59 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.51 vpr 52.97 MiB -1 -1 0.12 17412 1 0.01 -1 -1 29884 -1 -1 17 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54240 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 14.5 MiB 0.07 694 53.0 MiB 0.07 0.00 3.00701 -90.6307 -3.00701 3.00701 0.99 0.000183622 0.000149696 0.0152278 0.0125466 28 1506 22 6.64007e+06 213486 500653. 1732.36 2.38 0.0951231 0.0814188 21970 115934 -1 1444 21 984 1460 109229 25178 0 0 109229 25178 1460 1177 0 0 5469 4436 0 0 7959 6456 0 0 1460 1273 0 0 48105 5770 0 0 44776 6066 0 0 1460 0 0 476 534 573 4077 0 0 2.84177 2.84177 -101.683 -2.84177 0 0 612192. 2118.31 0.28 0.05 0.10 -1 -1 0.28 0.0138156 0.0123077 91 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 6.24 vpr 53.21 MiB -1 -1 0.16 17340 1 0.01 -1 -1 29688 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 14.8 MiB 0.21 936 53.2 MiB 0.08 0.00 3.19816 -104.438 -3.19816 3.19816 0.97 0.000208527 0.000169695 0.0141106 0.0116009 28 2160 20 6.64007e+06 263718 500653. 1732.36 2.80 0.0881585 0.0759898 21970 115934 -1 1891 19 1216 1651 113867 26953 0 0 113867 26953 1651 1355 0 0 6018 5078 0 0 8881 7064 0 0 1651 1440 0 0 45759 6318 0 0 49907 5698 0 0 1651 0 0 435 385 435 3776 0 0 3.44623 3.44623 -122.871 -3.44623 0 0 612192. 2118.31 0.29 0.05 0.11 -1 -1 0.29 0.012912 0.0114411 117 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.39 vpr 53.30 MiB -1 -1 0.15 17592 1 0.01 -1 -1 29728 -1 -1 37 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 14.7 MiB 0.07 988 53.3 MiB 0.09 0.00 3.81067 -104.23 -3.81067 3.81067 1.01 0.000221222 0.000179727 0.015648 0.0132716 26 2404 30 6.64007e+06 464646 477104. 1650.88 1.34 0.0719132 0.0628838 21682 110474 -1 1920 21 1348 2432 147252 35662 0 0 147252 35662 2432 1575 0 0 8658 6914 0 0 13331 10175 0 0 2432 1759 0 0 59901 7798 0 0 60498 7441 0 0 2432 0 0 1084 1294 1600 10258 0 0 3.83283 3.83283 -124.947 -3.83283 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0148358 0.0131608 129 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.54 vpr 53.02 MiB -1 -1 0.15 17680 1 0.02 -1 -1 29864 -1 -1 22 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 14.4 MiB 0.25 810 53.0 MiB 0.09 0.00 3.45927 -96.3797 -3.45927 3.45927 0.96 0.00018606 0.000151864 0.0149356 0.0123264 26 2642 31 6.64007e+06 276276 477104. 1650.88 2.33 0.0679466 0.0581524 21682 110474 -1 1926 19 1233 1622 133934 29871 0 0 133934 29871 1622 1440 0 0 5799 4747 0 0 8398 6415 0 0 1622 1499 0 0 57701 8192 0 0 58792 7578 0 0 1622 0 0 389 367 374 3576 0 0 3.45223 3.45223 -114.747 -3.45223 0 0 585099. 2024.56 0.25 0.05 0.09 -1 -1 0.25 0.0118365 0.0106102 109 25 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.89 vpr 52.90 MiB -1 -1 0.14 17372 1 0.01 -1 -1 29776 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54168 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 14.4 MiB 0.15 858 52.9 MiB 0.08 0.00 3.02501 -96.4425 -3.02501 3.02501 0.75 0.00018789 0.000152788 0.0155499 0.0128855 32 1844 22 6.64007e+06 213486 554710. 1919.41 0.91 0.0499629 0.0426065 22834 132086 -1 1631 20 1241 2125 136463 31494 0 0 136463 31494 2125 1572 0 0 7386 6197 0 0 11963 8707 0 0 2125 1709 0 0 56464 6670 0 0 56400 6639 0 0 2125 0 0 884 809 1033 7035 0 0 3.00317 3.00317 -109.695 -3.00317 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00769276 0.00685016 108 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 6.21 vpr 53.33 MiB -1 -1 0.18 17352 1 0.02 -1 -1 29756 -1 -1 36 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54612 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 14.8 MiB 0.15 961 53.3 MiB 0.08 0.00 3.32061 -101.644 -3.32061 3.32061 1.02 0.000240891 0.000192686 0.0131274 0.0109306 26 2252 23 6.64007e+06 452088 477104. 1650.88 2.81 0.111677 0.0965292 21682 110474 -1 1967 21 1401 2207 139818 32995 0 0 139818 32995 2207 1535 0 0 8012 6558 0 0 11747 8978 0 0 2207 1682 0 0 58057 7077 0 0 57588 7165 0 0 2207 0 0 806 1047 1110 7722 0 0 3.22376 3.22376 -117.601 -3.22376 0 0 585099. 2024.56 0.21 0.04 0.10 -1 -1 0.21 0.0113379 0.0101045 136 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 6.08 vpr 52.95 MiB -1 -1 0.13 17572 1 0.01 -1 -1 29760 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54220 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 14.3 MiB 0.27 804 52.9 MiB 0.07 0.00 3.15716 -98.0967 -3.15716 3.15716 1.02 0.000186547 0.000151328 0.0113792 0.00949803 26 2169 48 6.64007e+06 251160 477104. 1650.88 2.58 0.0902307 0.0776361 21682 110474 -1 1820 18 1081 1516 116057 26328 0 0 116057 26328 1516 1306 0 0 5342 4254 0 0 7839 5984 0 0 1516 1357 0 0 49924 6788 0 0 49920 6639 0 0 1516 0 0 435 422 392 3635 0 0 3.19183 3.19183 -118.905 -3.19183 0 0 585099. 2024.56 0.26 0.05 0.09 -1 -1 0.26 0.0145602 0.013226 107 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.45 vpr 53.30 MiB -1 -1 0.14 17584 1 0.01 -1 -1 29664 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 14.7 MiB 0.12 924 53.3 MiB 0.11 0.00 3.01201 -96.9928 -3.01201 3.01201 0.99 0.000217557 0.000172901 0.0174436 0.0140453 26 2707 41 6.64007e+06 401856 477104. 1650.88 4.11 0.119902 0.103424 21682 110474 -1 2034 22 1268 2184 155363 35482 0 0 155363 35482 2184 1589 0 0 8003 6297 0 0 11437 8919 0 0 2184 1718 0 0 65693 8658 0 0 65862 8301 0 0 2184 0 0 916 1584 1455 9791 0 0 2.79777 2.79777 -111.82 -2.79777 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.018959 0.0169533 127 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.34 vpr 53.50 MiB -1 -1 0.11 17748 1 0.01 -1 -1 29792 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 15.0 MiB 0.29 888 53.5 MiB 0.09 0.00 3.50555 -107.078 -3.50555 3.50555 0.99 0.000248722 0.000207236 0.0147616 0.0123638 32 2180 19 6.64007e+06 401856 554710. 1919.41 0.85 0.058819 0.0503836 22834 132086 -1 1817 19 1289 1875 117083 29016 0 0 117083 29016 1875 1426 0 0 6858 5689 0 0 10630 8146 0 0 1875 1597 0 0 48019 6238 0 0 47826 5920 0 0 1875 0 0 586 718 690 5533 0 0 3.33103 3.33103 -126.524 -3.33103 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.01715 0.0153152 138 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.51 vpr 53.08 MiB -1 -1 0.17 17448 1 0.02 -1 -1 29720 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54352 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 14.5 MiB 0.19 850 53.1 MiB 0.07 0.00 2.6639 -86.0825 -2.6639 2.6639 0.99 0.00019301 0.000155486 0.0142776 0.0117431 32 1899 20 6.64007e+06 213486 554710. 1919.41 2.25 0.0716612 0.0607912 22834 132086 -1 1658 17 969 1518 100027 23293 0 0 100027 23293 1518 1277 0 0 5455 4372 0 0 8322 6285 0 0 1518 1453 0 0 41089 5163 0 0 42125 4743 0 0 1518 0 0 549 599 385 4273 0 0 2.62357 2.62357 -99.5771 -2.62357 0 0 701300. 2426.64 0.19 0.03 0.10 -1 -1 0.19 0.00872479 0.00782389 104 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.89 vpr 53.16 MiB -1 -1 0.14 17280 1 0.02 -1 -1 29668 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54432 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 14.7 MiB 0.26 977 53.2 MiB 0.10 0.00 3.43507 -111.507 -3.43507 3.43507 0.83 0.000578573 0.000539135 0.0168681 0.0139335 32 2185 21 6.64007e+06 263718 554710. 1919.41 0.87 0.0477952 0.0404111 22834 132086 -1 2000 20 1306 1951 145495 32684 0 0 145495 32684 1951 1636 0 0 7277 6071 0 0 10929 8380 0 0 1951 1777 0 0 61134 7636 0 0 62253 7184 0 0 1951 0 0 645 630 539 5055 0 0 3.19163 3.19163 -121.579 -3.19163 0 0 701300. 2426.64 0.27 0.06 0.10 -1 -1 0.27 0.0155237 0.0139861 117 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 5.63 vpr 53.26 MiB -1 -1 0.13 17468 1 0.01 -1 -1 29744 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 14.6 MiB 0.23 946 53.3 MiB 0.06 0.00 3.94507 -117.623 -3.94507 3.94507 0.98 0.000226061 0.000184965 0.00894671 0.00752608 32 2415 21 6.64007e+06 288834 554710. 1919.41 2.20 0.0781907 0.06626 22834 132086 -1 2049 21 1608 2121 146760 36179 0 0 146760 36179 2121 1773 0 0 8133 6947 0 0 13094 10276 0 0 2121 1900 0 0 60130 7775 0 0 61161 7508 0 0 2121 0 0 513 509 473 4656 0 0 3.89603 3.89603 -132.637 -3.89603 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0179155 0.0160378 130 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 5.26 vpr 53.26 MiB -1 -1 0.11 17644 1 0.01 -1 -1 29684 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 14.7 MiB 0.11 833 53.3 MiB 0.07 0.00 3.80467 -99.0065 -3.80467 3.80467 0.98 0.000222451 0.000182092 0.0110799 0.00918121 28 2099 20 6.64007e+06 364182 500653. 1732.36 2.09 0.0804892 0.069638 21970 115934 -1 1830 16 836 1416 84748 21249 0 0 84748 21249 1416 1045 0 0 5129 4180 0 0 7496 5970 0 0 1416 1152 0 0 34356 4552 0 0 34935 4350 0 0 1416 0 0 580 671 795 5698 0 0 3.52123 3.52123 -109.058 -3.52123 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.0132781 0.0119347 122 49 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.64 vpr 53.72 MiB -1 -1 0.16 17540 1 0.02 -1 -1 29712 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 14.9 MiB 0.25 963 53.7 MiB 0.11 0.00 4.33064 -135.119 -4.33064 4.33064 0.95 0.000241677 0.000194084 0.0212979 0.0176313 32 2690 50 6.64007e+06 301392 554710. 1919.41 1.19 0.0955791 0.0828483 22834 132086 -1 2212 20 1846 2709 203095 49058 0 0 203095 49058 2709 2229 0 0 10471 9014 0 0 16362 12864 0 0 2709 2325 0 0 88829 10357 0 0 82015 12269 0 0 2709 0 0 863 1008 941 7853 0 0 4.33509 4.33509 -152.349 -4.33509 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0219771 0.0199573 154 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 5.55 vpr 52.61 MiB -1 -1 0.14 16904 1 0.01 -1 -1 29560 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53876 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 14.0 MiB 0.05 593 52.6 MiB 0.07 0.00 2.9943 -79.9285 -2.9943 2.9943 0.97 0.000163852 0.000130787 0.0139598 0.0114972 28 1651 19 6.64007e+06 226044 500653. 1732.36 2.41 0.0781226 0.067144 21970 115934 -1 1434 19 776 1267 76013 19115 0 0 76013 19115 1267 982 0 0 4519 3625 0 0 6477 5154 0 0 1267 1034 0 0 30906 4304 0 0 31577 4016 0 0 1267 0 0 491 554 380 3854 0 0 2.71476 2.71476 -94.5986 -2.71476 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.0121778 0.0109719 96 -1 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 6.20 vpr 53.55 MiB -1 -1 0.14 17716 1 0.01 -1 -1 29740 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 14.9 MiB 0.16 971 53.6 MiB 0.04 0.00 3.39956 -113.266 -3.39956 3.39956 0.78 0.000144668 0.00011777 0.0066849 0.00558912 26 2813 32 6.64007e+06 426972 477104. 1650.88 3.22 0.107521 0.0933687 21682 110474 -1 2275 27 1879 2837 261980 64984 0 0 261980 64984 2837 2372 0 0 10097 7977 0 0 16624 12362 0 0 2837 2463 0 0 113712 20273 0 0 115873 19537 0 0 2837 0 0 958 1315 1255 8929 0 0 4.22383 4.22383 -143.682 -4.22383 0 0 585099. 2024.56 0.25 0.09 0.10 -1 -1 0.25 0.0219693 0.0193871 145 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.16 vpr 53.09 MiB -1 -1 0.15 17648 1 0.02 -1 -1 29684 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54364 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 14.6 MiB 0.17 882 53.1 MiB 0.06 0.00 2.8021 -101.718 -2.8021 2.8021 0.97 0.000236776 0.000189832 0.012636 0.0103799 32 1882 17 6.64007e+06 213486 554710. 1919.41 0.92 0.0527181 0.0447932 22834 132086 -1 1623 20 1243 1792 121510 27193 0 0 121510 27193 1792 1350 0 0 6309 5086 0 0 9878 7300 0 0 1792 1481 0 0 51198 5921 0 0 50541 6055 0 0 1792 0 0 549 498 465 4516 0 0 2.79977 2.79977 -116.458 -2.79977 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.016141 0.014312 114 93 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.33 vpr 53.34 MiB -1 -1 0.09 17500 1 0.02 -1 -1 29720 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54624 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 14.7 MiB 0.13 938 53.3 MiB 0.08 0.00 3.57727 -110.382 -3.57727 3.57727 0.62 0.000131082 0.000102183 0.0118641 0.00963719 32 2068 15 6.64007e+06 401856 554710. 1919.41 0.84 0.0524912 0.0448808 22834 132086 -1 1883 22 987 1438 106708 24358 0 0 106708 24358 1438 1156 0 0 5455 4303 0 0 7834 6099 0 0 1438 1216 0 0 44405 6077 0 0 46138 5507 0 0 1438 0 0 451 688 680 4963 0 0 3.33383 3.33383 -115.159 -3.33383 0 0 701300. 2426.64 0.24 0.04 0.12 -1 -1 0.24 0.0135554 0.0121935 131 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 10.34 vpr 53.45 MiB -1 -1 0.17 17540 1 0.03 -1 -1 29772 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54728 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 15.1 MiB 0.33 1340 53.4 MiB 0.14 0.01 5.27469 -159.481 -5.27469 5.27469 0.87 0.000594308 0.0005097 0.02463 0.0204467 30 3449 24 6.64007e+06 339066 526063. 1820.29 6.77 0.15065 0.132326 22546 126617 -1 2555 26 1869 2664 179496 41698 0 0 179496 41698 2664 2054 0 0 8812 6963 0 0 11930 9380 0 0 2664 2164 0 0 79479 10052 0 0 73947 11085 0 0 2664 0 0 795 920 967 7434 0 0 5.62434 5.62434 -178.11 -5.62434 0 0 666494. 2306.21 0.29 0.09 0.10 -1 -1 0.29 0.0292264 0.0265067 170 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.24 vpr 52.77 MiB -1 -1 0.14 17236 1 0.01 -1 -1 29592 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54036 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 14.2 MiB 0.17 730 52.8 MiB 0.06 0.00 2.6949 -85.8356 -2.6949 2.6949 0.94 8.3633e-05 6.6524e-05 0.00990759 0.00812915 26 1704 19 6.64007e+06 226044 477104. 1650.88 1.00 0.0448018 0.039007 21682 110474 -1 1475 14 680 867 67067 15482 0 0 67067 15482 867 739 0 0 3302 2706 0 0 4712 3813 0 0 867 773 0 0 29866 3586 0 0 27453 3865 0 0 867 0 0 187 145 194 1767 0 0 2.20051 2.20051 -90.9143 -2.20051 0 0 585099. 2024.56 0.26 0.03 0.10 -1 -1 0.26 0.00995555 0.00904327 87 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.12 vpr 53.00 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29724 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54268 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 14.5 MiB 0.12 823 53.0 MiB 0.07 0.00 3.52781 -103.731 -3.52781 3.52781 1.00 0.000195598 0.000158376 0.0133727 0.011066 32 1677 18 6.64007e+06 200928 554710. 1919.41 0.83 0.0470308 0.0402551 22834 132086 -1 1545 21 948 1604 131721 28662 0 0 131721 28662 1604 1221 0 0 5879 4611 0 0 9660 7351 0 0 1604 1329 0 0 59083 6764 0 0 53891 7386 0 0 1604 0 0 656 844 815 5571 0 0 3.31157 3.31157 -114.275 -3.31157 0 0 701300. 2426.64 0.20 0.04 0.13 -1 -1 0.20 0.00958865 0.00840535 92 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.32 vpr 53.12 MiB -1 -1 0.17 17512 1 0.01 -1 -1 29748 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 14.5 MiB 0.06 878 53.1 MiB 0.11 0.00 2.8981 -97.1524 -2.8981 2.8981 1.00 0.000201824 0.000164257 0.0184835 0.0151879 32 2066 23 6.64007e+06 263718 554710. 1919.41 0.94 0.0574517 0.049017 22834 132086 -1 1856 19 1162 2084 152947 33725 0 0 152947 33725 2084 1555 0 0 7439 6120 0 0 11765 8590 0 0 2084 1652 0 0 66731 7643 0 0 62844 8165 0 0 2084 0 0 922 889 891 7236 0 0 2.73457 2.73457 -110.687 -2.73457 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0137667 0.012291 115 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.29 vpr 52.71 MiB -1 -1 0.15 17140 1 0.01 -1 -1 29792 -1 -1 27 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53972 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 14.2 MiB 0.05 498 52.7 MiB 0.06 0.00 2.6929 -63.3531 -2.6929 2.6929 1.00 0.000169441 0.000140046 0.0112865 0.00919772 28 1465 34 6.64007e+06 339066 500653. 1732.36 1.09 0.0504429 0.0435855 21970 115934 -1 1223 21 732 1244 86849 21862 0 0 86849 21862 1244 982 0 0 4670 3869 0 0 6730 5357 0 0 1244 1063 0 0 35184 5446 0 0 37777 5145 0 0 1244 0 0 512 674 681 4905 0 0 2.76677 2.76677 -75.8206 -2.76677 0 0 612192. 2118.31 0.27 0.04 0.06 -1 -1 0.27 0.0108757 0.00969529 89 19 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 7.75 vpr 53.30 MiB -1 -1 0.17 17448 1 0.01 -1 -1 29708 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 14.9 MiB 0.18 977 53.3 MiB 0.12 0.00 3.73696 -113.519 -3.73696 3.73696 0.83 0.000255754 0.000203244 0.0215597 0.0175689 28 2870 23 6.64007e+06 263718 500653. 1732.36 4.64 0.152339 0.132959 21970 115934 -1 2437 21 1399 2455 210044 53926 0 0 210044 53926 2455 1928 0 0 8568 7023 0 0 12569 9621 0 0 2455 2059 0 0 91865 16858 0 0 92132 16437 0 0 2455 0 0 1056 1354 1165 8480 0 0 3.93103 3.93103 -138.054 -3.93103 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0102983 0.00913956 136 69 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.91 vpr 53.63 MiB -1 -1 0.17 17540 1 0.01 -1 -1 29808 -1 -1 35 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 15.0 MiB 0.19 919 53.6 MiB 0.09 0.00 3.48461 -113.085 -3.48461 3.48461 0.97 0.000279302 0.000229831 0.0150072 0.0124904 30 2153 20 6.64007e+06 439530 526063. 1820.29 2.55 0.10995 0.0942253 22546 126617 -1 1864 19 1229 1964 113173 26571 0 0 113173 26571 1964 1364 0 0 6612 5107 0 0 8457 6863 0 0 1964 1501 0 0 47269 5683 0 0 46907 6053 0 0 1964 0 0 735 823 822 6214 0 0 3.10897 3.10897 -122.024 -3.10897 0 0 666494. 2306.21 0.25 0.05 0.07 -1 -1 0.25 0.0180926 0.0162137 143 86 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.95 vpr 53.25 MiB -1 -1 0.14 17464 1 0.03 -1 -1 29732 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 14.8 MiB 0.45 1084 53.3 MiB 0.15 0.00 4.10361 -122.482 -4.10361 4.10361 1.01 0.000251747 0.000207002 0.0227377 0.0187805 32 2676 30 6.65987e+06 380340 554710. 1919.41 1.07 0.077087 0.0663359 22834 132086 -1 2167 20 1561 2461 165899 40926 0 0 165899 40926 2461 1889 0 0 9655 8232 0 0 14990 11808 0 0 2461 2028 0 0 67416 8575 0 0 68916 8394 0 0 2461 0 0 900 1129 1047 8251 0 0 4.30897 4.30897 -143.206 -4.30897 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0191622 0.0173266 152 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.04 vpr 53.34 MiB -1 -1 0.15 17580 1 0.02 -1 -1 29812 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54620 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 14.7 MiB 0.34 1130 53.3 MiB 0.08 0.00 3.90862 -119.942 -3.90862 3.90862 0.71 0.000241285 0.00019662 0.0140159 0.0115455 32 2644 22 6.65987e+06 291594 554710. 1919.41 0.84 0.0490176 0.0421787 22834 132086 -1 2352 18 1509 2257 198253 42601 0 0 198253 42601 2257 1909 0 0 8696 7420 0 0 13325 10490 0 0 2257 1998 0 0 83727 11044 0 0 87991 9740 0 0 2257 0 0 748 722 622 5845 0 0 4.22583 4.22583 -143.33 -4.22583 0 0 701300. 2426.64 0.23 0.04 0.12 -1 -1 0.23 0.0103191 0.00934817 138 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.59 vpr 53.17 MiB -1 -1 0.10 17644 1 0.01 -1 -1 29752 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54444 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 14.6 MiB 0.12 1078 53.2 MiB 0.07 0.00 3.21404 -100.176 -3.21404 3.21404 1.10 0.000223581 0.000184935 0.0110026 0.00932487 30 2211 19 6.65987e+06 291594 526063. 1820.29 2.30 0.0861613 0.0748494 22546 126617 -1 1918 16 910 1280 67072 16737 0 0 67072 16737 1280 976 0 0 4451 3642 0 0 5699 4724 0 0 1280 1065 0 0 27317 3059 0 0 27045 3271 0 0 1280 0 0 370 321 371 3206 0 0 3.17971 3.17971 -114.132 -3.17971 0 0 666494. 2306.21 0.25 0.04 0.07 -1 -1 0.25 0.013329 0.0120819 126 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.34 vpr 52.94 MiB -1 -1 0.17 17484 1 0.01 -1 -1 29776 -1 -1 27 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54212 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 14.4 MiB 0.10 920 52.9 MiB 0.08 0.00 3.39544 -91.96 -3.39544 3.39544 0.95 0.000224069 0.000185064 0.0131625 0.0110747 28 2050 20 6.65987e+06 342306 500653. 1732.36 2.40 0.114789 0.101048 21970 115934 -1 1915 21 1479 2745 169488 40952 0 0 169488 40952 2745 1856 0 0 9992 8347 0 0 15257 12008 0 0 2745 2115 0 0 68292 8382 0 0 70457 8244 0 0 2745 0 0 1266 1596 1640 11065 0 0 3.30391 3.30391 -111.304 -3.30391 0 0 612192. 2118.31 0.17 0.04 0.08 -1 -1 0.17 0.00911653 0.00816983 126 25 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.27 vpr 53.12 MiB -1 -1 0.15 17500 1 0.01 -1 -1 29684 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54400 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 14.5 MiB 0.12 879 53.1 MiB 0.10 0.00 3.48115 -101.76 -3.48115 3.48115 1.02 0.000214518 0.000176987 0.0168092 0.014031 32 2720 23 6.65987e+06 291594 554710. 1919.41 0.90 0.0532312 0.045977 22834 132086 -1 2094 23 1627 3030 207045 49022 0 0 207045 49022 3030 2382 0 0 11282 9650 0 0 17420 13401 0 0 3030 2551 0 0 85014 10678 0 0 87269 10360 0 0 3030 0 0 1403 1826 1708 11811 0 0 3.41891 3.41891 -121.07 -3.41891 0 0 701300. 2426.64 0.29 0.08 0.08 -1 -1 0.29 0.0190618 0.0169247 130 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 5.80 vpr 53.50 MiB -1 -1 0.14 17600 1 0.01 -1 -1 29664 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54780 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 14.8 MiB 0.19 1020 53.5 MiB 0.10 0.00 2.68684 -97.3166 -2.68684 2.68684 1.01 0.000279666 0.000232464 0.0171788 0.0143407 28 2402 22 6.65987e+06 418374 500653. 1732.36 2.61 0.120057 0.103648 21970 115934 -1 2084 20 1245 1969 135441 32526 0 0 135441 32526 1969 1453 0 0 7396 6095 0 0 10727 8851 0 0 1969 1567 0 0 58775 6793 0 0 54605 7767 0 0 1969 0 0 724 782 886 6679 0 0 2.84691 2.84691 -114.651 -2.84691 0 0 612192. 2118.31 0.25 0.06 0.10 -1 -1 0.25 0.0165088 0.0147538 141 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.00 vpr 52.73 MiB -1 -1 0.15 17216 1 0.01 -1 -1 29852 -1 -1 18 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53996 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 14.2 MiB 0.20 700 52.7 MiB 0.07 0.00 3.02895 -80.9401 -3.02895 3.02895 0.83 0.000174944 0.000140501 0.0133914 0.0109788 32 1579 21 6.65987e+06 228204 554710. 1919.41 0.89 0.0441265 0.0375384 22834 132086 -1 1370 20 870 1510 116542 26963 0 0 116542 26963 1510 1152 0 0 5836 5096 0 0 9695 7407 0 0 1510 1211 0 0 49804 5977 0 0 48187 6120 0 0 1510 0 0 640 706 713 5181 0 0 2.64031 2.64031 -92.3857 -2.64031 0 0 701300. 2426.64 0.21 0.03 0.11 -1 -1 0.21 0.00809251 0.00723476 94 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 5.51 vpr 52.91 MiB -1 -1 0.15 16920 1 0.02 -1 -1 29620 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54184 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 14.4 MiB 0.05 984 52.9 MiB 0.09 0.00 2.58264 -81.2303 -2.58264 2.58264 1.02 0.000201607 0.000164704 0.0136616 0.0114162 30 2093 19 6.65987e+06 393018 526063. 1820.29 2.34 0.0857349 0.0739019 22546 126617 -1 1864 16 765 1314 78493 18348 0 0 78493 18348 1314 895 0 0 4596 3632 0 0 5929 4927 0 0 1314 973 0 0 32049 4018 0 0 33291 3903 0 0 1314 0 0 549 708 703 5446 0 0 2.32211 2.32211 -91.6006 -2.32211 0 0 666494. 2306.21 0.18 0.02 0.07 -1 -1 0.18 0.0072812 0.00659253 115 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.03 vpr 53.12 MiB -1 -1 0.16 17364 1 0.01 -1 -1 29744 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 14.5 MiB 0.18 857 53.1 MiB 0.05 0.00 2.68253 -94.1668 -2.68253 2.68253 0.97 0.000213068 0.000173343 0.00893431 0.00747388 32 2011 20 6.65987e+06 240882 554710. 1919.41 0.85 0.0456855 0.0392394 22834 132086 -1 1822 18 1013 1458 110453 25890 0 0 110453 25890 1458 1235 0 0 5730 4826 0 0 8634 6901 0 0 1458 1266 0 0 49075 5286 0 0 44098 6376 0 0 1458 0 0 445 408 253 3454 0 0 2.84931 2.84931 -113.244 -2.84931 0 0 701300. 2426.64 0.19 0.03 0.08 -1 -1 0.19 0.00868881 0.00780309 111 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.97 vpr 52.92 MiB -1 -1 0.15 17644 1 0.02 -1 -1 29660 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54192 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 14.5 MiB 0.28 731 52.9 MiB 0.09 0.00 2.98475 -97.7196 -2.98475 2.98475 0.99 0.000211781 0.000171701 0.0171696 0.0140836 32 2059 20 6.65987e+06 215526 554710. 1919.41 2.45 0.101131 0.086077 22834 132086 -1 1675 19 1155 1839 131497 31510 0 0 131497 31510 1839 1509 0 0 7035 5953 0 0 10343 8107 0 0 1839 1641 0 0 53907 7469 0 0 56534 6831 0 0 1839 0 0 684 891 830 6148 0 0 2.94591 2.94591 -111.163 -2.94591 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0166942 0.0151799 113 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 5.43 vpr 52.85 MiB -1 -1 0.16 17604 1 0.02 -1 -1 29652 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54116 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 14.3 MiB 0.27 760 52.8 MiB 0.03 0.00 3.37455 -95.1617 -3.37455 3.37455 0.81 0.000106262 8.5124e-05 0.00523424 0.00436059 28 1599 19 6.65987e+06 215526 500653. 1732.36 2.17 0.0822157 0.0707055 21970 115934 -1 1475 16 730 1088 69135 16933 0 0 69135 16933 1088 800 0 0 3950 3280 0 0 5596 4532 0 0 1088 869 0 0 28821 3619 0 0 28592 3833 0 0 1088 0 0 358 235 378 3013 0 0 2.89197 2.89197 -101.537 -2.89197 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.013063 0.0118686 98 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.18 vpr 53.02 MiB -1 -1 0.15 17592 1 0.02 -1 -1 29660 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 14.3 MiB 0.18 971 53.0 MiB 0.05 0.00 2.91589 -98.643 -2.91589 2.91589 0.96 0.000183058 0.000149492 0.00922234 0.00771597 26 2339 24 6.65987e+06 215526 477104. 1650.88 0.90 0.0477207 0.0412254 21682 110474 -1 2026 30 1451 1926 222933 82481 0 0 222933 82481 1926 1637 0 0 7515 6582 0 0 12918 9866 0 0 1926 1725 0 0 100061 30583 0 0 98587 32088 0 0 1926 0 0 475 462 479 4352 0 0 2.94331 2.94331 -115.105 -2.94331 0 0 585099. 2024.56 0.25 0.09 0.10 -1 -1 0.25 0.0185936 0.0165316 106 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 7.36 vpr 53.40 MiB -1 -1 0.15 17496 1 0.02 -1 -1 29716 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 14.8 MiB 0.22 942 53.4 MiB 0.04 0.00 3.37501 -109.706 -3.37501 3.37501 0.63 0.000144153 0.000114535 0.00871667 0.00719408 30 2541 28 6.65987e+06 304272 526063. 1820.29 4.57 0.126418 0.110923 22546 126617 -1 1843 23 1438 2267 121122 30583 0 0 121122 30583 2267 1661 0 0 7519 5958 0 0 9863 7876 0 0 2267 1764 0 0 48252 6380 0 0 50954 6944 0 0 2267 0 0 829 909 806 6479 0 0 2.99031 2.99031 -116.205 -2.99031 0 0 666494. 2306.21 0.19 0.04 0.07 -1 -1 0.19 0.0111471 0.00994869 139 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 6.22 vpr 53.20 MiB -1 -1 0.16 17576 1 0.01 -1 -1 29660 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 14.7 MiB 0.20 986 53.2 MiB 0.07 0.00 3.76229 -110.216 -3.76229 3.76229 0.68 0.000129464 0.000104298 0.0100641 0.00829052 26 2586 24 6.65987e+06 380340 477104. 1650.88 3.06 0.107667 0.0935371 21682 110474 -1 2169 22 1594 2624 198934 46792 0 0 198934 46792 2624 1929 0 0 9978 8543 0 0 15320 12161 0 0 2624 2133 0 0 85946 11077 0 0 82442 10949 0 0 2624 0 0 1030 1278 1408 9170 0 0 3.89071 3.89071 -131.876 -3.89071 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0244691 0.0222175 133 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 5.98 vpr 52.64 MiB -1 -1 0.16 17236 1 0.01 -1 -1 29668 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53904 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 14.2 MiB 0.15 752 52.6 MiB 0.07 0.00 2.62193 -75.4789 -2.62193 2.62193 0.93 0.00018152 0.000147858 0.0115253 0.00959798 32 1724 19 6.65987e+06 266238 554710. 1919.41 2.82 0.0818901 0.0694465 22834 132086 -1 1596 19 900 1499 114988 27307 0 0 114988 27307 1499 1132 0 0 5910 5141 0 0 9603 7672 0 0 1499 1226 0 0 49006 6058 0 0 47471 6078 0 0 1499 0 0 599 635 568 4699 0 0 2.86591 2.86591 -96.436 -2.86591 0 0 701300. 2426.64 0.24 0.05 0.08 -1 -1 0.24 0.0121556 0.0108454 98 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.35 vpr 53.25 MiB -1 -1 0.16 17664 1 0.02 -1 -1 29712 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 14.8 MiB 0.43 1122 53.3 MiB 0.06 0.00 3.1755 -101.138 -3.1755 3.1755 0.75 0.000144725 0.000118456 0.0114283 0.00951477 32 2588 21 6.65987e+06 266238 554710. 1919.41 0.88 0.0618957 0.0535689 22834 132086 -1 2317 20 1375 2480 184513 42078 0 0 184513 42078 2480 1975 0 0 9234 7785 0 0 14867 11337 0 0 2480 2157 0 0 75480 9933 0 0 79972 8891 0 0 2480 0 0 1105 1513 1394 9672 0 0 3.40776 3.40776 -119.927 -3.40776 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0207023 0.0186777 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.48 vpr 53.30 MiB -1 -1 0.16 17292 1 0.01 -1 -1 29700 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 14.8 MiB 0.22 1051 53.3 MiB 0.11 0.00 3.39001 -113.61 -3.39001 3.39001 0.94 0.000224317 0.000182441 0.0215471 0.0179411 32 2589 21 6.65987e+06 266238 554710. 1919.41 2.08 0.0728941 0.0614818 22834 132086 -1 2095 22 1582 2271 169912 39465 0 0 169912 39465 2271 1901 0 0 8581 7422 0 0 13718 10659 0 0 2271 2032 0 0 74935 8195 0 0 68136 9256 0 0 2271 0 0 689 738 828 5990 0 0 3.10577 3.10577 -120.457 -3.10577 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0180448 0.0161483 137 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 5.14 vpr 52.95 MiB -1 -1 0.15 17420 1 0.02 -1 -1 29824 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54216 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 14.4 MiB 0.24 843 52.9 MiB 0.08 0.00 2.24964 -86.04 -2.24964 2.24964 0.89 0.000215377 0.000174611 0.0126827 0.0104011 28 1976 23 6.65987e+06 367662 500653. 1732.36 1.92 0.0734137 0.0623429 21970 115934 -1 1805 19 995 1609 118312 27342 0 0 118312 27342 1609 1123 0 0 6034 5098 0 0 9144 7189 0 0 1609 1285 0 0 51257 6047 0 0 48659 6600 0 0 1609 0 0 614 847 925 6105 0 0 2.15051 2.15051 -96.7949 -2.15051 0 0 612192. 2118.31 0.25 0.05 0.06 -1 -1 0.25 0.015711 0.0141029 110 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.77 vpr 52.54 MiB -1 -1 0.13 17260 1 0.01 -1 -1 29768 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53800 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 14.0 MiB 0.14 607 52.5 MiB 0.03 0.00 1.87027 -65.7134 -1.87027 1.87027 0.87 8.4229e-05 6.6773e-05 0.00577946 0.00470255 28 1335 21 6.65987e+06 190170 500653. 1732.36 1.68 0.0561647 0.0481244 21970 115934 -1 1245 17 573 766 55951 13565 0 0 55951 13565 766 645 0 0 2923 2472 0 0 4026 3380 0 0 766 660 0 0 23480 3315 0 0 23990 3093 0 0 766 0 0 193 188 164 1791 0 0 1.80465 1.80465 -75.9207 -1.80465 0 0 612192. 2118.31 0.28 0.02 0.10 -1 -1 0.28 0.00617309 0.0055712 81 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 6.38 vpr 52.98 MiB -1 -1 0.13 17268 1 0.01 -1 -1 29780 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54252 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 14.5 MiB 0.39 920 53.0 MiB 0.10 0.00 3.85375 -116.465 -3.85375 3.85375 0.73 0.000231636 0.000184264 0.0170528 0.0139315 28 2421 25 6.65987e+06 240882 500653. 1732.36 3.37 0.108836 0.0941398 21970 115934 -1 1940 20 1232 1769 140769 32773 0 0 140769 32773 1769 1578 0 0 6762 5516 0 0 9699 7985 0 0 1769 1616 0 0 58707 8684 0 0 62063 7394 0 0 1769 0 0 537 533 448 4471 0 0 3.57937 3.57937 -132.597 -3.57937 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0165268 0.0150113 127 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 5.84 vpr 53.18 MiB -1 -1 0.14 17692 1 0.01 -1 -1 29780 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 14.8 MiB 0.06 1053 53.2 MiB 0.11 0.00 3.36036 -109.189 -3.36036 3.36036 0.85 0.000231601 0.000189633 0.017993 0.0148291 30 2104 31 6.65987e+06 393018 526063. 1820.29 2.66 0.11646 0.0999099 22546 126617 -1 1879 19 1052 1686 102005 23529 0 0 102005 23529 1686 1155 0 0 5988 4830 0 0 7854 6553 0 0 1686 1265 0 0 41679 5141 0 0 43112 4585 0 0 1686 0 0 634 649 617 5606 0 0 3.39343 3.39343 -123.011 -3.39343 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0165748 0.014958 135 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 6.43 vpr 53.57 MiB -1 -1 0.16 17752 1 0.02 -1 -1 29708 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 14.8 MiB 0.28 1125 53.6 MiB 0.08 0.00 3.36484 -108.843 -3.36484 3.36484 0.88 0.000129086 0.000103437 0.0125209 0.0102713 28 3137 27 6.65987e+06 291594 500653. 1732.36 3.09 0.128245 0.111138 21970 115934 -1 2513 20 1729 2617 214199 47773 0 0 214199 47773 2617 2128 0 0 9625 7995 0 0 14506 11743 0 0 2617 2398 0 0 93018 12058 0 0 91816 11451 0 0 2617 0 0 888 1042 1009 7870 0 0 3.68491 3.68491 -129.445 -3.68491 0 0 612192. 2118.31 0.27 0.08 0.10 -1 -1 0.27 0.0196328 0.0177526 142 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.29 vpr 52.31 MiB -1 -1 0.15 17252 1 0.01 -1 -1 29680 -1 -1 18 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53568 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 13.9 MiB 0.31 375 52.3 MiB 0.05 0.00 1.89953 -52.6788 -1.89953 1.89953 0.79 0.000133911 0.000107324 0.00931969 0.00762216 28 1149 22 6.65987e+06 228204 500653. 1732.36 1.06 0.0415917 0.036008 21970 115934 -1 1029 16 578 785 66971 17479 0 0 66971 17479 785 677 0 0 2972 2448 0 0 4132 3374 0 0 785 708 0 0 29261 5088 0 0 29036 5184 0 0 785 0 0 207 236 212 1972 0 0 1.95411 1.95411 -69.652 -1.95411 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.0083054 0.00743758 77 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.13 vpr 52.94 MiB -1 -1 0.14 17036 1 0.01 -1 -1 29804 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54212 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 14.5 MiB 0.10 939 52.9 MiB 0.08 0.00 3.88509 -98.6856 -3.88509 3.88509 0.97 0.0002006 0.000167408 0.0134808 0.0112786 28 2218 23 6.65987e+06 266238 500653. 1732.36 1.02 0.0617928 0.054123 21970 115934 -1 2000 22 1135 2302 156699 37494 0 0 156699 37494 2302 1806 0 0 8248 6987 0 0 12526 9600 0 0 2302 2009 0 0 67282 8379 0 0 64039 8713 0 0 2302 0 0 1167 1399 1460 9608 0 0 4.05717 4.05717 -118.763 -4.05717 0 0 612192. 2118.31 0.26 0.04 0.10 -1 -1 0.26 0.0106396 0.00959174 118 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.80 vpr 52.34 MiB -1 -1 0.11 16700 1 0.01 -1 -1 29556 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53592 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 13.7 MiB 0.12 424 52.3 MiB 0.03 0.00 1.99767 -57.2824 -1.99767 1.99767 0.88 7.379e-05 5.8545e-05 0.00528095 0.00430242 32 1144 43 6.65987e+06 177492 554710. 1919.41 0.80 0.0329656 0.0281933 22834 132086 -1 847 18 555 647 37589 11394 0 0 37589 11394 647 584 0 0 2558 2152 0 0 3962 3212 0 0 647 592 0 0 14694 2478 0 0 15081 2376 0 0 647 0 0 92 86 88 1097 0 0 2.14125 2.14125 -71.2859 -2.14125 0 0 701300. 2426.64 0.24 0.03 0.07 -1 -1 0.24 0.00862145 0.00763216 79 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 6.31 vpr 53.05 MiB -1 -1 0.16 17536 1 0.02 -1 -1 29716 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54324 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 14.6 MiB 0.12 1016 53.1 MiB 0.12 0.00 3.45215 -103.063 -3.45215 3.45215 1.05 0.000197138 0.000160181 0.0189047 0.015636 28 2218 31 6.65987e+06 380340 500653. 1732.36 2.83 0.141148 0.123993 21970 115934 -1 1960 16 925 1458 116161 25287 0 0 116161 25287 1458 1099 0 0 5469 4403 0 0 7781 6332 0 0 1458 1166 0 0 51612 5865 0 0 48383 6422 0 0 1458 0 0 533 659 698 4934 0 0 3.24865 3.24865 -113.541 -3.24865 0 0 612192. 2118.31 0.22 0.03 0.11 -1 -1 0.22 0.00839145 0.0076018 123 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 5.45 vpr 53.00 MiB -1 -1 0.15 17240 1 0.02 -1 -1 29720 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54276 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.4 MiB 0.11 1106 53.0 MiB 0.08 0.00 3.00424 -91.3036 -3.00424 3.00424 0.74 0.000120463 9.6948e-05 0.0109749 0.00909817 30 2159 29 6.65987e+06 393018 526063. 1820.29 2.47 0.102585 0.0880366 22546 126617 -1 1948 19 960 1799 98507 23589 0 0 98507 23589 1799 1113 0 0 6254 5022 0 0 8581 6966 0 0 1799 1236 0 0 41479 4341 0 0 38595 4911 0 0 1799 0 0 839 877 1222 7689 0 0 2.74677 2.74677 -104.291 -2.74677 0 0 666494. 2306.21 0.19 0.03 0.09 -1 -1 0.19 0.00917662 0.00826706 128 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 5.91 vpr 53.04 MiB -1 -1 0.14 17408 1 0.01 -1 -1 29724 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54308 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1003 53.0 MiB 0.10 0.00 3.35004 -101.734 -3.35004 3.35004 0.87 0.000221035 0.000178697 0.0148327 0.0121595 32 2559 26 6.65987e+06 329628 554710. 1919.41 2.62 0.109212 0.0930598 22834 132086 -1 2130 25 1517 2611 202710 47918 0 0 202710 47918 2611 1833 0 0 10101 8440 0 0 16292 12553 0 0 2611 2018 0 0 85023 11448 0 0 86072 11626 0 0 2611 0 0 1094 1544 1405 9832 0 0 3.62739 3.62739 -123.092 -3.62739 0 0 701300. 2426.64 0.28 0.05 0.12 -1 -1 0.28 0.0109451 0.00973456 125 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.05 vpr 52.67 MiB -1 -1 0.15 17212 1 0.01 -1 -1 29732 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53932 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 14.1 MiB 0.05 751 52.7 MiB 0.08 0.00 2.29953 -80.4749 -2.29953 2.29953 0.86 0.000185483 0.000149454 0.0152921 0.0126268 32 1956 24 6.65987e+06 202848 554710. 1919.41 0.91 0.0534642 0.0456939 22834 132086 -1 1619 17 1004 1590 116953 28105 0 0 116953 28105 1590 1263 0 0 6278 5359 0 0 9631 7803 0 0 1590 1357 0 0 48014 6371 0 0 49850 5952 0 0 1590 0 0 586 637 612 4779 0 0 2.61365 2.61365 -99.3719 -2.61365 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0129844 0.0116883 101 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.96 vpr 52.77 MiB -1 -1 0.13 17100 1 0.00 -1 -1 29688 -1 -1 23 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54040 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 14.3 MiB 0.10 770 52.8 MiB 0.06 0.00 2.39767 -80.2446 -2.39767 2.39767 0.91 0.000179429 0.000145226 0.00977788 0.00816119 32 1731 20 6.65987e+06 291594 554710. 1919.41 0.88 0.0421278 0.0361939 22834 132086 -1 1494 20 906 1435 105188 24238 0 0 105188 24238 1435 988 0 0 5497 4617 0 0 8361 6654 0 0 1435 1136 0 0 43761 5624 0 0 44699 5219 0 0 1435 0 0 529 481 544 4469 0 0 2.63045 2.63045 -94.2528 -2.63045 0 0 701300. 2426.64 0.22 0.03 0.12 -1 -1 0.22 0.0075264 0.00673174 97 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 5.79 vpr 52.68 MiB -1 -1 0.14 17436 1 0.02 -1 -1 29620 -1 -1 23 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53940 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 14.2 MiB 0.05 805 52.7 MiB 0.11 0.00 2.64264 -80.9203 -2.64264 2.64264 0.70 0.000238877 0.000193958 0.0184259 0.0151038 30 1734 21 6.65987e+06 291594 526063. 1820.29 2.97 0.0981583 0.0837275 22546 126617 -1 1487 16 676 1173 70053 16359 0 0 70053 16359 1173 887 0 0 4008 3254 0 0 5336 4357 0 0 1173 965 0 0 28972 3602 0 0 29391 3294 0 0 1173 0 0 497 546 462 3924 0 0 2.52731 2.52731 -90.7171 -2.52731 0 0 666494. 2306.21 0.30 0.04 0.10 -1 -1 0.30 0.011473 0.010364 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.00 vpr 52.82 MiB -1 -1 0.15 17072 1 0.01 -1 -1 29680 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54084 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 14.3 MiB 0.11 674 52.8 MiB 0.02 0.00 2.87775 -86.3082 -2.87775 2.87775 0.90 9.8262e-05 7.8864e-05 0.00377868 0.00321054 32 2003 24 6.65987e+06 240882 554710. 1919.41 0.88 0.0377304 0.0326431 22834 132086 -1 1603 19 1120 1744 120228 30644 0 0 120228 30644 1744 1412 0 0 6673 5689 0 0 10863 8454 0 0 1744 1546 0 0 45799 7046 0 0 53405 6497 0 0 1744 0 0 624 782 692 5470 0 0 2.87891 2.87891 -107.503 -2.87891 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0139996 0.0126214 110 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 5.41 vpr 52.91 MiB -1 -1 0.14 17528 1 0.02 -1 -1 29720 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54184 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 14.3 MiB 0.08 890 52.9 MiB 0.08 0.00 2.62364 -84.7948 -2.62364 2.62364 0.98 0.000191561 0.000156221 0.0122665 0.0100123 26 2019 27 6.65987e+06 342306 477104. 1650.88 2.38 0.0854703 0.0735865 21682 110474 -1 1800 20 1043 1737 123558 28050 0 0 123558 28050 1737 1253 0 0 6398 5170 0 0 9669 7509 0 0 1737 1382 0 0 54451 5987 0 0 49566 6749 0 0 1737 0 0 694 802 803 6378 0 0 2.75865 2.75865 -104.202 -2.75865 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.013922 0.0124973 103 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.06 vpr 52.87 MiB -1 -1 0.13 17484 1 0.01 -1 -1 29756 -1 -1 25 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54140 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 14.2 MiB 0.25 799 52.9 MiB 0.07 0.00 2.43438 -82.3684 -2.43438 2.43438 0.78 0.000195731 0.000158701 0.0114158 0.00948906 32 1833 22 6.65987e+06 316950 554710. 1919.41 2.07 0.072718 0.0615139 22834 132086 -1 1699 21 1195 1772 130796 30653 0 0 130796 30653 1772 1355 0 0 6762 5623 0 0 10956 8603 0 0 1772 1478 0 0 56020 6709 0 0 53514 6885 0 0 1772 0 0 577 682 717 5436 0 0 2.29551 2.29551 -92.1482 -2.29551 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0148409 0.013263 105 48 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.39 vpr 53.59 MiB -1 -1 0.14 17644 1 0.02 -1 -1 29704 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54876 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 15.1 MiB 0.31 1245 53.6 MiB 0.13 0.00 3.03052 -94.831 -3.03052 3.03052 1.00 0.000248871 0.000197604 0.0214346 0.0174872 30 2564 21 6.65987e+06 469086 526063. 1820.29 2.73 0.118244 0.100752 22546 126617 -1 2203 20 1042 2095 117396 26581 0 0 117396 26581 2095 1324 0 0 6984 5517 0 0 9263 7391 0 0 2095 1470 0 0 47852 5689 0 0 49107 5190 0 0 2095 0 0 1053 1487 2011 11752 0 0 3.14659 3.14659 -111.368 -3.14659 0 0 666494. 2306.21 0.31 0.06 0.11 -1 -1 0.31 0.01936 0.0174794 150 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 6.54 vpr 53.42 MiB -1 -1 0.17 17500 1 0.01 -1 -1 29720 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 14.8 MiB 0.31 1003 53.4 MiB 0.06 0.00 2.89575 -98.1764 -2.89575 2.89575 0.95 0.000161351 0.000133644 0.00975576 0.00801692 32 2216 22 6.65987e+06 456408 554710. 1919.41 2.93 0.125369 0.106452 22834 132086 -1 2029 22 1798 2696 194904 44951 0 0 194904 44951 2696 1983 0 0 10167 8677 0 0 16530 12589 0 0 2696 2188 0 0 84451 9467 0 0 78364 10047 0 0 2696 0 0 898 1084 1152 8618 0 0 2.86171 2.86171 -115.079 -2.86171 0 0 701300. 2426.64 0.31 0.07 0.12 -1 -1 0.31 0.0197387 0.0176301 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.29 vpr 52.89 MiB -1 -1 0.16 17472 1 0.02 -1 -1 29720 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54160 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 14.2 MiB 0.30 738 52.9 MiB 0.05 0.00 3.35895 -96.9547 -3.35895 3.35895 0.92 0.000103226 8.2858e-05 0.0074376 0.00622287 28 2006 21 6.65987e+06 215526 500653. 1732.36 1.01 0.0464461 0.0403808 21970 115934 -1 1755 20 983 1417 109655 29016 0 0 109655 29016 1417 1178 0 0 5262 4298 0 0 7610 6143 0 0 1417 1233 0 0 47602 8201 0 0 46347 7963 0 0 1417 0 0 434 421 561 4095 0 0 3.22477 3.22477 -111.904 -3.22477 0 0 612192. 2118.31 0.21 0.03 0.06 -1 -1 0.21 0.00897719 0.00806558 109 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 5.75 vpr 53.26 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29932 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 14.6 MiB 0.29 1083 53.3 MiB 0.11 0.00 3.41155 -107.597 -3.41155 3.41155 0.72 0.000255821 0.000194822 0.0207778 0.017194 32 2568 22 6.65987e+06 304272 554710. 1919.41 2.61 0.126028 0.107597 22834 132086 -1 2281 22 1376 2418 185686 42746 0 0 185686 42746 2418 1966 0 0 9263 7829 0 0 14879 11495 0 0 2418 2074 0 0 80470 9503 0 0 76238 9879 0 0 2418 0 0 1042 1279 1252 8931 0 0 3.14337 3.14337 -117.799 -3.14337 0 0 701300. 2426.64 0.31 0.07 0.11 -1 -1 0.31 0.0204813 0.0183757 137 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 6.19 vpr 53.28 MiB -1 -1 0.18 17852 1 0.02 -1 -1 29712 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 15.1 MiB 0.41 1348 53.3 MiB 0.11 0.00 4.38047 -133.32 -4.38047 4.38047 0.98 0.000225835 0.000186976 0.0182839 0.0152302 32 3046 23 6.65987e+06 342306 554710. 1919.41 2.58 0.115334 0.0992667 22834 132086 -1 2623 23 2236 3268 243986 55561 0 0 243986 55561 3268 2664 0 0 12388 10342 0 0 19791 15058 0 0 3268 2923 0 0 103064 12048 0 0 102207 12526 0 0 3268 0 0 1032 900 1073 8337 0 0 4.34623 4.34623 -151.899 -4.34623 0 0 701300. 2426.64 0.20 0.05 0.07 -1 -1 0.20 0.0133406 0.0120757 170 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.46 vpr 53.58 MiB -1 -1 0.16 17368 1 0.01 -1 -1 29700 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 15.0 MiB 1.50 1065 53.6 MiB 0.13 0.00 4.00075 -117.157 -4.00075 4.00075 0.95 0.000243125 0.000197885 0.0234814 0.0193375 32 2715 22 6.65987e+06 316950 554710. 1919.41 0.69 0.0625654 0.0531651 22834 132086 -1 2323 20 1705 2597 219213 47406 0 0 219213 47406 2597 2098 0 0 9954 8362 0 0 14876 11696 0 0 2597 2239 0 0 98187 11197 0 0 91002 11814 0 0 2597 0 0 892 1027 888 7414 0 0 4.41923 4.41923 -150.557 -4.41923 0 0 701300. 2426.64 0.30 0.08 0.08 -1 -1 0.30 0.0229541 0.0208403 162 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.87 vpr 53.26 MiB -1 -1 0.17 17420 1 0.02 -1 -1 29764 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 14.8 MiB 0.25 856 53.3 MiB 0.08 0.00 3.37089 -97.7088 -3.37089 3.37089 0.98 0.000255715 0.000211162 0.0125803 0.0105267 28 2522 41 6.65987e+06 367662 500653. 1732.36 1.39 0.0772736 0.067656 21970 115934 -1 2006 23 1465 2461 148158 38042 0 0 148158 38042 2461 1764 0 0 8829 7424 0 0 13413 10521 0 0 2461 1916 0 0 60997 8341 0 0 59997 8076 0 0 2461 0 0 996 1231 1222 8852 0 0 2.97525 2.97525 -110.998 -2.97525 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.0184519 0.0165017 133 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 5.96 vpr 52.96 MiB -1 -1 0.13 17664 1 0.01 -1 -1 29820 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54228 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 14.5 MiB 0.20 1064 53.0 MiB 0.09 0.00 3.22104 -93.8179 -3.22104 3.22104 0.98 0.00018997 0.000154417 0.0149733 0.0124733 32 2277 22 6.65987e+06 278916 554710. 1919.41 2.69 0.104636 0.0898252 22834 132086 -1 2004 18 1224 1831 133000 30938 0 0 133000 30938 1831 1458 0 0 7263 6038 0 0 10588 8436 0 0 1831 1540 0 0 55261 6913 0 0 56226 6553 0 0 1831 0 0 607 693 810 5537 0 0 3.46799 3.46799 -112.746 -3.46799 0 0 701300. 2426.64 0.20 0.03 0.12 -1 -1 0.20 0.00849198 0.00765193 118 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 6.16 vpr 53.51 MiB -1 -1 0.18 17852 1 0.01 -1 -1 29936 -1 -1 38 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 15.2 MiB 0.33 1307 53.5 MiB 0.12 0.00 3.94735 -130.391 -3.94735 3.94735 1.01 0.000158682 0.000127649 0.0185102 0.0152768 30 2969 29 6.65987e+06 481764 526063. 1820.29 2.47 0.11385 0.0979858 22546 126617 -1 2437 21 1601 2535 140228 33352 0 0 140228 33352 2535 1741 0 0 8662 7104 0 0 11267 9190 0 0 2535 1899 0 0 57064 6650 0 0 58165 6768 0 0 2535 0 0 934 1351 1272 9774 0 0 3.79291 3.79291 -145.665 -3.79291 0 0 666494. 2306.21 0.28 0.07 0.11 -1 -1 0.28 0.0247588 0.0222713 172 84 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 5.33 vpr 52.68 MiB -1 -1 0.15 17400 1 0.02 -1 -1 29736 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53944 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 14.2 MiB 0.13 741 52.7 MiB 0.05 0.00 2.74078 -78.476 -2.74078 2.74078 1.04 0.000193795 0.000159499 0.00870099 0.00728018 28 1909 21 6.65987e+06 266238 500653. 1732.36 2.12 0.0653219 0.0558417 21970 115934 -1 1650 21 996 1749 120673 28838 0 0 120673 28838 1749 1292 0 0 6495 5467 0 0 9987 7886 0 0 1749 1370 0 0 51363 6028 0 0 49330 6795 0 0 1749 0 0 753 798 864 6216 0 0 2.64539 2.64539 -98.0766 -2.64539 0 0 612192. 2118.31 0.29 0.05 0.09 -1 -1 0.29 0.0148139 0.01333 101 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.26 vpr 53.50 MiB -1 -1 0.16 17368 1 0.01 -1 -1 29712 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54788 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 14.8 MiB 0.19 1226 53.5 MiB 0.11 0.00 3.8195 -115.518 -3.8195 3.8195 0.97 0.000226398 0.000184825 0.0202372 0.0168325 28 2816 27 6.65987e+06 291594 500653. 1732.36 0.95 0.0677032 0.0587891 21970 115934 -1 2405 22 1407 1965 145447 33847 0 0 145447 33847 1965 1670 0 0 7520 6267 0 0 11221 9171 0 0 1965 1761 0 0 60458 7743 0 0 62318 7235 0 0 1965 0 0 558 606 695 5302 0 0 3.99251 3.99251 -135.355 -3.99251 0 0 612192. 2118.31 0.21 0.05 0.10 -1 -1 0.21 0.0143051 0.0127984 142 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.89 vpr 53.19 MiB -1 -1 0.16 17528 1 0.02 -1 -1 29656 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 14.8 MiB 0.18 935 53.2 MiB 0.07 0.00 3.1757 -96.1015 -3.1757 3.1757 0.92 0.000234306 0.000189573 0.0109393 0.00909593 30 2419 20 6.65987e+06 418374 526063. 1820.29 2.64 0.0981923 0.0840644 22546 126617 -1 1852 23 1089 2079 116400 28087 0 0 116400 28087 2079 1501 0 0 6929 5510 0 0 9349 7315 0 0 2079 1586 0 0 46831 6106 0 0 49133 6069 0 0 2079 0 0 990 1165 1203 8585 0 0 2.74651 2.74651 -105.848 -2.74651 0 0 666494. 2306.21 0.21 0.06 0.10 -1 -1 0.21 0.018637 0.0165367 131 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 6.56 vpr 52.93 MiB -1 -1 0.16 17320 1 0.01 -1 -1 29764 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54200 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 14.4 MiB 0.10 1001 52.9 MiB 0.11 0.00 3.15084 -101.746 -3.15084 3.15084 0.91 0.000210763 0.000171396 0.0174075 0.0145106 34 2254 21 6.65987e+06 304272 585099. 2024.56 3.30 0.105446 0.0912306 23122 138558 -1 1959 21 1292 2563 172276 38930 0 0 172276 38930 2563 1678 0 0 9262 7631 0 0 14281 11088 0 0 2563 1976 0 0 74763 7881 0 0 68844 8676 0 0 2563 0 0 1271 1621 1719 11026 0 0 3.35599 3.35599 -114.412 -3.35599 0 0 742403. 2568.87 0.33 0.07 0.13 -1 -1 0.33 0.0168083 0.0150642 123 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 5.08 vpr 53.16 MiB -1 -1 0.16 17564 1 0.02 -1 -1 29780 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54436 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 14.7 MiB 0.40 1093 53.2 MiB 0.11 0.00 3.33475 -103.887 -3.33475 3.33475 1.00 0.000257339 0.00021117 0.0202351 0.0167358 28 2713 30 6.65987e+06 278916 500653. 1732.36 1.33 0.0829678 0.0721658 21970 115934 -1 2325 20 1165 1640 133636 30650 0 0 133636 30650 1640 1432 0 0 6186 5125 0 0 8804 7142 0 0 1640 1475 0 0 56919 8095 0 0 58447 7381 0 0 1640 0 0 475 609 638 4576 0 0 3.50731 3.50731 -122.711 -3.50731 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0174113 0.0156521 136 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.63 vpr 53.46 MiB -1 -1 0.15 17600 1 0.02 -1 -1 29788 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 14.8 MiB 0.46 941 53.5 MiB 0.10 0.00 2.9071 -94.6052 -2.9071 2.9071 0.76 0.000236424 0.000189136 0.0160117 0.0130402 32 2577 25 6.65987e+06 393018 554710. 1919.41 1.03 0.0663049 0.056868 22834 132086 -1 2025 18 1260 2164 151113 35373 0 0 151113 35373 2164 1528 0 0 8025 6647 0 0 12731 9592 0 0 2164 1706 0 0 61965 8148 0 0 64064 7752 0 0 2164 0 0 904 1536 1318 9596 0 0 3.12451 3.12451 -109.621 -3.12451 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0183983 0.016621 132 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 6.24 vpr 53.44 MiB -1 -1 0.18 17528 1 0.02 -1 -1 29736 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 14.7 MiB 0.44 1111 53.4 MiB 0.12 0.00 3.47495 -108.938 -3.47495 3.47495 0.71 0.000148323 0.000116685 0.0179718 0.0144552 30 2401 21 6.65987e+06 456408 526063. 1820.29 2.76 0.112966 0.0957984 22546 126617 -1 2051 20 1043 1578 94653 21637 0 0 94653 21637 1578 1203 0 0 5423 4254 0 0 6944 5745 0 0 1578 1281 0 0 40688 4470 0 0 38442 4684 0 0 1578 0 0 535 603 576 4744 0 0 3.19151 3.19151 -123.682 -3.19151 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0175969 0.0157713 144 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 5.92 vpr 53.02 MiB -1 -1 0.12 17484 1 0.01 -1 -1 29652 -1 -1 29 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54288 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 14.5 MiB 0.10 854 53.0 MiB 0.09 0.00 3.20104 -95.0693 -3.20104 3.20104 0.83 0.000196206 0.000156965 0.0142863 0.011477 32 2200 24 6.65987e+06 367662 554710. 1919.41 3.02 0.117383 0.100458 22834 132086 -1 1814 21 1349 2126 164406 38161 0 0 164406 38161 2126 1567 0 0 8401 6907 0 0 12864 10239 0 0 2126 1668 0 0 74061 8418 0 0 64828 9362 0 0 2126 0 0 777 914 946 7069 0 0 3.44705 3.44705 -111.984 -3.44705 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.016224 0.0145639 122 21 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 5.60 vpr 53.14 MiB -1 -1 0.09 17528 1 0.02 -1 -1 29764 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54420 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 14.7 MiB 0.09 1150 53.1 MiB 0.08 0.00 3.71955 -112.95 -3.71955 3.71955 0.92 0.000235767 0.000193047 0.0130557 0.0109349 28 2455 21 6.65987e+06 291594 500653. 1732.36 2.44 0.0910547 0.0782478 21970 115934 -1 2182 21 1417 2108 125001 31141 0 0 125001 31141 2108 1634 0 0 7783 6473 0 0 11460 9317 0 0 2108 1811 0 0 51532 5728 0 0 50010 6178 0 0 2108 0 0 691 710 712 5679 0 0 3.49637 3.49637 -127.553 -3.49637 0 0 612192. 2118.31 0.24 0.05 0.11 -1 -1 0.24 0.0125456 0.0113242 133 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 8.96 vpr 53.50 MiB -1 -1 0.17 17788 1 0.02 -1 -1 29788 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54788 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 15.0 MiB 0.34 1154 53.5 MiB 0.08 0.00 3.54855 -110.543 -3.54855 3.54855 0.86 0.000140176 0.000113186 0.013144 0.0108734 28 3155 26 6.65987e+06 291594 500653. 1732.36 5.45 0.120003 0.104374 21970 115934 -1 2516 24 1908 3094 236058 52838 0 0 236058 52838 3094 2537 0 0 11176 9296 0 0 16463 12988 0 0 3094 2814 0 0 105574 12301 0 0 96657 12902 0 0 3094 0 0 1186 1426 1564 10296 0 0 3.95331 3.95331 -132.429 -3.95331 0 0 612192. 2118.31 0.27 0.08 0.10 -1 -1 0.27 0.0202986 0.0180728 146 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.84 vpr 53.45 MiB -1 -1 0.17 17588 1 0.02 -1 -1 29688 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54728 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 14.7 MiB 0.20 978 53.4 MiB 0.07 0.00 3.13344 -101.178 -3.13344 3.13344 0.70 0.000143135 0.000115239 0.0132694 0.0109061 32 2685 19 6.65987e+06 266238 554710. 1919.41 0.82 0.0560669 0.0480396 22834 132086 -1 2183 20 1508 2650 202713 46271 0 0 202713 46271 2650 1967 0 0 10199 8559 0 0 15379 12162 0 0 2650 2129 0 0 89103 10093 0 0 82732 11361 0 0 2650 0 0 1142 1136 1023 8613 0 0 3.43505 3.43505 -123.49 -3.43505 0 0 701300. 2426.64 0.20 0.05 0.07 -1 -1 0.20 0.0119078 0.0106517 135 74 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.48 vpr 52.75 MiB -1 -1 0.12 17104 1 0.01 -1 -1 29704 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 14.3 MiB 0.10 620 52.8 MiB 0.05 0.00 2.66984 -76.8361 -2.66984 2.66984 0.66 9.608e-05 7.6745e-05 0.00783826 0.00641906 28 1892 32 6.65987e+06 304272 500653. 1732.36 0.80 0.0338929 0.0289622 21970 115934 -1 1525 19 853 1325 97437 25039 0 0 97437 25039 1325 1063 0 0 4941 4126 0 0 7311 6065 0 0 1325 1138 0 0 41312 6249 0 0 41223 6398 0 0 1325 0 0 472 512 630 4353 0 0 3.03625 3.03625 -90.2131 -3.03625 0 0 612192. 2118.31 0.28 0.04 0.11 -1 -1 0.28 0.0117758 0.0105207 97 20 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 5.99 vpr 53.31 MiB -1 -1 0.14 17512 1 0.02 -1 -1 29736 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 14.9 MiB 0.17 955 53.3 MiB 0.07 0.00 3.1319 -108.89 -3.1319 3.1319 0.96 0.000217157 0.00017528 0.0111057 0.00926845 26 2742 29 6.65987e+06 253560 477104. 1650.88 2.68 0.108341 0.093873 21682 110474 -1 2191 21 1523 2136 174542 39720 0 0 174542 39720 2136 1833 0 0 8042 6791 0 0 11779 9373 0 0 2136 1863 0 0 78088 9337 0 0 72361 10523 0 0 2136 0 0 613 649 594 5218 0 0 3.13457 3.13457 -128.798 -3.13457 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0170612 0.0153177 125 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 8.52 vpr 53.39 MiB -1 -1 0.13 17836 1 0.01 -1 -1 29872 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 15.1 MiB 0.13 1262 53.4 MiB 0.10 0.00 4.11964 -123.718 -4.11964 4.11964 0.71 0.00032275 0.000271746 0.0165214 0.0137573 30 3122 21 6.65987e+06 354984 526063. 1820.29 5.54 0.143738 0.125592 22546 126617 -1 2341 22 1626 2583 144719 34348 0 0 144719 34348 2583 1909 0 0 8811 6925 0 0 11653 9482 0 0 2583 2076 0 0 59973 6823 0 0 59116 7133 0 0 2583 0 0 957 910 912 7614 0 0 4.09251 4.09251 -140.759 -4.09251 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.0195132 0.0175673 168 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 5.74 vpr 53.18 MiB -1 -1 0.15 17696 1 0.02 -1 -1 29636 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 14.8 MiB 0.27 1007 53.2 MiB 0.07 0.00 3.42226 -106.623 -3.42226 3.42226 0.96 0.000232175 0.000189575 0.0111643 0.00933381 32 2210 20 6.65987e+06 393018 554710. 1919.41 2.29 0.0935818 0.0796152 22834 132086 -1 1982 19 1165 1939 130482 30839 0 0 130482 30839 1939 1349 0 0 7290 6179 0 0 12023 9161 0 0 1939 1512 0 0 53164 6359 0 0 54127 6279 0 0 1939 0 0 774 921 1020 7196 0 0 3.00411 3.00411 -116.365 -3.00411 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0171503 0.0155065 133 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.85 vpr 52.91 MiB -1 -1 0.17 17392 1 0.01 -1 -1 29756 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54184 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 14.3 MiB 0.05 789 52.9 MiB 0.08 0.00 2.66464 -82.7242 -2.66464 2.66464 1.02 0.000213604 0.000176622 0.0136416 0.0114485 28 1899 23 6.65987e+06 329628 500653. 1732.36 2.75 0.0854677 0.0741345 21970 115934 -1 1626 21 933 1682 126331 27680 0 0 126331 27680 1682 1182 0 0 6031 4810 0 0 8863 7077 0 0 1682 1303 0 0 54583 6497 0 0 53490 6811 0 0 1682 0 0 749 930 950 6951 0 0 2.66845 2.66845 -98.0292 -2.66845 0 0 612192. 2118.31 0.19 0.03 0.11 -1 -1 0.19 0.00868668 0.00773173 104 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.81 vpr 53.49 MiB -1 -1 0.18 17852 1 0.01 -1 -1 29848 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54776 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 15.3 MiB 0.34 1475 53.5 MiB 0.14 0.00 4.66752 -143.891 -4.66752 4.66752 0.79 0.000276006 0.000225265 0.025254 0.0209643 30 3232 28 6.65987e+06 316950 526063. 1820.29 3.29 0.150245 0.130763 22546 126617 -1 2760 22 1730 2523 160668 36520 0 0 160668 36520 2523 2093 0 0 8783 6922 0 0 11189 9340 0 0 2523 2242 0 0 66352 8291 0 0 69298 7632 0 0 2523 0 0 793 962 903 7347 0 0 4.61657 4.61657 -162.526 -4.61657 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.0216465 0.0194028 168 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 6.32 vpr 53.25 MiB -1 -1 0.16 17484 1 0.02 -1 -1 29756 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54528 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 14.7 MiB 0.31 993 53.2 MiB 0.12 0.00 3.48015 -111.627 -3.48015 3.48015 0.97 0.000226862 0.000184556 0.0207978 0.0171918 32 2303 22 6.65987e+06 405696 554710. 1919.41 2.79 0.0984349 0.0838241 22834 132086 -1 1974 21 1319 1853 129689 30372 0 0 129689 30372 1853 1400 0 0 6947 5846 0 0 10572 8288 0 0 1853 1537 0 0 53018 7026 0 0 55446 6275 0 0 1853 0 0 534 610 680 5491 0 0 3.42591 3.42591 -124.375 -3.42591 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0176117 0.0158674 130 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.93 vpr 52.56 MiB -1 -1 0.14 17080 1 0.01 -1 -1 29636 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53820 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 14.1 MiB 0.05 866 52.6 MiB 0.05 0.00 2.48032 -77.5068 -2.48032 2.48032 0.93 0.000166181 0.000134517 0.0083369 0.00694274 28 1896 21 6.65987e+06 291594 500653. 1732.36 0.89 0.0421813 0.0364083 21970 115934 -1 1664 20 913 1605 116557 26709 0 0 116557 26709 1605 1081 0 0 5788 4733 0 0 8891 6850 0 0 1605 1177 0 0 50821 5957 0 0 47847 6911 0 0 1605 0 0 692 982 922 6597 0 0 2.75365 2.75365 -96.6564 -2.75365 0 0 612192. 2118.31 0.20 0.03 0.09 -1 -1 0.20 0.0076504 0.00686206 100 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 7.07 vpr 53.24 MiB -1 -1 0.10 17364 1 0.02 -1 -1 29772 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 14.8 MiB 0.10 1095 53.2 MiB 0.10 0.00 3.84189 -101.264 -3.84189 3.84189 0.71 0.000242953 0.000197547 0.0155708 0.0128944 28 2766 27 6.65987e+06 431052 500653. 1732.36 4.30 0.154363 0.134115 21970 115934 -1 2309 23 1591 3004 244193 67376 0 0 244193 67376 3004 1932 0 0 10770 8529 0 0 16561 12904 0 0 3004 2106 0 0 103828 20951 0 0 107026 20954 0 0 3004 0 0 1413 2602 2837 17068 0 0 4.28185 4.28185 -132.369 -4.28185 0 0 612192. 2118.31 0.19 0.06 0.10 -1 -1 0.19 0.0120176 0.0106633 139 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.84 vpr 52.76 MiB -1 -1 0.14 16920 1 0.02 -1 -1 29652 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 14.3 MiB 0.10 691 52.8 MiB 0.05 0.00 2.66284 -81.2339 -2.66284 2.66284 0.64 0.000172397 0.000138632 0.00850407 0.00704921 28 1821 23 6.65987e+06 253560 500653. 1732.36 2.30 0.0727588 0.0626787 21970 115934 -1 1652 21 1087 1827 116472 29411 0 0 116472 29411 1827 1375 0 0 6567 5568 0 0 9930 7923 0 0 1827 1522 0 0 48071 6850 0 0 48250 6173 0 0 1827 0 0 740 750 834 6201 0 0 2.86165 2.86165 -105.593 -2.86165 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0136875 0.012293 104 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.97 vpr 52.83 MiB -1 -1 0.15 17628 1 0.01 -1 -1 29776 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54096 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 14.2 MiB 0.11 841 52.8 MiB 0.07 0.00 3.07989 -86.9107 -3.07989 3.07989 0.61 0.000112923 9.1525e-05 0.0103094 0.00849479 26 1966 17 6.65987e+06 418374 477104. 1650.88 0.60 0.0314055 0.0267497 21682 110474 -1 1741 21 989 1602 117407 26616 0 0 117407 26616 1602 1172 0 0 6104 4927 0 0 8980 7113 0 0 1602 1282 0 0 50973 5833 0 0 48146 6289 0 0 1602 0 0 613 756 717 6018 0 0 2.60605 2.60605 -100.041 -2.60605 0 0 585099. 2024.56 0.23 0.03 0.10 -1 -1 0.23 0.00965739 0.00865429 105 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 5.99 vpr 53.42 MiB -1 -1 0.15 17492 1 0.02 -1 -1 29840 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 14.7 MiB 0.30 1025 53.4 MiB 0.15 0.00 3.29375 -101.303 -3.29375 3.29375 0.86 0.000243909 0.000198406 0.0244711 0.0202952 30 2415 24 6.65987e+06 304272 526063. 1820.29 2.71 0.127211 0.110235 22546 126617 -1 2013 20 1239 1871 116186 27010 0 0 116186 27010 1871 1538 0 0 6280 5134 0 0 8271 6666 0 0 1871 1634 0 0 47834 6631 0 0 50059 5407 0 0 1871 0 0 632 670 570 5021 0 0 3.15297 3.15297 -110.627 -3.15297 0 0 666494. 2306.21 0.21 0.05 0.07 -1 -1 0.21 0.0171584 0.0153908 138 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 5.79 vpr 53.07 MiB -1 -1 0.17 17264 1 0.01 -1 -1 29828 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54348 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 14.6 MiB 0.19 1016 53.1 MiB 0.09 0.00 3.5135 -109.138 -3.5135 3.5135 0.97 0.000265238 0.00022017 0.0158564 0.0132268 30 2116 21 6.65987e+06 304272 526063. 1820.29 2.42 0.12734 0.111493 22546 126617 -1 1867 19 1077 1679 105248 23978 0 0 105248 23978 1679 1237 0 0 5765 4658 0 0 7352 6071 0 0 1679 1390 0 0 43912 5487 0 0 44861 5135 0 0 1679 0 0 602 855 570 5358 0 0 3.40491 3.40491 -122.621 -3.40491 0 0 666494. 2306.21 0.26 0.03 0.11 -1 -1 0.26 0.0105982 0.00957425 130 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 6.67 vpr 53.29 MiB -1 -1 0.13 17528 1 0.02 -1 -1 29684 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54568 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 14.8 MiB 0.24 1055 53.3 MiB 0.10 0.00 3.75584 -112.749 -3.75584 3.75584 0.96 0.000242645 0.000199676 0.0172117 0.0142773 28 2589 21 6.65987e+06 342306 500653. 1732.36 3.37 0.122303 0.105906 21970 115934 -1 2232 20 1209 2152 189773 40150 0 0 189773 40150 2152 1665 0 0 7954 6561 0 0 11642 9318 0 0 2152 1809 0 0 84848 9987 0 0 81025 10810 0 0 2152 0 0 943 1135 1213 8317 0 0 3.52611 3.52611 -127.581 -3.52611 0 0 612192. 2118.31 0.18 0.04 0.07 -1 -1 0.18 0.0106069 0.00949999 132 48 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 5.95 vpr 52.89 MiB -1 -1 0.16 17512 1 0.02 -1 -1 29652 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54164 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 14.3 MiB 0.25 983 52.9 MiB 0.05 0.00 3.5308 -105.115 -3.5308 3.5308 1.03 0.000195423 0.000159079 0.00883407 0.00747222 30 1987 20 6.65987e+06 202848 526063. 1820.29 2.35 0.0654487 0.0558656 22546 126617 -1 1689 23 791 1065 57553 14375 0 0 57553 14375 1065 855 0 0 3727 3011 0 0 4700 3955 0 0 1065 923 0 0 24436 2749 0 0 22560 2882 0 0 1065 0 0 274 206 253 2362 0 0 3.15571 3.15571 -112.339 -3.15571 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0150075 0.0134096 103 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 5.95 vpr 53.04 MiB -1 -1 0.16 17576 1 0.01 -1 -1 29836 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54312 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 14.5 MiB 0.24 936 53.0 MiB 0.05 0.00 3.09498 -102.254 -3.09498 3.09498 0.96 0.000205771 0.000166992 0.0100555 0.00841217 32 2214 22 6.65987e+06 240882 554710. 1919.41 2.53 0.0923368 0.0784103 22834 132086 -1 1912 22 1173 1725 120388 28827 0 0 120388 28827 1725 1432 0 0 6641 5611 0 0 9983 7881 0 0 1725 1483 0 0 49914 6303 0 0 50400 6117 0 0 1725 0 0 552 558 516 4455 0 0 3.04865 3.04865 -117.416 -3.04865 0 0 701300. 2426.64 0.31 0.06 0.12 -1 -1 0.31 0.0163178 0.0145388 111 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 6.77 vpr 53.17 MiB -1 -1 0.16 17648 1 0.02 -1 -1 29708 -1 -1 33 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54444 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 14.6 MiB 0.25 970 53.2 MiB 0.11 0.00 2.55652 -78.2693 -2.55652 2.55652 1.01 0.000234536 0.000192293 0.0180656 0.0149846 26 2308 20 6.65987e+06 418374 477104. 1650.88 3.24 0.11795 0.10166 21682 110474 -1 1972 21 1112 1927 134019 30314 0 0 134019 30314 1927 1311 0 0 7185 5905 0 0 10446 8250 0 0 1927 1459 0 0 58261 6499 0 0 54273 6890 0 0 1927 0 0 815 1138 1384 8658 0 0 2.66645 2.66645 -98.5902 -2.66645 0 0 585099. 2024.56 0.23 0.04 0.10 -1 -1 0.23 0.0104871 0.00929162 123 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 6.29 vpr 52.92 MiB -1 -1 0.17 17576 1 0.01 -1 -1 29708 -1 -1 35 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54192 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 14.5 MiB 0.15 773 52.9 MiB 0.09 0.00 3.16278 -78.7825 -3.16278 3.16278 1.01 0.000176092 0.000141908 0.0146496 0.0121435 28 2055 34 6.65987e+06 443730 500653. 1732.36 3.05 0.10636 0.0919614 21970 115934 -1 1697 24 1154 2205 144685 34629 0 0 144685 34629 2205 1374 0 0 8109 6650 0 0 12503 9761 0 0 2205 1515 0 0 57820 8037 0 0 61843 7292 0 0 2205 0 0 1051 1811 1760 11395 0 0 3.24679 3.24679 -98.5965 -3.24679 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00878196 0.0077713 115 20 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 6.17 vpr 52.79 MiB -1 -1 0.16 17604 1 0.01 -1 -1 29864 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54056 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 14.4 MiB 0.24 827 52.8 MiB 0.09 0.00 3.29355 -97.6112 -3.29355 3.29355 1.02 0.000222679 0.000182773 0.0183147 0.0151695 28 2040 19 6.65987e+06 215526 500653. 1732.36 2.62 0.102606 0.0882563 21970 115934 -1 1781 19 1004 1766 118717 27158 0 0 118717 27158 1766 1266 0 0 6298 5303 0 0 8973 7072 0 0 1766 1395 0 0 48167 6407 0 0 51747 5715 0 0 1766 0 0 762 875 707 6064 0 0 2.84971 2.84971 -107.399 -2.84971 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0176335 0.0160561 108 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.79 vpr 53.17 MiB -1 -1 0.16 17368 1 0.02 -1 -1 29688 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54448 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 14.6 MiB 0.23 993 53.2 MiB 0.07 0.00 2.94464 -103.892 -2.94464 2.94464 0.64 0.00012542 0.000101121 0.0116933 0.00958429 32 2440 18 6.65987e+06 253560 554710. 1919.41 0.61 0.0347394 0.0293539 22834 132086 -1 2068 20 1407 2050 173152 38478 0 0 173152 38478 2050 1696 0 0 7825 6417 0 0 12008 9374 0 0 2050 1781 0 0 74496 9984 0 0 74723 9226 0 0 2050 0 0 643 602 620 5201 0 0 2.85111 2.85111 -119.684 -2.85111 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0160299 0.0143615 120 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.35 vpr 53.03 MiB -1 -1 0.15 17300 1 0.02 -1 -1 29644 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54304 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 14.5 MiB 0.09 1036 53.0 MiB 0.12 0.00 3.27404 -99.2302 -3.27404 3.27404 0.95 0.000212763 0.000173915 0.0177711 0.0147013 32 2377 25 6.65987e+06 405696 554710. 1919.41 0.95 0.0578099 0.0494629 22834 132086 -1 2100 25 1532 2794 207033 45982 0 0 207033 45982 2794 2079 0 0 10616 8516 0 0 16649 12592 0 0 2794 2298 0 0 87751 10084 0 0 86429 10413 0 0 2794 0 0 1262 1683 1615 11142 0 0 3.37911 3.37911 -116.825 -3.37911 0 0 701300. 2426.64 0.29 0.10 0.12 -1 -1 0.29 0.0194033 0.0173817 127 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.57 vpr 53.49 MiB -1 -1 0.15 17364 1 0.02 -1 -1 29664 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 14.7 MiB 0.27 1119 53.5 MiB 0.06 0.00 3.98521 -126.961 -3.98521 3.98521 0.72 0.000121128 9.7489e-05 0.00857308 0.00709462 30 2528 20 6.65987e+06 278916 526063. 1820.29 2.68 0.0994355 0.0861864 22546 126617 -1 2056 20 1152 1741 101079 23848 0 0 101079 23848 1741 1386 0 0 6069 4809 0 0 7646 6374 0 0 1741 1438 0 0 46346 4270 0 0 37536 5571 0 0 1741 0 0 589 558 474 4594 0 0 3.74071 3.74071 -137.557 -3.74071 0 0 666494. 2306.21 0.29 0.05 0.11 -1 -1 0.29 0.0175577 0.0158729 144 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 6.50 vpr 53.21 MiB -1 -1 0.17 17668 1 0.02 -1 -1 29760 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54488 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 14.7 MiB 0.36 933 53.2 MiB 0.13 0.00 3.92821 -111.484 -3.92821 3.92821 1.02 0.000250146 0.000205675 0.0233211 0.0193826 30 2138 22 6.65987e+06 405696 526063. 1820.29 2.74 0.115345 0.0992664 22546 126617 -1 1632 21 1125 1967 89347 23507 0 0 89347 23507 1967 1221 0 0 6508 5244 0 0 8781 6960 0 0 1967 1309 0 0 33956 4564 0 0 36168 4209 0 0 1967 0 0 842 1078 915 7550 0 0 3.64083 3.64083 -121.487 -3.64083 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0201847 0.018151 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.91 vpr 53.43 MiB -1 -1 0.13 17528 1 0.01 -1 -1 29708 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 14.8 MiB 0.30 1113 53.4 MiB 0.07 0.00 3.30775 -109.49 -3.30775 3.30775 0.63 0.000140465 0.000114444 0.010029 0.00833654 28 2766 24 6.65987e+06 469086 500653. 1732.36 1.12 0.0694211 0.0606979 21970 115934 -1 2312 23 1461 2581 176251 41037 0 0 176251 41037 2581 1894 0 0 9450 7789 0 0 14019 10878 0 0 2581 2118 0 0 76541 8918 0 0 71079 9440 0 0 2581 0 0 1120 1472 1416 10065 0 0 3.44291 3.44291 -129.418 -3.44291 0 0 612192. 2118.31 0.25 0.04 0.11 -1 -1 0.25 0.0118094 0.0104886 140 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.39 vpr 52.70 MiB -1 -1 0.14 17236 1 0.02 -1 -1 29708 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53960 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 14.2 MiB 0.18 879 52.7 MiB 0.09 0.00 2.76049 -88.2512 -2.76049 2.76049 0.99 0.000192208 0.000156464 0.0165533 0.0137283 30 1821 22 6.65987e+06 240882 526063. 1820.29 2.22 0.0917208 0.0793105 22546 126617 -1 1562 18 788 1348 71287 16728 0 0 71287 16728 1348 947 0 0 4359 3455 0 0 5898 4577 0 0 1348 1152 0 0 29574 3293 0 0 28760 3304 0 0 1348 0 0 560 534 497 4317 0 0 2.46385 2.46385 -96.0168 -2.46385 0 0 666494. 2306.21 0.31 0.04 0.12 -1 -1 0.31 0.0124661 0.0112344 105 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 6.32 vpr 53.22 MiB -1 -1 0.17 17488 1 0.02 -1 -1 29780 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54500 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 14.8 MiB 0.25 982 53.2 MiB 0.11 0.00 3.80967 -110.655 -3.80967 3.80967 1.01 0.000247552 0.000202638 0.0212586 0.0177527 26 2651 25 6.65987e+06 266238 477104. 1650.88 2.92 0.130092 0.112695 21682 110474 -1 2136 20 1620 2473 201203 44488 0 0 201203 44488 2473 2041 0 0 9152 7767 0 0 13837 10895 0 0 2473 2117 0 0 90143 10347 0 0 83125 11321 0 0 2473 0 0 853 807 895 7242 0 0 3.76163 3.76163 -137.588 -3.76163 0 0 585099. 2024.56 0.20 0.04 0.09 -1 -1 0.20 0.0104165 0.00935009 137 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 7.09 vpr 53.48 MiB -1 -1 0.17 17480 1 0.01 -1 -1 29708 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54760 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 14.8 MiB 0.29 1220 53.5 MiB 0.06 0.00 3.6954 -114.819 -3.6954 3.6954 0.59 0.000122535 9.8914e-05 0.00897642 0.00745032 28 3006 29 6.65987e+06 304272 500653. 1732.36 4.28 0.0990488 0.0861424 21970 115934 -1 2441 20 1552 2478 196893 43123 0 0 196893 43123 2478 1967 0 0 9001 7335 0 0 13627 10822 0 0 2478 2112 0 0 83768 10892 0 0 85541 9995 0 0 2478 0 0 926 1482 1526 10070 0 0 4.07331 4.07331 -138.928 -4.07331 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0175917 0.0157894 138 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 6.32 vpr 53.25 MiB -1 -1 0.14 17532 1 0.01 -1 -1 29828 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54524 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 14.8 MiB 0.44 1090 53.2 MiB 0.13 0.00 4.1579 -123.706 -4.1579 4.1579 1.03 0.00023054 0.000188209 0.0223261 0.0184847 28 2628 21 6.65987e+06 354984 500653. 1732.36 2.48 0.131158 0.113703 21970 115934 -1 2293 20 1542 2423 160724 37866 0 0 160724 37866 2423 1855 0 0 8744 7122 0 0 12899 10228 0 0 2423 1960 0 0 68485 8374 0 0 65750 8327 0 0 2423 0 0 881 988 1049 7959 0 0 4.32503 4.32503 -145.024 -4.32503 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0193408 0.0174847 146 43 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.64 vpr 53.44 MiB -1 -1 0.15 17368 1 0.02 -1 -1 29744 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54720 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 14.8 MiB 0.78 987 53.4 MiB 0.08 0.00 3.25995 -100.389 -3.25995 3.25995 0.59 0.000128065 0.00010234 0.0127067 0.0104693 32 2262 21 6.65987e+06 393018 554710. 1919.41 2.32 0.0918934 0.0773349 22834 132086 -1 1988 21 1346 2251 157085 38008 0 0 157085 38008 2251 1640 0 0 8891 7578 0 0 14261 11223 0 0 2251 1931 0 0 64849 7937 0 0 64582 7699 0 0 2251 0 0 905 967 948 7569 0 0 2.99311 2.99311 -112.884 -2.99311 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0189659 0.0169951 133 78 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 6.37 vpr 53.39 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29720 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54672 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 14.8 MiB 0.24 1027 53.4 MiB 0.12 0.00 3.76955 -112.412 -3.76955 3.76955 1.02 0.000124518 9.9516e-05 0.0228869 0.0189542 32 2788 30 6.65987e+06 253560 554710. 1919.41 2.68 0.114736 0.0986761 22834 132086 -1 2301 21 1796 3175 245816 55288 0 0 245816 55288 3175 2559 0 0 11828 10044 0 0 18735 14181 0 0 3175 2702 0 0 104369 13138 0 0 104534 12664 0 0 3175 0 0 1379 1655 1492 11033 0 0 3.71631 3.71631 -134.272 -3.71631 0 0 701300. 2426.64 0.30 0.08 0.11 -1 -1 0.30 0.0197044 0.017797 133 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 6.98 vpr 53.53 MiB -1 -1 0.17 17288 1 0.01 -1 -1 29724 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 14.9 MiB 0.44 901 53.5 MiB 0.08 0.00 3.57869 -100.167 -3.57869 3.57869 1.01 0.00025225 0.000204125 0.0131033 0.0109822 28 2312 21 6.65987e+06 367662 500653. 1732.36 3.17 0.139806 0.122965 21970 115934 -1 2026 19 1321 2231 150541 35367 0 0 150541 35367 2231 1651 0 0 7905 6384 0 0 11364 8893 0 0 2231 1955 0 0 64460 7904 0 0 62350 8580 0 0 2231 0 0 910 1036 1052 7551 0 0 2.98265 2.98265 -111.215 -2.98265 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.0185893 0.0167392 131 79 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.67 vpr 52.67 MiB -1 -1 0.12 16924 1 0.01 -1 -1 29708 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53932 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 14.2 MiB 0.10 735 52.7 MiB 0.05 0.00 2.87075 -90.6997 -2.87075 2.87075 0.96 0.000103133 8.329e-05 0.00861767 0.00717174 28 1794 22 6.65987e+06 190170 500653. 1732.36 0.58 0.0289472 0.0247001 21970 115934 -1 1717 20 962 1430 110945 26299 0 0 110945 26299 1430 1215 0 0 5497 4620 0 0 7897 6534 0 0 1430 1264 0 0 49087 6091 0 0 45604 6575 0 0 1430 0 0 468 558 525 4029 0 0 2.58325 2.58325 -104.553 -2.58325 0 0 612192. 2118.31 0.23 0.04 0.11 -1 -1 0.23 0.0113156 0.0100603 96 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 6.34 vpr 53.34 MiB -1 -1 0.09 17676 1 0.01 -1 -1 29744 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54624 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 14.9 MiB 0.19 1060 53.3 MiB 0.09 0.00 3.45695 -112.304 -3.45695 3.45695 0.97 0.000247676 0.000199896 0.013721 0.0113379 32 2356 23 6.65987e+06 380340 554710. 1919.41 3.03 0.12256 0.104677 22834 132086 -1 2052 19 1295 2214 165139 38069 0 0 165139 38069 2214 1649 0 0 8503 7161 0 0 14122 10789 0 0 2214 1878 0 0 74770 7545 0 0 63316 9047 0 0 2214 0 0 919 1063 861 7635 0 0 3.50931 3.50931 -124.737 -3.50931 0 0 701300. 2426.64 0.26 0.04 0.12 -1 -1 0.26 0.0103548 0.00929561 130 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 6.22 vpr 53.25 MiB -1 -1 0.16 17652 1 0.01 -1 -1 29788 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54532 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 14.7 MiB 0.32 999 53.3 MiB 0.11 0.00 3.86981 -120.613 -3.86981 3.86981 1.02 0.000278177 0.000227669 0.0188734 0.0158138 30 2354 22 6.65987e+06 253560 526063. 1820.29 2.53 0.109913 0.0950042 22546 126617 -1 2034 21 1518 2473 127088 31017 0 0 127088 31017 2473 1721 0 0 8252 6486 0 0 11016 8807 0 0 2473 1883 0 0 50151 6143 0 0 52723 5977 0 0 2473 0 0 955 740 948 7472 0 0 3.34017 3.34017 -131.265 -3.34017 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0189427 0.0169803 147 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.81 vpr 52.90 MiB -1 -1 0.15 17084 1 0.01 -1 -1 29832 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54168 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 14.2 MiB 0.25 969 52.9 MiB 0.04 0.00 3.29515 -98.7591 -3.29515 3.29515 0.92 0.000116878 9.6039e-05 0.00755403 0.00627861 30 1924 17 6.65987e+06 240882 526063. 1820.29 1.49 0.0566154 0.0488462 22546 126617 -1 1663 19 775 1027 62164 14746 0 0 62164 14746 1027 865 0 0 3603 2864 0 0 4657 3905 0 0 1027 901 0 0 26371 3072 0 0 25479 3139 0 0 1027 0 0 252 144 223 2170 0 0 2.80731 2.80731 -105.751 -2.80731 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0136899 0.0123341 111 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 6.14 vpr 52.80 MiB -1 -1 0.13 17036 1 0.02 -1 -1 29668 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54068 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 14.3 MiB 0.11 834 52.8 MiB 0.07 0.00 2.99601 -91.814 -2.99601 2.99601 1.05 0.000169786 0.000136978 0.01056 0.00873001 32 1876 20 6.65987e+06 266238 554710. 1919.41 2.88 0.0958683 0.0820428 22834 132086 -1 1769 20 1069 1725 136220 31724 0 0 136220 31724 1725 1348 0 0 6764 5785 0 0 11442 8907 0 0 1725 1424 0 0 57865 7246 0 0 56699 7014 0 0 1725 0 0 656 698 735 5550 0 0 2.85171 2.85171 -105.401 -2.85171 0 0 701300. 2426.64 0.31 0.05 0.12 -1 -1 0.31 0.0135764 0.012204 106 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 7.90 vpr 53.46 MiB -1 -1 0.16 17452 1 0.01 -1 -1 29692 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1127 53.5 MiB 0.11 0.00 4.06447 -131.03 -4.06447 4.06447 0.98 0.000255173 0.000210623 0.0179258 0.0149424 26 3212 37 6.65987e+06 316950 477104. 1650.88 4.67 0.143846 0.125827 21682 110474 -1 2603 23 1799 2356 214913 46948 0 0 214913 46948 2356 2116 0 0 8931 7416 0 0 13573 10807 0 0 2356 2252 0 0 97964 11437 0 0 89733 12920 0 0 2356 0 0 557 587 598 5234 0 0 4.30203 4.30203 -156.955 -4.30203 0 0 585099. 2024.56 0.19 0.05 0.10 -1 -1 0.19 0.0128827 0.0115619 144 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 6.59 vpr 53.41 MiB -1 -1 0.15 17608 1 0.01 -1 -1 29756 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 14.7 MiB 0.32 1211 53.4 MiB 0.07 0.00 4.05969 -121.436 -4.05969 4.05969 0.60 0.00012447 9.9275e-05 0.0103324 0.00846571 26 3130 46 6.65987e+06 354984 477104. 1650.88 3.92 0.096192 0.0832422 21682 110474 -1 2638 21 1484 2417 196312 43977 0 0 196312 43977 2417 1900 0 0 9165 7529 0 0 13950 11141 0 0 2417 2056 0 0 86701 10297 0 0 81662 11054 0 0 2417 0 0 933 1125 1219 8404 0 0 4.41637 4.41637 -150.378 -4.41637 0 0 585099. 2024.56 0.24 0.07 0.09 -1 -1 0.24 0.0189583 0.0171029 151 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 8.92 vpr 53.41 MiB -1 -1 0.16 17348 1 0.02 -1 -1 29720 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 14.7 MiB 0.07 1215 53.4 MiB 0.12 0.00 4.21996 -116.591 -4.21996 4.21996 0.98 0.000288983 0.000233579 0.0179129 0.0147396 24 3700 49 6.65987e+06 456408 448715. 1552.65 5.59 0.15926 0.138874 21394 104001 -1 2826 29 2158 3944 513438 149743 0 0 513438 149743 3944 3027 0 0 15353 12553 0 0 25625 19044 0 0 3944 3334 0 0 235801 57399 0 0 228771 54386 0 0 3944 0 0 1786 2945 2757 17524 0 0 4.68157 4.68157 -151.638 -4.68157 0 0 554710. 1919.41 0.23 0.10 0.08 -1 -1 0.23 0.0143845 0.0128519 153 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.80 vpr 52.95 MiB -1 -1 0.18 17692 1 0.01 -1 -1 29752 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54216 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 14.4 MiB 0.25 851 52.9 MiB 0.05 0.00 2.72584 -83.5123 -2.72584 2.72584 0.74 0.000112321 9.0488e-05 0.00799976 0.00656448 26 2022 20 6.65987e+06 393018 477104. 1650.88 1.79 0.0793207 0.0684028 21682 110474 -1 1820 23 1378 2341 164779 39007 0 0 164779 39007 2341 1647 0 0 8774 7412 0 0 13977 10817 0 0 2341 1779 0 0 71458 8175 0 0 65888 9177 0 0 2341 0 0 963 1139 1099 8206 0 0 2.78691 2.78691 -100.149 -2.78691 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0174719 0.0155116 120 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.59 vpr 52.76 MiB -1 -1 0.15 17308 1 0.01 -1 -1 29808 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 14.3 MiB 0.05 701 52.8 MiB 0.06 0.00 2.7331 -79.0895 -2.7331 2.7331 0.85 0.000162781 0.000128798 0.0116133 0.00948429 32 1545 23 6.65987e+06 266238 554710. 1919.41 1.82 0.0567455 0.0475178 22834 132086 -1 1428 21 1024 1550 110556 26630 0 0 110556 26630 1550 1239 0 0 6157 5411 0 0 9598 7527 0 0 1550 1349 0 0 46911 5407 0 0 44790 5697 0 0 1550 0 0 526 542 641 4601 0 0 2.93917 2.93917 -94.6025 -2.93917 0 0 701300. 2426.64 0.22 0.05 0.07 -1 -1 0.22 0.0121337 0.0107971 97 26 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.85 vpr 53.48 MiB -1 -1 0.17 17608 1 0.01 -1 -1 29832 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54760 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 15.3 MiB 0.20 1269 53.5 MiB 0.09 0.00 3.17598 -108.18 -3.17598 3.17598 1.01 0.000269672 0.000218203 0.0154326 0.0127937 32 3655 25 6.65987e+06 329628 554710. 1919.41 1.19 0.0841558 0.0734837 22834 132086 -1 2972 23 2248 3731 308500 67309 0 0 308500 67309 3731 2908 0 0 14281 12227 0 0 22247 17200 0 0 3731 3067 0 0 137321 15343 0 0 127189 16564 0 0 3731 0 0 1483 1820 1512 12162 0 0 3.70259 3.70259 -135.42 -3.70259 0 0 701300. 2426.64 0.30 0.11 0.12 -1 -1 0.30 0.0271249 0.0244378 170 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 7.74 vpr 53.43 MiB -1 -1 0.18 17420 1 0.01 -1 -1 29824 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 14.8 MiB 1.21 991 53.4 MiB 0.09 0.00 4.2111 -122.698 -4.2111 4.2111 1.01 0.000235834 0.000194223 0.0182822 0.0152327 28 2631 26 6.65987e+06 266238 500653. 1732.36 3.33 0.116915 0.101942 21970 115934 -1 2195 20 1632 2603 199801 44746 0 0 199801 44746 2603 2112 0 0 9630 7884 0 0 14082 11438 0 0 2603 2181 0 0 89280 10186 0 0 81603 10945 0 0 2603 0 0 971 1203 1268 8789 0 0 4.27697 4.27697 -144.956 -4.27697 0 0 612192. 2118.31 0.24 0.04 0.08 -1 -1 0.24 0.0105596 0.00945602 150 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.21 vpr 53.11 MiB -1 -1 0.16 17500 1 0.01 -1 -1 29676 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 14.5 MiB 0.71 844 53.1 MiB 0.06 0.00 3.4165 -105.635 -3.4165 3.4165 0.59 0.0002119 0.000171828 0.0101363 0.00833895 28 2143 20 6.65987e+06 228204 500653. 1732.36 2.07 0.0738153 0.0629766 21970 115934 -1 1758 18 987 1453 108394 26656 0 0 108394 26656 1453 1187 0 0 5460 4485 0 0 8103 6547 0 0 1453 1252 0 0 46832 6807 0 0 45093 6378 0 0 1453 0 0 466 404 494 3853 0 0 3.38936 3.38936 -122.855 -3.38936 0 0 612192. 2118.31 0.29 0.05 0.10 -1 -1 0.29 0.0159881 0.0143583 126 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 5.01 vpr 53.19 MiB -1 -1 0.16 17372 1 0.02 -1 -1 29712 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 14.6 MiB 0.08 1076 53.2 MiB 0.09 0.00 3.7622 -103.397 -3.7622 3.7622 0.81 0.000228472 0.000187924 0.0148797 0.0122422 30 2070 22 6.65987e+06 380340 526063. 1820.29 2.21 0.0743744 0.0627029 22546 126617 -1 1833 16 789 1255 67907 15893 0 0 67907 15893 1255 832 0 0 4230 3257 0 0 5344 4350 0 0 1255 936 0 0 26672 3571 0 0 29151 2947 0 0 1255 0 0 466 520 378 3831 0 0 3.24665 3.24665 -112.873 -3.24665 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0130331 0.0118086 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 6.44 vpr 53.39 MiB -1 -1 0.16 17584 1 0.01 -1 -1 29716 -1 -1 33 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 14.8 MiB 0.16 1100 53.4 MiB 0.10 0.00 3.83975 -111.213 -3.83975 3.83975 0.94 0.000256494 0.00021116 0.0150431 0.0126053 26 2876 25 6.65987e+06 418374 477104. 1650.88 3.17 0.11166 0.0967135 21682 110474 -1 2320 23 1358 2398 164071 38027 0 0 164071 38027 2398 1719 0 0 8888 6989 0 0 12823 10239 0 0 2398 1901 0 0 71415 8279 0 0 66149 8900 0 0 2398 0 0 1040 1688 1738 10732 0 0 3.61825 3.61825 -121.781 -3.61825 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0193944 0.0173529 144 46 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 5.83 vpr 53.08 MiB -1 -1 0.14 17528 1 0.02 -1 -1 29764 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54352 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 14.5 MiB 0.16 1003 53.1 MiB 0.09 0.00 2.8933 -92.9901 -2.8933 2.8933 1.01 0.000238674 0.000195767 0.0152192 0.0127454 32 2350 27 6.65987e+06 393018 554710. 1919.41 2.55 0.0933597 0.0793518 22834 132086 -1 2119 19 1278 2117 156262 36355 0 0 156262 36355 2117 1554 0 0 8125 6933 0 0 12983 10067 0 0 2117 1681 0 0 64930 8261 0 0 65990 7859 0 0 2117 0 0 839 913 992 7293 0 0 2.77171 2.77171 -103.488 -2.77171 0 0 701300. 2426.64 0.24 0.05 0.08 -1 -1 0.24 0.0135583 0.0120006 124 46 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 7.49 vpr 53.51 MiB -1 -1 0.16 17464 1 0.01 -1 -1 29740 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 14.8 MiB 0.18 1224 53.5 MiB 0.11 0.00 3.7303 -122.563 -3.7303 3.7303 0.76 0.000241242 0.000199939 0.0187619 0.0156525 28 3191 36 6.65987e+06 304272 500653. 1732.36 4.37 0.154727 0.135669 21970 115934 -1 2574 21 1994 2940 203971 47129 0 0 203971 47129 2940 2366 0 0 10502 8816 0 0 15704 12404 0 0 2940 2504 0 0 87925 10394 0 0 83960 10645 0 0 2940 0 0 946 939 974 7691 0 0 4.14451 4.14451 -151.6 -4.14451 0 0 612192. 2118.31 0.29 0.09 0.11 -1 -1 0.29 0.0206313 0.0186765 147 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.80 vpr 53.34 MiB -1 -1 0.17 17588 1 0.02 -1 -1 29672 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54616 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 14.7 MiB 0.44 1090 53.3 MiB 0.09 0.00 3.63475 -114.492 -3.63475 3.63475 0.67 0.000137535 0.00011034 0.0140551 0.0115455 28 2461 21 6.65987e+06 431052 500653. 1732.36 0.64 0.0405826 0.0343709 21970 115934 -1 2217 17 1149 1839 120109 27839 0 0 120109 27839 1839 1357 0 0 6682 5403 0 0 9294 7554 0 0 1839 1459 0 0 49117 6357 0 0 51338 5709 0 0 1839 0 0 690 752 820 5963 0 0 3.17811 3.17811 -123.539 -3.17811 0 0 612192. 2118.31 0.27 0.05 0.10 -1 -1 0.27 0.016206 0.0146112 143 59 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 5.72 vpr 52.56 MiB -1 -1 0.10 17108 1 0.02 -1 -1 29772 -1 -1 17 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53820 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 14.1 MiB 0.16 522 52.6 MiB 0.08 0.00 2.88681 -82.7562 -2.88681 2.88681 1.03 0.00018713 0.000150394 0.0164195 0.013443 32 1387 26 6.65987e+06 215526 554710. 1919.41 2.29 0.0668649 0.0561222 22834 132086 -1 1153 21 933 1325 96576 24501 0 0 96576 24501 1325 1041 0 0 5083 4423 0 0 9097 7145 0 0 1325 1156 0 0 38457 5488 0 0 41289 5248 0 0 1325 0 0 392 453 386 3420 0 0 3.01517 3.01517 -95.0243 -3.01517 0 0 701300. 2426.64 0.29 0.05 0.11 -1 -1 0.29 0.0154741 0.0138617 92 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 6.15 vpr 53.02 MiB -1 -1 0.15 17360 1 0.02 -1 -1 29624 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 14.5 MiB 0.29 1023 53.0 MiB 0.10 0.00 3.1971 -103.501 -3.1971 3.1971 1.00 0.000213493 0.000172186 0.0180033 0.0148943 28 2216 20 6.65987e+06 253560 500653. 1732.36 2.58 0.0868101 0.0734658 21970 115934 -1 1926 20 1283 1693 122277 28040 0 0 122277 28040 1693 1435 0 0 6171 5124 0 0 8678 7052 0 0 1693 1510 0 0 52601 6291 0 0 51441 6628 0 0 1693 0 0 410 305 434 3662 0 0 3.13177 3.13177 -118.29 -3.13177 0 0 612192. 2118.31 0.26 0.05 0.09 -1 -1 0.26 0.0143574 0.012829 116 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 6.83 vpr 53.11 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29780 -1 -1 37 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54384 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 14.5 MiB 0.10 994 53.1 MiB 0.10 0.00 3.56815 -98.3274 -3.56815 3.56815 0.84 0.000235626 0.000192208 0.0150063 0.0125261 26 2426 36 6.65987e+06 469086 477104. 1650.88 3.66 0.140043 0.121658 21682 110474 -1 1961 19 1272 2321 150025 37427 0 0 150025 37427 2321 1506 0 0 8992 7400 0 0 13445 10683 0 0 2321 1655 0 0 61542 8244 0 0 61404 7939 0 0 2321 0 0 1049 1360 1540 9984 0 0 3.70565 3.70565 -123.482 -3.70565 0 0 585099. 2024.56 0.28 0.06 0.10 -1 -1 0.28 0.0176508 0.0159791 129 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 6.84 vpr 52.88 MiB -1 -1 0.16 17528 1 0.01 -1 -1 29752 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54152 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 14.2 MiB 0.25 766 52.9 MiB 0.06 0.00 3.42635 -91.4949 -3.42635 3.42635 1.02 0.000196463 0.000161141 0.00900391 0.00754567 26 2169 24 6.65987e+06 266238 477104. 1650.88 3.50 0.10304 0.0899553 21682 110474 -1 1777 22 1158 1483 106155 26400 0 0 106155 26400 1483 1344 0 0 5876 4884 0 0 8814 7115 0 0 1483 1378 0 0 44199 5847 0 0 44300 5832 0 0 1483 0 0 325 351 336 3181 0 0 3.16871 3.16871 -105.502 -3.16871 0 0 585099. 2024.56 0.27 0.05 0.10 -1 -1 0.27 0.0183169 0.0167598 110 25 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.93 vpr 52.74 MiB -1 -1 0.10 17396 1 0.01 -1 -1 29664 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54004 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 14.1 MiB 0.15 814 52.7 MiB 0.06 0.00 2.90269 -93.5111 -2.90269 2.90269 0.60 0.000101587 8.1371e-05 0.0115725 0.00950081 30 1839 22 6.65987e+06 202848 526063. 1820.29 0.56 0.0324148 0.0273868 22546 126617 -1 1605 23 1118 1989 111092 25761 0 0 111092 25761 1989 1356 0 0 6547 5151 0 0 8612 6828 0 0 1989 1578 0 0 47006 5166 0 0 44949 5682 0 0 1989 0 0 871 1051 939 7012 0 0 2.61131 2.61131 -101.243 -2.61131 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.01443 0.0128559 109 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.97 vpr 53.44 MiB -1 -1 0.16 17364 1 0.02 -1 -1 29748 -1 -1 35 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54720 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 14.7 MiB 0.19 933 53.4 MiB 0.13 0.00 3.14515 -96.7165 -3.14515 3.14515 0.60 0.000229818 0.000184781 0.02101 0.017193 30 1942 22 6.65987e+06 443730 526063. 1820.29 2.29 0.100232 0.0842254 22546 126617 -1 1802 17 995 1574 81363 19677 0 0 81363 19677 1574 1040 0 0 5268 4226 0 0 6713 5457 0 0 1574 1127 0 0 32394 4123 0 0 33840 3704 0 0 1574 0 0 579 679 740 5446 0 0 2.79096 2.79096 -107.779 -2.79096 0 0 666494. 2306.21 0.28 0.04 0.11 -1 -1 0.28 0.0160149 0.0144566 135 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 5.94 vpr 52.88 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29708 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54144 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 14.3 MiB 0.20 826 52.9 MiB 0.06 0.00 3.0359 -96.4877 -3.0359 3.0359 1.01 0.000206976 0.000167006 0.0102494 0.00849455 26 2315 29 6.65987e+06 240882 477104. 1650.88 2.71 0.078397 0.0675119 21682 110474 -1 1963 18 1158 1657 144601 34515 0 0 144601 34515 1657 1379 0 0 6511 5523 0 0 9586 7802 0 0 1657 1546 0 0 61438 9376 0 0 63752 8889 0 0 1657 0 0 499 509 551 4214 0 0 3.22197 3.22197 -116.23 -3.22197 0 0 585099. 2024.56 0.18 0.04 0.06 -1 -1 0.18 0.00865961 0.00778101 108 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.78 vpr 53.07 MiB -1 -1 0.14 17496 1 0.01 -1 -1 29744 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54340 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 14.7 MiB 0.33 1014 53.1 MiB 0.11 0.00 2.82075 -93.8051 -2.82075 2.82075 1.00 0.000261535 0.000217569 0.0179449 0.0148842 26 2495 26 6.65987e+06 393018 477104. 1650.88 4.15 0.11377 0.0981069 21682 110474 -1 2163 23 1306 2279 193061 41448 0 0 193061 41448 2279 1598 0 0 8701 7197 0 0 13246 10485 0 0 2279 1758 0 0 84860 9874 0 0 81696 10536 0 0 2279 0 0 973 1411 1665 10344 0 0 2.67651 2.67651 -108.672 -2.67651 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0200265 0.0179221 126 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.37 vpr 53.29 MiB -1 -1 0.11 17744 1 0.01 -1 -1 29948 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54564 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 14.7 MiB 1.04 943 53.3 MiB 0.13 0.00 3.50555 -111.405 -3.50555 3.50555 1.01 0.000250214 0.00019978 0.0223357 0.0183816 32 2184 20 6.65987e+06 405696 554710. 1919.41 0.96 0.0690306 0.058776 22834 132086 -1 1991 23 1464 1986 154136 36207 0 0 154136 36207 1986 1629 0 0 7656 6521 0 0 12753 9888 0 0 1986 1720 0 0 64833 8492 0 0 64922 7957 0 0 1986 0 0 522 551 561 5026 0 0 3.29183 3.29183 -129.054 -3.29183 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0193134 0.0171356 138 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 5.95 vpr 52.91 MiB -1 -1 0.15 17540 1 0.01 -1 -1 29832 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54180 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 14.3 MiB 0.29 759 52.9 MiB 0.07 0.00 2.54264 -82.2128 -2.54264 2.54264 1.01 0.000233164 0.000183485 0.0119754 0.00977991 28 1974 22 6.65987e+06 215526 500653. 1732.36 2.63 0.0896083 0.0771747 21970 115934 -1 1684 20 817 1286 96576 22495 0 0 96576 22495 1286 1018 0 0 4606 3821 0 0 6786 5339 0 0 1286 1039 0 0 41854 5529 0 0 40758 5749 0 0 1286 0 0 469 414 409 3606 0 0 2.73671 2.73671 -105.81 -2.73671 0 0 612192. 2118.31 0.19 0.03 0.10 -1 -1 0.19 0.00857665 0.0076478 104 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.15 vpr 53.02 MiB -1 -1 0.15 17500 1 0.02 -1 -1 29800 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 14.5 MiB 0.17 965 53.0 MiB 0.11 0.00 3.35195 -108.382 -3.35195 3.35195 0.94 0.000190539 0.0001535 0.0185864 0.0152878 32 2288 22 6.65987e+06 240882 554710. 1919.41 0.90 0.054555 0.0461099 22834 132086 -1 1982 22 1303 1919 157599 35134 0 0 157599 35134 1919 1649 0 0 7478 6415 0 0 11778 9270 0 0 1919 1713 0 0 70779 7552 0 0 63726 8535 0 0 1919 0 0 616 573 477 4817 0 0 3.02531 3.02531 -117.799 -3.02531 0 0 701300. 2426.64 0.21 0.04 0.12 -1 -1 0.21 0.00874694 0.00780184 115 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 6.28 vpr 53.24 MiB -1 -1 0.14 17584 1 0.01 -1 -1 29792 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 14.7 MiB 0.13 897 53.2 MiB 0.03 0.00 3.7011 -110.351 -3.7011 3.7011 0.59 0.000117407 9.4585e-05 0.00568966 0.00476206 28 2758 48 6.65987e+06 278916 500653. 1732.36 3.41 0.0890571 0.0761967 21970 115934 -1 2148 24 1623 2320 170606 42155 0 0 170606 42155 2320 1889 0 0 8694 7172 0 0 12374 10136 0 0 2320 2009 0 0 72565 9710 0 0 72333 11239 0 0 2320 0 0 697 762 751 5996 0 0 4.16751 4.16751 -134.655 -4.16751 0 0 612192. 2118.31 0.27 0.07 0.10 -1 -1 0.27 0.0199985 0.0180266 130 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 7.34 vpr 53.09 MiB -1 -1 0.17 17500 1 0.02 -1 -1 29732 -1 -1 28 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 14.5 MiB 0.52 805 53.1 MiB 0.05 0.00 3.59335 -92.7366 -3.59335 3.59335 0.64 0.000124997 0.000101308 0.00787912 0.00661351 26 2741 44 6.65987e+06 354984 477104. 1650.88 4.28 0.113097 0.0988304 21682 110474 -1 1801 22 1037 1677 139387 34990 0 0 139387 34990 1677 1334 0 0 6307 5140 0 0 9429 7492 0 0 1677 1390 0 0 59370 9550 0 0 60927 10084 0 0 1677 0 0 640 911 847 6431 0 0 3.29871 3.29871 -109.577 -3.29871 0 0 585099. 2024.56 0.24 0.06 0.06 -1 -1 0.24 0.0168904 0.0148824 121 49 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 6.81 vpr 53.38 MiB -1 -1 0.17 17744 1 0.01 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 15.1 MiB 0.31 1189 53.4 MiB 0.09 0.00 4.06506 -132.8 -4.06506 4.06506 0.98 0.000262061 0.000215279 0.0148206 0.0123739 32 2820 25 6.65987e+06 291594 554710. 1919.41 3.16 0.126222 0.108781 22834 132086 -1 2378 22 1988 2929 208830 48342 0 0 208830 48342 2929 2233 0 0 11158 9579 0 0 17614 13614 0 0 2929 2441 0 0 87116 10169 0 0 87084 10306 0 0 2929 0 0 941 1092 988 8494 0 0 4.15071 4.15071 -152.032 -4.15071 0 0 701300. 2426.64 0.30 0.07 0.11 -1 -1 0.30 0.0199174 0.0178635 153 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.13 vpr 52.68 MiB -1 -1 0.15 17012 1 0.02 -1 -1 29560 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53948 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 14.0 MiB 0.10 601 52.7 MiB 0.08 0.00 2.79204 -75.5102 -2.79204 2.79204 0.95 0.000160604 0.000129832 0.0149157 0.0122025 28 1769 25 6.65987e+06 228204 500653. 1732.36 0.90 0.0495096 0.0423716 21970 115934 -1 1444 26 858 1400 151542 58713 0 0 151542 58713 1400 1149 0 0 5154 4201 0 0 8498 6495 0 0 1400 1200 0 0 66412 22679 0 0 68678 22989 0 0 1400 0 0 542 614 503 4329 0 0 2.70676 2.70676 -94.2005 -2.70676 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.01496 0.0133593 96 -1 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 6.72 vpr 53.45 MiB -1 -1 0.16 17780 1 0.02 -1 -1 29912 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54732 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 14.8 MiB 0.36 1037 53.4 MiB 0.12 0.00 3.2391 -111.852 -3.2391 3.2391 0.98 0.000267227 0.000218875 0.0211017 0.0175164 32 2424 24 6.65987e+06 418374 554710. 1919.41 3.08 0.145328 0.124092 22834 132086 -1 2111 24 1786 2515 196609 44885 0 0 196609 44885 2515 2132 0 0 9827 8245 0 0 15448 12073 0 0 2515 2245 0 0 83710 10412 0 0 82594 9778 0 0 2515 0 0 729 754 753 6641 0 0 3.56537 3.56537 -133.61 -3.56537 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0205574 0.018262 144 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.12 vpr 52.98 MiB -1 -1 0.17 17460 1 0.02 -1 -1 29724 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54252 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 14.4 MiB 0.25 897 53.0 MiB 0.08 0.00 2.8021 -103.521 -2.8021 2.8021 0.72 0.000248529 0.000196916 0.0165261 0.0134185 32 1890 22 6.65987e+06 202848 554710. 1919.41 0.91 0.0588092 0.0498339 22834 132086 -1 1748 21 1402 2033 169263 37685 0 0 169263 37685 2033 1817 0 0 7696 6591 0 0 12540 9320 0 0 2033 1898 0 0 75000 8789 0 0 69961 9270 0 0 2033 0 0 631 693 623 5410 0 0 2.84877 2.84877 -119.989 -2.84877 0 0 701300. 2426.64 0.28 0.07 0.11 -1 -1 0.28 0.0182657 0.0163141 115 93 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.46 vpr 53.18 MiB -1 -1 0.16 17540 1 0.01 -1 -1 29640 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 14.8 MiB 0.40 984 53.2 MiB 0.13 0.00 3.2349 -102.001 -3.2349 3.2349 0.97 0.0002468 0.000202029 0.0207192 0.0171741 28 2298 22 6.65987e+06 393018 500653. 1732.36 0.82 0.0625552 0.0536661 21970 115934 -1 2026 19 951 1477 105056 24617 0 0 105056 24617 1477 1083 0 0 5595 4417 0 0 7731 6371 0 0 1477 1147 0 0 45327 5742 0 0 43449 5857 0 0 1477 0 0 526 822 766 5595 0 0 3.09131 3.09131 -110.047 -3.09131 0 0 612192. 2118.31 0.28 0.05 0.11 -1 -1 0.28 0.0171119 0.0153891 130 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 7.28 vpr 53.35 MiB -1 -1 0.17 17736 1 0.01 -1 -1 29816 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 15.0 MiB 0.37 1155 53.4 MiB 0.07 0.00 4.95012 -147.764 -4.95012 4.95012 0.60 0.000149327 0.000121314 0.0117642 0.00976993 32 3049 23 6.65987e+06 316950 554710. 1919.41 3.99 0.140104 0.12189 22834 132086 -1 2549 20 1817 2523 196879 45852 0 0 196879 45852 2523 2136 0 0 9984 8321 0 0 14477 11762 0 0 2523 2213 0 0 86581 10339 0 0 80791 11081 0 0 2523 0 0 706 903 795 6769 0 0 4.87997 4.87997 -161.569 -4.87997 0 0 701300. 2426.64 0.32 0.08 0.13 -1 -1 0.32 0.0229564 0.020711 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.58 vpr 52.46 MiB -1 -1 0.13 17248 1 0.01 -1 -1 29688 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53724 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 13.9 MiB 0.20 764 52.5 MiB 0.03 0.00 2.57364 -83.2175 -2.57364 2.57364 0.69 9.0873e-05 7.1806e-05 0.00593099 0.00489441 26 1718 30 6.65987e+06 215526 477104. 1650.88 0.89 0.0416999 0.0359361 21682 110474 -1 1582 19 878 1132 97090 22488 0 0 97090 22488 1132 979 0 0 4308 3570 0 0 6476 5167 0 0 1132 1036 0 0 41706 6001 0 0 42336 5735 0 0 1132 0 0 254 184 258 2336 0 0 2.28691 2.28691 -93.3323 -2.28691 0 0 585099. 2024.56 0.26 0.04 0.09 -1 -1 0.26 0.0103277 0.00922331 86 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.14 vpr 52.82 MiB -1 -1 0.15 17576 1 0.02 -1 -1 29672 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54084 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 14.3 MiB 0.14 640 52.8 MiB 0.07 0.00 3.13515 -91.4221 -3.13515 3.13515 0.99 0.000219908 0.000182767 0.0140964 0.0117932 28 1695 21 6.65987e+06 202848 500653. 1732.36 0.80 0.0412166 0.0352333 21970 115934 -1 1444 19 882 1438 109966 26104 0 0 109966 26104 1438 1189 0 0 5410 4541 0 0 7930 6464 0 0 1438 1258 0 0 47000 6334 0 0 46750 6318 0 0 1438 0 0 556 729 617 4744 0 0 2.79977 2.79977 -104.731 -2.79977 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0138773 0.0124597 92 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.34 vpr 52.96 MiB -1 -1 0.10 17368 1 0.01 -1 -1 29700 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54228 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 14.5 MiB 0.04 810 53.0 MiB 0.08 0.00 2.77684 -92.0932 -2.77684 2.77684 0.72 0.000212172 0.000171877 0.0119317 0.00982672 32 2091 45 6.65987e+06 266238 554710. 1919.41 0.74 0.0406894 0.0343638 22834 132086 -1 1915 21 1312 2338 186768 42418 0 0 186768 42418 2338 1798 0 0 8867 7548 0 0 14652 11041 0 0 2338 1942 0 0 85741 9194 0 0 72832 10895 0 0 2338 0 0 1026 1069 1120 8309 0 0 2.66051 2.66051 -108.319 -2.66051 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0143591 0.0127919 115 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.81 vpr 52.40 MiB -1 -1 0.14 17100 1 0.01 -1 -1 29884 -1 -1 27 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53660 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 13.8 MiB 0.06 561 52.4 MiB 0.05 0.00 2.46938 -60.1973 -2.46938 2.46938 0.58 0.000146687 0.000117954 0.00809236 0.00661635 28 1339 25 6.65987e+06 342306 500653. 1732.36 1.47 0.0427476 0.0359664 21970 115934 -1 1139 17 586 1040 64279 16034 0 0 64279 16034 1040 714 0 0 3838 3015 0 0 5609 4466 0 0 1040 794 0 0 25330 3737 0 0 27422 3308 0 0 1040 0 0 454 559 465 4056 0 0 2.48439 2.48439 -69.5592 -2.48439 0 0 612192. 2118.31 0.27 0.03 0.10 -1 -1 0.27 0.0100306 0.00900758 89 19 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.37 vpr 53.49 MiB -1 -1 0.17 17696 1 0.02 -1 -1 29784 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 14.8 MiB 0.22 1005 53.5 MiB 0.12 0.00 3.37318 -107.601 -3.37318 3.37318 0.93 0.00024353 0.000199675 0.0233874 0.0192667 32 2779 22 6.65987e+06 253560 554710. 1919.41 0.97 0.0669112 0.0569445 22834 132086 -1 2341 22 1572 2778 222845 51465 0 0 222845 51465 2778 2155 0 0 10829 9431 0 0 17776 13758 0 0 2778 2341 0 0 94124 12125 0 0 94560 11655 0 0 2778 0 0 1206 1356 1242 9394 0 0 3.67945 3.67945 -127.141 -3.67945 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0192446 0.0171333 135 69 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.40 vpr 53.65 MiB -1 -1 0.17 17624 1 0.02 -1 -1 29760 -1 -1 33 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 14.9 MiB 0.45 1045 53.7 MiB 0.13 0.00 3.36335 -113.348 -3.36335 3.36335 1.00 0.000307852 0.000252741 0.023361 0.0193228 32 2297 17 6.65987e+06 418374 554710. 1919.41 0.76 0.057161 0.0485552 22834 132086 -1 2035 18 1248 1925 125573 29258 0 0 125573 29258 1925 1384 0 0 7082 5907 0 0 10999 8574 0 0 1925 1534 0 0 51704 5989 0 0 51938 5870 0 0 1925 0 0 677 719 603 5654 0 0 3.30177 3.30177 -128.117 -3.30177 0 0 701300. 2426.64 0.20 0.04 0.08 -1 -1 0.20 0.0109062 0.00976824 142 86 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.09 vpr 54.01 MiB -1 -1 0.17 17344 1 0.01 -1 -1 29736 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55304 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 15.3 MiB 2.92 780 54.0 MiB 0.05 0.00 4.5465 -130.223 -4.5465 4.5465 0.63 0.000122786 9.8012e-05 0.0115633 0.00958348 46 2566 28 6.95648e+06 188184 828058. 2865.25 2.08 0.0769718 0.0667994 28066 200906 -1 1908 21 1278 1874 141570 32309 0 0 141570 32309 1874 1489 0 0 6153 5369 0 0 9992 7040 0 0 1874 1586 0 0 62975 7937 0 0 58702 8888 0 0 1874 0 0 596 536 652 5236 0 0 4.26531 4.26531 -145.395 -4.26531 0 0 1.01997e+06 3529.29 0.42 0.06 0.19 -1 -1 0.42 0.0190846 0.0172253 81 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 10.23 vpr 54.00 MiB -1 -1 0.17 17348 1 0.02 -1 -1 29744 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55292 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 15.4 MiB 1.84 732 54.0 MiB 0.08 0.00 3.66177 -110.219 -3.66177 3.66177 0.63 0.000219911 0.000179297 0.0194561 0.016034 48 2268 42 6.95648e+06 217135 865456. 2994.66 5.62 0.195307 0.168694 28354 207349 -1 1915 22 1857 2593 235289 58650 0 0 235289 58650 2593 2257 0 0 8924 7961 0 0 16344 10881 0 0 2593 2428 0 0 98626 17364 0 0 106209 17759 0 0 2593 0 0 736 771 678 6250 0 0 4.65691 4.65691 -151.319 -4.65691 0 0 1.05005e+06 3633.38 0.40 0.08 0.19 -1 -1 0.40 0.019294 0.0173327 80 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 5.70 vpr 53.62 MiB -1 -1 0.15 17580 1 0.01 -1 -1 29796 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 15.2 MiB 1.34 1085 53.6 MiB 0.05 0.00 3.10314 -104.306 -3.10314 3.10314 0.61 0.000116975 9.3896e-05 0.0114068 0.00942801 38 2672 46 6.95648e+06 217135 678818. 2348.85 1.72 0.0843521 0.074246 26626 170182 -1 2161 20 1350 1832 139864 29306 0 0 139864 29306 1832 1529 0 0 5917 5058 0 0 9234 6486 0 0 1832 1599 0 0 60304 7560 0 0 60745 7074 0 0 1832 0 0 482 468 462 4428 0 0 3.56641 3.56641 -124.343 -3.56641 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0153535 0.0138002 76 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 15.28 vpr 53.75 MiB -1 -1 0.14 17680 1 0.02 -1 -1 29860 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55040 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 15.1 MiB 0.43 705 53.8 MiB 0.10 0.00 3.48718 -97.0557 -3.48718 3.48718 1.04 0.000218544 0.000178585 0.0213777 0.0177108 38 2421 22 6.95648e+06 275038 678818. 2348.85 11.32 0.156934 0.136324 26626 170182 -1 2018 24 1706 2827 234540 50095 0 0 234540 50095 2827 2276 0 0 8530 7498 0 0 14639 9372 0 0 2827 2404 0 0 107586 13987 0 0 98131 14558 0 0 2827 0 0 1121 1337 1528 9855 0 0 4.02656 4.02656 -128.378 -4.02656 0 0 902133. 3121.57 0.37 0.09 0.14 -1 -1 0.37 0.0216537 0.019585 71 25 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.21 vpr 53.94 MiB -1 -1 0.11 17572 1 0.02 -1 -1 29656 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55232 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 15.4 MiB 0.74 762 53.9 MiB 0.08 0.00 3.67069 -105.476 -3.67069 3.67069 1.02 0.000240111 0.000196314 0.0184878 0.0153837 46 2479 35 6.95648e+06 231611 828058. 2865.25 2.10 0.0740165 0.0637691 28066 200906 -1 1780 22 1335 2285 175056 38549 0 0 175056 38549 2285 1631 0 0 7129 6370 0 0 12888 8183 0 0 2285 1731 0 0 74390 10018 0 0 76079 10616 0 0 2285 0 0 950 835 1027 7527 0 0 4.26241 4.26241 -134.696 -4.26241 0 0 1.01997e+06 3529.29 0.43 0.07 0.20 -1 -1 0.43 0.0198569 0.0178745 73 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 14.89 vpr 53.95 MiB -1 -1 0.17 17680 1 0.01 -1 -1 29660 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55240 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 15.3 MiB 1.13 905 53.9 MiB 0.09 0.00 2.5393 -97.273 -2.5393 2.5393 1.00 0.000212203 0.000169977 0.0212908 0.0173942 38 2520 24 6.95648e+06 303989 678818. 2348.85 10.56 0.134383 0.115365 26626 170182 -1 2135 22 1549 2383 186948 38742 0 0 186948 38742 2383 1883 0 0 7353 6427 0 0 12022 8043 0 0 2383 2064 0 0 79099 10915 0 0 83708 9410 0 0 2383 0 0 834 1000 1067 7692 0 0 3.18757 3.18757 -124.145 -3.18757 0 0 902133. 3121.57 0.23 0.04 0.10 -1 -1 0.23 0.01117 0.00996622 79 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.54 vpr 53.36 MiB -1 -1 0.13 17140 1 0.01 -1 -1 29988 -1 -1 13 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54644 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 14.8 MiB 4.75 480 53.4 MiB 0.03 0.00 2.92458 -76.9784 -2.92458 2.92458 0.60 9.6399e-05 7.6401e-05 0.00691042 0.00568769 36 1531 26 6.95648e+06 188184 648988. 2245.63 1.14 0.0327635 0.0277474 26050 158493 -1 1203 19 819 1277 93690 22151 0 0 93690 22151 1277 971 0 0 4453 3794 0 0 7178 5157 0 0 1277 1002 0 0 38761 5663 0 0 40744 5564 0 0 1277 0 0 458 545 398 3804 0 0 3.07997 3.07997 -95.5345 -3.07997 0 0 828058. 2865.25 0.21 0.03 0.09 -1 -1 0.21 0.00747371 0.0067107 52 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.55 vpr 53.65 MiB -1 -1 0.16 16944 1 0.01 -1 -1 29688 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54936 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 15.1 MiB 0.46 690 53.6 MiB 0.04 0.00 2.37175 -75.9172 -2.37175 2.37175 0.69 0.000105676 8.4871e-05 0.00791074 0.00653076 38 2202 24 6.95648e+06 361892 678818. 2348.85 2.09 0.0525159 0.0450855 26626 170182 -1 1605 17 1023 1626 110861 25460 0 0 110861 25460 1626 1222 0 0 5128 4379 0 0 7860 5517 0 0 1626 1301 0 0 44041 7109 0 0 50580 5932 0 0 1626 0 0 603 805 744 5940 0 0 2.83332 2.83332 -99.0837 -2.83332 0 0 902133. 3121.57 0.36 0.05 0.13 -1 -1 0.36 0.0126288 0.0113719 69 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 12.60 vpr 53.92 MiB -1 -1 0.16 17488 1 0.02 -1 -1 29756 -1 -1 11 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55212 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 15.0 MiB 1.89 622 53.9 MiB 0.07 0.00 2.76819 -94.347 -2.76819 2.76819 1.01 0.000205444 0.000163641 0.0160137 0.0131848 38 2485 46 6.95648e+06 159232 678818. 2348.85 7.53 0.147793 0.127284 26626 170182 -1 1688 22 1304 1853 152857 33628 0 0 152857 33628 1853 1556 0 0 5611 4843 0 0 9586 6179 0 0 1853 1568 0 0 63602 10445 0 0 70352 9037 0 0 1853 0 0 549 558 429 4487 0 0 3.54537 3.54537 -121.256 -3.54537 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.00939111 0.00840364 66 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 5.80 vpr 53.51 MiB -1 -1 0.16 17468 1 0.02 -1 -1 29648 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 15.0 MiB 1.22 654 53.5 MiB 0.07 0.00 2.66488 -92.923 -2.66488 2.66488 0.96 0.00020179 0.000163434 0.0177658 0.014664 38 1798 23 6.95648e+06 144757 678818. 2348.85 1.43 0.0536451 0.0455878 26626 170182 -1 1458 21 1232 1763 130634 28562 0 0 130634 28562 1763 1473 0 0 5437 4733 0 0 8808 5896 0 0 1763 1516 0 0 56735 7159 0 0 56128 7785 0 0 1763 0 0 531 471 598 4767 0 0 3.05082 3.05082 -116.723 -3.05082 0 0 902133. 3121.57 0.24 0.03 0.16 -1 -1 0.24 0.00879222 0.00785932 59 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 10.63 vpr 53.48 MiB -1 -1 0.15 17412 1 0.01 -1 -1 29804 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 15.0 MiB 2.02 525 53.5 MiB 0.05 0.00 2.79013 -84.0225 -2.79013 2.79013 0.94 0.000195177 0.000157 0.0128714 0.0106098 38 1723 47 6.95648e+06 173708 678818. 2348.85 5.37 0.151559 0.131226 26626 170182 -1 1198 23 1109 1508 105559 26257 0 0 105559 26257 1508 1356 0 0 4849 4234 0 0 8033 5421 0 0 1508 1398 0 0 42684 6837 0 0 46977 7011 0 0 1508 0 0 399 412 541 3924 0 0 3.45492 3.45492 -110.111 -3.45492 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0144567 0.012833 55 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 14.47 vpr 53.60 MiB -1 -1 0.13 17324 1 0.01 -1 -1 29680 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54888 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 15.1 MiB 1.77 596 53.6 MiB 0.07 0.00 2.73393 -92.8543 -2.73393 2.73393 1.03 0.000178097 0.000142175 0.0156059 0.0128673 46 1797 22 6.95648e+06 144757 828058. 2865.25 9.45 0.143282 0.123544 28066 200906 -1 1303 25 1228 1595 117448 28126 0 0 117448 28126 1595 1409 0 0 5095 4487 0 0 9064 6014 0 0 1595 1465 0 0 53776 6510 0 0 46323 8241 0 0 1595 0 0 367 320 332 3348 0 0 3.25722 3.25722 -112.378 -3.25722 0 0 1.01997e+06 3529.29 0.28 0.04 0.12 -1 -1 0.28 0.0104911 0.00931321 62 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 9.95 vpr 53.99 MiB -1 -1 0.15 17568 1 0.02 -1 -1 29768 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55288 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 15.4 MiB 1.90 809 54.0 MiB 0.06 0.00 3.29778 -109.097 -3.29778 3.29778 0.93 0.000213216 0.000170783 0.0142028 0.0117428 54 2559 23 6.95648e+06 217135 949917. 3286.91 4.92 0.153635 0.134886 29506 232905 -1 2066 22 1623 2400 215677 46197 0 0 215677 46197 2400 1913 0 0 7624 6651 0 0 13098 8663 0 0 2400 2222 0 0 90271 14129 0 0 99884 12619 0 0 2400 0 0 777 650 729 6130 0 0 3.59152 3.59152 -129.042 -3.59152 0 0 1.17392e+06 4061.99 0.45 0.07 0.22 -1 -1 0.45 0.0148549 0.0132376 83 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 13.53 vpr 53.84 MiB -1 -1 0.11 17348 1 0.01 -1 -1 29632 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 15.3 MiB 0.91 850 53.8 MiB 0.10 0.00 3.72883 -115.484 -3.72883 3.72883 1.03 0.000241599 0.000194716 0.021587 0.0177109 36 2803 33 6.95648e+06 318465 648988. 2245.63 9.22 0.148651 0.128108 26050 158493 -1 2224 22 1843 2620 260512 51560 0 0 260512 51560 2620 2158 0 0 8117 7086 0 0 14136 9240 0 0 2620 2287 0 0 114690 15980 0 0 118329 14809 0 0 2620 0 0 777 928 830 7093 0 0 4.46842 4.46842 -151.614 -4.46842 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0188039 0.0167995 75 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 6.42 vpr 53.51 MiB -1 -1 0.16 17184 1 0.01 -1 -1 29720 -1 -1 13 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 14.9 MiB 1.50 520 53.5 MiB 0.07 0.00 2.6566 -75.3148 -2.6566 2.6566 0.98 0.000180381 0.000147223 0.0151658 0.0125176 38 1953 26 6.95648e+06 188184 678818. 2348.85 1.61 0.0555155 0.0470521 26626 170182 -1 1394 22 1007 1547 128569 27442 0 0 128569 27442 1547 1276 0 0 4686 4038 0 0 8030 5061 0 0 1547 1306 0 0 57772 7540 0 0 54987 8221 0 0 1547 0 0 540 564 454 4229 0 0 2.92072 2.92072 -96.6549 -2.92072 0 0 902133. 3121.57 0.35 0.05 0.15 -1 -1 0.35 0.0136628 0.0122101 55 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 18.18 vpr 53.98 MiB -1 -1 0.17 17348 1 0.01 -1 -1 29676 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55280 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 15.3 MiB 1.33 769 54.0 MiB 0.06 0.00 2.5613 -93.5955 -2.5613 2.5613 1.01 0.000143937 0.000115362 0.0136631 0.0112218 38 2715 47 6.95648e+06 246087 678818. 2348.85 13.32 0.186079 0.161786 26626 170182 -1 1843 21 1614 2485 204093 48507 0 0 204093 48507 2485 2045 0 0 7858 6877 0 0 12979 8719 0 0 2485 2106 0 0 89811 14052 0 0 88475 14708 0 0 2485 0 0 871 1028 1041 7817 0 0 3.12497 3.12497 -121.308 -3.12497 0 0 902133. 3121.57 0.37 0.08 0.16 -1 -1 0.37 0.021367 0.0193042 76 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 16.85 vpr 53.90 MiB -1 -1 0.16 17552 1 0.02 -1 -1 29740 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 15.3 MiB 1.68 850 53.9 MiB 0.05 0.00 3.53151 -112.684 -3.53151 3.53151 0.59 0.000222685 0.000180799 0.0100633 0.00831869 40 2184 28 6.95648e+06 202660 706193. 2443.58 12.54 0.165257 0.143517 26914 176310 -1 1862 33 2058 2853 314330 121355 0 0 314330 121355 2853 2393 0 0 9582 8422 0 0 19820 12353 0 0 2853 2540 0 0 143954 51044 0 0 135268 44603 0 0 2853 0 0 795 991 789 7018 0 0 3.76272 3.76272 -134.837 -3.76272 0 0 926341. 3205.33 0.36 0.12 0.16 -1 -1 0.36 0.0256934 0.0229312 79 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.99 vpr 53.71 MiB -1 -1 0.14 17488 1 0.02 -1 -1 29692 -1 -1 9 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 15.1 MiB 0.87 655 53.7 MiB 0.04 0.00 1.91376 -73.9178 -1.91376 1.91376 0.60 0.0001682 0.0001363 0.010578 0.00868666 44 1932 49 6.95648e+06 130281 787024. 2723.27 3.36 0.0985359 0.0844875 27778 195446 -1 1333 22 1240 1834 140227 35310 0 0 140227 35310 1834 1502 0 0 6010 5360 0 0 10064 7013 0 0 1834 1560 0 0 57315 10824 0 0 63170 9051 0 0 1834 0 0 594 763 941 5824 0 0 2.20038 2.20038 -100.478 -2.20038 0 0 997811. 3452.63 0.41 0.07 0.17 -1 -1 0.41 0.01932 0.0173152 57 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.89 vpr 53.25 MiB -1 -1 0.14 17236 1 0.01 -1 -1 29784 -1 -1 9 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54524 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 14.9 MiB 0.45 409 53.2 MiB 0.04 0.00 1.85256 -62.0324 -1.85256 1.85256 1.03 0.000169642 0.000137598 0.0092011 0.00767037 40 1188 34 6.95648e+06 130281 706193. 2443.58 2.04 0.0675849 0.0586379 26914 176310 -1 972 28 838 1124 122824 37705 0 0 122824 37705 1124 993 0 0 4006 3542 0 0 7608 5023 0 0 1124 997 0 0 59094 13616 0 0 49868 13534 0 0 1124 0 0 286 305 299 2614 0 0 2.29278 2.29278 -85.1161 -2.29278 0 0 926341. 3205.33 0.36 0.05 0.16 -1 -1 0.36 0.0128216 0.0112469 43 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.57 vpr 53.68 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29892 -1 -1 12 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 15.1 MiB 1.90 742 53.7 MiB 0.04 0.00 3.3794 -109.326 -3.3794 3.3794 0.59 0.000103061 8.2806e-05 0.00787284 0.00650893 36 2444 30 6.95648e+06 173708 648988. 2245.63 3.15 0.0615291 0.0533784 26050 158493 -1 1884 25 1620 2208 200505 43874 0 0 200505 43874 2208 1931 0 0 7014 6119 0 0 12108 7930 0 0 2208 1995 0 0 86631 12725 0 0 90336 13174 0 0 2208 0 0 588 612 615 5249 0 0 3.86396 3.86396 -144.477 -3.86396 0 0 828058. 2865.25 0.35 0.07 0.13 -1 -1 0.35 0.0174167 0.0155608 69 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.22 vpr 53.86 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29760 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 15.3 MiB 0.84 706 53.9 MiB 0.07 0.00 3.07689 -100.762 -3.07689 3.07689 1.01 0.00022877 0.00018316 0.0134466 0.0111822 44 2201 23 6.95648e+06 289514 787024. 2723.27 1.87 0.0795303 0.0687893 27778 195446 -1 1642 21 1446 2096 159482 35234 0 0 159482 35234 2096 1735 0 0 6621 5786 0 0 11275 7596 0 0 2096 1838 0 0 72752 7966 0 0 64642 10313 0 0 2096 0 0 650 781 758 6259 0 0 3.59836 3.59836 -126.988 -3.59836 0 0 997811. 3452.63 0.41 0.04 0.17 -1 -1 0.41 0.0106665 0.00949134 75 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 7.54 vpr 54.10 MiB -1 -1 0.12 17752 1 0.02 -1 -1 29712 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55400 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 15.7 MiB 1.06 845 54.1 MiB 0.04 0.00 3.8447 -110.914 -3.8447 3.8447 0.59 0.000130165 0.000104716 0.0103022 0.00854694 58 2167 28 6.95648e+06 202660 997811. 3452.63 3.77 0.108916 0.0940344 30370 251734 -1 1828 21 1557 2373 207528 49852 0 0 207528 49852 2373 1898 0 0 7798 6779 0 0 14658 9364 0 0 2373 2065 0 0 82282 15918 0 0 98044 13828 0 0 2373 0 0 816 802 923 6990 0 0 4.16201 4.16201 -136.4 -4.16201 0 0 1.25153e+06 4330.55 0.40 0.08 0.15 -1 -1 0.40 0.0202971 0.0182859 82 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 7.85 vpr 53.07 MiB -1 -1 0.14 17224 1 0.01 -1 -1 29700 -1 -1 13 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54348 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 14.5 MiB 1.09 314 53.1 MiB 0.04 0.00 1.85256 -53.7981 -1.85256 1.85256 0.83 0.000138583 0.000110951 0.00899078 0.00748228 36 1162 27 6.95648e+06 188184 648988. 2245.63 3.62 0.0651193 0.0552489 26050 158493 -1 795 19 572 674 49121 13054 0 0 49121 13054 674 619 0 0 2248 1986 0 0 3750 2618 0 0 674 622 0 0 19779 3872 0 0 21996 3337 0 0 674 0 0 102 55 51 1122 0 0 2.18748 2.18748 -70.7297 -2.18748 0 0 828058. 2865.25 0.35 0.03 0.15 -1 -1 0.35 0.00943914 0.00841213 44 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 9.01 vpr 53.47 MiB -1 -1 0.12 17164 1 0.01 -1 -1 29872 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 14.9 MiB 0.90 694 53.5 MiB 0.08 0.00 3.81446 -97.9552 -3.81446 3.81446 1.05 0.00021135 0.000170554 0.0173312 0.0144161 46 2179 26 6.95648e+06 217135 828058. 2865.25 4.59 0.138277 0.119664 28066 200906 -1 1603 25 1277 2039 173287 38980 0 0 173287 38980 2039 1734 0 0 6499 5684 0 0 11982 7629 0 0 2039 1816 0 0 76265 10794 0 0 74463 11323 0 0 2039 0 0 762 788 880 6505 0 0 3.80186 3.80186 -121.606 -3.80186 0 0 1.01997e+06 3529.29 0.40 0.07 0.17 -1 -1 0.40 0.0169009 0.0150685 66 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.19 vpr 53.11 MiB -1 -1 0.08 16824 1 0.01 -1 -1 29528 -1 -1 8 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54380 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 14.5 MiB 0.34 450 53.1 MiB 0.04 0.00 1.77736 -58.1192 -1.77736 1.77736 0.95 0.000130277 0.000103877 0.00843249 0.00693778 34 1420 43 6.95648e+06 115805 618332. 2139.56 2.98 0.0757233 0.0641673 25762 151098 -1 1084 19 690 784 73950 17709 0 0 73950 17709 784 772 0 0 2806 2450 0 0 4742 3316 0 0 784 775 0 0 31949 5298 0 0 32885 5098 0 0 784 0 0 94 57 89 1212 0 0 2.23278 2.23278 -80.7205 -2.23278 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.0086503 0.00770998 42 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.74 vpr 53.84 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29660 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 15.2 MiB 0.81 962 53.8 MiB 0.05 0.00 3.51071 -104.741 -3.51071 3.51071 0.59 0.000118785 9.6626e-05 0.00991138 0.00814765 36 2631 34 6.95648e+06 217135 648988. 2245.63 3.34 0.0593997 0.0510583 26050 158493 -1 2109 22 1402 2244 229760 44257 0 0 229760 44257 2244 1882 0 0 7048 6144 0 0 12631 8046 0 0 2244 1957 0 0 103997 12818 0 0 101596 13410 0 0 2244 0 0 842 1074 1157 7765 0 0 3.86096 3.86096 -128.765 -3.86096 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0106484 0.00955764 68 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 6.11 vpr 53.66 MiB -1 -1 0.11 17164 1 0.02 -1 -1 29820 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 15.0 MiB 0.65 722 53.7 MiB 0.09 0.00 2.4561 -83.8122 -2.4561 2.4561 1.03 0.000219008 0.000177328 0.0177484 0.0146958 44 2015 22 6.95648e+06 303989 787024. 2723.27 1.95 0.0745418 0.0646202 27778 195446 -1 1672 23 1396 2198 156268 34664 0 0 156268 34664 2198 1602 0 0 7146 6294 0 0 12521 8458 0 0 2198 1800 0 0 65317 8525 0 0 66888 7985 0 0 2198 0 0 802 839 993 7364 0 0 2.88332 2.88332 -107.023 -2.88332 0 0 997811. 3452.63 0.40 0.05 0.19 -1 -1 0.40 0.0139345 0.0124347 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 10.28 vpr 53.93 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29720 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55224 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 15.4 MiB 0.91 804 53.9 MiB 0.08 0.00 3.60953 -107.514 -3.60953 3.60953 1.03 0.000238567 0.000194838 0.0194686 0.0161705 50 2162 31 6.95648e+06 275038 902133. 3121.57 5.79 0.155228 0.134345 28642 213929 -1 1711 22 1152 1741 133585 29526 0 0 133585 29526 1741 1348 0 0 5795 4944 0 0 10008 6760 0 0 1741 1494 0 0 55336 7541 0 0 58964 7439 0 0 1741 0 0 589 495 616 4909 0 0 3.78591 3.78591 -123.971 -3.78591 0 0 1.08113e+06 3740.92 0.44 0.07 0.21 -1 -1 0.44 0.0178528 0.0160687 72 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.35 vpr 53.60 MiB -1 -1 0.16 17512 1 0.01 -1 -1 29820 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 15.2 MiB 0.73 709 53.6 MiB 0.04 0.00 2.58755 -80.3309 -2.58755 2.58755 0.59 0.000104181 8.2736e-05 0.0096275 0.0078699 38 1976 22 6.95648e+06 144757 678818. 2348.85 3.10 0.0721673 0.0605834 26626 170182 -1 1640 21 1022 1596 140711 29296 0 0 140711 29296 1596 1270 0 0 5096 4482 0 0 8268 5695 0 0 1596 1317 0 0 61593 8606 0 0 62562 7926 0 0 1596 0 0 574 496 552 4478 0 0 2.82072 2.82072 -104.849 -2.82072 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0167482 0.0150945 55 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 7.52 vpr 53.38 MiB -1 -1 0.15 17596 1 0.02 -1 -1 29720 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 14.7 MiB 0.25 560 53.4 MiB 0.05 0.00 2.73513 -79.2304 -2.73513 2.73513 0.61 0.000197645 0.000150016 0.0117704 0.0096143 34 2174 50 6.95648e+06 260562 618332. 2139.56 4.63 0.12984 0.11296 25762 151098 -1 1454 27 1238 1693 301642 132638 0 0 301642 132638 1693 1469 0 0 5867 5093 0 0 11554 7594 0 0 1693 1516 0 0 143043 59975 0 0 137792 56991 0 0 1693 0 0 455 553 500 4379 0 0 3.09012 3.09012 -104.602 -3.09012 0 0 787024. 2723.27 0.21 0.07 0.10 -1 -1 0.21 0.0102617 0.00905964 57 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 4.74 vpr 53.47 MiB -1 -1 0.15 17492 1 0.01 -1 -1 29620 -1 -1 16 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54756 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 14.9 MiB 0.41 459 53.5 MiB 0.04 0.00 2.5594 -74.5966 -2.5594 2.5594 0.81 9.513e-05 7.5772e-05 0.00813921 0.00664508 44 1638 24 6.95648e+06 231611 787024. 2723.27 1.36 0.0352869 0.0297492 27778 195446 -1 1227 22 1004 1544 119393 28689 0 0 119393 28689 1544 1329 0 0 5084 4448 0 0 8746 6089 0 0 1544 1382 0 0 51833 6826 0 0 50642 8615 0 0 1544 0 0 540 491 497 4314 0 0 3.01797 3.01797 -93.1854 -3.01797 0 0 997811. 3452.63 0.39 0.05 0.18 -1 -1 0.39 0.0127467 0.0113246 57 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 8.73 vpr 53.26 MiB -1 -1 0.15 16980 1 0.01 -1 -1 29732 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 14.6 MiB 0.55 581 53.3 MiB 0.06 0.00 2.72875 -87.4867 -2.72875 2.72875 1.03 0.000185003 0.000150485 0.0137869 0.0115594 42 2029 37 6.95648e+06 144757 744469. 2576.02 4.74 0.114462 0.0987514 27202 183097 -1 1362 23 1062 1548 120987 31315 0 0 120987 31315 1548 1358 0 0 5542 4845 0 0 9531 6739 0 0 1548 1403 0 0 49963 8644 0 0 52855 8326 0 0 1548 0 0 486 543 505 4146 0 0 3.05697 3.05697 -113.332 -3.05697 0 0 949917. 3286.91 0.36 0.05 0.16 -1 -1 0.36 0.0137875 0.0122526 58 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.59 vpr 53.61 MiB -1 -1 0.16 17328 1 0.01 -1 -1 29700 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54892 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 15.1 MiB 0.48 529 53.6 MiB 0.08 0.00 2.64098 -82.2636 -2.64098 2.64098 1.01 0.00130157 0.00125647 0.0168265 0.0141134 46 1899 29 6.95648e+06 275038 828058. 2865.25 4.74 0.123109 0.106659 28066 200906 -1 1377 23 1046 1571 133014 35367 0 0 133014 35367 1571 1223 0 0 5064 4395 0 0 8645 5849 0 0 1571 1355 0 0 58107 10572 0 0 58056 11973 0 0 1571 0 0 525 599 547 4760 0 0 2.82232 2.82232 -102.41 -2.82232 0 0 1.01997e+06 3529.29 0.29 0.04 0.19 -1 -1 0.29 0.00899362 0.00800162 61 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 9.80 vpr 53.67 MiB -1 -1 0.15 17676 1 0.02 -1 -1 29844 -1 -1 12 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54956 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 15.2 MiB 1.23 668 53.7 MiB 0.06 0.00 2.4721 -83.5049 -2.4721 2.4721 0.69 0.000185867 0.000148448 0.0137556 0.011303 36 2416 50 6.95648e+06 173708 648988. 2245.63 5.95 0.140669 0.122102 26050 158493 -1 1680 20 1179 1611 149523 32431 0 0 149523 32431 1611 1423 0 0 5409 4796 0 0 9016 6296 0 0 1611 1460 0 0 64996 9703 0 0 66880 8753 0 0 1611 0 0 432 498 498 4129 0 0 2.85532 2.85532 -107.919 -2.85532 0 0 828058. 2865.25 0.25 0.04 0.09 -1 -1 0.25 0.00878401 0.00783511 61 48 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 6.49 vpr 54.13 MiB -1 -1 0.17 17628 1 0.03 -1 -1 29664 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55432 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 15.7 MiB 0.60 868 54.1 MiB 0.06 0.00 3.28368 -98.6728 -3.28368 3.28368 0.60 0.000131392 0.000105899 0.0126855 0.0104247 40 2953 25 6.95648e+06 303989 706193. 2443.58 3.44 0.119027 0.10496 26914 176310 -1 2195 22 1667 2703 221244 49511 0 0 221244 49511 2703 2171 0 0 8974 7765 0 0 16178 10788 0 0 2703 2307 0 0 90775 13684 0 0 99911 12796 0 0 2703 0 0 1036 1667 1614 11048 0 0 3.95042 3.95042 -127.584 -3.95042 0 0 926341. 3205.33 0.25 0.05 0.13 -1 -1 0.25 0.0130608 0.0117856 84 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 9.70 vpr 54.11 MiB -1 -1 0.14 17276 1 0.02 -1 -1 29840 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55412 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 15.7 MiB 0.86 770 54.1 MiB 0.08 0.00 2.72278 -96.163 -2.72278 2.72278 0.92 0.000247026 0.000198575 0.0187394 0.015214 46 2464 37 6.95648e+06 347416 828058. 2865.25 5.61 0.216428 0.190206 28066 200906 -1 1838 23 1838 2649 189146 44421 0 0 189146 44421 2649 2002 0 0 8162 7219 0 0 13944 9202 0 0 2649 2202 0 0 81084 11343 0 0 80658 12453 0 0 2649 0 0 811 965 878 7441 0 0 3.34357 3.34357 -128.534 -3.34357 0 0 1.01997e+06 3529.29 0.43 0.08 0.20 -1 -1 0.43 0.0222933 0.0199595 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.98 vpr 53.61 MiB -1 -1 0.17 17496 1 0.02 -1 -1 29728 -1 -1 11 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54896 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 15.1 MiB 2.26 821 53.6 MiB 0.07 0.00 3.28867 -109.385 -3.28867 3.28867 0.99 0.000196994 0.000161769 0.0162454 0.0135474 44 2007 22 6.95648e+06 159232 787024. 2723.27 3.30 0.0910789 0.0776627 27778 195446 -1 1694 24 1187 1598 132758 26983 0 0 132758 26983 1598 1310 0 0 5210 4663 0 0 9052 6065 0 0 1598 1385 0 0 60822 6310 0 0 54478 7250 0 0 1598 0 0 411 391 376 3938 0 0 3.31262 3.31262 -122.918 -3.31262 0 0 997811. 3452.63 0.39 0.06 0.15 -1 -1 0.39 0.017614 0.0157173 63 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 9.26 vpr 54.06 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29844 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55356 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 15.4 MiB 0.92 687 54.1 MiB 0.04 0.00 3.10309 -100.143 -3.10309 3.10309 0.98 0.000135784 0.000109085 0.00971568 0.00807204 54 1687 25 6.95648e+06 231611 949917. 3286.91 4.77 0.130776 0.112094 29506 232905 -1 1349 24 1407 2057 131618 32515 0 0 131618 32515 2057 1548 0 0 6531 5653 0 0 11127 7341 0 0 2057 1640 0 0 51721 8049 0 0 58125 8284 0 0 2057 0 0 650 631 489 5319 0 0 3.01687 3.01687 -112.499 -3.01687 0 0 1.17392e+06 4061.99 0.45 0.06 0.22 -1 -1 0.45 0.0188449 0.016719 76 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 10.89 vpr 54.25 MiB -1 -1 0.19 17712 1 0.02 -1 -1 29872 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55556 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 15.7 MiB 2.46 974 54.3 MiB 0.10 0.00 4.36076 -138.18 -4.36076 4.36076 0.99 0.000244068 0.000199939 0.0219536 0.018169 40 3400 33 6.95648e+06 231611 706193. 2443.58 5.17 0.116647 0.101134 26914 176310 -1 2661 31 2974 4230 639201 191377 0 0 639201 191377 4230 3934 0 0 13745 12304 0 0 29449 17199 0 0 4230 3976 0 0 293291 77503 0 0 294256 76461 0 0 4230 0 0 1256 1442 1484 10924 0 0 5.3871 5.3871 -182.692 -5.3871 0 0 926341. 3205.33 0.24 0.18 0.13 -1 -1 0.24 0.0251228 0.0224571 97 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.00 vpr 54.14 MiB -1 -1 0.17 17736 1 0.02 -1 -1 29708 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55436 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 15.7 MiB 2.66 896 54.1 MiB 0.10 0.00 3.74289 -121.686 -3.74289 3.74289 1.00 0.000238597 0.000192725 0.0238002 0.0197141 40 2849 23 6.95648e+06 231611 706193. 2443.58 2.90 0.130013 0.113838 26914 176310 -1 2375 21 1830 2589 255717 53262 0 0 255717 53262 2589 2340 0 0 8597 7409 0 0 15708 10192 0 0 2589 2367 0 0 112312 15882 0 0 113922 15072 0 0 2589 0 0 759 843 779 6488 0 0 4.50506 4.50506 -159.122 -4.50506 0 0 926341. 3205.33 0.37 0.09 0.17 -1 -1 0.37 0.020244 0.0181017 88 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.42 vpr 54.00 MiB -1 -1 0.17 17484 1 0.01 -1 -1 29776 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55292 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 15.4 MiB 1.30 786 54.0 MiB 0.05 0.00 3.35282 -107.728 -3.35282 3.35282 0.59 0.000128396 0.000103171 0.0113326 0.00939115 40 2384 35 6.95648e+06 318465 706193. 2443.58 2.41 0.0812993 0.070769 26914 176310 -1 1954 23 1596 2293 197711 45127 0 0 197711 45127 2293 1895 0 0 7723 6707 0 0 13730 9195 0 0 2293 1955 0 0 86202 12458 0 0 85470 12917 0 0 2293 0 0 697 800 817 6397 0 0 4.06441 4.06441 -133.747 -4.06441 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0171408 0.0152877 78 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.69 vpr 53.80 MiB -1 -1 0.15 17272 1 0.02 -1 -1 29788 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55092 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 15.2 MiB 1.01 774 53.8 MiB 0.04 0.00 3.28678 -93.8223 -3.28678 3.28678 0.60 0.000112711 9.059e-05 0.00990862 0.00818725 50 1882 20 6.95648e+06 202660 902133. 3121.57 3.13 0.0813848 0.0697164 28642 213929 -1 1650 19 1235 1705 135821 30527 0 0 135821 30527 1705 1432 0 0 5795 5040 0 0 10169 6956 0 0 1705 1548 0 0 56284 7940 0 0 60163 7611 0 0 1705 0 0 470 395 429 4039 0 0 3.59742 3.59742 -114.593 -3.59742 0 0 1.08113e+06 3740.92 0.41 0.05 0.15 -1 -1 0.41 0.0135427 0.0121702 71 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 20.21 vpr 54.66 MiB -1 -1 0.19 17616 1 0.02 -1 -1 29940 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55976 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 15.9 MiB 1.89 938 54.7 MiB 0.07 0.00 3.82007 -126.941 -3.82007 3.82007 0.74 0.000172642 0.000140684 0.015118 0.0124936 44 2924 31 6.95648e+06 318465 787024. 2723.27 15.29 0.208776 0.182239 27778 195446 -1 2267 21 1869 2741 203507 45051 0 0 203507 45051 2741 2169 0 0 8782 7923 0 0 15037 10352 0 0 2741 2295 0 0 85246 11171 0 0 88960 11141 0 0 2741 0 0 872 1033 940 8294 0 0 4.34521 4.34521 -154.248 -4.34521 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.0224818 0.0201945 93 84 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 11.81 vpr 53.52 MiB -1 -1 0.15 17136 1 0.01 -1 -1 29672 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54800 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 14.9 MiB 0.64 507 53.5 MiB 0.06 0.00 2.73795 -80.0594 -2.73795 2.73795 0.95 0.000169397 0.000135273 0.0139904 0.0114053 38 1688 27 6.95648e+06 217135 678818. 2348.85 8.03 0.167654 0.145974 26626 170182 -1 1257 32 1461 2039 131363 33244 0 0 131363 33244 2039 1752 0 0 6373 5496 0 0 11228 7409 0 0 2039 1879 0 0 53021 8395 0 0 56663 8313 0 0 2039 0 0 578 763 655 5395 0 0 3.31877 3.31877 -104.26 -3.31877 0 0 902133. 3121.57 0.36 0.06 0.16 -1 -1 0.36 0.0177451 0.0155717 56 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 10.71 vpr 53.96 MiB -1 -1 0.18 17344 1 0.02 -1 -1 29756 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55256 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 15.4 MiB 1.59 926 54.0 MiB 0.07 0.00 4.15207 -123.08 -4.15207 4.15207 1.03 0.000143422 0.00011832 0.0155707 0.0128659 62 2048 22 6.95648e+06 217135 1.05005e+06 3633.38 5.34 0.134763 0.115345 30946 263737 -1 1573 18 1223 1818 120980 26575 0 0 120980 26575 1818 1331 0 0 5829 4999 0 0 10442 6637 0 0 1818 1528 0 0 49708 6003 0 0 51365 6077 0 0 1818 0 0 595 558 589 5122 0 0 4.27006 4.27006 -134.472 -4.27006 0 0 1.30136e+06 4502.97 0.54 0.06 0.27 -1 -1 0.54 0.0176429 0.016089 84 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 8.21 vpr 53.98 MiB -1 -1 0.17 17572 1 0.01 -1 -1 29740 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55272 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 15.4 MiB 0.95 984 54.0 MiB 0.04 0.00 2.70675 -96.4586 -2.70675 2.70675 0.92 0.000144804 0.000115423 0.0100028 0.00830058 46 2386 34 6.95648e+06 246087 828058. 2865.25 4.02 0.118271 0.10199 28066 200906 -1 1936 19 1389 2171 164986 34234 0 0 164986 34234 2171 1726 0 0 6914 6065 0 0 11601 7882 0 0 2171 1878 0 0 72274 8380 0 0 69855 8303 0 0 2171 0 0 782 756 870 6633 0 0 3.00887 3.00887 -115.337 -3.00887 0 0 1.01997e+06 3529.29 0.36 0.06 0.12 -1 -1 0.36 0.0175912 0.0157979 73 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 9.20 vpr 53.61 MiB -1 -1 0.15 17216 1 0.01 -1 -1 29716 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54896 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 15.0 MiB 0.79 658 53.6 MiB 0.04 0.00 3.72678 -98.6793 -3.72678 3.72678 0.59 0.0001156 9.2385e-05 0.00857227 0.00708079 48 2329 28 6.95648e+06 231611 865456. 2994.66 5.69 0.129228 0.1129 28354 207349 -1 1706 23 1358 2302 232665 54823 0 0 232665 54823 2302 1851 0 0 8147 7093 0 0 15557 10162 0 0 2302 1986 0 0 100779 16162 0 0 103578 17569 0 0 2302 0 0 944 1226 1057 8415 0 0 4.22272 4.22272 -129.651 -4.22272 0 0 1.05005e+06 3633.38 0.44 0.08 0.20 -1 -1 0.44 0.0169529 0.0151778 68 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.32 vpr 53.95 MiB -1 -1 0.16 17588 1 0.01 -1 -1 29780 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55244 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 15.4 MiB 3.17 812 53.9 MiB 0.04 0.00 3.65675 -114.769 -3.65675 3.65675 0.60 0.000127404 0.000103056 0.00987623 0.00822129 44 2631 29 6.95648e+06 202660 787024. 2723.27 1.61 0.0592419 0.0510347 27778 195446 -1 1913 22 1495 2021 153370 32988 0 0 153370 32988 2021 1718 0 0 6404 5643 0 0 11003 7363 0 0 2021 1759 0 0 65697 8393 0 0 66224 8112 0 0 2021 0 0 526 556 531 4914 0 0 3.66536 3.66536 -129.872 -3.66536 0 0 997811. 3452.63 0.27 0.04 0.18 -1 -1 0.27 0.0107083 0.00960322 78 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 8.41 vpr 54.17 MiB -1 -1 0.17 17588 1 0.02 -1 -1 29744 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55472 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 15.4 MiB 1.98 793 54.2 MiB 0.04 0.00 2.6818 -93.1302 -2.6818 2.6818 0.59 0.00013438 0.00010867 0.00953706 0.00789721 40 2754 47 6.95648e+06 246087 706193. 2443.58 3.80 0.0900671 0.0784613 26914 176310 -1 2178 22 1529 2319 355383 110504 0 0 355383 110504 2319 1951 0 0 7912 6818 0 0 14643 9924 0 0 2319 2026 0 0 170517 45564 0 0 157673 44221 0 0 2319 0 0 790 1144 1025 7816 0 0 3.55387 3.55387 -137.793 -3.55387 0 0 926341. 3205.33 0.37 0.12 0.15 -1 -1 0.37 0.0219028 0.0196747 75 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.90 vpr 54.03 MiB -1 -1 0.15 17468 1 0.01 -1 -1 29736 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55328 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 15.6 MiB 1.09 948 54.0 MiB 0.11 0.00 3.54708 -116.454 -3.54708 3.54708 1.03 0.000258948 0.000210319 0.0237642 0.0196273 46 2600 24 6.95648e+06 376368 828058. 2865.25 4.25 0.138582 0.119307 28066 200906 -1 2124 24 1568 2238 183926 37207 0 0 183926 37207 2238 1842 0 0 6906 6079 0 0 11287 7531 0 0 2238 1933 0 0 78435 10488 0 0 82822 9334 0 0 2238 0 0 670 770 817 6173 0 0 3.86882 3.86882 -138.629 -3.86882 0 0 1.01997e+06 3529.29 0.40 0.07 0.15 -1 -1 0.40 0.0199864 0.0177009 83 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 8.23 vpr 53.77 MiB -1 -1 0.16 17632 1 0.01 -1 -1 29688 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55060 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 15.1 MiB 1.37 667 53.8 MiB 0.07 0.00 3.76413 -96.7364 -3.76413 3.76413 1.04 0.000213305 0.000173824 0.0160448 0.0132009 46 2318 43 6.95648e+06 318465 828058. 2865.25 3.26 0.101537 0.087751 28066 200906 -1 1723 22 1247 1925 154980 36310 0 0 154980 36310 1925 1617 0 0 5955 5140 0 0 10442 6691 0 0 1925 1726 0 0 65200 10483 0 0 69533 10653 0 0 1925 0 0 678 864 665 6072 0 0 3.83602 3.83602 -120.792 -3.83602 0 0 1.01997e+06 3529.29 0.42 0.07 0.18 -1 -1 0.42 0.0180251 0.016234 69 21 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 16.93 vpr 53.95 MiB -1 -1 0.15 17500 1 0.01 -1 -1 29700 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 15.4 MiB 3.02 772 54.0 MiB 0.04 0.00 3.53127 -107.031 -3.53127 3.53127 0.61 0.000121536 9.7625e-05 0.00837355 0.00704446 40 2694 49 6.95648e+06 188184 706193. 2443.58 11.35 0.202732 0.178732 26914 176310 -1 2068 24 2032 2693 269810 58593 0 0 269810 58593 2693 2363 0 0 9057 7862 0 0 16529 10719 0 0 2693 2419 0 0 112813 18564 0 0 126025 16666 0 0 2693 0 0 661 787 752 6231 0 0 4.06362 4.06362 -138.602 -4.06362 0 0 926341. 3205.33 0.25 0.09 0.14 -1 -1 0.25 0.0193802 0.0173533 79 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 8.71 vpr 54.13 MiB -1 -1 0.16 17616 1 0.02 -1 -1 29812 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55432 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 15.7 MiB 1.39 895 54.1 MiB 0.08 0.00 3.62077 -114.441 -3.62077 3.62077 0.62 0.000241779 0.000195965 0.0195289 0.015965 48 2649 30 6.95648e+06 217135 865456. 2994.66 4.35 0.122396 0.106717 28354 207349 -1 2109 23 1738 2694 259664 55283 0 0 259664 55283 2694 2356 0 0 9077 8025 0 0 16424 10809 0 0 2694 2512 0 0 111830 15208 0 0 116945 16373 0 0 2694 0 0 956 1139 1100 8339 0 0 4.1683 4.1683 -138.358 -4.1683 0 0 1.05005e+06 3633.38 0.42 0.09 0.19 -1 -1 0.42 0.0204683 0.0183702 85 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 8.71 vpr 54.10 MiB -1 -1 0.16 17568 1 0.01 -1 -1 29708 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55400 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 15.6 MiB 2.62 922 54.1 MiB 0.05 0.00 3.495 -112.016 -3.495 3.495 0.59 0.000132264 0.000105108 0.0124419 0.0102163 44 2868 32 6.95648e+06 188184 787024. 2723.27 3.40 0.0840977 0.0706943 27778 195446 -1 2218 21 1674 2784 230648 47124 0 0 230648 47124 2784 2236 0 0 8545 7669 0 0 15753 9988 0 0 2784 2348 0 0 101741 12559 0 0 99041 12324 0 0 2784 0 0 1110 1008 1106 8324 0 0 4.14472 4.14472 -140.875 -4.14472 0 0 997811. 3452.63 0.40 0.08 0.18 -1 -1 0.40 0.0191894 0.0171901 76 74 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.60 vpr 53.42 MiB -1 -1 0.14 17092 1 0.01 -1 -1 29772 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 14.8 MiB 0.32 595 53.4 MiB 0.07 0.00 2.50468 -76.3166 -2.50468 2.50468 1.05 0.000176197 0.000140042 0.0144103 0.011814 46 1328 20 6.95648e+06 260562 828058. 2865.25 3.80 0.0961587 0.0820761 28066 200906 -1 1123 20 797 1146 66735 16040 0 0 66735 16040 1146 858 0 0 3618 3066 0 0 5788 4033 0 0 1146 915 0 0 27086 3454 0 0 27951 3714 0 0 1146 0 0 349 253 376 3064 0 0 2.97862 2.97862 -95.4369 -2.97862 0 0 1.01997e+06 3529.29 0.40 0.04 0.17 -1 -1 0.40 0.0122086 0.0109463 57 20 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 19.20 vpr 54.05 MiB -1 -1 0.15 17444 1 0.01 -1 -1 29844 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55352 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 15.5 MiB 1.81 717 54.1 MiB 0.07 0.00 3.12585 -110.981 -3.12585 3.12585 1.02 0.000239599 0.000196929 0.017097 0.0141391 44 2658 38 6.95648e+06 173708 787024. 2723.27 13.90 0.182535 0.158913 27778 195446 -1 1915 21 1553 2199 213317 43949 0 0 213317 43949 2199 1915 0 0 6652 5980 0 0 11754 7678 0 0 2199 1953 0 0 106219 11408 0 0 84294 15015 0 0 2199 0 0 646 647 588 5372 0 0 3.57622 3.57622 -137.547 -3.57622 0 0 997811. 3452.63 0.33 0.08 0.16 -1 -1 0.33 0.0180417 0.016122 76 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 10.05 vpr 54.23 MiB -1 -1 0.16 17844 1 0.01 -1 -1 29860 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55528 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 15.7 MiB 2.32 1163 54.2 MiB 0.11 0.00 4.09082 -131.665 -4.09082 4.09082 1.04 0.000267694 0.000219616 0.0246499 0.0204429 46 3361 24 6.95648e+06 231611 828058. 2865.25 4.06 0.13567 0.119125 28066 200906 -1 2593 21 2074 3087 267532 53668 0 0 267532 53668 3087 2400 0 0 9423 8240 0 0 16787 10582 0 0 3087 2549 0 0 118747 15494 0 0 116401 14403 0 0 3087 0 0 1013 1034 817 8369 0 0 4.63216 4.63216 -159.587 -4.63216 0 0 1.01997e+06 3529.29 0.43 0.10 0.19 -1 -1 0.43 0.0257363 0.0234789 97 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.24 vpr 53.85 MiB -1 -1 0.16 17680 1 0.01 -1 -1 29732 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55140 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 15.3 MiB 0.79 737 53.8 MiB 0.05 0.00 3.65681 -116.442 -3.65681 3.65681 0.60 0.000126652 0.000100922 0.011481 0.00944444 44 2305 38 6.95648e+06 246087 787024. 2723.27 3.81 0.0992854 0.0848593 27778 195446 -1 1663 21 1431 1921 161204 35503 0 0 161204 35503 1921 1629 0 0 6254 5454 0 0 11008 7579 0 0 1921 1700 0 0 68248 9921 0 0 71852 9220 0 0 1921 0 0 490 431 598 4838 0 0 3.38676 3.38676 -130.506 -3.38676 0 0 997811. 3452.63 0.38 0.06 0.18 -1 -1 0.38 0.0162433 0.0145412 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.86 vpr 53.69 MiB -1 -1 0.17 17280 1 0.01 -1 -1 29736 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54976 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 15.2 MiB 0.41 600 53.7 MiB 0.06 0.00 2.4249 -80.7573 -2.4249 2.4249 0.88 0.000187775 0.000153443 0.0134487 0.0111362 38 1893 40 6.95648e+06 289514 678818. 2348.85 2.60 0.0791155 0.0686946 26626 170182 -1 1274 24 1095 1713 120604 28895 0 0 120604 28895 1713 1325 0 0 5589 4847 0 0 9753 6682 0 0 1713 1480 0 0 51649 7515 0 0 50187 7046 0 0 1713 0 0 618 699 794 5662 0 0 3.30942 3.30942 -109.655 -3.30942 0 0 902133. 3121.57 0.35 0.05 0.16 -1 -1 0.35 0.0159051 0.0140903 62 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 10.02 vpr 54.36 MiB -1 -1 0.18 17736 1 0.02 -1 -1 29848 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55664 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 15.7 MiB 2.12 1146 54.4 MiB 0.12 0.00 4.96239 -146.728 -4.96239 4.96239 1.04 0.00029346 0.000240279 0.0290532 0.0241833 46 2817 46 6.95648e+06 217135 828058. 2865.25 4.20 0.154603 0.134849 28066 200906 -1 2328 25 2101 3034 221383 50396 0 0 221383 50396 3034 2499 0 0 9427 8462 0 0 16499 10657 0 0 3034 2628 0 0 93316 14767 0 0 96073 11383 0 0 3034 0 0 933 966 941 8236 0 0 5.10115 5.10115 -170.375 -5.10115 0 0 1.01997e+06 3529.29 0.43 0.09 0.18 -1 -1 0.43 0.0255574 0.0229894 95 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.61 vpr 53.90 MiB -1 -1 0.15 17680 1 0.01 -1 -1 29708 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 15.3 MiB 1.49 811 53.9 MiB 0.10 0.00 3.8351 -110.429 -3.8351 3.8351 0.81 0.000238366 0.000193032 0.0203215 0.016706 38 2158 32 6.95648e+06 332941 678818. 2348.85 1.96 0.0875656 0.0750575 26626 170182 -1 1821 22 1457 2162 156923 33690 0 0 156923 33690 2162 1602 0 0 6770 5897 0 0 11081 7438 0 0 2162 1728 0 0 68323 8583 0 0 66425 8442 0 0 2162 0 0 705 800 802 6887 0 0 4.00242 4.00242 -134.537 -4.00242 0 0 902133. 3121.57 0.37 0.07 0.16 -1 -1 0.37 0.0192449 0.0173229 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.27 vpr 53.27 MiB -1 -1 0.11 17056 1 0.01 -1 -1 29576 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54548 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 14.8 MiB 0.32 535 53.3 MiB 0.04 0.00 2.4091 -75.5035 -2.4091 2.4091 0.66 0.000107401 8.4857e-05 0.00786441 0.00646215 40 1542 31 6.95648e+06 188184 706193. 2443.58 2.31 0.063176 0.0541457 26914 176310 -1 1368 27 1222 1836 191127 67663 0 0 191127 67663 1836 1480 0 0 6405 5769 0 0 12789 8159 0 0 1836 1564 0 0 89137 25655 0 0 79124 25036 0 0 1836 0 0 614 563 806 5529 0 0 3.08992 3.08992 -100.195 -3.08992 0 0 926341. 3205.33 0.23 0.05 0.09 -1 -1 0.23 0.00873043 0.00772317 51 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 6.92 vpr 53.93 MiB -1 -1 0.13 17508 1 0.02 -1 -1 29704 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55228 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 15.4 MiB 0.52 1072 53.9 MiB 0.07 0.00 4.05287 -111.696 -4.05287 4.05287 0.71 0.000159574 0.000129417 0.0134951 0.0110696 40 2883 32 6.95648e+06 347416 706193. 2443.58 3.70 0.103995 0.0913188 26914 176310 -1 2468 24 1742 3091 309069 59327 0 0 309069 59327 3091 2210 0 0 10110 8676 0 0 19299 11789 0 0 3091 2414 0 0 136558 17428 0 0 136920 16810 0 0 3091 0 0 1349 2400 2281 14985 0 0 4.99986 4.99986 -151.369 -4.99986 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0200341 0.0179326 80 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.12 vpr 53.38 MiB -1 -1 0.13 16948 1 0.02 -1 -1 29668 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54664 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 14.8 MiB 1.23 516 53.4 MiB 0.03 0.00 2.4781 -80.6966 -2.4781 2.4781 0.73 9.3734e-05 7.4021e-05 0.00744285 0.0060709 44 1548 25 6.95648e+06 202660 787024. 2723.27 3.12 0.0582392 0.0490319 27778 195446 -1 1098 20 1133 1561 89862 23400 0 0 89862 23400 1561 1231 0 0 4954 4357 0 0 8303 5751 0 0 1561 1298 0 0 36771 5005 0 0 36712 5758 0 0 1561 0 0 428 451 329 3759 0 0 2.88957 2.88957 -101.974 -2.88957 0 0 997811. 3452.63 0.33 0.04 0.11 -1 -1 0.33 0.0102675 0.00926143 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.50 vpr 53.75 MiB -1 -1 0.17 17336 1 0.01 -1 -1 29720 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55036 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 15.2 MiB 0.86 591 53.7 MiB 0.07 0.00 2.93563 -88.6218 -2.93563 2.93563 1.01 0.000185985 0.000147915 0.0154951 0.0126269 38 2039 28 6.95648e+06 246087 678818. 2348.85 3.22 0.094225 0.0815827 26626 170182 -1 1542 27 1388 1992 160225 34858 0 0 160225 34858 1992 1646 0 0 6082 5346 0 0 10720 6688 0 0 1992 1721 0 0 69553 9748 0 0 69886 9709 0 0 1992 0 0 604 718 805 5969 0 0 3.15127 3.15127 -108.033 -3.15127 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0177942 0.0158533 60 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 10.06 vpr 54.03 MiB -1 -1 0.17 17464 1 0.01 -1 -1 29776 -1 -1 16 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55324 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 15.4 MiB 1.81 797 54.0 MiB 0.09 0.00 3.04378 -95.0414 -3.04378 3.04378 1.01 0.000248976 0.000202683 0.0226924 0.0187538 46 2575 26 6.95648e+06 231611 828058. 2865.25 4.79 0.155719 0.135064 28066 200906 -1 2016 23 1790 2653 231311 48830 0 0 231311 48830 2653 2266 0 0 8116 7254 0 0 14869 9179 0 0 2653 2335 0 0 96791 14634 0 0 106229 13162 0 0 2653 0 0 863 860 664 6766 0 0 3.76976 3.76976 -120.288 -3.76976 0 0 1.01997e+06 3529.29 0.40 0.08 0.18 -1 -1 0.40 0.0188667 0.0168273 80 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 7.57 vpr 53.94 MiB -1 -1 0.10 17556 1 0.01 -1 -1 29776 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55236 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 15.3 MiB 1.51 735 53.9 MiB 0.09 0.00 3.78498 -109.488 -3.78498 3.78498 1.05 0.000238586 0.000196142 0.0226509 0.0188942 40 2296 35 6.95648e+06 231611 706193. 2443.58 2.64 0.1196 0.103827 26914 176310 -1 1882 22 1568 2199 203432 45503 0 0 203432 45503 2199 1898 0 0 7574 6484 0 0 13383 8975 0 0 2199 1972 0 0 88215 12908 0 0 89862 13266 0 0 2199 0 0 631 688 611 5615 0 0 4.31542 4.31542 -144.133 -4.31542 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0201654 0.0181325 72 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 12.31 vpr 53.96 MiB -1 -1 0.16 17348 1 0.01 -1 -1 29696 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55260 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 15.4 MiB 2.34 693 54.0 MiB 0.06 0.00 3.69889 -112.465 -3.69889 3.69889 0.93 0.000226667 0.000181248 0.0140421 0.0116028 58 1835 21 6.95648e+06 202660 997811. 3452.63 6.44 0.14453 0.1249 30370 251734 -1 1413 19 1126 1767 127922 30143 0 0 127922 30143 1767 1417 0 0 5920 5127 0 0 10192 7085 0 0 1767 1523 0 0 52365 7021 0 0 55911 7970 0 0 1767 0 0 641 662 680 5416 0 0 3.78146 3.78146 -123.857 -3.78146 0 0 1.25153e+06 4330.55 0.48 0.05 0.24 -1 -1 0.48 0.016899 0.0152696 73 48 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 15.57 vpr 53.54 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29640 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54824 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 15.0 MiB 2.47 697 53.5 MiB 0.04 0.00 3.30448 -105.071 -3.30448 3.30448 0.83 0.000103637 8.3616e-05 0.00800029 0.00663803 40 2051 38 6.95648e+06 144757 706193. 2443.58 10.12 0.157943 0.137901 26914 176310 -1 1840 22 1313 1760 214226 51197 0 0 214226 51197 1760 1623 0 0 6227 5440 0 0 11654 7466 0 0 1760 1652 0 0 95584 18481 0 0 97241 16535 0 0 1760 0 0 447 532 475 4122 0 0 3.53352 3.53352 -124.09 -3.53352 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.00938531 0.00837778 61 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.07 vpr 53.79 MiB -1 -1 0.16 17460 1 0.02 -1 -1 29684 -1 -1 12 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55084 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 15.3 MiB 2.37 681 53.8 MiB 0.06 0.00 3.03002 -96.7398 -3.03002 3.03002 0.97 0.000189542 0.000152167 0.0139457 0.0115354 46 1956 27 6.95648e+06 173708 828058. 2865.25 2.37 0.0598418 0.0509894 28066 200906 -1 1363 20 1158 1701 116624 27405 0 0 116624 27405 1701 1490 0 0 5329 4756 0 0 8444 5806 0 0 1701 1518 0 0 48073 7419 0 0 51376 6416 0 0 1701 0 0 543 285 534 4149 0 0 3.45216 3.45216 -118.228 -3.45216 0 0 1.01997e+06 3529.29 0.38 0.05 0.17 -1 -1 0.38 0.0142837 0.0127837 68 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 6.78 vpr 53.82 MiB -1 -1 0.17 17508 1 0.02 -1 -1 29672 -1 -1 22 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55116 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 15.4 MiB 0.95 704 53.8 MiB 0.04 0.00 2.4971 -77.8648 -2.4971 2.4971 0.71 0.000123681 9.9409e-05 0.00931659 0.00776623 44 2052 48 6.95648e+06 318465 787024. 2723.27 2.98 0.09191 0.0786567 27778 195446 -1 1563 22 1068 1624 121830 27310 0 0 121830 27310 1624 1242 0 0 5512 4717 0 0 8849 6384 0 0 1624 1346 0 0 51339 6638 0 0 52882 6983 0 0 1624 0 0 556 596 649 5203 0 0 2.86137 2.86137 -97.5164 -2.86137 0 0 997811. 3452.63 0.32 0.03 0.18 -1 -1 0.32 0.00959242 0.00854693 71 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 6.67 vpr 53.66 MiB -1 -1 0.17 17556 1 0.01 -1 -1 29716 -1 -1 28 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 15.1 MiB 0.57 872 53.7 MiB 0.09 0.00 3.07194 -87.3504 -3.07194 3.07194 0.98 0.000190401 0.000157971 0.0180161 0.014859 36 2153 20 6.95648e+06 405319 648988. 2245.63 3.04 0.0872686 0.0759424 26050 158493 -1 1832 22 1257 1987 161411 33209 0 0 161411 33209 1987 1437 0 0 6536 5610 0 0 11116 7552 0 0 1987 1555 0 0 70569 8606 0 0 69216 8449 0 0 1987 0 0 730 976 1054 7365 0 0 3.69166 3.69166 -115.534 -3.69166 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00854333 0.00759208 72 20 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 8.74 vpr 53.82 MiB -1 -1 0.17 17572 1 0.02 -1 -1 29704 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55108 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 15.2 MiB 0.96 533 53.8 MiB 0.04 0.00 2.92163 -90.3796 -2.92163 2.92163 0.94 0.00011752 9.4178e-05 0.0105623 0.00870947 46 1667 38 6.95648e+06 173708 828058. 2865.25 4.53 0.114768 0.0984836 28066 200906 -1 1340 19 1302 1801 134501 33715 0 0 134501 33715 1801 1472 0 0 5687 5107 0 0 9501 6373 0 0 1801 1523 0 0 55513 9579 0 0 60198 9661 0 0 1801 0 0 499 525 438 4497 0 0 2.94267 2.94267 -110.524 -2.94267 0 0 1.01997e+06 3529.29 0.31 0.05 0.11 -1 -1 0.31 0.0134876 0.0120136 60 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.25 vpr 53.81 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29732 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55104 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 15.3 MiB 1.40 670 53.8 MiB 0.04 0.00 2.80395 -99.113 -2.80395 2.80395 0.60 0.000120521 9.6205e-05 0.0100141 0.0082274 50 2343 47 6.95648e+06 159232 902133. 3121.57 2.42 0.0903735 0.0776794 28642 213929 -1 1828 20 1551 2225 185960 45504 0 0 185960 45504 2225 1802 0 0 7392 6545 0 0 13501 8766 0 0 2225 1829 0 0 76450 13715 0 0 84167 12847 0 0 2225 0 0 674 683 396 5326 0 0 3.49016 3.49016 -126.573 -3.49016 0 0 1.08113e+06 3740.92 0.28 0.05 0.12 -1 -1 0.28 0.0123223 0.0110204 72 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 6.60 vpr 53.65 MiB -1 -1 0.16 17336 1 0.01 -1 -1 29692 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 14.9 MiB 0.54 708 53.7 MiB 0.09 0.00 3.86008 -100.949 -3.86008 3.86008 0.99 0.00020616 0.000162583 0.0165047 0.0134795 48 1910 21 6.95648e+06 347416 865456. 2994.66 2.58 0.0914799 0.0792911 28354 207349 -1 1618 20 1079 1742 137431 32428 0 0 137431 32428 1742 1393 0 0 5998 4993 0 0 10889 7266 0 0 1742 1511 0 0 58493 8587 0 0 58567 8678 0 0 1742 0 0 663 753 716 5712 0 0 4.04847 4.04847 -117.76 -4.04847 0 0 1.05005e+06 3633.38 0.40 0.05 0.19 -1 -1 0.40 0.0139535 0.0125011 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 5.52 vpr 54.09 MiB -1 -1 0.16 17468 1 0.02 -1 -1 29812 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55392 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 15.5 MiB 1.55 1014 54.1 MiB 0.05 0.00 3.69477 -123.999 -3.69477 3.69477 0.60 0.000139625 0.00011384 0.0121457 0.0100472 48 2919 31 6.95648e+06 188184 865456. 2994.66 1.57 0.0560951 0.0480924 28354 207349 -1 2384 20 1651 2383 218270 44458 0 0 218270 44458 2383 1981 0 0 7984 7049 0 0 14072 9407 0 0 2383 2070 0 0 95453 11969 0 0 95995 11982 0 0 2383 0 0 732 703 715 5997 0 0 4.25156 4.25156 -151.272 -4.25156 0 0 1.05005e+06 3633.38 0.29 0.05 0.12 -1 -1 0.29 0.0114494 0.0103304 82 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 19.54 vpr 54.01 MiB -1 -1 0.18 17352 1 0.01 -1 -1 29744 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55308 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 15.6 MiB 1.40 832 54.0 MiB 0.11 0.00 3.62123 -110.719 -3.62123 3.62123 1.01 0.000240367 0.000194268 0.0232552 0.0191814 44 2668 47 6.95648e+06 347416 787024. 2723.27 14.54 0.192329 0.166254 27778 195446 -1 2017 24 1697 2788 264945 55162 0 0 264945 55162 2788 2195 0 0 8503 7579 0 0 17205 10255 0 0 2788 2305 0 0 110302 17473 0 0 123359 15355 0 0 2788 0 0 1091 1326 1211 9596 0 0 3.87666 3.87666 -139.562 -3.87666 0 0 997811. 3452.63 0.42 0.09 0.19 -1 -1 0.42 0.0231095 0.0207146 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 8.25 vpr 54.12 MiB -1 -1 0.15 17340 1 0.02 -1 -1 29644 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55420 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 15.7 MiB 0.75 888 54.1 MiB 0.04 0.00 3.31672 -108.057 -3.31672 3.31672 0.62 0.000131751 0.000104335 0.00898099 0.00745604 46 2885 34 6.95648e+06 332941 828058. 2865.25 4.75 0.144248 0.12432 28066 200906 -1 2136 20 1665 2704 248110 53329 0 0 248110 53329 2704 2303 0 0 8260 7373 0 0 13754 9029 0 0 2704 2379 0 0 102438 17008 0 0 118250 15237 0 0 2704 0 0 1039 1208 896 8783 0 0 4.09166 4.09166 -142.091 -4.09166 0 0 1.01997e+06 3529.29 0.42 0.09 0.20 -1 -1 0.42 0.0203725 0.018334 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.94 vpr 53.57 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29812 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54860 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 15.2 MiB 0.95 619 53.6 MiB 0.05 0.00 2.97316 -86.1705 -2.97316 2.97316 1.01 0.000180514 0.000144817 0.0118609 0.00979124 38 2040 23 6.95648e+06 173708 678818. 2348.85 1.64 0.0600369 0.0518117 26626 170182 -1 1522 22 1202 1873 134205 29343 0 0 134205 29343 1873 1576 0 0 5626 4892 0 0 9283 6058 0 0 1873 1715 0 0 56986 7497 0 0 58564 7605 0 0 1873 0 0 671 813 716 5559 0 0 3.31047 3.31047 -112.597 -3.31047 0 0 902133. 3121.57 0.35 0.05 0.16 -1 -1 0.35 0.0146391 0.0131089 57 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.84 vpr 54.11 MiB -1 -1 0.17 17532 1 0.01 -1 -1 29724 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55412 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 15.5 MiB 1.15 624 54.1 MiB 0.07 0.00 3.71763 -109.951 -3.71763 3.71763 0.75 0.000251051 0.000205082 0.0179662 0.0149279 48 1875 25 6.95648e+06 202660 865456. 2994.66 4.46 0.150664 0.129387 28354 207349 -1 1550 23 1719 2329 181014 45925 0 0 181014 45925 2329 2055 0 0 7854 6914 0 0 13529 9382 0 0 2329 2120 0 0 73596 12871 0 0 81377 12583 0 0 2329 0 0 610 735 597 5653 0 0 4.40727 4.40727 -138.148 -4.40727 0 0 1.05005e+06 3633.38 0.44 0.06 0.18 -1 -1 0.44 0.0149786 0.0135411 76 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 10.58 vpr 53.94 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29724 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55232 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 15.3 MiB 1.62 831 53.9 MiB 0.09 0.00 4.0079 -118.65 -4.0079 4.0079 0.96 0.000241014 0.000199134 0.0200033 0.0165507 48 2485 34 6.95648e+06 202660 865456. 2994.66 5.48 0.183435 0.159948 28354 207349 -1 2020 23 1792 2728 237768 53570 0 0 237768 53570 2728 2342 0 0 8985 7959 0 0 17643 11042 0 0 2728 2459 0 0 95978 15338 0 0 109706 14430 0 0 2728 0 0 936 1208 1373 9817 0 0 4.17991 4.17991 -142.159 -4.17991 0 0 1.05005e+06 3633.38 0.42 0.09 0.18 -1 -1 0.42 0.02143 0.0193363 80 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.51 vpr 54.18 MiB -1 -1 0.17 17588 1 0.02 -1 -1 29732 -1 -1 14 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55484 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 15.4 MiB 2.25 789 54.2 MiB 0.07 0.00 4.65305 -124.989 -4.65305 4.65305 0.96 0.000226813 0.00018486 0.0190389 0.015827 46 2382 23 6.95648e+06 202660 828058. 2865.25 3.14 0.106759 0.093267 28066 200906 -1 1738 24 1249 1877 143234 32202 0 0 143234 32202 1877 1434 0 0 6048 5356 0 0 10251 6967 0 0 1877 1541 0 0 59022 8984 0 0 64159 7920 0 0 1877 0 0 628 569 687 5331 0 0 4.68631 4.68631 -143.556 -4.68631 0 0 1.01997e+06 3529.29 0.25 0.04 0.11 -1 -1 0.25 0.0115742 0.01038 79 43 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 6.93 vpr 53.88 MiB -1 -1 0.15 17468 1 0.02 -1 -1 29844 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55176 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 15.2 MiB 2.04 915 53.9 MiB 0.09 0.00 3.74802 -120.904 -3.74802 3.74802 0.82 0.000168601 0.000138528 0.0142514 0.0118021 42 2509 45 6.95648e+06 303989 744469. 2576.02 1.77 0.0831989 0.0723755 27202 183097 -1 2016 25 1337 1990 172596 34300 0 0 172596 34300 1990 1685 0 0 6421 5549 0 0 11221 7560 0 0 1990 1772 0 0 75773 8713 0 0 75201 9021 0 0 1990 0 0 653 643 851 5867 0 0 3.56056 3.56056 -133.953 -3.56056 0 0 949917. 3286.91 0.38 0.07 0.17 -1 -1 0.38 0.0200614 0.0178308 74 78 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 17.89 vpr 53.89 MiB -1 -1 0.17 17352 1 0.01 -1 -1 29712 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55188 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 15.3 MiB 1.36 741 53.9 MiB 0.07 0.00 3.75683 -113.635 -3.75683 3.75683 1.03 0.000249051 0.000203454 0.0158114 0.0133469 44 2530 32 6.95648e+06 188184 787024. 2723.27 12.98 0.176653 0.153584 27778 195446 -1 1808 21 1585 2664 201252 43920 0 0 201252 43920 2664 2057 0 0 7924 6918 0 0 14031 8980 0 0 2664 2147 0 0 89626 11197 0 0 84343 12621 0 0 2664 0 0 1079 1034 979 8140 0 0 4.06946 4.06946 -137.548 -4.06946 0 0 997811. 3452.63 0.40 0.07 0.18 -1 -1 0.40 0.0196718 0.0176928 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 9.00 vpr 54.02 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29744 -1 -1 16 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55316 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 15.4 MiB 1.38 736 54.0 MiB 0.06 0.00 3.52027 -107.674 -3.52027 3.52027 0.95 0.000234095 0.00018972 0.0161631 0.0133269 36 2861 37 6.95648e+06 231611 648988. 2245.63 4.30 0.132814 0.1172 26050 158493 -1 2119 21 1560 2330 236702 50104 0 0 236702 50104 2330 1946 0 0 7538 6661 0 0 12857 8791 0 0 2330 2080 0 0 109953 15383 0 0 101694 15243 0 0 2330 0 0 770 901 867 6628 0 0 3.94732 3.94732 -135.777 -3.94732 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0202095 0.0181466 73 79 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 12.81 vpr 53.39 MiB -1 -1 0.15 16904 1 0.02 -1 -1 29632 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54668 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 14.8 MiB 1.11 589 53.4 MiB 0.05 0.00 2.91658 -85.9297 -2.91658 2.91658 0.95 0.000165453 0.000133668 0.0123852 0.0102462 40 1558 35 6.95648e+06 144757 706193. 2443.58 8.41 0.179847 0.159253 26914 176310 -1 1271 20 948 1379 115011 28308 0 0 115011 28308 1379 1223 0 0 4875 4234 0 0 8793 5923 0 0 1379 1250 0 0 47375 8140 0 0 51210 7538 0 0 1379 0 0 431 304 489 3543 0 0 3.13067 3.13067 -108.133 -3.13067 0 0 926341. 3205.33 0.38 0.06 0.17 -1 -1 0.38 0.014797 0.0134089 53 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 20.09 vpr 53.95 MiB -1 -1 0.14 17340 1 0.01 -1 -1 29828 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55240 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 15.4 MiB 3.45 778 53.9 MiB 0.09 0.00 4.03466 -110.618 -4.03466 4.03466 1.01 0.000237159 0.000190301 0.0196661 0.0160319 46 2485 47 6.95648e+06 332941 828058. 2865.25 13.32 0.219057 0.190205 28066 200906 -1 1859 21 1345 2150 196169 41490 0 0 196169 41490 2150 1665 0 0 6652 5836 0 0 11738 7549 0 0 2150 1753 0 0 85205 12135 0 0 88274 12552 0 0 2150 0 0 805 943 953 7149 0 0 3.92886 3.92886 -134.978 -3.92886 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0147164 0.0131105 76 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 8.10 vpr 54.11 MiB -1 -1 0.16 17632 1 0.01 -1 -1 29768 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55412 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 15.7 MiB 0.78 698 54.1 MiB 0.04 0.00 3.62238 -115.71 -3.62238 3.62238 0.62 0.000132138 0.000104876 0.0086865 0.00725646 46 2703 39 6.95648e+06 188184 828058. 2865.25 4.36 0.106007 0.0905628 28066 200906 -1 1896 25 2042 2945 225039 54801 0 0 225039 54801 2945 2542 0 0 8813 7865 0 0 15199 9745 0 0 2945 2607 0 0 93699 16121 0 0 101438 15921 0 0 2945 0 0 903 909 1011 7980 0 0 4.29196 4.29196 -151.9 -4.29196 0 0 1.01997e+06 3529.29 0.40 0.05 0.19 -1 -1 0.40 0.0129833 0.0115168 78 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 6.13 vpr 53.60 MiB -1 -1 0.16 17488 1 0.01 -1 -1 29716 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 15.1 MiB 1.82 696 53.6 MiB 0.04 0.00 3.40598 -99.7982 -3.40598 3.40598 0.59 9.8444e-05 7.8572e-05 0.00952189 0.00777567 38 2592 32 6.95648e+06 159232 678818. 2348.85 2.05 0.0505279 0.042993 26626 170182 -1 1704 22 1289 1657 140619 30958 0 0 140619 30958 1657 1522 0 0 5224 4602 0 0 9070 5950 0 0 1657 1537 0 0 60869 8506 0 0 62142 8841 0 0 1657 0 0 368 382 396 3587 0 0 3.52322 3.52322 -120.515 -3.52322 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.00886983 0.00792058 68 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 6.47 vpr 53.48 MiB -1 -1 0.15 17000 1 0.01 -1 -1 29624 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54768 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 14.9 MiB 1.20 514 53.5 MiB 0.03 0.00 2.78823 -83.9509 -2.78823 2.78823 0.60 9.5441e-05 7.577e-05 0.00753009 0.00618261 44 1671 21 6.95648e+06 188184 787024. 2723.27 2.72 0.0583555 0.0496618 27778 195446 -1 1225 21 1084 1529 109833 26648 0 0 109833 26648 1529 1228 0 0 5029 4481 0 0 8817 6121 0 0 1529 1315 0 0 46172 6338 0 0 46757 7165 0 0 1529 0 0 445 445 355 3828 0 0 2.83642 2.83642 -104.562 -2.83642 0 0 997811. 3452.63 0.30 0.03 0.11 -1 -1 0.30 0.0084956 0.00761619 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 10.57 vpr 53.97 MiB -1 -1 0.12 17684 1 0.02 -1 -1 29644 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55264 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 15.3 MiB 1.74 891 54.0 MiB 0.10 0.00 3.75407 -125.263 -3.75407 3.75407 0.94 0.000226678 0.00018584 0.0230298 0.0190751 46 2592 23 6.95648e+06 217135 828058. 2865.25 5.41 0.163807 0.141593 28066 200906 -1 2059 23 1920 2529 209636 44691 0 0 209636 44691 2529 2167 0 0 7835 7046 0 0 13641 8795 0 0 2529 2242 0 0 90189 12387 0 0 92913 12054 0 0 2529 0 0 609 509 587 5486 0 0 4.25921 4.25921 -150.551 -4.25921 0 0 1.01997e+06 3529.29 0.42 0.09 0.20 -1 -1 0.42 0.023203 0.0210322 85 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 6.79 vpr 53.93 MiB -1 -1 0.16 17632 1 0.01 -1 -1 29652 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55220 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 15.3 MiB 0.80 948 53.9 MiB 0.07 0.00 4.05782 -123.881 -4.05782 4.05782 0.98 0.000216537 0.000173736 0.0162785 0.0133509 40 3129 47 6.95648e+06 202660 706193. 2443.58 2.98 0.0972719 0.0840097 26914 176310 -1 2283 22 1805 2507 240987 52267 0 0 240987 52267 2507 2187 0 0 8601 7551 0 0 15584 10471 0 0 2507 2208 0 0 101247 15490 0 0 110541 14360 0 0 2507 0 0 702 859 723 6683 0 0 4.97326 4.97326 -158.84 -4.97326 0 0 926341. 3205.33 0.24 0.08 0.10 -1 -1 0.24 0.0190714 0.0171203 82 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 6.66 vpr 53.98 MiB -1 -1 0.17 17248 1 0.01 -1 -1 29780 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55276 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 15.3 MiB 0.51 877 54.0 MiB 0.09 0.00 4.04672 -117.123 -4.04672 4.04672 0.85 0.000230938 0.000188982 0.0219249 0.0181212 46 2511 31 6.95648e+06 246087 828058. 2865.25 2.90 0.100237 0.0866359 28066 200906 -1 1844 20 1454 2462 160547 40002 0 0 160547 40002 2462 1931 0 0 8136 7195 0 0 13113 9238 0 0 2462 2049 0 0 66828 9903 0 0 67546 9686 0 0 2462 0 0 1008 1271 1347 9290 0 0 4.43176 4.43176 -142.055 -4.43176 0 0 1.01997e+06 3529.29 0.41 0.07 0.19 -1 -1 0.41 0.0194943 0.0176464 83 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.84 vpr 53.85 MiB -1 -1 0.17 17680 1 0.01 -1 -1 29704 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55144 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 15.1 MiB 0.78 713 53.9 MiB 0.07 0.00 2.79923 -80.772 -2.79923 2.79923 0.63 0.000208259 0.000169824 0.0150205 0.0124755 38 2493 48 6.95648e+06 303989 678818. 2348.85 4.37 0.119295 0.102961 26626 170182 -1 1741 20 1489 2372 179694 38230 0 0 179694 38230 2372 1897 0 0 7067 6199 0 0 11159 7466 0 0 2372 2067 0 0 76487 10266 0 0 80237 10335 0 0 2372 0 0 883 1012 1138 7631 0 0 2.97097 2.97097 -103.888 -2.97097 0 0 902133. 3121.57 0.34 0.09 0.14 -1 -1 0.34 0.0173005 0.0156274 69 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 8.10 vpr 53.51 MiB -1 -1 0.16 17012 1 0.02 -1 -1 29764 -1 -1 14 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 14.9 MiB 0.63 413 53.5 MiB 0.05 0.00 2.4231 -71.4569 -2.4231 2.4231 0.86 0.000195317 0.000156879 0.0132653 0.0109216 40 1313 27 6.95648e+06 202660 706193. 2443.58 4.15 0.099928 0.084595 26914 176310 -1 1051 27 1136 1442 204038 87354 0 0 204038 87354 1442 1327 0 0 5157 4433 0 0 9300 6456 0 0 1442 1344 0 0 99500 37571 0 0 87197 36223 0 0 1442 0 0 306 282 356 3068 0 0 3.24222 3.24222 -97.542 -3.24222 0 0 926341. 3205.33 0.36 0.11 0.16 -1 -1 0.36 0.0159833 0.0141971 54 26 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 12.82 vpr 54.56 MiB -1 -1 0.15 17756 1 0.02 -1 -1 29760 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55872 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 16.0 MiB 1.43 945 54.6 MiB 0.10 0.00 3.20225 -108.056 -3.20225 3.20225 0.83 0.00025278 0.000202776 0.0253916 0.0208711 56 2910 37 6.95648e+06 231611 973134. 3367.25 7.89 0.22567 0.196182 29794 239141 -1 2200 21 1867 2966 221895 53535 0 0 221895 53535 2966 2217 0 0 9759 8526 0 0 18069 11662 0 0 2966 2639 0 0 91752 14920 0 0 96383 13571 0 0 2966 0 0 1099 1258 1162 9321 0 0 3.93436 3.93436 -134.868 -3.93436 0 0 1.19926e+06 4149.71 0.48 0.08 0.24 -1 -1 0.48 0.0220255 0.0198102 95 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 15.09 vpr 54.08 MiB -1 -1 0.11 17628 1 0.01 -1 -1 29780 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55376 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 15.5 MiB 3.55 1034 54.1 MiB 0.05 0.00 4.4652 -129.112 -4.4652 4.4652 0.63 0.000127033 0.00010182 0.0115803 0.00954456 38 2526 33 6.95648e+06 217135 678818. 2348.85 8.94 0.16287 0.141078 26626 170182 -1 2220 24 1849 2785 273039 52911 0 0 273039 52911 2785 2460 0 0 8525 7574 0 0 15806 9717 0 0 2785 2503 0 0 118784 16130 0 0 124354 14527 0 0 2785 0 0 936 1257 1267 8883 0 0 4.54496 4.54496 -152.985 -4.54496 0 0 902133. 3121.57 0.36 0.09 0.16 -1 -1 0.36 0.0194109 0.0172189 82 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 10.20 vpr 53.90 MiB -1 -1 0.17 17284 1 0.01 -1 -1 29688 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 15.5 MiB 2.38 724 53.9 MiB 0.04 0.00 3.05184 -103.821 -3.05184 3.05184 0.60 0.000111528 8.8438e-05 0.0102638 0.00840041 42 2561 46 6.95648e+06 159232 744469. 2576.02 5.28 0.156059 0.136418 27202 183097 -1 1832 22 1398 1985 247039 68554 0 0 247039 68554 1985 1686 0 0 6550 5662 0 0 12124 7856 0 0 1985 1750 0 0 116332 25860 0 0 108063 25740 0 0 1985 0 0 587 536 467 4989 0 0 3.83726 3.83726 -137.262 -3.83726 0 0 949917. 3286.91 0.33 0.05 0.17 -1 -1 0.33 0.0101849 0.00908071 70 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 10.04 vpr 53.86 MiB -1 -1 0.12 17444 1 0.01 -1 -1 29704 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 15.4 MiB 0.43 784 53.9 MiB 0.10 0.00 3.48277 -101.047 -3.48277 3.48277 1.05 0.000238133 0.000193961 0.0203612 0.0169414 46 2430 46 6.95648e+06 318465 828058. 2865.25 6.31 0.153233 0.132747 28066 200906 -1 1676 22 1328 2016 140615 32161 0 0 140615 32161 2016 1519 0 0 6241 5432 0 0 10300 6888 0 0 2016 1630 0 0 58509 8298 0 0 61533 8394 0 0 2016 0 0 688 518 755 5759 0 0 3.65916 3.65916 -119.327 -3.65916 0 0 1.01997e+06 3529.29 0.26 0.04 0.11 -1 -1 0.26 0.01109 0.00986956 74 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.63 vpr 54.08 MiB -1 -1 0.14 17444 1 0.02 -1 -1 29812 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55376 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 15.7 MiB 1.02 1005 54.1 MiB 0.10 0.00 3.78193 -116.027 -3.78193 3.78193 1.04 0.000261971 0.000213966 0.0209559 0.0173757 36 2783 28 6.95648e+06 361892 648988. 2245.63 2.44 0.0819378 0.070925 26050 158493 -1 2307 23 1742 2605 214126 44107 0 0 214126 44107 2605 1979 0 0 8424 7143 0 0 13780 9500 0 0 2605 2150 0 0 93454 11867 0 0 93258 11468 0 0 2605 0 0 863 914 1064 8104 0 0 3.95437 3.95437 -139.372 -3.95437 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.011511 0.0102518 83 46 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 9.36 vpr 53.85 MiB -1 -1 0.15 17632 1 0.01 -1 -1 29852 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55144 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 15.4 MiB 1.27 814 53.9 MiB 0.06 0.00 2.87605 -86.2274 -2.87605 2.87605 1.03 0.000221723 0.000180474 0.0148241 0.0123441 44 2305 25 6.95648e+06 231611 787024. 2723.27 4.55 0.133913 0.115927 27778 195446 -1 1790 20 1339 2148 160888 34547 0 0 160888 34547 2148 1777 0 0 6795 5992 0 0 12313 8004 0 0 2148 1965 0 0 66777 8805 0 0 70707 8004 0 0 2148 0 0 809 807 917 6723 0 0 2.90357 2.90357 -104.39 -2.90357 0 0 997811. 3452.63 0.42 0.06 0.19 -1 -1 0.42 0.0166326 0.0149192 68 46 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 24.89 vpr 54.08 MiB -1 -1 0.17 17348 1 0.02 -1 -1 29720 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55376 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 15.4 MiB 1.77 893 54.1 MiB 0.06 0.00 3.74967 -123.553 -3.74967 3.74967 0.89 0.000139873 0.00011301 0.013853 0.0116842 54 2931 31 6.95648e+06 202660 949917. 3286.91 19.66 0.208094 0.18263 29506 232905 -1 2050 25 2027 2994 270833 59142 0 0 270833 59142 2994 2339 0 0 9334 8319 0 0 17679 10908 0 0 2994 2593 0 0 115545 18002 0 0 122287 16981 0 0 2994 0 0 967 858 905 7720 0 0 4.5566 4.5566 -148.656 -4.5566 0 0 1.17392e+06 4061.99 0.46 0.10 0.23 -1 -1 0.46 0.0234133 0.0211707 88 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 4.67 vpr 54.12 MiB -1 -1 0.14 17464 1 0.01 -1 -1 29668 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55420 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 15.4 MiB 0.94 796 54.1 MiB 0.04 0.00 3.82593 -122.096 -3.82593 3.82593 0.58 0.000130285 0.000103283 0.00973925 0.00802868 44 2376 33 6.95648e+06 260562 787024. 2723.27 1.39 0.051439 0.0435763 27778 195446 -1 1848 20 1406 1938 144915 33450 0 0 144915 33450 1938 1618 0 0 6346 5638 0 0 10512 7398 0 0 1938 1754 0 0 66741 7537 0 0 57440 9505 0 0 1938 0 0 532 377 596 4673 0 0 3.89702 3.89702 -138.145 -3.89702 0 0 997811. 3452.63 0.26 0.04 0.10 -1 -1 0.26 0.0107494 0.00962263 80 59 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 11.12 vpr 53.39 MiB -1 -1 0.11 17468 1 0.01 -1 -1 29764 -1 -1 12 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 14.8 MiB 5.03 544 53.4 MiB 0.06 0.00 3.14061 -84.355 -3.14061 3.14061 0.92 0.000186099 0.000150053 0.0145166 0.0120289 34 1636 26 6.95648e+06 173708 618332. 2139.56 3.34 0.119238 0.104092 25762 151098 -1 1373 22 1073 1419 135448 33015 0 0 135448 33015 1419 1208 0 0 4788 4054 0 0 7773 5536 0 0 1419 1239 0 0 59988 10808 0 0 60061 10170 0 0 1419 0 0 346 477 473 3525 0 0 3.12202 3.12202 -107.8 -3.12202 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0141447 0.0126044 53 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 7.67 vpr 53.59 MiB -1 -1 0.16 17596 1 0.01 -1 -1 29664 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54880 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 15.0 MiB 1.43 690 53.6 MiB 0.05 0.00 3.06285 -102.823 -3.06285 3.06285 1.02 0.000216701 0.00017556 0.0132932 0.0110655 46 2191 36 6.95648e+06 159232 828058. 2865.25 2.81 0.108597 0.0952322 28066 200906 -1 1530 21 1169 1496 115649 26501 0 0 115649 26501 1496 1350 0 0 4832 4301 0 0 7639 5293 0 0 1496 1412 0 0 49133 7099 0 0 51053 7046 0 0 1496 0 0 327 314 303 3094 0 0 3.30982 3.30982 -123.384 -3.30982 0 0 1.01997e+06 3529.29 0.39 0.05 0.16 -1 -1 0.39 0.0154011 0.0138219 64 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 14.75 vpr 53.79 MiB -1 -1 0.11 17352 1 0.01 -1 -1 29752 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55084 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 15.3 MiB 0.82 788 53.8 MiB 0.05 0.00 3.27268 -97.37 -3.27268 3.27268 0.60 0.000116808 9.3364e-05 0.00977679 0.00803326 46 2138 22 6.95648e+06 332941 828058. 2865.25 11.37 0.137684 0.119449 28066 200906 -1 1637 21 1411 2240 159172 36943 0 0 159172 36943 2240 1732 0 0 6897 5948 0 0 11625 7749 0 0 2240 1863 0 0 66815 9678 0 0 69355 9973 0 0 2240 0 0 829 1226 990 8011 0 0 3.89096 3.89096 -127.361 -3.89096 0 0 1.01997e+06 3529.29 0.40 0.06 0.19 -1 -1 0.40 0.0167535 0.0150541 77 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 5.71 vpr 53.63 MiB -1 -1 0.15 17344 1 0.02 -1 -1 29712 -1 -1 13 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 15.1 MiB 1.40 640 53.6 MiB 0.03 0.00 3.40298 -95.8492 -3.40298 3.40298 0.59 9.6419e-05 7.6197e-05 0.00688826 0.00566835 38 2277 35 6.95648e+06 188184 678818. 2348.85 2.08 0.0466623 0.0399806 26626 170182 -1 1594 23 1296 1667 125953 29235 0 0 125953 29235 1667 1481 0 0 5393 4815 0 0 8951 6048 0 0 1667 1534 0 0 54748 7373 0 0 53527 7984 0 0 1667 0 0 371 288 399 3513 0 0 3.44612 3.44612 -113.461 -3.44612 0 0 902133. 3121.57 0.22 0.03 0.09 -1 -1 0.22 0.00852617 0.00761985 67 25 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.01 vpr 53.58 MiB -1 -1 0.14 17656 1 0.01 -1 -1 29768 -1 -1 9 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 15.1 MiB 1.62 596 53.6 MiB 0.06 0.00 3.19126 -90.8265 -3.19126 3.19126 1.06 0.000194452 0.00015747 0.0147623 0.0122251 38 1898 23 6.95648e+06 130281 678818. 2348.85 1.97 0.0702489 0.0607569 26626 170182 -1 1495 22 1268 1879 141725 31669 0 0 141725 31669 1879 1516 0 0 5784 5041 0 0 9327 6347 0 0 1879 1657 0 0 61322 8326 0 0 61534 8782 0 0 1879 0 0 611 728 752 5412 0 0 3.53087 3.53087 -114.382 -3.53087 0 0 902133. 3121.57 0.33 0.05 0.15 -1 -1 0.33 0.0139478 0.0124363 56 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 8.39 vpr 53.86 MiB -1 -1 0.17 17464 1 0.01 -1 -1 29788 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 15.2 MiB 1.18 714 53.9 MiB 0.05 0.00 2.92943 -95.3143 -2.92943 2.92943 0.88 0.00014609 0.000118358 0.0121493 0.0101677 46 2015 29 6.95648e+06 347416 828058. 2865.25 4.04 0.137373 0.119044 28066 200906 -1 1524 22 1641 2182 161082 37758 0 0 161082 37758 2182 1714 0 0 6914 6047 0 0 11071 7584 0 0 2182 1897 0 0 68018 9908 0 0 70715 10608 0 0 2182 0 0 541 727 580 5504 0 0 3.17197 3.17197 -118.357 -3.17197 0 0 1.01997e+06 3529.29 0.25 0.04 0.14 -1 -1 0.25 0.0110004 0.00982907 79 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.39 vpr 53.54 MiB -1 -1 0.16 17460 1 0.01 -1 -1 29752 -1 -1 12 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 15.1 MiB 2.08 704 53.5 MiB 0.07 0.00 3.35097 -100.684 -3.35097 3.35097 0.72 0.00017524 0.000141415 0.0146945 0.0120545 38 2096 26 6.95648e+06 173708 678818. 2348.85 2.71 0.0839474 0.0727597 26626 170182 -1 1730 20 1127 1603 138842 29166 0 0 138842 29166 1603 1389 0 0 5122 4500 0 0 8631 5664 0 0 1603 1457 0 0 61815 8318 0 0 60068 7838 0 0 1603 0 0 476 458 386 3875 0 0 3.41012 3.41012 -120.098 -3.41012 0 0 902133. 3121.57 0.29 0.03 0.16 -1 -1 0.29 0.00844954 0.00763628 64 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 17.86 vpr 53.89 MiB -1 -1 0.17 17676 1 0.01 -1 -1 29712 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55184 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 15.3 MiB 1.37 742 53.9 MiB 0.09 0.00 2.7068 -90.0117 -2.7068 2.7068 1.05 0.000249961 0.000203396 0.0195514 0.0161833 40 2112 39 6.95648e+06 318465 706193. 2443.58 12.92 0.192961 0.167214 26914 176310 -1 1890 28 1451 2287 316674 112039 0 0 316674 112039 2287 1781 0 0 7695 6793 0 0 16296 10073 0 0 2287 1859 0 0 141976 46480 0 0 146133 45053 0 0 2287 0 0 836 1398 1338 8851 0 0 3.21237 3.21237 -117.433 -3.21237 0 0 926341. 3205.33 0.34 0.11 0.16 -1 -1 0.34 0.0211783 0.0188892 71 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.94 vpr 53.91 MiB -1 -1 0.19 17832 1 0.02 -1 -1 29792 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55200 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 15.3 MiB 2.13 814 53.9 MiB 0.07 0.00 3.533 -117.428 -3.533 3.533 1.03 0.000252209 0.000204638 0.0184011 0.0152336 40 2421 30 6.95648e+06 217135 706193. 2443.58 2.22 0.101906 0.0887165 26914 176310 -1 2111 22 1640 2227 243981 49026 0 0 243981 49026 2227 1898 0 0 7379 6351 0 0 13365 8721 0 0 2227 2000 0 0 107882 15691 0 0 110901 14365 0 0 2227 0 0 587 834 858 6074 0 0 3.83481 3.83481 -142.023 -3.83481 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0181764 0.0160614 73 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 13.89 vpr 53.63 MiB -1 -1 0.16 17572 1 0.01 -1 -1 29728 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 15.1 MiB 1.60 613 53.6 MiB 0.06 0.00 2.4011 -79.9159 -2.4011 2.4011 1.04 0.000202475 0.000161757 0.015285 0.0125403 40 1756 42 6.95648e+06 144757 706193. 2443.58 8.85 0.152176 0.131332 26914 176310 -1 1624 21 1093 1676 168135 40153 0 0 168135 40153 1676 1488 0 0 5787 5109 0 0 10445 6853 0 0 1676 1535 0 0 72973 12252 0 0 75578 12916 0 0 1676 0 0 583 572 622 4777 0 0 3.83282 3.83282 -124.038 -3.83282 0 0 926341. 3205.33 0.35 0.07 0.15 -1 -1 0.35 0.0196887 0.0178001 57 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 10.75 vpr 53.72 MiB -1 -1 0.15 17488 1 0.01 -1 -1 29684 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55008 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 15.1 MiB 1.70 639 53.7 MiB 0.07 0.00 3.41698 -108.659 -3.41698 3.41698 0.85 0.000202804 0.000165424 0.0164964 0.0135976 50 2048 24 6.95648e+06 159232 902133. 3121.57 5.89 0.145519 0.126419 28642 213929 -1 1584 19 1257 1849 150550 36675 0 0 150550 36675 1849 1635 0 0 5937 5240 0 0 10670 6999 0 0 1849 1739 0 0 62573 10460 0 0 67672 10602 0 0 1849 0 0 592 550 428 4603 0 0 3.69951 3.69951 -128.816 -3.69951 0 0 1.08113e+06 3740.92 0.41 0.06 0.20 -1 -1 0.41 0.0140463 0.0126711 70 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.54 vpr 53.73 MiB -1 -1 0.13 17276 1 0.02 -1 -1 29684 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55020 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 15.2 MiB 2.61 782 53.7 MiB 0.05 0.00 3.43217 -105.396 -3.43217 3.43217 0.61 0.000113247 9.0603e-05 0.0111757 0.0091583 44 2710 33 6.95648e+06 202660 787024. 2723.27 3.49 0.0922859 0.0788032 27778 195446 -1 1843 24 1573 2137 180531 39949 0 0 180531 39949 2137 1792 0 0 7081 6270 0 0 11679 8179 0 0 2137 1879 0 0 77197 10682 0 0 80300 11147 0 0 2137 0 0 564 520 496 4905 0 0 3.69672 3.69672 -128.722 -3.69672 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0106116 0.00952054 79 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 11.95 vpr 53.81 MiB -1 -1 0.17 17280 1 0.01 -1 -1 29764 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55100 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 15.4 MiB 1.03 670 53.8 MiB 0.04 0.00 3.49208 -97.3048 -3.49208 3.49208 0.69 0.000121224 9.7006e-05 0.00880413 0.0072325 40 2132 28 6.95648e+06 303989 706193. 2443.58 7.95 0.166907 0.146844 26914 176310 -1 1734 27 1295 1840 203122 63707 0 0 203122 63707 1840 1582 0 0 6223 5365 0 0 12307 7727 0 0 1840 1650 0 0 93094 24468 0 0 87818 22915 0 0 1840 0 0 545 563 695 5431 0 0 3.66846 3.66846 -117.084 -3.66846 0 0 926341. 3205.33 0.38 0.09 0.17 -1 -1 0.38 0.0206541 0.0183562 71 49 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 18.01 vpr 54.34 MiB -1 -1 0.17 17732 1 0.02 -1 -1 29728 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55644 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 15.7 MiB 1.82 786 54.3 MiB 0.10 0.00 4.1332 -128.78 -4.1332 4.1332 1.03 0.000268859 0.000217759 0.0241168 0.0200516 46 2644 42 6.95648e+06 202660 828058. 2865.25 12.54 0.259627 0.22821 28066 200906 -1 1868 26 2120 3048 233428 54736 0 0 233428 54736 3048 2446 0 0 9399 8459 0 0 17316 11157 0 0 3048 2577 0 0 96252 16038 0 0 104365 14059 0 0 3048 0 0 928 1064 739 8287 0 0 4.2692 4.2692 -151.014 -4.2692 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0236671 0.0211697 89 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.66 vpr 53.27 MiB -1 -1 0.15 17080 1 0.01 -1 -1 29576 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54548 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 14.8 MiB 1.11 736 53.3 MiB 0.04 0.00 3.10444 -85.1218 -3.10444 3.10444 0.62 9.0236e-05 7.1874e-05 0.00752638 0.00616668 36 1978 22 6.95648e+06 188184 648988. 2245.63 3.10 0.0790397 0.0678841 26050 158493 -1 1647 19 882 1429 114811 23707 0 0 114811 23707 1429 1102 0 0 4525 3906 0 0 7899 5171 0 0 1429 1149 0 0 49686 6244 0 0 49843 6135 0 0 1429 0 0 547 484 574 4304 0 0 3.04112 3.04112 -108.168 -3.04112 0 0 828058. 2865.25 0.26 0.03 0.14 -1 -1 0.26 0.00694741 0.00625534 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.38 vpr 54.23 MiB -1 -1 0.16 17540 1 0.01 -1 -1 29736 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55528 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 15.7 MiB 1.22 761 54.2 MiB 0.09 0.00 3.08669 -108.971 -3.08669 3.08669 0.97 0.000243336 0.000199372 0.020984 0.0173087 40 2363 25 6.95648e+06 361892 706193. 2443.58 1.92 0.0794799 0.067734 26914 176310 -1 1926 20 1628 2133 186763 41277 0 0 186763 41277 2133 1870 0 0 7111 6093 0 0 12663 8228 0 0 2133 1954 0 0 80098 11703 0 0 82625 11429 0 0 2133 0 0 505 489 512 4967 0 0 4.05846 4.05846 -149.472 -4.05846 0 0 926341. 3205.33 0.29 0.04 0.15 -1 -1 0.29 0.0109714 0.00982406 81 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.45 vpr 53.97 MiB -1 -1 0.11 17648 1 0.02 -1 -1 29720 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55264 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 15.4 MiB 3.63 686 54.0 MiB 0.07 0.00 2.45985 -95.9692 -2.45985 2.45985 0.87 0.000234314 0.000187263 0.0178629 0.0146282 38 1997 23 6.95648e+06 144757 678818. 2348.85 4.55 0.138359 0.118215 26626 170182 -1 1619 23 1492 2101 182088 37774 0 0 182088 37774 2101 1807 0 0 6389 5746 0 0 11320 7222 0 0 2101 1849 0 0 80401 10423 0 0 79776 10727 0 0 2101 0 0 609 601 701 5570 0 0 3.25012 3.25012 -127.98 -3.25012 0 0 902133. 3121.57 0.37 0.07 0.16 -1 -1 0.37 0.0194219 0.0173105 61 93 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 7.73 vpr 53.99 MiB -1 -1 0.15 17500 1 0.01 -1 -1 29672 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55288 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 15.3 MiB 0.85 720 54.0 MiB 0.09 0.00 3.41878 -102.947 -3.41878 3.41878 0.96 0.000222797 0.000179264 0.0196061 0.0161159 44 2334 35 6.95648e+06 318465 787024. 2723.27 3.96 0.136892 0.11793 27778 195446 -1 1733 19 1110 1686 121083 28367 0 0 121083 28367 1686 1308 0 0 5602 4872 0 0 9179 6477 0 0 1686 1410 0 0 48077 7744 0 0 54853 6556 0 0 1686 0 0 576 771 710 5779 0 0 3.75166 3.75166 -127.108 -3.75166 0 0 997811. 3452.63 0.26 0.05 0.10 -1 -1 0.26 0.0155619 0.0139681 75 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 25.73 vpr 54.52 MiB -1 -1 0.15 17596 1 0.02 -1 -1 29764 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55828 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 15.9 MiB 2.07 1061 54.5 MiB 0.06 0.00 4.78798 -139.36 -4.78798 4.78798 0.90 0.000150527 0.000121266 0.0148303 0.0123171 46 3544 30 6.95648e+06 217135 828058. 2865.25 20.43 0.185936 0.161149 28066 200906 -1 2468 23 2257 3243 288220 62127 0 0 288220 62127 3243 2874 0 0 10046 8859 0 0 18578 11683 0 0 3243 3023 0 0 127353 17926 0 0 125757 17762 0 0 3243 0 0 986 1207 1310 9288 0 0 5.24985 5.24985 -171.981 -5.24985 0 0 1.01997e+06 3529.29 0.28 0.09 0.11 -1 -1 0.28 0.0188955 0.0168917 95 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 10.39 vpr 53.38 MiB -1 -1 0.14 17296 1 0.01 -1 -1 29700 -1 -1 11 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 14.8 MiB 2.95 456 53.4 MiB 0.05 0.00 2.18845 -73.9237 -2.18845 2.18845 1.11 0.000158926 0.000127657 0.0108707 0.0089911 46 1114 22 6.95648e+06 159232 828058. 2865.25 3.96 0.0997132 0.08584 28066 200906 -1 854 20 626 803 56029 13830 0 0 56029 13830 803 697 0 0 2677 2325 0 0 4477 3111 0 0 803 736 0 0 22446 3899 0 0 24823 3062 0 0 803 0 0 177 99 136 1569 0 0 2.19282 2.19282 -83.0476 -2.19282 0 0 1.01997e+06 3529.29 0.42 0.04 0.20 -1 -1 0.42 0.0108612 0.00966488 52 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.80 vpr 53.60 MiB -1 -1 0.11 17500 1 0.01 -1 -1 29660 -1 -1 11 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54884 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 15.1 MiB 1.65 511 53.6 MiB 0.05 0.00 3.12499 -93.1161 -3.12499 3.12499 0.69 0.000186171 0.000148968 0.0125788 0.0104433 36 2157 50 6.95648e+06 159232 648988. 2245.63 2.50 0.0934824 0.0808333 26050 158493 -1 1558 27 1344 1955 193025 42786 0 0 193025 42786 1955 1790 0 0 6483 5786 0 0 11798 7678 0 0 1955 1804 0 0 83432 13134 0 0 87402 12594 0 0 1955 0 0 611 895 809 5874 0 0 3.33453 3.33453 -120.74 -3.33453 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0155801 0.0137112 54 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 6.87 vpr 53.70 MiB -1 -1 0.14 17648 1 0.01 -1 -1 29744 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 15.1 MiB 0.43 597 53.7 MiB 0.04 0.00 2.6818 -90.2955 -2.6818 2.6818 0.71 0.000110334 8.7522e-05 0.00833775 0.00681993 44 2160 38 6.95648e+06 144757 787024. 2723.27 3.51 0.0777652 0.0660607 27778 195446 -1 1662 25 1270 2003 191665 40011 0 0 191665 40011 2003 1658 0 0 6138 5493 0 0 12449 7493 0 0 2003 1709 0 0 88287 11012 0 0 80785 12646 0 0 2003 0 0 733 702 628 5750 0 0 3.05407 3.05407 -114.136 -3.05407 0 0 997811. 3452.63 0.32 0.06 0.13 -1 -1 0.32 0.0156424 0.0138259 59 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.14 vpr 53.20 MiB -1 -1 0.14 17292 1 0.02 -1 -1 29860 -1 -1 18 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54480 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 14.7 MiB 0.52 409 53.2 MiB 0.03 0.00 2.84753 -63.1202 -2.84753 2.84753 0.65 8.0311e-05 6.2707e-05 0.00553147 0.00448781 40 1371 28 6.95648e+06 260562 706193. 2443.58 2.84 0.0460328 0.0384415 26914 176310 -1 1196 22 913 1342 152198 55276 0 0 152198 55276 1342 1159 0 0 4943 4376 0 0 9380 6492 0 0 1342 1204 0 0 68248 21014 0 0 66943 21031 0 0 1342 0 0 429 557 539 4161 0 0 2.91067 2.91067 -85.5535 -2.91067 0 0 926341. 3205.33 0.33 0.06 0.09 -1 -1 0.33 0.0108674 0.00964654 53 19 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 23.38 vpr 54.01 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29736 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55304 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 15.3 MiB 2.02 963 54.0 MiB 0.05 0.00 3.30725 -112.346 -3.30725 3.30725 0.66 0.000126753 0.000101198 0.0109304 0.00899095 40 2995 48 6.95648e+06 173708 706193. 2443.58 18.27 0.139325 0.119853 26914 176310 -1 2632 22 1816 3082 320999 63966 0 0 320999 63966 3082 2682 0 0 9790 8563 0 0 18445 11405 0 0 3082 2781 0 0 146953 18665 0 0 139647 19870 0 0 3082 0 0 1266 1546 1444 10072 0 0 4.17092 4.17092 -148.428 -4.17092 0 0 926341. 3205.33 0.37 0.10 0.17 -1 -1 0.37 0.0229811 0.0207777 73 69 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 15.50 vpr 54.20 MiB -1 -1 0.15 17824 1 0.01 -1 -1 29764 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55504 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 15.7 MiB 0.75 729 54.2 MiB 0.07 0.00 3.43898 -113.427 -3.43898 3.43898 0.61 0.00024719 0.000199893 0.0166377 0.0137794 38 2797 42 6.95648e+06 246087 678818. 2348.85 12.12 0.213125 0.18561 26626 170182 -1 1915 20 1636 2227 189344 42280 0 0 189344 42280 2227 1951 0 0 7077 6092 0 0 11215 7835 0 0 2227 2006 0 0 80720 12485 0 0 85878 11911 0 0 2227 0 0 591 792 731 5833 0 0 4.07741 4.07741 -135.426 -4.07741 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0214314 0.0193727 80 86 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 7.93 vpr 53.81 MiB -1 -1 0.15 17560 1 0.01 -1 -1 29792 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55104 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 15.2 MiB 2.05 830 53.8 MiB 0.09 0.00 4.0552 -121.219 -4.0552 4.0552 1.03 0.00024662 0.000202158 0.0204438 0.0169821 48 2218 33 6.99608e+06 220735 865456. 2994.66 2.28 0.108686 0.0940243 28354 207349 -1 1999 22 1678 2328 177407 40333 0 0 177407 40333 2328 1934 0 0 8038 6958 0 0 13608 9513 0 0 2328 2007 0 0 79908 9161 0 0 71197 10760 0 0 2328 0 0 650 658 601 5923 0 0 4.11391 4.11391 -141.008 -4.11391 0 0 1.05005e+06 3633.38 0.39 0.07 0.19 -1 -1 0.39 0.0181973 0.0163483 88 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 7.27 vpr 54.03 MiB -1 -1 0.18 17680 1 0.02 -1 -1 29824 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55328 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 15.5 MiB 1.39 976 54.0 MiB 0.05 0.00 4.0159 -121.783 -4.0159 4.0159 0.60 0.000125417 0.000100967 0.0119911 0.00986576 48 2799 28 6.99608e+06 250167 865456. 2994.66 3.25 0.0771107 0.0653649 28354 207349 -1 2274 19 1950 2824 234374 52448 0 0 234374 52448 2824 2487 0 0 9081 7849 0 0 15904 10697 0 0 2824 2567 0 0 97591 14476 0 0 106150 14372 0 0 2824 0 0 874 861 739 7046 0 0 4.52904 4.52904 -158.134 -4.52904 0 0 1.05005e+06 3633.38 0.37 0.05 0.19 -1 -1 0.37 0.0102718 0.00925995 99 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 9.27 vpr 53.63 MiB -1 -1 0.13 17408 1 0.01 -1 -1 29776 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 15.0 MiB 0.95 797 53.6 MiB 0.09 0.00 2.90939 -89.5228 -2.90939 2.90939 1.04 0.000209456 0.000170181 0.0200935 0.0165865 44 2579 24 6.99608e+06 206020 787024. 2723.27 4.72 0.123554 0.106082 27778 195446 -1 1772 20 1189 1650 117044 27027 0 0 117044 27027 1650 1356 0 0 5409 4804 0 0 9118 6260 0 0 1650 1419 0 0 49111 6520 0 0 50106 6668 0 0 1650 0 0 461 475 365 4015 0 0 3.26727 3.26727 -113.928 -3.26727 0 0 997811. 3452.63 0.42 0.06 0.19 -1 -1 0.42 0.0164271 0.0147728 76 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 7.07 vpr 53.61 MiB -1 -1 0.18 17484 1 0.01 -1 -1 29720 -1 -1 16 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54896 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 15.0 MiB 1.69 774 53.6 MiB 0.09 0.00 3.29948 -94.7551 -3.29948 3.29948 0.65 0.000219545 0.000178064 0.0194344 0.0160503 40 2046 34 6.99608e+06 235451 706193. 2443.58 2.55 0.0972532 0.0839188 26914 176310 -1 1811 25 1707 2671 190500 44398 0 0 190500 44398 2671 2136 0 0 8493 7331 0 0 16007 9912 0 0 2671 2245 0 0 81922 11786 0 0 78736 10988 0 0 2671 0 0 964 1432 959 8820 0 0 3.87511 3.87511 -121.857 -3.87511 0 0 926341. 3205.33 0.37 0.07 0.15 -1 -1 0.37 0.01751 0.0155218 78 25 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 23.59 vpr 53.69 MiB -1 -1 0.12 17472 1 0.02 -1 -1 29756 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 15.2 MiB 2.92 895 53.7 MiB 0.08 0.00 3.89209 -117.832 -3.89209 3.89209 1.05 0.000222145 0.000178578 0.0185704 0.0153699 40 3150 26 6.99608e+06 206020 706193. 2443.58 17.35 0.185058 0.160738 26914 176310 -1 2408 21 1739 2875 287551 61260 0 0 287551 61260 2875 2318 0 0 9114 8030 0 0 16629 10671 0 0 2875 2432 0 0 128931 18671 0 0 127127 19138 0 0 2875 0 0 1136 1503 1375 10045 0 0 4.61221 4.61221 -156.419 -4.61221 0 0 926341. 3205.33 0.26 0.06 0.10 -1 -1 0.26 0.0109136 0.00977226 81 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 13.15 vpr 53.90 MiB -1 -1 0.13 17356 1 0.02 -1 -1 29676 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 15.4 MiB 3.41 1013 53.9 MiB 0.10 0.00 2.83586 -100.209 -2.83586 2.83586 1.03 0.000255002 0.000209165 0.0215936 0.0178896 44 3462 35 6.99608e+06 250167 787024. 2723.27 6.21 0.174733 0.151997 27778 195446 -1 2379 24 1787 2866 238746 52337 0 0 238746 52337 2866 2208 0 0 8705 7703 0 0 15150 10002 0 0 2866 2330 0 0 111103 14285 0 0 98056 15809 0 0 2866 0 0 1079 1097 1542 9724 0 0 3.43231 3.43231 -127.3 -3.43231 0 0 997811. 3452.63 0.37 0.08 0.17 -1 -1 0.37 0.0191464 0.0170584 97 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 8.01 vpr 53.43 MiB -1 -1 0.16 17524 1 0.00 -1 -1 29880 -1 -1 15 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 14.9 MiB 1.92 566 53.4 MiB 0.08 0.00 3.12612 -90.5264 -3.12612 3.12612 0.92 0.000163786 0.000131324 0.0107339 0.00876323 38 2018 39 6.99608e+06 220735 678818. 2348.85 2.80 0.090601 0.0790148 26626 170182 -1 1498 23 1287 1908 141472 31014 0 0 141472 31014 1908 1500 0 0 5914 5184 0 0 10131 6622 0 0 1908 1543 0 0 56954 8764 0 0 64657 7401 0 0 1908 0 0 621 695 546 5336 0 0 3.30256 3.30256 -109.674 -3.30256 0 0 902133. 3121.57 0.37 0.06 0.16 -1 -1 0.37 0.0141877 0.0126027 66 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 11.54 vpr 53.48 MiB -1 -1 0.09 16960 1 0.01 -1 -1 29656 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 14.9 MiB 0.43 687 53.5 MiB 0.08 0.00 2.2484 -73.2053 -2.2484 2.2484 1.03 0.000209306 0.000169124 0.0153091 0.0126554 38 2105 50 6.99608e+06 367892 678818. 2348.85 7.98 0.154539 0.134844 26626 170182 -1 1586 23 1027 1754 112040 26885 0 0 112040 26885 1754 1262 0 0 5427 4700 0 0 8446 5839 0 0 1754 1374 0 0 45808 7290 0 0 48851 6420 0 0 1754 0 0 727 1059 978 7280 0 0 2.61902 2.61902 -94.2026 -2.61902 0 0 902133. 3121.57 0.24 0.03 0.10 -1 -1 0.24 0.0091384 0.00810407 69 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 6.91 vpr 53.81 MiB -1 -1 0.17 17392 1 0.01 -1 -1 29768 -1 -1 14 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55100 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 15.3 MiB 1.08 859 53.8 MiB 0.08 0.00 2.73924 -98.6677 -2.73924 2.73924 0.94 0.000204963 0.000168746 0.0171486 0.0141107 40 2744 37 6.99608e+06 206020 706193. 2443.58 2.70 0.0945865 0.082072 26914 176310 -1 2121 22 1681 2265 208531 45702 0 0 208531 45702 2265 1989 0 0 7708 6598 0 0 13555 9117 0 0 2265 2064 0 0 90265 13184 0 0 92473 12750 0 0 2265 0 0 584 636 558 5211 0 0 3.44046 3.44046 -123.307 -3.44046 0 0 926341. 3205.33 0.23 0.04 0.14 -1 -1 0.23 0.00926903 0.00824857 87 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.58 vpr 53.58 MiB -1 -1 0.13 17468 1 0.01 -1 -1 29672 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 14.9 MiB 0.85 830 53.6 MiB 0.04 0.00 3.30642 -114.786 -3.30642 3.30642 0.69 0.000111787 8.8812e-05 0.00950476 0.00778431 44 2233 23 6.99608e+06 191304 787024. 2723.27 3.86 0.0844795 0.0720851 27778 195446 -1 1744 22 1366 1753 128199 27639 0 0 128199 27639 1753 1491 0 0 5573 4878 0 0 9237 6415 0 0 1753 1539 0 0 54908 6791 0 0 54975 6525 0 0 1753 0 0 387 345 385 3644 0 0 3.47486 3.47486 -132.486 -3.47486 0 0 997811. 3452.63 0.40 0.06 0.15 -1 -1 0.40 0.0180828 0.0162886 75 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 5.68 vpr 53.58 MiB -1 -1 0.09 17352 1 0.01 -1 -1 29808 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 15.2 MiB 0.76 796 53.6 MiB 0.07 0.00 3.10933 -99.3661 -3.10933 3.10933 1.03 0.000202973 0.000163423 0.015247 0.0126357 42 2475 33 6.99608e+06 206020 744469. 2576.02 1.85 0.0745365 0.0637533 27202 183097 -1 1735 17 1336 1820 167613 41768 0 0 167613 41768 1820 1573 0 0 5858 5161 0 0 10117 6838 0 0 1820 1646 0 0 75948 13112 0 0 72050 13438 0 0 1820 0 0 484 360 484 4180 0 0 3.7652 3.7652 -124.323 -3.7652 0 0 949917. 3286.91 0.23 0.04 0.10 -1 -1 0.23 0.00786654 0.00708109 83 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.57 vpr 53.36 MiB -1 -1 0.13 17684 1 0.01 -1 -1 29812 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54644 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 14.9 MiB 0.86 816 53.4 MiB 0.04 0.00 2.6205 -95.5835 -2.6205 2.6205 1.00 0.00011102 8.8898e-05 0.00910721 0.00750784 38 2284 28 6.99608e+06 161872 678818. 2348.85 4.61 0.1048 0.089951 26626 170182 -1 1914 22 1342 1718 149010 30599 0 0 149010 30599 1718 1469 0 0 5237 4627 0 0 8884 5787 0 0 1718 1513 0 0 67137 8360 0 0 64316 8843 0 0 1718 0 0 376 421 345 3612 0 0 3.22842 3.22842 -118.387 -3.22842 0 0 902133. 3121.57 0.33 0.05 0.12 -1 -1 0.33 0.0135237 0.0119976 66 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 7.86 vpr 53.73 MiB -1 -1 0.16 17340 1 0.02 -1 -1 29632 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55016 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 15.1 MiB 1.07 996 53.7 MiB 0.09 0.00 3.30642 -115.552 -3.30642 3.30642 1.02 0.000244915 0.000200058 0.0190261 0.0157553 38 3042 28 6.99608e+06 220735 678818. 2348.85 3.35 0.117169 0.103437 26626 170182 -1 2466 21 1657 2395 208805 42195 0 0 208805 42195 2395 2058 0 0 7360 6353 0 0 12158 7907 0 0 2395 2168 0 0 92956 12079 0 0 91541 11630 0 0 2395 0 0 738 806 756 6193 0 0 3.85876 3.85876 -141.93 -3.85876 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0159468 0.0142543 87 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 15.01 vpr 53.93 MiB -1 -1 0.17 17648 1 0.01 -1 -1 29736 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55228 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 15.5 MiB 1.72 1014 53.9 MiB 0.09 0.00 3.86116 -112.629 -3.86116 3.86116 0.97 0.00023118 0.000184958 0.0197155 0.0162077 60 2786 44 6.99608e+06 250167 1.01997e+06 3529.29 9.59 0.192486 0.166702 30658 258169 -1 1849 22 1894 2645 187966 46129 0 0 187966 46129 2645 2170 0 0 8455 7277 0 0 14259 9481 0 0 2645 2342 0 0 78292 13281 0 0 81670 11578 0 0 2645 0 0 751 699 817 6724 0 0 4.13571 4.13571 -142.622 -4.13571 0 0 1.27783e+06 4421.56 0.57 0.08 0.25 -1 -1 0.57 0.0223777 0.020234 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 11.32 vpr 53.19 MiB -1 -1 0.14 17252 1 0.01 -1 -1 29772 -1 -1 13 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54468 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 14.6 MiB 3.35 565 53.2 MiB 0.03 0.00 2.5552 -72.0312 -2.5552 2.5552 1.02 0.000102694 8.2513e-05 0.00672108 0.00557863 44 1974 39 6.99608e+06 191304 787024. 2723.27 4.61 0.105703 0.0914277 27778 195446 -1 1242 19 975 1370 93261 22462 0 0 93261 22462 1370 1121 0 0 4433 3889 0 0 7195 5060 0 0 1370 1165 0 0 39800 5268 0 0 39093 5959 0 0 1370 0 0 395 369 206 3146 0 0 2.85427 2.85427 -91.5543 -2.85427 0 0 997811. 3452.63 0.37 0.04 0.18 -1 -1 0.37 0.0118296 0.010604 64 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.98 vpr 54.03 MiB -1 -1 0.18 17404 1 0.02 -1 -1 29724 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55328 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 15.5 MiB 1.46 1110 54.0 MiB 0.06 0.00 2.99159 -104.514 -2.99159 2.99159 0.95 0.000233377 0.000190526 0.0138157 0.011548 38 3198 28 6.99608e+06 235451 678818. 2348.85 2.24 0.0766976 0.0665129 26626 170182 -1 2501 23 2024 3095 227048 48719 0 0 227048 48719 3095 2446 0 0 9445 8422 0 0 15316 10257 0 0 3095 2611 0 0 103096 12274 0 0 93001 12709 0 0 3095 0 0 1071 1147 1345 9620 0 0 4.09081 4.09081 -144.267 -4.09081 0 0 902133. 3121.57 0.33 0.08 0.14 -1 -1 0.33 0.0180227 0.0159744 96 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 8.42 vpr 53.71 MiB -1 -1 0.15 17348 1 0.02 -1 -1 29732 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 15.2 MiB 0.70 834 53.7 MiB 0.09 0.00 3.40815 -107.803 -3.40815 3.40815 0.79 0.00023411 0.000190369 0.0199622 0.0165614 42 2876 30 6.99608e+06 220735 744469. 2576.02 5.00 0.144672 0.124531 27202 183097 -1 2060 23 1652 2259 200758 43161 0 0 200758 43161 2259 2083 0 0 7633 6564 0 0 12948 9016 0 0 2259 2121 0 0 86206 11463 0 0 89453 11914 0 0 2259 0 0 607 647 580 5307 0 0 3.37756 3.37756 -123.831 -3.37756 0 0 949917. 3286.91 0.24 0.04 0.10 -1 -1 0.24 0.0105128 0.00936569 84 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.60 vpr 53.66 MiB -1 -1 0.13 17648 1 0.01 -1 -1 29824 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 15.2 MiB 0.96 859 53.7 MiB 0.04 0.00 2.59239 -95.4645 -2.59239 2.59239 0.69 0.000121062 9.7235e-05 0.00939442 0.00775542 46 2528 50 6.99608e+06 220735 828058. 2865.25 2.69 0.0978213 0.0848337 28066 200906 -1 1769 23 1823 2248 157905 36982 0 0 157905 36982 2248 1975 0 0 6929 6070 0 0 11685 7563 0 0 2248 2060 0 0 69363 9460 0 0 65432 9854 0 0 2248 0 0 425 487 424 4712 0 0 2.82976 2.82976 -115.789 -2.82976 0 0 1.01997e+06 3529.29 0.42 0.07 0.12 -1 -1 0.42 0.0184003 0.0164453 89 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.78 vpr 53.21 MiB -1 -1 0.14 17412 1 0.01 -1 -1 29648 -1 -1 10 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54484 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 14.8 MiB 1.50 584 53.2 MiB 0.05 0.00 1.95956 -74.3324 -1.95956 1.95956 0.76 0.000145029 0.000115385 0.0120429 0.00979924 36 1532 25 6.99608e+06 147157 648988. 2245.63 2.44 0.0595114 0.0500532 26050 158493 -1 1212 18 732 803 71140 16078 0 0 71140 16078 803 757 0 0 2937 2587 0 0 4276 3267 0 0 803 762 0 0 31376 4282 0 0 30945 4423 0 0 803 0 0 71 56 71 1143 0 0 2.11243 2.11243 -86.5055 -2.11243 0 0 828058. 2865.25 0.24 0.04 0.14 -1 -1 0.24 0.0104376 0.00940868 52 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.20 vpr 53.53 MiB -1 -1 0.15 17464 1 0.02 -1 -1 29796 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 15.0 MiB 1.85 882 53.5 MiB 0.04 0.00 3.02472 -102.017 -3.02472 3.02472 0.60 0.000191806 0.000155292 0.00950097 0.00788184 38 2177 28 6.99608e+06 191304 678818. 2348.85 1.84 0.0505176 0.0431522 26626 170182 -1 1911 21 1537 2117 202282 40806 0 0 202282 40806 2117 1909 0 0 6534 5774 0 0 11079 7154 0 0 2117 1928 0 0 94707 10787 0 0 85728 13254 0 0 2117 0 0 580 375 597 4955 0 0 3.57611 3.57611 -134.669 -3.57611 0 0 902133. 3121.57 0.36 0.07 0.15 -1 -1 0.36 0.0153389 0.0136776 72 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 10.84 vpr 53.74 MiB -1 -1 0.17 17352 1 0.02 -1 -1 29712 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55032 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 15.2 MiB 1.63 779 53.7 MiB 0.09 0.00 3.38154 -106.186 -3.38154 3.38154 0.96 0.000222174 0.000180486 0.0211147 0.0174252 46 2358 26 6.99608e+06 294314 828058. 2865.25 5.76 0.160551 0.14024 28066 200906 -1 1874 22 1707 2576 212448 46466 0 0 212448 46466 2576 2106 0 0 8038 7197 0 0 13385 8876 0 0 2576 2197 0 0 91297 12461 0 0 94576 13629 0 0 2576 0 0 869 930 1023 8084 0 0 4.0598 4.0598 -137.619 -4.0598 0 0 1.01997e+06 3529.29 0.38 0.07 0.18 -1 -1 0.38 0.0189101 0.01697 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 13.34 vpr 53.90 MiB -1 -1 0.10 17716 1 0.01 -1 -1 29712 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 15.4 MiB 2.56 1255 53.9 MiB 0.08 0.00 3.72134 -121.721 -3.72134 3.72134 1.00 0.000241144 0.000194137 0.0171814 0.0141163 38 3427 37 6.99608e+06 235451 678818. 2348.85 7.42 0.116513 0.101293 26626 170182 -1 2727 20 2028 2996 256320 49896 0 0 256320 49896 2996 2475 0 0 8968 7805 0 0 14402 9593 0 0 2996 2624 0 0 114025 14077 0 0 112933 13322 0 0 2996 0 0 968 1112 1256 8824 0 0 4.05711 4.05711 -143.247 -4.05711 0 0 902133. 3121.57 0.32 0.09 0.16 -1 -1 0.32 0.0210987 0.0191113 100 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 7.59 vpr 53.00 MiB -1 -1 0.14 17072 1 0.01 -1 -1 29692 -1 -1 13 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54268 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 14.4 MiB 2.44 406 53.0 MiB 0.03 0.00 2.2286 -62.8623 -2.2286 2.2286 0.67 0.000127122 0.000101499 0.00619214 0.00504586 36 1597 38 6.99608e+06 191304 648988. 2245.63 2.51 0.0607874 0.0525407 26050 158493 -1 995 21 791 879 78023 18058 0 0 78023 18058 879 844 0 0 2922 2524 0 0 4857 3329 0 0 879 850 0 0 33402 5179 0 0 35084 5332 0 0 879 0 0 88 75 97 1315 0 0 2.38147 2.38147 -76.067 -2.38147 0 0 828058. 2865.25 0.24 0.03 0.09 -1 -1 0.24 0.00643311 0.00567634 53 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 7.38 vpr 53.46 MiB -1 -1 0.15 17324 1 0.02 -1 -1 29716 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54748 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 14.9 MiB 0.88 689 53.5 MiB 0.07 0.00 3.7303 -91.18 -3.7303 3.7303 0.84 0.000194235 0.00015505 0.0146629 0.0120507 44 2305 26 6.99608e+06 220735 787024. 2723.27 3.87 0.0941587 0.0796733 27778 195446 -1 1559 22 1150 1942 139130 32563 0 0 139130 32563 1942 1587 0 0 6059 5280 0 0 10169 6877 0 0 1942 1712 0 0 60256 7756 0 0 58762 9351 0 0 1942 0 0 792 988 807 6725 0 0 3.78966 3.78966 -120.217 -3.78966 0 0 997811. 3452.63 0.28 0.04 0.18 -1 -1 0.28 0.0091611 0.00816016 66 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.87 vpr 52.88 MiB -1 -1 0.14 16716 1 0.01 -1 -1 29564 -1 -1 8 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54148 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 14.4 MiB 0.26 394 52.9 MiB 0.05 0.00 1.65401 -54.7665 -1.65401 1.65401 0.97 0.000140483 0.000114032 0.00939728 0.00775418 36 1186 20 6.99608e+06 117725 648988. 2245.63 1.57 0.0430325 0.0368497 26050 158493 -1 938 17 628 726 61036 15077 0 0 61036 15077 726 686 0 0 2508 2240 0 0 3996 2931 0 0 726 690 0 0 24252 4604 0 0 28828 3926 0 0 726 0 0 98 36 110 1200 0 0 2.17998 2.17998 -71.9415 -2.17998 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.00507968 0.00454632 42 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 9.54 vpr 53.54 MiB -1 -1 0.13 17648 1 0.01 -1 -1 29740 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 14.9 MiB 1.41 989 53.5 MiB 0.05 0.00 3.59843 -105.336 -3.59843 3.59843 0.96 0.000129058 0.000105235 0.0110336 0.00913058 36 2662 24 6.99608e+06 206020 648988. 2245.63 5.11 0.133817 0.117756 26050 158493 -1 2251 21 1412 2028 173425 35108 0 0 173425 35108 2028 1734 0 0 6386 5565 0 0 10823 7204 0 0 2028 1797 0 0 76005 9554 0 0 76155 9254 0 0 2028 0 0 616 596 663 5439 0 0 3.93781 3.93781 -130.565 -3.93781 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00902432 0.00808613 73 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.75 vpr 53.41 MiB -1 -1 0.16 17184 1 0.02 -1 -1 29756 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 14.8 MiB 0.60 772 53.4 MiB 0.04 0.00 2.34075 -79.5041 -2.34075 2.34075 0.60 0.000112053 8.9577e-05 0.0085513 0.00706796 42 2317 43 6.99608e+06 309029 744469. 2576.02 3.41 0.0971947 0.083491 27202 183097 -1 1659 22 1409 2323 172041 40008 0 0 172041 40008 2323 1720 0 0 7860 6880 0 0 13420 9128 0 0 2323 1860 0 0 70514 10564 0 0 75601 9856 0 0 2323 0 0 914 982 1270 8353 0 0 3.10587 3.10587 -107.333 -3.10587 0 0 949917. 3286.91 0.38 0.06 0.18 -1 -1 0.38 0.0164477 0.0145678 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 8.68 vpr 53.78 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29740 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55068 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 15.2 MiB 1.45 892 53.8 MiB 0.09 0.00 3.45778 -104.549 -3.45778 3.45778 1.04 0.00021873 0.000174831 0.0189909 0.0155583 40 3175 44 6.99608e+06 220735 706193. 2443.58 3.91 0.108218 0.0939898 26914 176310 -1 2285 24 1990 3061 289450 70897 0 0 289450 70897 3061 2593 0 0 9914 8689 0 0 19141 11826 0 0 3061 2733 0 0 127410 22364 0 0 126863 22692 0 0 3061 0 0 1071 1289 1348 9635 0 0 4.18872 4.18872 -137.022 -4.18872 0 0 926341. 3205.33 0.31 0.06 0.10 -1 -1 0.31 0.0116762 0.0103825 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 9.66 vpr 53.52 MiB -1 -1 0.09 17352 1 0.02 -1 -1 29872 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 15.1 MiB 2.84 826 53.5 MiB 0.06 0.00 2.63455 -89.7695 -2.63455 2.63455 1.02 0.000187443 0.000150995 0.0137092 0.0112751 36 2433 36 6.99608e+06 176588 648988. 2245.63 3.48 0.101781 0.0888583 26050 158493 -1 1931 21 1210 1714 138850 29793 0 0 138850 29793 1714 1441 0 0 5603 4790 0 0 9373 6500 0 0 1714 1558 0 0 59908 8082 0 0 60538 7422 0 0 1714 0 0 504 446 516 4382 0 0 3.16327 3.16327 -118.692 -3.16327 0 0 828058. 2865.25 0.34 0.06 0.15 -1 -1 0.34 0.0154521 0.0138302 69 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 6.89 vpr 53.51 MiB -1 -1 0.16 17088 1 0.01 -1 -1 29680 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54796 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 15.0 MiB 1.74 723 53.5 MiB 0.06 0.00 2.92097 -88.8022 -2.92097 2.92097 0.96 0.000181122 0.000145422 0.0138643 0.0113746 44 1864 29 6.99608e+06 206020 787024. 2723.27 1.98 0.0674116 0.0582388 27778 195446 -1 1551 19 1173 1798 139336 30321 0 0 139336 30321 1798 1440 0 0 5783 5170 0 0 9664 6563 0 0 1798 1501 0 0 55338 8683 0 0 64955 6964 0 0 1798 0 0 625 561 707 5393 0 0 3.17871 3.17871 -108.692 -3.17871 0 0 997811. 3452.63 0.30 0.04 0.10 -1 -1 0.30 0.0106314 0.00962052 66 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 11.65 vpr 53.22 MiB -1 -1 0.15 17308 1 0.02 -1 -1 29660 -1 -1 18 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 14.8 MiB 0.98 631 53.2 MiB 0.08 0.00 2.61364 -82.2635 -2.61364 2.61364 1.03 0.000186389 0.000151472 0.0159837 0.0131611 36 2392 42 6.99608e+06 264882 648988. 2245.63 7.46 0.125724 0.108696 26050 158493 -1 1654 19 1197 1877 157826 34865 0 0 157826 34865 1877 1542 0 0 6076 5278 0 0 10266 7146 0 0 1877 1609 0 0 65772 10063 0 0 71958 9227 0 0 1877 0 0 680 755 664 5730 0 0 3.37901 3.37901 -113.842 -3.37901 0 0 828058. 2865.25 0.22 0.03 0.10 -1 -1 0.22 0.00732389 0.00653205 69 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 5.02 vpr 53.28 MiB -1 -1 0.15 17056 1 0.01 -1 -1 29728 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 14.7 MiB 0.46 561 53.3 MiB 0.04 0.00 2.68955 -87.1588 -2.68955 2.68955 0.98 0.000114474 9.0937e-05 0.00912751 0.00752096 40 1597 25 6.99608e+06 147157 706193. 2443.58 1.22 0.0418499 0.0355536 26914 176310 -1 1314 21 1142 1702 131581 31591 0 0 131581 31591 1702 1340 0 0 5598 4966 0 0 9845 6507 0 0 1702 1408 0 0 58142 7929 0 0 54592 9441 0 0 1702 0 0 560 566 500 4634 0 0 3.16887 3.16887 -114.14 -3.16887 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.014237 0.0127289 58 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 5.54 vpr 53.54 MiB -1 -1 0.10 17504 1 0.02 -1 -1 29740 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54820 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 15.1 MiB 0.65 897 53.5 MiB 0.03 0.00 2.62898 -90.3488 -2.62898 2.62898 0.60 9.9045e-05 7.9747e-05 0.00549818 0.00459055 38 2303 34 6.99608e+06 191304 678818. 2348.85 2.71 0.0566901 0.048022 26626 170182 -1 1989 21 1203 1600 143206 28589 0 0 143206 28589 1600 1420 0 0 5045 4381 0 0 8030 5529 0 0 1600 1441 0 0 64026 7722 0 0 62905 8096 0 0 1600 0 0 397 501 488 4136 0 0 3.02182 3.02182 -113.711 -3.02182 0 0 902133. 3121.57 0.27 0.03 0.09 -1 -1 0.27 0.00832538 0.00745163 69 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.36 vpr 53.61 MiB -1 -1 0.14 17404 1 0.01 -1 -1 29788 -1 -1 15 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54892 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 15.0 MiB 2.39 966 53.6 MiB 0.03 0.00 2.45385 -87.8965 -2.45385 2.45385 0.70 0.000105977 8.5054e-05 0.00764479 0.00646066 44 2122 22 6.99608e+06 220735 787024. 2723.27 3.25 0.0782299 0.06778 27778 195446 -1 1899 18 1385 1817 131321 27921 0 0 131321 27921 1817 1535 0 0 5764 5073 0 0 9659 6468 0 0 1817 1577 0 0 60866 5641 0 0 51398 7627 0 0 1817 0 0 432 183 591 4109 0 0 2.73202 2.73202 -105.57 -2.73202 0 0 997811. 3452.63 0.41 0.05 0.19 -1 -1 0.41 0.0141491 0.0127533 77 48 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 23.97 vpr 53.86 MiB -1 -1 0.15 17436 1 0.02 -1 -1 29688 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55152 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 15.2 MiB 1.44 1088 53.9 MiB 0.06 0.00 3.53733 -102.777 -3.53733 3.53733 0.98 0.000244767 0.000200851 0.0144083 0.012143 40 3287 28 6.99608e+06 235451 706193. 2443.58 19.09 0.212869 0.187125 26914 176310 -1 2618 20 1718 2703 227368 49511 0 0 227368 49511 2703 2121 0 0 8869 7565 0 0 15380 10322 0 0 2703 2276 0 0 99640 13323 0 0 98073 13904 0 0 2703 0 0 985 1406 1562 10816 0 0 3.87017 3.87017 -133.44 -3.87017 0 0 926341. 3205.33 0.38 0.08 0.17 -1 -1 0.38 0.0209549 0.0189777 92 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 8.57 vpr 54.32 MiB -1 -1 0.15 17444 1 0.01 -1 -1 29780 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55628 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 15.5 MiB 1.88 1168 54.3 MiB 0.09 0.00 3.42916 -124.529 -3.42916 3.42916 0.97 0.000236818 0.000194319 0.0213505 0.017767 40 3232 28 6.99608e+06 279598 706193. 2443.58 3.20 0.0981959 0.0848332 26914 176310 -1 2912 22 2638 3670 383276 83109 0 0 383276 83109 3670 3150 0 0 11633 10351 0 0 21749 13608 0 0 3670 3326 0 0 173638 26380 0 0 168916 26294 0 0 3670 0 0 1032 1260 1165 9623 0 0 4.1148 4.1148 -162.364 -4.1148 0 0 926341. 3205.33 0.37 0.11 0.17 -1 -1 0.37 0.0208254 0.0186064 106 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 8.60 vpr 53.36 MiB -1 -1 0.14 17480 1 0.01 -1 -1 29680 -1 -1 11 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 14.8 MiB 1.57 911 53.4 MiB 0.06 0.00 2.87547 -98.0114 -2.87547 2.87547 0.98 0.000186705 0.000151649 0.0135773 0.0113481 38 2183 24 6.99608e+06 161872 678818. 2348.85 3.66 0.0913294 0.0780856 26626 170182 -1 1873 21 1345 1985 165227 33180 0 0 165227 33180 1985 1658 0 0 5933 5290 0 0 10180 6478 0 0 1985 1708 0 0 68474 10037 0 0 76670 8009 0 0 1985 0 0 640 771 915 6133 0 0 3.07697 3.07697 -116.995 -3.07697 0 0 902133. 3121.57 0.39 0.07 0.14 -1 -1 0.39 0.0157732 0.0141958 66 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 19.18 vpr 54.02 MiB -1 -1 0.18 17276 1 0.02 -1 -1 29816 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55316 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 15.6 MiB 1.86 1112 54.0 MiB 0.09 0.00 2.89729 -104.102 -2.89729 2.89729 0.98 0.000239154 0.000196523 0.0196011 0.0162683 38 3049 45 6.99608e+06 250167 678818. 2348.85 13.86 0.191884 0.16651 26626 170182 -1 2498 22 1782 2504 188147 39544 0 0 188147 39544 2504 2123 0 0 7754 6740 0 0 12033 8301 0 0 2504 2163 0 0 81202 10336 0 0 82150 9881 0 0 2504 0 0 722 851 711 6680 0 0 3.55136 3.55136 -134.565 -3.55136 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0201404 0.0180482 99 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 21.75 vpr 54.14 MiB -1 -1 0.17 17912 1 0.01 -1 -1 29860 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55444 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 15.5 MiB 2.02 1067 54.1 MiB 0.08 0.00 4.12206 -131.019 -4.12206 4.12206 0.88 0.000255331 0.000196028 0.0172408 0.0143308 40 3457 49 6.99608e+06 250167 706193. 2443.58 16.54 0.147303 0.127192 26914 176310 -1 2873 23 2600 3661 392810 81712 0 0 392810 81712 3661 3382 0 0 11791 10442 0 0 22001 13902 0 0 3661 3438 0 0 178846 25149 0 0 172850 25399 0 0 3661 0 0 1061 1017 1137 8998 0 0 5.0031 5.0031 -173.027 -5.0031 0 0 926341. 3205.33 0.23 0.07 0.11 -1 -1 0.23 0.0118316 0.0105916 104 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 12.50 vpr 53.95 MiB -1 -1 0.14 17732 1 0.01 -1 -1 29836 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55240 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 15.4 MiB 3.98 1127 53.9 MiB 0.09 0.00 4.31328 -138.743 -4.31328 4.31328 1.04 0.000253971 0.000205547 0.0191665 0.0158671 44 3222 22 6.99608e+06 264882 787024. 2723.27 4.98 0.161198 0.140388 27778 195446 -1 2471 21 1874 2644 233862 47273 0 0 233862 47273 2644 2184 0 0 8446 7348 0 0 14134 9629 0 0 2644 2273 0 0 105356 12546 0 0 100638 13293 0 0 2644 0 0 770 519 704 6339 0 0 4.59134 4.59134 -166.878 -4.59134 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.017814 0.0159315 103 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 11.60 vpr 53.88 MiB -1 -1 0.15 17560 1 0.02 -1 -1 29836 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55172 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 15.3 MiB 2.64 911 53.9 MiB 0.06 0.00 3.12612 -101.65 -3.12612 3.12612 1.01 0.000167732 0.000122418 0.0143933 0.011892 48 2940 39 6.99608e+06 235451 865456. 2994.66 5.38 0.154094 0.133833 28354 207349 -1 2215 22 1742 2362 219480 49160 0 0 219480 49160 2362 2106 0 0 7970 6961 0 0 14207 9436 0 0 2362 2169 0 0 90513 14702 0 0 102066 13786 0 0 2362 0 0 620 670 750 5978 0 0 3.41986 3.41986 -124.849 -3.41986 0 0 1.05005e+06 3633.38 0.42 0.08 0.20 -1 -1 0.42 0.0193831 0.0173709 93 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.86 vpr 53.58 MiB -1 -1 0.16 17272 1 0.01 -1 -1 29728 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 15.0 MiB 1.03 862 53.6 MiB 0.05 0.00 3.47308 -98.4296 -3.47308 3.47308 0.62 0.000115263 9.3632e-05 0.0111816 0.00927615 44 2620 28 6.99608e+06 206020 787024. 2723.27 4.23 0.110844 0.0955793 27778 195446 -1 1977 20 1300 1847 149468 31353 0 0 149468 31353 1847 1436 0 0 5821 5151 0 0 10000 6586 0 0 1847 1567 0 0 64104 8426 0 0 65849 8187 0 0 1847 0 0 547 525 418 4637 0 0 3.61352 3.61352 -115.205 -3.61352 0 0 997811. 3452.63 0.25 0.03 0.11 -1 -1 0.25 0.00850674 0.00763108 72 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 30.15 vpr 54.22 MiB -1 -1 0.18 17844 1 0.02 -1 -1 29948 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55524 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 16.0 MiB 1.60 1477 54.2 MiB 0.10 0.00 3.8744 -137.164 -3.8744 3.8744 1.01 0.000295873 0.000238876 0.0190176 0.0157326 40 4178 30 6.99608e+06 309029 706193. 2443.58 24.90 0.231204 0.201088 26914 176310 -1 3695 22 2797 4127 415063 80577 0 0 415063 80577 4127 3713 0 0 13090 11430 0 0 24358 15203 0 0 4127 3833 0 0 181443 23275 0 0 187918 23123 0 0 4127 0 0 1330 1808 1906 12855 0 0 5.36794 5.36794 -189.19 -5.36794 0 0 926341. 3205.33 0.37 0.13 0.17 -1 -1 0.37 0.0246131 0.0220426 129 84 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 11.03 vpr 53.43 MiB -1 -1 0.09 17200 1 0.01 -1 -1 29752 -1 -1 11 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 15.0 MiB 3.20 530 53.4 MiB 0.06 0.00 2.5612 -80.5114 -2.5612 2.5612 1.01 0.000190961 0.000155434 0.0144481 0.0119707 46 1773 35 6.99608e+06 161872 828058. 2865.25 4.75 0.115572 0.0990733 28066 200906 -1 1207 20 1136 1478 83796 22265 0 0 83796 22265 1478 1246 0 0 4739 4150 0 0 7445 5331 0 0 1478 1289 0 0 35158 4803 0 0 33498 5446 0 0 1478 0 0 342 314 189 3021 0 0 2.95667 2.95667 -99.1062 -2.95667 0 0 1.01997e+06 3529.29 0.40 0.05 0.17 -1 -1 0.40 0.0129103 0.0114714 65 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.85 vpr 53.70 MiB -1 -1 0.13 17404 1 0.02 -1 -1 29872 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54992 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 15.2 MiB 0.70 937 53.7 MiB 0.05 0.00 3.70767 -117.828 -3.70767 3.70767 0.60 0.00011869 9.4705e-05 0.0116947 0.00957731 44 2949 48 6.99608e+06 220735 787024. 2723.27 3.57 0.092183 0.0787171 27778 195446 -1 2070 20 1628 2361 184707 39862 0 0 184707 39862 2361 2072 0 0 7307 6501 0 0 12945 8459 0 0 2361 2149 0 0 79321 10444 0 0 80412 10237 0 0 2361 0 0 733 877 788 6721 0 0 4.47591 4.47591 -144.994 -4.47591 0 0 997811. 3452.63 0.39 0.06 0.16 -1 -1 0.39 0.0161516 0.0148015 85 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 9.48 vpr 53.87 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29744 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55164 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 15.3 MiB 1.44 1079 53.9 MiB 0.07 0.00 3.12594 -104.104 -3.12594 3.12594 1.01 0.000236491 0.000190457 0.0152303 0.0125963 50 2674 46 6.99608e+06 220735 902133. 3121.57 4.77 0.134082 0.116062 28642 213929 -1 2209 19 1330 2035 177169 39871 0 0 177169 39871 2035 1631 0 0 6818 5818 0 0 11487 7856 0 0 2035 1780 0 0 76420 11058 0 0 78374 11728 0 0 2035 0 0 705 743 740 6023 0 0 3.27882 3.27882 -122.124 -3.27882 0 0 1.08113e+06 3740.92 0.30 0.04 0.17 -1 -1 0.30 0.0105433 0.00948825 91 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 8.61 vpr 53.38 MiB -1 -1 0.14 17224 1 0.02 -1 -1 29760 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54656 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 14.8 MiB 1.04 679 53.4 MiB 0.06 0.00 3.61243 -98.3379 -3.61243 3.61243 0.64 0.000196244 0.000158624 0.0144553 0.0120287 52 1876 49 6.99608e+06 235451 926341. 3205.33 5.04 0.111516 0.0955686 29218 227130 -1 1418 19 1047 1821 119944 28135 0 0 119944 28135 1821 1428 0 0 5720 4967 0 0 10255 6650 0 0 1821 1518 0 0 49411 6429 0 0 50916 7143 0 0 1821 0 0 774 971 781 6721 0 0 3.71251 3.71251 -112.002 -3.71251 0 0 1.14541e+06 3963.36 0.28 0.03 0.20 -1 -1 0.28 0.0084088 0.00755741 68 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 10.97 vpr 53.68 MiB -1 -1 0.16 17484 1 0.02 -1 -1 29732 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 15.1 MiB 1.55 934 53.7 MiB 0.08 0.00 3.39715 -105.948 -3.39715 3.39715 1.05 0.000241519 0.000196401 0.0207224 0.0172145 38 3177 37 6.99608e+06 220735 678818. 2348.85 5.92 0.14019 0.12382 26626 170182 -1 2213 23 1737 2267 182383 39167 0 0 182383 39167 2267 2042 0 0 7025 6097 0 0 11245 7663 0 0 2267 2118 0 0 81124 10443 0 0 78455 10804 0 0 2267 0 0 530 668 601 5342 0 0 3.74246 3.74246 -132.263 -3.74246 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0198723 0.017733 90 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.17 vpr 54.00 MiB -1 -1 0.10 17680 1 0.01 -1 -1 29728 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55296 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 15.3 MiB 1.39 1037 54.0 MiB 0.09 0.00 3.02259 -101.392 -3.02259 3.02259 0.77 0.00023711 0.000193522 0.0209554 0.0173361 44 3264 29 6.99608e+06 220735 787024. 2723.27 4.75 0.124966 0.107381 27778 195446 -1 2290 22 1576 2410 213588 48644 0 0 213588 48644 2410 1946 0 0 7717 6737 0 0 13275 9125 0 0 2410 2097 0 0 93323 14742 0 0 94453 13997 0 0 2410 0 0 834 952 1073 8337 0 0 3.41406 3.41406 -129.456 -3.41406 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.019184 0.0172165 92 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 12.53 vpr 54.07 MiB -1 -1 0.15 17464 1 0.02 -1 -1 29760 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55364 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 15.4 MiB 2.88 973 54.1 MiB 0.10 0.00 3.15907 -105.825 -3.15907 3.15907 1.03 0.000256958 0.000210431 0.022496 0.0187573 50 2831 23 6.99608e+06 235451 902133. 3121.57 5.95 0.170718 0.147804 28642 213929 -1 2112 21 1909 2550 210849 47157 0 0 210849 47157 2550 2087 0 0 8316 7179 0 0 13630 9330 0 0 2550 2157 0 0 96875 12503 0 0 86928 13901 0 0 2550 0 0 641 750 724 6215 0 0 3.34751 3.34751 -123.007 -3.34751 0 0 1.08113e+06 3740.92 0.44 0.08 0.21 -1 -1 0.44 0.0203593 0.0182876 101 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.38 vpr 53.71 MiB -1 -1 0.15 17484 1 0.02 -1 -1 29712 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 15.0 MiB 1.25 764 53.7 MiB 0.07 0.00 3.71143 -99.6524 -3.71143 3.71143 1.03 0.000224346 0.000183029 0.0169399 0.0141052 46 2220 35 6.99608e+06 206020 828058. 2865.25 2.61 0.0907492 0.078427 28066 200906 -1 1633 20 1198 1827 119371 30181 0 0 119371 30181 1827 1545 0 0 5883 5271 0 0 9378 6553 0 0 1827 1625 0 0 47742 7787 0 0 52714 7400 0 0 1827 0 0 629 635 594 5357 0 0 3.92211 3.92211 -123.782 -3.92211 0 0 1.01997e+06 3529.29 0.39 0.05 0.19 -1 -1 0.39 0.0156403 0.014071 74 21 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 6.38 vpr 53.80 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29696 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55088 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 15.2 MiB 1.91 765 53.8 MiB 0.04 0.00 3.46208 -104.17 -3.46208 3.46208 0.67 0.000115781 9.2548e-05 0.00938007 0.00779888 46 2449 27 6.99608e+06 191304 828058. 2865.25 1.71 0.051239 0.043613 28066 200906 -1 1790 21 1539 2078 152663 37113 0 0 152663 37113 2078 1763 0 0 6699 6057 0 0 11104 7577 0 0 2078 1833 0 0 65803 9718 0 0 64901 10165 0 0 2078 0 0 539 554 490 4773 0 0 4.30096 4.30096 -135.218 -4.30096 0 0 1.01997e+06 3529.29 0.27 0.04 0.11 -1 -1 0.27 0.0101133 0.00907557 81 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 7.03 vpr 53.95 MiB -1 -1 0.17 17772 1 0.01 -1 -1 29744 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55244 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 15.4 MiB 1.17 988 53.9 MiB 0.09 0.00 3.43501 -109.106 -3.43501 3.43501 1.01 0.000237121 0.00019253 0.0196011 0.0162901 46 2930 28 6.99608e+06 235451 828058. 2865.25 2.64 0.107397 0.0931189 28066 200906 -1 2033 22 1812 2722 167792 40689 0 0 167792 40689 2722 2258 0 0 8569 7587 0 0 13830 9356 0 0 2722 2335 0 0 69263 9805 0 0 70686 9348 0 0 2722 0 0 910 951 648 7565 0 0 4.15891 4.15891 -134.079 -4.15891 0 0 1.01997e+06 3529.29 0.40 0.07 0.18 -1 -1 0.40 0.019139 0.0171658 99 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 9.66 vpr 54.04 MiB -1 -1 0.18 17756 1 0.02 -1 -1 29660 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55340 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 15.4 MiB 1.04 1119 54.0 MiB 0.09 0.00 3.11332 -104.683 -3.11332 3.11332 0.96 0.00024048 0.000193002 0.0202259 0.0165061 48 3405 33 6.99608e+06 235451 865456. 2994.66 5.38 0.163635 0.14269 28354 207349 -1 2664 24 2268 3378 307906 66299 0 0 307906 66299 3378 2726 0 0 11118 9862 0 0 20362 13163 0 0 3378 3007 0 0 127032 19628 0 0 142638 17913 0 0 3378 0 0 1110 1105 1201 9294 0 0 4.13672 4.13672 -142.578 -4.13672 0 0 1.05005e+06 3633.38 0.42 0.09 0.20 -1 -1 0.42 0.0191148 0.017318 104 74 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.28 vpr 53.22 MiB -1 -1 0.13 17272 1 0.02 -1 -1 29708 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 14.5 MiB 0.47 606 53.2 MiB 0.03 0.00 2.58978 -78.1679 -2.58978 2.58978 0.60 9.7522e-05 7.7311e-05 0.00783891 0.00640889 48 1488 26 6.99608e+06 147157 865456. 2994.66 3.24 0.0663481 0.0561079 28354 207349 -1 1153 16 786 1076 70061 19671 0 0 70061 19671 1076 877 0 0 3940 3437 0 0 6423 4835 0 0 1076 966 0 0 27115 4984 0 0 30431 4572 0 0 1076 0 0 290 282 288 2668 0 0 2.97282 2.97282 -95.9258 -2.97282 0 0 1.05005e+06 3633.38 0.43 0.04 0.21 -1 -1 0.43 0.0117703 0.0106709 60 20 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 18.65 vpr 53.85 MiB -1 -1 0.17 17500 1 0.02 -1 -1 29752 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55140 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 15.3 MiB 1.00 880 53.8 MiB 0.08 0.00 3.31348 -119.119 -3.31348 3.31348 0.96 0.000217537 0.000176941 0.0181617 0.015036 40 3203 38 6.99608e+06 220735 706193. 2443.58 14.24 0.13875 0.119341 26914 176310 -1 2623 22 2238 2961 332718 68351 0 0 332718 68351 2961 2674 0 0 9310 8299 0 0 17572 10886 0 0 2961 2770 0 0 158803 20272 0 0 141111 23450 0 0 2961 0 0 723 698 731 6559 0 0 4.50881 4.50881 -160.233 -4.50881 0 0 926341. 3205.33 0.38 0.10 0.17 -1 -1 0.38 0.0198213 0.0178767 93 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.59 vpr 53.97 MiB -1 -1 0.11 17772 1 0.01 -1 -1 29876 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55264 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 15.5 MiB 0.84 1196 54.0 MiB 0.05 0.00 4.10482 -128.774 -4.10482 4.10482 0.60 0.000152162 0.00012445 0.0112719 0.00931575 46 3768 28 6.99608e+06 235451 828058. 2865.25 3.83 0.106449 0.0932361 28066 200906 -1 2817 20 1899 2965 237936 47330 0 0 237936 47330 2965 2456 0 0 9002 7835 0 0 14539 9653 0 0 2965 2601 0 0 99016 13808 0 0 109449 10977 0 0 2965 0 0 1066 1279 1128 9022 0 0 4.89076 4.89076 -158.919 -4.89076 0 0 1.01997e+06 3529.29 0.38 0.08 0.18 -1 -1 0.38 0.0196717 0.0177102 98 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 9.53 vpr 53.81 MiB -1 -1 0.09 17712 1 0.01 -1 -1 29680 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55100 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 15.3 MiB 0.82 838 53.8 MiB 0.09 0.00 3.52245 -112.99 -3.52245 3.52245 1.04 0.000237987 0.00019375 0.0209369 0.0173944 44 2681 27 6.99608e+06 220735 787024. 2723.27 5.47 0.14215 0.122771 27778 195446 -1 1832 21 1653 2272 160896 36630 0 0 160896 36630 2272 1849 0 0 6935 6102 0 0 12015 7913 0 0 2272 1997 0 0 71146 8911 0 0 66256 9858 0 0 2272 0 0 619 683 689 5877 0 0 3.47186 3.47186 -128.76 -3.47186 0 0 997811. 3452.63 0.27 0.04 0.11 -1 -1 0.27 0.0107566 0.00964778 85 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 18.40 vpr 53.54 MiB -1 -1 0.16 17336 1 0.01 -1 -1 29732 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54824 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 15.0 MiB 1.61 688 53.5 MiB 0.08 0.00 3.02694 -92.7898 -3.02694 3.02694 1.01 0.000205473 0.000168 0.0160991 0.0134312 36 2570 45 6.99608e+06 294314 648988. 2245.63 13.44 0.170289 0.148188 26050 158493 -1 1769 20 1260 2046 178947 37969 0 0 178947 37969 2046 1636 0 0 6420 5490 0 0 11340 7322 0 0 2046 1756 0 0 79407 10474 0 0 77688 11291 0 0 2046 0 0 786 1003 1019 7532 0 0 3.47436 3.47436 -118.761 -3.47436 0 0 828058. 2865.25 0.31 0.06 0.13 -1 -1 0.31 0.0150223 0.0134746 72 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 22.50 vpr 54.23 MiB -1 -1 0.16 17668 1 0.00 -1 -1 29800 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55536 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 15.6 MiB 2.25 1349 54.2 MiB 0.06 0.00 4.83158 -151.15 -4.83158 4.83158 0.75 0.000153583 0.000124496 0.0130438 0.0109016 44 3848 42 6.99608e+06 264882 787024. 2723.27 17.25 0.142111 0.122659 27778 195446 -1 2904 21 2545 3812 304112 60260 0 0 304112 60260 3812 2985 0 0 11403 10076 0 0 20273 12799 0 0 3812 3122 0 0 130470 16246 0 0 134342 15032 0 0 3812 0 0 1267 1569 1353 11249 0 0 5.27418 5.27418 -179.289 -5.27418 0 0 997811. 3452.63 0.25 0.06 0.11 -1 -1 0.25 0.0126611 0.0113599 116 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 7.65 vpr 53.69 MiB -1 -1 0.17 17688 1 0.01 -1 -1 29636 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 15.2 MiB 0.81 734 53.7 MiB 0.04 0.00 3.97864 -114.648 -3.97864 3.97864 0.61 0.000122827 9.8311e-05 0.00831921 0.00696313 40 2586 39 6.99608e+06 206020 706193. 2443.58 4.04 0.0835255 0.0722111 26914 176310 -1 1905 23 1716 2294 185454 41715 0 0 185454 41715 2294 2017 0 0 7447 6363 0 0 12581 8373 0 0 2294 2062 0 0 81600 11234 0 0 79238 11666 0 0 2294 0 0 578 789 719 5902 0 0 4.19065 4.19065 -143.841 -4.19065 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0174494 0.0155627 83 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 6.51 vpr 53.07 MiB -1 -1 0.14 16980 1 0.01 -1 -1 29540 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54348 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 14.6 MiB 0.26 523 53.1 MiB 0.06 0.00 2.4029 -74.0791 -2.4029 2.4029 1.04 0.000176543 0.00014351 0.0120754 0.00998825 40 1877 34 6.99608e+06 191304 706193. 2443.58 3.03 0.0621219 0.0528888 26914 176310 -1 1434 22 1051 1610 138741 36141 0 0 138741 36141 1610 1405 0 0 5585 4840 0 0 9914 6631 0 0 1610 1445 0 0 58183 10610 0 0 61839 11210 0 0 1610 0 0 559 642 786 5189 0 0 2.88167 2.88167 -101.418 -2.88167 0 0 926341. 3205.33 0.37 0.05 0.17 -1 -1 0.37 0.00938311 0.00843447 51 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 10.96 vpr 53.87 MiB -1 -1 0.17 17348 1 0.01 -1 -1 29684 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55164 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 15.3 MiB 1.67 1068 53.9 MiB 0.08 0.00 3.87622 -110.067 -3.87622 3.87622 0.97 0.000225881 0.000185047 0.018236 0.0153033 54 2492 24 6.99608e+06 235451 949917. 3286.91 5.67 0.153955 0.13249 29506 232905 -1 1996 20 1328 2136 140501 30259 0 0 140501 30259 2136 1533 0 0 6765 5937 0 0 11480 7549 0 0 2136 1669 0 0 58633 6903 0 0 59351 6668 0 0 2136 0 0 808 1109 1291 8916 0 0 4.26726 4.26726 -130.38 -4.26726 0 0 1.17392e+06 4061.99 0.48 0.06 0.23 -1 -1 0.48 0.018703 0.0168537 85 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.62 vpr 53.34 MiB -1 -1 0.14 17068 1 0.01 -1 -1 29688 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54616 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 14.7 MiB 1.09 487 53.3 MiB 0.03 0.00 2.5722 -81.981 -2.5722 2.5722 0.59 9.4644e-05 7.5283e-05 0.00712841 0.00583315 40 1831 29 6.99608e+06 206020 706193. 2443.58 2.85 0.0674975 0.0567499 26914 176310 -1 1432 24 1339 1891 140956 36096 0 0 140956 36096 1891 1616 0 0 6118 5220 0 0 10784 7103 0 0 1891 1684 0 0 58116 10205 0 0 62156 10268 0 0 1891 0 0 552 582 581 4934 0 0 3.10097 3.10097 -112.233 -3.10097 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.0139702 0.0123822 57 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 9.10 vpr 53.54 MiB -1 -1 0.16 17512 1 0.02 -1 -1 29720 -1 -1 13 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54824 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 15.0 MiB 0.59 671 53.5 MiB 0.07 0.00 2.90847 -90.17 -2.90847 2.90847 1.02 0.00019944 0.000162056 0.0148226 0.0123426 44 1941 27 6.99608e+06 191304 787024. 2723.27 5.10 0.127717 0.110405 27778 195446 -1 1361 17 1069 1443 87391 21254 0 0 87391 21254 1443 1238 0 0 4673 4079 0 0 7786 5381 0 0 1443 1308 0 0 34497 5000 0 0 37549 4248 0 0 1443 0 0 374 455 408 3720 0 0 3.28551 3.28551 -109.515 -3.28551 0 0 997811. 3452.63 0.38 0.04 0.16 -1 -1 0.38 0.0122338 0.0110427 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.47 vpr 53.94 MiB -1 -1 0.18 17504 1 0.01 -1 -1 29784 -1 -1 18 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55232 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 15.3 MiB 2.14 1111 53.9 MiB 0.09 0.00 3.40046 -109.052 -3.40046 3.40046 0.97 0.000224481 0.000181961 0.0197916 0.0163868 38 3389 47 6.99608e+06 264882 678818. 2348.85 2.97 0.100675 0.0880282 26626 170182 -1 2540 21 1841 2724 227152 46905 0 0 227152 46905 2724 2190 0 0 8358 7356 0 0 13709 9179 0 0 2724 2412 0 0 100967 12703 0 0 98670 13065 0 0 2724 0 0 883 753 824 7054 0 0 4.1331 4.1331 -141.362 -4.1331 0 0 902133. 3121.57 0.30 0.08 0.15 -1 -1 0.30 0.0180993 0.0162619 97 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 9.70 vpr 53.77 MiB -1 -1 0.15 17324 1 0.02 -1 -1 29768 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55064 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 15.1 MiB 1.74 1138 53.8 MiB 0.09 0.00 3.50518 -121.326 -3.50518 3.50518 1.02 0.000249165 0.000203339 0.0214979 0.0178888 44 2818 33 6.99608e+06 220735 787024. 2723.27 4.45 0.14196 0.122749 27778 195446 -1 2227 22 1692 2362 173067 35966 0 0 173067 35966 2362 1968 0 0 7354 6435 0 0 12038 8191 0 0 2362 2030 0 0 74028 8736 0 0 74923 8606 0 0 2362 0 0 670 552 651 5713 0 0 4.13911 4.13911 -146.135 -4.13911 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0187536 0.0168195 93 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 8.80 vpr 53.84 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29712 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55128 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 15.2 MiB 2.78 1004 53.8 MiB 0.08 0.00 3.79817 -117.764 -3.79817 3.79817 1.02 0.000250808 0.000206454 0.0175387 0.0146335 38 3351 41 6.99608e+06 220735 678818. 2348.85 2.57 0.107332 0.0937582 26626 170182 -1 2422 20 1922 2755 201444 43299 0 0 201444 43299 2755 2357 0 0 8429 7421 0 0 13590 9068 0 0 2755 2484 0 0 86852 11189 0 0 87063 10780 0 0 2755 0 0 833 853 859 7472 0 0 4.28345 4.28345 -148.955 -4.28345 0 0 902133. 3121.57 0.33 0.07 0.14 -1 -1 0.33 0.0171025 0.0152898 90 48 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.56 vpr 53.47 MiB -1 -1 0.13 17348 1 0.01 -1 -1 29756 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 15.0 MiB 2.52 810 53.5 MiB 0.05 0.00 3.18112 -104.147 -3.18112 3.18112 0.82 0.000100448 7.9732e-05 0.0100516 0.00819004 46 1976 23 6.99608e+06 161872 828058. 2865.25 3.98 0.0769463 0.0660577 28066 200906 -1 1654 17 1136 1504 126812 25990 0 0 126812 25990 1504 1341 0 0 4771 4206 0 0 7972 5261 0 0 1504 1378 0 0 52805 7405 0 0 58256 6399 0 0 1504 0 0 368 231 367 3246 0 0 3.35756 3.35756 -117.683 -3.35756 0 0 1.01997e+06 3529.29 0.38 0.05 0.18 -1 -1 0.38 0.0116641 0.0104837 67 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 8.12 vpr 53.71 MiB -1 -1 0.09 17472 1 0.01 -1 -1 29732 -1 -1 14 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54996 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 15.2 MiB 1.09 785 53.7 MiB 0.05 0.00 3.04907 -100.076 -3.04907 3.04907 0.59 0.000108934 8.6493e-05 0.0102416 0.00839972 40 2430 33 6.99608e+06 206020 706193. 2443.58 4.49 0.118271 0.101834 26914 176310 -1 2149 20 1703 2403 211887 48110 0 0 211887 48110 2403 2191 0 0 7972 7027 0 0 14454 9685 0 0 2403 2236 0 0 86491 14248 0 0 98164 12723 0 0 2403 0 0 700 740 656 5899 0 0 3.37777 3.37777 -128.551 -3.37777 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0155379 0.0139391 86 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 16.31 vpr 53.84 MiB -1 -1 0.16 17560 1 0.01 -1 -1 29728 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 15.3 MiB 1.18 842 53.8 MiB 0.09 0.00 2.82424 -91.6434 -2.82424 2.82424 0.94 0.000201905 0.000161622 0.016784 0.0137543 40 2578 23 6.99608e+06 279598 706193. 2443.58 11.89 0.170713 0.149126 26914 176310 -1 2185 18 1632 2360 223372 50355 0 0 223372 50355 2360 2022 0 0 8174 7122 0 0 14668 9780 0 0 2360 2110 0 0 95557 15271 0 0 100253 14050 0 0 2360 0 0 728 1204 1118 8208 0 0 3.35301 3.35301 -119.072 -3.35301 0 0 926341. 3205.33 0.29 0.05 0.17 -1 -1 0.29 0.0111776 0.0100083 91 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.00 vpr 53.49 MiB -1 -1 0.14 17564 1 0.02 -1 -1 29784 -1 -1 17 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54776 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 14.9 MiB 0.60 740 53.5 MiB 0.08 0.00 3.06285 -86.9863 -3.06285 3.06285 1.03 0.000202698 0.000164734 0.0181055 0.0149382 44 2105 23 6.99608e+06 250167 787024. 2723.27 3.97 0.119279 0.102643 27778 195446 -1 1512 19 1165 1670 106024 24141 0 0 106024 24141 1670 1274 0 0 5339 4661 0 0 8770 6017 0 0 1670 1361 0 0 44787 5371 0 0 43788 5457 0 0 1670 0 0 505 623 568 5056 0 0 3.58362 3.58362 -106.147 -3.58362 0 0 997811. 3452.63 0.31 0.03 0.19 -1 -1 0.31 0.00851811 0.00770076 71 20 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 8.99 vpr 53.72 MiB -1 -1 0.16 17560 1 0.01 -1 -1 29780 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55008 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 15.2 MiB 2.06 878 53.7 MiB 0.05 0.00 3.66581 -114.714 -3.66581 3.66581 0.68 0.000110015 8.8305e-05 0.00974175 0.00800686 42 2792 26 6.99608e+06 220735 744469. 2576.02 4.32 0.124994 0.109189 27202 183097 -1 2127 18 1622 2192 192877 41253 0 0 192877 41253 2192 2013 0 0 7320 6459 0 0 12486 8457 0 0 2192 2088 0 0 84321 11146 0 0 84366 11090 0 0 2192 0 0 570 437 563 4986 0 0 4.04565 4.04565 -141.948 -4.04565 0 0 949917. 3286.91 0.35 0.06 0.16 -1 -1 0.35 0.014384 0.012977 87 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 9.01 vpr 53.76 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29772 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55052 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 15.2 MiB 1.01 871 53.8 MiB 0.05 0.00 2.893 -98.0663 -2.893 2.893 0.85 0.000112559 8.9075e-05 0.0101027 0.0081792 46 3038 37 6.99608e+06 206020 828058. 2865.25 4.65 0.110504 0.0959248 28066 200906 -1 1892 21 1743 2421 189115 41389 0 0 189115 41389 2421 1990 0 0 7567 6606 0 0 11949 8181 0 0 2421 2082 0 0 81951 10895 0 0 82806 11635 0 0 2421 0 0 678 644 414 5513 0 0 3.28342 3.28342 -122.592 -3.28342 0 0 1.01997e+06 3529.29 0.42 0.07 0.20 -1 -1 0.42 0.0181947 0.01638 93 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 18.31 vpr 53.46 MiB -1 -1 0.14 17288 1 0.01 -1 -1 29744 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 14.9 MiB 0.46 764 53.5 MiB 0.08 0.00 3.86008 -101.909 -3.86008 3.86008 0.95 0.000192203 0.000158188 0.0155173 0.0128703 44 2586 31 6.99608e+06 353176 787024. 2723.27 14.49 0.159185 0.139024 27778 195446 -1 1816 17 989 1720 126571 28110 0 0 126571 28110 1720 1339 0 0 5568 4781 0 0 9014 6412 0 0 1720 1433 0 0 51676 7590 0 0 56873 6555 0 0 1720 0 0 731 775 874 6356 0 0 3.69046 3.69046 -120.973 -3.69046 0 0 997811. 3452.63 0.44 0.06 0.17 -1 -1 0.44 0.0146787 0.0133139 74 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 6.28 vpr 53.76 MiB -1 -1 0.16 17676 1 0.03 -1 -1 29664 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 15.2 MiB 1.95 880 53.8 MiB 0.05 0.00 3.62631 -119.782 -3.62631 3.62631 0.59 0.000129577 0.000103946 0.012543 0.0102988 44 3060 35 6.99608e+06 206020 787024. 2723.27 1.64 0.0618476 0.0527222 27778 195446 -1 2112 21 1753 2569 185234 42043 0 0 185234 42043 2569 2157 0 0 7837 7018 0 0 13591 8866 0 0 2569 2255 0 0 76667 11095 0 0 82001 10652 0 0 2569 0 0 816 713 683 6413 0 0 4.28795 4.28795 -147.864 -4.28795 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0187996 0.0169142 86 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.70 vpr 54.07 MiB -1 -1 0.16 17492 1 0.02 -1 -1 29748 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55368 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 15.5 MiB 0.85 1114 54.1 MiB 0.08 0.00 4.133 -132.854 -4.133 4.133 0.92 0.000247979 0.000203339 0.017548 0.0144853 46 3231 43 6.99608e+06 250167 828058. 2865.25 3.76 0.12247 0.107583 28066 200906 -1 2408 23 2023 2798 242392 50169 0 0 242392 50169 2798 2448 0 0 8758 7804 0 0 14909 9689 0 0 2798 2550 0 0 105296 14556 0 0 107833 13122 0 0 2798 0 0 775 983 843 7383 0 0 5.27664 5.27664 -165.12 -5.27664 0 0 1.01997e+06 3529.29 0.29 0.05 0.16 -1 -1 0.29 0.0118923 0.0106324 102 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 10.68 vpr 53.91 MiB -1 -1 0.16 17680 1 0.01 -1 -1 29676 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55204 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 15.4 MiB 1.07 1025 53.9 MiB 0.11 0.00 3.60146 -116.782 -3.60146 3.60146 1.03 0.000265573 0.000216839 0.0239419 0.0198303 54 3232 50 6.99608e+06 250167 949917. 3286.91 5.83 0.173336 0.149437 29506 232905 -1 2315 22 2115 3124 269229 57677 0 0 269229 57677 3124 2581 0 0 9695 8537 0 0 17066 10950 0 0 3124 2791 0 0 113129 16696 0 0 123091 16122 0 0 3124 0 0 1009 1455 1373 9493 0 0 4.1206 4.1206 -145.247 -4.1206 0 0 1.17392e+06 4061.99 0.49 0.09 0.22 -1 -1 0.49 0.0214578 0.0191421 104 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.01 vpr 53.36 MiB -1 -1 0.15 17572 1 0.01 -1 -1 29816 -1 -1 13 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54644 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 14.8 MiB 1.10 675 53.4 MiB 0.07 0.00 3.51145 -100.51 -3.51145 3.51145 0.97 0.000181613 0.000147322 0.0148404 0.0122646 38 2638 41 6.99608e+06 191304 678818. 2348.85 1.65 0.0502758 0.0425245 26626 170182 -1 1826 21 1383 1959 178699 38217 0 0 178699 38217 1959 1658 0 0 6013 5310 0 0 10376 6610 0 0 1959 1718 0 0 76959 11766 0 0 81433 11155 0 0 1959 0 0 576 623 613 4963 0 0 3.45286 3.45286 -118.612 -3.45286 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0126761 0.0113351 71 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.99 vpr 53.88 MiB -1 -1 0.15 17464 1 0.01 -1 -1 29756 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55168 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 15.4 MiB 1.26 947 53.9 MiB 0.09 0.00 4.42536 -130.692 -4.42536 4.42536 1.02 0.000257804 0.000210957 0.0216594 0.0179987 44 3238 39 6.99608e+06 264882 787024. 2723.27 3.22 0.126201 0.11009 27778 195446 -1 1985 21 1894 2690 184793 45428 0 0 184793 45428 2690 2333 0 0 8633 7591 0 0 14272 9892 0 0 2690 2378 0 0 71943 12649 0 0 84565 10585 0 0 2690 0 0 796 795 621 6648 0 0 5.3736 5.3736 -161.745 -5.3736 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0173651 0.0155686 104 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 9.17 vpr 53.70 MiB -1 -1 0.15 17340 1 0.01 -1 -1 29736 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54988 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 15.1 MiB 1.40 937 53.7 MiB 0.05 0.00 3.72804 -113.999 -3.72804 3.72804 0.82 0.000133555 0.000107739 0.0121819 0.0100926 52 2582 25 6.99608e+06 206020 926341. 3205.33 4.43 0.102016 0.0874913 29218 227130 -1 1998 24 1683 2880 250259 50999 0 0 250259 50999 2880 2282 0 0 8450 7409 0 0 15333 9401 0 0 2880 2424 0 0 106175 15092 0 0 114541 14391 0 0 2880 0 0 1197 1919 2110 12736 0 0 4.05756 4.05756 -133.324 -4.05756 0 0 1.14541e+06 3963.36 0.44 0.08 0.17 -1 -1 0.44 0.0192962 0.0172752 82 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 13.14 vpr 53.67 MiB -1 -1 0.16 17588 1 0.01 -1 -1 29760 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 15.1 MiB 1.27 1138 53.7 MiB 0.09 0.00 4.18675 -123.068 -4.18675 4.18675 0.93 0.000225029 0.000184861 0.0205187 0.0171005 36 2907 29 6.99608e+06 250167 648988. 2245.63 9.02 0.119464 0.102753 26050 158493 -1 2446 20 1631 2352 209949 42297 0 0 209949 42297 2352 1918 0 0 7567 6579 0 0 13019 8708 0 0 2352 1985 0 0 93212 11222 0 0 91447 11885 0 0 2352 0 0 721 834 895 6634 0 0 4.41876 4.41876 -149.014 -4.41876 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0164773 0.0148254 87 43 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 9.77 vpr 53.95 MiB -1 -1 0.18 17404 1 0.02 -1 -1 29740 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55240 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 15.4 MiB 2.80 1187 53.9 MiB 0.10 0.00 3.54046 -115.118 -3.54046 3.54046 0.78 0.000255541 0.000202823 0.0202488 0.0165744 40 3018 31 6.99608e+06 294314 706193. 2443.58 3.99 0.112185 0.0979407 26914 176310 -1 2825 22 2481 3419 373931 71652 0 0 373931 71652 3419 3076 0 0 11153 9729 0 0 20608 13059 0 0 3419 3249 0 0 163576 21851 0 0 171756 20688 0 0 3419 0 0 938 1206 1228 9325 0 0 4.2604 4.2604 -153.579 -4.2604 0 0 926341. 3205.33 0.32 0.06 0.16 -1 -1 0.32 0.0110604 0.00987749 108 78 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 12.15 vpr 53.91 MiB -1 -1 0.17 17344 1 0.02 -1 -1 29680 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55208 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 15.4 MiB 2.14 927 53.9 MiB 0.10 0.00 4.00366 -121.91 -4.00366 4.00366 1.04 0.000262448 0.000207941 0.0214239 0.0177245 56 2587 24 6.99608e+06 250167 973134. 3367.25 6.26 0.175621 0.152112 29794 239141 -1 2151 19 1662 2381 228015 49933 0 0 228015 49933 2381 2064 0 0 8177 7023 0 0 14545 9673 0 0 2381 2183 0 0 99971 14142 0 0 100560 14848 0 0 2381 0 0 719 668 566 6026 0 0 4.77861 4.77861 -155.865 -4.77861 0 0 1.19926e+06 4149.71 0.46 0.08 0.22 -1 -1 0.46 0.0188483 0.0170303 95 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 12.26 vpr 54.06 MiB -1 -1 0.17 17492 1 0.02 -1 -1 29736 -1 -1 20 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55356 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 15.5 MiB 2.97 1026 54.1 MiB 0.10 0.00 3.28125 -103.829 -3.28125 3.28125 1.03 0.000235084 0.000188847 0.0219901 0.0180976 44 3051 27 6.99608e+06 294314 787024. 2723.27 5.65 0.191332 0.166468 27778 195446 -1 2277 22 2011 2696 221243 47383 0 0 221243 47383 2696 2362 0 0 8667 7580 0 0 15138 10178 0 0 2696 2449 0 0 95003 12623 0 0 97043 12191 0 0 2696 0 0 685 810 689 6406 0 0 3.52016 3.52016 -121.41 -3.52016 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.019629 0.0175862 109 79 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 13.09 vpr 53.15 MiB -1 -1 0.13 16836 1 0.01 -1 -1 29672 -1 -1 10 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 14.6 MiB 1.54 550 53.2 MiB 0.06 0.00 2.91658 -83.73 -2.91658 2.91658 0.92 0.000173429 0.000140988 0.0129691 0.0107094 40 1756 24 6.99608e+06 147157 706193. 2443.58 8.43 0.108669 0.0932182 26914 176310 -1 1539 24 1175 1822 160623 41586 0 0 160623 41586 1822 1518 0 0 5950 5337 0 0 11112 6960 0 0 1822 1559 0 0 69574 12414 0 0 70343 13798 0 0 1822 0 0 647 762 678 5385 0 0 3.05367 3.05367 -113.247 -3.05367 0 0 926341. 3205.33 0.27 0.04 0.16 -1 -1 0.27 0.00815248 0.00723965 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 9.36 vpr 54.11 MiB -1 -1 0.17 17488 1 0.02 -1 -1 29720 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55412 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 15.5 MiB 0.83 984 54.1 MiB 0.09 0.00 4.21916 -133.154 -4.21916 4.21916 0.97 0.000250107 0.00020095 0.0181891 0.0149885 52 2622 26 6.99608e+06 250167 926341. 3205.33 5.21 0.158078 0.137506 29218 227130 -1 1969 22 1795 2573 186230 41187 0 0 186230 41187 2573 2225 0 0 8143 7062 0 0 14071 9289 0 0 2573 2344 0 0 76576 10324 0 0 82294 9943 0 0 2573 0 0 778 747 860 6932 0 0 4.88974 4.88974 -153.305 -4.88974 0 0 1.14541e+06 3963.36 0.47 0.08 0.22 -1 -1 0.47 0.0206616 0.0185667 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 17.83 vpr 54.06 MiB -1 -1 0.15 17276 1 0.02 -1 -1 29872 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55360 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 15.5 MiB 1.12 1065 54.1 MiB 0.05 0.00 3.9997 -135.29 -3.9997 3.9997 0.61 0.000132482 0.000105573 0.0120455 0.00986381 40 3464 43 6.99608e+06 250167 706193. 2443.58 14.23 0.207759 0.18166 26914 176310 -1 2613 24 2905 4022 333837 77748 0 0 333837 77748 4022 3474 0 0 12659 11235 0 0 24243 14904 0 0 4022 3548 0 0 140666 24030 0 0 148225 20557 0 0 4022 0 0 1117 1436 1090 10001 0 0 5.17054 5.17054 -174.204 -5.17054 0 0 926341. 3205.33 0.23 0.06 0.09 -1 -1 0.23 0.012129 0.0107973 109 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 9.23 vpr 53.49 MiB -1 -1 0.15 17552 1 0.02 -1 -1 29836 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54776 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 15.0 MiB 1.19 741 53.5 MiB 0.08 0.00 3.03397 -94.6537 -3.03397 3.03397 0.99 0.000193851 0.00015901 0.0172043 0.0142073 38 2475 49 6.99608e+06 161872 678818. 2348.85 4.68 0.145462 0.126895 26626 170182 -1 1854 20 1205 1496 128577 28387 0 0 128577 28387 1496 1400 0 0 4873 4269 0 0 7431 5357 0 0 1496 1422 0 0 54085 8452 0 0 59196 7487 0 0 1496 0 0 291 287 312 2996 0 0 3.71161 3.71161 -126.961 -3.71161 0 0 902133. 3121.57 0.37 0.05 0.15 -1 -1 0.37 0.0139826 0.0124967 69 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 8.56 vpr 53.09 MiB -1 -1 0.16 16944 1 0.01 -1 -1 29592 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54368 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 14.6 MiB 0.61 491 53.1 MiB 0.06 0.00 2.78823 -83.0214 -2.78823 2.78823 1.02 0.000183386 0.000147514 0.0124401 0.0101844 44 1835 49 6.99608e+06 191304 787024. 2723.27 4.53 0.120175 0.10389 27778 195446 -1 1229 19 1022 1562 93459 24288 0 0 93459 24288 1562 1205 0 0 5057 4516 0 0 8861 6119 0 0 1562 1250 0 0 38414 5197 0 0 38003 6001 0 0 1562 0 0 540 568 370 4314 0 0 2.98662 2.98662 -102.237 -2.98662 0 0 997811. 3452.63 0.38 0.04 0.18 -1 -1 0.38 0.0115184 0.0103249 56 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 18.51 vpr 53.68 MiB -1 -1 0.17 17536 1 0.01 -1 -1 29764 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54972 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 15.1 MiB 0.68 901 53.7 MiB 0.05 0.00 3.70481 -122.064 -3.70481 3.70481 0.73 0.000124499 0.000100214 0.0113229 0.00933001 42 3145 50 6.99608e+06 220735 744469. 2576.02 14.64 0.175405 0.152033 27202 183097 -1 2360 22 1926 2520 252155 51858 0 0 252155 51858 2520 2233 0 0 8075 7129 0 0 14937 9617 0 0 2520 2313 0 0 114041 14697 0 0 110062 15869 0 0 2520 0 0 594 523 600 5425 0 0 4.53895 4.53895 -154.258 -4.53895 0 0 949917. 3286.91 0.39 0.09 0.16 -1 -1 0.39 0.0202999 0.0182636 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.94 vpr 53.86 MiB -1 -1 0.17 17280 1 0.01 -1 -1 29700 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55156 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 15.2 MiB 1.50 977 53.9 MiB 0.06 0.00 3.63687 -112.427 -3.63687 3.63687 0.66 0.000126526 9.8359e-05 0.0120268 0.00976247 46 2733 24 6.99608e+06 220735 828058. 2865.25 3.97 0.101949 0.0881242 28066 200906 -1 2023 22 1679 2329 146614 35742 0 0 146614 35742 2329 2013 0 0 7178 6303 0 0 11646 7866 0 0 2329 2075 0 0 58760 9828 0 0 64372 7657 0 0 2329 0 0 650 601 732 6072 0 0 4.28925 4.28925 -143.302 -4.28925 0 0 1.01997e+06 3529.29 0.25 0.04 0.11 -1 -1 0.25 0.0110613 0.00996364 95 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 23.37 vpr 53.81 MiB -1 -1 0.17 17164 1 0.02 -1 -1 29740 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55104 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 15.3 MiB 0.51 891 53.8 MiB 0.10 0.00 3.76881 -112.186 -3.76881 3.76881 0.97 0.000240391 0.000196042 0.0236189 0.0194901 44 3121 49 6.99608e+06 250167 787024. 2723.27 19.53 0.234377 0.205109 27778 195446 -1 1990 19 1517 2531 177963 41261 0 0 177963 41261 2531 1996 0 0 7894 6856 0 0 13258 9046 0 0 2531 2110 0 0 72418 10729 0 0 79331 10524 0 0 2531 0 0 1014 1117 1132 8954 0 0 4.02335 4.02335 -138.533 -4.02335 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0202654 0.0182787 83 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 14.99 vpr 53.83 MiB -1 -1 0.17 17272 1 0.02 -1 -1 29840 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55120 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 15.3 MiB 1.36 875 53.8 MiB 0.08 0.00 3.06347 -88.1464 -3.06347 3.06347 1.02 0.000206014 0.000165699 0.0183015 0.0151117 38 2817 32 6.99608e+06 235451 678818. 2348.85 10.17 0.166193 0.14415 26626 170182 -1 2190 23 1826 2622 218393 47076 0 0 218393 47076 2622 2152 0 0 8207 7216 0 0 13288 8988 0 0 2622 2295 0 0 97751 12738 0 0 93903 13687 0 0 2622 0 0 796 884 770 7030 0 0 3.31366 3.31366 -116.638 -3.31366 0 0 902133. 3121.57 0.36 0.08 0.16 -1 -1 0.36 0.019738 0.0177882 86 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 8.71 vpr 53.32 MiB -1 -1 0.14 17080 1 0.02 -1 -1 29740 -1 -1 15 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54604 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 14.7 MiB 1.24 514 53.3 MiB 0.06 0.00 2.96122 -84.2305 -2.96122 2.96122 1.03 0.000184414 0.000150532 0.0133594 0.0111298 38 1686 46 6.99608e+06 220735 678818. 2348.85 4.08 0.0948021 0.0824063 26626 170182 -1 1126 18 892 1272 81249 21695 0 0 81249 21695 1272 1030 0 0 4191 3626 0 0 6144 4595 0 0 1272 1053 0 0 35435 5184 0 0 32935 6207 0 0 1272 0 0 380 396 296 3266 0 0 3.57972 3.57972 -108.609 -3.57972 0 0 902133. 3121.57 0.36 0.04 0.16 -1 -1 0.36 0.0121377 0.0109076 66 26 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 10.93 vpr 54.21 MiB -1 -1 0.10 17536 1 0.02 -1 -1 29844 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55516 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 15.8 MiB 1.04 1143 54.2 MiB 0.12 0.00 3.54614 -117.741 -3.54614 3.54614 0.98 0.000270645 0.000220197 0.0275702 0.0227107 46 4101 46 6.99608e+06 264882 828058. 2865.25 6.39 0.163064 0.143032 28066 200906 -1 2767 22 2290 3454 242197 54591 0 0 242197 54591 3454 2837 0 0 10341 9236 0 0 17168 11235 0 0 3454 3043 0 0 104494 13786 0 0 103286 14454 0 0 3454 0 0 1164 1376 1307 10219 0 0 4.90815 4.90815 -157.921 -4.90815 0 0 1.01997e+06 3529.29 0.41 0.09 0.19 -1 -1 0.41 0.0245335 0.0221309 111 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 9.38 vpr 53.86 MiB -1 -1 0.18 17788 1 0.01 -1 -1 29804 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 15.4 MiB 2.35 1060 53.9 MiB 0.08 0.00 4.22373 -123.342 -4.22373 4.22373 0.59 0.000222008 0.000178276 0.017335 0.0142935 44 3319 44 6.99608e+06 250167 787024. 2723.27 3.89 0.0994308 0.084452 27778 195446 -1 2255 22 2103 2974 258951 55188 0 0 258951 55188 2974 2702 0 0 9245 8026 0 0 16428 10651 0 0 2974 2820 0 0 118393 15291 0 0 108937 15698 0 0 2974 0 0 871 1217 1102 8496 0 0 5.02875 5.02875 -160.335 -5.02875 0 0 997811. 3452.63 0.42 0.09 0.19 -1 -1 0.42 0.021853 0.0197798 100 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 5.15 vpr 53.80 MiB -1 -1 0.16 17344 1 0.01 -1 -1 29732 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55088 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 15.3 MiB 0.81 891 53.8 MiB 0.05 0.00 3.46994 -123.233 -3.46994 3.46994 0.58 0.000113209 9.005e-05 0.0112052 0.00913443 44 2752 44 6.99608e+06 206020 787024. 2723.27 1.78 0.0754385 0.0651589 27778 195446 -1 2008 20 1476 1821 133822 30218 0 0 133822 30218 1821 1632 0 0 5893 5202 0 0 9438 6708 0 0 1821 1666 0 0 54934 7961 0 0 59915 7049 0 0 1821 0 0 345 231 270 3357 0 0 3.75925 3.75925 -142.506 -3.75925 0 0 997811. 3452.63 0.38 0.05 0.18 -1 -1 0.38 0.015162 0.0136048 91 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 17.89 vpr 53.70 MiB -1 -1 0.17 17560 1 0.01 -1 -1 29652 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 15.2 MiB 0.82 903 53.7 MiB 0.08 0.00 3.34348 -105.474 -3.34348 3.34348 0.96 0.000214242 0.000172707 0.0168808 0.0138989 38 3296 42 6.99608e+06 220735 678818. 2348.85 14.00 0.180956 0.157102 26626 170182 -1 2143 19 1391 1881 161934 34811 0 0 161934 34811 1881 1650 0 0 5831 5016 0 0 9033 6254 0 0 1881 1679 0 0 72868 9651 0 0 70440 10561 0 0 1881 0 0 490 528 449 4602 0 0 3.95806 3.95806 -130.79 -3.95806 0 0 902133. 3121.57 0.26 0.04 0.09 -1 -1 0.26 0.00931162 0.00840215 81 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.13 vpr 53.86 MiB -1 -1 0.18 17500 1 0.02 -1 -1 29736 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 15.4 MiB 1.75 938 53.9 MiB 0.05 0.00 3.32588 -101.51 -3.32588 3.32588 0.85 0.000144252 0.000117191 0.010848 0.0090125 44 3018 33 6.99608e+06 250167 787024. 2723.27 3.04 0.110477 0.0959249 27778 195446 -1 2029 24 2043 2961 221987 50511 0 0 221987 50511 2961 2339 0 0 9553 8266 0 0 15844 11111 0 0 2961 2483 0 0 95127 13125 0 0 95541 13187 0 0 2961 0 0 918 1230 1256 9177 0 0 3.89111 3.89111 -126.339 -3.89111 0 0 997811. 3452.63 0.41 0.08 0.16 -1 -1 0.41 0.0223914 0.0200661 97 46 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.91 vpr 53.79 MiB -1 -1 0.17 17280 1 0.01 -1 -1 29688 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55080 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 15.3 MiB 1.96 873 53.8 MiB 0.08 0.00 3.01479 -92.6038 -3.01479 3.01479 1.02 0.000224935 0.000183683 0.0186106 0.015498 48 2413 26 6.99608e+06 250167 865456. 2994.66 5.29 0.139537 0.121103 28354 207349 -1 1949 19 1497 2234 194271 44634 0 0 194271 44634 2234 1845 0 0 7766 6751 0 0 13438 9362 0 0 2234 2045 0 0 81893 12189 0 0 86706 12442 0 0 2234 0 0 737 839 885 6731 0 0 3.15966 3.15966 -112.821 -3.15966 0 0 1.05005e+06 3633.38 0.44 0.07 0.19 -1 -1 0.44 0.0162876 0.0145879 88 46 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 11.05 vpr 53.86 MiB -1 -1 0.17 17504 1 0.02 -1 -1 29624 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55152 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 15.2 MiB 1.05 961 53.9 MiB 0.07 0.00 3.64008 -117.108 -3.64008 3.64008 1.05 0.000227639 0.000182562 0.0164174 0.0135386 46 3423 35 6.99608e+06 206020 828058. 2865.25 6.35 0.162339 0.140728 28066 200906 -1 2429 37 2647 3955 319044 69519 0 0 319044 69519 3955 3584 0 0 11019 9882 0 0 21736 12255 0 0 3955 3751 0 0 135560 19375 0 0 142819 20672 0 0 3955 0 0 1308 1387 1341 10629 0 0 4.13101 4.13101 -147.788 -4.13101 0 0 1.01997e+06 3529.29 0.41 0.11 0.19 -1 -1 0.41 0.025929 0.0228742 88 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 9.59 vpr 54.03 MiB -1 -1 0.17 17492 1 0.02 -1 -1 29684 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55328 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 15.5 MiB 3.18 944 54.0 MiB 0.08 0.00 2.94423 -100.616 -2.94423 2.94423 1.01 0.000249847 0.000201053 0.0201044 0.0165608 46 3045 41 6.99608e+06 235451 828058. 2865.25 2.90 0.117953 0.102639 28066 200906 -1 2032 25 1997 2776 217651 63367 0 0 217651 63367 2776 2306 0 0 8398 7393 0 0 14237 9259 0 0 2776 2432 0 0 90462 21826 0 0 99002 20151 0 0 2776 0 0 779 965 987 7379 0 0 3.54046 3.54046 -128.383 -3.54046 0 0 1.01997e+06 3529.29 0.39 0.08 0.17 -1 -1 0.39 0.0226553 0.020277 103 59 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.49 vpr 53.38 MiB -1 -1 0.12 17644 1 0.02 -1 -1 29808 -1 -1 14 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 14.9 MiB 1.64 641 53.4 MiB 0.05 0.00 3.37515 -97.7741 -3.37515 3.37515 0.96 0.000178484 0.000143831 0.0122612 0.0101538 38 1922 28 6.99608e+06 206020 678818. 2348.85 2.60 0.100179 0.0883742 26626 170182 -1 1462 20 1197 1595 118074 26336 0 0 118074 26336 1595 1397 0 0 4953 4258 0 0 7572 5251 0 0 1595 1439 0 0 48806 7348 0 0 53553 6643 0 0 1595 0 0 398 516 439 3864 0 0 3.46986 3.46986 -117.76 -3.46986 0 0 902133. 3121.57 0.36 0.05 0.16 -1 -1 0.36 0.0130345 0.0115842 70 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.77 vpr 53.67 MiB -1 -1 0.17 17568 1 0.01 -1 -1 29676 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54956 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 15.0 MiB 2.44 810 53.7 MiB 0.05 0.00 3.25478 -109.359 -3.25478 3.25478 0.77 0.000127206 0.000101025 0.0106931 0.00874561 38 2745 49 6.99608e+06 206020 678818. 2348.85 2.13 0.0829653 0.071926 26626 170182 -1 1972 21 1597 2191 168561 37055 0 0 168561 37055 2191 1912 0 0 6801 5986 0 0 10718 7409 0 0 2191 2058 0 0 74134 9763 0 0 72526 9927 0 0 2191 0 0 594 466 592 5031 0 0 3.78725 3.78725 -134.851 -3.78725 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0161056 0.0144437 79 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 11.88 vpr 53.56 MiB -1 -1 0.14 17584 1 0.02 -1 -1 29764 -1 -1 15 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54844 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 15.1 MiB 0.92 844 53.6 MiB 0.05 0.00 3.32768 -101.882 -3.32768 3.32768 0.81 0.000127321 0.000103646 0.00991939 0.00825249 46 2139 22 6.99608e+06 220735 828058. 2865.25 8.05 0.10793 0.0927664 28066 200906 -1 1628 20 1286 2007 129147 30616 0 0 129147 30616 2007 1473 0 0 6117 5344 0 0 10551 6762 0 0 2007 1642 0 0 52889 8160 0 0 55576 7235 0 0 2007 0 0 721 807 862 6615 0 0 3.52721 3.52721 -121.332 -3.52721 0 0 1.01997e+06 3529.29 0.39 0.05 0.19 -1 -1 0.39 0.0158062 0.0142207 80 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.84 vpr 53.43 MiB -1 -1 0.16 17500 1 0.01 -1 -1 29776 -1 -1 13 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54708 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 15.0 MiB 1.12 643 53.4 MiB 0.04 0.00 3.14827 -89.4705 -3.14827 3.14827 0.60 9.5449e-05 7.5932e-05 0.00778772 0.00638382 42 2107 23 6.99608e+06 191304 744469. 2576.02 3.36 0.0760494 0.0643011 27202 183097 -1 1506 22 1280 1629 124875 28131 0 0 124875 28131 1629 1457 0 0 5431 4729 0 0 9392 6409 0 0 1629 1488 0 0 56334 6400 0 0 50460 7648 0 0 1629 0 0 349 284 269 3265 0 0 3.16821 3.16821 -104.477 -3.16821 0 0 949917. 3286.91 0.25 0.04 0.14 -1 -1 0.25 0.00947265 0.00848664 68 25 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.17 vpr 53.52 MiB -1 -1 0.10 17564 1 0.02 -1 -1 29644 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 15.0 MiB 0.95 763 53.5 MiB 0.05 0.00 3.53345 -108.361 -3.53345 3.53345 0.60 0.000103476 8.3254e-05 0.00948733 0.00779711 38 2314 30 6.99608e+06 176588 678818. 2348.85 1.92 0.0495428 0.0422119 26626 170182 -1 1791 18 1385 1859 151728 31530 0 0 151728 31530 1859 1570 0 0 5618 4873 0 0 8851 5895 0 0 1859 1669 0 0 66654 9021 0 0 66887 8502 0 0 1859 0 0 474 555 545 4417 0 0 3.36257 3.36257 -123.643 -3.36257 0 0 902133. 3121.57 0.22 0.03 0.09 -1 -1 0.22 0.0077514 0.0069734 73 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 11.45 vpr 54.00 MiB -1 -1 0.11 17348 1 0.01 -1 -1 29868 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55292 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 15.5 MiB 1.16 1203 54.0 MiB 0.05 0.00 3.61381 -124.262 -3.61381 3.61381 0.61 0.000136911 0.000110969 0.0107331 0.00901779 38 3037 34 6.99608e+06 250167 678818. 2348.85 7.73 0.0995674 0.0849566 26626 170182 -1 2581 22 2017 2693 216042 43980 0 0 216042 43980 2693 2365 0 0 8172 7169 0 0 13048 8810 0 0 2693 2440 0 0 94766 11755 0 0 94670 11441 0 0 2693 0 0 676 772 718 6441 0 0 4.29945 4.29945 -155.884 -4.29945 0 0 902133. 3121.57 0.22 0.05 0.09 -1 -1 0.22 0.0112107 0.0100284 101 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.52 vpr 53.32 MiB -1 -1 0.12 17352 1 0.01 -1 -1 29800 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 14.8 MiB 0.64 883 53.3 MiB 0.08 0.00 2.97897 -98.1156 -2.97897 2.97897 0.78 0.000176748 0.000142167 0.0165212 0.0136411 46 2159 25 6.99608e+06 191304 828058. 2865.25 3.17 0.0838233 0.0715687 28066 200906 -1 1848 20 1043 1485 116733 24263 0 0 116733 24263 1485 1287 0 0 4717 4108 0 0 7476 5164 0 0 1485 1336 0 0 50583 6501 0 0 50987 5867 0 0 1485 0 0 442 188 397 3396 0 0 2.99891 2.99891 -112.909 -2.99891 0 0 1.01997e+06 3529.29 0.38 0.05 0.18 -1 -1 0.38 0.0126377 0.0112892 71 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 8.69 vpr 53.80 MiB -1 -1 0.17 17488 1 0.01 -1 -1 29648 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55096 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 15.2 MiB 1.36 1032 53.8 MiB 0.09 0.00 2.87229 -97.048 -2.87229 2.87229 0.98 0.000242307 0.000197236 0.0195853 0.0161824 38 2645 24 6.99608e+06 220735 678818. 2348.85 3.88 0.10504 0.0889725 26626 170182 -1 2170 18 1388 1888 136946 28942 0 0 136946 28942 1888 1633 0 0 5949 5145 0 0 8700 6298 0 0 1888 1676 0 0 59235 7402 0 0 59286 6788 0 0 1888 0 0 500 677 437 5116 0 0 3.36186 3.36186 -123.04 -3.36186 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0159169 0.0142627 91 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 14.94 vpr 54.12 MiB -1 -1 0.17 17836 1 0.01 -1 -1 29760 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55416 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 15.5 MiB 3.34 1070 54.1 MiB 0.08 0.00 3.79017 -128.672 -3.79017 3.79017 0.96 0.000268396 0.000215815 0.018369 0.0150945 58 2754 27 6.99608e+06 294314 997811. 3452.63 7.94 0.18248 0.157556 30370 251734 -1 2326 22 2090 2930 245323 52975 0 0 245323 52975 2930 2507 0 0 9470 8224 0 0 16672 11173 0 0 2930 2618 0 0 98931 15137 0 0 114390 13316 0 0 2930 0 0 840 892 847 7579 0 0 4.78094 4.78094 -157.357 -4.78094 0 0 1.25153e+06 4330.55 0.47 0.08 0.24 -1 -1 0.47 0.0191233 0.0170229 113 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 17.95 vpr 53.62 MiB -1 -1 0.16 17684 1 0.01 -1 -1 29704 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54904 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 15.0 MiB 2.37 783 53.6 MiB 0.07 0.00 2.79904 -94.1176 -2.79904 2.79904 1.02 0.000216399 0.000176595 0.0164797 0.0136482 42 2630 45 6.99608e+06 176588 744469. 2576.02 12.16 0.138983 0.119767 27202 183097 -1 1864 23 1534 2067 193554 41792 0 0 193554 41792 2067 1772 0 0 6879 6034 0 0 12391 8376 0 0 2067 1826 0 0 82457 12075 0 0 87693 11709 0 0 2067 0 0 533 575 539 4884 0 0 3.37781 3.37781 -119.649 -3.37781 0 0 949917. 3286.91 0.35 0.07 0.17 -1 -1 0.35 0.0164553 0.014725 80 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 7.55 vpr 53.44 MiB -1 -1 0.15 17532 1 0.02 -1 -1 29824 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 14.9 MiB 0.90 753 53.4 MiB 0.07 0.00 3.26242 -104.65 -3.26242 3.26242 1.03 0.000208116 0.000168826 0.0154402 0.0127287 40 2539 29 6.99608e+06 161872 706193. 2443.58 3.15 0.101632 0.0890806 26914 176310 -1 1939 21 1449 2123 193622 42066 0 0 193622 42066 2123 1900 0 0 6770 6023 0 0 12726 7942 0 0 2123 1917 0 0 82607 12501 0 0 87273 11783 0 0 2123 0 0 674 752 682 5579 0 0 3.70146 3.70146 -130.424 -3.70146 0 0 926341. 3205.33 0.38 0.08 0.15 -1 -1 0.38 0.0175761 0.0159127 72 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 6.83 vpr 53.54 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29744 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54820 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 15.1 MiB 1.70 789 53.5 MiB 0.05 0.00 3.29468 -101.987 -3.29468 3.29468 0.87 0.000129611 0.000104507 0.0121248 0.00997567 44 2346 24 6.99608e+06 206020 787024. 2723.27 1.74 0.0637381 0.0551284 27778 195446 -1 1747 23 1738 2423 152829 36802 0 0 152829 36802 2423 2007 0 0 7527 6690 0 0 13330 8720 0 0 2423 2085 0 0 63912 8787 0 0 63214 8513 0 0 2423 0 0 685 508 705 5813 0 0 3.64952 3.64952 -125.848 -3.64952 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0188978 0.016985 79 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 10.14 vpr 53.70 MiB -1 -1 0.16 17508 1 0.02 -1 -1 29824 -1 -1 18 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54988 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 15.2 MiB 1.77 872 53.7 MiB 0.07 0.00 2.89747 -87.5406 -2.89747 2.89747 0.95 0.0002115 0.000166579 0.0159477 0.0132164 44 2291 44 6.99608e+06 264882 787024. 2723.27 5.02 0.134145 0.1155 27778 195446 -1 1861 19 1369 2031 151066 34376 0 0 151066 34376 2031 1659 0 0 6438 5634 0 0 11374 7393 0 0 2031 1758 0 0 63101 8835 0 0 66091 9097 0 0 2031 0 0 662 820 952 6777 0 0 3.26306 3.26306 -106.55 -3.26306 0 0 997811. 3452.63 0.41 0.06 0.17 -1 -1 0.41 0.0158928 0.0143004 88 49 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 11.65 vpr 53.88 MiB -1 -1 0.16 17716 1 0.01 -1 -1 29792 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55172 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 15.3 MiB 1.76 995 53.9 MiB 0.04 0.00 4.60269 -144.768 -4.60269 4.60269 0.82 0.000139574 0.000112935 0.00890522 0.00746217 40 3839 40 6.99608e+06 250167 706193. 2443.58 6.69 0.0892057 0.0779399 26914 176310 -1 3072 23 2560 3897 461186 103281 0 0 461186 103281 3897 3366 0 0 12160 10787 0 0 23526 14373 0 0 3897 3479 0 0 205886 36284 0 0 211820 34992 0 0 3897 0 0 1337 1627 1746 12065 0 0 5.34414 5.34414 -178.538 -5.34414 0 0 926341. 3205.33 0.32 0.10 0.17 -1 -1 0.32 0.0146791 0.0131106 105 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.38 vpr 53.15 MiB -1 -1 0.11 16904 1 0.01 -1 -1 29544 -1 -1 13 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54424 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 14.7 MiB 1.09 565 53.1 MiB 0.05 0.00 2.70223 -73.7785 -2.70223 2.70223 1.03 0.000179746 0.000145235 0.0111764 0.0093884 36 2111 23 6.99608e+06 191304 648988. 2245.63 2.01 0.0581137 0.0505182 26050 158493 -1 1546 18 996 1545 130365 29123 0 0 130365 29123 1545 1261 0 0 5073 4451 0 0 8391 5644 0 0 1545 1332 0 0 56182 8243 0 0 57629 8192 0 0 1545 0 0 549 528 533 4425 0 0 3.01197 3.01197 -101.358 -3.01197 0 0 828058. 2865.25 0.32 0.05 0.13 -1 -1 0.32 0.012302 0.0111633 54 -1 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.27 vpr 54.20 MiB -1 -1 0.16 17616 1 0.01 -1 -1 29740 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55496 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 15.8 MiB 2.56 1287 54.2 MiB 0.05 0.00 3.87123 -135.445 -3.87123 3.87123 0.60 0.000135305 0.000107702 0.0114861 0.00942574 44 3578 33 6.99608e+06 294314 787024. 2723.27 2.07 0.0913056 0.0791251 27778 195446 -1 2723 21 2322 2921 229396 48331 0 0 229396 48331 2921 2534 0 0 9260 8158 0 0 15478 10563 0 0 2921 2769 0 0 102006 11557 0 0 96810 12750 0 0 2921 0 0 599 565 509 6104 0 0 4.8308 4.8308 -177.707 -4.8308 0 0 997811. 3452.63 0.38 0.08 0.18 -1 -1 0.38 0.0206877 0.0186171 116 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 11.20 vpr 54.21 MiB -1 -1 0.12 17560 1 0.00 -1 -1 29744 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55516 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 15.5 MiB 0.97 1263 54.2 MiB 0.08 0.00 3.58352 -133.165 -3.58352 3.58352 0.95 0.000212995 0.000169433 0.0190147 0.015501 38 3681 47 6.99608e+06 235451 678818. 2348.85 6.90 0.139475 0.122188 26626 170182 -1 3032 23 2943 3708 419514 78155 0 0 419514 78155 3708 3290 0 0 11180 10059 0 0 19343 12235 0 0 3708 3352 0 0 200322 22877 0 0 181253 26342 0 0 3708 0 0 765 844 889 7836 0 0 4.7256 4.7256 -178.909 -4.7256 0 0 902133. 3121.57 0.31 0.11 0.16 -1 -1 0.31 0.0196292 0.017614 110 93 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 6.64 vpr 53.90 MiB -1 -1 0.10 17352 1 0.02 -1 -1 29700 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 15.3 MiB 1.71 1092 53.9 MiB 0.08 0.00 3.03377 -103.431 -3.03377 3.03377 0.99 0.000252387 0.000206626 0.0183718 0.0153277 38 2984 32 6.99608e+06 220735 678818. 2348.85 1.65 0.0625735 0.0534266 26626 170182 -1 2399 19 1645 2240 193139 39676 0 0 193139 39676 2240 1897 0 0 7053 6224 0 0 11557 7625 0 0 2240 1955 0 0 83387 11564 0 0 86662 10411 0 0 2240 0 0 595 875 860 6480 0 0 3.21021 3.21021 -120.917 -3.21021 0 0 902133. 3121.57 0.30 0.05 0.16 -1 -1 0.30 0.0110743 0.00994762 94 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.64 vpr 53.95 MiB -1 -1 0.18 17604 1 0.02 -1 -1 29868 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 15.4 MiB 0.80 1058 54.0 MiB 0.06 0.00 4.66142 -135.651 -4.66142 4.66142 0.59 0.000137413 0.000109897 0.0134109 0.0110167 48 3106 23 6.99608e+06 220735 865456. 2994.66 6.10 0.158337 0.138908 28354 207349 -1 2386 22 2083 3096 246017 53092 0 0 246017 53092 3096 2491 0 0 10045 8899 0 0 17911 11799 0 0 3096 2559 0 0 102084 14186 0 0 109785 13158 0 0 3096 0 0 1013 1084 1133 8888 0 0 4.96951 4.96951 -164.794 -4.96951 0 0 1.05005e+06 3633.38 0.42 0.09 0.19 -1 -1 0.42 0.0221467 0.0199241 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 8.44 vpr 53.21 MiB -1 -1 0.14 17184 1 0.01 -1 -1 29760 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54488 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 14.7 MiB 0.84 496 53.2 MiB 0.05 0.00 2.28455 -79.4386 -2.28455 2.28455 1.01 0.000154968 0.000124372 0.0109762 0.00896617 38 1551 23 6.99608e+06 176588 678818. 2348.85 4.29 0.0952536 0.0812282 26626 170182 -1 1206 19 732 924 75032 16666 0 0 75032 16666 924 814 0 0 3045 2665 0 0 4554 3223 0 0 924 838 0 0 34586 4258 0 0 30999 4868 0 0 924 0 0 192 163 147 1810 0 0 2.31212 2.31212 -91.2109 -2.31212 0 0 902133. 3121.57 0.34 0.04 0.15 -1 -1 0.34 0.0109489 0.00985288 53 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.63 vpr 53.29 MiB -1 -1 0.13 17484 1 0.02 -1 -1 29724 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54564 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 14.8 MiB 4.07 925 53.3 MiB 0.06 0.00 3.15062 -102.03 -3.15062 3.15062 1.02 0.000180792 0.00014699 0.0134859 0.0110809 36 2263 39 6.99608e+06 206020 648988. 2245.63 2.31 0.0973632 0.0852373 26050 158493 -1 1905 21 1346 2020 285932 88591 0 0 285932 88591 2020 1795 0 0 6285 5514 0 0 11562 7338 0 0 2020 1827 0 0 134660 35566 0 0 129385 36551 0 0 2020 0 0 674 955 971 6428 0 0 3.42976 3.42976 -130.802 -3.42976 0 0 828058. 2865.25 0.24 0.11 0.13 -1 -1 0.24 0.0187209 0.0168434 68 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 7.50 vpr 53.60 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29752 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54888 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 15.0 MiB 0.67 772 53.6 MiB 0.04 0.00 3.05994 -98.0945 -3.05994 3.05994 0.84 0.000114976 9.2352e-05 0.00809051 0.00670091 42 2968 50 6.99608e+06 250167 744469. 2576.02 3.75 0.0966194 0.0833009 27202 183097 -1 2025 23 1554 2429 243793 51435 0 0 243793 51435 2429 1966 0 0 7866 6899 0 0 14556 9284 0 0 2429 2087 0 0 109473 15205 0 0 107040 15994 0 0 2429 0 0 875 870 825 7259 0 0 3.41511 3.41511 -128.462 -3.41511 0 0 949917. 3286.91 0.34 0.08 0.11 -1 -1 0.34 0.0155148 0.0136854 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.02 vpr 53.14 MiB -1 -1 0.10 17220 1 0.02 -1 -1 29832 -1 -1 16 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 14.7 MiB 1.21 554 53.1 MiB 0.05 0.00 2.74423 -65.6094 -2.74423 2.74423 0.96 0.00014417 0.000116608 0.011914 0.00986287 34 1923 48 6.99608e+06 235451 618332. 2139.56 1.94 0.0616646 0.0530187 25762 151098 -1 1392 20 960 1283 101347 23236 0 0 101347 23236 1283 1080 0 0 4446 3810 0 0 7529 5191 0 0 1283 1114 0 0 42991 6055 0 0 43815 5986 0 0 1283 0 0 323 318 401 3187 0 0 3.10727 3.10727 -88.1395 -3.10727 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00628538 0.00560269 59 19 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 9.57 vpr 53.79 MiB -1 -1 0.14 17348 1 0.01 -1 -1 29680 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55084 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 15.3 MiB 3.52 1227 53.8 MiB 0.09 0.00 3.25282 -113.242 -3.25282 3.25282 1.04 0.000258028 0.000210213 0.0207164 0.0171365 44 3286 24 6.99608e+06 250167 787024. 2723.27 2.52 0.0975579 0.0847623 27778 195446 -1 2650 20 1952 2884 233322 47059 0 0 233322 47059 2884 2437 0 0 8991 7851 0 0 14637 10115 0 0 2884 2591 0 0 106997 11350 0 0 96929 12715 0 0 2884 0 0 932 858 983 7763 0 0 3.52302 3.52302 -134.326 -3.52302 0 0 997811. 3452.63 0.40 0.06 0.19 -1 -1 0.40 0.0135578 0.0122692 103 69 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 25.18 vpr 54.39 MiB -1 -1 0.17 17672 1 0.02 -1 -1 29800 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55696 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 15.7 MiB 3.02 1233 54.4 MiB 0.11 0.00 3.62001 -123.826 -3.62001 3.62001 1.04 0.000278402 0.000227357 0.023887 0.0196013 38 3545 42 6.99608e+06 279598 678818. 2348.85 18.54 0.238774 0.208876 26626 170182 -1 2845 24 2591 3434 312166 62890 0 0 312166 62890 3434 3021 0 0 10685 9397 0 0 17973 11933 0 0 3434 3130 0 0 136506 18578 0 0 140134 16831 0 0 3434 0 0 843 689 769 7733 0 0 4.33065 4.33065 -158.569 -4.33065 0 0 902133. 3121.57 0.36 0.10 0.16 -1 -1 0.36 0.0245071 0.0220608 117 86 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common 10.47 vpr 53.43 MiB -1 -1 0.22 17428 14 0.25 -1 -1 32284 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54708 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 14.9 MiB 2.08 1237 53.4 MiB 0.07 0.00 7.10026 -148.534 -7.10026 7.10026 1.09 0.000331223 0.000272055 0.0201571 0.0169148 38 3280 21 6.79088e+06 255968 678818. 2348.85 4.50 0.165448 0.147493 25966 169698 -1 2687 16 1295 3612 203409 45472 0 0 203409 45472 3612 1757 0 0 11151 9628 0 0 17579 12124 0 0 3612 2155 0 0 84244 10016 0 0 83211 9792 0 0 3612 0 0 2317 3528 3122 24645 0 0 7.72675 7.72675 -166.656 -7.72675 0 0 902133. 3121.57 0.36 0.08 0.15 -1 -1 0.36 0.024502 0.0224715 130 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 8.59 vpr 53.55 MiB -1 -1 0.22 17704 14 0.25 -1 -1 32300 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 15.0 MiB 2.41 1058 53.5 MiB 0.06 0.00 6.62009 -132.696 -6.62009 6.62009 0.96 0.000314394 0.000255387 0.0184917 0.015449 34 3041 22 6.79088e+06 255968 618332. 2139.56 2.59 0.11026 0.0971974 25102 150614 -1 2605 20 1511 4010 230345 52972 0 0 230345 52972 4010 2330 0 0 12808 10904 0 0 22167 14948 0 0 4010 2703 0 0 93526 10947 0 0 93824 11140 0 0 4010 0 0 2499 4155 4417 28179 0 0 6.9456 6.9456 -155.395 -6.9456 0 0 787024. 2723.27 0.33 0.06 0.13 -1 -1 0.33 0.0200108 0.0184485 125 181 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 18.78 vpr 53.50 MiB -1 -1 0.20 17524 11 0.24 -1 -1 32136 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 15.0 MiB 3.73 1246 53.5 MiB 0.05 0.00 5.60634 -125.864 -5.60634 5.60634 0.69 0.00020538 0.000164329 0.0128382 0.0105803 30 3741 40 6.79088e+06 255968 556674. 1926.21 12.12 0.151949 0.131986 24526 138013 -1 2965 20 1354 3950 224488 49591 0 0 224488 49591 3950 2154 0 0 12136 10295 0 0 18194 12961 0 0 3950 2458 0 0 93281 11009 0 0 92977 10714 0 0 3950 0 0 2596 5005 4469 31372 0 0 5.85694 5.85694 -146.625 -5.85694 0 0 706193. 2443.58 0.31 0.08 0.13 -1 -1 0.31 0.0261686 0.0238713 130 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 13.91 vpr 53.52 MiB -1 -1 0.22 17572 12 0.32 -1 -1 32184 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 15.0 MiB 1.43 1212 53.5 MiB 0.06 0.00 6.04387 -122.765 -6.04387 6.04387 1.02 0.000205551 0.000162693 0.0164901 0.0137455 34 3662 49 6.79088e+06 323328 618332. 2139.56 8.89 0.205391 0.180284 25102 150614 -1 2983 21 1599 4781 352585 74720 0 0 352585 74720 4781 2785 0 0 15503 13238 0 0 27635 18299 0 0 4781 3183 0 0 145038 19450 0 0 154847 17765 0 0 4781 0 0 3182 5557 5747 36459 0 0 6.24408 6.24408 -139.552 -6.24408 0 0 787024. 2723.27 0.21 0.07 0.08 -1 -1 0.21 0.0177533 0.0161198 136 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 13.17 vpr 53.76 MiB -1 -1 0.16 17592 13 0.37 -1 -1 32320 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 15.3 MiB 1.92 1416 53.8 MiB 0.06 0.00 6.66616 -146.72 -6.66616 6.66616 1.02 0.000196794 0.000152561 0.0153938 0.0128342 36 4213 46 6.79088e+06 296384 648988. 2245.63 7.42 0.152222 0.133559 25390 158009 -1 3393 17 1620 4228 289921 63664 0 0 289921 63664 4228 2486 0 0 14271 12143 0 0 23691 17054 0 0 4228 2793 0 0 122150 14553 0 0 121353 14635 0 0 4228 0 0 2608 3453 4231 26824 0 0 7.13591 7.13591 -170.232 -7.13591 0 0 828058. 2865.25 0.33 0.10 0.10 -1 -1 0.33 0.0300103 0.0276578 152 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 9.76 vpr 53.66 MiB -1 -1 0.22 17360 13 0.24 -1 -1 32260 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 15.1 MiB 2.10 1211 53.7 MiB 0.10 0.00 6.15798 -129.643 -6.15798 6.15798 0.97 0.000343789 0.000281393 0.0285771 0.0235974 36 3786 39 6.79088e+06 255968 648988. 2245.63 4.08 0.164317 0.144722 25390 158009 -1 3035 21 1654 5054 309892 69378 0 0 309892 69378 5054 2731 0 0 15922 13909 0 0 27902 18717 0 0 5054 3198 0 0 125978 15950 0 0 129982 14873 0 0 5054 0 0 3400 6210 6457 42889 0 0 6.79218 6.79218 -154.332 -6.79218 0 0 828058. 2865.25 0.21 0.08 0.10 -1 -1 0.21 0.0198201 0.0180003 137 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 6.91 vpr 53.15 MiB -1 -1 0.17 17356 12 0.24 -1 -1 32140 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54424 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 14.7 MiB 1.81 725 53.1 MiB 0.08 0.00 5.74632 -98.4824 -5.74632 5.74632 1.02 0.000261329 0.000212461 0.0185694 0.0155206 34 2491 46 6.79088e+06 282912 618332. 2139.56 1.66 0.0767919 0.0662225 25102 150614 -1 1869 20 1066 2384 138357 35389 0 0 138357 35389 2384 1440 0 0 8291 7062 0 0 13778 10036 0 0 2384 1641 0 0 53254 7753 0 0 58266 7457 0 0 2384 0 0 1318 1595 1664 11927 0 0 6.53383 6.53383 -126.083 -6.53383 0 0 787024. 2723.27 0.22 0.05 0.08 -1 -1 0.22 0.0180667 0.0163523 106 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 16.99 vpr 53.14 MiB -1 -1 0.20 17580 12 0.24 -1 -1 32184 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 14.7 MiB 3.37 1024 53.1 MiB 0.05 0.00 5.27734 -112.658 -5.27734 5.27734 0.62 0.000134987 0.000108227 0.0115196 0.00946053 36 3273 49 6.79088e+06 229024 648988. 2245.63 10.64 0.177995 0.156969 25390 158009 -1 2476 23 1309 3554 343060 122944 0 0 343060 122944 3554 2071 0 0 11342 9801 0 0 20107 13568 0 0 3554 2344 0 0 154801 48353 0 0 149702 46807 0 0 3554 0 0 2245 3966 4506 26937 0 0 5.43486 5.43486 -133.48 -5.43486 0 0 828058. 2865.25 0.33 0.13 0.14 -1 -1 0.33 0.0266034 0.0242417 106 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 9.18 vpr 53.14 MiB -1 -1 0.19 17356 12 0.23 -1 -1 32164 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 14.6 MiB 3.32 1137 53.1 MiB 0.06 0.00 5.57489 -120.87 -5.57489 5.57489 0.94 0.000166431 0.000133701 0.0139367 0.0114617 38 3094 20 6.79088e+06 269440 678818. 2348.85 2.44 0.0736399 0.0639694 25966 169698 -1 2539 16 1225 3079 169607 38198 0 0 169607 38198 3079 1721 0 0 9655 8313 0 0 15246 10569 0 0 3079 1918 0 0 69422 7758 0 0 69126 7919 0 0 3079 0 0 1854 2154 3116 18923 0 0 5.82549 5.82549 -136.818 -5.82549 0 0 902133. 3121.57 0.35 0.04 0.14 -1 -1 0.35 0.0110116 0.0101073 113 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 10.02 vpr 53.32 MiB -1 -1 0.20 17580 13 0.25 -1 -1 32012 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 14.8 MiB 1.94 1084 53.3 MiB 0.03 0.00 6.24757 -138.238 -6.24757 6.24757 0.59 0.00014953 0.000121077 0.0065229 0.00553259 36 3234 25 6.79088e+06 202080 648988. 2245.63 5.17 0.0967387 0.0857549 25390 158009 -1 2536 44 1209 3018 789579 437005 0 0 789579 437005 3018 1784 0 0 10044 8738 0 0 20547 13761 0 0 3018 2109 0 0 385870 213878 0 0 367082 196735 0 0 3018 0 0 1809 2586 2574 17527 0 0 6.96017 6.96017 -164.043 -6.96017 0 0 828058. 2865.25 0.28 0.31 0.09 -1 -1 0.28 0.0443896 0.0399877 106 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 6.62 vpr 52.89 MiB -1 -1 0.18 17436 12 0.24 -1 -1 31896 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54164 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 14.4 MiB 1.69 862 52.9 MiB 0.07 0.00 5.74288 -117.899 -5.74288 5.74288 0.97 0.000243169 0.000199034 0.0197842 0.0164291 30 2467 37 6.79088e+06 229024 556674. 1926.21 1.43 0.101056 0.0896485 24526 138013 -1 1996 16 913 2197 121369 28935 0 0 121369 28935 2197 1345 0 0 7125 6048 0 0 10429 7659 0 0 2197 1516 0 0 48436 6377 0 0 50985 5990 0 0 2197 0 0 1284 1844 2068 14155 0 0 6.33018 6.33018 -141.162 -6.33018 0 0 706193. 2443.58 0.30 0.05 0.13 -1 -1 0.30 0.0163091 0.0148295 96 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 7.05 vpr 52.95 MiB -1 -1 0.19 17272 12 0.19 -1 -1 32140 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54224 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 14.3 MiB 2.52 1009 53.0 MiB 0.04 0.00 5.05901 -123.851 -5.05901 5.05901 0.59 0.000136741 0.000109781 0.00888729 0.00736727 38 2826 17 6.79088e+06 229024 678818. 2348.85 1.95 0.0645602 0.0561088 25966 169698 -1 2326 15 987 2650 160707 35444 0 0 160707 35444 2650 1486 0 0 8336 7166 0 0 13054 9033 0 0 2650 1746 0 0 65499 8410 0 0 68518 7603 0 0 2650 0 0 1663 2410 2436 17281 0 0 5.27041 5.27041 -139.18 -5.27041 0 0 902133. 3121.57 0.26 0.06 0.09 -1 -1 0.26 0.0172761 0.0158421 101 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 10.78 vpr 53.54 MiB -1 -1 0.21 17452 13 0.35 -1 -1 32236 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 15.0 MiB 2.45 1286 53.5 MiB 0.07 0.00 6.64585 -137.945 -6.64585 6.64585 1.02 0.000350312 0.000289421 0.0196001 0.0166002 40 2867 25 6.79088e+06 269440 706193. 2443.58 4.38 0.188319 0.164502 26254 175826 -1 2737 19 1281 3391 196122 45196 0 0 196122 45196 3391 1848 0 0 11250 9538 0 0 19242 13200 0 0 3391 2139 0 0 78735 9351 0 0 80113 9120 0 0 3391 0 0 2110 3599 3404 24202 0 0 6.89645 6.89645 -155.433 -6.89645 0 0 926341. 3205.33 0.37 0.08 0.17 -1 -1 0.37 0.0289522 0.026517 134 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 13.02 vpr 53.62 MiB -1 -1 0.20 17504 14 0.29 -1 -1 32184 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 15.1 MiB 2.35 1352 53.6 MiB 0.09 0.00 7.43701 -154.463 -7.43701 7.43701 1.03 0.000328266 0.000267125 0.0255631 0.0213617 36 3958 46 6.79088e+06 296384 648988. 2245.63 6.79 0.189114 0.165682 25390 158009 -1 3055 16 1402 3572 200841 46731 0 0 200841 46731 3572 1997 0 0 11799 9943 0 0 18598 13448 0 0 3572 2306 0 0 81260 9531 0 0 82040 9506 0 0 3572 0 0 2170 3268 3662 24036 0 0 7.68761 7.68761 -176.655 -7.68761 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0264838 0.0243505 151 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 6.76 vpr 53.15 MiB -1 -1 0.19 17188 11 0.21 -1 -1 31992 -1 -1 21 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54424 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 14.7 MiB 2.65 881 53.1 MiB 0.05 0.00 5.52794 -107.849 -5.52794 5.52794 0.61 0.000140539 0.000114317 0.0129774 0.0107358 34 2825 33 6.79088e+06 282912 618332. 2139.56 1.64 0.0674079 0.0583116 25102 150614 -1 2307 20 1277 3161 197054 44884 0 0 197054 44884 3161 1973 0 0 10234 8601 0 0 17333 11866 0 0 3161 2234 0 0 80124 10543 0 0 83041 9667 0 0 3161 0 0 1884 3018 2864 18951 0 0 5.90384 5.90384 -131.103 -5.90384 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.0115942 0.0105037 106 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 10.86 vpr 53.79 MiB -1 -1 0.23 17868 12 0.37 -1 -1 32232 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55076 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 15.3 MiB 1.63 1364 53.8 MiB 0.09 0.00 5.82898 -132.025 -5.82898 5.82898 0.96 0.000336684 0.000276315 0.0247907 0.0207118 46 3335 26 6.79088e+06 323328 828058. 2865.25 5.86 0.226613 0.198621 27406 200422 -1 2665 18 1295 4140 193244 45210 0 0 193244 45210 4140 1733 0 0 12838 11261 0 0 20330 14130 0 0 4140 2175 0 0 74621 8189 0 0 77175 7722 0 0 4140 0 0 2845 3863 4158 32978 0 0 6.25527 6.25527 -150.615 -6.25527 0 0 1.01997e+06 3529.29 0.25 0.04 0.11 -1 -1 0.25 0.0151237 0.0138748 145 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 10.57 vpr 53.59 MiB -1 -1 0.17 17580 14 0.32 -1 -1 32236 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54880 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 14.9 MiB 2.77 1257 53.6 MiB 0.08 0.00 6.72425 -145.511 -6.72425 6.72425 0.96 0.000323246 0.000261305 0.0219241 0.0181086 40 3432 36 6.79088e+06 255968 706193. 2443.58 3.85 0.154729 0.136329 26254 175826 -1 3011 28 1584 5098 585946 205562 0 0 585946 205562 5098 2784 0 0 15847 13723 0 0 32287 18804 0 0 5098 3257 0 0 266549 84442 0 0 261067 82552 0 0 5098 0 0 3514 7077 7663 45410 0 0 7.04976 7.04976 -161.848 -7.04976 0 0 926341. 3205.33 0.35 0.20 0.16 -1 -1 0.35 0.0364695 0.0333393 126 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 6.90 vpr 53.25 MiB -1 -1 0.13 17360 12 0.16 -1 -1 31856 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54528 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 14.5 MiB 2.02 1074 53.2 MiB 0.03 0.00 5.84017 -134.266 -5.84017 5.84017 0.94 0.000151311 0.000122971 0.00893785 0.00752909 34 2771 33 6.79088e+06 202080 618332. 2139.56 1.77 0.079026 0.0685559 25102 150614 -1 2272 17 971 2560 157180 35736 0 0 157180 35736 2560 1438 0 0 8577 7352 0 0 14646 10258 0 0 2560 1620 0 0 65457 7606 0 0 63380 7462 0 0 2560 0 0 1589 2248 2693 17458 0 0 6.04038 6.04038 -149.616 -6.04038 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0183182 0.0166159 105 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 8.18 vpr 52.59 MiB -1 -1 0.12 16952 10 0.13 -1 -1 31688 -1 -1 13 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53856 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 14.2 MiB 2.63 619 52.6 MiB 0.06 0.00 4.04526 -95.3188 -4.04526 4.04526 0.84 0.000187764 0.000151132 0.0149929 0.0122653 38 1804 37 6.79088e+06 175136 678818. 2348.85 2.75 0.0936363 0.0816912 25966 169698 -1 1381 16 683 1511 85672 21093 0 0 85672 21093 1511 985 0 0 4913 4229 0 0 7407 5345 0 0 1511 1067 0 0 33203 5023 0 0 37127 4444 0 0 1511 0 0 828 1080 915 7422 0 0 4.17056 4.17056 -109.015 -4.17056 0 0 902133. 3121.57 0.22 0.02 0.09 -1 -1 0.22 0.00716581 0.00655128 66 84 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 9.56 vpr 53.14 MiB -1 -1 0.21 17516 13 0.24 -1 -1 32036 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 14.7 MiB 2.80 1112 53.1 MiB 0.09 0.00 6.04392 -131.248 -6.04392 6.04392 1.04 0.000266994 0.000217554 0.0227615 0.0186581 36 2795 29 6.79088e+06 242496 648988. 2245.63 3.03 0.127815 0.111807 25390 158009 -1 2366 17 1097 2484 145742 34259 0 0 145742 34259 2484 1509 0 0 8411 7141 0 0 13413 9878 0 0 2484 1707 0 0 58869 7152 0 0 60081 6872 0 0 2484 0 0 1387 1621 1786 13212 0 0 6.33018 6.33018 -151.527 -6.33018 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0179557 0.0163626 107 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 20.74 vpr 53.66 MiB -1 -1 0.23 17436 13 0.36 -1 -1 32248 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 15.1 MiB 2.21 1337 53.7 MiB 0.12 0.00 6.50592 -140.561 -6.50592 6.50592 1.04 0.00037517 0.000299164 0.0327979 0.0274895 40 3281 27 6.79088e+06 282912 706193. 2443.58 14.26 0.327694 0.288437 26254 175826 -1 3105 37 2093 6707 853071 412160 0 0 853071 412160 6707 3298 0 0 20439 17508 0 0 44461 26004 0 0 6707 4142 0 0 390472 185119 0 0 384285 176089 0 0 6707 0 0 4614 9256 9005 55956 0 0 6.70613 6.70613 -158.413 -6.70613 0 0 926341. 3205.33 0.34 0.33 0.15 -1 -1 0.34 0.0536024 0.0489033 143 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 10.85 vpr 53.66 MiB -1 -1 0.15 17716 13 0.25 -1 -1 32152 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 15.0 MiB 3.01 1408 53.7 MiB 0.09 0.00 6.34142 -140.43 -6.34142 6.34142 1.03 0.000346207 0.000281409 0.0239692 0.0199357 38 3653 35 6.79088e+06 282912 678818. 2348.85 4.10 0.185094 0.164233 25966 169698 -1 3095 19 1423 4259 244933 52862 0 0 244933 52862 4259 2234 0 0 13239 11385 0 0 20510 14342 0 0 4259 2613 0 0 97888 11813 0 0 104778 10475 0 0 4259 0 0 2836 5718 4747 34008 0 0 6.70608 6.70608 -159.434 -6.70608 0 0 902133. 3121.57 0.34 0.08 0.14 -1 -1 0.34 0.02703 0.0247775 141 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 5.66 vpr 52.55 MiB -1 -1 0.16 16908 9 0.07 -1 -1 31684 -1 -1 18 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53816 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 14.0 MiB 1.22 703 52.6 MiB 0.03 0.00 3.8527 -79.1624 -3.8527 3.8527 0.66 8.8273e-05 7.0712e-05 0.00670284 0.00552807 34 1709 19 6.79088e+06 242496 618332. 2139.56 2.01 0.0462402 0.0391701 25102 150614 -1 1541 16 668 1604 96600 22785 0 0 96600 22785 1604 1004 0 0 5513 4762 0 0 9608 6671 0 0 1604 1097 0 0 39943 4516 0 0 38328 4735 0 0 1604 0 0 936 1137 1248 9189 0 0 3.978 3.978 -91.5527 -3.978 0 0 787024. 2723.27 0.22 0.04 0.08 -1 -1 0.22 0.010692 0.0096641 67 69 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 8.50 vpr 53.55 MiB -1 -1 0.17 17548 13 0.35 -1 -1 32748 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 15.0 MiB 2.32 1259 53.6 MiB 0.06 0.00 6.74893 -135.263 -6.74893 6.74893 1.01 0.00032711 0.000266471 0.0152325 0.0128404 38 3552 25 6.79088e+06 309856 678818. 2348.85 2.33 0.125029 0.110624 25966 169698 -1 2819 17 1414 3925 196978 46834 0 0 196978 46834 3925 1971 0 0 12401 10808 0 0 18781 13420 0 0 3925 2424 0 0 76560 9447 0 0 81386 8764 0 0 3925 0 0 2511 3513 3540 25401 0 0 7.75133 7.75133 -163.02 -7.75133 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0250018 0.0229931 136 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 7.69 vpr 52.38 MiB -1 -1 0.14 17056 8 0.09 -1 -1 32052 -1 -1 11 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53632 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 13.8 MiB 2.34 775 52.4 MiB 0.04 0.00 3.54052 -84.3897 -3.54052 3.54052 1.01 0.000167283 0.000135766 0.00928282 0.00771487 34 1899 34 6.79088e+06 148192 618332. 2139.56 2.05 0.0602545 0.0523127 25102 150614 -1 1586 12 576 1297 72894 17434 0 0 72894 17434 1297 790 0 0 4232 3650 0 0 7149 5035 0 0 1297 907 0 0 29238 3588 0 0 29681 3464 0 0 1297 0 0 721 658 964 6682 0 0 3.62662 3.62662 -97.2633 -3.62662 0 0 787024. 2723.27 0.30 0.03 0.13 -1 -1 0.30 0.00828468 0.0075728 60 59 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 8.12 vpr 53.38 MiB -1 -1 0.21 17520 15 0.31 -1 -1 32684 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54664 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 14.7 MiB 2.83 1241 53.4 MiB 0.05 0.00 7.14721 -147.603 -7.14721 7.14721 0.82 0.000175072 0.000142652 0.0138213 0.0115361 40 2978 25 6.79088e+06 242496 706193. 2443.58 1.70 0.0987937 0.086331 26254 175826 -1 2829 16 1258 3495 226737 49534 0 0 226737 49534 3495 1945 0 0 11699 9879 0 0 19621 13565 0 0 3495 2247 0 0 90821 11716 0 0 97606 10182 0 0 3495 0 0 2237 3826 3558 25838 0 0 7.64841 7.64841 -168.576 -7.64841 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.020823 0.0191185 121 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 9.73 vpr 53.60 MiB -1 -1 0.20 17548 13 0.22 -1 -1 32120 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 15.0 MiB 2.35 1187 53.6 MiB 0.05 0.00 5.69249 -126.522 -5.69249 5.69249 0.59 0.000157982 0.000127667 0.0136925 0.0113823 38 3463 35 6.79088e+06 242496 678818. 2348.85 4.84 0.0936115 0.0814807 25966 169698 -1 2739 17 1260 3600 217432 46260 0 0 217432 46260 3600 2006 0 0 10896 9306 0 0 17383 11701 0 0 3600 2375 0 0 89802 10700 0 0 92151 10172 0 0 3600 0 0 2340 3675 3788 26441 0 0 5.94309 5.94309 -143.729 -5.94309 0 0 902133. 3121.57 0.22 0.05 0.09 -1 -1 0.22 0.0128275 0.011721 117 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 8.84 vpr 53.46 MiB -1 -1 0.21 17436 13 0.30 -1 -1 32248 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 15.0 MiB 1.97 1308 53.5 MiB 0.08 0.00 6.41212 -141.876 -6.41212 6.41212 0.95 0.000311988 0.000254789 0.0220247 0.018371 34 3513 49 6.79088e+06 242496 618332. 2139.56 3.13 0.145058 0.128792 25102 150614 -1 3086 19 1413 4031 254170 55025 0 0 254170 55025 4031 2152 0 0 12976 10867 0 0 22845 15196 0 0 4031 2490 0 0 103235 12508 0 0 107052 11812 0 0 4031 0 0 2618 4680 5103 31140 0 0 6.56543 6.56543 -161.96 -6.56543 0 0 787024. 2723.27 0.33 0.09 0.14 -1 -1 0.33 0.0275893 0.0252324 136 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 10.42 vpr 53.28 MiB -1 -1 0.17 17424 12 0.18 -1 -1 32088 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54556 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 14.8 MiB 2.57 978 53.3 MiB 0.06 0.00 5.61414 -124.304 -5.61414 5.61414 0.98 0.000245676 0.000201015 0.0161106 0.0134986 40 2492 42 6.79088e+06 215552 706193. 2443.58 4.40 0.172258 0.15108 26254 175826 -1 2287 22 1127 2721 266714 89333 0 0 266714 89333 2721 1673 0 0 9266 7998 0 0 16556 11243 0 0 2721 1930 0 0 116573 33290 0 0 118877 33199 0 0 2721 0 0 1594 2328 2128 15613 0 0 5.73944 5.73944 -138.182 -5.73944 0 0 926341. 3205.33 0.27 0.07 0.16 -1 -1 0.27 0.013958 0.0126712 103 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 7.84 vpr 53.05 MiB -1 -1 0.20 17244 11 0.18 -1 -1 32036 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54328 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 14.5 MiB 1.62 759 53.1 MiB 0.06 0.00 5.19894 -108.246 -5.19894 5.19894 0.60 0.000231088 0.000186158 0.0131284 0.0108026 46 2193 31 6.79088e+06 242496 828058. 2865.25 3.32 0.114832 0.100836 27406 200422 -1 1655 17 930 2308 134742 39212 0 0 134742 39212 2308 1294 0 0 7276 6220 0 0 11793 8060 0 0 2308 1533 0 0 52358 11143 0 0 58699 10962 0 0 2308 0 0 1378 1677 1893 13062 0 0 5.44954 5.44954 -126.698 -5.44954 0 0 1.01997e+06 3529.29 0.41 0.07 0.16 -1 -1 0.41 0.0210629 0.0192174 95 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 10.42 vpr 53.19 MiB -1 -1 0.20 17096 11 0.22 -1 -1 32144 -1 -1 21 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54464 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 14.8 MiB 2.02 956 53.2 MiB 0.08 0.00 5.49223 -110.214 -5.49223 5.49223 0.92 0.000263298 0.00021547 0.0213769 0.0178373 36 2408 28 6.79088e+06 282912 648988. 2245.63 4.95 0.158858 0.137871 25390 158009 -1 2209 25 1046 2882 265597 99155 0 0 265597 99155 2882 1597 0 0 9431 8125 0 0 17116 11599 0 0 2882 1833 0 0 116260 38749 0 0 117026 37252 0 0 2882 0 0 1836 2771 3304 20315 0 0 5.61753 5.61753 -123.904 -5.61753 0 0 828058. 2865.25 0.34 0.10 0.15 -1 -1 0.34 0.0229891 0.020705 109 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 9.37 vpr 53.66 MiB -1 -1 0.16 17316 12 0.27 -1 -1 32156 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 15.0 MiB 2.49 1239 53.7 MiB 0.05 0.00 5.78208 -135.974 -5.78208 5.78208 0.84 0.000158453 0.000127916 0.0136677 0.0113467 42 3377 48 6.79088e+06 229024 744469. 2576.02 3.99 0.133091 0.113964 26542 182613 -1 2635 18 1352 3304 204276 44877 0 0 204276 44877 3304 1877 0 0 10883 9113 0 0 18454 12614 0 0 3304 2287 0 0 82474 9857 0 0 85857 9129 0 0 3304 0 0 1952 2361 2488 18909 0 0 6.10759 6.10759 -157.865 -6.10759 0 0 949917. 3286.91 0.23 0.04 0.10 -1 -1 0.23 0.0131725 0.0120613 119 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 13.74 vpr 53.23 MiB -1 -1 0.21 17172 12 0.17 -1 -1 32164 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54504 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 14.8 MiB 2.01 1097 53.2 MiB 0.04 0.00 5.67678 -121.664 -5.67678 5.67678 0.89 0.000142642 0.000115828 0.0112941 0.00939973 34 3021 48 6.79088e+06 229024 618332. 2139.56 8.37 0.153369 0.134745 25102 150614 -1 2488 17 1167 2899 190707 42263 0 0 190707 42263 2899 1712 0 0 9685 8352 0 0 16488 11457 0 0 2899 1944 0 0 79251 9496 0 0 79485 9302 0 0 2899 0 0 1732 2793 2711 18651 0 0 6.30328 6.30328 -144.974 -6.30328 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0199191 0.0181911 101 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 9.40 vpr 53.09 MiB -1 -1 0.22 17432 10 0.17 -1 -1 32048 -1 -1 17 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 14.5 MiB 2.02 1022 53.1 MiB 0.07 0.00 4.98748 -112.632 -4.98748 4.98748 1.01 0.000255096 0.000209938 0.0185528 0.0155065 34 2679 20 6.79088e+06 229024 618332. 2139.56 3.69 0.0881873 0.0759495 25102 150614 -1 2289 15 956 2536 161064 36241 0 0 161064 36241 2536 1476 0 0 8623 7317 0 0 14392 10173 0 0 2536 1649 0 0 65480 8062 0 0 67497 7564 0 0 2536 0 0 1580 2712 2856 19030 0 0 5.11278 5.11278 -128.323 -5.11278 0 0 787024. 2723.27 0.34 0.07 0.14 -1 -1 0.34 0.0198685 0.0183135 103 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 9.08 vpr 53.98 MiB -1 -1 0.25 17696 13 0.40 -1 -1 32312 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55280 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 15.4 MiB 2.38 1265 54.0 MiB 0.07 0.00 6.6851 -136.449 -6.6851 6.6851 0.61 0.000205362 0.00016748 0.0193647 0.0160634 46 3138 19 6.79088e+06 282912 828058. 2865.25 3.32 0.1492 0.129187 27406 200422 -1 2597 17 1303 3944 201607 45949 0 0 201607 45949 3944 1880 0 0 12131 10343 0 0 19383 13186 0 0 3944 2248 0 0 78235 9573 0 0 83970 8719 0 0 3944 0 0 2641 4838 4860 35691 0 0 7.1394 7.1394 -155.104 -7.1394 0 0 1.01997e+06 3529.29 0.36 0.05 0.17 -1 -1 0.36 0.0160165 0.0147542 149 220 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 25.05 vpr 53.68 MiB -1 -1 0.24 17688 14 0.44 -1 -1 32704 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 15.1 MiB 2.82 1318 53.7 MiB 0.11 0.00 6.74118 -149.152 -6.74118 6.74118 0.98 0.000339026 0.000269203 0.0315074 0.0262374 38 3767 26 6.79088e+06 242496 678818. 2348.85 18.21 0.260077 0.228316 25966 169698 -1 2953 19 1531 4295 220390 49760 0 0 220390 49760 4295 2129 0 0 12947 11369 0 0 20643 13966 0 0 4295 2523 0 0 92382 9592 0 0 85828 10181 0 0 4295 0 0 2764 4208 3946 30221 0 0 6.82728 6.82728 -164.43 -6.82728 0 0 902133. 3121.57 0.33 0.08 0.15 -1 -1 0.33 0.0253564 0.0231257 136 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 9.95 vpr 53.06 MiB -1 -1 0.20 17548 12 0.20 -1 -1 32112 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54336 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 14.4 MiB 2.74 1065 53.1 MiB 0.04 0.00 5.82898 -130.877 -5.82898 5.82898 0.77 0.00013788 0.00011123 0.011038 0.00913471 36 2817 22 6.79088e+06 215552 648988. 2245.63 3.97 0.109704 0.0957088 25390 158009 -1 2305 15 945 2547 157475 34212 0 0 157475 34212 2547 1447 0 0 8115 6797 0 0 13643 9333 0 0 2547 1665 0 0 64725 7620 0 0 65898 7350 0 0 2547 0 0 1602 2987 2605 19185 0 0 6.20488 6.20488 -148.293 -6.20488 0 0 828058. 2865.25 0.28 0.05 0.15 -1 -1 0.28 0.0138747 0.0128521 101 148 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 10.52 vpr 53.74 MiB -1 -1 0.24 17784 12 0.38 -1 -1 32228 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55032 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 15.3 MiB 2.87 1407 53.7 MiB 0.10 0.00 6.09421 -131.041 -6.09421 6.09421 1.03 0.00020041 0.000162825 0.0272774 0.0226661 40 3548 50 6.79088e+06 323328 706193. 2443.58 3.52 0.142802 0.125158 26254 175826 -1 3312 21 1732 5326 354666 74516 0 0 354666 74516 5326 2838 0 0 16631 14347 0 0 31174 19644 0 0 5326 3324 0 0 149926 16960 0 0 146283 17403 0 0 5326 0 0 3594 5940 6346 40296 0 0 6.37282 6.37282 -148.229 -6.37282 0 0 926341. 3205.33 0.37 0.12 0.17 -1 -1 0.37 0.0331175 0.0302145 146 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 7.70 vpr 53.68 MiB -1 -1 0.18 17756 14 0.31 -1 -1 32656 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 15.1 MiB 1.70 1312 53.7 MiB 0.05 0.00 6.92457 -142.131 -6.92457 6.92457 0.59 0.000181866 0.000147343 0.0123104 0.0102242 36 3731 21 6.79088e+06 296384 648988. 2245.63 3.06 0.133021 0.11675 25390 158009 -1 3029 18 1413 3773 226717 51828 0 0 226717 51828 3773 2126 0 0 12739 10788 0 0 20942 15050 0 0 3773 2504 0 0 92810 10786 0 0 92680 10574 0 0 3773 0 0 2360 3158 3538 23917 0 0 7.59796 7.59796 -165.718 -7.59796 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0154364 0.0141571 142 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 8.33 vpr 53.52 MiB -1 -1 0.25 17624 13 0.27 -1 -1 32284 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 15.0 MiB 1.69 1338 53.5 MiB 0.05 0.00 6.9357 -143.111 -6.9357 6.9357 0.59 0.000170442 0.000137825 0.0121035 0.0100201 38 3659 24 6.79088e+06 309856 678818. 2348.85 3.69 0.155158 0.138708 25966 169698 -1 2789 18 1273 3289 180181 40138 0 0 180181 40138 3289 1736 0 0 10151 8683 0 0 15645 11034 0 0 3289 2073 0 0 73788 8495 0 0 74019 8117 0 0 3289 0 0 2016 2601 2684 19900 0 0 7.3116 7.3116 -162.296 -7.3116 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0233873 0.0212217 136 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 9.32 vpr 53.48 MiB -1 -1 0.24 17496 13 0.34 -1 -1 32228 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54768 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 15.1 MiB 1.86 1209 53.5 MiB 0.06 0.00 6.34148 -132.773 -6.34148 6.34148 0.98 0.000331602 0.000273561 0.0165551 0.0141146 40 3272 20 6.79088e+06 282912 706193. 2443.58 4.13 0.162576 0.145812 26254 175826 -1 2937 19 1269 3743 251726 53410 0 0 251726 53410 3743 2202 0 0 12156 10331 0 0 22002 14346 0 0 3743 2541 0 0 104049 12053 0 0 106033 11937 0 0 3743 0 0 2474 4923 5063 31873 0 0 7.00712 7.00712 -148.882 -7.00712 0 0 926341. 3205.33 0.23 0.05 0.13 -1 -1 0.23 0.0144899 0.0132429 125 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 10.21 vpr 53.18 MiB -1 -1 0.21 17428 12 0.25 -1 -1 32192 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 14.6 MiB 2.60 1028 53.2 MiB 0.06 0.00 5.69249 -123.088 -5.69249 5.69249 1.02 0.000297944 0.000242903 0.0160302 0.0133454 36 2974 34 6.79088e+06 215552 648988. 2245.63 3.86 0.149168 0.131959 25390 158009 -1 2454 17 1148 3061 206066 44557 0 0 206066 44557 3061 1801 0 0 9991 8563 0 0 16549 11609 0 0 3061 2076 0 0 84645 10691 0 0 88759 9817 0 0 3061 0 0 1913 3936 3777 24389 0 0 5.94653 5.94653 -141.71 -5.94653 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0204029 0.0185326 111 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 7.72 vpr 53.86 MiB -1 -1 0.27 18268 14 0.48 -1 -1 32496 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55152 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 15.3 MiB 0.99 1357 53.9 MiB 0.05 0.00 7.21858 -146.942 -7.21858 7.21858 0.60 0.000224761 0.000185904 0.0135764 0.0113793 40 4074 31 6.79088e+06 282912 706193. 2443.58 3.62 0.10957 0.0956849 26254 175826 -1 3614 32 1767 5300 566320 175021 0 0 566320 175021 5300 3017 0 0 17300 14727 0 0 32349 21093 0 0 5300 3476 0 0 250172 66086 0 0 255899 66622 0 0 5300 0 0 3533 8022 8291 48766 0 0 7.47266 7.47266 -170.146 -7.47266 0 0 926341. 3205.33 0.24 0.12 0.16 -1 -1 0.24 0.0249078 0.0224805 159 229 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 8.10 vpr 53.25 MiB -1 -1 0.13 17272 11 0.24 -1 -1 32224 -1 -1 16 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54528 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 14.8 MiB 2.37 1150 53.2 MiB 0.05 0.00 5.36687 -118.436 -5.36687 5.36687 0.73 0.000155661 0.000126706 0.0128189 0.0106827 38 3175 20 6.79088e+06 215552 678818. 2348.85 2.55 0.0937331 0.0820207 25966 169698 -1 2613 18 1262 3552 197360 43435 0 0 197360 43435 3552 1904 0 0 10869 9312 0 0 17245 11813 0 0 3552 2256 0 0 80348 9391 0 0 81794 8759 0 0 3552 0 0 2290 3302 3194 23380 0 0 5.65667 5.65667 -137.674 -5.65667 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0226437 0.0207356 112 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 8.86 vpr 53.49 MiB -1 -1 0.23 17788 13 0.35 -1 -1 32260 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 15.0 MiB 1.85 1268 53.5 MiB 0.04 0.00 6.50941 -139.443 -6.50941 6.50941 0.60 0.000174713 0.000139681 0.0122575 0.0101988 38 3210 41 6.79088e+06 269440 678818. 2348.85 4.05 0.154147 0.13672 25966 169698 -1 2633 18 1222 4123 220047 47910 0 0 220047 47910 4123 1820 0 0 12589 10802 0 0 20296 13668 0 0 4123 2152 0 0 87452 10197 0 0 91464 9271 0 0 4123 0 0 2901 5429 5333 38006 0 0 6.97141 6.97141 -155.855 -6.97141 0 0 902133. 3121.57 0.30 0.08 0.14 -1 -1 0.30 0.0253029 0.023051 137 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 8.45 vpr 53.93 MiB -1 -1 0.21 17472 12 0.33 -1 -1 32312 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55224 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 15.0 MiB 2.33 1089 53.9 MiB 0.04 0.00 6.07958 -128.612 -6.07958 6.07958 0.64 0.000202028 0.00016446 0.00900904 0.00764727 38 3871 47 6.79088e+06 282912 678818. 2348.85 2.76 0.12216 0.106555 25966 169698 -1 2774 19 1445 4635 241989 56026 0 0 241989 56026 4635 2237 0 0 14074 12154 0 0 22042 15106 0 0 4635 2588 0 0 95317 12350 0 0 101286 11591 0 0 4635 0 0 3190 5736 5362 40089 0 0 6.08302 6.08302 -144.399 -6.08302 0 0 902133. 3121.57 0.33 0.09 0.15 -1 -1 0.33 0.0308941 0.0283321 146 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 9.93 vpr 53.43 MiB -1 -1 0.21 17548 13 0.35 -1 -1 32204 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 15.0 MiB 1.76 1228 53.4 MiB 0.05 0.00 6.47021 -140.162 -6.47021 6.47021 1.03 0.000328257 0.000268382 0.0121405 0.0103136 38 2904 20 6.79088e+06 296384 678818. 2348.85 4.28 0.176094 0.154727 25966 169698 -1 2454 20 1163 3102 155781 35998 0 0 155781 35998 3102 1575 0 0 9751 8318 0 0 14907 10630 0 0 3102 1932 0 0 63931 6665 0 0 60988 6878 0 0 3102 0 0 1939 2371 2700 19184 0 0 6.72076 6.72076 -157.191 -6.72076 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0233193 0.0211143 131 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 12.22 vpr 53.55 MiB -1 -1 0.23 17584 13 0.29 -1 -1 32364 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 15.1 MiB 3.27 1270 53.6 MiB 0.06 0.00 6.09426 -134.354 -6.09426 6.09426 0.89 0.000182576 0.000148749 0.0169689 0.0141823 44 3190 23 6.79088e+06 242496 787024. 2723.27 5.32 0.211102 0.18664 27118 194962 -1 2574 19 1257 3438 198758 43046 0 0 198758 43046 3438 1757 0 0 10846 9238 0 0 18054 12362 0 0 3438 2143 0 0 80199 9159 0 0 82783 8387 0 0 3438 0 0 2181 3844 3411 26580 0 0 6.29447 6.29447 -148.373 -6.29447 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0229152 0.0206689 124 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 10.61 vpr 53.71 MiB -1 -1 0.20 17432 12 0.32 -1 -1 32268 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54996 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 15.1 MiB 1.97 1406 53.7 MiB 0.06 0.00 6.29447 -141.655 -6.29447 6.29447 0.93 0.000320528 0.000254511 0.016831 0.0140548 38 3843 49 6.79088e+06 269440 678818. 2348.85 5.21 0.207462 0.186063 25966 169698 -1 2992 28 1333 4329 493619 209300 0 0 493619 209300 4329 2119 0 0 12991 11203 0 0 23956 15124 0 0 4329 2470 0 0 224102 90818 0 0 223912 87566 0 0 4329 0 0 2996 6259 6129 42215 0 0 6.41977 6.41977 -155.444 -6.41977 0 0 902133. 3121.57 0.34 0.18 0.15 -1 -1 0.34 0.0373206 0.0339916 140 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 9.37 vpr 53.72 MiB -1 -1 0.23 17736 13 0.30 -1 -1 32724 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 15.2 MiB 2.10 1384 53.7 MiB 0.06 0.00 6.47021 -143.401 -6.47021 6.47021 0.98 0.000350217 0.000288944 0.0161867 0.01377 44 3454 49 6.79088e+06 269440 787024. 2723.27 3.32 0.167393 0.146343 27118 194962 -1 2837 17 1324 3894 206100 46538 0 0 206100 46538 3894 1960 0 0 12172 10333 0 0 19924 13710 0 0 3894 2319 0 0 83132 8976 0 0 83084 9240 0 0 3894 0 0 2570 3969 4185 29136 0 0 7.09671 7.09671 -165.622 -7.09671 0 0 997811. 3452.63 0.42 0.08 0.19 -1 -1 0.42 0.0283465 0.026081 145 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 10.12 vpr 53.45 MiB -1 -1 0.22 17440 14 0.37 -1 -1 32256 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54736 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 15.0 MiB 1.78 1112 53.5 MiB 0.05 0.00 6.71317 -135.676 -6.71317 6.71317 0.91 0.00027994 0.000228588 0.0138788 0.0116417 40 2611 22 6.79088e+06 269440 706193. 2443.58 4.80 0.234718 0.20975 26254 175826 -1 2568 22 1394 4095 248913 56263 0 0 248913 56263 4095 2181 0 0 13634 11725 0 0 24382 16119 0 0 4095 2625 0 0 100953 11980 0 0 101754 11633 0 0 4095 0 0 2701 4608 4988 31626 0 0 6.96377 6.96377 -155.043 -6.96377 0 0 926341. 3205.33 0.37 0.09 0.17 -1 -1 0.37 0.0291559 0.0265269 125 167 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 12.43 vpr 53.52 MiB -1 -1 0.23 17584 13 0.35 -1 -1 32224 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 15.0 MiB 2.93 1171 53.5 MiB 0.10 0.00 6.62696 -130.6 -6.62696 6.62696 1.01 0.00034455 0.0002821 0.0269716 0.0224817 38 3675 27 6.79088e+06 282912 678818. 2348.85 5.60 0.162481 0.142691 25966 169698 -1 2736 18 1464 4001 211963 49029 0 0 211963 49029 4001 2177 0 0 12541 10747 0 0 18925 13572 0 0 4001 2594 0 0 84354 10357 0 0 88141 9582 0 0 4001 0 0 2537 3563 4265 27834 0 0 7.12816 7.12816 -154.333 -7.12816 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0247429 0.0225149 136 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 10.33 vpr 53.56 MiB -1 -1 0.25 17724 13 0.34 -1 -1 32196 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54848 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 14.9 MiB 2.35 1366 53.6 MiB 0.03 0.00 6.41212 -141.541 -6.41212 6.41212 0.59 0.000180576 0.000146075 0.00899951 0.00773311 40 3328 23 6.79088e+06 282912 706193. 2443.58 4.86 0.202272 0.178575 26254 175826 -1 3142 38 2072 6060 636765 252894 0 0 636765 252894 6060 3326 0 0 19025 16239 0 0 37872 23332 0 0 6060 3950 0 0 284192 105776 0 0 283556 100271 0 0 6060 0 0 3988 7141 6439 45472 0 0 7.12472 7.12472 -166.887 -7.12472 0 0 926341. 3205.33 0.23 0.15 0.11 -1 -1 0.23 0.0264583 0.023806 144 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 19.25 vpr 53.71 MiB -1 -1 0.25 17784 12 0.38 -1 -1 32320 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 15.0 MiB 1.87 1375 53.7 MiB 0.07 0.00 6.36178 -137.635 -6.36178 6.36178 0.59 0.000337668 0.000277101 0.0174731 0.0145553 36 4081 46 6.79088e+06 282912 648988. 2245.63 14.22 0.293652 0.262297 25390 158009 -1 3302 19 1602 4391 305141 67276 0 0 305141 67276 4391 2520 0 0 14172 12135 0 0 24005 16528 0 0 4391 2887 0 0 130806 16491 0 0 127376 16715 0 0 4391 0 0 2789 4096 4914 29696 0 0 6.69843 6.69843 -158.751 -6.69843 0 0 828058. 2865.25 0.35 0.11 0.15 -1 -1 0.35 0.0308266 0.0282004 147 213 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 6.87 vpr 52.97 MiB -1 -1 0.18 17100 11 0.11 -1 -1 31792 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54244 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 14.5 MiB 1.31 1004 53.0 MiB 0.07 0.00 5.23038 -117.085 -5.23038 5.23038 0.95 0.000222674 0.000182031 0.0176581 0.0145198 36 2579 27 6.79088e+06 188608 648988. 2245.63 2.25 0.0953158 0.0825778 25390 158009 -1 2248 19 882 2325 149135 33507 0 0 149135 33507 2325 1395 0 0 7803 6654 0 0 12979 9240 0 0 2325 1558 0 0 62649 7283 0 0 61054 7377 0 0 2325 0 0 1443 2296 2300 15564 0 0 5.44178 5.44178 -132.855 -5.44178 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0182113 0.0165738 91 121 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 9.95 vpr 53.41 MiB -1 -1 0.20 17484 13 0.19 -1 -1 32212 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 14.8 MiB 1.96 1119 53.4 MiB 0.07 0.00 6.49822 -140.987 -6.49822 6.49822 0.99 0.000292522 0.00023684 0.0172629 0.0143316 44 2912 19 6.79088e+06 269440 787024. 2723.27 4.51 0.152019 0.133437 27118 194962 -1 2350 13 1014 2643 143149 32471 0 0 143149 32471 2643 1358 0 0 8411 7119 0 0 13329 9397 0 0 2643 1572 0 0 57813 6603 0 0 58310 6422 0 0 2643 0 0 1629 2199 2166 16707 0 0 6.62352 6.62352 -153.48 -6.62352 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.0172074 0.0158053 118 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 11.58 vpr 53.95 MiB -1 -1 0.25 17964 14 0.56 -1 -1 32444 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 15.5 MiB 1.51 1416 54.0 MiB 0.11 0.00 7.7695 -154.348 -7.7695 7.7695 0.99 0.00039946 0.000323729 0.030263 0.0250825 46 3695 20 6.79088e+06 323328 828058. 2865.25 5.77 0.263139 0.23202 27406 200422 -1 3006 16 1662 4846 244526 56211 0 0 244526 56211 4846 2162 0 0 14972 12881 0 0 23047 16062 0 0 4846 2727 0 0 97191 11426 0 0 99624 10953 0 0 4846 0 0 3184 5081 4542 34847 0 0 7.9417 7.9417 -170.346 -7.9417 0 0 1.01997e+06 3529.29 0.39 0.09 0.18 -1 -1 0.39 0.03168 0.0291547 171 243 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 8.08 vpr 53.74 MiB -1 -1 0.24 17428 13 0.34 -1 -1 32256 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55032 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 15.0 MiB 1.90 1241 53.7 MiB 0.06 0.00 6.58432 -143.713 -6.58432 6.58432 0.91 0.000297466 0.000241447 0.0144422 0.0121641 38 3262 28 6.79088e+06 282912 678818. 2348.85 2.77 0.109789 0.0962037 25966 169698 -1 2642 16 1259 3408 170227 40168 0 0 170227 40168 3408 1797 0 0 10612 9185 0 0 16428 11570 0 0 3408 2095 0 0 68976 7679 0 0 67395 7842 0 0 3408 0 0 2149 2875 3357 23997 0 0 6.58432 6.58432 -158.874 -6.58432 0 0 902133. 3121.57 0.22 0.04 0.10 -1 -1 0.22 0.0136795 0.012609 134 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 8.01 vpr 52.99 MiB -1 -1 0.14 17536 11 0.22 -1 -1 31996 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54264 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 14.4 MiB 0.95 923 53.0 MiB 0.07 0.00 5.44189 -119.087 -5.44189 5.44189 0.91 0.0002651 0.000214881 0.0176874 0.014605 30 2932 46 6.79088e+06 229024 556674. 1926.21 3.62 0.103086 0.0903387 24526 138013 -1 2321 23 1312 3685 228517 49290 0 0 228517 49290 3685 2133 0 0 11200 9775 0 0 18405 12253 0 0 3685 2424 0 0 94456 11634 0 0 97086 11071 0 0 3685 0 0 2373 4090 3495 25931 0 0 5.72815 5.72815 -137.285 -5.72815 0 0 706193. 2443.58 0.28 0.08 0.12 -1 -1 0.28 0.023129 0.0208663 101 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 11.50 vpr 54.14 MiB -1 -1 0.26 18400 15 0.65 -1 -1 32288 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55444 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 15.5 MiB 1.20 1646 54.1 MiB 0.09 0.00 7.77725 -160.767 -7.77725 7.77725 1.03 0.000432955 0.000356631 0.0266068 0.0224709 46 3881 28 6.79088e+06 336800 828058. 2865.25 6.13 0.332893 0.294999 27406 200422 -1 3201 25 1691 5045 439322 171171 0 0 439322 171171 5045 2161 0 0 15706 13466 0 0 26162 17939 0 0 5045 2741 0 0 191595 67498 0 0 195769 67366 0 0 5045 0 0 3354 5688 6250 41821 0 0 8.15315 8.15315 -178.815 -8.15315 0 0 1.01997e+06 3529.29 0.25 0.10 0.11 -1 -1 0.25 0.0244998 0.0223466 179 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 9.72 vpr 53.62 MiB -1 -1 0.19 17472 13 0.39 -1 -1 32212 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54904 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 15.2 MiB 1.44 1304 53.6 MiB 0.09 0.00 6.47021 -144.885 -6.47021 6.47021 0.94 0.000340489 0.000265005 0.0251626 0.0208471 36 3506 28 6.79088e+06 269440 648988. 2245.63 4.51 0.168751 0.147459 25390 158009 -1 3036 17 1476 3910 235101 52605 0 0 235101 52605 3910 2274 0 0 12839 11003 0 0 20972 14858 0 0 3910 2590 0 0 94473 11408 0 0 98997 10472 0 0 3910 0 0 2434 3998 4482 28084 0 0 7.04981 7.04981 -170.812 -7.04981 0 0 828058. 2865.25 0.35 0.09 0.14 -1 -1 0.35 0.0302651 0.0278617 139 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 6.11 vpr 53.00 MiB -1 -1 0.10 17164 11 0.11 -1 -1 32028 -1 -1 13 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54268 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 14.4 MiB 1.62 1010 53.0 MiB 0.04 0.00 5.40613 -117.216 -5.40613 5.40613 0.60 0.000141005 0.000114932 0.0102029 0.00853895 36 2523 32 6.79088e+06 175136 648988. 2245.63 1.88 0.0687261 0.0595189 25390 158009 -1 2174 15 907 2249 133269 30489 0 0 133269 30489 2249 1265 0 0 7414 6323 0 0 11982 8607 0 0 2249 1430 0 0 53720 6713 0 0 55655 6151 0 0 2249 0 0 1342 2076 1918 14309 0 0 5.65673 5.65673 -134.053 -5.65673 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0170895 0.0157108 94 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 15.71 vpr 53.52 MiB -1 -1 0.20 17744 12 0.38 -1 -1 32188 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 15.1 MiB 0.94 1333 53.5 MiB 0.09 0.00 6.25876 -134.034 -6.25876 6.25876 0.67 0.000390297 0.000319513 0.025793 0.0214671 36 3533 29 6.79088e+06 269440 648988. 2245.63 11.69 0.255053 0.226217 25390 158009 -1 3088 17 1440 4443 271377 60182 0 0 271377 60182 4443 2259 0 0 14542 12488 0 0 24956 17234 0 0 4443 2620 0 0 111280 12804 0 0 111713 12777 0 0 4443 0 0 3003 6767 7733 45554 0 0 6.42321 6.42321 -154.146 -6.42321 0 0 828058. 2865.25 0.27 0.09 0.14 -1 -1 0.27 0.0253186 0.0230201 146 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 9.72 vpr 53.26 MiB -1 -1 0.18 17164 12 0.17 -1 -1 32104 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 14.8 MiB 1.37 1135 53.3 MiB 0.05 0.00 6.07963 -128.01 -6.07963 6.07963 0.75 0.000263743 0.000213259 0.0112672 0.0094428 36 3175 27 6.79088e+06 242496 648988. 2245.63 5.05 0.148091 0.133179 25390 158009 -1 2715 21 1197 3094 275506 84060 0 0 275506 84060 3094 1896 0 0 10172 8590 0 0 17598 12244 0 0 3094 2213 0 0 120331 29786 0 0 121217 29331 0 0 3094 0 0 1897 2989 3061 20041 0 0 6.63117 6.63117 -152.001 -6.63117 0 0 828058. 2865.25 0.33 0.11 0.15 -1 -1 0.33 0.026069 0.0238384 113 148 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 8.26 vpr 53.07 MiB -1 -1 0.21 17492 12 0.16 -1 -1 32132 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54348 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 14.4 MiB 1.34 1035 53.1 MiB 0.04 0.00 6.13346 -126.584 -6.13346 6.13346 0.94 0.000280723 0.000224176 0.00945464 0.00789562 36 2576 25 6.79088e+06 229024 648988. 2245.63 3.62 0.131924 0.115788 25390 158009 -1 2220 17 874 2420 144778 33057 0 0 144778 33057 2420 1332 0 0 8113 6940 0 0 13521 9640 0 0 2420 1516 0 0 58120 7006 0 0 60184 6623 0 0 2420 0 0 1546 2735 2767 18470 0 0 6.63466 6.63466 -144.115 -6.63466 0 0 828058. 2865.25 0.31 0.04 0.13 -1 -1 0.31 0.0120259 0.0109842 106 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 9.75 vpr 53.62 MiB -1 -1 0.25 17480 12 0.25 -1 -1 32184 -1 -1 26 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54904 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 15.1 MiB 2.50 1294 53.6 MiB 0.04 0.00 5.90743 -119.276 -5.90743 5.90743 0.62 0.000177185 0.000138743 0.0102355 0.00852354 38 3217 41 6.79088e+06 350272 678818. 2348.85 4.00 0.141419 0.126472 25966 169698 -1 2556 15 1228 3686 189913 42170 0 0 189913 42170 3686 1754 0 0 11134 9469 0 0 17361 11890 0 0 3686 2078 0 0 75151 8805 0 0 78895 8174 0 0 3686 0 0 2458 4890 4124 31610 0 0 6.49473 6.49473 -138.055 -6.49473 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.0232312 0.0212955 140 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 14.14 vpr 54.05 MiB -1 -1 0.22 17428 13 0.43 -1 -1 32272 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55344 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 15.2 MiB 1.19 1408 54.0 MiB 0.05 0.00 6.67386 -140.77 -6.67386 6.67386 0.71 0.000200277 0.000160951 0.0119191 0.00993423 36 4471 35 6.79088e+06 309856 648988. 2245.63 9.68 0.22869 0.201734 25390 158009 -1 3327 21 2132 5070 296179 68615 0 0 296179 68615 5070 3046 0 0 16436 14181 0 0 27048 19093 0 0 5070 3443 0 0 117974 14686 0 0 124581 14166 0 0 5070 0 0 2938 3856 4671 29197 0 0 6.97136 6.97136 -163.682 -6.97136 0 0 828058. 2865.25 0.33 0.11 0.15 -1 -1 0.33 0.0354265 0.0323845 160 235 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 7.35 vpr 53.54 MiB -1 -1 0.24 17488 12 0.26 -1 -1 32824 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 15.0 MiB 1.59 1329 53.5 MiB 0.05 0.00 6.32248 -137.179 -6.32248 6.32248 0.84 0.000306987 0.00024422 0.0134719 0.0110637 38 3620 30 6.79088e+06 269440 678818. 2348.85 2.34 0.124672 0.109817 25966 169698 -1 2913 19 1519 4404 241285 53250 0 0 241285 53250 4404 2188 0 0 13472 11695 0 0 21500 14695 0 0 4404 2713 0 0 98178 11200 0 0 99327 10759 0 0 4404 0 0 2885 5232 4850 34241 0 0 6.75647 6.75647 -157.96 -6.75647 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0164663 0.0151272 140 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 9.48 vpr 52.89 MiB -1 -1 0.20 17096 12 0.19 -1 -1 32088 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54160 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 14.4 MiB 2.58 1026 52.9 MiB 0.08 0.00 5.99697 -124.075 -5.99697 5.99697 1.01 0.000263797 0.000216367 0.0202882 0.0168692 36 2562 24 6.79088e+06 202080 648988. 2245.63 3.40 0.11361 0.0986057 25390 158009 -1 2167 19 832 2302 145773 32176 0 0 145773 32176 2302 1300 0 0 7588 6474 0 0 12403 8777 0 0 2302 1503 0 0 60175 7197 0 0 61003 6925 0 0 2302 0 0 1470 2590 2255 16683 0 0 6.49812 6.49812 -146.123 -6.49812 0 0 828058. 2865.25 0.28 0.06 0.10 -1 -1 0.28 0.0184955 0.0168278 93 119 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 13.40 vpr 53.23 MiB -1 -1 0.23 17432 12 0.28 -1 -1 32144 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54504 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 14.8 MiB 1.34 1028 53.2 MiB 0.05 0.00 6.09963 -126.252 -6.09963 6.09963 0.58 0.000144689 0.000116032 0.0114596 0.00943815 34 3345 30 6.79088e+06 255968 618332. 2139.56 9.08 0.19113 0.167887 25102 150614 -1 2501 19 1113 3060 190245 42897 0 0 190245 42897 3060 1779 0 0 9918 8477 0 0 17118 11633 0 0 3060 2074 0 0 76595 9742 0 0 80494 9192 0 0 3060 0 0 1947 3071 3233 21639 0 0 6.51468 6.51468 -144.496 -6.51468 0 0 787024. 2723.27 0.20 0.05 0.14 -1 -1 0.20 0.01333 0.0122249 111 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 10.09 vpr 53.43 MiB -1 -1 0.15 17596 11 0.26 -1 -1 32040 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 15.0 MiB 1.84 1255 53.4 MiB 0.06 0.00 5.62872 -116.237 -5.62872 5.62872 1.02 0.000316848 0.000258913 0.0166957 0.0140552 36 3356 38 6.79088e+06 269440 648988. 2245.63 4.63 0.145632 0.126849 25390 158009 -1 2797 18 1171 3592 245816 52139 0 0 245816 52139 3592 2040 0 0 11586 9940 0 0 19366 13386 0 0 3592 2293 0 0 99828 12953 0 0 107852 11527 0 0 3592 0 0 2421 4857 5357 32531 0 0 6.12992 6.12992 -134.265 -6.12992 0 0 828058. 2865.25 0.32 0.05 0.14 -1 -1 0.32 0.0142578 0.0130481 125 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 7.65 vpr 53.42 MiB -1 -1 0.19 17360 11 0.25 -1 -1 32108 -1 -1 19 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 14.8 MiB 1.60 1041 53.4 MiB 0.04 0.00 5.48104 -108.223 -5.48104 5.48104 0.84 0.000267088 0.000214862 0.0106002 0.00893415 36 2792 26 6.79088e+06 255968 648988. 2245.63 2.75 0.0865725 0.0757689 25390 158009 -1 2423 18 1107 3315 226448 51406 0 0 226448 51406 3315 1758 0 0 10835 9458 0 0 18856 12866 0 0 3315 2035 0 0 91784 13050 0 0 98343 12239 0 0 3315 0 0 2208 4089 4273 28537 0 0 5.73164 5.73164 -124.873 -5.73164 0 0 828058. 2865.25 0.31 0.09 0.11 -1 -1 0.31 0.0259348 0.0238864 116 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 10.81 vpr 53.20 MiB -1 -1 0.22 17436 13 0.28 -1 -1 32072 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54472 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 14.7 MiB 2.43 1019 53.2 MiB 0.08 0.00 6.0762 -123.922 -6.0762 6.0762 1.05 0.000283403 0.000230899 0.0217727 0.0181641 36 3056 25 6.79088e+06 242496 648988. 2245.63 4.73 0.170911 0.149689 25390 158009 -1 2341 18 1051 2899 168033 38650 0 0 168033 38650 2899 1546 0 0 9539 8209 0 0 15859 11179 0 0 2899 1807 0 0 68266 8107 0 0 68571 7802 0 0 2899 0 0 1848 2672 2662 19321 0 0 6.0762 6.0762 -138.786 -6.0762 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.011597 0.0105635 108 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 8.96 vpr 53.35 MiB -1 -1 0.21 17520 12 0.27 -1 -1 32224 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 14.7 MiB 2.77 1033 53.4 MiB 0.07 0.00 5.79322 -128.672 -5.79322 5.79322 1.03 0.00030129 0.000245403 0.018968 0.0158392 40 2631 17 6.79088e+06 242496 706193. 2443.58 2.35 0.132327 0.116465 26254 175826 -1 2517 17 1238 3336 200686 46403 0 0 200686 46403 3336 1854 0 0 11018 9256 0 0 19162 13023 0 0 3336 2176 0 0 77421 10690 0 0 86413 9404 0 0 3336 0 0 2098 3219 3251 22132 0 0 5.87932 5.87932 -145.848 -5.87932 0 0 926341. 3205.33 0.37 0.08 0.17 -1 -1 0.37 0.0248569 0.0228097 120 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 6.21 vpr 53.27 MiB -1 -1 0.16 17424 13 0.34 -1 -1 32264 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54552 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 14.8 MiB 1.80 1208 53.3 MiB 0.09 0.00 6.92806 -142.087 -6.92806 6.92806 0.60 0.000291823 0.000235478 0.0259122 0.0214035 36 3266 27 6.79088e+06 282912 648988. 2245.63 1.36 0.0779094 0.066896 25390 158009 -1 2597 17 1289 3515 186434 43872 0 0 186434 43872 3515 1772 0 0 11698 9908 0 0 18345 13353 0 0 3515 2142 0 0 74444 8421 0 0 74917 8276 0 0 3515 0 0 2226 3266 3303 23920 0 0 7.76595 7.76595 -165.154 -7.76595 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0141268 0.0128904 137 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 15.20 vpr 53.48 MiB -1 -1 0.20 17844 14 0.34 -1 -1 32732 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54760 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 14.9 MiB 1.64 1332 53.5 MiB 0.08 0.00 7.39006 -154.208 -7.39006 7.39006 0.84 0.000312518 0.000252507 0.0229703 0.01903 36 3846 25 6.79088e+06 269440 648988. 2245.63 10.03 0.152851 0.134461 25390 158009 -1 3081 19 1443 4102 253701 55197 0 0 253701 55197 4102 2187 0 0 12958 11120 0 0 22171 15009 0 0 4102 2490 0 0 105442 12299 0 0 104926 12092 0 0 4102 0 0 2659 4716 5437 33628 0 0 7.64066 7.64066 -176.264 -7.64066 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0265055 0.0242406 132 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 10.14 vpr 53.37 MiB -1 -1 0.23 17772 14 0.31 -1 -1 32220 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54652 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 14.7 MiB 2.50 1041 53.4 MiB 0.06 0.00 6.96371 -135.673 -6.96371 6.96371 0.59 0.000171186 0.000132275 0.016486 0.0133398 36 3431 33 6.79088e+06 229024 648988. 2245.63 4.61 0.143082 0.126701 25390 158009 -1 2502 17 1247 3530 209743 49428 0 0 209743 49428 3530 1895 0 0 11531 9755 0 0 19137 13496 0 0 3530 2155 0 0 82340 11347 0 0 89675 10780 0 0 3530 0 0 2283 4143 4341 29437 0 0 7.08901 7.08901 -151.69 -7.08901 0 0 828058. 2865.25 0.35 0.08 0.14 -1 -1 0.35 0.0237825 0.0216617 122 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 10.06 vpr 53.46 MiB -1 -1 0.25 17772 13 0.46 -1 -1 32156 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 14.8 MiB 2.37 1352 53.5 MiB 0.07 0.00 6.83498 -141.936 -6.83498 6.83498 1.04 0.000393119 0.000308315 0.0198466 0.0165998 40 3330 20 6.79088e+06 296384 706193. 2443.58 3.52 0.163004 0.144683 26254 175826 -1 3178 19 1487 4123 293912 62654 0 0 293912 62654 4123 2161 0 0 13999 11994 0 0 24712 16668 0 0 4123 2613 0 0 124056 14559 0 0 122899 14659 0 0 4123 0 0 2636 4975 5181 32325 0 0 7.12478 7.12478 -162.281 -7.12478 0 0 926341. 3205.33 0.36 0.10 0.17 -1 -1 0.36 0.0299416 0.027417 144 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 8.70 vpr 53.13 MiB -1 -1 0.22 17204 13 0.25 -1 -1 32132 -1 -1 18 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 14.7 MiB 2.23 1000 53.1 MiB 0.06 0.00 6.04387 -125.188 -6.04387 6.04387 1.05 0.000285016 0.00023457 0.0146822 0.012374 36 2718 17 6.79088e+06 242496 648988. 2245.63 2.78 0.09938 0.0870599 25390 158009 -1 2242 17 1003 2585 161055 36735 0 0 161055 36735 2585 1465 0 0 8481 7336 0 0 14033 9729 0 0 2585 1702 0 0 65378 8524 0 0 67993 7979 0 0 2585 0 0 1582 1958 2574 16405 0 0 6.41977 6.41977 -143.364 -6.41977 0 0 828058. 2865.25 0.33 0.06 0.12 -1 -1 0.33 0.0194712 0.0177411 104 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 12.76 vpr 53.64 MiB -1 -1 0.25 17736 13 0.59 -1 -1 32336 -1 -1 22 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54928 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 15.2 MiB 2.33 1333 53.6 MiB 0.07 0.00 6.79146 -140.595 -6.79146 6.79146 1.03 0.000359738 0.000294656 0.0187885 0.0158359 44 3534 25 6.79088e+06 296384 787024. 2723.27 6.17 0.216939 0.191146 27118 194962 -1 2886 17 1518 4127 221393 49278 0 0 221393 49278 4127 1954 0 0 12898 11131 0 0 21162 14603 0 0 4127 2453 0 0 87982 9962 0 0 91097 9175 0 0 4127 0 0 2609 3768 3531 27087 0 0 6.97485 6.97485 -158.589 -6.97485 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0257885 0.0234655 145 200 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 10.79 vpr 53.36 MiB -1 -1 0.24 17520 14 0.38 -1 -1 32160 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 14.9 MiB 2.15 1288 53.4 MiB 0.04 0.00 6.80702 -148.946 -6.80702 6.80702 0.82 0.000186169 0.000149236 0.011708 0.00972095 46 2966 18 6.79088e+06 242496 828058. 2865.25 4.82 0.16532 0.145144 27406 200422 -1 2524 15 1162 3441 185985 40849 0 0 185985 40849 3441 1590 0 0 10765 9259 0 0 17087 11776 0 0 3441 1981 0 0 74617 8286 0 0 76634 7957 0 0 3441 0 0 2279 4031 3785 27434 0 0 7.25783 7.25783 -164.531 -7.25783 0 0 1.01997e+06 3529.29 0.40 0.07 0.17 -1 -1 0.40 0.023226 0.0213648 128 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 8.29 vpr 53.43 MiB -1 -1 0.24 17488 13 0.31 -1 -1 32320 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 14.8 MiB 2.43 1164 53.4 MiB 0.06 0.00 6.15803 -135.979 -6.15803 6.15803 1.00 0.000323956 0.000267292 0.0168866 0.014304 36 3081 27 6.79088e+06 255968 648988. 2245.63 2.18 0.121453 0.107752 25390 158009 -1 2675 17 1303 3369 205568 45572 0 0 205568 45572 3369 1898 0 0 10892 9347 0 0 18171 12548 0 0 3369 2149 0 0 86069 9669 0 0 83698 9961 0 0 3369 0 0 2066 3116 3566 23113 0 0 6.40863 6.40863 -152.927 -6.40863 0 0 828058. 2865.25 0.22 0.05 0.15 -1 -1 0.22 0.0141905 0.0130562 124 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 7.43 vpr 53.50 MiB -1 -1 0.25 17868 13 0.26 -1 -1 32140 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54780 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 14.8 MiB 2.06 1051 53.5 MiB 0.06 0.00 6.13113 -121.375 -6.13113 6.13113 0.59 0.000164422 0.000133129 0.0148087 0.0123175 36 3244 35 6.79088e+06 255968 648988. 2245.63 2.43 0.0844257 0.0729592 25390 158009 -1 2707 20 1613 4252 284132 62796 0 0 284132 62796 4252 2510 0 0 13484 11753 0 0 23436 15740 0 0 4252 2869 0 0 116979 15378 0 0 121729 14546 0 0 4252 0 0 2639 5158 4908 32057 0 0 6.40858 6.40858 -140.488 -6.40858 0 0 828058. 2865.25 0.35 0.10 0.15 -1 -1 0.35 0.0256197 0.0230424 121 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 11.20 vpr 53.76 MiB -1 -1 0.24 17436 14 0.49 -1 -1 32300 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 15.3 MiB 2.08 1423 53.8 MiB 0.11 0.00 6.92457 -146.586 -6.92457 6.92457 1.00 0.000374892 0.000307466 0.0330006 0.0276004 44 3914 26 6.79088e+06 282912 787024. 2723.27 5.00 0.211571 0.186157 27118 194962 -1 3225 17 1522 4550 270679 58412 0 0 270679 58412 4550 2364 0 0 14061 12293 0 0 23798 16227 0 0 4550 2813 0 0 108459 12882 0 0 115261 11833 0 0 4550 0 0 3028 5094 5137 34567 0 0 7.54758 7.54758 -167.176 -7.54758 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0239624 0.0219553 154 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 10.13 vpr 53.43 MiB -1 -1 0.17 17844 11 0.39 -1 -1 32172 -1 -1 23 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 15.0 MiB 2.62 1221 53.4 MiB 0.04 0.00 6.13002 -122.072 -6.13002 6.13002 0.86 0.000173302 0.000142141 0.0095797 0.00807917 36 3535 45 6.79088e+06 309856 648988. 2245.63 4.20 0.200516 0.178894 25390 158009 -1 2762 18 1435 4175 253228 55470 0 0 253228 55470 4175 2164 0 0 13367 11431 0 0 22785 15541 0 0 4175 2514 0 0 103206 12126 0 0 105520 11694 0 0 4175 0 0 2740 4944 4953 32772 0 0 6.38062 6.38062 -137.427 -6.38062 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0255531 0.0234699 136 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 9.84 vpr 53.14 MiB -1 -1 0.15 17164 13 0.20 -1 -1 32172 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54416 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 14.5 MiB 3.76 1159 53.1 MiB 0.04 0.00 6.02924 -138.116 -6.02924 6.02924 1.03 0.000263702 0.000216395 0.00947961 0.00810144 36 3021 19 6.79088e+06 188608 648988. 2245.63 2.39 0.0895048 0.0795143 25390 158009 -1 2512 26 1212 2948 325409 116383 0 0 325409 116383 2948 1919 0 0 9350 7974 0 0 17855 11463 0 0 2948 2153 0 0 148404 47962 0 0 143904 44912 0 0 2948 0 0 1736 2507 2524 16319 0 0 6.32674 6.32674 -156.073 -6.32674 0 0 828058. 2865.25 0.34 0.13 0.15 -1 -1 0.34 0.0281293 0.0256377 98 127 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 8.08 vpr 53.46 MiB -1 -1 0.22 17776 14 0.32 -1 -1 32312 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 15.1 MiB 2.12 1201 53.5 MiB 0.06 0.00 6.96377 -145.84 -6.96377 6.96377 0.94 0.000167284 0.000135123 0.0175074 0.0146616 36 3349 46 6.79088e+06 229024 648988. 2245.63 2.19 0.117945 0.103622 25390 158009 -1 2728 21 1303 3366 204858 45960 0 0 204858 45960 3366 1990 0 0 11090 9439 0 0 18119 12736 0 0 3366 2241 0 0 82951 10183 0 0 85966 9371 0 0 3366 0 0 2063 3658 3546 24061 0 0 7.55106 7.55106 -166.918 -7.55106 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0277215 0.0252488 122 172 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 7.44 vpr 54.17 MiB -1 -1 0.26 17920 15 0.56 -1 -1 32188 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55468 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 15.3 MiB 1.57 1439 54.2 MiB 0.07 0.00 7.55804 -160.496 -7.55804 7.55804 0.75 0.000207286 0.000168281 0.0189269 0.0157067 44 3828 34 6.79088e+06 309856 787024. 2723.27 2.67 0.128891 0.111807 27118 194962 -1 3085 19 1786 4745 252243 57061 0 0 252243 57061 4745 2293 0 0 14961 12990 0 0 24882 17165 0 0 4745 2784 0 0 100231 11156 0 0 102679 10673 0 0 4745 0 0 2959 3801 4575 30298 0 0 7.93394 7.93394 -174.894 -7.93394 0 0 997811. 3452.63 0.25 0.06 0.10 -1 -1 0.25 0.0188547 0.0172842 163 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 7.51 vpr 53.08 MiB -1 -1 0.13 17240 11 0.19 -1 -1 32128 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54356 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 14.5 MiB 2.06 939 53.1 MiB 0.06 0.00 5.75402 -124.095 -5.75402 5.75402 0.95 0.000244081 0.000200122 0.0142336 0.0119591 30 3008 34 6.79088e+06 202080 556674. 1926.21 2.10 0.0572068 0.0499287 24526 138013 -1 2217 25 1096 3079 297475 111879 0 0 297475 111879 3079 1637 0 0 9356 8043 0 0 15866 10554 0 0 3079 1896 0 0 128817 44256 0 0 137278 45493 0 0 3079 0 0 1983 4094 3324 24730 0 0 6.12992 6.12992 -142.791 -6.12992 0 0 706193. 2443.58 0.28 0.11 0.12 -1 -1 0.28 0.0235617 0.0213698 97 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 8.83 vpr 53.31 MiB -1 -1 0.19 17184 12 0.24 -1 -1 32100 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 14.8 MiB 1.70 942 53.3 MiB 0.08 0.00 5.70019 -121.214 -5.70019 5.70019 0.96 0.000268899 0.000216275 0.020821 0.0171179 38 3133 27 6.79088e+06 229024 678818. 2348.85 3.80 0.109101 0.0946969 25966 169698 -1 2320 17 1308 3565 185216 45111 0 0 185216 45111 3565 2037 0 0 11127 9782 0 0 17181 12048 0 0 3565 2364 0 0 71352 9837 0 0 78426 9043 0 0 3565 0 0 2257 3209 3223 23042 0 0 5.9865 5.9865 -143.332 -5.9865 0 0 902133. 3121.57 0.31 0.04 0.15 -1 -1 0.31 0.0136281 0.012546 112 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 10.18 vpr 53.63 MiB -1 -1 0.22 17364 12 0.28 -1 -1 32160 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 15.0 MiB 1.53 1374 53.6 MiB 0.03 0.00 6.21181 -135.033 -6.21181 6.21181 0.59 0.00019678 0.000160886 0.00887468 0.00756316 36 3693 24 6.79088e+06 255968 648988. 2245.63 5.83 0.132786 0.115653 25390 158009 -1 3170 21 1639 5089 336791 72250 0 0 336791 72250 5089 2827 0 0 15901 13907 0 0 27896 18552 0 0 5089 3279 0 0 140343 17097 0 0 142473 16588 0 0 5089 0 0 3450 6804 7016 44651 0 0 7.08891 7.08891 -161.559 -7.08891 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0252571 0.0226976 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 11.42 vpr 53.66 MiB -1 -1 0.24 17584 12 0.31 -1 -1 32180 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 15.0 MiB 1.91 1373 53.7 MiB 0.06 0.00 6.29447 -134.471 -6.29447 6.29447 1.02 0.000308519 0.000250554 0.0161535 0.0135915 38 3651 40 6.79088e+06 242496 678818. 2348.85 5.47 0.142597 0.125736 25966 169698 -1 3021 29 1715 5126 475691 185268 0 0 475691 185268 5126 2698 0 0 14788 13106 0 0 26488 16867 0 0 5126 3260 0 0 211759 76106 0 0 212404 73231 0 0 5126 0 0 3411 5432 5929 38410 0 0 6.33018 6.33018 -152.882 -6.33018 0 0 902133. 3121.57 0.36 0.19 0.16 -1 -1 0.36 0.03913 0.0357354 130 176 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 11.16 vpr 53.90 MiB -1 -1 0.23 18052 14 0.45 -1 -1 32356 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 15.3 MiB 2.28 1479 53.9 MiB 0.06 0.00 7.3152 -150.802 -7.3152 7.3152 0.87 0.000378758 0.000304586 0.0154421 0.0130518 40 3643 47 6.79088e+06 296384 706193. 2443.58 5.34 0.227365 0.198054 26254 175826 -1 3411 22 1944 5895 328979 73607 0 0 328979 73607 5895 2825 0 0 18772 15746 0 0 32581 21500 0 0 5895 3588 0 0 132694 15055 0 0 133142 14893 0 0 5895 0 0 3951 6288 7814 45932 0 0 7.6911 7.6911 -170.177 -7.6911 0 0 926341. 3205.33 0.22 0.07 0.09 -1 -1 0.22 0.0192555 0.0174769 167 232 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 10.85 vpr 53.30 MiB -1 -1 0.14 17448 12 0.29 -1 -1 32220 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54584 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 14.7 MiB 2.10 987 53.3 MiB 0.08 0.00 6.07188 -116.947 -6.07188 6.07188 0.97 0.000302886 0.000233061 0.0212505 0.01762 44 2667 22 6.79088e+06 255968 787024. 2723.27 5.01 0.165692 0.144445 27118 194962 -1 2043 16 990 2923 142810 34327 0 0 142810 34327 2923 1452 0 0 9154 7645 0 0 14682 10193 0 0 2923 1785 0 0 53794 6860 0 0 59334 6392 0 0 2923 0 0 1933 3013 2771 21954 0 0 6.11878 6.11878 -128.537 -6.11878 0 0 997811. 3452.63 0.40 0.06 0.16 -1 -1 0.40 0.021502 0.0197729 121 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 13.84 vpr 53.10 MiB -1 -1 0.20 17208 11 0.22 -1 -1 32052 -1 -1 19 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54372 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 14.5 MiB 2.72 956 53.1 MiB 0.08 0.00 5.54262 -105.114 -5.54262 5.54262 1.11 0.000263108 0.000220185 0.0218619 0.0182924 28 2812 41 6.79088e+06 255968 531479. 1839.03 7.38 0.170712 0.149786 23950 126010 -1 2295 19 1073 2662 165609 38132 0 0 165609 38132 2662 1720 0 0 8742 7389 0 0 14340 10201 0 0 2662 1911 0 0 67676 8672 0 0 69527 8239 0 0 2662 0 0 1589 2581 2678 16912 0 0 6.16912 6.16912 -125.528 -6.16912 0 0 648988. 2245.63 0.29 0.08 0.11 -1 -1 0.29 0.0230754 0.0210766 104 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 13.29 vpr 54.26 MiB -1 -1 0.23 18240 13 0.49 -1 -1 32332 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55560 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 15.5 MiB 2.04 1827 54.3 MiB 0.09 0.00 6.73311 -141.588 -6.73311 6.73311 0.96 0.00043403 0.000354165 0.0265713 0.0223793 40 4493 22 6.79088e+06 350272 706193. 2443.58 7.15 0.228762 0.204072 26254 175826 -1 4433 26 2054 6283 536336 143969 0 0 536336 143969 6283 3312 0 0 20624 17599 0 0 36469 24160 0 0 6283 3942 0 0 232022 48513 0 0 234655 46443 0 0 6283 0 0 4229 8706 8561 54399 0 0 7.23431 7.23431 -168.406 -7.23431 0 0 926341. 3205.33 0.34 0.18 0.16 -1 -1 0.34 0.0466868 0.0424622 188 285 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 7.44 vpr 53.49 MiB -1 -1 0.23 17768 14 0.35 -1 -1 32528 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54776 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 15.0 MiB 2.33 1170 53.5 MiB 0.04 0.00 6.8027 -138.833 -6.8027 6.8027 0.63 0.000187571 0.000153761 0.0112403 0.00942757 30 3394 40 6.79088e+06 296384 556674. 1926.21 1.93 0.0793433 0.0695041 24526 138013 -1 2702 20 1334 3663 197644 44721 0 0 197644 44721 3663 2072 0 0 11363 9674 0 0 17235 12147 0 0 3663 2299 0 0 80302 9351 0 0 81418 9178 0 0 3663 0 0 2329 3549 3211 24370 0 0 7.29271 7.29271 -161.4 -7.29271 0 0 706193. 2443.58 0.20 0.05 0.12 -1 -1 0.20 0.0150458 0.0136796 130 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 5.98 vpr 53.13 MiB -1 -1 0.22 17524 12 0.21 -1 -1 32092 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54404 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 14.7 MiB 1.36 1143 53.1 MiB 0.03 0.00 5.77407 -129.388 -5.77407 5.77407 0.59 0.000139831 0.000112043 0.00771944 0.00643716 38 2856 21 6.79088e+06 242496 678818. 2348.85 1.82 0.0719534 0.0626483 25966 169698 -1 2344 18 1071 2705 165356 35886 0 0 165356 35886 2705 1540 0 0 8595 7244 0 0 13281 9321 0 0 2705 1712 0 0 68634 8397 0 0 69436 7672 0 0 2705 0 0 1634 2369 2114 15982 0 0 6.35018 6.35018 -149.287 -6.35018 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0208377 0.0190657 109 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 18.18 vpr 53.50 MiB -1 -1 0.22 17596 13 0.38 -1 -1 32248 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 15.0 MiB 1.87 1220 53.5 MiB 0.09 0.00 6.71317 -142.432 -6.71317 6.71317 0.75 0.000315292 0.000255217 0.025382 0.0210607 36 3582 23 6.79088e+06 242496 648988. 2245.63 12.80 0.164681 0.143033 25390 158009 -1 2949 27 1283 3520 410011 147385 0 0 410011 147385 3520 1875 0 0 11514 9737 0 0 21285 14354 0 0 3520 2157 0 0 187506 60705 0 0 182666 58557 0 0 3520 0 0 2237 3445 3601 24567 0 0 7.08907 7.08907 -163.2 -7.08907 0 0 828058. 2865.25 0.22 0.11 0.09 -1 -1 0.22 0.0208431 0.0188403 128 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 9.11 vpr 54.04 MiB -1 -1 0.23 17632 13 0.29 -1 -1 32312 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55336 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 15.4 MiB 2.09 1453 54.0 MiB 0.10 0.00 6.07963 -130.511 -6.07963 6.07963 0.59 0.000269752 0.000197921 0.0189969 0.0158633 40 3790 28 6.79088e+06 323328 706193. 2443.58 3.70 0.1671 0.146898 26254 175826 -1 3441 33 1657 4835 545232 203948 0 0 545232 203948 4835 2583 0 0 15797 13524 0 0 31345 19914 0 0 4835 3059 0 0 246863 84069 0 0 241557 80799 0 0 4835 0 0 3178 5320 5421 37586 0 0 6.66688 6.66688 -155.041 -6.66688 0 0 926341. 3205.33 0.37 0.22 0.16 -1 -1 0.37 0.0501787 0.0456379 157 228 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 7.86 vpr 53.55 MiB -1 -1 0.23 17508 11 0.31 -1 -1 32124 -1 -1 22 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 15.0 MiB 2.12 1129 53.5 MiB 0.04 0.00 5.79322 -115.818 -5.79322 5.79322 0.59 0.000239344 0.000190315 0.00973988 0.00810058 38 3092 22 6.79088e+06 296384 678818. 2348.85 2.87 0.137007 0.122068 25966 169698 -1 2360 15 1102 3265 158636 37410 0 0 158636 37410 3265 1524 0 0 10394 8731 0 0 15292 11185 0 0 3265 1862 0 0 62580 7206 0 0 63840 6902 0 0 3265 0 0 2163 3436 3616 25286 0 0 6.04382 6.04382 -131.818 -6.04382 0 0 902133. 3121.57 0.24 0.04 0.15 -1 -1 0.24 0.0133389 0.0123187 141 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 8.38 vpr 53.63 MiB -1 -1 0.24 17748 15 0.47 -1 -1 32300 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 15.2 MiB 1.99 1382 53.6 MiB 0.05 0.00 7.17871 -155.704 -7.17871 7.17871 0.66 0.000234088 0.000195813 0.0128408 0.0107174 40 3368 27 6.79088e+06 296384 706193. 2443.58 2.72 0.126061 0.110872 26254 175826 -1 3198 23 1419 4355 273246 59466 0 0 273246 59466 4355 2243 0 0 14341 12008 0 0 24599 16488 0 0 4355 2695 0 0 110127 13412 0 0 115469 12620 0 0 4355 0 0 2936 6044 5692 38115 0 0 7.76252 7.76252 -178.306 -7.76252 0 0 926341. 3205.33 0.35 0.10 0.16 -1 -1 0.35 0.0322883 0.0294776 147 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 9.89 vpr 53.65 MiB -1 -1 0.14 17692 13 0.32 -1 -1 32288 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 15.0 MiB 2.30 1395 53.7 MiB 0.07 0.00 6.82728 -147.064 -6.82728 6.82728 0.94 0.000292394 0.000237097 0.0182883 0.0152836 44 3144 18 6.79088e+06 282912 787024. 2723.27 4.01 0.17346 0.152435 27118 194962 -1 2728 16 1213 3616 183895 42137 0 0 183895 42137 3616 1698 0 0 11420 9753 0 0 18424 12989 0 0 3616 2096 0 0 74719 7538 0 0 72100 8063 0 0 3616 0 0 2403 3572 4449 28152 0 0 7.03867 7.03867 -162.716 -7.03867 0 0 997811. 3452.63 0.37 0.04 0.15 -1 -1 0.37 0.0143148 0.0131946 143 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 9.01 vpr 53.03 MiB -1 -1 0.20 17352 12 0.25 -1 -1 32168 -1 -1 18 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54300 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 14.6 MiB 1.84 951 53.0 MiB 0.09 0.00 6.41551 -125.304 -6.41551 6.41551 1.01 0.00023384 0.000190908 0.0248385 0.020631 36 3062 50 6.79088e+06 242496 648988. 2245.63 3.65 0.119067 0.103442 25390 158009 -1 2334 17 1156 2821 160986 38839 0 0 160986 38839 2821 1632 0 0 9242 7898 0 0 15065 10867 0 0 2821 1936 0 0 63469 8463 0 0 67568 8043 0 0 2821 0 0 1665 2140 2079 15579 0 0 6.62691 6.62691 -145.509 -6.62691 0 0 828058. 2865.25 0.22 0.04 0.09 -1 -1 0.22 0.012863 0.0117733 111 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 11.99 vpr 53.01 MiB -1 -1 0.18 17584 11 0.19 -1 -1 32220 -1 -1 14 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54284 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 14.4 MiB 1.92 1098 53.0 MiB 0.08 0.00 5.49223 -122.915 -5.49223 5.49223 1.01 0.000251899 0.000204815 0.0220201 0.0181893 30 3052 40 6.79088e+06 188608 556674. 1926.21 6.51 0.148767 0.129395 24526 138013 -1 2360 25 1111 2725 252832 98316 0 0 252832 98316 2725 1527 0 0 8313 7197 0 0 13716 9429 0 0 2725 1787 0 0 114189 39815 0 0 111164 38561 0 0 2725 0 0 1614 2379 2335 15949 0 0 5.74283 5.74283 -141.786 -5.74283 0 0 706193. 2443.58 0.28 0.09 0.12 -1 -1 0.28 0.0209137 0.0186666 98 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 5.38 vpr 53.65 MiB -1 -1 0.22 17436 13 0.44 -1 -1 32240 -1 -1 21 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 15.0 MiB 1.23 1143 53.7 MiB 0.04 0.00 6.8104 -133.532 -6.8104 6.8104 0.58 0.000180963 0.000147261 0.00964005 0.00807021 38 2974 28 6.79088e+06 282912 678818. 2348.85 1.26 0.0644897 0.0562893 25966 169698 -1 2590 17 1422 4125 211061 48581 0 0 211061 48581 4125 2000 0 0 12685 10944 0 0 20173 13855 0 0 4125 2400 0 0 86444 9421 0 0 83509 9961 0 0 4125 0 0 2703 4155 5236 34391 0 0 6.8104 6.8104 -148.146 -6.8104 0 0 902133. 3121.57 0.28 0.08 0.11 -1 -1 0.28 0.0242907 0.0221772 143 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 6.71 vpr 52.92 MiB -1 -1 0.18 17320 10 0.20 -1 -1 32140 -1 -1 17 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54192 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 14.3 MiB 2.40 854 52.9 MiB 0.05 0.00 5.03782 -105.349 -5.03782 5.03782 0.96 0.000232228 0.000184599 0.0144128 0.0119247 30 2536 42 6.79088e+06 229024 556674. 1926.21 1.17 0.0539378 0.0464661 24526 138013 -1 1979 18 980 2447 126284 30785 0 0 126284 30785 2447 1334 0 0 7866 6676 0 0 11639 8424 0 0 2447 1546 0 0 51137 6231 0 0 50748 6574 0 0 2447 0 0 1467 2118 2162 15286 0 0 5.23803 5.23803 -121.984 -5.23803 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.0106204 0.00968456 101 130 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 16.71 vpr 53.21 MiB -1 -1 0.19 17328 14 0.24 -1 -1 32032 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54488 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 14.8 MiB 3.14 1164 53.2 MiB 0.03 0.00 6.49828 -134.387 -6.49828 6.49828 0.59 0.000142366 0.000114605 0.00785508 0.00662708 30 3396 48 6.79088e+06 242496 556674. 1926.21 10.90 0.14304 0.125849 24526 138013 -1 2581 16 1129 2926 172864 38449 0 0 172864 38449 2926 1724 0 0 9171 7730 0 0 13719 9829 0 0 2926 1944 0 0 71767 8701 0 0 72355 8521 0 0 2926 0 0 1797 3130 2984 20967 0 0 6.87418 6.87418 -157.919 -6.87418 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0146557 0.0135089 110 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 10.06 vpr 53.39 MiB -1 -1 0.19 17736 13 0.38 -1 -1 32276 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54676 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 15.0 MiB 3.29 1262 53.4 MiB 0.07 0.00 6.43445 -135.684 -6.43445 6.43445 1.04 0.000318087 0.000261934 0.0181801 0.0153743 36 3687 49 6.79088e+06 269440 648988. 2245.63 3.16 0.142516 0.127216 25390 158009 -1 2919 20 1492 3934 329805 96629 0 0 329805 96629 3934 2394 0 0 12652 10972 0 0 22825 15140 0 0 3934 2720 0 0 142272 32806 0 0 144188 32597 0 0 3934 0 0 2442 4191 4226 27445 0 0 6.93565 6.93565 -159.759 -6.93565 0 0 828058. 2865.25 0.21 0.07 0.08 -1 -1 0.21 0.0142351 0.0129418 125 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 11.29 vpr 52.90 MiB -1 -1 0.21 17164 12 0.20 -1 -1 32172 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54168 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 14.4 MiB 4.27 996 52.9 MiB 0.08 0.00 5.65673 -125.375 -5.65673 5.65673 0.86 0.00023668 0.000189941 0.0217844 0.0178306 36 2753 49 6.79088e+06 229024 648988. 2245.63 3.72 0.11462 0.0986345 25390 158009 -1 2166 15 971 2417 143304 32566 0 0 143304 32566 2417 1402 0 0 7872 6654 0 0 12941 9167 0 0 2417 1606 0 0 60443 6686 0 0 57214 7051 0 0 2417 0 0 1446 1996 2245 15462 0 0 5.65673 5.65673 -137.333 -5.65673 0 0 828058. 2865.25 0.25 0.03 0.15 -1 -1 0.25 0.0100663 0.00921168 99 132 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 10.64 vpr 53.51 MiB -1 -1 0.23 17512 12 0.24 -1 -1 32264 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 15.0 MiB 2.58 1232 53.5 MiB 0.06 0.00 5.91508 -131.625 -5.91508 5.91508 1.00 0.000329773 0.000267668 0.0165835 0.0138142 38 2945 35 6.79088e+06 242496 678818. 2348.85 4.42 0.162879 0.141443 25966 169698 -1 2606 17 1192 3484 190410 41467 0 0 190410 41467 3484 1734 0 0 10830 9148 0 0 16390 11614 0 0 3484 1982 0 0 77344 8734 0 0 78878 8255 0 0 3484 0 0 2292 4583 4223 30026 0 0 6.16568 6.16568 -147.126 -6.16568 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0249322 0.0228038 130 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 9.93 vpr 53.61 MiB -1 -1 0.22 17740 13 0.42 -1 -1 32164 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54900 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 14.9 MiB 1.33 1271 53.6 MiB 0.04 0.00 6.52941 -139.677 -6.52941 6.52941 0.74 0.000213772 0.000176761 0.00906094 0.00766199 42 3482 32 6.79088e+06 269440 744469. 2576.02 5.12 0.19806 0.173966 26542 182613 -1 2738 15 1203 3463 198401 44689 0 0 198401 44689 3463 1767 0 0 11533 9771 0 0 18904 13480 0 0 3463 2050 0 0 81404 8785 0 0 79634 8836 0 0 3463 0 0 2260 3325 3666 25350 0 0 6.69042 6.69042 -153.183 -6.69042 0 0 949917. 3286.91 0.38 0.08 0.17 -1 -1 0.38 0.0249855 0.0229988 143 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 5.76 vpr 53.15 MiB -1 -1 0.20 17560 11 0.15 -1 -1 31884 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54428 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 14.5 MiB 1.84 926 53.2 MiB 0.04 0.00 5.4461 -120.98 -5.4461 5.4461 0.60 0.000154465 0.000127742 0.00979684 0.00813442 44 2839 39 6.79088e+06 215552 787024. 2723.27 1.43 0.0533054 0.0458066 27118 194962 -1 2183 17 1179 3120 171941 39976 0 0 171941 39976 3120 1677 0 0 9894 8523 0 0 16082 11143 0 0 3120 2044 0 0 67070 8753 0 0 72655 7836 0 0 3120 0 0 1941 2588 2625 18870 0 0 5.5714 5.5714 -134.763 -5.5714 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0111802 0.0102276 106 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 8.90 vpr 53.22 MiB -1 -1 0.20 17432 13 0.22 -1 -1 32104 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54496 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 14.7 MiB 2.35 1159 53.2 MiB 0.08 0.00 6.38062 -142.026 -6.38062 6.38062 0.93 0.000272669 0.000219947 0.0211272 0.0174006 36 3282 49 6.79088e+06 202080 648988. 2245.63 3.47 0.137307 0.12028 25390 158009 -1 2665 19 1261 3415 219763 48515 0 0 219763 48515 3415 1955 0 0 11207 9786 0 0 19167 13061 0 0 3415 2204 0 0 91571 10825 0 0 90988 10684 0 0 3415 0 0 2154 3509 3728 24310 0 0 6.63122 6.63122 -160.793 -6.63122 0 0 828058. 2865.25 0.31 0.08 0.09 -1 -1 0.31 0.0223169 0.0201576 113 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 24.51 vpr 53.58 MiB -1 -1 0.22 17436 13 0.29 -1 -1 32300 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 15.1 MiB 1.50 1339 53.6 MiB 0.07 0.00 6.40869 -143.558 -6.40869 6.40869 1.02 0.000338652 0.000277442 0.0185437 0.0156056 36 3941 38 6.79088e+06 255968 648988. 2245.63 19.14 0.22805 0.199483 25390 158009 -1 3262 18 1589 4253 298036 64211 0 0 298036 64211 4253 2530 0 0 14076 12061 0 0 23469 16660 0 0 4253 2887 0 0 123077 15679 0 0 128908 14394 0 0 4253 0 0 2664 4722 4868 30043 0 0 6.69494 6.69494 -166.462 -6.69494 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0276072 0.0252092 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 9.12 vpr 53.32 MiB -1 -1 0.20 17432 11 0.23 -1 -1 32264 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 14.7 MiB 1.81 1099 53.3 MiB 0.05 0.00 5.25814 -109.588 -5.25814 5.25814 0.65 0.000173473 0.000139705 0.0144243 0.0119392 36 2997 34 6.79088e+06 255968 648988. 2245.63 4.34 0.110945 0.0974448 25390 158009 -1 2627 22 1211 3685 332185 100913 0 0 332185 100913 3685 1938 0 0 12126 10557 0 0 22356 14871 0 0 3685 2273 0 0 144971 36553 0 0 145362 34721 0 0 3685 0 0 2474 5053 5440 33620 0 0 5.57478 5.57478 -128.323 -5.57478 0 0 828058. 2865.25 0.30 0.11 0.14 -1 -1 0.30 0.0253815 0.0231658 116 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 12.89 vpr 53.72 MiB -1 -1 0.26 18004 14 0.43 -1 -1 32220 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 15.2 MiB 1.99 1286 53.7 MiB 0.12 0.00 7.31171 -155.874 -7.31171 7.31171 1.02 0.000410373 0.000326297 0.0345962 0.0284828 36 4122 44 6.79088e+06 309856 648988. 2245.63 6.78 0.205006 0.179535 25390 158009 -1 2916 20 1626 4183 244257 61182 0 0 244257 61182 4183 2340 0 0 13588 11342 0 0 22016 15678 0 0 4183 2700 0 0 98793 14844 0 0 101494 14278 0 0 4183 0 0 2557 4043 4301 28168 0 0 7.59796 7.59796 -176.516 -7.59796 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.0293789 0.0266662 159 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 8.49 vpr 53.20 MiB -1 -1 0.16 17208 12 0.20 -1 -1 32084 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 14.5 MiB 2.73 1128 53.2 MiB 0.05 0.00 5.48879 -127.91 -5.48879 5.48879 0.71 0.000246286 0.000200605 0.013203 0.0110858 44 2685 27 6.79088e+06 255968 787024. 2723.27 3.09 0.0934128 0.0816102 27118 194962 -1 2270 16 982 2279 133946 29926 0 0 133946 29926 2279 1283 0 0 7430 6330 0 0 11636 8413 0 0 2279 1479 0 0 55351 6222 0 0 54971 6199 0 0 2279 0 0 1297 1697 1842 12733 0 0 5.73939 5.73939 -142.961 -5.73939 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0130279 0.0119393 106 129 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 10.04 vpr 53.59 MiB -1 -1 0.23 17772 13 0.40 -1 -1 32572 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54872 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 15.0 MiB 1.84 1264 53.6 MiB 0.04 0.00 6.66283 -138.869 -6.66283 6.66283 0.60 0.00017548 0.000142919 0.00916904 0.00772825 44 3230 18 6.79088e+06 269440 787024. 2723.27 4.95 0.215358 0.192046 27118 194962 -1 2660 17 1261 3602 191441 43885 0 0 191441 43885 3602 1782 0 0 11159 9522 0 0 18288 12774 0 0 3602 2103 0 0 74644 9452 0 0 80146 8252 0 0 3602 0 0 2341 4433 3903 27689 0 0 7.03873 7.03873 -158.456 -7.03873 0 0 997811. 3452.63 0.25 0.04 0.15 -1 -1 0.25 0.0141648 0.0130123 136 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 7.11 vpr 53.11 MiB -1 -1 0.13 17432 13 0.22 -1 -1 31948 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54384 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 14.7 MiB 1.47 977 53.1 MiB 0.03 0.00 6.33716 -137.986 -6.33716 6.33716 0.66 0.000144704 0.000117886 0.00766931 0.00645305 34 3050 46 6.79088e+06 269440 618332. 2139.56 2.51 0.0838179 0.0726199 25102 150614 -1 2514 18 1138 3008 226288 58719 0 0 226288 58719 3008 1826 0 0 10005 8528 0 0 17297 11906 0 0 3008 2102 0 0 95914 17356 0 0 97056 17001 0 0 3008 0 0 1870 2715 2820 18631 0 0 7.03857 7.03857 -161.542 -7.03857 0 0 787024. 2723.27 0.33 0.08 0.14 -1 -1 0.33 0.0202535 0.0184834 107 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 9.80 vpr 53.47 MiB -1 -1 0.25 17332 12 0.27 -1 -1 32264 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54756 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 14.9 MiB 2.00 1206 53.5 MiB 0.07 0.00 6.24757 -137.536 -6.24757 6.24757 0.95 0.000336236 0.000274738 0.0206917 0.0171466 36 3210 20 6.79088e+06 255968 648988. 2245.63 4.44 0.15961 0.137814 25390 158009 -1 2728 17 1211 3515 214196 47185 0 0 214196 47185 3515 1821 0 0 11329 9670 0 0 18778 13143 0 0 3515 2126 0 0 88912 10195 0 0 88147 10230 0 0 3515 0 0 2304 3966 4231 28372 0 0 6.49817 6.49817 -154.322 -6.49817 0 0 828058. 2865.25 0.22 0.06 0.09 -1 -1 0.22 0.0177823 0.0162253 128 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 12.38 vpr 54.00 MiB -1 -1 0.15 18000 15 0.45 -1 -1 32668 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55300 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 15.5 MiB 1.28 1562 54.0 MiB 0.14 0.00 7.76601 -164.429 -7.76601 7.76601 0.99 0.000491517 0.000400771 0.0445374 0.0372339 44 4132 38 6.79088e+06 336800 787024. 2723.27 6.99 0.363436 0.320505 27118 194962 -1 3369 18 1704 5221 286615 63516 0 0 286615 63516 5221 2352 0 0 16381 14107 0 0 27594 18836 0 0 5221 2966 0 0 118141 12370 0 0 114057 12885 0 0 5221 0 0 3517 6210 6024 43980 0 0 8.14191 8.14191 -183.004 -8.14191 0 0 997811. 3452.63 0.40 0.11 0.18 -1 -1 0.40 0.037334 0.0342682 183 255 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 7.29 vpr 52.70 MiB -1 -1 0.17 17048 10 0.11 -1 -1 31940 -1 -1 12 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53968 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 14.3 MiB 1.61 870 52.7 MiB 0.02 0.00 4.08102 -101.845 -4.08102 4.08102 0.59 9.7717e-05 7.7843e-05 0.00563661 0.00467344 54 1697 15 6.79088e+06 161664 949917. 3286.91 3.02 0.0522435 0.0449421 28846 232421 -1 1566 13 634 1522 86052 18809 0 0 86052 18809 1522 880 0 0 4727 4038 0 0 8043 5259 0 0 1522 1029 0 0 36310 3706 0 0 33928 3897 0 0 1522 0 0 888 809 946 7819 0 0 4.21746 4.21746 -112.927 -4.21746 0 0 1.17392e+06 4061.99 0.44 0.04 0.18 -1 -1 0.44 0.0107711 0.0098805 66 81 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 5.52 vpr 53.18 MiB -1 -1 0.21 17364 13 0.22 -1 -1 32052 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54456 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 14.7 MiB 1.80 1030 53.2 MiB 0.03 0.00 6.33378 -132.688 -6.33378 6.33378 0.59 0.000140415 0.000113489 0.00904918 0.007568 30 3160 26 6.79088e+06 229024 556674. 1926.21 1.08 0.0491127 0.0427748 24526 138013 -1 2477 20 1185 2964 162940 37929 0 0 162940 37929 2964 1799 0 0 9182 7948 0 0 13882 9752 0 0 2964 2023 0 0 66296 8356 0 0 67652 8051 0 0 2964 0 0 1779 2035 2160 16364 0 0 6.59551 6.59551 -155.217 -6.59551 0 0 706193. 2443.58 0.19 0.04 0.07 -1 -1 0.19 0.0116615 0.0106206 103 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 10.47 vpr 53.52 MiB -1 -1 0.18 17360 12 0.27 -1 -1 32072 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 14.9 MiB 2.44 1184 53.5 MiB 0.10 0.00 5.75407 -133.443 -5.75407 5.75407 1.03 0.000307657 0.00025005 0.0263175 0.0218722 38 3012 23 6.79088e+06 242496 678818. 2348.85 4.45 0.174393 0.151046 25966 169698 -1 2505 17 1217 3032 168202 36995 0 0 168202 36995 3032 1603 0 0 9375 7982 0 0 14456 10060 0 0 3032 1884 0 0 68813 8032 0 0 69494 7434 0 0 3032 0 0 1815 2503 2602 19264 0 0 6.11873 6.11873 -152.475 -6.11873 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0241896 0.0222328 117 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 7.70 vpr 52.79 MiB -1 -1 0.18 17268 9 0.16 -1 -1 31936 -1 -1 18 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54052 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 14.2 MiB 0.89 768 52.8 MiB 0.06 0.00 4.27129 -84.6952 -4.27129 4.27129 0.85 0.000232811 0.00018803 0.0152475 0.0124566 34 2188 21 6.79088e+06 242496 618332. 2139.56 3.63 0.117702 0.102214 25102 150614 -1 1808 20 827 2321 147853 32821 0 0 147853 32821 2321 1275 0 0 7513 6444 0 0 13218 8758 0 0 2321 1512 0 0 60173 7742 0 0 62307 7090 0 0 2321 0 0 1494 2294 2221 16326 0 0 4.64719 4.64719 -103.333 -4.64719 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0169168 0.0153158 86 102 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 10.98 vpr 53.57 MiB -1 -1 0.24 17428 12 0.35 -1 -1 32216 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 15.0 MiB 2.00 1467 53.6 MiB 0.09 0.00 6.04387 -139.628 -6.04387 6.04387 1.03 0.000356817 0.000286127 0.024841 0.020686 40 3581 28 6.79088e+06 282912 706193. 2443.58 4.81 0.156421 0.136434 26254 175826 -1 3409 29 2206 6596 718347 209034 0 0 718347 209034 6596 3734 0 0 20727 17948 0 0 41905 24995 0 0 6596 4439 0 0 319171 77959 0 0 323352 79959 0 0 6596 0 0 4390 8134 8448 49572 0 0 6.41977 6.41977 -159.619 -6.41977 0 0 926341. 3205.33 0.36 0.24 0.17 -1 -1 0.36 0.0434933 0.0395466 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 8.69 vpr 53.72 MiB -1 -1 0.18 17848 13 0.41 -1 -1 32088 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55008 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 15.0 MiB 2.47 1300 53.7 MiB 0.08 0.00 6.7166 -142.57 -6.7166 6.7166 1.00 0.000332532 0.000269181 0.0232821 0.0193158 38 3741 21 6.79088e+06 296384 678818. 2348.85 2.50 0.115711 0.10142 25966 169698 -1 2833 20 1335 3899 206249 46207 0 0 206249 46207 3899 2077 0 0 11978 10293 0 0 18406 12935 0 0 3899 2471 0 0 83281 9413 0 0 84786 9018 0 0 3899 0 0 2564 4187 4255 28875 0 0 7.4684 7.4684 -167.008 -7.4684 0 0 902133. 3121.57 0.24 0.05 0.10 -1 -1 0.24 0.0173533 0.0158092 147 197 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.98 vpr 53.57 MiB -1 -1 0.15 17676 1 0.01 -1 -1 29708 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54860 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 15.0 MiB 3.80 1196 53.6 MiB 0.14 0.00 4.31702 -132.558 -4.31702 4.31702 1.02 0.000240273 0.000196324 0.0230828 0.0190909 34 2836 23 6.87369e+06 363320 618332. 2139.56 1.69 0.0943287 0.0810323 25762 151098 -1 2411 22 1769 2826 197744 46966 0 0 197744 46966 2826 2229 0 0 10992 9651 0 0 16816 13320 0 0 2826 2375 0 0 81727 9983 0 0 82557 9408 0 0 2826 0 0 1057 1282 1261 9544 0 0 4.8072 4.8072 -158.615 -4.8072 0 0 787024. 2723.27 0.33 0.07 0.13 -1 -1 0.33 0.0181933 0.0161652 142 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 9.97 vpr 53.66 MiB -1 -1 0.17 17464 1 0.01 -1 -1 29760 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 15.1 MiB 3.16 1007 53.7 MiB 0.12 0.00 3.52915 -113.661 -3.52915 3.52915 1.02 0.000235754 0.000189578 0.0228158 0.0186341 34 2425 23 6.87369e+06 335372 618332. 2139.56 3.28 0.137896 0.117733 25762 151098 -1 2050 24 1950 2917 225523 51780 0 0 225523 51780 2917 2296 0 0 11355 10297 0 0 17690 14254 0 0 2917 2443 0 0 99259 10453 0 0 91385 12037 0 0 2917 0 0 967 1009 877 7704 0 0 4.19936 4.19936 -139.069 -4.19936 0 0 787024. 2723.27 0.33 0.08 0.14 -1 -1 0.33 0.0186459 0.0165131 138 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.29 vpr 53.54 MiB -1 -1 0.16 17492 1 0.02 -1 -1 29724 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54820 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 14.9 MiB 3.27 1057 53.5 MiB 0.09 0.00 3.45035 -100.15 -3.45035 3.45035 0.99 0.000219444 0.00016924 0.0145377 0.0118765 34 2632 23 6.87369e+06 293451 618332. 2139.56 1.58 0.078554 0.0667898 25762 151098 -1 2121 21 1350 1842 141894 33324 0 0 141894 33324 1842 1595 0 0 7107 6239 0 0 10944 8877 0 0 1842 1645 0 0 58490 7547 0 0 61669 7421 0 0 1842 0 0 492 452 553 4473 0 0 3.88496 3.88496 -124.916 -3.88496 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0139488 0.0123398 124 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.83 vpr 53.46 MiB -1 -1 0.17 17444 1 0.02 -1 -1 29824 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 14.8 MiB 1.32 887 53.5 MiB 0.06 0.00 3.67912 -102.014 -3.67912 3.67912 0.76 0.000141598 0.000109041 0.00944146 0.00776788 30 2186 29 6.87369e+06 405241 556674. 1926.21 2.43 0.0691323 0.0588769 25186 138497 -1 1738 24 1285 2426 130694 35084 0 0 130694 35084 2426 1632 0 0 8289 6787 0 0 11195 8929 0 0 2426 1755 0 0 54304 8070 0 0 52054 7911 0 0 2426 0 0 1141 1601 1437 10131 0 0 3.6401 3.6401 -116.359 -3.6401 0 0 706193. 2443.58 0.31 0.06 0.13 -1 -1 0.31 0.016448 0.0145731 124 25 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 9.49 vpr 53.67 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29752 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 15.2 MiB 1.36 1035 53.7 MiB 0.05 0.00 3.67112 -112.923 -3.67112 3.67112 0.69 0.000123289 9.5915e-05 0.00693761 0.00563017 28 3168 36 6.87369e+06 377294 531479. 1839.03 5.70 0.0870034 0.0756386 24610 126494 -1 2493 22 1820 3513 280343 65303 0 0 280343 65303 3513 2704 0 0 13340 11946 0 0 21357 17048 0 0 3513 2939 0 0 119083 15123 0 0 119537 15543 0 0 3513 0 0 1693 2137 2028 14341 0 0 4.044 4.044 -142.888 -4.044 0 0 648988. 2245.63 0.19 0.08 0.07 -1 -1 0.19 0.0157036 0.0138482 131 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.69 vpr 53.66 MiB -1 -1 0.14 17352 1 0.02 -1 -1 29712 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 15.1 MiB 1.18 885 53.7 MiB 0.07 0.01 2.67957 -91.7986 -2.67957 2.67957 0.67 0.000266883 0.000221185 0.0100468 0.00832933 30 2334 24 6.87369e+06 419215 556674. 1926.21 1.76 0.0631001 0.0536137 25186 138497 -1 1827 19 1152 1981 111091 26888 0 0 111091 26888 1981 1470 0 0 6898 5633 0 0 8933 7401 0 0 1981 1582 0 0 44468 5729 0 0 46830 5073 0 0 1981 0 0 829 1047 1037 7460 0 0 2.98531 2.98531 -114.721 -2.98531 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0161131 0.0143442 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.47 vpr 53.17 MiB -1 -1 0.09 17200 1 0.02 -1 -1 29944 -1 -1 19 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54444 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 14.6 MiB 2.92 644 53.2 MiB 0.06 0.00 2.94598 -82.9381 -2.94598 2.94598 1.05 0.000182832 0.000150791 0.0104456 0.00873671 34 1568 23 6.87369e+06 265503 618332. 2139.56 1.49 0.0630427 0.0539467 25762 151098 -1 1273 22 1013 1785 102220 26080 0 0 102220 26080 1785 1220 0 0 6405 5392 0 0 10016 7685 0 0 1785 1297 0 0 40726 5304 0 0 41503 5182 0 0 1785 0 0 772 810 768 6065 0 0 2.78296 2.78296 -96.9039 -2.78296 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.0070553 0.00619282 97 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.67 vpr 53.36 MiB -1 -1 0.16 16908 1 0.01 -1 -1 29608 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54636 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 14.8 MiB 1.12 939 53.4 MiB 0.06 0.00 2.74825 -87.2004 -2.74825 2.74825 0.73 0.0001054 8.4176e-05 0.0093945 0.007605 28 2170 20 6.87369e+06 447163 531479. 1839.03 2.74 0.0786996 0.0670696 24610 126494 -1 2000 21 1132 1930 162666 35319 0 0 162666 35319 1930 1398 0 0 7204 6100 0 0 10674 8561 0 0 1930 1502 0 0 69827 8879 0 0 71101 8879 0 0 1930 0 0 798 1230 1397 8735 0 0 2.82696 2.82696 -103.211 -2.82696 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0121021 0.0106145 119 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.51 vpr 53.37 MiB -1 -1 0.12 17488 1 0.01 -1 -1 29664 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54652 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 14.7 MiB 2.10 831 53.4 MiB 0.06 0.00 2.65757 -90.8649 -2.65757 2.65757 0.65 0.000194055 0.000156642 0.011581 0.00943751 34 2436 23 6.87369e+06 237555 618332. 2139.56 1.05 0.0461375 0.0386544 25762 151098 -1 1895 21 1361 2018 165155 38038 0 0 165155 38038 2018 1717 0 0 7808 6733 0 0 11358 9189 0 0 2018 1762 0 0 68735 9407 0 0 73218 9230 0 0 2018 0 0 657 695 678 5362 0 0 3.2788 3.2788 -119.877 -3.2788 0 0 787024. 2723.27 0.25 0.06 0.08 -1 -1 0.25 0.0132346 0.0116214 113 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.28 vpr 53.27 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29676 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54548 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 14.8 MiB 4.66 966 53.3 MiB 0.09 0.00 3.21683 -112.158 -3.21683 3.21683 0.98 0.000218875 0.000178957 0.0152955 0.0125913 34 2169 20 6.87369e+06 223581 618332. 2139.56 1.55 0.0764159 0.0651452 25762 151098 -1 1819 17 1125 1912 142300 33242 0 0 142300 33242 1912 1541 0 0 7472 6685 0 0 11085 9076 0 0 1912 1601 0 0 58849 7351 0 0 61070 6988 0 0 1912 0 0 787 1143 1063 7155 0 0 3.05561 3.05561 -121.882 -3.05561 0 0 787024. 2723.27 0.32 0.06 0.12 -1 -1 0.32 0.0136885 0.0123117 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.64 vpr 53.55 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29764 -1 -1 16 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54836 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 14.9 MiB 3.90 859 53.6 MiB 0.08 0.00 3.16363 -98.9035 -3.16363 3.16363 0.93 0.000190954 0.000147918 0.0150275 0.012286 34 1780 27 6.87369e+06 223581 618332. 2139.56 1.49 0.0763121 0.0647493 25762 151098 -1 1562 21 976 1565 116025 27217 0 0 116025 27217 1565 1240 0 0 5953 5378 0 0 9382 7503 0 0 1565 1267 0 0 49878 5571 0 0 47682 6258 0 0 1565 0 0 589 528 693 5031 0 0 2.84066 2.84066 -104.333 -2.84066 0 0 787024. 2723.27 0.29 0.05 0.14 -1 -1 0.29 0.0130668 0.011465 98 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 7.28 vpr 53.37 MiB -1 -1 0.14 17504 1 0.01 -1 -1 29764 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 14.9 MiB 2.50 858 53.4 MiB 0.07 0.00 2.8828 -94.5981 -2.8828 2.8828 0.82 0.000187827 0.000150781 0.0127875 0.0104405 34 2386 33 6.87369e+06 237555 618332. 2139.56 1.65 0.0769347 0.0654257 25762 151098 -1 1914 17 1095 1514 114099 26684 0 0 114099 26684 1514 1305 0 0 5828 5086 0 0 8483 6848 0 0 1514 1337 0 0 46382 6553 0 0 50378 5555 0 0 1514 0 0 419 450 459 3714 0 0 3.22811 3.22811 -116.491 -3.22811 0 0 787024. 2723.27 0.33 0.05 0.14 -1 -1 0.33 0.0125693 0.0112853 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.51 vpr 53.73 MiB -1 -1 0.14 17464 1 0.02 -1 -1 29628 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55024 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 15.2 MiB 4.26 1108 53.7 MiB 0.12 0.00 3.24063 -110.328 -3.24063 3.24063 1.06 0.000245002 0.000198795 0.0209491 0.0171815 34 2851 21 6.87369e+06 321398 618332. 2139.56 1.77 0.10649 0.0919282 25762 151098 -1 2321 22 1909 2908 227076 52231 0 0 227076 52231 2908 2429 0 0 11381 10277 0 0 17675 14277 0 0 2908 2489 0 0 98504 10977 0 0 93700 11782 0 0 2908 0 0 999 1140 1028 8073 0 0 3.36121 3.36121 -126.872 -3.36121 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0146853 0.0128774 142 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 8.19 vpr 53.66 MiB -1 -1 0.16 17348 1 0.01 -1 -1 29712 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 15.1 MiB 2.42 1081 53.7 MiB 0.05 0.00 3.75618 -117.057 -3.75618 3.75618 0.59 0.000124439 9.9485e-05 0.00760515 0.00621915 34 2430 22 6.87369e+06 433189 618332. 2139.56 3.30 0.0925979 0.0792548 25762 151098 -1 2110 21 1498 2341 155166 36477 0 0 155166 36477 2341 1759 0 0 8784 7469 0 0 12645 10056 0 0 2341 1936 0 0 63329 7961 0 0 65726 7296 0 0 2341 0 0 843 935 1031 7390 0 0 4.01576 4.01576 -140.57 -4.01576 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0155013 0.0137019 133 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.90 vpr 53.12 MiB -1 -1 0.11 17092 1 0.01 -1 -1 29788 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 14.5 MiB 1.98 788 53.1 MiB 0.07 0.00 2.63557 -83.7152 -2.63557 2.63557 1.00 0.000174988 0.000141249 0.0133751 0.0110272 32 1923 24 6.87369e+06 265503 586450. 2029.24 0.96 0.045935 0.0389099 25474 144626 -1 1676 20 1030 1625 125138 29465 0 0 125138 29465 1625 1240 0 0 6443 5814 0 0 10903 8463 0 0 1625 1278 0 0 52970 6263 0 0 51572 6407 0 0 1625 0 0 595 564 529 4685 0 0 2.81601 2.81601 -98.7462 -2.81601 0 0 744469. 2576.02 0.28 0.04 0.13 -1 -1 0.28 0.0104407 0.00918311 94 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 9.24 vpr 53.75 MiB -1 -1 0.17 17572 1 0.01 -1 -1 29652 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55036 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 15.2 MiB 2.53 1033 53.7 MiB 0.08 0.00 2.9366 -101.132 -2.9366 2.9366 0.95 0.000228639 0.000183779 0.0140414 0.0114638 28 2787 24 6.87369e+06 335372 531479. 1839.03 3.46 0.130635 0.112659 24610 126494 -1 2384 21 1713 2878 212944 50089 0 0 212944 50089 2878 2327 0 0 10707 9476 0 0 16116 12959 0 0 2878 2419 0 0 89084 11635 0 0 91281 11273 0 0 2878 0 0 1165 1511 1826 10726 0 0 3.57881 3.57881 -128.291 -3.57881 0 0 648988. 2245.63 0.27 0.08 0.12 -1 -1 0.27 0.0169909 0.0149798 135 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.73 vpr 53.67 MiB -1 -1 0.17 17536 1 0.01 -1 -1 29688 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 15.1 MiB 4.15 1104 53.7 MiB 0.06 0.00 3.24063 -109.974 -3.24063 3.24063 0.60 0.000121674 9.7671e-05 0.0104278 0.00859518 34 3012 22 6.87369e+06 293451 618332. 2139.56 1.07 0.0499356 0.0421126 25762 151098 -1 2469 22 1761 2535 207071 46348 0 0 207071 46348 2535 2283 0 0 9538 8258 0 0 14599 11600 0 0 2535 2376 0 0 88517 11260 0 0 89347 10571 0 0 2535 0 0 774 842 821 6520 0 0 3.11331 3.11331 -125.237 -3.11331 0 0 787024. 2723.27 0.32 0.08 0.13 -1 -1 0.32 0.0190977 0.0171095 140 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.24 vpr 53.58 MiB -1 -1 0.13 17276 1 0.01 -1 -1 29784 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 14.9 MiB 2.88 790 53.6 MiB 0.12 0.00 2.46506 -91.9901 -2.46506 2.46506 1.05 0.000213143 0.000171613 0.0195347 0.0159158 30 1883 21 6.87369e+06 391268 556674. 1926.21 1.00 0.0599545 0.0496222 25186 138497 -1 1578 21 1093 1728 102072 24593 0 0 102072 24593 1728 1216 0 0 6037 5094 0 0 8482 6798 0 0 1728 1357 0 0 45128 4658 0 0 38969 5470 0 0 1728 0 0 635 857 934 6330 0 0 2.06257 2.06257 -97.9399 -2.06257 0 0 706193. 2443.58 0.30 0.05 0.13 -1 -1 0.30 0.0141166 0.0124452 109 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 6.65 vpr 52.93 MiB -1 -1 0.14 17184 1 0.00 -1 -1 29632 -1 -1 14 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54204 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 14.3 MiB 0.72 475 52.9 MiB 0.06 0.00 2.12623 -69.7841 -2.12623 2.12623 1.02 0.000169395 0.000138794 0.0114953 0.00944125 28 1541 24 6.87369e+06 195634 531479. 1839.03 2.86 0.0781123 0.066181 24610 126494 -1 1218 16 671 894 86837 25251 0 0 86837 25251 894 806 0 0 3581 3141 0 0 5186 4287 0 0 894 835 0 0 37537 7750 0 0 38745 8432 0 0 894 0 0 223 158 277 2086 0 0 2.18937 2.18937 -88.7596 -2.18937 0 0 648988. 2245.63 0.19 0.02 0.08 -1 -1 0.19 0.00546973 0.00484513 71 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 9.16 vpr 53.30 MiB -1 -1 0.17 17560 1 0.01 -1 -1 29760 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 14.7 MiB 3.12 787 53.3 MiB 0.09 0.00 4.06013 -119.969 -4.06013 4.06013 0.91 0.000205532 0.000165977 0.0157312 0.0129042 34 2123 22 6.87369e+06 265503 618332. 2139.56 3.22 0.107804 0.0918212 25762 151098 -1 1705 20 1247 1756 105004 28469 0 0 105004 28469 1756 1489 0 0 6596 5654 0 0 9957 8090 0 0 1756 1519 0 0 42651 5939 0 0 42288 5778 0 0 1756 0 0 509 551 520 4434 0 0 3.81546 3.81546 -136.584 -3.81546 0 0 787024. 2723.27 0.26 0.04 0.08 -1 -1 0.26 0.0108537 0.00965634 116 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 8.61 vpr 53.65 MiB -1 -1 0.16 17348 1 0.01 -1 -1 29760 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54940 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 15.1 MiB 1.09 994 53.7 MiB 0.05 0.00 3.35799 -110.68 -3.35799 3.35799 0.74 0.0001257 9.9919e-05 0.00773867 0.0062083 26 2917 50 6.87369e+06 489084 503264. 1741.40 4.54 0.124108 0.106874 24322 120374 -1 2350 22 1692 2521 242534 55412 0 0 242534 55412 2521 2025 0 0 9319 7702 0 0 14130 11008 0 0 2521 2167 0 0 104311 16868 0 0 109732 15642 0 0 2521 0 0 829 1112 1080 8314 0 0 3.8034 3.8034 -142.322 -3.8034 0 0 618332. 2139.56 0.27 0.08 0.11 -1 -1 0.27 0.0176826 0.0156327 137 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.30 vpr 53.55 MiB -1 -1 0.17 17764 1 0.02 -1 -1 29660 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 14.9 MiB 2.63 1048 53.6 MiB 0.09 0.00 3.42215 -107.66 -3.42215 3.42215 1.01 0.000243378 0.000198234 0.0156426 0.0129111 34 3035 24 6.87369e+06 307425 618332. 2139.56 2.20 0.0951689 0.0810995 25762 151098 -1 2357 19 1575 2526 196554 46882 0 0 196554 46882 2526 2060 0 0 9941 8876 0 0 15137 12278 0 0 2526 2136 0 0 81596 10778 0 0 84828 10754 0 0 2526 0 0 951 1244 1203 8422 0 0 3.77146 3.77146 -132.635 -3.77146 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0165622 0.0147109 142 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.91 vpr 52.76 MiB -1 -1 0.08 17196 1 0.01 -1 -1 29784 -1 -1 17 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54028 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 14.2 MiB 2.22 423 52.8 MiB 0.03 0.00 2.06503 -58.2832 -2.06503 2.06503 1.02 8.0825e-05 6.4149e-05 0.00610816 0.00502904 30 1163 25 6.87369e+06 237555 556674. 1926.21 0.58 0.0215504 0.0180568 25186 138497 -1 850 14 488 683 34714 9693 0 0 34714 9693 683 531 0 0 2534 2047 0 0 3024 2669 0 0 683 557 0 0 13883 1980 0 0 13907 1909 0 0 683 0 0 195 118 180 1672 0 0 2.04382 2.04382 -69.4058 -2.04382 0 0 706193. 2443.58 0.30 0.03 0.12 -1 -1 0.30 0.00801111 0.00722317 67 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.11 vpr 53.31 MiB -1 -1 0.13 17224 1 0.02 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 14.7 MiB 1.18 890 53.3 MiB 0.06 0.00 3.58982 -103.708 -3.58982 3.58982 0.59 0.000106309 8.4539e-05 0.00862075 0.00701227 34 2428 27 6.87369e+06 321398 618332. 2139.56 2.49 0.0846452 0.0721574 25762 151098 -1 1874 22 1457 2561 175350 42552 0 0 175350 42552 2561 1957 0 0 9940 8852 0 0 14590 11640 0 0 2561 2085 0 0 72365 9252 0 0 73333 8766 0 0 2561 0 0 1104 1466 1452 9831 0 0 4.069 4.069 -125.937 -4.069 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.01371 0.012053 119 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.32 vpr 52.64 MiB -1 -1 0.14 16648 1 0.01 -1 -1 29616 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53900 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 14.2 MiB 0.52 477 52.6 MiB 0.03 0.00 2.08703 -64.2189 -2.08703 2.08703 0.59 7.3936e-05 5.8466e-05 0.0049868 0.00404983 30 1239 23 6.87369e+06 167686 556674. 1926.21 0.53 0.0185811 0.0156015 25186 138497 -1 895 18 564 681 39534 10893 0 0 39534 10893 681 582 0 0 2576 2195 0 0 3403 2925 0 0 681 601 0 0 15749 2280 0 0 16444 2310 0 0 681 0 0 117 39 165 1236 0 0 1.93582 1.93582 -72.1127 -1.93582 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00482728 0.00429974 65 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 6.61 vpr 53.48 MiB -1 -1 0.15 17648 1 0.01 -1 -1 29636 -1 -1 30 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54760 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 14.9 MiB 0.94 947 53.5 MiB 0.12 0.00 3.64182 -106.107 -3.64182 3.64182 0.77 0.000223978 0.000184422 0.0181895 0.0150133 28 2198 17 6.87369e+06 419215 531479. 1839.03 2.89 0.0968468 0.0828304 24610 126494 -1 1937 21 1298 2077 147990 34782 0 0 147990 34782 2077 1631 0 0 7737 6522 0 0 11814 9442 0 0 2077 1693 0 0 61963 7993 0 0 62322 7501 0 0 2077 0 0 779 1027 980 7177 0 0 3.7734 3.7734 -124.355 -3.7734 0 0 648988. 2245.63 0.20 0.06 0.06 -1 -1 0.20 0.0145012 0.0126864 120 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 6.88 vpr 53.49 MiB -1 -1 0.15 17324 1 0.02 -1 -1 29760 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.8 MiB 0.76 876 53.5 MiB 0.12 0.00 2.74825 -85.6769 -2.74825 2.74825 1.04 0.000201977 0.000164731 0.0181482 0.0149151 34 2141 21 6.87369e+06 433189 618332. 2139.56 2.96 0.112416 0.0959554 25762 151098 -1 1744 19 1104 1899 113431 28375 0 0 113431 28375 1899 1307 0 0 7156 5957 0 0 10313 8333 0 0 1899 1471 0 0 46009 5619 0 0 46155 5688 0 0 1899 0 0 795 1036 1203 7713 0 0 2.88526 2.88526 -101.782 -2.88526 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0129365 0.0114222 130 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.19 vpr 53.61 MiB -1 -1 0.15 17448 1 0.01 -1 -1 29736 -1 -1 28 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54896 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 15.0 MiB 2.18 1077 53.6 MiB 0.08 0.00 3.71518 -112.424 -3.71518 3.71518 0.81 0.000127184 0.000103394 0.0122897 0.0101236 34 2601 36 6.87369e+06 391268 618332. 2139.56 1.10 0.0537304 0.0452314 25762 151098 -1 2207 21 1562 2700 177740 42562 0 0 177740 42562 2700 2039 0 0 10285 8909 0 0 15706 12412 0 0 2700 2201 0 0 72066 8767 0 0 74283 8234 0 0 2700 0 0 1138 1313 1440 9943 0 0 4.17236 4.17236 -135.706 -4.17236 0 0 787024. 2723.27 0.22 0.04 0.13 -1 -1 0.22 0.00873504 0.00771172 131 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.67 vpr 53.26 MiB -1 -1 0.16 17284 1 0.02 -1 -1 29836 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 14.9 MiB 1.07 868 53.3 MiB 0.09 0.00 2.61357 -92.8666 -2.61357 2.61357 1.04 0.000210116 0.000169973 0.0168009 0.0137372 34 2032 19 6.87369e+06 223581 618332. 2139.56 1.50 0.0738791 0.0624521 25762 151098 -1 1728 20 933 1526 119979 27372 0 0 119979 27372 1526 1231 0 0 5772 4941 0 0 8888 6957 0 0 1526 1296 0 0 49192 7027 0 0 53075 5920 0 0 1526 0 0 593 584 622 4811 0 0 3.15311 3.15311 -113.243 -3.15311 0 0 787024. 2723.27 0.20 0.03 0.10 -1 -1 0.20 0.00732683 0.00645764 99 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.31 vpr 53.18 MiB -1 -1 0.13 17536 1 0.01 -1 -1 29736 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 14.6 MiB 1.47 846 53.2 MiB 0.05 0.00 2.60257 -86.5007 -2.60257 2.60257 0.70 9.7754e-05 7.7293e-05 0.00818487 0.00662829 30 1782 20 6.87369e+06 363320 556674. 1926.21 1.25 0.0412466 0.0345367 25186 138497 -1 1473 18 723 1184 73421 17039 0 0 73421 17039 1184 857 0 0 4161 3472 0 0 5638 4600 0 0 1184 937 0 0 31124 3642 0 0 30130 3531 0 0 1184 0 0 461 349 483 3775 0 0 2.67966 2.67966 -98.6208 -2.67966 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00635128 0.00562744 97 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.58 vpr 53.16 MiB -1 -1 0.16 17232 1 0.01 -1 -1 29584 -1 -1 18 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54436 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 14.6 MiB 1.22 746 53.2 MiB 0.08 0.00 2.8296 -83.801 -2.8296 2.8296 1.02 0.000190509 0.000155559 0.0154929 0.0128318 32 2070 30 6.87369e+06 251529 586450. 2029.24 1.13 0.0532725 0.0453192 25474 144626 -1 1780 21 1152 2060 238301 59693 0 0 238301 59693 2060 1592 0 0 8043 7218 0 0 15094 11334 0 0 2060 1644 0 0 107894 18416 0 0 103150 19489 0 0 2060 0 0 908 1278 1136 7846 0 0 3.08856 3.08856 -105.869 -3.08856 0 0 744469. 2576.02 0.27 0.04 0.13 -1 -1 0.27 0.00694424 0.00610978 95 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 7.57 vpr 53.21 MiB -1 -1 0.15 17024 1 0.01 -1 -1 29688 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54484 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 14.5 MiB 0.98 756 53.2 MiB 0.08 0.00 3.07863 -94.6549 -3.07863 3.07863 1.02 0.00019487 0.000156871 0.0145906 0.0119583 30 1993 30 6.87369e+06 237555 556674. 1926.21 3.31 0.107659 0.0933083 25186 138497 -1 1535 21 1072 1767 103821 27088 0 0 103821 27088 1767 1325 0 0 6073 5091 0 0 7958 6461 0 0 1767 1399 0 0 42901 6330 0 0 43355 6482 0 0 1767 0 0 695 747 879 5880 0 0 3.04656 3.04656 -113.36 -3.04656 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0120619 0.0107322 101 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 7.02 vpr 53.30 MiB -1 -1 0.14 17060 1 0.01 -1 -1 29760 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54580 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 14.9 MiB 0.99 709 53.3 MiB 0.06 0.00 2.8296 -86.8758 -2.8296 2.8296 0.89 0.000193711 0.000153712 0.00909063 0.00746552 34 1988 24 6.87369e+06 363320 618332. 2139.56 3.21 0.0963919 0.0820191 25762 151098 -1 1584 23 1058 1814 126873 31358 0 0 126873 31358 1814 1274 0 0 6887 6091 0 0 11533 9013 0 0 1814 1473 0 0 50591 6890 0 0 54234 6617 0 0 1814 0 0 756 908 903 6923 0 0 3.07256 3.07256 -106.021 -3.07256 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.012725 0.0112149 102 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.38 vpr 53.12 MiB -1 -1 0.12 17348 1 0.02 -1 -1 29664 -1 -1 25 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54396 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 14.7 MiB 3.54 655 53.1 MiB 0.04 0.00 2.42106 -77.1691 -2.42106 2.42106 0.84 0.000115466 9.3237e-05 0.00633784 0.00523949 34 1823 20 6.87369e+06 349346 618332. 2139.56 0.95 0.0402267 0.0336877 25762 151098 -1 1545 19 1112 1596 109880 27239 0 0 109880 27239 1596 1278 0 0 6089 5294 0 0 9291 7343 0 0 1596 1342 0 0 45844 6130 0 0 45464 5852 0 0 1596 0 0 484 559 559 4574 0 0 2.37247 2.37247 -94.6437 -2.37247 0 0 787024. 2723.27 0.30 0.04 0.11 -1 -1 0.30 0.0111645 0.00985423 106 48 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.10 vpr 53.88 MiB -1 -1 0.17 17448 1 0.01 -1 -1 29728 -1 -1 40 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55176 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 15.4 MiB 3.07 1188 53.9 MiB 0.08 0.00 3.29679 -102.29 -3.29679 3.29679 0.59 0.000137098 0.000110293 0.0103008 0.00842254 28 2904 23 6.87369e+06 558954 531479. 1839.03 3.68 0.0886625 0.0764431 24610 126494 -1 2498 20 1563 2999 217142 48423 0 0 217142 48423 2999 1888 0 0 11015 9451 0 0 16499 12951 0 0 2999 2060 0 0 93903 10820 0 0 89727 11253 0 0 2999 0 0 1436 2576 3071 17216 0 0 3.8847 3.8847 -130.216 -3.8847 0 0 648988. 2245.63 0.18 0.04 0.11 -1 -1 0.18 0.00953386 0.00839471 156 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.91 vpr 53.83 MiB -1 -1 0.16 17276 1 0.02 -1 -1 29748 -1 -1 38 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55120 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 15.4 MiB 4.24 1012 53.8 MiB 0.07 0.00 3.03218 -108.408 -3.03218 3.03218 0.87 0.000149329 0.000110639 0.0103202 0.00833743 30 2298 21 6.87369e+06 531006 556674. 1926.21 0.71 0.0480024 0.0404331 25186 138497 -1 1888 20 1431 2361 127788 30160 0 0 127788 30160 2361 1510 0 0 8018 6520 0 0 10316 8396 0 0 2361 1670 0 0 53932 5775 0 0 50800 6289 0 0 2361 0 0 930 1102 1255 8810 0 0 2.77656 2.77656 -115.581 -2.77656 0 0 706193. 2443.58 0.19 0.04 0.08 -1 -1 0.19 0.00976467 0.00859906 148 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.66 vpr 53.34 MiB -1 -1 0.14 17644 1 0.01 -1 -1 29680 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54620 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 14.9 MiB 2.63 899 53.3 MiB 0.10 0.00 3.32193 -103.497 -3.32193 3.32193 1.04 0.00019562 0.000158256 0.0167628 0.0136828 34 2244 23 6.87369e+06 251529 618332. 2139.56 1.63 0.07928 0.0675883 25762 151098 -1 1869 23 1166 1822 137753 32286 0 0 137753 32286 1822 1510 0 0 7093 6153 0 0 10741 8603 0 0 1822 1546 0 0 57285 7624 0 0 58990 6850 0 0 1822 0 0 656 884 840 6130 0 0 3.38741 3.38741 -119.796 -3.38741 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0140337 0.0123529 109 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.34 vpr 53.63 MiB -1 -1 0.17 17468 1 0.01 -1 -1 29756 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54920 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 15.1 MiB 3.15 1129 53.6 MiB 0.12 0.00 2.9678 -102.212 -2.9678 2.9678 1.02 0.000241811 0.000195185 0.0202575 0.0165039 34 2650 22 6.87369e+06 363320 618332. 2139.56 1.74 0.105334 0.0903406 25762 151098 -1 2266 21 1598 2670 184527 42332 0 0 184527 42332 2670 1978 0 0 9711 8304 0 0 14718 11391 0 0 2670 2241 0 0 76897 9271 0 0 77861 9147 0 0 2670 0 0 1072 1245 1332 9295 0 0 3.16061 3.16061 -123.601 -3.16061 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0164391 0.0144932 136 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.69 vpr 53.82 MiB -1 -1 0.17 17712 1 0.01 -1 -1 29684 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55116 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 15.3 MiB 4.79 1172 53.8 MiB 0.13 0.00 4.36902 -133.763 -4.36902 4.36902 1.03 0.000274802 0.000227425 0.0236603 0.0195465 34 3754 39 6.87369e+06 349346 618332. 2139.56 2.43 0.118428 0.102411 25762 151098 -1 2678 22 2359 3494 292216 66865 0 0 292216 66865 3494 3055 0 0 13406 11789 0 0 20830 16374 0 0 3494 3190 0 0 125882 16383 0 0 125110 16074 0 0 3494 0 0 1135 1092 1249 9240 0 0 5.1721 5.1721 -165.777 -5.1721 0 0 787024. 2723.27 0.30 0.09 0.12 -1 -1 0.30 0.017138 0.0151226 159 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 7.67 vpr 53.83 MiB -1 -1 0.16 17820 1 0.02 -1 -1 29700 -1 -1 27 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55124 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 15.4 MiB 3.83 1263 53.8 MiB 0.07 0.00 4.44394 -138.601 -4.44394 4.44394 0.61 0.00013068 0.000105342 0.0110633 0.00906413 34 3125 22 6.87369e+06 377294 618332. 2139.56 1.19 0.0672272 0.0570553 25762 151098 -1 2556 21 1793 2729 210235 47575 0 0 210235 47575 2729 2157 0 0 10386 8894 0 0 15447 12480 0 0 2729 2271 0 0 90758 10896 0 0 88186 10877 0 0 2729 0 0 936 965 1241 7933 0 0 4.51465 4.51465 -158.82 -4.51465 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0164854 0.0146118 152 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 10.60 vpr 53.64 MiB -1 -1 0.18 17648 1 0.01 -1 -1 29788 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54932 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 15.1 MiB 3.72 994 53.6 MiB 0.10 0.00 3.22963 -102.878 -3.22963 3.22963 1.04 0.000246695 0.000200226 0.016836 0.0138245 28 2761 28 6.87369e+06 349346 531479. 1839.03 3.66 0.11976 0.103074 24610 126494 -1 2263 21 1393 2313 166692 42025 0 0 166692 42025 2313 1857 0 0 8860 7762 0 0 13092 10564 0 0 2313 1916 0 0 69210 10363 0 0 70904 9563 0 0 2313 0 0 920 1389 1184 8380 0 0 3.45621 3.45621 -130.335 -3.45621 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00922551 0.0081339 131 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.08 vpr 53.48 MiB -1 -1 0.16 17648 1 0.02 -1 -1 29712 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 14.9 MiB 3.24 944 53.5 MiB 0.06 0.00 3.52545 -96.7164 -3.52545 3.52545 1.04 0.000231726 0.000192198 0.00995048 0.00830192 34 2546 24 6.87369e+06 279477 618332. 2139.56 1.50 0.0559035 0.0476799 25762 151098 -1 2047 18 1236 1817 143117 33792 0 0 143117 33792 1817 1597 0 0 7169 6262 0 0 10845 8914 0 0 1817 1670 0 0 59251 7871 0 0 62218 7478 0 0 1817 0 0 581 720 778 5344 0 0 3.86676 3.86676 -118.608 -3.86676 0 0 787024. 2723.27 0.32 0.05 0.12 -1 -1 0.32 0.0124974 0.0110826 119 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 10.57 vpr 54.36 MiB -1 -1 0.17 17816 1 0.02 -1 -1 29820 -1 -1 38 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55660 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 15.7 MiB 4.31 1263 54.4 MiB 0.10 0.00 3.85958 -128.679 -3.85958 3.85958 0.83 0.000160261 0.000129494 0.0145967 0.0120043 32 3385 49 6.87369e+06 531006 586450. 2029.24 3.19 0.164427 0.142908 25474 144626 -1 2470 23 1879 3104 214304 52727 0 0 214304 52727 3104 2172 0 0 12310 10585 0 0 19346 15249 0 0 3104 2342 0 0 89311 11478 0 0 87129 10901 0 0 3104 0 0 1225 1868 2025 12904 0 0 4.04596 4.04596 -148.713 -4.04596 0 0 744469. 2576.02 0.31 0.07 0.08 -1 -1 0.31 0.0156697 0.0138492 173 84 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 7.21 vpr 53.17 MiB -1 -1 0.17 17184 1 0.02 -1 -1 29680 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54448 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 14.6 MiB 2.16 869 53.2 MiB 0.07 0.00 2.78925 -87.7529 -2.78925 2.78925 0.67 0.000174903 0.000140495 0.0121799 0.00989492 32 1961 25 6.87369e+06 307425 586450. 2029.24 2.18 0.059491 0.0498888 25474 144626 -1 1690 20 1039 1825 145917 32386 0 0 145917 32386 1825 1369 0 0 7003 5939 0 0 11056 8400 0 0 1825 1471 0 0 65060 6842 0 0 59148 8365 0 0 1825 0 0 786 1012 1140 6899 0 0 2.77196 2.77196 -103.748 -2.77196 0 0 744469. 2576.02 0.32 0.06 0.12 -1 -1 0.32 0.0135305 0.012043 96 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.77 vpr 53.70 MiB -1 -1 0.17 17476 1 0.01 -1 -1 29752 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 15.1 MiB 2.98 1048 53.7 MiB 0.05 0.00 3.78918 -115.79 -3.78918 3.78918 0.68 0.000139596 0.000114822 0.00768672 0.00645305 30 2636 21 6.87369e+06 321398 556674. 1926.21 0.82 0.0506645 0.0440042 25186 138497 -1 1963 22 1412 2138 115271 29186 0 0 115271 29186 2138 1718 0 0 7540 6215 0 0 9770 8127 0 0 2138 1800 0 0 46603 5821 0 0 47082 5505 0 0 2138 0 0 726 944 813 6423 0 0 3.87946 3.87946 -132.043 -3.87946 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0168666 0.0150302 140 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 9.81 vpr 53.58 MiB -1 -1 0.17 17512 1 0.02 -1 -1 29760 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 15.1 MiB 2.42 1107 53.6 MiB 0.05 0.00 2.9146 -96.6486 -2.9146 2.9146 0.60 0.00012151 9.7187e-05 0.00680968 0.00557873 26 2871 26 6.87369e+06 447163 503264. 1741.40 4.88 0.110906 0.096615 24322 120374 -1 2447 23 1575 2727 253556 58366 0 0 253556 58366 2727 2045 0 0 10561 9137 0 0 16278 12874 0 0 2727 2199 0 0 111917 15667 0 0 109346 16444 0 0 2727 0 0 1152 1561 1672 10646 0 0 3.56781 3.56781 -126.863 -3.56781 0 0 618332. 2139.56 0.25 0.08 0.11 -1 -1 0.25 0.0157605 0.0138068 132 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.51 vpr 53.41 MiB -1 -1 0.09 17172 1 0.00 -1 -1 29704 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54688 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 14.8 MiB 0.60 851 53.4 MiB 0.08 0.00 3.37079 -101.608 -3.37079 3.37079 0.99 0.000210099 0.000169122 0.0122203 0.0100366 34 2239 22 6.87369e+06 363320 618332. 2139.56 1.65 0.0779744 0.0666762 25762 151098 -1 1871 23 1413 2707 185779 43784 0 0 185779 43784 2707 1888 0 0 10265 8983 0 0 15944 12576 0 0 2707 2150 0 0 79995 8549 0 0 74161 9638 0 0 2707 0 0 1294 1886 1811 11640 0 0 3.7854 3.7854 -120.635 -3.7854 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0163562 0.0145336 123 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.03 vpr 53.69 MiB -1 -1 0.13 17456 1 0.01 -1 -1 29748 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 15.2 MiB 3.30 1162 53.7 MiB 0.11 0.00 3.93315 -123.006 -3.93315 3.93315 1.02 0.000209839 0.000168662 0.0194518 0.0158727 34 2733 30 6.87369e+06 307425 618332. 2139.56 1.52 0.0924757 0.0785795 25762 151098 -1 2154 20 1124 1521 101260 24419 0 0 101260 24419 1521 1253 0 0 5884 5034 0 0 8468 6962 0 0 1521 1294 0 0 42431 4837 0 0 41435 5039 0 0 1521 0 0 397 417 409 3710 0 0 3.4725 3.4725 -129.856 -3.4725 0 0 787024. 2723.27 0.31 0.06 0.12 -1 -1 0.31 0.0177208 0.0159208 136 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 10.95 vpr 53.76 MiB -1 -1 0.17 17572 1 0.01 -1 -1 29740 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55052 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 15.2 MiB 3.11 953 53.8 MiB 0.12 0.00 2.9366 -97.0898 -2.9366 2.9366 0.95 0.000229385 0.000185762 0.0197199 0.0161927 30 2558 27 6.87369e+06 447163 556674. 1926.21 4.67 0.137193 0.119726 25186 138497 -1 1867 23 1097 1913 113737 26725 0 0 113737 26725 1913 1361 0 0 6556 5349 0 0 8605 7011 0 0 1913 1455 0 0 46175 6133 0 0 48575 5416 0 0 1913 0 0 816 1116 1225 8414 0 0 3.11261 3.11261 -115.349 -3.11261 0 0 706193. 2443.58 0.27 0.05 0.09 -1 -1 0.27 0.0159523 0.0140417 136 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 11.31 vpr 53.75 MiB -1 -1 0.16 17352 1 0.02 -1 -1 29740 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55044 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 15.3 MiB 3.57 967 53.8 MiB 0.08 0.00 3.24063 -106.811 -3.24063 3.24063 0.77 0.000134775 0.000107248 0.0127814 0.0102752 28 3308 44 6.87369e+06 489084 531479. 1839.03 4.77 0.0863402 0.073176 24610 126494 -1 2457 21 1759 2921 238642 55936 0 0 238642 55936 2921 2215 0 0 10856 9272 0 0 16999 13443 0 0 2921 2466 0 0 102434 14403 0 0 102511 14137 0 0 2921 0 0 1162 1711 1741 10831 0 0 3.50376 3.50376 -128.426 -3.50376 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0158026 0.0138789 144 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.77 vpr 53.43 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29684 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 14.8 MiB 1.11 984 53.4 MiB 0.11 0.00 3.38179 -104.741 -3.38179 3.38179 0.85 0.000118661 9.5463e-05 0.0178007 0.0146035 32 2436 22 6.87369e+06 461137 586450. 2029.24 0.70 0.0469889 0.0395419 25474 144626 -1 2048 19 1175 1996 160183 36177 0 0 160183 36177 1996 1480 0 0 7763 6676 0 0 12573 9792 0 0 1996 1600 0 0 67394 8566 0 0 68461 8063 0 0 1996 0 0 821 1144 1086 7709 0 0 3.6058 3.6058 -123.048 -3.6058 0 0 744469. 2576.02 0.21 0.04 0.08 -1 -1 0.21 0.00818932 0.00727099 124 21 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.99 vpr 53.62 MiB -1 -1 0.12 17564 1 0.02 -1 -1 29808 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 15.1 MiB 2.08 1094 53.6 MiB 0.09 0.00 3.84368 -116.221 -3.84368 3.84368 0.94 0.000196913 0.000161923 0.0148958 0.0124034 34 2762 34 6.87369e+06 307425 618332. 2139.56 1.69 0.0869348 0.0746669 25762 151098 -1 2324 21 1690 2415 171839 39719 0 0 171839 39719 2415 2040 0 0 9078 7689 0 0 13579 10644 0 0 2415 2190 0 0 72652 8712 0 0 71700 8444 0 0 2415 0 0 725 741 776 6107 0 0 3.81246 3.81246 -133.251 -3.81246 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0138659 0.0122553 135 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.64 vpr 53.75 MiB -1 -1 0.17 17732 1 0.01 -1 -1 29836 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55040 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 15.1 MiB 2.20 1206 53.8 MiB 0.07 0.00 3.72318 -119.048 -3.72318 3.72318 0.60 0.000128448 0.000102959 0.0122917 0.0100517 34 3047 24 6.87369e+06 307425 618332. 2139.56 3.54 0.112702 0.0959531 25762 151098 -1 2520 22 1989 3298 256421 58867 0 0 256421 58867 3298 2763 0 0 12910 11574 0 0 20182 15981 0 0 3298 2971 0 0 109451 12842 0 0 107282 12736 0 0 3298 0 0 1309 1567 1668 11276 0 0 4.11536 4.11536 -143.223 -4.11536 0 0 787024. 2723.27 0.35 0.10 0.12 -1 -1 0.35 0.0241655 0.021768 141 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.99 vpr 53.67 MiB -1 -1 0.18 17568 1 0.01 -1 -1 29640 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 15.2 MiB 3.33 1073 53.7 MiB 0.12 0.00 3.65075 -114.063 -3.65075 3.65075 0.78 0.000249284 0.000200747 0.0223337 0.018206 34 3072 27 6.87369e+06 293451 618332. 2139.56 1.79 0.0983457 0.0827467 25762 151098 -1 2447 20 1634 2914 233920 53525 0 0 233920 53525 2914 2289 0 0 11196 10113 0 0 17218 13781 0 0 2914 2431 0 0 98381 13077 0 0 101297 11834 0 0 2914 0 0 1280 1351 1448 9953 0 0 4.09736 4.09736 -141.288 -4.09736 0 0 787024. 2723.27 0.27 0.08 0.13 -1 -1 0.27 0.0171944 0.0153172 135 74 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.33 vpr 53.07 MiB -1 -1 0.14 17416 1 0.01 -1 -1 29724 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 14.5 MiB 0.94 799 53.1 MiB 0.09 0.00 2.7886 -85.1108 -2.7886 2.7886 1.01 0.000182084 0.000147028 0.0161718 0.0132232 32 1979 29 6.87369e+06 307425 586450. 2029.24 1.11 0.0556276 0.0475566 25474 144626 -1 1582 18 929 1537 116644 27564 0 0 116644 27564 1537 1072 0 0 6192 5378 0 0 10073 8017 0 0 1537 1208 0 0 49107 5804 0 0 48198 6085 0 0 1537 0 0 608 728 905 5672 0 0 3.02456 3.02456 -101.331 -3.02456 0 0 744469. 2576.02 0.29 0.04 0.12 -1 -1 0.29 0.0102287 0.00905326 93 20 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.58 vpr 53.57 MiB -1 -1 0.15 17576 1 0.01 -1 -1 29772 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54860 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 15.1 MiB 2.27 970 53.6 MiB 0.07 0.00 3.03076 -109.675 -3.03076 3.03076 0.93 0.000128711 0.000103417 0.013105 0.010706 34 2529 25 6.87369e+06 251529 618332. 2139.56 1.13 0.0531257 0.0443952 25762 151098 -1 2127 22 1707 2462 220388 48938 0 0 220388 48938 2462 2128 0 0 9897 8991 0 0 15833 12742 0 0 2462 2197 0 0 98088 11067 0 0 91646 11813 0 0 2462 0 0 755 755 653 6135 0 0 3.4778 3.4778 -136.9 -3.4778 0 0 787024. 2723.27 0.28 0.05 0.14 -1 -1 0.28 0.00939237 0.00828979 124 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.49 vpr 54.02 MiB -1 -1 0.17 17820 1 0.01 -1 -1 29832 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55312 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 15.5 MiB 3.34 1419 54.0 MiB 0.14 0.00 4.50952 -138.935 -4.50952 4.50952 0.80 0.000248807 0.00020157 0.0228447 0.0187791 34 3489 40 6.87369e+06 335372 618332. 2139.56 2.13 0.114015 0.0971719 25762 151098 -1 2917 24 2084 3241 237719 55634 0 0 237719 55634 3241 2775 0 0 12430 10825 0 0 19016 14963 0 0 3241 2921 0 0 98739 12193 0 0 101052 11957 0 0 3241 0 0 1157 1437 1315 9886 0 0 4.8644 4.8644 -163.963 -4.8644 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0115644 0.0102408 166 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.40 vpr 53.62 MiB -1 -1 0.15 17468 1 0.01 -1 -1 29648 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 15.0 MiB 2.68 821 53.6 MiB 0.05 0.00 3.22801 -101.489 -3.22801 3.22801 0.85 0.000130559 9.7476e-05 0.00721594 0.00588746 34 2122 36 6.87369e+06 475111 618332. 2139.56 1.19 0.0513671 0.0433954 25762 151098 -1 1741 20 1318 2067 135224 35892 0 0 135224 35892 2067 1511 0 0 7839 6688 0 0 12065 9676 0 0 2067 1680 0 0 55240 8018 0 0 55946 8319 0 0 2067 0 0 749 781 922 7033 0 0 3.13526 3.13526 -121.002 -3.13526 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00868186 0.00765866 137 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.48 vpr 53.16 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29684 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54432 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 14.7 MiB 1.00 721 53.2 MiB 0.08 0.00 2.8516 -89.7325 -2.8516 2.8516 1.03 0.000198029 0.000161615 0.014099 0.0116559 28 2211 43 6.87369e+06 349346 531479. 1839.03 1.31 0.0593556 0.0511709 24610 126494 -1 1739 21 1065 1648 127029 30352 0 0 127029 30352 1648 1328 0 0 6292 5473 0 0 9212 7557 0 0 1648 1412 0 0 51356 7522 0 0 56873 7060 0 0 1648 0 0 583 822 776 5863 0 0 3.30621 3.30621 -113.712 -3.30621 0 0 648988. 2245.63 0.22 0.03 0.07 -1 -1 0.22 0.00829784 0.00734682 104 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 8.88 vpr 54.02 MiB -1 -1 0.15 17612 1 0.02 -1 -1 29828 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55312 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 15.4 MiB 4.71 1376 54.0 MiB 0.05 0.00 4.57575 -140.174 -4.57575 4.57575 0.66 0.000153581 0.000124496 0.00880597 0.00728973 34 3679 26 6.87369e+06 349346 618332. 2139.56 1.49 0.0688466 0.058754 25762 151098 -1 2900 24 2305 3499 287190 65018 0 0 287190 65018 3499 3067 0 0 13539 12156 0 0 21009 16628 0 0 3499 3194 0 0 122931 14743 0 0 122713 15230 0 0 3499 0 0 1194 1639 1760 11288 0 0 5.1238 5.1238 -175.32 -5.1238 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0212902 0.0188883 171 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 7.85 vpr 53.54 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29688 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 15.0 MiB 3.89 1066 53.5 MiB 0.11 0.00 3.66202 -115.266 -3.66202 3.66202 0.80 0.000250627 0.000206974 0.0169151 0.0137952 32 2580 28 6.87369e+06 489084 586450. 2029.24 0.77 0.0533804 0.0450106 25474 144626 -1 2010 22 1571 2697 213352 47798 0 0 213352 47798 2697 1794 0 0 10568 9369 0 0 17538 13634 0 0 2697 1990 0 0 92774 10300 0 0 87078 10711 0 0 2697 0 0 1126 1503 1586 10976 0 0 3.9207 3.9207 -136.884 -3.9207 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.0155023 0.0136332 135 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 6.58 vpr 53.12 MiB -1 -1 0.15 17084 1 0.01 -1 -1 29540 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54400 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 14.6 MiB 0.60 862 53.1 MiB 0.08 0.00 2.8436 -87.7852 -2.8436 2.8436 1.03 0.000174193 0.000140108 0.0122087 0.00998148 34 1943 19 6.87369e+06 335372 618332. 2139.56 3.00 0.0890868 0.0763746 25762 151098 -1 1629 20 987 1735 136032 30527 0 0 136032 30527 1735 1200 0 0 6692 5774 0 0 10382 8137 0 0 1735 1318 0 0 58179 6881 0 0 57309 7217 0 0 1735 0 0 748 978 1039 7026 0 0 3.03056 3.03056 -101.961 -3.03056 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0106441 0.00938063 94 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.95 vpr 53.57 MiB -1 -1 0.16 17404 1 0.01 -1 -1 29788 -1 -1 37 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 15.0 MiB 2.68 1163 53.6 MiB 0.09 0.00 4.13467 -113.812 -4.13467 4.13467 0.59 0.000126638 0.000102109 0.0122527 0.00987471 30 2656 22 6.87369e+06 517032 556674. 1926.21 2.63 0.0932683 0.0793549 25186 138497 -1 2116 19 1111 2191 130026 30114 0 0 130026 30114 2191 1357 0 0 7604 6484 0 0 10329 8379 0 0 2191 1520 0 0 54339 6266 0 0 53372 6108 0 0 2191 0 0 1080 1735 2018 12498 0 0 4.06035 4.06035 -130.563 -4.06035 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0137921 0.0121728 145 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.58 vpr 53.23 MiB -1 -1 0.14 16884 1 0.01 -1 -1 29656 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54504 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 14.6 MiB 1.00 676 53.2 MiB 0.04 0.00 2.8626 -88.1019 -2.8626 2.8626 1.04 0.000173229 0.000140597 0.00676872 0.00560231 34 1796 21 6.87369e+06 265503 618332. 2139.56 1.31 0.0517583 0.0443163 25762 151098 -1 1482 21 1145 2043 130203 33100 0 0 130203 33100 2043 1568 0 0 7670 6853 0 0 11852 9347 0 0 2043 1680 0 0 51758 6764 0 0 54837 6888 0 0 2043 0 0 898 919 1100 7456 0 0 2.75796 2.75796 -101.948 -2.75796 0 0 787024. 2723.27 0.27 0.05 0.12 -1 -1 0.27 0.011973 0.0104931 98 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.67 vpr 53.45 MiB -1 -1 0.15 17500 1 0.02 -1 -1 29732 -1 -1 34 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54728 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 14.9 MiB 2.33 765 53.4 MiB 0.04 0.00 3.03828 -91.2623 -3.03828 3.03828 0.59 0.000104837 8.1843e-05 0.00553115 0.00446232 26 2306 49 6.87369e+06 475111 503264. 1741.40 3.18 0.103392 0.0898794 24322 120374 -1 1904 21 1333 2406 209977 50537 0 0 209977 50537 2406 1798 0 0 9403 7972 0 0 14416 11494 0 0 2406 1993 0 0 86516 14060 0 0 94830 13220 0 0 2406 0 0 1073 1669 1568 10880 0 0 3.46716 3.46716 -122.653 -3.46716 0 0 618332. 2139.56 0.20 0.05 0.06 -1 -1 0.20 0.00765235 0.0067152 109 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.36 vpr 53.64 MiB -1 -1 0.17 17588 1 0.01 -1 -1 29752 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54928 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 15.0 MiB 4.18 1073 53.6 MiB 0.10 0.00 3.19963 -100.413 -3.19963 3.19963 0.96 0.00021576 0.000173382 0.0171959 0.0140277 34 2983 26 6.87369e+06 335372 618332. 2139.56 1.89 0.0945835 0.0806915 25762 151098 -1 2293 21 1882 2882 227444 52278 0 0 227444 52278 2882 2267 0 0 11017 9915 0 0 17426 13614 0 0 2882 2560 0 0 101783 11333 0 0 91454 12589 0 0 2882 0 0 1000 955 977 7814 0 0 3.23091 3.23091 -118.544 -3.23091 0 0 787024. 2723.27 0.33 0.08 0.13 -1 -1 0.33 0.0165083 0.0145802 138 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.30 vpr 53.86 MiB -1 -1 0.16 17516 1 0.01 -1 -1 29772 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55148 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 15.1 MiB 2.66 1073 53.9 MiB 0.11 0.00 3.61045 -119.578 -3.61045 3.61045 0.85 0.000251548 0.000206883 0.0201927 0.0167492 34 2346 19 6.87369e+06 363320 618332. 2139.56 1.39 0.0814219 0.0692012 25762 151098 -1 2032 21 1506 2306 180262 40066 0 0 180262 40066 2306 1700 0 0 8696 7430 0 0 13462 10629 0 0 2306 1742 0 0 80519 8418 0 0 72973 10147 0 0 2306 0 0 800 894 945 7113 0 0 3.82646 3.82646 -137.91 -3.82646 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0171511 0.0151501 132 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 10.56 vpr 53.68 MiB -1 -1 0.15 17512 1 0.02 -1 -1 29632 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 15.1 MiB 1.96 975 53.7 MiB 0.13 0.00 3.69318 -113.32 -3.69318 3.69318 0.94 0.000226838 0.000183236 0.0211684 0.0172037 28 3159 34 6.87369e+06 377294 531479. 1839.03 5.64 0.145709 0.126665 24610 126494 -1 2558 21 1801 3109 287245 62490 0 0 287245 62490 3109 2505 0 0 11807 10300 0 0 17513 14144 0 0 3109 2635 0 0 128197 16166 0 0 123510 16740 0 0 3109 0 0 1308 1796 1629 11786 0 0 4.04706 4.04706 -142.748 -4.04706 0 0 648988. 2245.63 0.17 0.05 0.09 -1 -1 0.17 0.00906401 0.00800785 133 48 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.62 vpr 53.27 MiB -1 -1 0.07 17684 1 0.01 -1 -1 29724 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54544 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 14.8 MiB 3.46 920 53.3 MiB 0.09 0.00 3.74452 -108.972 -3.74452 3.74452 1.02 0.000190435 0.000155096 0.0177666 0.0146025 30 2167 19 6.87369e+06 209608 556674. 1926.21 0.93 0.0494564 0.0418393 25186 138497 -1 1797 18 887 1250 82204 19120 0 0 82204 19120 1250 1071 0 0 4399 3659 0 0 5711 4728 0 0 1250 1130 0 0 34756 4190 0 0 34838 4342 0 0 1250 0 0 363 430 406 3191 0 0 3.17057 3.17057 -114.633 -3.17057 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0113711 0.0101921 103 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.80 vpr 53.29 MiB -1 -1 0.17 17688 1 0.02 -1 -1 29804 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54564 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 14.7 MiB 3.10 875 53.3 MiB 0.09 0.00 2.99776 -101.048 -2.99776 2.99776 1.04 0.00012578 0.000102005 0.0177949 0.0146596 34 2463 19 6.87369e+06 237555 618332. 2139.56 1.30 0.0770379 0.0656141 25762 151098 -1 2004 21 1397 2064 163961 37711 0 0 163961 37711 2064 1707 0 0 7972 7026 0 0 12358 9687 0 0 2064 1884 0 0 72008 8561 0 0 67495 8846 0 0 2064 0 0 667 550 604 5219 0 0 3.37011 3.37011 -125.628 -3.37011 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0131994 0.0116543 114 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.29 vpr 53.46 MiB -1 -1 0.17 17448 1 0.02 -1 -1 29788 -1 -1 34 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 15.0 MiB 2.05 967 53.5 MiB 0.11 0.00 2.73725 -83.2823 -2.73725 2.73725 0.94 0.000207684 0.000166389 0.0175782 0.0142675 26 2531 23 6.87369e+06 475111 503264. 1741.40 1.26 0.0621577 0.0529883 24322 120374 -1 2293 21 1402 2639 282896 70657 0 0 282896 70657 2639 1832 0 0 10398 9048 0 0 17461 13868 0 0 2639 1977 0 0 127188 22268 0 0 122571 21664 0 0 2639 0 0 1237 2295 2542 14163 0 0 3.04486 3.04486 -107.934 -3.04486 0 0 618332. 2139.56 0.27 0.09 0.11 -1 -1 0.27 0.0157441 0.0139559 124 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 7.23 vpr 53.38 MiB -1 -1 0.13 17576 1 0.01 -1 -1 29764 -1 -1 35 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 14.8 MiB 2.36 724 53.4 MiB 0.05 0.00 3.26379 -83.0213 -3.26379 3.26379 0.67 0.000100002 7.9935e-05 0.00766189 0.00620711 30 2032 25 6.87369e+06 489084 556674. 1926.21 2.44 0.0726085 0.0621027 25186 138497 -1 1526 18 882 1785 106297 26391 0 0 106297 26391 1785 1173 0 0 6111 5134 0 0 8276 6641 0 0 1785 1265 0 0 42839 6253 0 0 45501 5925 0 0 1785 0 0 903 1531 1381 9580 0 0 3.7264 3.7264 -103.278 -3.7264 0 0 706193. 2443.58 0.25 0.04 0.08 -1 -1 0.25 0.00957312 0.00850322 117 20 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 9.97 vpr 53.43 MiB -1 -1 0.17 17480 1 0.02 -1 -1 29756 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54708 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 14.8 MiB 3.69 826 53.4 MiB 0.08 0.00 3.16363 -99.5422 -3.16363 3.16363 1.00 0.000209073 0.00016817 0.0151413 0.0123563 34 2069 23 6.87369e+06 237555 618332. 2139.56 2.90 0.0950151 0.0796512 25762 151098 -1 1762 21 1361 2369 191941 43466 0 0 191941 43466 2369 1903 0 0 8931 7851 0 0 13767 10908 0 0 2369 1984 0 0 85126 10115 0 0 79379 10705 0 0 2369 0 0 1008 1154 1349 8454 0 0 3.16976 3.16976 -118.563 -3.16976 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.0161709 0.0143073 105 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.20 vpr 53.46 MiB -1 -1 0.09 17448 1 0.01 -1 -1 29708 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 15.0 MiB 3.42 1050 53.5 MiB 0.05 0.00 2.9238 -102.589 -2.9238 2.9238 0.94 0.000118475 9.4671e-05 0.0096367 0.00786119 34 2646 26 6.87369e+06 237555 618332. 2139.56 1.57 0.0825252 0.0706831 25762 151098 -1 2183 19 1412 2083 181255 40695 0 0 181255 40695 2083 1748 0 0 8416 7519 0 0 12945 10504 0 0 2083 1943 0 0 76069 9970 0 0 79659 9011 0 0 2083 0 0 671 672 596 5364 0 0 3.23291 3.23291 -126.394 -3.23291 0 0 787024. 2723.27 0.33 0.07 0.14 -1 -1 0.33 0.0151409 0.0135291 122 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 6.93 vpr 53.37 MiB -1 -1 0.15 17096 1 0.02 -1 -1 29776 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54648 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 14.8 MiB 1.02 1019 53.4 MiB 0.05 0.00 3.60082 -108.977 -3.60082 3.60082 0.98 0.000130009 0.000105996 0.00679902 0.00563026 28 2564 20 6.87369e+06 433189 531479. 1839.03 2.59 0.0788083 0.0677556 24610 126494 -1 2299 21 1407 2461 205338 44744 0 0 205338 44744 2461 1918 0 0 9070 7751 0 0 14020 10988 0 0 2461 2054 0 0 89030 10585 0 0 88296 11448 0 0 2461 0 0 1054 1215 1360 9328 0 0 3.7151 3.7151 -125.572 -3.7151 0 0 648988. 2245.63 0.28 0.07 0.12 -1 -1 0.28 0.0145192 0.0128734 129 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.80 vpr 53.77 MiB -1 -1 0.14 17512 1 0.01 -1 -1 29708 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55056 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 15.2 MiB 3.54 1147 53.8 MiB 0.07 0.00 3.78918 -125.267 -3.78918 3.78918 0.95 0.000215837 0.000173535 0.0112048 0.00924308 34 3194 26 6.87369e+06 321398 618332. 2139.56 2.13 0.0994403 0.0862093 25762 151098 -1 2592 23 1962 2993 238746 55774 0 0 238746 55774 2993 2557 0 0 11981 10674 0 0 18461 14758 0 0 2993 2653 0 0 103257 12326 0 0 99061 12806 0 0 2993 0 0 1031 1161 1102 8349 0 0 4.13006 4.13006 -149.081 -4.13006 0 0 787024. 2723.27 0.22 0.08 0.08 -1 -1 0.22 0.0163971 0.0145145 147 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 10.07 vpr 53.88 MiB -1 -1 0.14 17468 1 0.02 -1 -1 29780 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55176 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 15.5 MiB 4.89 1104 53.9 MiB 0.12 0.00 4.17957 -127.537 -4.17957 4.17957 1.04 0.000282483 0.000233156 0.0193176 0.0160042 34 2793 24 6.87369e+06 503058 618332. 2139.56 1.72 0.100817 0.0868763 25762 151098 -1 2265 20 1510 2612 214214 47249 0 0 214214 47249 2612 1967 0 0 10316 9130 0 0 15552 12539 0 0 2612 2084 0 0 97904 9595 0 0 85218 11934 0 0 2612 0 0 1102 1314 1264 10052 0 0 4.16385 4.16385 -144.617 -4.16385 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0179265 0.0159891 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 11.04 vpr 53.84 MiB -1 -1 0.17 17404 1 0.02 -1 -1 29760 -1 -1 41 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 15.4 MiB 3.83 1157 53.8 MiB 0.13 0.00 3.58682 -120.014 -3.58682 3.58682 1.05 0.000325348 0.000276312 0.0200275 0.0164954 28 2875 21 6.87369e+06 572927 531479. 1839.03 3.76 0.117421 0.101631 24610 126494 -1 2511 21 1707 3048 234429 54490 0 0 234429 54490 3048 2272 0 0 11794 10456 0 0 18178 14699 0 0 3048 2458 0 0 101420 12299 0 0 96941 12306 0 0 3048 0 0 1341 1652 1657 12084 0 0 3.9647 3.9647 -145.687 -3.9647 0 0 648988. 2245.63 0.28 0.08 0.12 -1 -1 0.28 0.0176155 0.0155554 148 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 9.16 vpr 53.24 MiB -1 -1 0.15 17504 1 0.01 -1 -1 29776 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54516 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 14.8 MiB 2.99 755 53.2 MiB 0.05 0.00 3.28893 -99.4942 -3.28893 3.28893 0.96 0.000180302 0.00014581 0.00852389 0.00703513 34 1965 21 6.87369e+06 237555 618332. 2139.56 2.94 0.0767379 0.065458 25762 151098 -1 1649 23 1171 1992 133616 32988 0 0 133616 32988 1992 1558 0 0 7646 6755 0 0 12100 9547 0 0 1992 1762 0 0 55898 6409 0 0 53988 6957 0 0 1992 0 0 821 771 854 6414 0 0 3.02731 3.02731 -110.073 -3.02731 0 0 787024. 2723.27 0.32 0.06 0.13 -1 -1 0.32 0.0142712 0.0126843 99 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.76 vpr 53.79 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29800 -1 -1 22 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55076 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 15.2 MiB 4.01 1053 53.8 MiB 0.10 0.00 3.55872 -115.606 -3.55872 3.55872 0.95 0.000231419 0.0001877 0.0197704 0.0163558 34 2448 24 6.87369e+06 307425 618332. 2139.56 2.46 0.101147 0.0857682 25762 151098 -1 2016 18 1496 2356 163163 37934 0 0 163163 37934 2356 1865 0 0 8757 7424 0 0 12947 10390 0 0 2356 1954 0 0 68334 8299 0 0 68413 8002 0 0 2356 0 0 860 829 1008 7321 0 0 3.8794 3.8794 -143.209 -3.8794 0 0 787024. 2723.27 0.26 0.04 0.14 -1 -1 0.26 0.0120279 0.010673 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 6.38 vpr 53.68 MiB -1 -1 0.15 17560 1 0.02 -1 -1 29704 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 15.1 MiB 2.63 1166 53.7 MiB 0.06 0.00 4.00821 -122.15 -4.00821 4.00821 0.67 0.00012803 0.00010421 0.00914686 0.0074965 34 2799 22 6.87369e+06 321398 618332. 2139.56 1.30 0.0612439 0.0523493 25762 151098 -1 2312 22 1659 2777 203012 49057 0 0 203012 49057 2777 2290 0 0 10802 9634 0 0 16746 13347 0 0 2777 2414 0 0 85298 10766 0 0 84612 10606 0 0 2777 0 0 1118 1753 1721 11777 0 0 4.01606 4.01606 -141.314 -4.01606 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.0091306 0.00805962 140 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 10.65 vpr 53.69 MiB -1 -1 0.16 17504 1 0.01 -1 -1 29840 -1 -1 28 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54980 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 15.1 MiB 2.82 921 53.7 MiB 0.08 0.00 4.30764 -122.589 -4.30764 4.30764 0.95 0.000226426 0.000185152 0.0156341 0.012926 30 3004 45 6.87369e+06 391268 556674. 1926.21 4.63 0.0924914 0.0791358 25186 138497 -1 2066 18 1318 2101 135961 33370 0 0 135961 33370 2101 1636 0 0 7348 6023 0 0 9640 7909 0 0 2101 1693 0 0 55851 7607 0 0 58920 8502 0 0 2101 0 0 783 890 846 6956 0 0 4.4063 4.4063 -144.606 -4.4063 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.014691 0.0131557 141 43 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 9.58 vpr 53.74 MiB -1 -1 0.14 17444 1 0.02 -1 -1 29704 -1 -1 32 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55028 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 15.2 MiB 3.38 1014 53.7 MiB 0.12 0.00 3.69518 -116.283 -3.69518 3.69518 0.94 0.000246562 0.000199231 0.0206301 0.0167731 32 2605 33 6.87369e+06 447163 586450. 2029.24 3.11 0.115294 0.0982229 25474 144626 -1 2178 22 1405 2352 202621 45399 0 0 202621 45399 2352 1765 0 0 9471 8394 0 0 15816 12674 0 0 2352 1900 0 0 91610 9623 0 0 81020 11043 0 0 2352 0 0 947 1109 1073 8215 0 0 3.5258 3.5258 -129.232 -3.5258 0 0 744469. 2576.02 0.19 0.04 0.07 -1 -1 0.19 0.00952815 0.00837194 135 78 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.66 vpr 53.79 MiB -1 -1 0.17 17560 1 0.01 -1 -1 29644 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55076 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 15.2 MiB 2.59 1051 53.8 MiB 0.07 0.00 3.73418 -118.836 -3.73418 3.73418 0.59 0.000124363 9.9668e-05 0.0113792 0.00925252 34 2849 21 6.87369e+06 293451 618332. 2139.56 1.66 0.0832276 0.0711755 25762 151098 -1 2335 20 1605 2813 202951 47419 0 0 202951 47419 2813 2321 0 0 10866 9564 0 0 16132 12799 0 0 2813 2414 0 0 85339 10499 0 0 84988 9822 0 0 2813 0 0 1208 1427 1273 9695 0 0 4.11106 4.11106 -143.842 -4.11106 0 0 787024. 2723.27 0.25 0.06 0.11 -1 -1 0.25 0.0142857 0.0126111 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 9.65 vpr 53.70 MiB -1 -1 0.18 17572 1 0.02 -1 -1 29760 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54988 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 15.1 MiB 3.12 976 53.7 MiB 0.11 0.00 3.31093 -103.218 -3.31093 3.31093 1.04 0.000240843 0.000194159 0.0181949 0.0149029 30 2204 22 6.87369e+06 405241 556674. 1926.21 3.09 0.119676 0.10152 25186 138497 -1 1704 19 1128 1847 100009 24030 0 0 100009 24030 1847 1295 0 0 6334 5283 0 0 8672 7022 0 0 1847 1385 0 0 41970 4359 0 0 39339 4686 0 0 1847 0 0 719 773 719 5946 0 0 2.98731 2.98731 -110.835 -2.98731 0 0 706193. 2443.58 0.31 0.05 0.13 -1 -1 0.31 0.0162277 0.0144272 132 79 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.84 vpr 53.09 MiB -1 -1 0.14 17084 1 0.01 -1 -1 29600 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 14.5 MiB 0.56 880 53.1 MiB 0.05 0.00 3.18563 -100.905 -3.18563 3.18563 0.79 9.6939e-05 7.701e-05 0.00830367 0.00670816 28 1927 21 6.87369e+06 237555 531479. 1839.03 1.75 0.0494691 0.0415235 24610 126494 -1 1708 18 896 1290 98414 23160 0 0 98414 23160 1290 1136 0 0 4924 4229 0 0 7150 5886 0 0 1290 1172 0 0 42596 5279 0 0 41164 5458 0 0 1290 0 0 394 432 410 3384 0 0 3.06931 3.06931 -110.017 -3.06931 0 0 648988. 2245.63 0.26 0.04 0.11 -1 -1 0.26 0.0107305 0.00957381 96 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 12.84 vpr 53.95 MiB -1 -1 0.15 17448 1 0.02 -1 -1 29636 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55244 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 15.2 MiB 5.93 1042 53.9 MiB 0.10 0.00 3.67482 -115.827 -3.67482 3.67482 0.81 0.000230072 0.0001844 0.0155671 0.0125839 34 2497 22 6.87369e+06 475111 618332. 2139.56 3.78 0.155559 0.133417 25762 151098 -1 2119 24 1650 2742 243697 52481 0 0 243697 52481 2742 2263 0 0 10931 9651 0 0 16784 13462 0 0 2742 2374 0 0 112338 11248 0 0 98160 13483 0 0 2742 0 0 1092 1204 1096 9222 0 0 3.6718 3.6718 -133.61 -3.6718 0 0 787024. 2723.27 0.30 0.08 0.08 -1 -1 0.30 0.0167227 0.0146192 137 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.52 vpr 53.79 MiB -1 -1 0.11 17636 1 0.02 -1 -1 29700 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55076 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 15.1 MiB 3.71 1101 53.8 MiB 0.08 0.00 3.54952 -124.233 -3.54952 3.54952 0.94 0.000242754 0.000195039 0.0163872 0.0134429 34 2634 24 6.87369e+06 293451 618332. 2139.56 1.58 0.101162 0.0860282 25762 151098 -1 2121 23 1960 3328 218362 52266 0 0 218362 52266 3328 2528 0 0 12497 10984 0 0 19084 15026 0 0 3328 2732 0 0 89413 10659 0 0 90712 10337 0 0 3328 0 0 1368 1673 1749 11680 0 0 4.0517 4.0517 -152.739 -4.0517 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0198714 0.017565 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 5.87 vpr 53.30 MiB -1 -1 0.15 17464 1 0.01 -1 -1 29708 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 14.9 MiB 2.68 963 53.3 MiB 0.05 0.00 3.47382 -106.52 -3.47382 3.47382 0.68 9.8798e-05 7.8687e-05 0.0081733 0.00664894 34 2254 23 6.87369e+06 223581 618332. 2139.56 0.92 0.0377399 0.0315686 25762 151098 -1 1981 23 1291 1747 148130 33647 0 0 148130 33647 1747 1555 0 0 6994 6114 0 0 10666 8655 0 0 1747 1594 0 0 64986 7790 0 0 61990 7939 0 0 1747 0 0 456 444 580 4205 0 0 3.2402 3.2402 -117.786 -3.2402 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00777241 0.00684344 106 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 6.72 vpr 53.07 MiB -1 -1 0.14 16944 1 0.01 -1 -1 29716 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 14.5 MiB 0.96 835 53.1 MiB 0.07 0.00 3.17463 -98.2488 -3.17463 3.17463 1.02 0.000183607 0.00014854 0.0104357 0.00857244 28 1929 20 6.87369e+06 279477 531479. 1839.03 2.49 0.0857365 0.0732212 24610 126494 -1 1782 20 1232 2034 138862 32213 0 0 138862 32213 2034 1531 0 0 7305 6208 0 0 10900 8543 0 0 2034 1627 0 0 57382 7227 0 0 59207 7077 0 0 2034 0 0 802 814 848 6600 0 0 2.91301 2.91301 -109.556 -2.91301 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.012123 0.0107822 99 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 8.70 vpr 53.82 MiB -1 -1 0.13 17344 1 0.01 -1 -1 29656 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55108 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 15.2 MiB 3.82 1215 53.8 MiB 0.11 0.00 3.74338 -123.963 -3.74338 3.74338 1.00 0.000238314 0.000191584 0.02081 0.0170334 34 3008 22 6.87369e+06 321398 618332. 2139.56 1.70 0.093279 0.0789642 25762 151098 -1 2427 20 1874 2564 180039 43098 0 0 180039 43098 2564 2311 0 0 9709 8407 0 0 15020 11924 0 0 2564 2386 0 0 74798 9310 0 0 75384 8760 0 0 2564 0 0 690 747 639 6020 0 0 4.31866 4.31866 -152.211 -4.31866 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.00934521 0.0083111 145 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 9.37 vpr 53.44 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29792 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 15.1 MiB 3.28 1080 53.4 MiB 0.05 0.00 4.30764 -126.567 -4.30764 4.30764 0.68 0.000135155 0.00010825 0.00809112 0.00663908 34 3522 50 6.87369e+06 377294 618332. 2139.56 3.57 0.100451 0.087182 25762 151098 -1 2493 21 1707 2540 198312 46989 0 0 198312 46989 2540 2039 0 0 9800 8641 0 0 14917 12040 0 0 2540 2152 0 0 85623 10536 0 0 82892 11581 0 0 2540 0 0 833 985 950 7668 0 0 4.75425 4.75425 -158.507 -4.75425 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.00915596 0.00808679 142 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 8.08 vpr 53.68 MiB -1 -1 0.13 17244 1 0.01 -1 -1 29692 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 15.1 MiB 0.81 1265 53.7 MiB 0.16 0.00 4.25887 -122.974 -4.25887 4.25887 1.02 0.000247311 0.000198778 0.0225878 0.0183531 28 2872 25 6.87369e+06 503058 531479. 1839.03 4.37 0.126944 0.109379 24610 126494 -1 2602 24 1981 3525 301455 66924 0 0 301455 66924 3525 2548 0 0 13456 11599 0 0 20131 16063 0 0 3525 2787 0 0 132782 16721 0 0 128036 17206 0 0 3525 0 0 1544 2324 2586 15269 0 0 4.58685 4.58685 -151.75 -4.58685 0 0 648988. 2245.63 0.17 0.06 0.10 -1 -1 0.17 0.0103554 0.009074 157 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.36 vpr 53.52 MiB -1 -1 0.16 17648 1 0.03 -1 -1 29676 -1 -1 34 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 14.9 MiB 2.87 800 53.5 MiB 0.06 0.00 2.81125 -85.0627 -2.81125 2.81125 0.61 0.000111934 8.9632e-05 0.00939017 0.00752563 32 2500 26 6.87369e+06 475111 586450. 2029.24 2.23 0.0708846 0.0593008 25474 144626 -1 1905 24 1626 2849 267473 61240 0 0 267473 61240 2849 2174 0 0 11476 10030 0 0 19944 15273 0 0 2849 2347 0 0 114892 15969 0 0 115463 15447 0 0 2849 0 0 1223 1613 1556 10769 0 0 2.91926 2.91926 -102.358 -2.91926 0 0 744469. 2576.02 0.19 0.05 0.07 -1 -1 0.19 0.00866389 0.00757545 119 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.84 vpr 53.21 MiB -1 -1 0.14 17180 1 0.01 -1 -1 29780 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54484 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 14.6 MiB 1.17 731 53.2 MiB 0.07 0.00 2.8908 -83.9796 -2.8908 2.8908 0.95 0.00017421 0.000137751 0.0123324 0.00999339 30 1559 20 6.87369e+06 293451 556674. 1926.21 0.58 0.0290966 0.024244 25186 138497 -1 1346 19 871 1362 75297 17695 0 0 75297 17695 1362 918 0 0 4517 3568 0 0 5980 4778 0 0 1362 987 0 0 33107 3377 0 0 28969 4067 0 0 1362 0 0 491 468 498 4113 0 0 2.65756 2.65756 -95.531 -2.65756 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.0101718 0.00893989 96 26 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 10.00 vpr 54.23 MiB -1 -1 0.18 17824 1 0.02 -1 -1 29796 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55528 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 15.5 MiB 4.32 1362 54.2 MiB 0.09 0.00 3.46315 -116.785 -3.46315 3.46315 1.01 0.000292383 0.000238769 0.0164608 0.0135015 34 3779 26 6.87369e+06 335372 618332. 2139.56 2.20 0.101343 0.0863097 25762 151098 -1 2948 21 2090 3525 279723 63208 0 0 279723 63208 3525 2780 0 0 13569 12289 0 0 21256 17145 0 0 3525 2914 0 0 122550 13259 0 0 115298 14821 0 0 3525 0 0 1435 1714 1681 11919 0 0 4.03326 4.03326 -141.405 -4.03326 0 0 787024. 2723.27 0.32 0.09 0.14 -1 -1 0.32 0.0190936 0.016856 165 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 12.91 vpr 53.75 MiB -1 -1 0.18 17684 1 0.01 -1 -1 29712 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55036 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 15.1 MiB 5.34 1070 53.7 MiB 0.11 0.00 4.58967 -141.462 -4.58967 4.58967 1.01 0.000246091 0.000200475 0.0215198 0.0177532 36 2571 21 6.87369e+06 307425 648988. 2245.63 4.06 0.128726 0.109868 26050 158493 -1 2156 20 1421 2263 179039 39346 0 0 179039 39346 2263 2003 0 0 8647 7407 0 0 12713 10415 0 0 2263 2067 0 0 83913 7735 0 0 69240 9719 0 0 2263 0 0 842 1045 842 7364 0 0 4.23075 4.23075 -149.044 -4.23075 0 0 828058. 2865.25 0.35 0.07 0.15 -1 -1 0.35 0.0166427 0.0148416 139 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 9.83 vpr 53.42 MiB -1 -1 0.14 17576 1 0.01 -1 -1 29732 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 15.1 MiB 5.61 1042 53.4 MiB 0.06 0.00 3.45235 -119.778 -3.45235 3.45235 0.88 0.000129852 0.000105228 0.0105465 0.00864736 34 2467 23 6.87369e+06 251529 618332. 2139.56 1.19 0.0591872 0.0500257 25762 151098 -1 2096 18 1365 2000 144119 33692 0 0 144119 33692 2000 1724 0 0 7664 6525 0 0 11028 8909 0 0 2000 1822 0 0 58036 7952 0 0 63391 6760 0 0 2000 0 0 635 544 672 5245 0 0 3.64636 3.64636 -141.991 -3.64636 0 0 787024. 2723.27 0.24 0.05 0.08 -1 -1 0.24 0.0128956 0.0114427 118 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 7.68 vpr 53.61 MiB -1 -1 0.09 17340 1 0.01 -1 -1 29732 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54892 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 15.2 MiB 1.49 1112 53.6 MiB 0.13 0.00 4.23995 -117.781 -4.23995 4.23995 1.02 0.00023954 0.000197513 0.0214228 0.017667 32 2820 27 6.87369e+06 461137 586450. 2029.24 3.03 0.107381 0.0914185 25474 144626 -1 2198 21 1160 1819 161065 34689 0 0 161065 34689 1819 1448 0 0 7177 6076 0 0 11418 8882 0 0 1819 1570 0 0 71799 7748 0 0 67033 8965 0 0 1819 0 0 659 734 700 5690 0 0 3.7233 3.7233 -127.988 -3.7233 0 0 744469. 2576.02 0.22 0.06 0.08 -1 -1 0.22 0.0139051 0.0122315 129 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.54 vpr 53.76 MiB -1 -1 0.12 17652 1 0.01 -1 -1 29732 -1 -1 34 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55052 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 15.3 MiB 1.95 971 53.8 MiB 0.06 0.00 3.65995 -104.886 -3.65995 3.65995 0.59 0.000131859 0.0001065 0.00855613 0.00703729 28 2415 21 6.87369e+06 475111 531479. 1839.03 2.27 0.0841745 0.0716401 24610 126494 -1 2137 20 1510 2502 164017 41732 0 0 164017 41732 2502 1911 0 0 9404 7994 0 0 13658 11066 0 0 2502 2022 0 0 66350 9775 0 0 69601 8964 0 0 2502 0 0 992 1456 1628 10124 0 0 3.95806 3.95806 -130.424 -3.95806 0 0 648988. 2245.63 0.23 0.04 0.11 -1 -1 0.23 0.0105136 0.00932669 149 46 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 10.80 vpr 53.62 MiB -1 -1 0.18 17460 1 0.02 -1 -1 29652 -1 -1 31 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54912 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 15.2 MiB 2.43 975 53.6 MiB 0.12 0.00 3.0099 -91.6534 -3.0099 3.0099 1.02 0.000218521 0.000175487 0.0182818 0.0149087 28 2641 21 6.87369e+06 433189 531479. 1839.03 5.30 0.112064 0.0965753 24610 126494 -1 2376 21 1480 2673 221294 49018 0 0 221294 49018 2673 1950 0 0 9873 8464 0 0 14637 11517 0 0 2673 2118 0 0 98311 12076 0 0 93127 12893 0 0 2673 0 0 1193 1733 1733 11138 0 0 3.10561 3.10561 -111.14 -3.10561 0 0 648988. 2245.63 0.17 0.06 0.07 -1 -1 0.17 0.0141053 0.0124997 124 46 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 7.70 vpr 53.54 MiB -1 -1 0.10 17348 1 0.02 -1 -1 29640 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 15.1 MiB 3.29 1238 53.5 MiB 0.11 0.00 3.82834 -125.973 -3.82834 3.82834 0.68 0.000222365 0.000179449 0.0190954 0.015623 34 3433 24 6.87369e+06 307425 618332. 2139.56 1.82 0.0837823 0.0717143 25762 151098 -1 2771 26 2395 3772 361082 77419 0 0 361082 77419 3772 3205 0 0 14636 13259 0 0 25080 19361 0 0 3772 3316 0 0 156736 18849 0 0 157086 19429 0 0 3772 0 0 1377 1583 1542 11100 0 0 4.28295 4.28295 -150.415 -4.28295 0 0 787024. 2723.27 0.30 0.10 0.14 -1 -1 0.30 0.0175209 0.0153702 148 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 10.19 vpr 53.77 MiB -1 -1 0.17 17516 1 0.01 -1 -1 29648 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55056 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 15.3 MiB 3.90 1052 53.8 MiB 0.05 0.00 3.24063 -111.082 -3.24063 3.24063 0.66 0.000129982 0.000104206 0.00726436 0.00595593 28 2605 25 6.87369e+06 503058 531479. 1839.03 3.50 0.109764 0.0956977 24610 126494 -1 2203 21 1554 2632 184428 43292 0 0 184428 43292 2632 1968 0 0 9773 8358 0 0 14330 11615 0 0 2632 2174 0 0 76344 9998 0 0 78717 9179 0 0 2632 0 0 1078 1436 1456 9592 0 0 3.11326 3.11326 -124.534 -3.11326 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0170576 0.0150238 147 59 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.13 vpr 53.02 MiB -1 -1 0.11 17332 1 0.01 -1 -1 29712 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54296 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 14.4 MiB 2.15 681 53.0 MiB 0.08 0.00 3.00718 -92.4009 -3.00718 3.00718 1.03 0.000195768 0.00016073 0.0160175 0.0131255 32 1649 21 6.87369e+06 265503 586450. 2029.24 0.97 0.0497691 0.0421029 25474 144626 -1 1396 18 1154 1645 105816 25154 0 0 105816 25154 1645 1376 0 0 5837 4736 0 0 8935 6635 0 0 1645 1492 0 0 41545 6091 0 0 46209 4824 0 0 1645 0 0 491 603 560 4395 0 0 3.07126 3.07126 -108.421 -3.07126 0 0 744469. 2576.02 0.19 0.03 0.08 -1 -1 0.19 0.00664976 0.00590486 101 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.98 vpr 53.27 MiB -1 -1 0.13 17272 1 0.01 -1 -1 29728 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54544 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 14.7 MiB 2.03 936 53.3 MiB 0.09 0.00 3.5666 -104.213 -3.5666 3.5666 0.86 0.000206714 0.000165176 0.0164568 0.0133742 34 2272 24 6.87369e+06 237555 618332. 2139.56 3.18 0.0952992 0.0796767 25762 151098 -1 2013 23 1271 1787 167017 36120 0 0 167017 36120 1787 1462 0 0 6811 5944 0 0 11211 8846 0 0 1787 1534 0 0 73537 8961 0 0 71884 9373 0 0 1787 0 0 516 548 614 4497 0 0 3.26591 3.26591 -123.624 -3.26591 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0136903 0.0119707 112 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.57 vpr 53.68 MiB -1 -1 0.16 17508 1 0.02 -1 -1 29724 -1 -1 39 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 15.2 MiB 2.07 991 53.7 MiB 0.13 0.00 3.70112 -107.819 -3.70112 3.70112 0.85 0.000210544 0.00017041 0.0187533 0.0151664 26 2400 22 6.87369e+06 544980 503264. 1741.40 1.69 0.0687182 0.0591734 24322 120374 -1 2374 25 1748 3186 282459 62113 0 0 282459 62113 3186 2190 0 0 12128 10450 0 0 19640 14937 0 0 3186 2525 0 0 127564 15649 0 0 116755 16362 0 0 3186 0 0 1438 2062 2388 14370 0 0 4.2536 4.2536 -136.815 -4.2536 0 0 618332. 2139.56 0.25 0.09 0.11 -1 -1 0.25 0.0170456 0.0150078 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 9.13 vpr 53.28 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29824 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54556 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 14.9 MiB 4.32 782 53.3 MiB 0.09 0.00 3.70248 -99.3179 -3.70248 3.70248 1.02 0.000189983 0.000153398 0.0156987 0.0129134 34 2018 22 6.87369e+06 265503 618332. 2139.56 1.49 0.0677992 0.0576148 25762 151098 -1 1694 20 1142 1501 109937 26257 0 0 109937 26257 1501 1311 0 0 5872 5092 0 0 8463 6971 0 0 1501 1332 0 0 48662 5372 0 0 43938 6179 0 0 1501 0 0 359 372 362 3364 0 0 3.57416 3.57416 -112.2 -3.57416 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.0110959 0.00981916 107 25 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 10.36 vpr 53.37 MiB -1 -1 0.12 17428 1 0.01 -1 -1 29632 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54652 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 14.9 MiB 3.91 831 53.4 MiB 0.06 0.00 3.31093 -106.353 -3.31093 3.31093 1.03 0.000204835 0.000167857 0.0101536 0.00846684 34 2065 20 6.87369e+06 209608 618332. 2139.56 3.16 0.112057 0.0956127 25762 151098 -1 1763 21 1367 2299 163669 38843 0 0 163669 38843 2299 1776 0 0 8709 7754 0 0 14016 11016 0 0 2299 1889 0 0 68287 7977 0 0 68059 8431 0 0 2299 0 0 932 963 1044 7516 0 0 3.07926 3.07926 -118.486 -3.07926 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0118626 0.0104516 101 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.29 vpr 53.66 MiB -1 -1 0.17 17500 1 0.02 -1 -1 29796 -1 -1 37 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54948 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 15.1 MiB 2.41 878 53.7 MiB 0.05 0.00 2.98998 -98.475 -2.98998 2.98998 0.60 0.000131701 0.00010577 0.00710098 0.00581868 30 2122 25 6.87369e+06 517032 556674. 1926.21 1.68 0.0573356 0.0483445 25186 138497 -1 1689 21 1261 2093 99725 25261 0 0 99725 25261 2093 1346 0 0 6894 5420 0 0 9184 7247 0 0 2093 1536 0 0 39258 4735 0 0 40203 4977 0 0 2093 0 0 832 957 1192 7832 0 0 2.82116 2.82116 -111.436 -2.82116 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00911486 0.00802932 141 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.03 vpr 53.27 MiB -1 -1 0.16 17488 1 0.01 -1 -1 29744 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54548 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 14.6 MiB 2.83 795 53.3 MiB 0.04 0.00 2.9066 -92.1144 -2.9066 2.9066 0.76 9.6921e-05 7.7512e-05 0.00646325 0.00530945 34 2177 23 6.87369e+06 237555 618332. 2139.56 0.89 0.0349836 0.0294277 25762 151098 -1 1800 21 1298 1862 140851 33717 0 0 140851 33717 1862 1663 0 0 7211 6359 0 0 10841 8766 0 0 1862 1739 0 0 59065 8116 0 0 60010 7074 0 0 1862 0 0 564 637 423 4614 0 0 3.13061 3.13061 -113.318 -3.13061 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00727698 0.00645029 105 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.76 vpr 53.73 MiB -1 -1 0.16 17448 1 0.01 -1 -1 29656 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55024 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 15.2 MiB 3.93 1030 53.7 MiB 0.11 0.00 2.9036 -95.9238 -2.9036 2.9036 0.67 0.000260876 0.000215877 0.0176592 0.0145357 28 2557 23 6.87369e+06 433189 531479. 1839.03 1.16 0.0678486 0.0583805 24610 126494 -1 2203 19 1145 1859 151497 33599 0 0 151497 33599 1859 1393 0 0 7163 6115 0 0 10599 8619 0 0 1859 1498 0 0 65738 7895 0 0 64279 8079 0 0 1859 0 0 714 1036 1110 7579 0 0 2.99431 2.99431 -113.522 -2.99431 0 0 648988. 2245.63 0.28 0.06 0.12 -1 -1 0.28 0.0151942 0.0134851 129 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 11.20 vpr 53.81 MiB -1 -1 0.17 17608 1 0.01 -1 -1 29856 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55104 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 15.2 MiB 4.40 955 53.8 MiB 0.13 0.00 2.9696 -102.734 -2.9696 2.9696 1.02 0.000266893 0.000217574 0.0234418 0.0193249 28 2467 22 6.87369e+06 447163 531479. 1839.03 3.37 0.142506 0.121695 24610 126494 -1 2093 22 1726 2507 185498 43430 0 0 185498 43430 2507 1984 0 0 9470 8050 0 0 14617 11586 0 0 2507 2134 0 0 78374 10066 0 0 78023 9610 0 0 2507 0 0 781 1105 1147 7832 0 0 3.31091 3.31091 -130.32 -3.31091 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0176063 0.0154009 137 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 8.41 vpr 53.28 MiB -1 -1 0.13 17512 1 0.01 -1 -1 29768 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 14.8 MiB 3.10 819 53.3 MiB 0.09 0.00 2.8516 -92.7534 -2.8516 2.8516 1.02 0.000209463 0.000170503 0.0180785 0.0148274 30 1930 23 6.87369e+06 223581 556674. 1926.21 2.24 0.0946828 0.0806244 25186 138497 -1 1623 20 830 1320 82875 19927 0 0 82875 19927 1320 1013 0 0 4657 3851 0 0 5949 4974 0 0 1320 1042 0 0 34244 4806 0 0 35385 4241 0 0 1320 0 0 490 413 376 3715 0 0 2.68771 2.68771 -105.859 -2.68771 0 0 706193. 2443.58 0.19 0.03 0.07 -1 -1 0.19 0.00822083 0.00728459 99 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 5.03 vpr 53.46 MiB -1 -1 0.12 17488 1 0.02 -1 -1 29716 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 14.8 MiB 1.50 981 53.5 MiB 0.04 0.00 3.23579 -105.228 -3.23579 3.23579 0.60 0.000108679 8.7639e-05 0.00826515 0.00674072 34 2290 20 6.87369e+06 251529 618332. 2139.56 1.37 0.061191 0.0519113 25762 151098 -1 1986 20 1351 1999 150751 35556 0 0 150751 35556 1999 1831 0 0 7838 6855 0 0 11601 9505 0 0 1999 1885 0 0 64085 7809 0 0 63229 7671 0 0 1999 0 0 648 597 515 5055 0 0 3.19461 3.19461 -123.996 -3.19461 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00761592 0.00675354 114 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.24 vpr 53.55 MiB -1 -1 0.17 17272 1 0.01 -1 -1 29768 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 15.1 MiB 3.48 1165 53.5 MiB 0.11 0.00 3.74448 -111.968 -3.74448 3.74448 0.79 0.000221149 0.000178478 0.0193309 0.015828 34 2664 42 6.87369e+06 307425 618332. 2139.56 1.74 0.0981588 0.0834404 25762 151098 -1 2259 22 1602 2198 163056 38035 0 0 163056 38035 2198 1872 0 0 8291 7281 0 0 12981 10261 0 0 2198 1957 0 0 68666 8653 0 0 68722 8011 0 0 2198 0 0 596 562 721 5275 0 0 3.89976 3.89976 -133.355 -3.89976 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0161755 0.0143642 132 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 9.65 vpr 53.52 MiB -1 -1 0.12 17484 1 0.01 -1 -1 29792 -1 -1 29 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54808 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 15.1 MiB 3.30 1013 53.5 MiB 0.10 0.00 3.20763 -94.5511 -3.20763 3.20763 1.01 0.000217462 0.000175616 0.0169333 0.0138278 28 2148 20 6.87369e+06 405241 531479. 1839.03 3.12 0.112666 0.096395 24610 126494 -1 2036 21 1218 2071 151512 35603 0 0 151512 35603 2071 1516 0 0 7919 6901 0 0 12312 9881 0 0 2071 1637 0 0 64110 7769 0 0 63029 7899 0 0 2071 0 0 853 1056 1252 8410 0 0 3.19661 3.19661 -109.699 -3.19661 0 0 648988. 2245.63 0.26 0.05 0.10 -1 -1 0.26 0.0135896 0.0119316 123 49 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 7.42 vpr 53.88 MiB -1 -1 0.16 17760 1 0.01 -1 -1 29824 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55172 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 15.4 MiB 2.76 1104 53.9 MiB 0.13 0.00 4.14151 -135.114 -4.14151 4.14151 0.87 0.000240221 0.000193037 0.0225565 0.0183907 34 2928 26 6.87369e+06 307425 618332. 2139.56 1.83 0.102897 0.0875984 25762 151098 -1 2398 22 1852 2823 227941 52725 0 0 227941 52725 2823 2366 0 0 10999 9718 0 0 16450 13391 0 0 2823 2438 0 0 96123 12952 0 0 98723 11860 0 0 2823 0 0 971 1260 1431 9185 0 0 4.18526 4.18526 -155.884 -4.18526 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0167519 0.0147345 151 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 6.43 vpr 53.05 MiB -1 -1 0.13 17056 1 0.02 -1 -1 29568 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54324 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 14.6 MiB 0.84 775 53.1 MiB 0.05 0.00 2.9769 -91.4677 -2.9769 2.9769 1.03 0.000183049 0.00014964 0.00738018 0.00624081 34 1732 23 6.87369e+06 237555 618332. 2139.56 2.67 0.0677893 0.0575209 25762 151098 -1 1578 21 894 1392 106405 24485 0 0 106405 24485 1392 1109 0 0 5274 4580 0 0 8081 6336 0 0 1392 1136 0 0 45497 5381 0 0 44769 5943 0 0 1392 0 0 498 429 401 3856 0 0 3.06361 3.06361 -104.923 -3.06361 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00653823 0.00580365 92 -1 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.55 vpr 53.95 MiB -1 -1 0.11 17944 1 0.01 -1 -1 29728 -1 -1 35 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 15.4 MiB 1.74 1043 54.0 MiB 0.13 0.00 3.50715 -118.565 -3.50715 3.50715 0.96 0.000255382 0.000206199 0.0225704 0.018476 30 2577 23 6.87369e+06 489084 556674. 1926.21 0.89 0.0565555 0.0475642 25186 138497 -1 2070 22 1392 2083 128229 30275 0 0 128229 30275 2083 1630 0 0 7217 5946 0 0 9411 7792 0 0 2083 1766 0 0 51655 7033 0 0 55780 6108 0 0 2083 0 0 691 871 796 6313 0 0 3.604 3.604 -136.718 -3.604 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.0100192 0.00877839 145 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.79 vpr 53.40 MiB -1 -1 0.16 17464 1 0.01 -1 -1 29812 -1 -1 16 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 14.9 MiB 5.20 824 53.4 MiB 0.06 0.00 2.9898 -108.824 -2.9898 2.9898 0.88 0.000127893 0.000102447 0.0123306 0.0101166 34 2042 22 6.87369e+06 223581 618332. 2139.56 1.45 0.0750865 0.0629701 25762 151098 -1 1812 17 1318 1882 136339 32718 0 0 136339 32718 1882 1561 0 0 7333 6335 0 0 10689 8704 0 0 1882 1645 0 0 59178 6937 0 0 55375 7536 0 0 1882 0 0 564 668 667 5027 0 0 3.08861 3.08861 -127.948 -3.08861 0 0 787024. 2723.27 0.27 0.04 0.09 -1 -1 0.27 0.0114153 0.0102048 114 93 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 7.44 vpr 53.84 MiB -1 -1 0.17 17348 1 0.01 -1 -1 29760 -1 -1 32 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 15.2 MiB 3.58 999 53.8 MiB 0.07 0.00 3.24063 -103.886 -3.24063 3.24063 0.76 0.000124339 9.8965e-05 0.0107641 0.00867337 28 2765 40 6.87369e+06 447163 531479. 1839.03 1.05 0.0544147 0.0463006 24610 126494 -1 2150 22 1323 2098 173677 40872 0 0 173677 40872 2098 1559 0 0 8030 6790 0 0 11687 9585 0 0 2098 1707 0 0 72922 10801 0 0 76842 10430 0 0 2098 0 0 775 1158 1381 8390 0 0 3.23761 3.23761 -119.242 -3.23761 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0164308 0.0144053 134 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.45 vpr 53.95 MiB -1 -1 0.17 17912 1 0.02 -1 -1 29800 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 15.4 MiB 3.72 1293 54.0 MiB 0.14 0.00 4.81535 -150.135 -4.81535 4.81535 0.77 0.000263451 0.000215437 0.02205 0.0182443 34 3386 31 6.87369e+06 349346 618332. 2139.56 1.97 0.108766 0.0940096 25762 151098 -1 2827 23 2184 3190 230789 54395 0 0 230789 54395 3190 2690 0 0 12317 10747 0 0 18841 14987 0 0 3190 2751 0 0 97683 11368 0 0 95568 11852 0 0 3190 0 0 1006 1404 1473 9713 0 0 5.1828 5.1828 -169.052 -5.1828 0 0 787024. 2723.27 0.26 0.05 0.13 -1 -1 0.26 0.0110494 0.00977282 171 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.16 vpr 53.02 MiB -1 -1 0.14 17084 1 0.02 -1 -1 29664 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54292 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 14.6 MiB 1.60 604 53.0 MiB 0.04 0.00 2.36426 -73.9802 -2.36426 2.36426 0.79 8.5533e-05 6.6156e-05 0.00697738 0.00550236 30 1673 21 6.87369e+06 209608 556674. 1926.21 0.74 0.0303942 0.025592 25186 138497 -1 1250 16 685 914 52790 13704 0 0 52790 13704 914 784 0 0 3256 2799 0 0 4244 3562 0 0 914 816 0 0 19502 3034 0 0 23960 2709 0 0 914 0 0 229 194 242 2037 0 0 2.31647 2.31647 -90.689 -2.31647 0 0 706193. 2443.58 0.28 0.03 0.10 -1 -1 0.28 0.00823337 0.00730599 81 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.73 vpr 53.26 MiB -1 -1 0.14 17352 1 0.01 -1 -1 29788 -1 -1 19 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54540 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 14.8 MiB 1.09 800 53.3 MiB 0.07 0.00 3.14163 -97.682 -3.14163 3.14163 0.86 0.000192109 0.00015472 0.0123993 0.010137 28 1828 22 6.87369e+06 265503 531479. 1839.03 1.98 0.0688661 0.05759 24610 126494 -1 1682 20 1107 1690 121617 28356 0 0 121617 28356 1690 1472 0 0 6093 5081 0 0 8860 7055 0 0 1690 1532 0 0 50957 6817 0 0 52327 6399 0 0 1690 0 0 583 798 739 5366 0 0 3.23591 3.23591 -119.379 -3.23591 0 0 648988. 2245.63 0.25 0.05 0.11 -1 -1 0.25 0.0120459 0.0106293 105 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 7.29 vpr 53.41 MiB -1 -1 0.11 17480 1 0.01 -1 -1 29660 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54688 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 14.9 MiB 1.32 763 53.4 MiB 0.11 0.00 2.9879 -98.7798 -2.9879 2.9879 1.03 0.000206305 0.000166632 0.0187793 0.0153769 30 2005 20 6.87369e+06 321398 556674. 1926.21 2.82 0.0869232 0.0734732 25186 138497 -1 1636 19 1097 1928 120294 28830 0 0 120294 28830 1928 1368 0 0 6816 5861 0 0 9119 7494 0 0 1928 1470 0 0 53434 6087 0 0 47069 6550 0 0 1928 0 0 831 982 868 6891 0 0 2.83601 2.83601 -112.747 -2.83601 0 0 706193. 2443.58 0.21 0.03 0.08 -1 -1 0.21 0.00724392 0.00640095 109 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 7.95 vpr 52.97 MiB -1 -1 0.15 17220 1 0.02 -1 -1 29768 -1 -1 29 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54240 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 14.5 MiB 0.99 503 53.0 MiB 0.06 0.00 2.9029 -67.8932 -2.9029 2.9029 0.96 0.000156335 0.000120511 0.010842 0.00885309 28 1563 26 6.87369e+06 405241 531479. 1839.03 3.79 0.0752292 0.0645469 24610 126494 -1 1331 18 872 1441 108449 28078 0 0 108449 28078 1441 1093 0 0 5328 4487 0 0 7831 6280 0 0 1441 1180 0 0 44127 8003 0 0 48281 7035 0 0 1441 0 0 569 713 761 5470 0 0 3.14686 3.14686 -83.2123 -3.14686 0 0 648988. 2245.63 0.28 0.05 0.11 -1 -1 0.28 0.0100701 0.00893635 87 19 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.25 vpr 53.64 MiB -1 -1 0.16 17576 1 0.01 -1 -1 29772 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 15.0 MiB 3.44 1122 53.6 MiB 0.08 0.00 3.51745 -111.635 -3.51745 3.51745 0.91 0.000135598 0.000109964 0.014376 0.0118103 34 3131 24 6.87369e+06 279477 618332. 2139.56 1.70 0.0905347 0.0766363 25762 151098 -1 2635 23 1577 2797 224330 50755 0 0 224330 50755 2797 2068 0 0 10812 9638 0 0 15904 12862 0 0 2797 2281 0 0 94551 12136 0 0 97469 11770 0 0 2797 0 0 1220 1328 1339 9512 0 0 3.94906 3.94906 -137.199 -3.94906 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0192126 0.0169957 133 69 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.97 vpr 54.09 MiB -1 -1 0.12 17540 1 0.01 -1 -1 29804 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55384 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 15.5 MiB 3.69 831 54.1 MiB 0.10 0.00 3.22963 -104.732 -3.22963 3.22963 0.81 0.000256123 0.000207469 0.0171651 0.0140117 34 2325 25 6.87369e+06 433189 618332. 2139.56 1.67 0.0955162 0.0805292 25762 151098 -1 1808 23 1723 2673 167907 42944 0 0 167907 42944 2673 1981 0 0 10057 8816 0 0 15179 12017 0 0 2673 2151 0 0 71443 8541 0 0 65882 9438 0 0 2673 0 0 950 1162 1418 8665 0 0 3.16561 3.16561 -124.387 -3.16561 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.0105501 0.00922354 143 86 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.62 vpr 53.35 MiB -1 -1 0.14 17448 1 0.01 -1 -1 29764 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 14.9 MiB 3.37 1074 53.4 MiB 0.10 0.00 4.13577 -121.807 -4.13577 4.13577 1.01 0.000242785 0.000196333 0.0165035 0.0135581 34 3403 41 6.89349e+06 338252 618332. 2139.56 2.09 0.0897508 0.0764608 25762 151098 -1 2245 20 1803 2651 179275 43921 0 0 179275 43921 2651 2189 0 0 9758 8042 0 0 14873 11726 0 0 2651 2331 0 0 73684 10286 0 0 75658 9347 0 0 2651 0 0 848 989 872 7504 0 0 4.58769 4.58769 -146.271 -4.58769 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0153099 0.0136297 149 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.64 vpr 53.43 MiB -1 -1 0.09 17484 1 0.02 -1 -1 29728 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 14.9 MiB 2.19 1254 53.4 MiB 0.10 0.00 4.02498 -126.309 -4.02498 4.02498 0.89 0.000250603 0.00020513 0.0164795 0.0137658 34 3312 25 6.89349e+06 366440 618332. 2139.56 1.44 0.065343 0.0555342 25762 151098 -1 2577 23 2177 3158 261589 56057 0 0 261589 56057 3158 2543 0 0 11616 9467 0 0 18361 14119 0 0 3158 2803 0 0 117668 13206 0 0 107628 13919 0 0 3158 0 0 981 1018 809 7928 0 0 4.20433 4.20433 -145.367 -4.20433 0 0 787024. 2723.27 0.22 0.05 0.08 -1 -1 0.22 0.010863 0.00955457 156 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 5.66 vpr 53.29 MiB -1 -1 0.14 17348 1 0.01 -1 -1 29736 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54572 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 14.8 MiB 1.52 1006 53.3 MiB 0.05 0.00 3.40339 -101.578 -3.40339 3.40339 0.59 0.000110511 8.8296e-05 0.00705472 0.00577176 36 2302 27 6.89349e+06 295971 648988. 2245.63 1.71 0.062443 0.0536998 26050 158493 -1 2028 19 1088 1581 120553 26865 0 0 120553 26865 1581 1357 0 0 5849 4838 0 0 8516 6888 0 0 1581 1398 0 0 53097 5938 0 0 49929 6446 0 0 1581 0 0 493 418 552 4172 0 0 3.48415 3.48415 -114.847 -3.48415 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0123221 0.0109084 125 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 5.45 vpr 53.31 MiB -1 -1 0.14 17344 1 0.01 -1 -1 29792 -1 -1 24 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54588 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 14.8 MiB 1.96 938 53.3 MiB 0.04 0.00 3.88408 -104.409 -3.88408 3.88408 0.59 0.00011502 9.3544e-05 0.00727312 0.006031 34 2456 32 6.89349e+06 338252 618332. 2139.56 1.11 0.0429884 0.0363741 25762 151098 -1 2081 20 1405 2280 156307 37361 0 0 156307 37361 2280 1851 0 0 8459 6970 0 0 13121 10353 0 0 2280 1914 0 0 63369 8531 0 0 66798 7742 0 0 2280 0 0 875 971 1099 7543 0 0 3.7123 3.7123 -121.02 -3.7123 0 0 787024. 2723.27 0.20 0.04 0.10 -1 -1 0.20 0.00805952 0.00712935 134 25 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.30 vpr 53.44 MiB -1 -1 0.15 17632 1 0.01 -1 -1 29728 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54720 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 15.0 MiB 1.60 1199 53.4 MiB 0.08 0.00 4.11871 -123.223 -4.11871 4.11871 0.60 0.000120706 9.6552e-05 0.0118667 0.00972136 36 2882 21 6.89349e+06 324158 648988. 2245.63 3.98 0.128037 0.111611 26050 158493 -1 2613 21 1956 3587 314317 71447 0 0 314317 71447 3587 2687 0 0 12609 10435 0 0 20107 15123 0 0 3587 2860 0 0 137838 19701 0 0 136589 20641 0 0 3587 0 0 1631 1771 2460 14105 0 0 4.61689 4.61689 -154.977 -4.61689 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0149203 0.0132405 142 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 10.17 vpr 53.84 MiB -1 -1 0.17 17500 1 0.01 -1 -1 29700 -1 -1 33 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55128 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 15.1 MiB 2.74 1343 53.8 MiB 0.15 0.00 3.3598 -109.508 -3.3598 3.3598 0.93 0.000235674 0.000194775 0.0241819 0.0198852 36 2984 22 6.89349e+06 465097 648988. 2245.63 3.96 0.136147 0.11629 26050 158493 -1 2658 21 1679 2771 202037 44410 0 0 202037 44410 2771 2076 0 0 9916 8017 0 0 15158 11856 0 0 2771 2270 0 0 87160 10044 0 0 84261 10147 0 0 2771 0 0 1092 1274 1559 10158 0 0 3.35475 3.35475 -129.44 -3.35475 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0166381 0.0146082 162 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.10 vpr 52.95 MiB -1 -1 0.10 17500 1 0.01 -1 -1 29848 -1 -1 21 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54220 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 14.4 MiB 1.61 705 52.9 MiB 0.09 0.00 3.25123 -89.7042 -3.25123 3.25123 0.98 0.0001807 0.000146087 0.0166365 0.013679 34 1783 22 6.89349e+06 295971 618332. 2139.56 1.61 0.0743011 0.0634017 25762 151098 -1 1467 19 1038 1534 114034 26800 0 0 114034 26800 1534 1246 0 0 5838 4711 0 0 8937 6984 0 0 1534 1287 0 0 49188 5964 0 0 47003 6608 0 0 1534 0 0 496 626 539 4523 0 0 3.14496 3.14496 -102.712 -3.14496 0 0 787024. 2723.27 0.32 0.04 0.13 -1 -1 0.32 0.0109843 0.00970575 107 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 7.45 vpr 53.05 MiB -1 -1 0.15 16900 1 0.02 -1 -1 29704 -1 -1 32 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54320 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 14.6 MiB 0.99 845 53.0 MiB 0.12 0.00 2.5388 -79.243 -2.5388 2.5388 1.04 0.000206077 0.000166913 0.0176752 0.0142853 34 2144 21 6.89349e+06 451003 618332. 2139.56 3.32 0.113412 0.097367 25762 151098 -1 1793 18 1035 1784 132922 30153 0 0 132922 30153 1784 1248 0 0 6651 5376 0 0 10530 8195 0 0 1784 1370 0 0 53981 7633 0 0 58192 6331 0 0 1784 0 0 749 1087 1143 7929 0 0 2.59461 2.59461 -93.8446 -2.59461 0 0 787024. 2723.27 0.20 0.03 0.12 -1 -1 0.20 0.00654889 0.00577364 119 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.25 vpr 53.20 MiB -1 -1 0.17 17680 1 0.02 -1 -1 29780 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54476 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 14.6 MiB 1.66 1153 53.2 MiB 0.07 0.00 2.91975 -100.982 -2.91975 2.91975 0.96 0.000200265 0.00016211 0.0118766 0.00973572 34 2837 22 6.89349e+06 281877 618332. 2139.56 2.28 0.0828106 0.0714431 25762 151098 -1 2327 19 1541 2037 178946 37635 0 0 178946 37635 2037 1808 0 0 7480 6036 0 0 11228 8845 0 0 2037 1950 0 0 77749 9686 0 0 78415 9310 0 0 2037 0 0 496 581 517 4623 0 0 3.09376 3.09376 -122.503 -3.09376 0 0 787024. 2723.27 0.33 0.06 0.14 -1 -1 0.33 0.0145592 0.0129865 130 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.57 vpr 53.21 MiB -1 -1 0.15 17348 1 0.01 -1 -1 29656 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 14.7 MiB 2.16 1013 53.2 MiB 0.09 0.00 3.15648 -108.097 -3.15648 3.15648 1.02 0.000206225 0.000165695 0.0163377 0.0133716 34 2310 27 6.89349e+06 253689 618332. 2139.56 1.54 0.0671144 0.0569481 25762 151098 -1 2006 18 1038 1369 117976 25622 0 0 117976 25622 1369 1177 0 0 5245 4253 0 0 7903 6464 0 0 1369 1216 0 0 50092 6307 0 0 51998 6205 0 0 1369 0 0 331 335 286 3005 0 0 3.1052 3.1052 -122.291 -3.1052 0 0 787024. 2723.27 0.22 0.03 0.08 -1 -1 0.22 0.00767564 0.00681635 120 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 6.20 vpr 53.27 MiB -1 -1 0.16 17460 1 0.02 -1 -1 29744 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54544 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 14.7 MiB 1.74 1048 53.3 MiB 0.09 0.00 3.45767 -107.327 -3.45767 3.45767 0.82 0.000188637 0.000150757 0.016577 0.0134422 34 2430 50 6.89349e+06 295971 618332. 2139.56 1.70 0.0883862 0.0748669 25762 151098 -1 1992 22 1338 1798 149983 32290 0 0 149983 32290 1798 1589 0 0 6808 5372 0 0 10534 8264 0 0 1798 1689 0 0 64985 7688 0 0 64060 7688 0 0 1798 0 0 460 355 473 4006 0 0 3.3709 3.3709 -121.11 -3.3709 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0156894 0.0138782 124 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.13 vpr 53.07 MiB -1 -1 0.16 17496 1 0.01 -1 -1 29776 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 14.4 MiB 1.68 895 53.1 MiB 0.04 0.00 2.911 -90.6942 -2.911 2.911 0.65 0.000101062 8.1507e-05 0.00666905 0.00550891 34 2241 26 6.89349e+06 239595 618332. 2139.56 0.99 0.0376313 0.0316444 25762 151098 -1 1909 30 1290 1902 306107 137136 0 0 306107 137136 1902 1747 0 0 7038 5883 0 0 13092 9613 0 0 1902 1802 0 0 139005 55985 0 0 143168 62106 0 0 1902 0 0 612 654 645 5095 0 0 2.96246 2.96246 -109.446 -2.96246 0 0 787024. 2723.27 0.20 0.07 0.08 -1 -1 0.20 0.00920416 0.00802262 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 9.14 vpr 53.43 MiB -1 -1 0.18 17468 1 0.01 -1 -1 29652 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 14.9 MiB 2.63 870 53.4 MiB 0.09 0.00 3.19568 -99.9536 -3.19568 3.19568 1.02 0.000251738 0.000208053 0.0145172 0.01199 36 2654 41 6.89349e+06 324158 648988. 2245.63 3.06 0.117472 0.102542 26050 158493 -1 2040 24 1893 2910 249610 71465 0 0 249610 71465 2910 2541 0 0 10598 8559 0 0 16709 12944 0 0 2910 2568 0 0 107133 22855 0 0 109350 21998 0 0 2910 0 0 1017 1241 1244 8446 0 0 3.35361 3.35361 -122.515 -3.35361 0 0 828058. 2865.25 0.33 0.09 0.14 -1 -1 0.33 0.0168562 0.014763 143 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 10.14 vpr 53.64 MiB -1 -1 0.17 17572 1 0.02 -1 -1 29708 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 15.1 MiB 2.28 1386 53.6 MiB 0.11 0.00 4.29107 -130.142 -4.29107 4.29107 1.03 0.000156 0.000127364 0.0207112 0.0171161 36 2945 23 6.89349e+06 338252 648988. 2245.63 4.38 0.123284 0.105349 26050 158493 -1 2636 20 1633 2304 168849 37234 0 0 168849 37234 2304 2017 0 0 8459 6708 0 0 12135 9833 0 0 2304 2149 0 0 73058 7995 0 0 70589 8532 0 0 2304 0 0 671 766 506 5849 0 0 4.35865 4.35865 -150.072 -4.35865 0 0 828058. 2865.25 0.34 0.07 0.15 -1 -1 0.34 0.0157804 0.0139702 153 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.82 vpr 52.95 MiB -1 -1 0.13 17180 1 0.01 -1 -1 29760 -1 -1 18 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54224 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 14.4 MiB 2.46 704 53.0 MiB 0.06 0.00 2.55142 -77.0614 -2.55142 2.55142 1.03 0.000163036 0.000133227 0.010476 0.00868306 30 1851 23 6.89349e+06 253689 556674. 1926.21 2.11 0.0782693 0.0673202 25186 138497 -1 1585 18 921 1305 73645 18618 0 0 73645 18618 1305 1032 0 0 4612 3798 0 0 6241 5155 0 0 1305 1056 0 0 30007 3877 0 0 30175 3700 0 0 1305 0 0 384 315 274 3106 0 0 2.75381 2.75381 -92.3514 -2.75381 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0098607 0.00873188 102 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 9.11 vpr 53.55 MiB -1 -1 0.15 17352 1 0.01 -1 -1 29648 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 15.0 MiB 2.33 1236 53.5 MiB 0.15 0.00 3.3439 -110.389 -3.3439 3.3439 1.01 0.000262817 0.000214654 0.0237104 0.0193131 36 3167 26 6.89349e+06 338252 648988. 2245.63 3.41 0.116625 0.0996288 26050 158493 -1 2682 20 1967 3159 244738 53707 0 0 244738 53707 3159 2612 0 0 11320 9310 0 0 17379 13566 0 0 3159 2745 0 0 104946 12950 0 0 104775 12524 0 0 3159 0 0 1192 1542 1620 10965 0 0 4.04825 4.04825 -136.666 -4.04825 0 0 828058. 2865.25 0.33 0.05 0.14 -1 -1 0.33 0.0100515 0.00894841 159 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 7.23 vpr 53.66 MiB -1 -1 0.15 17648 1 0.01 -1 -1 29768 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 14.8 MiB 2.28 1095 53.7 MiB 0.12 0.00 3.18768 -106.074 -3.18768 3.18768 0.94 0.00023544 0.000190707 0.0208019 0.0170998 34 2889 44 6.89349e+06 310065 618332. 2139.56 2.01 0.0941943 0.0803917 25762 151098 -1 2370 22 1614 2390 207263 44221 0 0 207263 44221 2390 1958 0 0 8902 7419 0 0 13489 10746 0 0 2390 2074 0 0 89497 11301 0 0 90595 10723 0 0 2390 0 0 776 786 753 6257 0 0 3.09256 3.09256 -119.31 -3.09256 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0150877 0.0132847 142 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.04 vpr 53.49 MiB -1 -1 0.15 17404 1 0.01 -1 -1 29676 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 14.8 MiB 2.18 1169 53.5 MiB 0.11 0.00 2.80245 -103.106 -2.80245 2.80245 0.98 0.000209347 0.000169999 0.0186907 0.0153441 34 2726 25 6.89349e+06 295971 618332. 2139.56 1.71 0.0913716 0.0783756 25762 151098 -1 2291 18 1428 1883 140128 31562 0 0 140128 31562 1883 1608 0 0 6826 5588 0 0 10495 8170 0 0 1883 1663 0 0 60766 7094 0 0 58275 7439 0 0 1883 0 0 455 527 589 4738 0 0 2.93426 2.93426 -124.478 -2.93426 0 0 787024. 2723.27 0.21 0.04 0.14 -1 -1 0.21 0.00810422 0.0072353 131 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.52 vpr 52.70 MiB -1 -1 0.14 17012 1 0.01 -1 -1 29596 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53960 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 14.3 MiB 1.26 718 52.7 MiB 0.03 0.00 2.23253 -75.5919 -2.23253 2.23253 0.64 9.9142e-05 7.9156e-05 0.00586159 0.0047971 34 1620 20 6.89349e+06 211408 618332. 2139.56 1.82 0.0477288 0.0399476 25762 151098 -1 1345 19 693 794 54645 13502 0 0 54645 13502 794 726 0 0 3076 2518 0 0 4441 3650 0 0 794 740 0 0 22189 3141 0 0 23351 2727 0 0 794 0 0 101 101 81 1299 0 0 2.27547 2.27547 -88.6261 -2.27547 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00604207 0.00526035 82 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.49 vpr 53.23 MiB -1 -1 0.15 17460 1 0.02 -1 -1 29728 -1 -1 19 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54508 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 14.8 MiB 2.20 860 53.2 MiB 0.05 0.00 3.85262 -113.901 -3.85262 3.85262 0.74 0.000104918 8.3971e-05 0.0074209 0.00611495 32 2361 27 6.89349e+06 267783 586450. 2029.24 0.88 0.0334098 0.0280437 25474 144626 -1 1893 19 1347 2040 155760 38991 0 0 155760 38991 2040 1638 0 0 7927 6711 0 0 13860 10876 0 0 2040 1709 0 0 67386 8995 0 0 62507 9062 0 0 2040 0 0 693 896 684 5933 0 0 3.86955 3.86955 -140.226 -3.86955 0 0 744469. 2576.02 0.19 0.04 0.10 -1 -1 0.19 0.00772987 0.00687832 117 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 8.40 vpr 53.52 MiB -1 -1 0.16 17404 1 0.02 -1 -1 29736 -1 -1 34 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 15.0 MiB 1.42 1206 53.5 MiB 0.14 0.00 3.71813 -123.449 -3.71813 3.71813 0.95 0.000233032 0.000185965 0.0201552 0.0160875 34 2598 20 6.89349e+06 479191 618332. 2139.56 3.59 0.135494 0.115614 25762 151098 -1 2336 21 1583 2491 170179 39248 0 0 170179 39248 2491 1878 0 0 9305 7588 0 0 14059 11295 0 0 2491 2070 0 0 71564 8196 0 0 70269 8221 0 0 2491 0 0 908 1092 1313 8740 0 0 3.92214 3.92214 -144.991 -3.92214 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.0165404 0.0145834 151 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 7.81 vpr 53.67 MiB -1 -1 0.16 17764 1 0.02 -1 -1 29692 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54956 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 15.0 MiB 1.77 1226 53.7 MiB 0.12 0.00 3.66325 -110.377 -3.66325 3.66325 0.80 0.000246241 0.000198914 0.0190199 0.0155254 34 3359 47 6.89349e+06 324158 618332. 2139.56 2.77 0.11713 0.0999997 25762 151098 -1 2519 20 1864 2834 225271 49452 0 0 225271 49452 2834 2339 0 0 10495 8472 0 0 15580 12386 0 0 2834 2548 0 0 99660 11095 0 0 93868 12612 0 0 2834 0 0 970 1283 1233 8836 0 0 3.7504 3.7504 -132.333 -3.7504 0 0 787024. 2723.27 0.33 0.08 0.14 -1 -1 0.33 0.016988 0.015118 155 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 4.77 vpr 52.71 MiB -1 -1 0.10 17208 1 0.01 -1 -1 29692 -1 -1 19 26 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53976 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 14.2 MiB 1.26 439 52.7 MiB 0.03 0.00 2.20251 -59.6078 -2.20251 2.20251 0.62 7.4809e-05 5.8302e-05 0.00592281 0.00476435 34 1452 29 6.89349e+06 267783 618332. 2139.56 1.35 0.0362901 0.0305524 25762 151098 -1 1026 21 778 935 67682 17603 0 0 67682 17603 935 886 0 0 3491 2845 0 0 4994 4026 0 0 935 896 0 0 27010 4742 0 0 30317 4208 0 0 935 0 0 157 196 154 1792 0 0 2.51155 2.51155 -74.1485 -2.51155 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00602499 0.00524652 76 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.46 vpr 53.08 MiB -1 -1 0.15 17216 1 0.01 -1 -1 29724 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54352 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 14.7 MiB 1.05 958 53.1 MiB 0.08 0.00 3.52907 -103.902 -3.52907 3.52907 0.96 0.000199387 0.000163018 0.0136992 0.011316 30 2203 24 6.89349e+06 324158 556674. 1926.21 2.26 0.0825062 0.0702669 25186 138497 -1 1968 20 1098 2005 146923 33146 0 0 146923 33146 2005 1485 0 0 7009 5664 0 0 10401 8216 0 0 2005 1567 0 0 62184 8307 0 0 63319 7907 0 0 2005 0 0 907 1228 1120 7888 0 0 3.49265 3.49265 -118.851 -3.49265 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0121582 0.0107177 119 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.93 vpr 52.57 MiB -1 -1 0.12 16644 1 0.01 -1 -1 29508 -1 -1 12 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 53828 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 14.1 MiB 0.42 427 52.6 MiB 0.03 0.00 1.84032 -58.3789 -1.84032 1.84032 0.61 7.6876e-05 6.1183e-05 0.00519699 0.00420224 32 1430 27 6.89349e+06 169126 586450. 2029.24 0.83 0.0236403 0.019749 25474 144626 -1 1061 19 718 904 66578 18141 0 0 66578 18141 904 792 0 0 3620 3060 0 0 5801 4569 0 0 904 819 0 0 26579 4533 0 0 28770 4368 0 0 904 0 0 186 115 187 1812 0 0 2.14106 2.14106 -77.5833 -2.14106 0 0 744469. 2576.02 0.31 0.03 0.13 -1 -1 0.31 0.00790104 0.00694297 65 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.66 vpr 53.14 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29700 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54420 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 14.6 MiB 2.14 1070 53.1 MiB 0.05 0.00 3.87678 -111.974 -3.87678 3.87678 1.01 0.000123673 0.000100398 0.00804824 0.00668493 34 2391 22 6.89349e+06 281877 618332. 2139.56 1.23 0.0448119 0.0380036 25762 151098 -1 2092 19 1263 1811 130828 30314 0 0 130828 30314 1811 1445 0 0 6894 5596 0 0 10129 8241 0 0 1811 1505 0 0 54780 6849 0 0 55403 6678 0 0 1811 0 0 548 612 573 4912 0 0 3.82386 3.82386 -125.048 -3.82386 0 0 787024. 2723.27 0.28 0.06 0.13 -1 -1 0.28 0.01416 0.0126058 125 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.40 vpr 53.11 MiB -1 -1 0.12 17168 1 0.01 -1 -1 29744 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.6 MiB 0.81 885 53.1 MiB 0.07 0.00 2.6813 -84.5118 -2.6813 2.6813 0.60 0.000112484 8.8684e-05 0.0107977 0.00862547 28 2595 32 6.89349e+06 436909 531479. 1839.03 1.05 0.0502666 0.0428419 24610 126494 -1 2132 24 1381 2449 219971 59204 0 0 219971 59204 2449 1862 0 0 9249 7463 0 0 14235 11451 0 0 2449 1993 0 0 97784 18033 0 0 93805 18402 0 0 2449 0 0 1068 1560 1696 10491 0 0 2.78605 2.78605 -106.419 -2.78605 0 0 648988. 2245.63 0.26 0.07 0.11 -1 -1 0.26 0.0147861 0.012924 130 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.87 vpr 53.53 MiB -1 -1 0.17 17464 1 0.02 -1 -1 29844 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 15.1 MiB 2.71 1137 53.5 MiB 0.05 0.00 3.79978 -110.194 -3.79978 3.79978 0.64 0.000137259 0.00010971 0.00830113 0.00686356 34 3082 30 6.89349e+06 324158 618332. 2139.56 1.64 0.0765169 0.0651541 25762 151098 -1 2425 19 1547 2378 177889 40338 0 0 177889 40338 2378 1925 0 0 8743 7240 0 0 13553 10568 0 0 2378 2072 0 0 76131 9330 0 0 74706 9203 0 0 2378 0 0 831 966 911 7142 0 0 3.9098 3.9098 -132.802 -3.9098 0 0 787024. 2723.27 0.20 0.04 0.12 -1 -1 0.20 0.00840805 0.00743711 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.11 vpr 53.16 MiB -1 -1 0.10 17652 1 0.02 -1 -1 29704 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54432 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 14.8 MiB 1.52 831 53.2 MiB 0.08 0.00 2.9839 -96.8671 -2.9839 2.9839 0.96 0.000193563 0.000158016 0.0150501 0.0123819 34 2164 45 6.89349e+06 239595 618332. 2139.56 1.76 0.0927643 0.0799584 25762 151098 -1 1693 20 1199 1678 120908 28928 0 0 120908 28928 1678 1329 0 0 6346 5224 0 0 9714 7716 0 0 1678 1366 0 0 52319 6633 0 0 49173 6660 0 0 1678 0 0 479 530 359 4180 0 0 3.09451 3.09451 -116.557 -3.09451 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0122712 0.0108388 112 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.54 vpr 52.98 MiB -1 -1 0.15 17600 1 0.01 -1 -1 29656 -1 -1 17 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54252 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 14.4 MiB 1.80 886 53.0 MiB 0.03 0.00 3.39112 -98.4611 -3.39112 3.39112 0.60 9.8357e-05 7.8589e-05 0.00547208 0.00447897 34 2212 27 6.89349e+06 239595 618332. 2139.56 1.45 0.0592335 0.0504573 25762 151098 -1 1908 20 1082 1768 141296 31314 0 0 141296 31314 1768 1392 0 0 6516 5249 0 0 10849 8271 0 0 1768 1483 0 0 60088 7504 0 0 60307 7415 0 0 1768 0 0 686 579 853 5712 0 0 3.19645 3.19645 -111.627 -3.19645 0 0 787024. 2723.27 0.27 0.05 0.08 -1 -1 0.27 0.0111489 0.00983372 104 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.55 vpr 53.06 MiB -1 -1 0.09 17564 1 0.01 -1 -1 29700 -1 -1 20 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54332 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 14.5 MiB 1.57 894 53.1 MiB 0.09 0.00 3.40424 -99.3533 -3.40424 3.40424 0.70 0.000179081 0.000145028 0.0153668 0.0125259 34 2223 38 6.89349e+06 281877 618332. 2139.56 1.47 0.0560951 0.0472551 25762 151098 -1 1914 20 1212 2027 171911 37394 0 0 171911 37394 2027 1650 0 0 7478 6268 0 0 12388 9398 0 0 2027 1791 0 0 74603 9261 0 0 73388 9026 0 0 2027 0 0 815 892 946 6928 0 0 3.46375 3.46375 -116.3 -3.46375 0 0 787024. 2723.27 0.30 0.06 0.08 -1 -1 0.30 0.0128175 0.0114128 107 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 4.44 vpr 52.95 MiB -1 -1 0.14 16900 1 0.01 -1 -1 29628 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54216 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 14.4 MiB 0.77 871 52.9 MiB 0.03 0.00 2.99448 -95.0416 -2.99448 2.99448 0.85 9.8352e-05 7.9381e-05 0.00487958 0.00400559 32 2044 23 6.89349e+06 239595 586450. 2029.24 0.73 0.0328082 0.0280043 25474 144626 -1 1846 18 1114 1840 130238 30576 0 0 130238 30576 1840 1479 0 0 7035 5922 0 0 11929 8963 0 0 1840 1570 0 0 52872 6484 0 0 54722 6158 0 0 1840 0 0 726 749 804 6001 0 0 3.02446 3.02446 -116.322 -3.02446 0 0 744469. 2576.02 0.29 0.05 0.13 -1 -1 0.29 0.0110513 0.00984735 101 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.91 vpr 53.09 MiB -1 -1 0.09 17532 1 0.02 -1 -1 29680 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54360 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 14.5 MiB 1.29 942 53.1 MiB 0.07 0.00 2.82865 -91.9426 -2.82865 2.82865 0.78 0.000182305 0.000146252 0.0106648 0.00880368 36 2163 18 6.89349e+06 253689 648988. 2245.63 3.84 0.0887778 0.0750529 26050 158493 -1 1917 18 968 1503 110708 25491 0 0 110708 25491 1503 1242 0 0 5551 4660 0 0 8948 7041 0 0 1503 1287 0 0 47181 5724 0 0 46022 5537 0 0 1503 0 0 535 504 685 4715 0 0 2.92736 2.92736 -109.689 -2.92736 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0121681 0.0108361 108 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.38 vpr 53.13 MiB -1 -1 0.09 17688 1 0.01 -1 -1 29796 -1 -1 22 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 14.7 MiB 2.14 981 53.1 MiB 0.06 0.00 2.71745 -86.963 -2.71745 2.71745 0.59 0.000102306 8.1846e-05 0.00980424 0.0079339 36 2048 21 6.89349e+06 310065 648988. 2245.63 1.09 0.0425335 0.0355929 26050 158493 -1 1817 16 1003 1381 91207 21266 0 0 91207 21266 1381 1158 0 0 5044 4123 0 0 7163 5857 0 0 1381 1218 0 0 38209 4611 0 0 38029 4299 0 0 1381 0 0 378 419 351 3463 0 0 2.52607 2.52607 -99.879 -2.52607 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00758057 0.00671722 120 48 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 8.51 vpr 53.51 MiB -1 -1 0.17 17512 1 0.02 -1 -1 29680 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 14.9 MiB 1.77 1160 53.5 MiB 0.04 0.00 3.68045 -107.365 -3.68045 3.68045 0.59 0.000137385 0.000112686 0.00693112 0.0057578 36 3000 22 6.89349e+06 352346 648988. 2245.63 4.15 0.123137 0.106688 26050 158493 -1 2443 20 1511 2650 194279 44861 0 0 194279 44861 2650 2134 0 0 9741 8004 0 0 14817 11724 0 0 2650 2242 0 0 82086 10657 0 0 82335 10100 0 0 2650 0 0 1139 1970 2287 12958 0 0 3.70076 3.70076 -124.487 -3.70076 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0187201 0.0167503 159 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 9.25 vpr 53.75 MiB -1 -1 0.16 17628 1 0.02 -1 -1 29804 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55040 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 15.4 MiB 2.58 1301 53.8 MiB 0.07 0.00 3.70207 -127.688 -3.70207 3.70207 0.62 0.000138037 0.000110946 0.0118526 0.00972743 44 2814 21 6.89349e+06 338252 787024. 2723.27 3.59 0.111272 0.09457 27778 195446 -1 2378 19 1782 2507 171830 39167 0 0 171830 39167 2507 1993 0 0 8861 7453 0 0 13093 10440 0 0 2507 2133 0 0 73557 8147 0 0 71305 9001 0 0 2507 0 0 725 790 936 6694 0 0 3.4231 3.4231 -131.564 -3.4231 0 0 997811. 3452.63 0.42 0.08 0.18 -1 -1 0.42 0.0225831 0.0205662 168 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.29 vpr 53.10 MiB -1 -1 0.15 17484 1 0.01 -1 -1 29736 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54376 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 14.5 MiB 1.60 907 53.1 MiB 0.11 0.00 3.21878 -100.089 -3.21878 3.21878 1.04 0.000206518 0.000169787 0.0174772 0.0143698 36 2128 18 6.89349e+06 253689 648988. 2245.63 2.53 0.0639866 0.053755 26050 158493 -1 1859 18 1137 1748 136573 29508 0 0 136573 29508 1748 1439 0 0 6199 5063 0 0 9197 7159 0 0 1748 1504 0 0 57784 7470 0 0 59897 6873 0 0 1748 0 0 611 806 900 5859 0 0 3.14876 3.14876 -114.562 -3.14876 0 0 828058. 2865.25 0.21 0.03 0.09 -1 -1 0.21 0.00671391 0.00596123 109 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 10.11 vpr 53.73 MiB -1 -1 0.18 17684 1 0.02 -1 -1 29844 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55016 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 15.0 MiB 2.75 1230 53.7 MiB 0.10 0.00 3.27699 -106.568 -3.27699 3.27699 0.93 0.000263608 0.0002161 0.0173711 0.0142151 36 2818 30 6.89349e+06 352346 648988. 2245.63 4.14 0.123648 0.104907 26050 158493 -1 2286 19 1634 2450 168339 38253 0 0 168339 38253 2450 1846 0 0 8960 7375 0 0 13067 10454 0 0 2450 1939 0 0 71137 8467 0 0 70275 8172 0 0 2450 0 0 816 863 753 7138 0 0 3.501 3.501 -124.998 -3.501 0 0 828058. 2865.25 0.25 0.04 0.12 -1 -1 0.25 0.0089263 0.00791012 160 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.29 vpr 53.70 MiB -1 -1 0.17 17536 1 0.02 -1 -1 29812 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54988 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 15.1 MiB 2.50 1226 53.7 MiB 0.07 0.00 4.36217 -133.609 -4.36217 4.36217 0.61 0.000129498 0.000104194 0.0117198 0.00956452 44 2841 21 6.89349e+06 352346 787024. 2723.27 4.13 0.147996 0.128771 27778 195446 -1 2413 22 1459 2211 170428 36474 0 0 170428 36474 2211 1759 0 0 7784 6427 0 0 11797 9285 0 0 2211 1857 0 0 72538 8798 0 0 73887 8348 0 0 2211 0 0 752 636 617 5720 0 0 4.32758 4.32758 -150.392 -4.32758 0 0 997811. 3452.63 0.27 0.04 0.11 -1 -1 0.27 0.0115312 0.0102838 163 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 7.51 vpr 53.66 MiB -1 -1 0.13 17356 1 0.01 -1 -1 29804 -1 -1 25 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 15.0 MiB 2.16 1136 53.7 MiB 0.14 0.00 4.83228 -137.855 -4.83228 4.83228 0.99 0.000257271 0.000209693 0.024536 0.0203521 34 3295 32 6.89349e+06 352346 618332. 2139.56 2.27 0.134679 0.11889 25762 151098 -1 2452 25 1996 3113 240599 54795 0 0 240599 54795 3113 2518 0 0 11704 9887 0 0 18635 14303 0 0 3113 2658 0 0 106880 11843 0 0 97154 13586 0 0 3113 0 0 1117 1094 1220 9228 0 0 5.14184 5.14184 -161.685 -5.14184 0 0 787024. 2723.27 0.32 0.09 0.14 -1 -1 0.32 0.0193884 0.0170826 166 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 9.66 vpr 53.45 MiB -1 -1 0.16 17680 1 0.01 -1 -1 29708 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54736 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 15.0 MiB 2.55 1149 53.5 MiB 0.11 0.00 3.17668 -100.859 -3.17668 3.17668 1.04 0.000252506 0.00020578 0.0174286 0.0145021 36 2709 21 6.89349e+06 338252 648988. 2245.63 3.84 0.126691 0.109394 26050 158493 -1 2223 23 1837 2713 190177 43987 0 0 190177 43987 2713 2225 0 0 9938 8205 0 0 15420 12081 0 0 2713 2501 0 0 78967 9870 0 0 80426 9105 0 0 2713 0 0 876 1154 1190 8209 0 0 3.15401 3.15401 -115.122 -3.15401 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00988806 0.00871854 148 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 9.84 vpr 53.14 MiB -1 -1 0.13 17512 1 0.02 -1 -1 29684 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54412 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 14.6 MiB 2.35 1148 53.1 MiB 0.12 0.00 3.67125 -104.708 -3.67125 3.67125 1.04 0.000218187 0.000176013 0.0200227 0.0163245 36 2356 33 6.89349e+06 281877 648988. 2245.63 4.08 0.113069 0.0967886 26050 158493 -1 2093 18 1015 1449 108278 23758 0 0 108278 23758 1449 1207 0 0 5264 4188 0 0 7971 6272 0 0 1449 1251 0 0 47244 5250 0 0 44901 5590 0 0 1449 0 0 434 427 497 3843 0 0 3.75796 3.75796 -123.379 -3.75796 0 0 828058. 2865.25 0.28 0.03 0.15 -1 -1 0.28 0.00837068 0.00746051 120 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 10.65 vpr 54.19 MiB -1 -1 0.17 17776 1 0.02 -1 -1 29880 -1 -1 31 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55492 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 15.4 MiB 2.85 1569 54.2 MiB 0.19 0.00 4.20371 -139.83 -4.20371 4.20371 1.04 0.000311503 0.000256105 0.0303189 0.0251896 36 3904 31 6.89349e+06 436909 648988. 2245.63 4.13 0.184058 0.158681 26050 158493 -1 3334 21 2411 3640 283556 62913 0 0 283556 62913 3640 3035 0 0 13295 11064 0 0 20260 15904 0 0 3640 3151 0 0 120773 15205 0 0 121948 14554 0 0 3640 0 0 1229 1697 1553 11803 0 0 4.50739 4.50739 -168.831 -4.50739 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0205891 0.018334 203 84 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.51 vpr 53.07 MiB -1 -1 0.13 17412 1 0.00 -1 -1 29680 -1 -1 18 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54344 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 14.4 MiB 1.83 841 53.1 MiB 0.07 0.00 2.974 -87.5987 -2.974 2.974 0.80 0.000164557 0.0001344 0.0130501 0.0109163 34 2031 21 6.89349e+06 253689 618332. 2139.56 1.53 0.0690413 0.0585877 25762 151098 -1 1753 18 1098 1531 103722 25560 0 0 103722 25560 1531 1350 0 0 5829 4768 0 0 8767 7041 0 0 1531 1437 0 0 42529 5642 0 0 43535 5322 0 0 1531 0 0 433 453 401 3698 0 0 2.92916 2.92916 -104.344 -2.92916 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.0109392 0.00966537 106 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 8.60 vpr 53.35 MiB -1 -1 0.14 17660 1 0.01 -1 -1 29688 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54628 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 15.0 MiB 1.92 1108 53.3 MiB 0.12 0.00 3.76442 -115.971 -3.76442 3.76442 1.04 0.000229651 0.000187026 0.0193184 0.0159488 36 2676 19 6.89349e+06 324158 648988. 2245.63 3.41 0.114513 0.0986431 26050 158493 -1 2372 17 1658 2545 222507 48295 0 0 222507 48295 2545 2075 0 0 9058 7324 0 0 14623 11100 0 0 2545 2196 0 0 95592 13094 0 0 98144 12506 0 0 2545 0 0 887 981 1095 7756 0 0 3.94416 3.94416 -133.53 -3.94416 0 0 828058. 2865.25 0.27 0.04 0.08 -1 -1 0.27 0.00793617 0.00706948 140 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 8.31 vpr 53.53 MiB -1 -1 0.16 17676 1 0.01 -1 -1 29672 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 15.0 MiB 2.79 1127 53.5 MiB 0.10 0.00 3.53859 -105.912 -3.53859 3.53859 1.02 0.00025331 0.000208607 0.0160985 0.0133633 34 3414 28 6.89349e+06 324158 618332. 2139.56 2.22 0.0888889 0.0771175 25762 151098 -1 2523 19 1596 2564 191068 43980 0 0 191068 43980 2564 2039 0 0 9453 7890 0 0 14007 11136 0 0 2564 2166 0 0 78598 10963 0 0 83882 9786 0 0 2564 0 0 968 1358 1316 8870 0 0 3.5973 3.5973 -125.137 -3.5973 0 0 787024. 2723.27 0.23 0.04 0.13 -1 -1 0.23 0.00865363 0.00767586 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.48 vpr 53.28 MiB -1 -1 0.15 17208 1 0.01 -1 -1 29688 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 14.8 MiB 0.73 898 53.3 MiB 0.08 0.00 3.37229 -103.179 -3.37229 3.37229 1.03 0.000123322 9.9471e-05 0.0130397 0.0107654 34 2348 19 6.89349e+06 366440 618332. 2139.56 1.42 0.0681348 0.0590077 25762 151098 -1 2062 18 1245 2273 174922 38768 0 0 174922 38768 2273 1768 0 0 8235 6659 0 0 12827 9887 0 0 2273 1870 0 0 74726 8824 0 0 74588 9760 0 0 2273 0 0 1028 1503 1559 9563 0 0 3.6434 3.6434 -122.954 -3.6434 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0129796 0.0115752 123 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 7.37 vpr 53.54 MiB -1 -1 0.14 17444 1 0.02 -1 -1 29744 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 15.1 MiB 2.27 1196 53.5 MiB 0.07 0.00 3.42271 -107.788 -3.42271 3.42271 1.01 0.000152554 0.000118522 0.0120141 0.00989982 34 2846 43 6.89349e+06 324158 618332. 2139.56 1.89 0.0981332 0.0849625 25762 151098 -1 2388 21 1627 2336 174963 39333 0 0 174963 39333 2336 1970 0 0 8679 7078 0 0 13088 10491 0 0 2336 2059 0 0 74810 8833 0 0 73714 8902 0 0 2336 0 0 709 923 851 6495 0 0 3.01616 3.01616 -117.193 -3.01616 0 0 787024. 2723.27 0.22 0.05 0.12 -1 -1 0.22 0.0112225 0.00998639 148 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.16 vpr 53.59 MiB -1 -1 0.15 17512 1 0.02 -1 -1 29684 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54876 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 15.1 MiB 2.01 1254 53.6 MiB 0.12 0.00 3.31619 -111.732 -3.31619 3.31619 1.03 0.000248754 0.000198261 0.0193816 0.0157585 34 3149 23 6.89349e+06 338252 618332. 2139.56 1.69 0.0844502 0.0717151 25762 151098 -1 2700 30 2143 3359 455969 169310 0 0 455969 169310 3359 2794 0 0 12313 10401 0 0 22313 16090 0 0 3359 2950 0 0 206658 72168 0 0 207967 64907 0 0 3359 0 0 1216 1720 1955 12582 0 0 3.7929 3.7929 -135.401 -3.7929 0 0 787024. 2723.27 0.31 0.15 0.13 -1 -1 0.31 0.0244527 0.0217695 154 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.65 vpr 53.62 MiB -1 -1 0.14 17564 1 0.01 -1 -1 29728 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54904 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 15.0 MiB 2.26 1256 53.6 MiB 0.10 0.00 3.32098 -109.299 -3.32098 3.32098 1.04 0.000246659 0.000197517 0.0153485 0.0127019 34 3218 47 6.89349e+06 366440 618332. 2139.56 1.93 0.0839436 0.072324 25762 151098 -1 2518 20 1700 2346 204384 44757 0 0 204384 44757 2346 1930 0 0 8993 7407 0 0 13908 11149 0 0 2346 2044 0 0 92461 10522 0 0 84330 11705 0 0 2346 0 0 646 768 758 6108 0 0 3.14076 3.14076 -125.569 -3.14076 0 0 787024. 2723.27 0.34 0.08 0.14 -1 -1 0.34 0.018719 0.0166642 164 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.08 vpr 53.13 MiB -1 -1 0.09 17492 1 0.01 -1 -1 29660 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54408 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 14.8 MiB 1.98 1069 53.1 MiB 0.11 0.00 3.61195 -110.865 -3.61195 3.61195 1.02 0.000215764 0.000174292 0.0187965 0.0153188 34 2563 29 6.89349e+06 295971 618332. 2139.56 1.74 0.0948287 0.0813599 25762 151098 -1 2118 20 1253 2010 145191 33359 0 0 145191 33359 2010 1643 0 0 7497 6144 0 0 11473 8983 0 0 2010 1716 0 0 60316 7771 0 0 61885 7102 0 0 2010 0 0 757 896 927 6598 0 0 3.85486 3.85486 -128.306 -3.85486 0 0 787024. 2723.27 0.33 0.06 0.14 -1 -1 0.33 0.0150346 0.0134022 128 21 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.83 vpr 53.32 MiB -1 -1 0.16 17648 1 0.01 -1 -1 29748 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54600 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 14.7 MiB 1.59 1182 53.3 MiB 0.04 0.00 3.80778 -115.304 -3.80778 3.80778 0.89 0.000113597 9.1165e-05 0.00609957 0.00501886 34 2770 33 6.89349e+06 310065 618332. 2139.56 1.36 0.0542114 0.0461922 25762 151098 -1 2206 21 1457 2109 142704 33649 0 0 142704 33649 2109 1718 0 0 7842 6599 0 0 11786 9345 0 0 2109 1797 0 0 59696 6773 0 0 59162 7417 0 0 2109 0 0 652 610 749 5424 0 0 3.65116 3.65116 -128.1 -3.65116 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0148739 0.0131963 135 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 7.92 vpr 53.51 MiB -1 -1 0.14 17612 1 0.02 -1 -1 29720 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54792 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 14.9 MiB 1.64 1341 53.5 MiB 0.08 0.00 3.81268 -118.418 -3.81268 3.81268 1.02 0.000259191 0.000211958 0.0133491 0.0110978 36 3099 21 6.89349e+06 338252 648988. 2245.63 2.92 0.11194 0.0981741 26050 158493 -1 2645 19 1342 2103 164724 35632 0 0 164724 35632 2103 1698 0 0 7715 6191 0 0 10960 8890 0 0 2103 1818 0 0 69772 8700 0 0 72071 8335 0 0 2103 0 0 761 978 825 6717 0 0 3.95749 3.95749 -138.01 -3.95749 0 0 828058. 2865.25 0.32 0.06 0.13 -1 -1 0.32 0.0157889 0.0140286 156 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 5.96 vpr 53.66 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29744 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54944 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 15.3 MiB 2.20 1289 53.7 MiB 0.07 0.00 3.68195 -115.399 -3.68195 3.68195 0.59 0.000131461 0.000105222 0.0119653 0.00974184 36 3078 30 6.89349e+06 352346 648988. 2245.63 1.43 0.0621357 0.0524659 26050 158493 -1 2595 19 1752 2596 177255 39808 0 0 177255 39808 2596 2122 0 0 9446 7572 0 0 13036 10530 0 0 2596 2228 0 0 75232 8840 0 0 74349 8516 0 0 2596 0 0 844 946 800 6958 0 0 3.90516 3.90516 -135.323 -3.90516 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00925573 0.00819719 166 74 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 8.66 vpr 52.93 MiB -1 -1 0.15 17228 1 0.01 -1 -1 29636 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54204 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 14.4 MiB 1.66 825 52.9 MiB 0.07 0.00 2.79059 -89.3741 -2.79059 2.79059 1.02 0.000179621 0.000144128 0.0107703 0.00881216 36 2004 24 6.89349e+06 211408 648988. 2245.63 3.75 0.0851701 0.0725616 26050 158493 -1 1721 17 871 1330 89303 20976 0 0 89303 20976 1330 1039 0 0 4830 3939 0 0 7031 5596 0 0 1330 1145 0 0 37930 4580 0 0 36852 4677 0 0 1330 0 0 459 364 621 4064 0 0 2.78591 2.78591 -101.635 -2.78591 0 0 828058. 2865.25 0.34 0.04 0.15 -1 -1 0.34 0.0104037 0.00929819 96 20 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 9.06 vpr 53.53 MiB -1 -1 0.09 17344 1 0.02 -1 -1 29708 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 15.1 MiB 1.50 1171 53.5 MiB 0.13 0.00 3.33199 -120.009 -3.33199 3.33199 0.98 0.000225309 0.000179584 0.0215197 0.0174104 36 2645 21 6.89349e+06 281877 648988. 2245.63 4.35 0.131329 0.112234 26050 158493 -1 2288 21 1923 2627 181110 41310 0 0 181110 41310 2627 2303 0 0 9386 7733 0 0 14091 10938 0 0 2627 2359 0 0 74310 9528 0 0 78069 8449 0 0 2627 0 0 704 663 569 5971 0 0 3.4952 3.4952 -140.286 -3.4952 0 0 828058. 2865.25 0.34 0.07 0.15 -1 -1 0.34 0.0157211 0.0139595 138 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 11.87 vpr 53.73 MiB -1 -1 0.14 17776 1 0.02 -1 -1 29760 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55020 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 15.0 MiB 2.29 1397 53.7 MiB 0.13 0.00 4.36852 -133.389 -4.36852 4.36852 1.02 0.0002847 0.000234523 0.0236477 0.0196377 30 3346 27 6.89349e+06 352346 556674. 1926.21 6.29 0.134085 0.115962 25186 138497 -1 2588 21 1614 2584 171784 38615 0 0 171784 38615 2584 2027 0 0 9118 7281 0 0 12601 10347 0 0 2584 2101 0 0 71276 8833 0 0 73621 8026 0 0 2584 0 0 970 1078 1018 7926 0 0 4.35235 4.35235 -151.453 -4.35235 0 0 706193. 2443.58 0.24 0.06 0.12 -1 -1 0.24 0.0168104 0.0148487 168 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.32 vpr 53.39 MiB -1 -1 0.16 17676 1 0.01 -1 -1 29692 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54672 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 15.0 MiB 2.34 1020 53.4 MiB 0.06 0.00 3.41266 -109.233 -3.41266 3.41266 0.59 0.000121113 9.7155e-05 0.00944988 0.00781117 34 2670 27 6.89349e+06 310065 618332. 2139.56 1.19 0.0459084 0.0388544 25762 151098 -1 2201 22 1562 2325 197483 43394 0 0 197483 43394 2325 1967 0 0 8623 7146 0 0 13972 10832 0 0 2325 2024 0 0 84950 10680 0 0 85288 10745 0 0 2325 0 0 763 970 916 6956 0 0 3.12396 3.12396 -122.307 -3.12396 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0151268 0.0133229 144 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.89 vpr 53.21 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29688 -1 -1 27 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 14.8 MiB 1.69 858 53.2 MiB 0.06 0.00 3.30514 -101.719 -3.30514 3.30514 0.63 0.000105275 8.4769e-05 0.00931499 0.00751433 34 2437 45 6.89349e+06 380534 618332. 2139.56 1.39 0.0476355 0.0401245 25762 151098 -1 1827 20 1249 1997 150353 33886 0 0 150353 33886 1997 1533 0 0 7357 6061 0 0 11454 8884 0 0 1997 1668 0 0 64574 7864 0 0 62974 7876 0 0 1997 0 0 748 844 1012 7233 0 0 3.22315 3.22315 -118.879 -3.22315 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0125081 0.0110939 118 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.69 vpr 54.21 MiB -1 -1 0.13 17668 1 0.01 -1 -1 29820 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55508 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 15.4 MiB 3.20 1543 54.2 MiB 0.16 0.00 5.17195 -150.574 -5.17195 5.17195 1.01 0.000285112 0.000226648 0.0255105 0.0206938 36 3867 33 6.89349e+06 380534 648988. 2245.63 4.07 0.153466 0.134175 26050 158493 -1 3151 22 2533 4065 341931 72266 0 0 341931 72266 4065 3387 0 0 14566 12025 0 0 22784 17478 0 0 4065 3578 0 0 148670 18012 0 0 147781 17786 0 0 4065 0 0 1532 2080 2302 13919 0 0 5.38033 5.38033 -182.712 -5.38033 0 0 828058. 2865.25 0.32 0.10 0.10 -1 -1 0.32 0.0215535 0.0192658 188 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.99 vpr 53.34 MiB -1 -1 0.13 17652 1 0.01 -1 -1 29748 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54620 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 14.7 MiB 1.31 1192 53.3 MiB 0.11 0.00 3.69702 -117.645 -3.69702 3.69702 0.76 0.000216137 0.000175145 0.0196889 0.016205 34 2827 23 6.89349e+06 295971 618332. 2139.56 1.90 0.0959973 0.0826969 25762 151098 -1 2325 21 1799 2505 225351 46877 0 0 225351 46877 2505 2094 0 0 9310 7488 0 0 13601 10703 0 0 2505 2166 0 0 97636 12870 0 0 99794 11556 0 0 2505 0 0 706 1102 1106 7391 0 0 3.8624 3.8624 -136.496 -3.8624 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0171584 0.0153245 139 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 6.69 vpr 52.90 MiB -1 -1 0.14 17056 1 0.01 -1 -1 29520 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54172 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 14.5 MiB 0.62 777 52.9 MiB 0.07 0.00 2.8828 -82.7469 -2.8828 2.8828 0.92 0.000163446 0.000131286 0.0114488 0.00932975 36 1693 19 6.89349e+06 338252 648988. 2245.63 3.57 0.0933502 0.0800348 26050 158493 -1 1462 18 760 1349 101773 23317 0 0 101773 23317 1349 942 0 0 5032 3839 0 0 7733 5957 0 0 1349 1041 0 0 42906 5841 0 0 43404 5697 0 0 1349 0 0 589 768 1063 5761 0 0 2.68771 2.68771 -93.7601 -2.68771 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00571772 0.00504754 94 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.84 vpr 53.50 MiB -1 -1 0.12 17632 1 0.01 -1 -1 29712 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54788 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 15.0 MiB 2.00 1302 53.5 MiB 0.08 0.00 4.35947 -122.008 -4.35947 4.35947 0.73 0.000132433 0.000107242 0.0129895 0.0106359 36 2896 20 6.89349e+06 324158 648988. 2245.63 2.28 0.0722047 0.0620703 26050 158493 -1 2498 19 1439 2641 217566 46499 0 0 217566 46499 2641 1965 0 0 9670 7917 0 0 15307 11974 0 0 2641 2058 0 0 92358 11658 0 0 94949 10927 0 0 2641 0 0 1202 2361 2188 13730 0 0 4.69205 4.69205 -144.42 -4.69205 0 0 828058. 2865.25 0.23 0.04 0.08 -1 -1 0.23 0.0086395 0.00766833 149 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.12 vpr 52.88 MiB -1 -1 0.13 17076 1 0.01 -1 -1 29644 -1 -1 19 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54144 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 14.4 MiB 0.81 662 52.9 MiB 0.05 0.00 2.81765 -86.357 -2.81765 2.81765 0.90 0.000100818 8.1591e-05 0.00866221 0.00716142 34 1820 21 6.89349e+06 267783 618332. 2139.56 1.17 0.0375979 0.032057 25762 151098 -1 1470 21 1109 1988 137444 34292 0 0 137444 34292 1988 1556 0 0 7494 6265 0 0 11546 9095 0 0 1988 1661 0 0 54666 7808 0 0 59762 7907 0 0 1988 0 0 879 921 962 7206 0 0 2.79011 2.79011 -102.108 -2.79011 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0126794 0.0113153 98 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.18 vpr 53.12 MiB -1 -1 0.14 17468 1 0.01 -1 -1 29716 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54392 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 14.5 MiB 1.27 746 53.1 MiB 0.09 0.00 3.17368 -91.5842 -3.17368 3.17368 0.96 0.000179242 0.000146883 0.0156866 0.0129321 34 1911 35 6.89349e+06 281877 618332. 2139.56 1.84 0.0868886 0.0752164 25762 151098 -1 1547 21 1149 1675 119586 30288 0 0 119586 30288 1675 1282 0 0 6321 5119 0 0 9886 7720 0 0 1675 1310 0 0 53592 7460 0 0 46437 7397 0 0 1675 0 0 526 710 723 5202 0 0 3.11381 3.11381 -106.465 -3.11381 0 0 787024. 2723.27 0.31 0.05 0.13 -1 -1 0.31 0.012504 0.0109989 113 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 6.70 vpr 53.50 MiB -1 -1 0.16 17560 1 0.01 -1 -1 29708 -1 -1 26 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 15.0 MiB 3.02 1012 53.5 MiB 0.07 0.00 3.48129 -103.311 -3.48129 3.48129 0.63 0.000127092 0.000102511 0.0112094 0.00919726 34 3094 48 6.89349e+06 366440 618332. 2139.56 1.42 0.0627262 0.053019 25762 151098 -1 2263 19 1468 2167 142023 34957 0 0 142023 34957 2167 1839 0 0 7934 6536 0 0 11981 9556 0 0 2167 1899 0 0 56728 7580 0 0 61046 7547 0 0 2167 0 0 699 692 621 5577 0 0 3.67235 3.67235 -123.064 -3.67235 0 0 787024. 2723.27 0.21 0.04 0.08 -1 -1 0.21 0.00895639 0.00793833 155 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.00 vpr 53.56 MiB -1 -1 0.15 17468 1 0.01 -1 -1 29776 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54844 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 15.0 MiB 1.60 1138 53.6 MiB 0.10 0.00 4.11834 -129.007 -4.11834 4.11834 0.96 0.000232529 0.000189646 0.0173361 0.014279 36 3020 25 6.89349e+06 310065 648988. 2245.63 2.30 0.0983351 0.0851054 26050 158493 -1 2386 21 1912 2836 182279 43323 0 0 182279 43323 2836 2142 0 0 10022 8210 0 0 15029 11792 0 0 2836 2303 0 0 75946 9231 0 0 75610 9645 0 0 2836 0 0 924 828 985 7603 0 0 4.58085 4.58085 -152.733 -4.58085 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0160897 0.0141877 151 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 9.84 vpr 53.48 MiB -1 -1 0.15 17464 1 0.01 -1 -1 29732 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 15.0 MiB 1.96 1234 53.5 MiB 0.12 0.00 4.15917 -123 -4.15917 4.15917 0.97 0.000228584 0.000181134 0.0207316 0.0167041 38 2883 24 6.89349e+06 324158 678818. 2348.85 4.47 0.13874 0.118278 26626 170182 -1 2379 23 1919 2739 207875 46540 0 0 207875 46540 2739 2341 0 0 9486 7835 0 0 13932 11083 0 0 2739 2411 0 0 90172 11521 0 0 88807 11349 0 0 2739 0 0 820 827 911 7425 0 0 4.33239 4.33239 -146.515 -4.33239 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0175339 0.015536 150 48 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 7.84 vpr 53.20 MiB -1 -1 0.14 17352 1 0.02 -1 -1 29648 -1 -1 15 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54472 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 14.6 MiB 2.15 838 53.2 MiB 0.05 0.00 3.46187 -98.0268 -3.46187 3.46187 0.94 0.000104674 8.4548e-05 0.00952875 0.00782159 30 2117 27 6.89349e+06 211408 556674. 1926.21 2.77 0.0724951 0.061597 25186 138497 -1 1757 18 906 1251 88664 21203 0 0 88664 21203 1251 1064 0 0 4385 3470 0 0 6124 4944 0 0 1251 1115 0 0 37876 5479 0 0 37777 5131 0 0 1251 0 0 345 377 351 3038 0 0 3.35355 3.35355 -112.897 -3.35355 0 0 706193. 2443.58 0.20 0.02 0.12 -1 -1 0.20 0.00651232 0.00578372 105 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.76 vpr 53.40 MiB -1 -1 0.10 17572 1 0.02 -1 -1 29720 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54680 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 14.8 MiB 1.99 1055 53.4 MiB 0.08 0.00 2.90565 -98.3486 -2.90565 2.90565 0.98 0.000198786 0.000159805 0.0127817 0.0104127 34 2723 28 6.89349e+06 281877 618332. 2139.56 1.61 0.0724419 0.0618444 25762 151098 -1 2317 23 1562 2231 198722 43936 0 0 198722 43936 2231 1882 0 0 8407 7035 0 0 13360 10425 0 0 2231 2101 0 0 85910 11587 0 0 86583 10906 0 0 2231 0 0 669 717 614 5569 0 0 3.13651 3.13651 -124.149 -3.13651 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.014176 0.012464 131 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.53 vpr 53.39 MiB -1 -1 0.16 17684 1 0.02 -1 -1 29668 -1 -1 26 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54668 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 15.0 MiB 2.63 1183 53.4 MiB 0.10 0.00 2.9531 -91.9933 -2.9531 2.9531 0.98 0.000215462 0.000175578 0.0169176 0.0138435 34 2772 42 6.89349e+06 366440 618332. 2139.56 1.58 0.0852695 0.0728902 25762 151098 -1 2233 21 1513 2281 182080 39049 0 0 182080 39049 2281 1945 0 0 8383 6800 0 0 12806 10038 0 0 2281 2052 0 0 79662 8803 0 0 76667 9411 0 0 2281 0 0 768 1096 1424 8377 0 0 2.99771 2.99771 -108.058 -2.99771 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0156943 0.013973 142 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.82 vpr 53.26 MiB -1 -1 0.16 17448 1 0.01 -1 -1 29692 -1 -1 23 28 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54536 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 14.8 MiB 1.75 874 53.3 MiB 0.06 0.00 3.64305 -93.6767 -3.64305 3.64305 0.97 0.000109582 8.8293e-05 0.0105615 0.00864482 34 2333 45 6.89349e+06 324158 618332. 2139.56 1.86 0.0852839 0.0738929 25762 151098 -1 1855 18 1146 1989 157389 35412 0 0 157389 35412 1989 1544 0 0 7563 6040 0 0 11821 9210 0 0 1989 1672 0 0 66316 8595 0 0 67711 8351 0 0 1989 0 0 843 1340 1471 8871 0 0 3.82786 3.82786 -111.662 -3.82786 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0116968 0.0104147 119 20 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.45 vpr 53.41 MiB -1 -1 0.16 17480 1 0.01 -1 -1 29704 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54692 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 14.8 MiB 2.75 1027 53.4 MiB 0.11 0.00 3.54502 -109.299 -3.54502 3.54502 0.59 0.00017889 0.00014658 0.0170538 0.0142492 34 2706 28 6.89349e+06 295971 618332. 2139.56 2.19 0.116998 0.103277 25762 151098 -1 2246 21 1776 2475 209973 45810 0 0 209973 45810 2475 2085 0 0 9133 7487 0 0 13998 10836 0 0 2475 2161 0 0 89323 11921 0 0 92569 11320 0 0 2475 0 0 699 778 760 6250 0 0 3.85144 3.85144 -134.816 -3.85144 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0135143 0.0119371 130 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.91 vpr 53.34 MiB -1 -1 0.15 17460 1 0.01 -1 -1 29680 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54624 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 14.9 MiB 2.51 1245 53.3 MiB 0.06 0.00 3.09739 -108.835 -3.09739 3.09739 0.85 0.000113691 9.0726e-05 0.00989784 0.00803137 34 3117 40 6.89349e+06 281877 618332. 2139.56 1.45 0.0757949 0.065755 25762 151098 -1 2559 22 1682 2311 190661 40799 0 0 190661 40799 2311 2044 0 0 8401 6946 0 0 12936 9979 0 0 2311 2143 0 0 84880 9564 0 0 79822 10123 0 0 2311 0 0 629 705 663 5566 0 0 3.2041 3.2041 -130.864 -3.2041 0 0 787024. 2723.27 0.26 0.04 0.14 -1 -1 0.26 0.0103429 0.0092058 138 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 6.43 vpr 53.12 MiB -1 -1 0.16 17168 1 0.01 -1 -1 29684 -1 -1 31 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54392 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 14.6 MiB 0.81 1091 53.1 MiB 0.10 0.00 3.66642 -108.277 -3.66642 3.66642 0.96 0.000118369 9.026e-05 0.0138008 0.0110872 30 2397 20 6.89349e+06 436909 556674. 1926.21 2.43 0.0787534 0.0676731 25186 138497 -1 1975 20 1140 2181 140026 32036 0 0 140026 32036 2181 1496 0 0 7511 5918 0 0 11473 8911 0 0 2181 1621 0 0 58979 6813 0 0 57701 7277 0 0 2181 0 0 1041 1351 1343 9382 0 0 3.4459 3.4459 -117.872 -3.4459 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.00933643 0.00827925 129 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 6.92 vpr 53.55 MiB -1 -1 0.12 17464 1 0.01 -1 -1 29620 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 15.1 MiB 2.50 1151 53.6 MiB 0.05 0.00 3.78342 -123.662 -3.78342 3.78342 0.93 0.00013246 0.000107935 0.00806862 0.00667745 34 3073 24 6.89349e+06 324158 618332. 2139.56 1.49 0.0610949 0.0525853 25762 151098 -1 2491 21 1625 2493 203184 44492 0 0 203184 44492 2493 2108 0 0 9267 7713 0 0 14550 11398 0 0 2493 2163 0 0 89338 10110 0 0 85043 11000 0 0 2493 0 0 868 877 896 6870 0 0 3.7485 3.7485 -140.396 -3.7485 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00901406 0.00798272 148 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.76 vpr 53.59 MiB -1 -1 0.16 17464 1 0.02 -1 -1 29700 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54872 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 15.0 MiB 1.54 1352 53.6 MiB 0.11 0.00 4.36021 -139.758 -4.36021 4.36021 0.65 0.000242092 0.000195916 0.0175395 0.0144147 34 3560 37 6.89349e+06 380534 618332. 2139.56 5.32 0.172053 0.150221 25762 151098 -1 2679 20 1934 2712 211507 47795 0 0 211507 47795 2712 2209 0 0 10109 8399 0 0 15502 12167 0 0 2712 2311 0 0 91439 11669 0 0 89033 11040 0 0 2712 0 0 778 991 899 7464 0 0 4.58859 4.58859 -165.071 -4.58859 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0167229 0.0147719 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.96 vpr 53.60 MiB -1 -1 0.13 17340 1 0.02 -1 -1 29660 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54888 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 15.2 MiB 2.23 1490 53.6 MiB 0.09 0.00 3.66297 -124.385 -3.66297 3.66297 0.98 0.000310857 0.000262786 0.0140531 0.0118208 36 3407 24 6.89349e+06 366440 648988. 2245.63 2.68 0.112147 0.0984583 26050 158493 -1 2964 22 1958 2819 209884 45493 0 0 209884 45493 2819 2358 0 0 10073 7939 0 0 14964 11818 0 0 2819 2548 0 0 89967 10377 0 0 89242 10453 0 0 2819 0 0 861 1140 1087 8267 0 0 3.7566 3.7566 -138.619 -3.7566 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0102972 0.00909991 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.40 vpr 53.02 MiB -1 -1 0.15 17472 1 0.01 -1 -1 29696 -1 -1 21 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54292 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 14.4 MiB 1.52 831 53.0 MiB 0.04 0.00 3.29223 -97.9003 -3.29223 3.29223 0.59 0.000103436 8.3626e-05 0.00628819 0.00520578 34 2133 50 6.89349e+06 295971 618332. 2139.56 1.47 0.0665285 0.0566268 25762 151098 -1 1874 21 1128 1586 138134 31534 0 0 138134 31534 1586 1435 0 0 6180 5133 0 0 9908 7812 0 0 1586 1476 0 0 58999 8148 0 0 59875 7530 0 0 1586 0 0 458 474 413 3847 0 0 3.25101 3.25101 -114.776 -3.25101 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0124386 0.0110463 112 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 9.29 vpr 53.85 MiB -1 -1 0.17 17512 1 0.03 -1 -1 29696 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55144 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 15.2 MiB 3.52 1114 53.9 MiB 0.08 0.00 4.18171 -126.225 -4.18171 4.18171 0.71 0.000232816 0.000188878 0.015198 0.0125803 36 3124 24 6.89349e+06 352346 648988. 2245.63 2.60 0.101186 0.0879394 26050 158493 -1 2490 23 2034 2846 224754 50469 0 0 224754 50469 2846 2540 0 0 10118 8002 0 0 15216 11939 0 0 2846 2646 0 0 90570 13256 0 0 103158 12086 0 0 2846 0 0 812 947 920 7213 0 0 4.29115 4.29115 -152.766 -4.29115 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0190691 0.0169654 161 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.79 vpr 53.30 MiB -1 -1 0.14 17352 1 0.01 -1 -1 29676 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54580 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 14.9 MiB 1.28 1219 53.3 MiB 0.10 0.00 4.07275 -125.942 -4.07275 4.07275 0.95 0.000222006 0.00017944 0.0167996 0.0137414 34 2808 23 6.89349e+06 324158 618332. 2139.56 3.41 0.132682 0.114729 25762 151098 -1 2292 21 1375 2387 197856 43617 0 0 197856 43617 2387 1889 0 0 9064 7690 0 0 14983 11679 0 0 2387 2030 0 0 81995 10522 0 0 87040 9807 0 0 2387 0 0 1012 1846 1611 10812 0 0 3.8566 3.8566 -139.551 -3.8566 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0148456 0.0131058 139 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 7.25 vpr 53.38 MiB -1 -1 0.12 17560 1 0.01 -1 -1 29736 -1 -1 23 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54656 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 14.9 MiB 2.21 1203 53.4 MiB 0.09 0.00 4.09814 -120.756 -4.09814 4.09814 0.97 0.000219298 0.000178725 0.01635 0.0135053 36 2698 26 6.89349e+06 324158 648988. 2245.63 1.99 0.105192 0.0919493 26050 158493 -1 2310 22 1666 2486 188774 41979 0 0 188774 41979 2486 1982 0 0 9008 7358 0 0 13495 10635 0 0 2486 2066 0 0 79176 10498 0 0 82123 9440 0 0 2486 0 0 820 888 1166 7550 0 0 4.14885 4.14885 -136.752 -4.14885 0 0 828058. 2865.25 0.26 0.07 0.13 -1 -1 0.26 0.0182011 0.0162912 142 43 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 7.65 vpr 53.56 MiB -1 -1 0.18 17448 1 0.02 -1 -1 29684 -1 -1 27 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54844 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 14.9 MiB 2.63 1195 53.6 MiB 0.07 0.00 3.93665 -113.007 -3.93665 3.93665 0.86 0.000129886 0.000104486 0.0110741 0.00909059 36 3139 27 6.89349e+06 380534 648988. 2245.63 1.87 0.0779087 0.0674813 26050 158493 -1 2538 23 1835 2700 219396 48379 0 0 219396 48379 2700 2248 0 0 9878 8137 0 0 14641 11531 0 0 2700 2464 0 0 93477 12504 0 0 96000 11495 0 0 2700 0 0 865 1312 1214 8469 0 0 3.91824 3.91824 -135.277 -3.91824 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0169986 0.0149187 162 78 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.01 vpr 53.63 MiB -1 -1 0.16 17448 1 0.02 -1 -1 29680 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 15.1 MiB 2.50 1128 53.6 MiB 0.07 0.00 4.28007 -125.694 -4.28007 4.28007 0.60 0.000126507 0.000101309 0.0124362 0.0100872 36 3561 40 6.89349e+06 324158 648988. 2245.63 3.06 0.0790133 0.0678422 26050 158493 -1 2571 21 1899 2766 213571 49213 0 0 213571 49213 2766 2477 0 0 9843 8005 0 0 14303 11230 0 0 2766 2577 0 0 91174 12564 0 0 92719 12360 0 0 2766 0 0 867 1002 766 7349 0 0 4.52865 4.52865 -151.208 -4.52865 0 0 828058. 2865.25 0.28 0.07 0.10 -1 -1 0.28 0.0157501 0.013901 155 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.31 vpr 53.68 MiB -1 -1 0.16 17500 1 0.01 -1 -1 29724 -1 -1 30 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54964 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 15.2 MiB 2.05 1351 53.7 MiB 0.05 0.00 3.57059 -110.14 -3.57059 3.57059 0.59 0.000128291 0.000103365 0.006879 0.00568664 36 2904 22 6.89349e+06 422815 648988. 2245.63 2.85 0.0731378 0.0617458 26050 158493 -1 2496 18 1612 2141 145774 33099 0 0 145774 33099 2141 1770 0 0 7613 6096 0 0 10993 8835 0 0 2141 1848 0 0 59279 7617 0 0 63607 6933 0 0 2141 0 0 529 485 446 4917 0 0 3.7354 3.7354 -128.184 -3.7354 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0156316 0.0139718 166 79 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.70 vpr 52.74 MiB -1 -1 0.15 16996 1 0.01 -1 -1 29604 -1 -1 17 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54004 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 14.3 MiB 0.48 752 52.7 MiB 0.06 0.00 3.26403 -99.6803 -3.26403 3.26403 0.94 0.000178105 0.000145168 0.00970134 0.00795742 34 1794 22 6.89349e+06 239595 618332. 2139.56 2.49 0.0635564 0.0535564 25762 151098 -1 1583 18 798 1266 87151 20804 0 0 87151 20804 1266 997 0 0 4837 3806 0 0 7391 5899 0 0 1266 1042 0 0 36009 4579 0 0 36382 4481 0 0 1266 0 0 468 508 418 3768 0 0 3.05731 3.05731 -108.681 -3.05731 0 0 787024. 2723.27 0.21 0.03 0.08 -1 -1 0.21 0.00664927 0.00594109 96 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.80 vpr 53.55 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29680 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54832 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 15.0 MiB 2.02 1462 53.5 MiB 0.08 0.00 4.5691 -138.88 -4.5691 4.5691 0.68 0.00013394 0.000108282 0.0135026 0.0111565 34 3204 30 6.89349e+06 352346 618332. 2139.56 1.96 0.0911482 0.0794843 25762 151098 -1 2673 23 1820 2526 204078 44649 0 0 204078 44649 2526 2218 0 0 9411 7499 0 0 14603 11513 0 0 2526 2318 0 0 93092 9386 0 0 81920 11715 0 0 2526 0 0 706 750 914 6730 0 0 4.66999 4.66999 -159.336 -4.66999 0 0 787024. 2723.27 0.33 0.09 0.12 -1 -1 0.33 0.0237719 0.0215659 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.80 vpr 53.58 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29756 -1 -1 25 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 15.1 MiB 3.79 1334 53.6 MiB 0.11 0.00 4.36821 -144.823 -4.36821 4.36821 1.02 0.000253562 0.00020704 0.0193895 0.0161055 34 3577 47 6.89349e+06 352346 618332. 2139.56 2.57 0.121497 0.106432 25762 151098 -1 2854 20 2250 3245 255771 56687 0 0 255771 56687 3245 2721 0 0 12142 9997 0 0 18870 14904 0 0 3245 2898 0 0 110169 12917 0 0 108100 13250 0 0 3245 0 0 995 932 1016 8254 0 0 4.33025 4.33025 -163.994 -4.33025 0 0 787024. 2723.27 0.29 0.09 0.14 -1 -1 0.29 0.0190516 0.0170928 171 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.74 vpr 53.21 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29748 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54492 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 14.5 MiB 2.77 971 53.2 MiB 0.06 0.00 3.14102 -95.6729 -3.14102 3.14102 0.92 0.000174662 0.000141609 0.0100294 0.00822228 34 2212 35 6.89349e+06 253689 618332. 2139.56 1.87 0.0792617 0.0682838 25762 151098 -1 1897 19 1036 1383 107873 24448 0 0 107873 24448 1383 1186 0 0 5338 4379 0 0 7962 6404 0 0 1383 1213 0 0 44860 5960 0 0 46947 5306 0 0 1383 0 0 347 309 294 3053 0 0 3.09676 3.09676 -109.715 -3.09676 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0110053 0.00971638 108 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 6.79 vpr 53.04 MiB -1 -1 0.15 16908 1 0.01 -1 -1 29736 -1 -1 20 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54312 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 14.5 MiB 0.74 780 53.0 MiB 0.09 0.00 3.20583 -99.241 -3.20583 3.20583 0.97 0.000172457 0.000138788 0.0139026 0.0113996 32 2057 21 6.89349e+06 281877 586450. 2029.24 2.97 0.0764093 0.0653218 25474 144626 -1 1769 19 1117 1871 160141 35107 0 0 160141 35107 1871 1502 0 0 7137 5886 0 0 11922 9104 0 0 1871 1626 0 0 69412 8247 0 0 67928 8742 0 0 1871 0 0 754 745 801 6151 0 0 2.86611 2.86611 -109.001 -2.86611 0 0 744469. 2576.02 0.30 0.03 0.12 -1 -1 0.30 0.00629684 0.00554637 99 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.17 vpr 53.70 MiB -1 -1 0.17 17528 1 0.01 -1 -1 29612 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 15.0 MiB 1.88 1128 53.7 MiB 0.09 0.00 3.58702 -118.659 -3.58702 3.58702 0.82 0.000219497 0.000176505 0.0156268 0.0128751 34 2956 29 6.89349e+06 324158 618332. 2139.56 1.49 0.0703832 0.0596144 25762 151098 -1 2379 21 1869 2682 200243 44583 0 0 200243 44583 2682 2351 0 0 9718 7824 0 0 15170 11666 0 0 2682 2404 0 0 85645 10346 0 0 84346 9992 0 0 2682 0 0 813 823 856 6800 0 0 3.7506 3.7506 -138.261 -3.7506 0 0 787024. 2723.27 0.32 0.07 0.13 -1 -1 0.32 0.0177263 0.01571 145 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 6.13 vpr 53.68 MiB -1 -1 0.13 17488 1 0.01 -1 -1 29664 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 14.9 MiB 2.00 1239 53.7 MiB 0.05 0.00 4.01398 -122.686 -4.01398 4.01398 0.67 0.000125497 0.000100384 0.00861126 0.00703427 36 2850 40 6.89349e+06 324158 648988. 2245.63 1.38 0.0587114 0.0497278 26050 158493 -1 2410 18 1498 2132 156948 34711 0 0 156948 34711 2132 1725 0 0 7572 6056 0 0 11438 8862 0 0 2132 1804 0 0 65869 8270 0 0 67805 7994 0 0 2132 0 0 634 675 770 5721 0 0 4.70819 4.70819 -150.309 -4.70819 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0149064 0.0133193 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.48 vpr 53.36 MiB -1 -1 0.15 17256 1 0.02 -1 -1 29696 -1 -1 36 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54644 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 14.9 MiB 0.84 1172 53.4 MiB 0.09 0.00 4.04141 -120.151 -4.04141 4.04141 0.70 0.00014189 0.000117001 0.0128832 0.0105702 34 2908 35 6.89349e+06 507378 618332. 2139.56 1.75 0.0831075 0.0722021 25762 151098 -1 2331 22 1712 3263 238831 54651 0 0 238831 54651 3263 2241 0 0 12240 10199 0 0 19834 15316 0 0 3263 2424 0 0 100399 12497 0 0 99832 11974 0 0 3263 0 0 1551 2250 2067 14487 0 0 4.24579 4.24579 -143.589 -4.24579 0 0 787024. 2723.27 0.28 0.08 0.09 -1 -1 0.28 0.0167281 0.0147697 157 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.46 vpr 53.50 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29708 -1 -1 25 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54780 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 14.8 MiB 1.48 1121 53.5 MiB 0.08 0.00 2.95499 -91.5407 -2.95499 2.95499 0.64 0.000225061 0.000181071 0.0123059 0.0101066 34 2672 43 6.89349e+06 352346 618332. 2139.56 1.15 0.0472674 0.0398288 25762 151098 -1 2160 22 1737 2599 189972 42873 0 0 189972 42873 2599 1946 0 0 9641 7965 0 0 14632 11470 0 0 2599 2212 0 0 80696 9849 0 0 79805 9431 0 0 2599 0 0 862 1233 1180 8008 0 0 3.36821 3.36821 -112.963 -3.36821 0 0 787024. 2723.27 0.31 0.07 0.13 -1 -1 0.31 0.0154561 0.0136654 136 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 8.27 vpr 53.04 MiB -1 -1 0.15 17140 1 0.01 -1 -1 29760 -1 -1 20 27 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54316 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 14.5 MiB 1.65 699 53.0 MiB 0.06 0.00 3.41829 -89.9244 -3.41829 3.41829 0.73 0.000171898 0.00013971 0.0101691 0.00832106 36 1663 19 6.89349e+06 281877 648988. 2245.63 3.74 0.0814135 0.0693462 26050 158493 -1 1463 22 1118 1649 119775 28185 0 0 119775 28185 1649 1447 0 0 6040 4742 0 0 8852 7113 0 0 1649 1505 0 0 53679 6231 0 0 47906 7147 0 0 1649 0 0 531 586 504 4630 0 0 3.6001 3.6001 -105.84 -3.6001 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0118089 0.0104276 106 26 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.49 vpr 54.06 MiB -1 -1 0.17 17664 1 0.01 -1 -1 29924 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55360 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 15.3 MiB 3.40 1528 54.1 MiB 0.15 0.00 3.66879 -123.841 -3.66879 3.66879 0.95 0.000259942 0.000209686 0.0229972 0.0187599 36 3690 33 6.89349e+06 380534 648988. 2245.63 2.73 0.132889 0.115013 26050 158493 -1 3108 21 2127 3316 252658 54806 0 0 252658 54806 3316 2601 0 0 12031 9901 0 0 17896 14143 0 0 3316 2894 0 0 111162 12355 0 0 104937 12912 0 0 3316 0 0 1189 1169 1520 10144 0 0 4.08885 4.08885 -143.994 -4.08885 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0179895 0.0158647 185 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.52 vpr 53.59 MiB -1 -1 0.17 17852 1 0.02 -1 -1 29760 -1 -1 24 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54880 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 15.1 MiB 2.43 1106 53.6 MiB 0.08 0.00 4.36917 -131.102 -4.36917 4.36917 0.60 0.00013329 0.000107629 0.0136126 0.0111396 34 3250 25 6.89349e+06 338252 618332. 2139.56 1.51 0.066474 0.0570014 25762 151098 -1 2609 20 2039 3042 279158 59379 0 0 279158 59379 3042 2755 0 0 11356 9354 0 0 17518 13506 0 0 3042 2800 0 0 122944 15709 0 0 121256 15255 0 0 3042 0 0 1003 1450 1583 9796 0 0 4.78225 4.78225 -158.176 -4.78225 0 0 787024. 2723.27 0.20 0.05 0.08 -1 -1 0.20 0.00986162 0.00872072 155 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.07 vpr 53.43 MiB -1 -1 0.17 17680 1 0.02 -1 -1 29776 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 14.9 MiB 2.10 1074 53.4 MiB 0.06 0.00 3.43229 -114.249 -3.43229 3.43229 0.61 0.000116586 9.3406e-05 0.0102204 0.00825372 36 3059 28 6.89349e+06 295971 648988. 2245.63 2.59 0.0630974 0.0528504 26050 158493 -1 2309 18 1728 2279 189009 42250 0 0 189009 42250 2279 2019 0 0 8195 6601 0 0 12055 9545 0 0 2279 2188 0 0 79327 11666 0 0 84874 10231 0 0 2279 0 0 551 541 431 4904 0 0 3.6173 3.6173 -139.076 -3.6173 0 0 828058. 2865.25 0.24 0.04 0.12 -1 -1 0.24 0.00792145 0.00704227 137 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.49 vpr 53.28 MiB -1 -1 0.17 17356 1 0.01 -1 -1 29632 -1 -1 21 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 14.8 MiB 2.39 1107 53.3 MiB 0.07 0.00 4.09751 -116.957 -4.09751 4.09751 0.78 0.000218156 0.000178574 0.0114385 0.00952208 34 2813 27 6.89349e+06 295971 618332. 2139.56 1.98 0.0842355 0.072171 25762 151098 -1 2328 22 1400 2075 169748 37725 0 0 169748 37725 2075 1750 0 0 7667 6272 0 0 11992 9384 0 0 2075 1815 0 0 74371 9024 0 0 71568 9480 0 0 2075 0 0 675 776 748 6032 0 0 3.78236 3.78236 -131.035 -3.78236 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0167854 0.0149084 135 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.46 vpr 53.43 MiB -1 -1 0.18 17632 1 0.01 -1 -1 29708 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54716 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 14.8 MiB 2.39 1135 53.4 MiB 0.08 0.00 3.59285 -104.711 -3.59285 3.59285 0.99 0.000235554 0.000190093 0.0112588 0.00926832 34 3095 28 6.89349e+06 366440 618332. 2139.56 1.86 0.108795 0.0951201 25762 151098 -1 2420 21 1807 2802 186898 44141 0 0 186898 44141 2802 2147 0 0 10305 8401 0 0 15483 12241 0 0 2802 2249 0 0 81197 8924 0 0 74309 10179 0 0 2802 0 0 995 1023 1787 9719 0 0 3.83606 3.83606 -126.858 -3.83606 0 0 787024. 2723.27 0.21 0.06 0.08 -1 -1 0.21 0.0161245 0.0142432 163 46 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.88 vpr 53.50 MiB -1 -1 0.16 17476 1 0.01 -1 -1 29808 -1 -1 24 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54788 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 15.0 MiB 2.47 1084 53.5 MiB 0.11 0.00 3.39129 -97.8423 -3.39129 3.39129 0.99 0.000212686 0.000173909 0.0184946 0.0152505 34 3234 39 6.89349e+06 338252 618332. 2139.56 2.21 0.108673 0.0944712 25762 151098 -1 2410 21 1391 2244 180393 40089 0 0 180393 40089 2244 1880 0 0 8568 7091 0 0 12825 10248 0 0 2244 1979 0 0 79517 9252 0 0 74995 9639 0 0 2244 0 0 853 1093 997 7471 0 0 3.3537 3.3537 -114.928 -3.3537 0 0 787024. 2723.27 0.23 0.06 0.08 -1 -1 0.23 0.0148534 0.0131779 140 46 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.47 vpr 53.46 MiB -1 -1 0.16 17472 1 0.01 -1 -1 29760 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 15.0 MiB 2.96 1229 53.5 MiB 0.09 0.00 3.88598 -127.774 -3.88598 3.88598 0.90 0.000216513 0.000174541 0.015959 0.0130881 34 3227 23 6.89349e+06 310065 618332. 2139.56 1.88 0.0941929 0.0819119 25762 151098 -1 2658 20 1886 2940 231694 50920 0 0 231694 50920 2940 2546 0 0 10950 8997 0 0 16494 12880 0 0 2940 2656 0 0 97383 12464 0 0 100987 11377 0 0 2940 0 0 1054 1056 969 8189 0 0 3.99539 3.99539 -147.098 -3.99539 0 0 787024. 2723.27 0.20 0.05 0.08 -1 -1 0.20 0.00902244 0.00798688 148 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.29 vpr 53.72 MiB -1 -1 0.16 17360 1 0.01 -1 -1 29760 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 15.0 MiB 1.99 1222 53.7 MiB 0.13 0.00 3.22388 -106.835 -3.22388 3.22388 0.70 0.000250743 0.000206627 0.0233918 0.0191767 40 2752 22 6.89349e+06 366440 706193. 2443.58 1.57 0.0776635 0.0665967 26914 176310 -1 2541 20 2022 2841 240004 53743 0 0 240004 53743 2841 2308 0 0 10710 8953 0 0 16569 13012 0 0 2841 2520 0 0 101955 14023 0 0 105088 12927 0 0 2841 0 0 819 1102 943 7689 0 0 3.15646 3.15646 -125.035 -3.15646 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0118596 0.010582 167 59 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 4.91 vpr 53.18 MiB -1 -1 0.15 17508 1 0.00 -1 -1 29792 -1 -1 20 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54460 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 14.6 MiB 1.04 860 53.2 MiB 0.04 0.00 3.27503 -101.105 -3.27503 3.27503 0.59 9.6938e-05 7.7636e-05 0.00704112 0.00577763 34 2004 21 6.89349e+06 281877 618332. 2139.56 1.44 0.0644211 0.0553437 25762 151098 -1 1785 19 1472 1911 150042 33371 0 0 150042 33371 1911 1618 0 0 7122 5952 0 0 11172 8724 0 0 1911 1713 0 0 61801 8253 0 0 66125 7111 0 0 1911 0 0 439 476 458 4284 0 0 2.96326 2.96326 -110.676 -2.96326 0 0 787024. 2723.27 0.31 0.05 0.14 -1 -1 0.31 0.0118191 0.0105211 110 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.08 vpr 53.35 MiB -1 -1 0.16 17492 1 0.02 -1 -1 29724 -1 -1 20 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 14.8 MiB 0.96 1077 53.4 MiB 0.06 0.00 3.30699 -109.465 -3.30699 3.30699 0.58 0.000106492 8.4884e-05 0.00958638 0.00774974 36 2418 24 6.89349e+06 281877 648988. 2245.63 2.63 0.0606127 0.0506252 26050 158493 -1 2099 21 1619 2235 175355 39066 0 0 175355 39066 2235 1772 0 0 8209 6689 0 0 12830 10042 0 0 2235 1818 0 0 76160 9492 0 0 73686 9253 0 0 2235 0 0 616 570 471 5124 0 0 3.31085 3.31085 -125.017 -3.31085 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0138321 0.0122497 125 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.37 vpr 53.70 MiB -1 -1 0.16 17572 1 0.01 -1 -1 29764 -1 -1 22 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54984 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 14.8 MiB 1.93 1110 53.7 MiB 0.05 0.00 3.81078 -112.295 -3.81078 3.81078 0.67 0.000118849 9.5755e-05 0.00707467 0.00582881 36 2651 21 6.89349e+06 310065 648988. 2245.63 1.45 0.0475517 0.0410003 26050 158493 -1 2274 18 1335 2202 181699 39133 0 0 181699 39133 2202 1737 0 0 7989 6404 0 0 12065 9559 0 0 2202 1815 0 0 78143 9940 0 0 79098 9678 0 0 2202 0 0 867 952 1034 7697 0 0 3.84466 3.84466 -131.429 -3.84466 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0150968 0.0136048 137 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 9.08 vpr 53.12 MiB -1 -1 0.16 17488 1 0.02 -1 -1 29736 -1 -1 19 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54392 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 14.6 MiB 3.55 841 53.1 MiB 0.09 0.00 3.24432 -93.4931 -3.24432 3.24432 0.86 0.000181092 0.000146948 0.0163123 0.0133749 30 2203 22 6.89349e+06 267783 556674. 1926.21 2.50 0.0703423 0.0596491 25186 138497 -1 1826 22 952 1352 95328 22317 0 0 95328 22317 1352 1185 0 0 4794 3921 0 0 6872 5581 0 0 1352 1216 0 0 42205 4928 0 0 38753 5486 0 0 1352 0 0 400 251 468 3313 0 0 2.8654 2.8654 -101.201 -2.8654 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0114184 0.0100667 108 25 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.97 vpr 53.10 MiB -1 -1 0.15 17488 1 0.01 -1 -1 29652 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54376 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 14.5 MiB 2.43 908 53.1 MiB 0.06 0.00 3.26703 -103.493 -3.26703 3.26703 0.98 0.000182852 0.000147735 0.00920717 0.00757011 34 2339 21 6.89349e+06 253689 618332. 2139.56 1.53 0.0582824 0.0501288 25762 151098 -1 2036 17 1240 1718 132025 29570 0 0 132025 29570 1718 1504 0 0 6291 5040 0 0 9479 7383 0 0 1718 1549 0 0 54305 7495 0 0 58514 6599 0 0 1718 0 0 478 509 403 4064 0 0 3.16976 3.16976 -116.167 -3.16976 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00948185 0.00837745 114 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 5.15 vpr 53.50 MiB -1 -1 0.17 17472 1 0.02 -1 -1 29720 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54784 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 14.9 MiB 1.34 1149 53.5 MiB 0.07 0.00 3.60497 -116.508 -3.60497 3.60497 0.60 0.000135417 0.000110428 0.0123787 0.010224 34 3098 45 6.89349e+06 366440 618332. 2139.56 1.28 0.0653115 0.0554316 25762 151098 -1 2496 22 1918 2665 221095 49327 0 0 221095 49327 2665 2372 0 0 10118 8467 0 0 15705 12490 0 0 2665 2441 0 0 92916 12539 0 0 97026 11018 0 0 2665 0 0 747 897 923 7006 0 0 3.68505 3.68505 -138.816 -3.68505 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0175108 0.0154931 160 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.70 vpr 53.04 MiB -1 -1 0.12 17492 1 0.02 -1 -1 29664 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54308 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 14.4 MiB 2.38 835 53.0 MiB 0.07 0.00 2.93195 -91.6659 -2.93195 2.93195 0.98 0.000181153 0.000147551 0.0122522 0.0101126 30 2212 30 6.89349e+06 239595 556674. 1926.21 2.33 0.087269 0.0749571 25186 138497 -1 1818 21 1069 1520 93530 22529 0 0 93530 22529 1520 1283 0 0 5385 4321 0 0 7218 5978 0 0 1520 1339 0 0 38758 4882 0 0 39129 4726 0 0 1520 0 0 451 465 365 3703 0 0 2.91546 2.91546 -106.475 -2.91546 0 0 706193. 2443.58 0.19 0.03 0.07 -1 -1 0.19 0.00790675 0.00692844 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 9.21 vpr 53.38 MiB -1 -1 0.09 17288 1 0.01 -1 -1 29796 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 14.9 MiB 2.32 1225 53.4 MiB 0.10 0.00 3.37109 -104.575 -3.37109 3.37109 0.98 0.000212324 0.000171112 0.0164321 0.0134157 36 2717 24 6.89349e+06 310065 648988. 2245.63 3.63 0.122658 0.10574 26050 158493 -1 2299 18 1331 2006 147923 32670 0 0 147923 32670 2006 1684 0 0 7213 5880 0 0 10549 8429 0 0 2006 1758 0 0 62933 7602 0 0 63216 7317 0 0 2006 0 0 675 740 954 6595 0 0 3.5073 3.5073 -120.88 -3.5073 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0137573 0.0122168 146 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.67 vpr 53.72 MiB -1 -1 0.15 17732 1 0.01 -1 -1 29804 -1 -1 26 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55012 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 15.3 MiB 1.57 1311 53.7 MiB 0.08 0.00 4.02188 -128.285 -4.02188 4.02188 0.59 0.000141624 0.000112893 0.012361 0.00999559 34 4036 47 6.89349e+06 366440 618332. 2139.56 2.56 0.0871717 0.0746927 25762 151098 -1 2863 23 2546 3551 287948 63950 0 0 287948 63950 3551 2959 0 0 13128 10959 0 0 20158 15750 0 0 3551 3160 0 0 124642 15621 0 0 122918 15501 0 0 3551 0 0 1005 1284 1200 9550 0 0 4.27409 4.27409 -155.485 -4.27409 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0181433 0.0159793 170 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 9.99 vpr 53.38 MiB -1 -1 0.16 17344 1 0.02 -1 -1 29708 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54656 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 14.8 MiB 3.13 1069 53.4 MiB 0.08 0.00 3.0513 -96.5592 -3.0513 3.0513 0.96 0.000182558 0.000144881 0.0142503 0.0116165 36 2612 19 6.89349e+06 253689 648988. 2245.63 3.64 0.0975414 0.0833507 26050 158493 -1 2158 19 1506 1995 168339 34689 0 0 168339 34689 1995 1655 0 0 7026 5495 0 0 9933 7812 0 0 1995 1822 0 0 70496 9701 0 0 76894 8204 0 0 1995 0 0 489 514 521 4519 0 0 2.94656 2.94656 -113.927 -2.94656 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0127344 0.0113145 124 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.46 vpr 53.17 MiB -1 -1 0.14 17352 1 0.01 -1 -1 29664 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54448 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 14.7 MiB 1.45 977 53.2 MiB 0.09 0.00 3.24503 -105.57 -3.24503 3.24503 0.99 0.000181981 0.000146138 0.0148831 0.0121544 36 2288 19 6.89349e+06 253689 648988. 2245.63 2.73 0.0755598 0.0643812 26050 158493 -1 2118 19 1146 1719 155909 32939 0 0 155909 32939 1719 1548 0 0 6418 5204 0 0 9923 7819 0 0 1719 1599 0 0 69851 8424 0 0 66279 8345 0 0 1719 0 0 573 515 481 4434 0 0 3.15225 3.15225 -118.166 -3.15225 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0116181 0.0102569 115 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 6.93 vpr 53.22 MiB -1 -1 0.12 17344 1 0.01 -1 -1 29776 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54500 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 14.6 MiB 2.01 1138 53.2 MiB 0.10 0.00 4.11268 -118.02 -4.11268 4.11268 0.96 0.000211917 0.000172633 0.0184415 0.0151962 34 2636 22 6.89349e+06 310065 618332. 2139.56 1.71 0.0853987 0.0732174 25762 151098 -1 2226 20 1250 1804 127831 29786 0 0 127831 29786 1804 1494 0 0 6714 5574 0 0 10359 8196 0 0 1804 1602 0 0 52810 6775 0 0 54340 6145 0 0 1804 0 0 554 550 535 4573 0 0 3.84706 3.84706 -130.586 -3.84706 0 0 787024. 2723.27 0.30 0.05 0.12 -1 -1 0.30 0.0144214 0.0128511 133 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 8.96 vpr 53.40 MiB -1 -1 0.17 17512 1 0.01 -1 -1 29728 -1 -1 25 29 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54680 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 14.7 MiB 2.29 1221 53.4 MiB 0.10 0.00 3.15468 -93.0776 -3.15468 3.15468 0.99 0.000212186 0.000174627 0.0171907 0.0141677 36 2460 24 6.89349e+06 352346 648988. 2245.63 3.47 0.103344 0.0888248 26050 158493 -1 2249 18 1372 1980 140796 31182 0 0 140796 31182 1980 1622 0 0 7156 5627 0 0 10093 8168 0 0 1980 1744 0 0 58881 7299 0 0 60706 6722 0 0 1980 0 0 608 812 842 6176 0 0 2.99036 2.99036 -108.183 -2.99036 0 0 828058. 2865.25 0.21 0.04 0.13 -1 -1 0.21 0.00819429 0.00732676 138 49 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 10.40 vpr 53.48 MiB -1 -1 0.18 17516 1 0.01 -1 -1 29724 -1 -1 24 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 15.1 MiB 2.46 1344 53.5 MiB 0.06 0.00 4.55604 -148.713 -4.55604 4.55604 0.85 0.000132101 0.000106344 0.00905057 0.00742449 34 3780 31 6.89349e+06 338252 618332. 2139.56 4.69 0.159132 0.138987 25762 151098 -1 3024 22 2250 3491 304275 66368 0 0 304275 66368 3491 2953 0 0 13265 11268 0 0 21463 16549 0 0 3491 3083 0 0 130653 16565 0 0 131912 15950 0 0 3491 0 0 1241 1495 1702 11195 0 0 4.30729 4.30729 -161.805 -4.30729 0 0 787024. 2723.27 0.30 0.10 0.13 -1 -1 0.30 0.0199814 0.0177862 166 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 6.83 vpr 52.74 MiB -1 -1 0.13 16888 1 0.01 -1 -1 29628 -1 -1 17 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54008 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 14.3 MiB 0.71 828 52.7 MiB 0.07 0.00 2.72825 -89.364 -2.72825 2.72825 0.97 0.00016694 0.000135535 0.0131382 0.0108257 34 1921 21 6.89349e+06 239595 618332. 2139.56 2.95 0.0867208 0.0740151 25762 151098 -1 1631 19 812 1253 89969 20896 0 0 89969 20896 1253 1036 0 0 4679 3818 0 0 7109 5541 0 0 1253 1064 0 0 36992 5001 0 0 38683 4436 0 0 1253 0 0 441 366 385 3463 0 0 2.57636 2.57636 -98.8508 -2.57636 0 0 787024. 2723.27 0.31 0.04 0.12 -1 -1 0.31 0.0116062 0.0104048 92 -1 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.06 vpr 54.07 MiB -1 -1 0.18 17764 1 0.02 -1 -1 29828 -1 -1 27 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55372 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 15.3 MiB 2.39 1438 54.1 MiB 0.13 0.00 4.41033 -141.952 -4.41033 4.41033 0.99 0.000255147 0.00020671 0.0229772 0.0188913 36 3211 27 6.89349e+06 380534 648988. 2245.63 2.21 0.107575 0.0930813 26050 158493 -1 2709 23 2049 2768 191149 42982 0 0 191149 42982 2768 2330 0 0 9824 8014 0 0 14694 11581 0 0 2768 2440 0 0 77606 9999 0 0 83489 8618 0 0 2768 0 0 719 675 772 6688 0 0 4.71644 4.71644 -166.983 -4.71644 0 0 828058. 2865.25 0.32 0.07 0.14 -1 -1 0.32 0.0184129 0.016211 175 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 8.44 vpr 53.67 MiB -1 -1 0.13 17448 1 0.01 -1 -1 29676 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 15.1 MiB 1.74 1183 53.7 MiB 0.11 0.00 3.86868 -131.455 -3.86868 3.86868 0.99 0.000222353 0.000177143 0.0185342 0.0151187 36 3706 40 6.89349e+06 324158 648988. 2245.63 3.30 0.105796 0.0916359 26050 158493 -1 2549 25 2631 3381 289127 65121 0 0 289127 65121 3381 3063 0 0 12006 9864 0 0 19005 14461 0 0 3381 3136 0 0 122836 17732 0 0 128518 16865 0 0 3381 0 0 750 840 860 7365 0 0 4.82559 4.82559 -165.74 -4.82559 0 0 828058. 2865.25 0.32 0.10 0.14 -1 -1 0.32 0.0200073 0.0177707 160 93 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 7.72 vpr 53.56 MiB -1 -1 0.17 17684 1 0.02 -1 -1 29664 -1 -1 22 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54848 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 15.0 MiB 2.37 1311 53.6 MiB 0.09 0.00 3.22388 -106.809 -3.22388 3.22388 1.02 0.000239485 0.000195941 0.0163424 0.0135819 36 2628 20 6.89349e+06 310065 648988. 2245.63 1.95 0.114537 0.100767 26050 158493 -1 2268 17 1342 1841 137544 30311 0 0 137544 30311 1841 1506 0 0 6907 5744 0 0 10018 8197 0 0 1841 1581 0 0 58683 6608 0 0 58254 6675 0 0 1841 0 0 499 678 716 5358 0 0 3.06661 3.06661 -116.098 -3.06661 0 0 828058. 2865.25 0.32 0.05 0.12 -1 -1 0.32 0.0139339 0.0124359 152 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 10.53 vpr 53.73 MiB -1 -1 0.16 17756 1 0.01 -1 -1 29748 -1 -1 26 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55016 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 15.3 MiB 3.17 1369 53.7 MiB 0.06 0.00 4.7624 -145.974 -4.7624 4.7624 0.96 0.000136271 0.000109187 0.0106678 0.00886229 36 3005 21 6.89349e+06 366440 648988. 2245.63 4.21 0.150585 0.132308 26050 158493 -1 2637 23 2042 3242 259853 55443 0 0 259853 55443 3242 2523 0 0 11672 9516 0 0 18160 14061 0 0 3242 2617 0 0 111295 13127 0 0 112242 13599 0 0 3242 0 0 1200 1717 1576 10815 0 0 4.71575 4.71575 -158.636 -4.71575 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0107929 0.00950247 172 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.66 vpr 52.93 MiB -1 -1 0.16 17232 1 0.01 -1 -1 29612 -1 -1 15 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54196 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 14.3 MiB 1.10 686 52.9 MiB 0.07 0.00 2.38626 -77.3379 -2.38626 2.38626 0.95 0.000150191 0.000120276 0.0123017 0.00997914 34 1636 20 6.89349e+06 211408 618332. 2139.56 1.42 0.0580303 0.0490011 25762 151098 -1 1446 21 847 1148 111221 24276 0 0 111221 24276 1148 966 0 0 4385 3629 0 0 7211 5547 0 0 1148 998 0 0 47329 6540 0 0 50000 6596 0 0 1148 0 0 301 321 351 2723 0 0 2.13627 2.13627 -88.7943 -2.13627 0 0 787024. 2723.27 0.31 0.04 0.13 -1 -1 0.31 0.0100894 0.00886013 82 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 4.24 vpr 53.14 MiB -1 -1 0.08 17396 1 0.00 -1 -1 29748 -1 -1 20 30 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54420 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 14.7 MiB 0.95 973 53.1 MiB 0.05 0.00 3.70827 -117.45 -3.70827 3.70827 0.59 0.000103592 8.2409e-05 0.00843009 0.00684729 34 2219 21 6.89349e+06 281877 618332. 2139.56 0.94 0.0396669 0.0331412 25762 151098 -1 1862 20 1248 1841 133058 30182 0 0 133058 30182 1841 1518 0 0 6960 5769 0 0 10439 8381 0 0 1841 1572 0 0 55314 6801 0 0 56663 6141 0 0 1841 0 0 593 696 425 5027 0 0 3.34945 3.34945 -126.918 -3.34945 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0137187 0.0122549 119 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.47 vpr 53.22 MiB -1 -1 0.15 17480 1 0.01 -1 -1 29796 -1 -1 18 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54500 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 14.7 MiB 2.37 1110 53.2 MiB 0.09 0.00 3.53059 -115.631 -3.53059 3.53059 0.98 0.000200479 0.000162285 0.0157952 0.0130053 34 2807 24 6.89349e+06 253689 618332. 2139.56 1.77 0.0881419 0.0762041 25762 151098 -1 2319 19 1457 2625 207423 46057 0 0 207423 46057 2625 2075 0 0 9707 8055 0 0 15706 12058 0 0 2625 2290 0 0 88055 11067 0 0 88705 10512 0 0 2625 0 0 1168 1478 1405 10052 0 0 3.5001 3.5001 -133.964 -3.5001 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0141567 0.0126593 120 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.20 vpr 52.86 MiB -1 -1 0.16 17088 1 0.01 -1 -1 29808 -1 -1 21 25 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54132 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 14.2 MiB 1.29 569 52.9 MiB 0.06 0.00 3.0161 -71.862 -3.0161 3.0161 0.60 0.000141906 0.000113572 0.0114643 0.00930354 34 1615 26 6.89349e+06 295971 618332. 2139.56 1.37 0.0471762 0.0395166 25762 151098 -1 1192 21 801 1265 75547 19358 0 0 75547 19358 1265 1024 0 0 4596 3744 0 0 7351 5604 0 0 1265 1078 0 0 30592 3997 0 0 30478 3911 0 0 1265 0 0 464 598 561 4170 0 0 2.74511 2.74511 -77.3962 -2.74511 0 0 787024. 2723.27 0.32 0.04 0.13 -1 -1 0.32 0.0106581 0.00948468 92 19 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.31 vpr 53.54 MiB -1 -1 0.17 17488 1 0.02 -1 -1 29768 -1 -1 23 32 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 54820 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 14.9 MiB 2.94 1406 53.5 MiB 0.06 0.00 3.72115 -114.833 -3.72115 3.72115 0.74 0.000131767 0.000106347 0.00846134 0.00695134 34 3524 43 6.89349e+06 324158 618332. 2139.56 2.27 0.0930459 0.0807853 25762 151098 -1 2948 21 2021 3055 231663 50764 0 0 231663 50764 3055 2448 0 0 11185 9050 0 0 16395 12882 0 0 3055 2605 0 0 100869 12038 0 0 97104 11741 0 0 3055 0 0 1034 1121 1188 8666 0 0 3.85185 3.85185 -134.462 -3.85185 0 0 787024. 2723.27 0.28 0.07 0.14 -1 -1 0.28 0.0170966 0.0151779 161 69 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.98 vpr 54.14 MiB -1 -1 0.20 17744 1 0.01 -1 -1 29780 -1 -1 29 31 0 0 success v8.0.0-7663-gb6a96700f release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-04-24T17:35:35 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_final/vtr-verilog-to-routing/vtr_flow/tasks 55444 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 15.3 MiB 2.77 1459 54.1 MiB 0.13 0.00 3.88258 -130.654 -3.88258 3.88258 0.84 0.000247728 0.000200327 0.0223069 0.018235 34 3567 44 6.89349e+06 408721 618332. 2139.56 1.95 0.107575 0.0914575 25762 151098 -1 2899 22 2270 3066 230697 52150 0 0 230697 52150 3066 2647 0 0 11408 9491 0 0 17441 13694 0 0 3066 2788 0 0 97474 11745 0 0 98242 11785 0 0 3066 0 0 796 922 921 7569 0 0 4.37314 4.37314 -160.694 -4.37314 0 0 787024. 2723.27 0.32 0.08 0.13 -1 -1 0.32 0.0193854 0.0172407 179 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 3.86 vpr 53.21 MiB -1 -1 0.14 17768 14 0.23 -1 -1 32240 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54484 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 14.6 MiB 0.32 1389 53.2 MiB 0.04 0.00 6.52936 -137.096 -6.52936 6.52936 0.54 0.000168954 0.000135449 0.0100647 0.00828607 32 3881 45 6.55708e+06 325485 554710. 1919.41 1.08 0.049721 0.0424299 22174 131602 -1 3423 47 2390 8119 950380 367097 0 0 950380 367097 8119 4736 0 0 28053 23056 0 0 54064 35635 0 0 8119 5583 0 0 424782 149788 0 0 427243 148299 0 0 8119 0 0 5729 12476 12169 69851 0 0 7.25056 7.25056 -165.952 -7.25056 0 0 701300. 2426.64 0.19 0.17 0.06 -1 -1 0.19 0.0223128 0.0195252 183 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 4.49 vpr 53.22 MiB -1 -1 0.15 17740 14 0.27 -1 -1 32344 -1 -1 31 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54496 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 14.6 MiB 0.40 1212 53.2 MiB 0.04 0.00 6.76976 -130.82 -6.76976 6.76976 0.54 0.000167672 0.000136093 0.0100103 0.00828985 28 3699 44 6.55708e+06 373705 500653. 1732.36 1.73 0.050752 0.0432354 21310 115450 -1 3171 19 1590 4710 294141 67778 0 0 294141 67778 4710 2554 0 0 16187 13540 0 0 25500 19106 0 0 4710 2981 0 0 121366 14989 0 0 121668 14608 0 0 4710 0 0 3120 5855 6519 38198 0 0 7.17416 7.17416 -153.878 -7.17416 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0130436 0.0118022 184 181 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 4.88 vpr 53.34 MiB -1 -1 0.11 17544 11 0.21 -1 -1 32240 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54616 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 14.6 MiB 0.26 1329 53.3 MiB 0.05 0.00 5.87124 -120.512 -5.87124 5.87124 0.55 0.00017818 0.000138044 0.0109968 0.00898305 28 4037 43 6.55708e+06 313430 500653. 1732.36 2.24 0.0553601 0.0470893 21310 115450 -1 3260 27 1745 6552 571935 168183 0 0 571935 168183 6552 3069 0 0 21793 18165 0 0 35726 25169 0 0 6552 3673 0 0 247212 59673 0 0 254100 58434 0 0 6552 0 0 4807 11897 12099 72627 0 0 6.15344 6.15344 -139.362 -6.15344 0 0 612192. 2118.31 0.17 0.09 0.06 -1 -1 0.17 0.0155436 0.01394 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 4.90 vpr 53.21 MiB -1 -1 0.12 17524 12 0.29 -1 -1 32224 -1 -1 30 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54484 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 14.8 MiB 0.45 1298 53.2 MiB 0.03 0.00 6.1983 -120.704 -6.1983 6.1983 0.54 0.000171173 0.000139856 0.00805164 0.00674209 36 3495 44 6.55708e+06 361650 612192. 2118.31 2.00 0.0687519 0.0588111 22750 144809 -1 2993 28 1377 4601 417723 148693 0 0 417723 148693 4601 2179 0 0 15122 12498 0 0 25467 17754 0 0 4601 2767 0 0 180694 56754 0 0 187238 56741 0 0 4601 0 0 3224 5822 6046 38271 0 0 6.78964 6.78964 -138.304 -6.78964 0 0 782063. 2706.10 0.21 0.08 0.07 -1 -1 0.21 0.0161815 0.0144624 190 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 3.69 vpr 53.48 MiB -1 -1 0.14 17432 13 0.25 -1 -1 32288 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 14.8 MiB 0.40 1517 53.5 MiB 0.05 0.00 6.50744 -139.044 -6.50744 6.50744 0.55 0.000184434 0.000150302 0.0107917 0.0090066 30 3842 30 6.55708e+06 373705 526063. 1820.29 0.87 0.0495335 0.0424427 21886 126133 -1 3207 17 1492 4352 203820 49148 0 0 203820 49148 4352 2229 0 0 14028 11506 0 0 19513 14926 0 0 4352 2744 0 0 80198 8986 0 0 81377 8757 0 0 4352 0 0 2860 4923 4295 32414 0 0 6.5981 6.5981 -156.158 -6.5981 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0137462 0.0125569 210 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 4.47 vpr 53.26 MiB -1 -1 0.14 17352 13 0.24 -1 -1 32308 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 14.8 MiB 0.27 1415 53.3 MiB 0.04 0.00 6.3185 -131.425 -6.3185 6.3185 0.55 0.000183907 0.000147169 0.00916753 0.00763344 36 3592 27 6.55708e+06 385760 612192. 2118.31 1.79 0.0655742 0.0560942 22750 144809 -1 3134 17 1245 4000 209302 48204 0 0 209302 48204 4000 1784 0 0 13395 10705 0 0 20257 15092 0 0 4000 2260 0 0 82407 9309 0 0 85243 9054 0 0 4000 0 0 2755 4959 5509 34961 0 0 6.63024 6.63024 -147.594 -6.63024 0 0 782063. 2706.10 0.21 0.04 0.07 -1 -1 0.21 0.0130951 0.0119588 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 3.10 vpr 52.88 MiB -1 -1 0.12 17240 12 0.16 -1 -1 32160 -1 -1 27 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54144 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 14.3 MiB 0.22 1062 52.9 MiB 0.04 0.00 5.95024 -109.358 -5.95024 5.95024 0.54 0.000137391 0.000111774 0.00930354 0.0075927 30 2469 18 6.55708e+06 325485 526063. 1820.29 0.68 0.0343588 0.0292692 21886 126133 -1 2129 16 963 2662 117505 28698 0 0 117505 28698 2662 1226 0 0 8524 6810 0 0 11871 9063 0 0 2662 1522 0 0 46684 4951 0 0 45102 5126 0 0 2662 0 0 1699 2231 2407 17323 0 0 6.31084 6.31084 -123.284 -6.31084 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0100831 0.00911841 152 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 4.89 vpr 52.99 MiB -1 -1 0.13 17176 12 0.17 -1 -1 32116 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54264 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 14.4 MiB 0.18 1261 53.0 MiB 0.03 0.00 5.1068 -113.491 -5.1068 5.1068 0.54 0.000137014 0.000108839 0.00704557 0.00582543 36 3077 37 6.55708e+06 265210 612192. 2118.31 2.47 0.055022 0.047075 22750 144809 -1 2664 15 1037 3077 176903 40466 0 0 176903 40466 3077 1610 0 0 10518 8736 0 0 16229 12102 0 0 3077 1863 0 0 70854 8225 0 0 73148 7930 0 0 3077 0 0 2040 3962 4203 26262 0 0 5.68992 5.68992 -133.074 -5.68992 0 0 782063. 2706.10 0.21 0.03 0.07 -1 -1 0.21 0.00937175 0.00857697 140 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 3.64 vpr 52.91 MiB -1 -1 0.13 17588 12 0.14 -1 -1 32164 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54184 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 14.4 MiB 0.19 1233 52.9 MiB 0.04 0.00 5.43586 -115.338 -5.43586 5.43586 0.55 0.000141187 0.000114141 0.00995401 0.00823268 36 2808 19 6.55708e+06 313430 612192. 2118.31 1.25 0.0529531 0.0454125 22750 144809 -1 2483 15 1000 2603 152038 35488 0 0 152038 35488 2603 1439 0 0 9050 7439 0 0 14232 10686 0 0 2603 1716 0 0 60671 7282 0 0 62879 6926 0 0 2603 0 0 1603 2240 2483 16609 0 0 5.55806 5.55806 -131.568 -5.55806 0 0 782063. 2706.10 0.20 0.03 0.07 -1 -1 0.20 0.009625 0.00880675 150 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 7.04 vpr 53.03 MiB -1 -1 0.11 17520 13 0.13 -1 -1 32144 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54304 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 14.4 MiB 0.24 1144 53.0 MiB 0.05 0.00 6.22784 -133.488 -6.22784 6.22784 0.55 0.00015418 0.000122005 0.0106072 0.0086287 30 3186 42 6.55708e+06 301375 526063. 1820.29 4.56 0.0778102 0.0665866 21886 126133 -1 2520 17 1173 3275 158015 38549 0 0 158015 38549 3275 1685 0 0 10660 8725 0 0 14910 11383 0 0 3275 1964 0 0 61627 7535 0 0 64268 7257 0 0 3275 0 0 2102 3611 3238 23680 0 0 6.61798 6.61798 -157.083 -6.61798 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0108953 0.00995173 157 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 3.13 vpr 52.88 MiB -1 -1 0.11 17508 12 0.17 -1 -1 31948 -1 -1 24 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54148 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 14.4 MiB 0.20 1091 52.9 MiB 0.04 0.00 5.79284 -116.37 -5.79284 5.79284 0.54 0.00013222 0.00010713 0.00978722 0.00812354 28 2783 23 6.55708e+06 289320 500653. 1732.36 0.68 0.0352504 0.0301967 21310 115450 -1 2414 26 918 2409 257210 102693 0 0 257210 102693 2409 1349 0 0 8382 6742 0 0 13994 10356 0 0 2409 1632 0 0 114801 42274 0 0 115215 40340 0 0 2409 0 0 1491 2261 2554 16305 0 0 6.03324 6.03324 -136.106 -6.03324 0 0 612192. 2118.31 0.17 0.06 0.06 -1 -1 0.17 0.0119875 0.0107661 132 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 3.50 vpr 52.80 MiB -1 -1 0.12 17212 12 0.13 -1 -1 32116 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54072 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 14.3 MiB 0.20 1224 52.8 MiB 0.03 0.00 5.35486 -125.963 -5.35486 5.35486 0.55 0.000140297 0.000113806 0.00641231 0.0053788 28 3143 31 6.55708e+06 265210 500653. 1732.36 1.18 0.0406394 0.0353413 21310 115450 -1 2774 16 1096 2998 191188 43573 0 0 191188 43573 2998 1700 0 0 10435 8528 0 0 15990 11946 0 0 2998 1927 0 0 80159 9720 0 0 78608 9752 0 0 2998 0 0 1902 3377 3572 22131 0 0 5.83566 5.83566 -147.106 -5.83566 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00965092 0.00882505 146 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 3.71 vpr 53.35 MiB -1 -1 0.15 17508 13 0.22 -1 -1 32244 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 14.9 MiB 0.20 1442 53.4 MiB 0.03 0.00 6.60776 -142.469 -6.60776 6.60776 0.54 0.000181844 0.000149147 0.00738653 0.00628032 28 3749 31 6.55708e+06 361650 500653. 1732.36 1.20 0.0478287 0.0416331 21310 115450 -1 3232 18 1325 3790 231008 52889 0 0 231008 52889 3790 2016 0 0 13180 10691 0 0 20527 15524 0 0 3790 2316 0 0 94581 11343 0 0 95140 10999 0 0 3790 0 0 2465 4638 5257 32948 0 0 6.96836 6.96836 -161.405 -6.96836 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0133262 0.0121639 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 3.71 vpr 53.53 MiB -1 -1 0.15 17428 14 0.27 -1 -1 32260 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 14.8 MiB 0.33 1620 53.5 MiB 0.04 0.00 7.20676 -154.078 -7.20676 7.20676 0.55 0.00019273 0.000157395 0.00940774 0.00786054 30 3839 37 6.55708e+06 361650 526063. 1820.29 0.94 0.0524364 0.0450558 21886 126133 -1 3149 17 1408 4054 194194 46479 0 0 194194 46479 4054 1834 0 0 13299 10648 0 0 18515 14248 0 0 4054 2210 0 0 77025 8754 0 0 77247 8785 0 0 4054 0 0 2646 4426 4637 31311 0 0 7.48636 7.48636 -171.704 -7.48636 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.014183 0.0129563 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 3.12 vpr 52.86 MiB -1 -1 0.11 17164 11 0.15 -1 -1 32060 -1 -1 27 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54128 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 14.4 MiB 0.19 1113 52.9 MiB 0.02 0.00 5.89878 -113.462 -5.89878 5.89878 0.55 0.000147012 0.000115538 0.00499482 0.00423407 28 2723 18 6.55708e+06 325485 500653. 1732.36 0.78 0.0308423 0.0267008 21310 115450 -1 2443 17 1029 2879 164178 38754 0 0 164178 38754 2879 1705 0 0 9912 8073 0 0 15442 11565 0 0 2879 1984 0 0 64716 8050 0 0 68350 7377 0 0 2879 0 0 1850 3226 2832 19997 0 0 6.13918 6.13918 -127.95 -6.13918 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00983645 0.00893635 147 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.89 vpr 53.48 MiB -1 -1 0.14 17852 12 0.25 -1 -1 32252 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 14.9 MiB 0.28 1480 53.5 MiB 0.07 0.00 5.95024 -123.259 -5.95024 5.95024 0.55 0.000191061 0.000151262 0.0161413 0.0132327 36 4399 50 6.55708e+06 397815 612192. 2118.31 5.17 0.0899532 0.0766797 22750 144809 -1 3203 25 1532 5024 454992 160396 0 0 454992 160396 5024 2422 0 0 16828 13722 0 0 27065 19695 0 0 5024 2953 0 0 201614 63078 0 0 199437 58526 0 0 5024 0 0 3492 8413 8124 48913 0 0 6.47284 6.47284 -146.294 -6.47284 0 0 782063. 2706.10 0.20 0.08 0.07 -1 -1 0.20 0.0169501 0.0152844 209 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 4.74 vpr 53.12 MiB -1 -1 0.13 17480 14 0.22 -1 -1 32172 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54396 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 14.5 MiB 0.23 1478 53.1 MiB 0.04 0.00 6.18864 -133.089 -6.18864 6.18864 0.54 0.00017203 0.000136586 0.00813374 0.00678918 36 3767 47 6.55708e+06 349595 612192. 2118.31 2.12 0.0708014 0.0607423 22750 144809 -1 3089 17 1374 4083 240340 53799 0 0 240340 53799 4083 1977 0 0 13833 11415 0 0 21724 15992 0 0 4083 2475 0 0 95904 11345 0 0 100713 10595 0 0 4083 0 0 2709 4979 5511 34418 0 0 6.42904 6.42904 -148.142 -6.42904 0 0 782063. 2706.10 0.21 0.05 0.07 -1 -1 0.21 0.0134929 0.0122082 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 3.20 vpr 52.82 MiB -1 -1 0.12 17464 12 0.18 -1 -1 31912 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54088 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 14.3 MiB 0.26 1184 52.8 MiB 0.03 0.00 5.7221 -133.678 -5.7221 5.7221 0.54 0.000137579 0.00011084 0.0073885 0.0060927 28 2709 18 6.55708e+06 277265 500653. 1732.36 0.74 0.0330348 0.0283791 21310 115450 -1 2391 16 861 2478 136948 32380 0 0 136948 32380 2478 1355 0 0 8691 6958 0 0 12886 9846 0 0 2478 1532 0 0 54480 6411 0 0 55935 6278 0 0 2478 0 0 1617 2916 3025 19610 0 0 5.9625 5.9625 -149.294 -5.9625 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00976373 0.00893705 140 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 2.75 vpr 52.24 MiB -1 -1 0.10 16992 10 0.07 -1 -1 31668 -1 -1 16 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53496 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 13.7 MiB 0.12 866 52.2 MiB 0.02 0.00 4.49614 -104.391 -4.49614 4.49614 0.54 9.9484e-05 8.0327e-05 0.00326727 0.00276318 26 2151 20 6.55708e+06 192880 477104. 1650.88 0.64 0.0215384 0.0185647 21022 109990 -1 1809 13 625 1550 96030 22982 0 0 96030 22982 1550 916 0 0 5729 4666 0 0 8631 6657 0 0 1550 1065 0 0 39897 4833 0 0 38673 4845 0 0 1550 0 0 925 995 1231 8545 0 0 4.73654 4.73654 -118.935 -4.73654 0 0 585099. 2024.56 0.16 0.02 0.05 -1 -1 0.16 0.00608206 0.00556568 91 84 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 3.37 vpr 52.90 MiB -1 -1 0.13 17428 13 0.15 -1 -1 32116 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54172 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 14.4 MiB 0.30 1233 52.9 MiB 0.03 0.00 5.77858 -122.39 -5.77858 5.77858 0.57 0.000140376 0.000114137 0.00595029 0.00505874 32 3543 35 6.55708e+06 289320 554710. 1919.41 0.82 0.0378584 0.0327612 22174 131602 -1 2689 24 1249 3416 243942 57714 0 0 243942 57714 3416 1937 0 0 12238 9797 0 0 21276 15448 0 0 3416 2276 0 0 102832 14165 0 0 100764 14091 0 0 3416 0 0 2167 3330 3411 22876 0 0 6.37958 6.37958 -147.976 -6.37958 0 0 701300. 2426.64 0.19 0.05 0.07 -1 -1 0.19 0.0125273 0.0111666 144 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 3.48 vpr 53.52 MiB -1 -1 0.16 17440 13 0.25 -1 -1 32256 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 15.0 MiB 0.35 1446 53.5 MiB 0.04 0.00 6.8013 -133.663 -6.8013 6.8013 0.55 0.000184437 0.000150818 0.00931429 0.00779725 30 3632 23 6.55708e+06 373705 526063. 1820.29 0.75 0.045219 0.0389846 21886 126133 -1 3038 18 1345 4042 187625 45334 0 0 187625 45334 4042 1716 0 0 13447 10971 0 0 18204 14262 0 0 4042 2192 0 0 74711 7943 0 0 73179 8250 0 0 4042 0 0 2697 4896 5243 33818 0 0 6.93116 6.93116 -151.62 -6.93116 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0137284 0.0125296 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 4.56 vpr 53.50 MiB -1 -1 0.14 17736 13 0.26 -1 -1 32296 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54780 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 14.9 MiB 0.34 1526 53.5 MiB 0.04 0.00 6.6399 -141.079 -6.6399 6.6399 0.54 0.000177003 0.000144437 0.00851302 0.00711866 46 3540 18 6.55708e+06 325485 782063. 2706.10 1.72 0.065473 0.0567957 24766 183262 -1 3073 17 1294 4376 229971 50638 0 0 229971 50638 4376 1813 0 0 13915 11673 0 0 21317 15264 0 0 4376 2360 0 0 91440 10082 0 0 94547 9446 0 0 4376 0 0 3082 5746 5633 38625 0 0 6.70864 6.70864 -154.66 -6.70864 0 0 958460. 3316.47 0.25 0.05 0.09 -1 -1 0.25 0.01309 0.011966 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 2.88 vpr 52.21 MiB -1 -1 0.11 17068 9 0.07 -1 -1 31688 -1 -1 24 26 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53464 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 13.6 MiB 0.14 729 52.2 MiB 0.03 0.00 4.2302 -82.3532 -4.2302 4.2302 0.55 9.2851e-05 7.5381e-05 0.00643981 0.00533624 26 1817 41 6.55708e+06 289320 477104. 1650.88 0.72 0.026728 0.0227048 21022 109990 -1 1611 19 637 1613 94345 22209 0 0 94345 22209 1613 934 0 0 5490 4424 0 0 8880 6435 0 0 1613 1076 0 0 38649 4739 0 0 38100 4601 0 0 1613 0 0 976 1226 1484 9901 0 0 4.5908 4.5908 -95.5864 -4.5908 0 0 585099. 2024.56 0.16 0.02 0.05 -1 -1 0.16 0.00644674 0.00578834 87 69 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 4.11 vpr 53.21 MiB -1 -1 0.10 17424 13 0.26 -1 -1 32748 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54492 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 14.6 MiB 0.19 1436 53.2 MiB 0.06 0.00 6.4433 -127.373 -6.4433 6.4433 0.55 0.000172165 0.000139736 0.0136993 0.011298 30 4226 35 6.55708e+06 301375 526063. 1820.29 1.52 0.0543747 0.0464511 21886 126133 -1 3178 32 1495 4528 384451 135019 0 0 384451 135019 4528 2173 0 0 14472 12252 0 0 21497 15952 0 0 4528 2630 0 0 174641 52313 0 0 164785 49699 0 0 4528 0 0 3033 5259 5609 35485 0 0 6.6837 6.6837 -146.261 -6.6837 0 0 666494. 2306.21 0.18 0.08 0.06 -1 -1 0.18 0.0179847 0.0160558 193 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.55 vpr 52.12 MiB -1 -1 0.09 17048 8 0.07 -1 -1 32068 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53376 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 13.5 MiB 0.10 572 52.1 MiB 0.06 0.00 3.37088 -74.2225 -3.37088 3.37088 0.60 8.931e-05 7.0855e-05 0.0113447 0.0091817 30 1692 49 6.55708e+06 192880 526063. 1820.29 2.34 0.050103 0.0421934 21886 126133 -1 1333 15 658 1471 80795 21260 0 0 80795 21260 1471 849 0 0 5058 4096 0 0 6998 5521 0 0 1471 990 0 0 31864 5057 0 0 33933 4747 0 0 1471 0 0 813 830 979 7147 0 0 3.61128 3.61128 -90.251 -3.61128 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00560575 0.00508269 77 59 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.84 vpr 53.12 MiB -1 -1 0.13 17536 15 0.21 -1 -1 32648 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54400 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 14.6 MiB 0.26 1280 53.1 MiB 0.05 0.00 6.4785 -131.459 -6.4785 6.4785 0.55 0.000156072 0.000126567 0.0105835 0.00876817 30 3286 37 6.55708e+06 337540 526063. 1820.29 3.26 0.0918887 0.078663 21886 126133 -1 2694 20 1228 3449 164997 40231 0 0 164997 40231 3449 1626 0 0 11347 9355 0 0 16042 12259 0 0 3449 1949 0 0 65916 7605 0 0 64794 7437 0 0 3449 0 0 2221 3474 3155 23751 0 0 6.98884 6.98884 -152.944 -6.98884 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0123628 0.0112327 165 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 10.24 vpr 53.20 MiB -1 -1 0.13 17580 13 0.21 -1 -1 32124 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54480 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 14.6 MiB 0.21 1368 53.2 MiB 0.04 0.00 5.80612 -130.083 -5.80612 5.80612 0.56 0.000273954 0.000219592 0.00880678 0.00731519 30 3548 37 6.55708e+06 313430 526063. 1820.29 7.75 0.107007 0.0919235 21886 126133 -1 2905 19 1231 3543 216188 52234 0 0 216188 52234 3543 1844 0 0 11360 9248 0 0 16660 12435 0 0 3543 2247 0 0 89684 13655 0 0 91398 12805 0 0 3543 0 0 2312 4030 4076 27085 0 0 6.13718 6.13718 -148.993 -6.13718 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0119633 0.0108771 168 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 4.70 vpr 53.20 MiB -1 -1 0.13 17516 13 0.24 -1 -1 32296 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54480 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 14.6 MiB 0.18 1374 53.2 MiB 0.07 0.00 6.5609 -138.596 -6.5609 6.5609 0.56 0.000182216 0.000141878 0.0151534 0.0123203 28 4106 46 6.55708e+06 349595 500653. 1732.36 2.10 0.0634904 0.0543988 21310 115450 -1 3284 20 1752 5516 364091 80469 0 0 364091 80469 5516 2841 0 0 18560 15140 0 0 29622 21509 0 0 5516 3400 0 0 151375 18901 0 0 153502 18678 0 0 5516 0 0 3764 7719 8297 48512 0 0 7.03004 7.03004 -162.585 -7.03004 0 0 612192. 2118.31 0.17 0.06 0.06 -1 -1 0.17 0.0136164 0.012291 187 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 8.77 vpr 52.83 MiB -1 -1 0.12 17448 12 0.15 -1 -1 32092 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54096 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 14.3 MiB 0.25 1309 52.8 MiB 0.04 0.00 5.57998 -124.292 -5.57998 5.57998 0.55 0.000143427 0.000117109 0.00870344 0.00719405 28 3705 41 6.55708e+06 277265 500653. 1732.36 6.27 0.086967 0.0749465 21310 115450 -1 3180 23 1321 3878 431061 146877 0 0 431061 146877 3878 2359 0 0 13049 10790 0 0 22149 15807 0 0 3878 2642 0 0 189639 57575 0 0 198468 57704 0 0 3878 0 0 2557 4957 5106 30222 0 0 6.09032 6.09032 -146.793 -6.09032 0 0 612192. 2118.31 0.17 0.08 0.06 -1 -1 0.17 0.0118827 0.0106593 147 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 3.10 vpr 52.78 MiB -1 -1 0.12 17160 11 0.13 -1 -1 32036 -1 -1 23 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54048 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 14.4 MiB 0.15 1043 52.8 MiB 0.03 0.00 5.26058 -113.411 -5.26058 5.26058 0.55 0.000125572 0.000101566 0.00755027 0.00624171 28 2742 20 6.55708e+06 277265 500653. 1732.36 0.78 0.0324994 0.0280581 21310 115450 -1 2328 16 935 2573 157684 36129 0 0 157684 36129 2573 1450 0 0 8890 7178 0 0 13453 10231 0 0 2573 1669 0 0 65227 7912 0 0 64968 7689 0 0 2573 0 0 1638 2622 2572 18009 0 0 5.74138 5.74138 -131.441 -5.74138 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00882938 0.00805731 131 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 3.14 vpr 52.91 MiB -1 -1 0.13 17316 11 0.15 -1 -1 32192 -1 -1 28 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54180 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 14.4 MiB 0.33 1012 52.9 MiB 0.04 0.00 5.29978 -104.369 -5.29978 5.29978 0.54 0.000138279 0.00011253 0.00897151 0.00741699 30 2396 16 6.55708e+06 337540 526063. 1820.29 0.61 0.0347123 0.02995 21886 126133 -1 1953 16 854 2338 107648 26441 0 0 107648 26441 2338 1120 0 0 7767 6079 0 0 10551 8344 0 0 2338 1348 0 0 41504 4913 0 0 43150 4637 0 0 2338 0 0 1484 2162 2175 15853 0 0 5.86158 5.86158 -122.232 -5.86158 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0094531 0.0086332 150 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 3.81 vpr 53.07 MiB -1 -1 0.13 17260 12 0.18 -1 -1 32172 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54340 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 14.6 MiB 0.20 1234 53.1 MiB 0.04 0.00 5.9619 -130.268 -5.9619 5.9619 0.54 0.000172067 0.000135224 0.0101775 0.00835248 26 3658 34 6.55708e+06 313430 477104. 1650.88 1.35 0.048536 0.0417185 21022 109990 -1 3023 21 1399 3581 235870 57256 0 0 235870 57256 3581 2143 0 0 12682 10499 0 0 19749 14803 0 0 3581 2522 0 0 100303 13436 0 0 95974 13853 0 0 3581 0 0 2182 2763 3357 21425 0 0 6.5629 6.5629 -158.809 -6.5629 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.0130127 0.0117891 181 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 6.07 vpr 52.96 MiB -1 -1 0.12 17088 12 0.14 -1 -1 32148 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54236 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 14.4 MiB 0.51 1048 53.0 MiB 0.04 0.00 5.95024 -121.701 -5.95024 5.95024 0.58 0.000145309 0.000117764 0.0093671 0.00781696 30 2546 18 6.55708e+06 277265 526063. 1820.29 3.35 0.0724082 0.0621178 21886 126133 -1 2138 19 956 2623 122497 30208 0 0 122497 30208 2623 1231 0 0 8626 7038 0 0 12048 9239 0 0 2623 1536 0 0 48811 5529 0 0 47766 5635 0 0 2623 0 0 1667 2307 2520 17727 0 0 6.0037 6.0037 -136.192 -6.0037 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0105393 0.0095565 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 3.14 vpr 52.75 MiB -1 -1 0.13 17588 10 0.12 -1 -1 32200 -1 -1 22 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54012 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 14.3 MiB 0.14 1065 52.7 MiB 0.03 0.00 4.79906 -102.264 -4.79906 4.79906 0.54 0.00013256 0.000106739 0.00766657 0.00636947 28 2760 39 6.55708e+06 265210 500653. 1732.36 0.86 0.0386323 0.0330993 21310 115450 -1 2371 19 942 2889 175929 40436 0 0 175929 40436 2889 1539 0 0 10062 8438 0 0 15884 11760 0 0 2889 1759 0 0 72129 8355 0 0 72076 8585 0 0 2889 0 0 1947 3865 3965 25740 0 0 5.44186 5.44186 -124.411 -5.44186 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.0102217 0.00925366 137 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 3.66 vpr 53.64 MiB -1 -1 0.15 18048 13 0.27 -1 -1 32188 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 15.1 MiB 0.19 1498 53.6 MiB 0.04 0.00 6.5589 -137.868 -6.5589 6.5589 0.55 0.000199412 0.00015749 0.00963334 0.00800739 30 3693 27 6.55708e+06 373705 526063. 1820.29 1.06 0.0524216 0.0453363 21886 126133 -1 3051 16 1332 4345 209047 48999 0 0 209047 48999 4345 1852 0 0 13923 11342 0 0 20295 15185 0 0 4345 2300 0 0 83726 9108 0 0 82413 9212 0 0 4345 0 0 3013 6515 6535 43502 0 0 6.7967 6.7967 -153.557 -6.7967 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.014307 0.0130619 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 5.06 vpr 53.21 MiB -1 -1 0.15 17696 14 0.31 -1 -1 32784 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54488 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 14.8 MiB 0.39 1478 53.2 MiB 0.05 0.00 6.25538 -139.739 -6.25538 6.25538 0.55 0.000173263 0.000140406 0.0111006 0.00923084 28 4436 28 6.55708e+06 337540 500653. 1732.36 2.20 0.0534449 0.0461835 21310 115450 -1 3635 30 1580 4685 539549 198565 0 0 539549 198565 4685 2631 0 0 15900 12979 0 0 25961 18803 0 0 4685 3021 0 0 241575 79334 0 0 246743 81797 0 0 4685 0 0 3105 6671 6583 39972 0 0 6.81458 6.81458 -166.372 -6.81458 0 0 612192. 2118.31 0.17 0.10 0.06 -1 -1 0.17 0.0174984 0.0156705 191 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 3.26 vpr 52.98 MiB -1 -1 0.12 17548 12 0.15 -1 -1 32072 -1 -1 29 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54248 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 14.4 MiB 0.19 1173 53.0 MiB 0.03 0.00 6.2023 -123.636 -6.2023 6.2023 0.55 0.000138933 0.000112312 0.00696007 0.00577268 30 3009 43 6.55708e+06 349595 526063. 1820.29 0.86 0.0399569 0.0342094 21886 126133 -1 2482 17 1041 2908 152411 35513 0 0 152411 35513 2908 1488 0 0 9623 7683 0 0 13407 10327 0 0 2908 1730 0 0 60419 7456 0 0 63146 6829 0 0 2908 0 0 1867 3543 3010 22780 0 0 6.6021 6.6021 -142.188 -6.6021 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0100674 0.0091636 156 148 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 4.62 vpr 53.51 MiB -1 -1 0.14 17880 12 0.26 -1 -1 32244 -1 -1 33 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54796 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 14.9 MiB 0.36 1480 53.5 MiB 0.04 0.00 6.5197 -133.711 -6.5197 6.5197 0.54 0.000188161 0.000149363 0.00990374 0.00827952 36 3787 29 6.55708e+06 397815 612192. 2118.31 1.84 0.0732311 0.0629005 22750 144809 -1 3316 18 1545 4493 249906 59243 0 0 249906 59243 4493 2295 0 0 15448 12747 0 0 23467 18023 0 0 4493 2831 0 0 100166 11867 0 0 101839 11480 0 0 4493 0 0 2948 5136 5157 32998 0 0 6.7601 6.7601 -151.559 -6.7601 0 0 782063. 2706.10 0.25 0.05 0.07 -1 -1 0.25 0.014232 0.0129259 218 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 3.74 vpr 53.57 MiB -1 -1 0.14 17708 14 0.31 -1 -1 32548 -1 -1 29 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54860 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 14.9 MiB 0.24 1435 53.6 MiB 0.04 0.00 6.76976 -136.238 -6.76976 6.76976 0.54 0.000184296 0.000147711 0.00858516 0.00714936 30 3926 40 6.55708e+06 349595 526063. 1820.29 1.07 0.0519303 0.0447515 21886 126133 -1 2952 20 1333 4044 189777 45018 0 0 189777 45018 4044 1837 0 0 12932 10417 0 0 18340 13795 0 0 4044 2276 0 0 73434 8529 0 0 76983 8164 0 0 4044 0 0 2711 3797 4184 30538 0 0 7.14002 7.14002 -155.895 -7.14002 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0150109 0.0136625 202 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.09 vpr 53.25 MiB -1 -1 0.14 17740 13 0.22 -1 -1 32164 -1 -1 28 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54524 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 14.8 MiB 0.27 1410 53.2 MiB 0.06 0.00 6.54924 -133.182 -6.54924 6.54924 0.56 0.000179152 0.000141241 0.0129714 0.0107036 36 3588 34 6.55708e+06 337540 612192. 2118.31 1.39 0.0689032 0.0588288 22750 144809 -1 3032 19 1356 3969 218273 51471 0 0 218273 51471 3969 2003 0 0 13455 10834 0 0 20633 15560 0 0 3969 2433 0 0 87059 10290 0 0 89188 10351 0 0 3969 0 0 2613 3814 4650 28420 0 0 7.15024 7.15024 -153.256 -7.15024 0 0 782063. 2706.10 0.22 0.04 0.08 -1 -1 0.22 0.0132982 0.0121062 185 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 4.46 vpr 53.29 MiB -1 -1 0.14 17488 13 0.22 -1 -1 32152 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54568 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 14.7 MiB 0.28 1295 53.3 MiB 0.05 0.00 6.15144 -119.617 -6.15144 6.15144 0.55 0.000164711 0.000133642 0.010755 0.00890908 28 3972 50 6.55708e+06 313430 500653. 1732.36 1.76 0.057466 0.0495543 21310 115450 -1 3160 27 1554 5412 425222 124396 0 0 425222 124396 5412 2710 0 0 17820 14650 0 0 28837 20471 0 0 5412 3140 0 0 184807 43245 0 0 182934 40180 0 0 5412 0 0 3858 9612 9086 55936 0 0 6.43304 6.43304 -141.606 -6.43304 0 0 612192. 2118.31 0.18 0.10 0.06 -1 -1 0.18 0.017323 0.0153937 179 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 3.35 vpr 53.03 MiB -1 -1 0.12 17432 12 0.16 -1 -1 32188 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54304 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 14.5 MiB 0.17 1325 53.0 MiB 0.03 0.00 5.76892 -119.845 -5.76892 5.76892 0.54 0.00016726 0.000132222 0.00699449 0.00583977 28 3281 37 6.55708e+06 289320 500653. 1732.36 0.98 0.0426124 0.0366128 21310 115450 -1 2813 22 1253 3646 225056 50660 0 0 225056 50660 3646 1866 0 0 12815 10340 0 0 19300 14682 0 0 3646 2140 0 0 91897 10995 0 0 93752 10637 0 0 3646 0 0 2393 5039 4932 32242 0 0 6.07244 6.07244 -140.255 -6.07244 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0126956 0.0114495 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.00 vpr 53.76 MiB -1 -1 0.15 18384 14 0.36 -1 -1 32376 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 15.2 MiB 0.32 1700 53.8 MiB 0.05 0.00 6.7555 -147.344 -6.7555 6.7555 0.54 0.000208974 0.000170797 0.0129216 0.0107537 36 4389 25 6.55708e+06 373705 612192. 2118.31 3.13 0.0928635 0.0807351 22750 144809 -1 3698 18 1557 5197 295347 66321 0 0 295347 66321 5197 2547 0 0 17364 14369 0 0 27258 20123 0 0 5197 3099 0 0 117225 13559 0 0 123106 12624 0 0 5197 0 0 3640 7934 8230 52171 0 0 7.1991 7.1991 -166.714 -7.1991 0 0 782063. 2706.10 0.20 0.05 0.07 -1 -1 0.20 0.0154869 0.0141069 230 229 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 5.06 vpr 53.05 MiB -1 -1 0.12 17160 11 0.16 -1 -1 32300 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54320 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 14.6 MiB 0.28 1091 53.0 MiB 0.06 0.00 5.70218 -114.869 -5.70218 5.70218 0.54 0.000150855 0.000122013 0.013099 0.010775 36 3367 40 6.55708e+06 313430 612192. 2118.31 2.51 0.0726236 0.0621206 22750 144809 -1 2560 16 1224 3574 194343 47415 0 0 194343 47415 3574 1882 0 0 12221 9916 0 0 18811 14235 0 0 3574 2230 0 0 72985 10060 0 0 83178 9092 0 0 3574 0 0 2350 4203 3921 26964 0 0 5.82238 5.82238 -136.331 -5.82238 0 0 782063. 2706.10 0.20 0.04 0.07 -1 -1 0.20 0.0107571 0.00984597 163 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.98 vpr 53.37 MiB -1 -1 0.14 17328 13 0.23 -1 -1 32284 -1 -1 28 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54652 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 14.9 MiB 0.27 1379 53.4 MiB 0.05 0.00 6.48956 -129.592 -6.48956 6.48956 0.55 0.000182332 0.000142066 0.0118402 0.00969492 30 3427 30 6.55708e+06 337540 526063. 1820.29 5.32 0.0905707 0.0779006 21886 126133 -1 2764 17 1220 4015 197851 46418 0 0 197851 46418 4015 1741 0 0 13119 10908 0 0 18775 14286 0 0 4015 2110 0 0 80334 8406 0 0 77593 8967 0 0 4015 0 0 2795 5555 5773 40132 0 0 7.09056 7.09056 -151.476 -7.09056 0 0 666494. 2306.21 0.18 0.04 0.07 -1 -1 0.18 0.0127013 0.0115924 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 3.98 vpr 53.32 MiB -1 -1 0.13 17380 12 0.23 -1 -1 32264 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54596 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 14.8 MiB 0.36 1541 53.3 MiB 0.05 0.00 5.79284 -124.943 -5.79284 5.79284 0.54 0.000183026 0.000148548 0.0107214 0.00897417 30 4024 28 6.55708e+06 349595 526063. 1820.29 1.30 0.0517949 0.0447262 21886 126133 -1 3352 16 1508 5077 267093 60608 0 0 267093 60608 5077 2239 0 0 16420 13597 0 0 23365 17595 0 0 5077 2770 0 0 107106 12650 0 0 110048 11757 0 0 5077 0 0 3569 8457 7894 51661 0 0 6.11424 6.11424 -145.745 -6.11424 0 0 666494. 2306.21 0.18 0.05 0.06 -1 -1 0.18 0.0132797 0.0121101 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 3.77 vpr 53.22 MiB -1 -1 0.13 17520 13 0.22 -1 -1 32216 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54496 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 14.6 MiB 0.20 1256 53.2 MiB 0.03 0.00 6.38724 -132.926 -6.38724 6.38724 0.55 0.000171113 0.00013913 0.00681745 0.00575373 28 3298 27 6.55708e+06 349595 500653. 1732.36 1.11 0.0427358 0.0370119 21310 115450 -1 2951 54 1382 4444 746637 396625 0 0 746637 396625 4444 2262 0 0 15157 12070 0 0 29138 19999 0 0 4444 2711 0 0 337556 178041 0 0 355898 181542 0 0 4444 0 0 3062 5294 5867 36865 0 0 6.51004 6.51004 -150.749 -6.51004 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0246164 0.0216244 183 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 4.19 vpr 53.16 MiB -1 -1 0.15 17356 13 0.24 -1 -1 32224 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54436 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 14.6 MiB 0.24 1396 53.2 MiB 0.04 0.00 5.85758 -132.307 -5.85758 5.85758 0.54 0.000163205 0.00013306 0.00889595 0.00744071 34 3579 42 6.55708e+06 313430 585099. 2024.56 1.53 0.0671776 0.0574418 22462 138074 -1 3012 15 1221 3676 219182 49812 0 0 219182 49812 3676 1871 0 0 12706 10332 0 0 20573 15126 0 0 3676 2259 0 0 88311 10235 0 0 90240 9989 0 0 3676 0 0 2455 4961 5114 33902 0 0 6.33838 6.33838 -150.89 -6.33838 0 0 742403. 2568.87 0.20 0.04 0.07 -1 -1 0.20 0.0113448 0.0104057 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 5.08 vpr 53.29 MiB -1 -1 0.16 17476 12 0.25 -1 -1 32228 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54564 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 14.8 MiB 0.36 1487 53.3 MiB 0.04 0.00 6.19064 -133.107 -6.19064 6.19064 0.55 0.000186544 0.000144489 0.00885073 0.00731581 34 4249 42 6.55708e+06 361650 585099. 2024.56 2.27 0.080067 0.0690749 22462 138074 -1 3556 27 1583 5557 564897 210046 0 0 564897 210046 5557 2716 0 0 19101 15888 0 0 31980 22811 0 0 5557 3284 0 0 250627 82966 0 0 252075 82381 0 0 5557 0 0 3974 10256 11043 63560 0 0 6.78198 6.78198 -156.198 -6.78198 0 0 742403. 2568.87 0.20 0.10 0.07 -1 -1 0.20 0.0167966 0.0150404 197 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 4.72 vpr 53.60 MiB -1 -1 0.14 17840 13 0.34 -1 -1 32736 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 14.9 MiB 0.32 1538 53.6 MiB 0.04 0.00 6.42904 -135.783 -6.42904 6.42904 0.55 0.000191475 0.000155041 0.00986799 0.00823215 36 3811 33 6.55708e+06 373705 612192. 2118.31 1.91 0.0838749 0.0729504 22750 144809 -1 3239 19 1504 4639 252636 58698 0 0 252636 58698 4639 2135 0 0 15752 12764 0 0 24810 18390 0 0 4639 2652 0 0 101388 11538 0 0 101408 11219 0 0 4639 0 0 3135 5923 6104 39313 0 0 6.75044 6.75044 -155.802 -6.75044 0 0 782063. 2706.10 0.21 0.05 0.07 -1 -1 0.21 0.0149423 0.0135595 212 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 3.60 vpr 53.14 MiB -1 -1 0.12 17576 14 0.30 -1 -1 32304 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54420 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 14.6 MiB 0.19 1235 53.1 MiB 0.04 0.00 6.8411 -136.331 -6.8411 6.8411 0.55 0.000162261 0.000131777 0.0103463 0.00858024 30 3217 23 6.55708e+06 289320 526063. 1820.29 1.02 0.0435706 0.0375561 21886 126133 -1 2542 18 1143 3437 168156 39963 0 0 168156 39963 3437 1611 0 0 11231 9182 0 0 15870 12062 0 0 3437 1932 0 0 66990 7766 0 0 67191 7410 0 0 3437 0 0 2294 4057 3831 27437 0 0 7.0795 7.0795 -154.218 -7.0795 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0122259 0.0111594 168 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 3.53 vpr 53.35 MiB -1 -1 0.15 17548 13 0.24 -1 -1 32224 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54628 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 14.9 MiB 0.29 1427 53.3 MiB 0.04 0.00 7.05196 -137.739 -7.05196 7.05196 0.55 0.000176314 0.000143466 0.00918835 0.00764881 32 3890 33 6.55708e+06 361650 554710. 1919.41 0.88 0.0484184 0.0416811 22174 131602 -1 3407 19 1564 4457 268876 63093 0 0 268876 63093 4457 2525 0 0 15753 12807 0 0 25935 19240 0 0 4457 3025 0 0 109364 12595 0 0 108910 12901 0 0 4457 0 0 2893 4952 5283 33587 0 0 7.05196 7.05196 -156.427 -7.05196 0 0 701300. 2426.64 0.19 0.05 0.07 -1 -1 0.19 0.0135854 0.0123467 198 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 3.63 vpr 53.52 MiB -1 -1 0.15 17804 13 0.26 -1 -1 32224 -1 -1 31 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54808 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 14.9 MiB 0.21 1560 53.5 MiB 0.03 0.00 6.42904 -136.281 -6.42904 6.42904 0.54 0.000181665 0.000147611 0.00792958 0.00665221 30 3711 20 6.55708e+06 373705 526063. 1820.29 1.06 0.0440993 0.0381736 21886 126133 -1 3136 20 1394 4183 203514 47746 0 0 203514 47746 4183 1868 0 0 13599 11020 0 0 19421 14732 0 0 4183 2307 0 0 81375 8797 0 0 80753 9022 0 0 4183 0 0 2789 4744 5116 34276 0 0 6.66944 6.66944 -155.032 -6.66944 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0145198 0.013131 213 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 3.91 vpr 53.43 MiB -1 -1 0.15 17688 12 0.26 -1 -1 32212 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 14.8 MiB 0.21 1449 53.4 MiB 0.04 0.00 6.3623 -133.588 -6.3623 6.3623 0.54 0.000181015 0.000146896 0.00976505 0.0081132 28 4397 26 6.55708e+06 397815 500653. 1732.36 1.33 0.0514647 0.0443669 21310 115450 -1 3578 20 1975 5584 363337 85319 0 0 363337 85319 5584 3134 0 0 18958 15300 0 0 29424 21757 0 0 5584 3744 0 0 150375 21011 0 0 153412 20373 0 0 5584 0 0 3609 5946 6686 38775 0 0 6.79164 6.79164 -161.203 -6.79164 0 0 612192. 2118.31 0.17 0.06 0.06 -1 -1 0.17 0.0148055 0.0134203 216 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 2.91 vpr 52.68 MiB -1 -1 0.10 17236 11 0.10 -1 -1 31916 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53948 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 14.1 MiB 0.19 1080 52.7 MiB 0.04 0.00 4.96872 -107.91 -4.96872 4.96872 0.55 0.000125971 0.000101856 0.00877743 0.00727209 30 2311 16 6.55708e+06 216990 526063. 1820.29 0.62 0.0316985 0.0272086 21886 126133 -1 1998 15 761 1974 94094 22758 0 0 94094 22758 1974 988 0 0 6488 5043 0 0 9012 6985 0 0 1974 1157 0 0 37300 4375 0 0 37346 4210 0 0 1974 0 0 1213 1729 1835 12625 0 0 5.44952 5.44952 -125.573 -5.44952 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00853651 0.00782929 125 121 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 3.42 vpr 52.95 MiB -1 -1 0.12 17460 13 0.20 -1 -1 32136 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54216 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 14.5 MiB 0.27 1271 52.9 MiB 0.03 0.00 6.14684 -129.703 -6.14684 6.14684 0.54 0.000152254 0.000123785 0.0063821 0.00538482 28 3635 29 6.55708e+06 289320 500653. 1732.36 0.92 0.0396137 0.0342422 21310 115450 -1 3058 16 1242 3631 231896 52555 0 0 231896 52555 3631 2027 0 0 12407 10085 0 0 19677 14459 0 0 3631 2354 0 0 95182 11892 0 0 97368 11738 0 0 3631 0 0 2389 4807 4751 28948 0 0 6.74018 6.74018 -155.389 -6.74018 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.0110704 0.0101048 161 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 4.87 vpr 53.80 MiB -1 -1 0.14 18136 14 0.40 -1 -1 32368 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55096 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 15.4 MiB 0.20 1685 53.8 MiB 0.05 0.00 7.1167 -147.065 -7.1167 7.1167 0.55 0.000215665 0.000173142 0.0118016 0.00977101 34 4561 39 6.55708e+06 397815 585099. 2024.56 2.06 0.0994604 0.0856383 22462 138074 -1 3790 19 1738 5334 302368 69728 0 0 302368 69728 5334 2544 0 0 18530 15210 0 0 28577 21396 0 0 5334 3215 0 0 122498 13477 0 0 122095 13886 0 0 5334 0 0 3596 6609 6555 44204 0 0 7.61881 7.61881 -173.477 -7.61881 0 0 742403. 2568.87 0.20 0.06 0.07 -1 -1 0.20 0.0168139 0.0152167 245 243 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 4.23 vpr 53.23 MiB -1 -1 0.13 17424 13 0.25 -1 -1 32300 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54512 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 14.6 MiB 0.30 1363 53.2 MiB 0.05 0.00 6.4759 -140.429 -6.4759 6.4759 0.54 0.000168851 0.000136331 0.0112136 0.0093205 34 3820 21 6.55708e+06 325485 585099. 2024.56 1.44 0.0655374 0.0562812 22462 138074 -1 3103 31 1607 4697 485574 199651 0 0 485574 199651 4697 2373 0 0 15842 12900 0 0 27010 18971 0 0 4697 2838 0 0 220987 84375 0 0 212341 78194 0 0 4697 0 0 3090 5409 5631 36391 0 0 7.0397 7.0397 -167.577 -7.0397 0 0 742403. 2568.87 0.20 0.10 0.07 -1 -1 0.20 0.0178856 0.0159794 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 3.65 vpr 52.77 MiB -1 -1 0.12 17316 11 0.14 -1 -1 32012 -1 -1 23 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54036 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 14.3 MiB 0.15 1079 52.8 MiB 0.03 0.00 5.48612 -114.762 -5.48612 5.48612 0.54 0.000132392 0.000105988 0.00684362 0.00568065 28 2966 46 6.55708e+06 277265 500653. 1732.36 1.32 0.0418987 0.0359523 21310 115450 -1 2389 19 1017 3069 184403 41885 0 0 184403 41885 3069 1619 0 0 10331 8471 0 0 16132 11915 0 0 3069 1838 0 0 74638 9363 0 0 77164 8679 0 0 3069 0 0 2052 3764 3770 25105 0 0 6.04792 6.04792 -137.641 -6.04792 0 0 612192. 2118.31 0.20 0.04 0.06 -1 -1 0.20 0.0110244 0.00992957 139 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 4.55 vpr 53.93 MiB -1 -1 0.16 17952 15 0.47 -1 -1 32312 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55228 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 15.4 MiB 0.24 1805 53.9 MiB 0.05 0.00 8.10727 -154.659 -8.10727 8.10727 0.54 0.000235145 0.000184257 0.011613 0.00966642 30 4719 27 6.55708e+06 409870 526063. 1820.29 1.62 0.0607158 0.0524241 21886 126133 -1 3757 17 1950 6189 310180 70997 0 0 310180 70997 6189 2693 0 0 19893 16407 0 0 28318 21338 0 0 6189 3246 0 0 125994 13527 0 0 123597 13786 0 0 6189 0 0 4239 10004 9444 61988 0 0 8.10927 8.10927 -172.367 -8.10927 0 0 666494. 2306.21 0.18 0.06 0.06 -1 -1 0.18 0.0165768 0.0151052 257 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 7.21 vpr 53.39 MiB -1 -1 0.13 17352 13 0.27 -1 -1 32320 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54668 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 14.9 MiB 0.23 1381 53.4 MiB 0.03 0.00 6.61236 -135.377 -6.61236 6.61236 0.55 0.000184239 0.000149983 0.00782647 0.0066006 28 3962 29 6.55708e+06 337540 500653. 1732.36 4.59 0.101281 0.0877142 21310 115450 -1 3265 21 1548 4800 295885 67768 0 0 295885 67768 4800 2561 0 0 16670 13312 0 0 26165 19303 0 0 4800 3013 0 0 120785 14972 0 0 122665 14607 0 0 4800 0 0 3252 6503 7027 42078 0 0 7.2037 7.2037 -161.548 -7.2037 0 0 612192. 2118.31 0.18 0.06 0.06 -1 -1 0.18 0.0151527 0.0137265 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 3.70 vpr 52.79 MiB -1 -1 0.15 17212 11 0.10 -1 -1 32088 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54060 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 14.3 MiB 0.23 1107 52.8 MiB 0.03 0.00 5.08892 -112.714 -5.08892 5.08892 0.55 0.000134579 0.000108801 0.00698531 0.00580338 28 3096 31 6.55708e+06 265210 500653. 1732.36 1.25 0.0369351 0.0317488 21310 115450 -1 2514 18 1218 3604 212006 49018 0 0 212006 49018 3604 1875 0 0 12183 10104 0 0 19544 14296 0 0 3604 2193 0 0 85939 10493 0 0 87132 10057 0 0 3604 0 0 2386 4702 4867 29969 0 0 5.5086 5.5086 -132.558 -5.5086 0 0 612192. 2118.31 0.20 0.04 0.06 -1 -1 0.20 0.0101661 0.00918066 141 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 4.56 vpr 53.48 MiB -1 -1 0.13 17872 12 0.28 -1 -1 32292 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 14.9 MiB 0.33 1539 53.5 MiB 0.05 0.00 6.2813 -128.323 -6.2813 6.2813 0.54 0.000190162 0.00015496 0.0133345 0.0110977 30 3992 39 6.55708e+06 361650 526063. 1820.29 1.76 0.0674317 0.0585018 21886 126133 -1 3137 30 1873 6821 580030 231037 0 0 580030 231037 6821 3067 0 0 21361 17549 0 0 33417 23717 0 0 6821 3859 0 0 253959 92317 0 0 257651 90528 0 0 6821 0 0 4948 12989 12287 76327 0 0 6.5217 6.5217 -147.893 -6.5217 0 0 666494. 2306.21 0.18 0.11 0.06 -1 -1 0.18 0.0188282 0.0168277 213 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 3.97 vpr 52.80 MiB -1 -1 0.11 17260 12 0.17 -1 -1 32148 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54072 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 14.2 MiB 0.31 1179 52.8 MiB 0.03 0.00 6.02924 -125.819 -6.02924 6.02924 0.54 0.000146689 0.000118804 0.00680386 0.00571364 26 3589 50 6.55708e+06 313430 477104. 1650.88 1.48 0.0467613 0.0403411 21022 109990 -1 2916 15 1223 3398 223401 52162 0 0 223401 52162 3398 2011 0 0 11929 9725 0 0 18610 13810 0 0 3398 2283 0 0 92746 12092 0 0 93320 12241 0 0 3398 0 0 2175 3445 3693 23431 0 0 6.75044 6.75044 -154.865 -6.75044 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.0101081 0.00926772 153 148 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 3.55 vpr 52.80 MiB -1 -1 0.12 17180 12 0.16 -1 -1 32188 -1 -1 21 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54064 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 14.3 MiB 0.16 1022 52.8 MiB 0.03 0.00 5.58904 -114.558 -5.58904 5.58904 0.54 0.000137661 0.000110838 0.00861383 0.00712383 26 2671 34 6.55708e+06 253155 477104. 1650.88 1.00 0.0395905 0.0339081 21022 109990 -1 2369 63 1593 5936 1233036 771905 0 0 1233036 771905 5936 3174 0 0 19141 16179 0 0 44946 27537 0 0 5936 3533 0 0 571988 363491 0 0 585089 357991 0 0 5936 0 0 4343 9389 9663 56127 0 0 6.34238 6.34238 -141.449 -6.34238 0 0 585099. 2024.56 0.16 0.25 0.05 -1 -1 0.16 0.0226592 0.0196993 140 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 4.08 vpr 53.30 MiB -1 -1 0.14 17608 12 0.25 -1 -1 32280 -1 -1 31 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54584 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 14.9 MiB 0.22 1329 53.3 MiB 0.04 0.00 5.28752 -103.836 -5.28752 5.28752 0.55 0.000181054 0.000142647 0.00974821 0.00807173 30 3640 37 6.55708e+06 373705 526063. 1820.29 1.34 0.0505668 0.0434625 21886 126133 -1 2941 51 1313 4517 788610 452704 0 0 788610 452704 4517 2206 0 0 14214 11747 0 0 26182 17772 0 0 4517 2616 0 0 362148 209703 0 0 377032 208660 0 0 4517 0 0 3204 7857 7903 48109 0 0 6.10198 6.10198 -124.116 -6.10198 0 0 666494. 2306.21 0.19 0.18 0.06 -1 -1 0.19 0.0245823 0.0216235 191 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 4.89 vpr 53.74 MiB -1 -1 0.14 17424 13 0.29 -1 -1 32244 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55032 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 15.1 MiB 0.45 1579 53.7 MiB 0.04 0.00 6.9587 -147.728 -6.9587 6.9587 0.54 0.000201708 0.000163756 0.0102242 0.00850875 36 4081 27 6.55708e+06 397815 612192. 2118.31 1.93 0.0751214 0.0645618 22750 144809 -1 3404 21 1709 4771 251029 59698 0 0 251029 59698 4771 2335 0 0 16152 13273 0 0 24694 18567 0 0 4771 2892 0 0 98382 11679 0 0 102259 10952 0 0 4771 0 0 3062 4835 5102 33340 0 0 7.13036 7.13036 -166.054 -7.13036 0 0 782063. 2706.10 0.20 0.05 0.07 -1 -1 0.20 0.0165375 0.0150213 238 235 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 4.32 vpr 53.30 MiB -1 -1 0.15 17688 12 0.21 -1 -1 32680 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 14.8 MiB 0.32 1278 53.3 MiB 0.07 0.00 6.3225 -124.058 -6.3225 6.3225 0.55 0.000177125 0.000143873 0.0163782 0.013454 38 3379 23 6.55708e+06 385760 638502. 2209.35 1.63 0.0725589 0.0617851 23326 155178 -1 2601 16 1252 3842 182696 44822 0 0 182696 44822 3842 1614 0 0 12632 10394 0 0 18089 13765 0 0 3842 2017 0 0 72126 8378 0 0 72165 8654 0 0 3842 0 0 2590 4114 4779 32589 0 0 6.5629 6.5629 -142.761 -6.5629 0 0 851065. 2944.86 0.22 0.04 0.08 -1 -1 0.22 0.0128205 0.0117438 200 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 3.69 vpr 52.72 MiB -1 -1 0.12 17196 12 0.12 -1 -1 32080 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53984 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 14.1 MiB 0.42 1131 52.7 MiB 0.04 0.00 5.60752 -118.877 -5.60752 5.60752 0.55 0.000133506 0.000108591 0.00879589 0.00731788 28 2998 32 6.55708e+06 241100 500653. 1732.36 1.10 0.0385679 0.0331063 21310 115450 -1 2644 19 1175 3346 219317 48875 0 0 219317 48875 3346 1775 0 0 11425 9409 0 0 18091 13271 0 0 3346 2067 0 0 91713 11232 0 0 91396 11121 0 0 3346 0 0 2171 4041 4135 25489 0 0 6.05112 6.05112 -146.523 -6.05112 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00995664 0.0089678 126 119 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.84 vpr 52.96 MiB -1 -1 0.13 17428 12 0.21 -1 -1 32224 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54236 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 14.3 MiB 0.21 1202 53.0 MiB 0.02 0.00 5.65838 -117.036 -5.65838 5.65838 0.54 0.000149772 0.000118721 0.00538654 0.00456537 30 2914 26 6.55708e+06 289320 526063. 1820.29 3.37 0.0632923 0.0543283 21886 126133 -1 2605 14 1067 3365 166030 38246 0 0 166030 38246 3365 1535 0 0 10595 8648 0 0 15042 11150 0 0 3365 1906 0 0 67688 7439 0 0 65975 7568 0 0 3365 0 0 2298 3845 4108 26714 0 0 6.13918 6.13918 -135.428 -6.13918 0 0 666494. 2306.21 0.23 0.03 0.06 -1 -1 0.23 0.00994096 0.00911077 154 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 4.82 vpr 53.11 MiB -1 -1 0.15 17504 11 0.20 -1 -1 32120 -1 -1 30 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54380 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 14.5 MiB 0.11 1424 53.1 MiB 0.06 0.00 5.67264 -114.054 -5.67264 5.67264 0.55 0.0001629 0.00013154 0.0135476 0.0111152 36 3541 29 6.55708e+06 361650 612192. 2118.31 2.35 0.0735755 0.0633251 22750 144809 -1 2905 14 1069 3470 198673 44535 0 0 198673 44535 3470 1648 0 0 11753 9443 0 0 17999 13410 0 0 3470 2043 0 0 80561 9056 0 0 81420 8935 0 0 3470 0 0 2401 5076 5458 34537 0 0 6.51404 6.51404 -135.732 -6.51404 0 0 782063. 2706.10 0.21 0.04 0.07 -1 -1 0.21 0.0111608 0.0102371 190 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 3.37 vpr 53.06 MiB -1 -1 0.11 17596 11 0.17 -1 -1 32192 -1 -1 27 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54336 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 14.6 MiB 0.12 1199 53.1 MiB 0.04 0.00 5.32672 -100.829 -5.32672 5.32672 0.55 0.000160347 0.00012371 0.00901265 0.00744246 30 2836 50 6.55708e+06 325485 526063. 1820.29 0.97 0.0478538 0.0409916 21886 126133 -1 2445 25 1084 3820 449528 220146 0 0 449528 220146 3820 1646 0 0 12226 9994 0 0 19997 14461 0 0 3820 2055 0 0 203552 94975 0 0 206113 97015 0 0 3820 0 0 2736 5537 6392 40367 0 0 5.66238 5.66238 -118.823 -5.66238 0 0 666494. 2306.21 0.18 0.10 0.06 -1 -1 0.18 0.0142278 0.012663 172 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 3.30 vpr 53.00 MiB -1 -1 0.13 17504 13 0.19 -1 -1 32084 -1 -1 25 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54276 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 14.4 MiB 0.22 1136 53.0 MiB 0.03 0.00 6.2421 -116.725 -6.2421 6.2421 0.55 0.00014097 0.00011415 0.00700231 0.00584702 30 2619 19 6.55708e+06 301375 526063. 1820.29 0.83 0.0349358 0.0302938 21886 126133 -1 2309 14 919 2821 132733 31883 0 0 132733 31883 2821 1297 0 0 9083 7480 0 0 12827 9725 0 0 2821 1568 0 0 52237 6007 0 0 52944 5806 0 0 2821 0 0 1902 3202 3171 22344 0 0 6.8431 6.8431 -139.41 -6.8431 0 0 666494. 2306.21 0.19 0.03 0.07 -1 -1 0.19 0.0102197 0.00944247 148 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 3.28 vpr 53.16 MiB -1 -1 0.13 17540 12 0.16 -1 -1 32104 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54440 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 14.6 MiB 0.23 1327 53.2 MiB 0.04 0.00 5.8809 -127.055 -5.8809 5.8809 0.55 0.000157376 0.000126771 0.0100997 0.00830342 30 3219 17 6.55708e+06 337540 526063. 1820.29 0.79 0.0394504 0.0338443 21886 126133 -1 2680 19 1137 3225 158232 37376 0 0 158232 37376 3225 1721 0 0 10458 8367 0 0 14526 11151 0 0 3225 1993 0 0 61908 7336 0 0 64890 6808 0 0 3225 0 0 2088 3722 3506 23973 0 0 6.2833 6.2833 -149.485 -6.2833 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0122935 0.0111761 174 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 3.22 vpr 53.29 MiB -1 -1 0.12 17524 13 0.26 -1 -1 32268 -1 -1 27 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54564 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 14.6 MiB 0.22 1304 53.3 MiB 0.04 0.00 6.36936 -127.634 -6.36936 6.36936 0.55 0.000169043 0.000135932 0.0102368 0.0084819 30 2954 18 6.55708e+06 325485 526063. 1820.29 0.65 0.0411757 0.0353858 21886 126133 -1 2528 17 1100 3342 154061 36935 0 0 154061 36935 3342 1477 0 0 10866 8604 0 0 15451 11787 0 0 3342 1827 0 0 60465 6566 0 0 60595 6674 0 0 3342 0 0 2242 4046 3871 27253 0 0 6.85016 6.85016 -145.735 -6.85016 0 0 666494. 2306.21 0.20 0.04 0.06 -1 -1 0.20 0.0126059 0.0115328 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 3.34 vpr 53.33 MiB -1 -1 0.14 17840 14 0.24 -1 -1 32780 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54612 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 14.9 MiB 0.19 1400 53.3 MiB 0.04 0.00 6.76976 -136.855 -6.76976 6.76976 0.59 0.000177236 0.000143145 0.0106378 0.00884034 30 2961 24 6.55708e+06 337540 526063. 1820.29 0.75 0.0449239 0.0386825 21886 126133 -1 2605 15 1072 3281 155740 36733 0 0 155740 36733 3281 1406 0 0 10798 8696 0 0 14849 11469 0 0 3281 1703 0 0 62600 6682 0 0 60931 6777 0 0 3281 0 0 2209 4371 3989 29442 0 0 7.46142 7.46142 -156.808 -7.46142 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0125196 0.0114974 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 3.68 vpr 53.09 MiB -1 -1 0.14 17840 14 0.21 -1 -1 32220 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54364 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 14.6 MiB 0.22 1181 53.1 MiB 0.03 0.00 6.18664 -123.776 -6.18664 6.18664 0.54 0.00017019 0.000138967 0.00805704 0.0067983 28 3525 35 6.55708e+06 301375 500653. 1732.36 1.13 0.0470753 0.0407194 21310 115450 -1 2747 20 1554 4958 371698 109195 0 0 371698 109195 4958 2649 0 0 16827 13425 0 0 27445 19926 0 0 4958 3004 0 0 161220 37190 0 0 156290 33001 0 0 4958 0 0 3404 9205 7391 48768 0 0 6.97658 6.97658 -148.894 -6.97658 0 0 612192. 2118.31 0.17 0.07 0.06 -1 -1 0.17 0.013034 0.0117873 175 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.09 vpr 53.45 MiB -1 -1 0.13 17684 13 0.29 -1 -1 32320 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 14.9 MiB 0.23 1332 53.4 MiB 0.05 0.00 6.57056 -128.279 -6.57056 6.57056 0.55 0.000192951 0.000150821 0.011348 0.00933903 36 3590 41 6.55708e+06 349595 612192. 2118.31 2.40 0.081728 0.0704805 22750 144809 -1 3011 16 1311 4074 236306 53514 0 0 236306 53514 4074 1953 0 0 13467 10720 0 0 20711 15335 0 0 4074 2403 0 0 92412 12275 0 0 101568 10828 0 0 4074 0 0 2763 5648 5211 35074 0 0 7.17156 7.17156 -149.181 -7.17156 0 0 782063. 2706.10 0.21 0.04 0.07 -1 -1 0.21 0.0130333 0.0119518 205 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 3.55 vpr 53.04 MiB -1 -1 0.13 17312 13 0.16 -1 -1 32136 -1 -1 24 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54316 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 14.4 MiB 0.33 1111 53.0 MiB 0.07 0.00 6.02664 -124.389 -6.02664 6.02664 0.56 0.000147058 0.000114458 0.0174503 0.0141577 28 3051 39 6.55708e+06 289320 500653. 1732.36 1.01 0.050862 0.0431681 21310 115450 -1 2501 16 1102 2745 153868 37454 0 0 153868 37454 2745 1612 0 0 9813 7957 0 0 14490 11330 0 0 2745 1943 0 0 60617 7632 0 0 63458 6980 0 0 2745 0 0 1643 2418 2490 17448 0 0 6.47024 6.47024 -143.406 -6.47024 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.0100918 0.00923405 147 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 4.87 vpr 53.54 MiB -1 -1 0.14 17840 13 0.38 -1 -1 32184 -1 -1 32 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54824 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 15.0 MiB 0.26 1418 53.5 MiB 0.04 0.00 6.56856 -134.323 -6.56856 6.56856 0.55 0.000187448 0.000153499 0.00881618 0.00743539 36 3697 41 6.55708e+06 385760 612192. 2118.31 2.05 0.0770749 0.066596 22750 144809 -1 3137 19 1568 4556 255745 58099 0 0 255745 58099 4556 2211 0 0 15447 12727 0 0 23827 17553 0 0 4556 2856 0 0 101175 11702 0 0 106184 11050 0 0 4556 0 0 2988 4538 4843 32179 0 0 6.92916 6.92916 -151.647 -6.92916 0 0 782063. 2706.10 0.20 0.05 0.07 -1 -1 0.20 0.0146908 0.0132985 203 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 4.10 vpr 53.26 MiB -1 -1 0.14 17700 14 0.27 -1 -1 32248 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54540 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 14.6 MiB 0.40 1354 53.3 MiB 0.04 0.00 6.49216 -139.653 -6.49216 6.49216 0.55 0.000170414 0.000138724 0.00837442 0.00696846 30 3556 33 6.55708e+06 325485 526063. 1820.29 1.31 0.0502291 0.0435537 21886 126133 -1 2841 17 1207 3959 197523 45557 0 0 197523 45557 3959 1676 0 0 12724 10485 0 0 18319 13635 0 0 3959 2056 0 0 78557 9056 0 0 80005 8649 0 0 3959 0 0 2752 6126 5476 39663 0 0 6.9195 6.9195 -158.1 -6.9195 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0124782 0.0113785 181 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 3.97 vpr 53.10 MiB -1 -1 0.13 17476 13 0.18 -1 -1 32252 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54376 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 14.6 MiB 0.23 1380 53.1 MiB 0.06 0.00 6.42704 -130.4 -6.42704 6.42704 0.55 0.000162378 0.000130704 0.0131797 0.0107215 38 3174 29 6.55708e+06 301375 638502. 2209.35 1.40 0.0665265 0.0564147 23326 155178 -1 2680 17 1115 3336 171100 38326 0 0 171100 38326 3336 1479 0 0 10625 8564 0 0 15912 11559 0 0 3336 1880 0 0 68721 7485 0 0 69170 7359 0 0 3336 0 0 2221 4126 4001 28032 0 0 6.74844 6.74844 -147.384 -6.74844 0 0 851065. 2944.86 0.22 0.04 0.08 -1 -1 0.22 0.0120046 0.010978 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 4.57 vpr 53.12 MiB -1 -1 0.13 17876 13 0.19 -1 -1 32212 -1 -1 27 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54396 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 14.6 MiB 0.30 1365 53.1 MiB 0.03 0.00 6.25938 -118.558 -6.25938 6.25938 0.55 0.000163695 0.000130934 0.00661488 0.00554848 28 3841 44 6.55708e+06 325485 500653. 1732.36 1.95 0.0513357 0.0446609 21310 115450 -1 3204 26 1661 5190 510610 170391 0 0 510610 170391 5190 2864 0 0 17492 14173 0 0 28314 20352 0 0 5190 3278 0 0 231363 68705 0 0 223061 61019 0 0 5190 0 0 3529 8307 8562 48844 0 0 6.61998 6.61998 -137.375 -6.61998 0 0 612192. 2118.31 0.17 0.09 0.06 -1 -1 0.17 0.0147959 0.0132968 178 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 4.12 vpr 53.53 MiB -1 -1 0.15 17712 14 0.35 -1 -1 32312 -1 -1 37 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 15.1 MiB 0.29 1469 53.5 MiB 0.08 0.00 7.06464 -143.336 -7.06464 7.06464 0.55 0.000197414 0.000154126 0.0172068 0.0140615 38 3355 24 6.55708e+06 446035 638502. 2209.35 1.30 0.0764715 0.065057 23326 155178 -1 2787 15 1340 3805 170987 41559 0 0 170987 41559 3805 1659 0 0 12442 10061 0 0 17750 13642 0 0 3805 2159 0 0 66536 6997 0 0 66649 7041 0 0 3805 0 0 2465 3086 3812 25522 0 0 7.18484 7.18484 -156.435 -7.18484 0 0 851065. 2944.86 0.21 0.04 0.08 -1 -1 0.21 0.0134329 0.0123678 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 3.37 vpr 53.11 MiB -1 -1 0.13 17844 11 0.26 -1 -1 32264 -1 -1 29 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54380 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 14.6 MiB 0.34 1219 53.1 MiB 0.04 0.00 5.81778 -116.006 -5.81778 5.81778 0.54 0.000164558 0.000133542 0.0103154 0.00851166 30 3010 20 6.55708e+06 349595 526063. 1820.29 0.70 0.0413937 0.0355537 21886 126133 -1 2581 14 1120 3231 154914 37209 0 0 154914 37209 3231 1459 0 0 10604 8644 0 0 14723 11397 0 0 3231 1773 0 0 60945 7152 0 0 62180 6784 0 0 3231 0 0 2111 3636 3836 26630 0 0 5.89878 5.89878 -128.657 -5.89878 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0112465 0.0103615 177 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 3.72 vpr 52.75 MiB -1 -1 0.11 17140 13 0.13 -1 -1 32352 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54020 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 14.3 MiB 0.23 1022 52.8 MiB 0.05 0.00 5.85758 -132.511 -5.85758 5.85758 0.54 0.000142356 0.000108942 0.0114003 0.00917642 34 3082 46 6.55708e+06 289320 585099. 2024.56 1.32 0.0579552 0.0490287 22462 138074 -1 2353 17 1042 2672 156093 37343 0 0 156093 37343 2672 1485 0 0 9424 7656 0 0 14514 10976 0 0 2672 1707 0 0 62608 7857 0 0 64203 7662 0 0 2672 0 0 1630 2315 2682 16673 0 0 6.20592 6.20592 -152.765 -6.20592 0 0 742403. 2568.87 0.20 0.03 0.07 -1 -1 0.20 0.00959042 0.00874835 138 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 4.05 vpr 53.25 MiB -1 -1 0.14 17684 14 0.22 -1 -1 32044 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54528 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 14.7 MiB 0.34 1315 53.2 MiB 0.04 0.00 6.7973 -141.369 -6.7973 6.7973 0.55 0.000173977 0.000142249 0.00924479 0.00770354 40 2933 26 6.55708e+06 337540 666494. 2306.21 1.31 0.0592852 0.050714 23614 160646 -1 2854 16 1127 3427 192542 44602 0 0 192542 44602 3427 1567 0 0 11976 9616 0 0 19494 14167 0 0 3427 1990 0 0 75877 8850 0 0 78341 8412 0 0 3427 0 0 2300 4383 4045 28621 0 0 7.3591 7.3591 -160.163 -7.3591 0 0 872365. 3018.56 0.22 0.04 0.08 -1 -1 0.22 0.0116557 0.010685 179 172 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 4.09 vpr 53.88 MiB -1 -1 0.13 17768 15 0.38 -1 -1 32192 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55168 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 15.2 MiB 0.22 1635 53.9 MiB 0.05 0.00 7.65861 -154.57 -7.65861 7.65861 0.55 0.00020982 0.000171518 0.0106554 0.00893417 30 4639 29 6.55708e+06 397815 526063. 1820.29 1.34 0.0575466 0.0497363 21886 126133 -1 3716 21 1844 5324 266944 63679 0 0 266944 63679 5324 2710 0 0 17082 14031 0 0 23944 18077 0 0 5324 3178 0 0 105491 13060 0 0 109779 12623 0 0 5324 0 0 3480 5796 5869 39709 0 0 8.10221 8.10221 -179.88 -8.10221 0 0 666494. 2306.21 0.18 0.05 0.06 -1 -1 0.18 0.0171464 0.0155641 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 3.67 vpr 52.74 MiB -1 -1 0.11 17308 11 0.13 -1 -1 32084 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54004 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 14.1 MiB 0.31 1063 52.7 MiB 0.03 0.00 5.34158 -111.815 -5.34158 5.34158 0.55 0.000231409 0.000185981 0.00738876 0.00615803 26 2865 34 6.55708e+06 265210 477104. 1650.88 1.22 0.0392968 0.0339841 21022 109990 -1 2540 20 1105 3337 277798 73676 0 0 277798 73676 3337 1827 0 0 12036 10116 0 0 19740 14641 0 0 3337 2099 0 0 119477 22950 0 0 119871 22043 0 0 3337 0 0 2232 4958 4661 29226 0 0 5.98178 5.98178 -138.978 -5.98178 0 0 585099. 2024.56 0.16 0.05 0.05 -1 -1 0.16 0.0103269 0.00931256 129 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 4.56 vpr 52.93 MiB -1 -1 0.11 17100 12 0.16 -1 -1 32176 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54200 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 14.3 MiB 0.20 1303 52.9 MiB 0.04 0.00 5.73678 -124.456 -5.73678 5.73678 0.57 0.000150156 0.000120298 0.00937266 0.00771808 36 3232 24 6.55708e+06 313430 612192. 2118.31 2.08 0.062903 0.054408 22750 144809 -1 2806 16 1186 3320 189039 42740 0 0 189039 42740 3320 1750 0 0 11018 8951 0 0 17265 12676 0 0 3320 2123 0 0 77185 8564 0 0 76931 8676 0 0 3320 0 0 2134 3242 3823 23419 0 0 6.04392 6.04392 -144.786 -6.04392 0 0 782063. 2706.10 0.21 0.04 0.07 -1 -1 0.21 0.0105511 0.00961856 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 3.78 vpr 53.55 MiB -1 -1 0.15 17480 12 0.26 -1 -1 32268 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 14.9 MiB 0.24 1480 53.6 MiB 0.07 0.00 5.87124 -132.597 -5.87124 5.87124 0.55 0.000200264 0.000156217 0.0167721 0.0137059 30 3833 50 6.55708e+06 385760 526063. 1820.29 1.10 0.0645721 0.0547758 21886 126133 -1 3077 17 1558 4625 228675 53466 0 0 228675 53466 4625 2064 0 0 14971 12354 0 0 21308 16093 0 0 4625 2528 0 0 92445 10127 0 0 90701 10300 0 0 4625 0 0 3067 5098 5993 37521 0 0 6.11164 6.11164 -150.79 -6.11164 0 0 666494. 2306.21 0.18 0.05 0.06 -1 -1 0.18 0.0139804 0.0127893 213 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 4.09 vpr 53.26 MiB -1 -1 0.13 17432 12 0.21 -1 -1 32220 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54536 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 14.6 MiB 0.25 1399 53.3 MiB 0.04 0.00 6.1611 -131.692 -6.1611 6.1611 0.54 0.000171657 0.000136413 0.00816294 0.00676955 42 3648 48 6.55708e+06 313430 701300. 2426.64 1.40 0.0677091 0.057733 23902 167433 -1 3016 29 1278 4059 633979 317690 0 0 633979 317690 4059 1964 0 0 14246 11647 0 0 26456 18856 0 0 4059 2474 0 0 281051 137327 0 0 304108 145422 0 0 4059 0 0 2781 5766 5741 35835 0 0 6.4825 6.4825 -147.182 -6.4825 0 0 896083. 3100.63 0.23 0.13 0.08 -1 -1 0.23 0.0164075 0.0147159 181 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 4.83 vpr 53.83 MiB -1 -1 0.14 17872 14 0.40 -1 -1 32212 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55120 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 15.2 MiB 0.41 1590 53.8 MiB 0.05 0.00 7.45681 -149.023 -7.45681 7.45681 0.54 0.000205014 0.000166505 0.0116813 0.00969328 38 3964 23 6.55708e+06 373705 638502. 2209.35 1.76 0.0763924 0.0653102 23326 155178 -1 3459 29 1581 5267 511764 223794 0 0 511764 223794 5267 2166 0 0 16926 14130 0 0 27338 19670 0 0 5267 2825 0 0 228947 93851 0 0 228019 91152 0 0 5267 0 0 3686 6632 7221 45132 0 0 7.69922 7.69922 -164.445 -7.69922 0 0 851065. 2944.86 0.21 0.11 0.08 -1 -1 0.21 0.0205037 0.0184098 234 232 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 4.66 vpr 53.20 MiB -1 -1 0.13 17348 12 0.20 -1 -1 32264 -1 -1 25 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54480 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 14.7 MiB 0.34 1295 53.2 MiB 0.05 0.00 6.13918 -117.757 -6.13918 6.13918 0.55 0.000153837 0.00012505 0.0107214 0.00886862 28 3840 38 6.55708e+06 301375 500653. 1732.36 2.03 0.0529221 0.0459458 21310 115450 -1 3224 22 1351 4234 330087 69544 0 0 330087 69544 4234 2432 0 0 14328 11841 0 0 22651 16635 0 0 4234 2873 0 0 142469 18282 0 0 142171 17481 0 0 4234 0 0 2883 6254 6288 38263 0 0 6.31284 6.31284 -134.771 -6.31284 0 0 612192. 2118.31 0.17 0.06 0.06 -1 -1 0.17 0.0137044 0.0123797 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 3.22 vpr 52.93 MiB -1 -1 0.12 17236 11 0.16 -1 -1 32092 -1 -1 26 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54200 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 14.4 MiB 0.23 995 52.9 MiB 0.04 0.00 5.54984 -99.8768 -5.54984 5.54984 0.54 0.000130731 0.0001054 0.0101135 0.00833935 30 2509 32 6.55708e+06 313430 526063. 1820.29 0.79 0.0381781 0.0326057 21886 126133 -1 2077 14 861 2578 121083 29684 0 0 121083 29684 2578 1284 0 0 8269 6766 0 0 11679 8789 0 0 2578 1494 0 0 47447 5795 0 0 48532 5556 0 0 2578 0 0 1717 2615 2927 19429 0 0 5.99144 5.99144 -117.03 -5.99144 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00891065 0.00819246 140 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 6.28 vpr 53.66 MiB -1 -1 0.14 18316 13 0.38 -1 -1 32384 -1 -1 40 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 15.5 MiB 0.34 1850 53.7 MiB 0.06 0.00 6.5217 -134.01 -6.5217 6.5217 0.54 0.000226768 0.000183606 0.0138509 0.0113733 38 4809 50 6.55708e+06 482200 638502. 2209.35 3.35 0.102758 0.0879166 23326 155178 -1 3726 17 1852 6072 288807 68052 0 0 288807 68052 6072 2525 0 0 19523 15915 0 0 27675 20873 0 0 6072 3200 0 0 110784 13441 0 0 118681 12098 0 0 6072 0 0 4220 7971 8085 55492 0 0 6.8013 6.8013 -151.312 -6.8013 0 0 851065. 2944.86 0.21 0.06 0.08 -1 -1 0.21 0.0173676 0.0158753 286 285 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 7.42 vpr 53.32 MiB -1 -1 0.14 17884 14 0.20 -1 -1 32696 -1 -1 28 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54604 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1321 53.3 MiB 0.06 0.00 6.68876 -132.38 -6.68876 6.68876 0.55 0.000168945 0.000137254 0.0151021 0.0124075 30 3593 37 6.55708e+06 337540 526063. 1820.29 4.94 0.0966557 0.0827162 21886 126133 -1 2880 18 1276 3478 178039 42231 0 0 178039 42231 3478 1732 0 0 11435 9215 0 0 15669 12199 0 0 3478 2108 0 0 71388 8626 0 0 72591 8351 0 0 3478 0 0 2202 3120 3502 23552 0 0 7.25056 7.25056 -156.473 -7.25056 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0125453 0.0114062 188 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 3.12 vpr 52.91 MiB -1 -1 0.13 17352 12 0.15 -1 -1 32100 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54180 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 14.4 MiB 0.25 1169 52.9 MiB 0.03 0.00 5.95024 -129.421 -5.95024 5.95024 0.54 0.00013978 0.000112781 0.00667723 0.00559153 28 2949 18 6.55708e+06 325485 500653. 1732.36 0.71 0.0324328 0.0279711 21310 115450 -1 2563 16 1039 2874 164174 38256 0 0 164174 38256 2874 1505 0 0 9982 7949 0 0 15193 11464 0 0 2874 1726 0 0 66720 7940 0 0 66531 7672 0 0 2874 0 0 1835 3039 3058 20538 0 0 6.22984 6.22984 -146.616 -6.22984 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00994319 0.00909201 145 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 3.65 vpr 53.24 MiB -1 -1 0.14 17472 13 0.24 -1 -1 32280 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54516 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 14.7 MiB 0.40 1363 53.2 MiB 0.04 0.00 6.4825 -135.398 -6.4825 6.4825 0.55 0.000174653 0.000143246 0.00835844 0.00698267 28 3348 46 6.55708e+06 313430 500653. 1732.36 0.94 0.0489684 0.0420825 21310 115450 -1 2948 20 1198 3594 208794 48344 0 0 208794 48344 3594 1794 0 0 12402 9948 0 0 18955 14292 0 0 3594 2128 0 0 85569 10042 0 0 84680 10140 0 0 3594 0 0 2396 4673 4862 29791 0 0 7.0443 7.0443 -153.736 -7.0443 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.0129288 0.0117476 169 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.01 vpr 53.52 MiB -1 -1 0.16 17844 13 0.28 -1 -1 32180 -1 -1 35 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54804 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 15.1 MiB 0.21 1793 53.5 MiB 0.05 0.00 6.5197 -138.073 -6.5197 6.5197 0.55 0.000193468 0.000157115 0.0105905 0.00883622 36 4477 30 6.55708e+06 421925 612192. 2118.31 3.33 0.0808582 0.0697782 22750 144809 -1 3769 17 1457 4428 269135 58607 0 0 269135 58607 4428 2106 0 0 15013 11743 0 0 23032 17054 0 0 4428 2606 0 0 109513 12993 0 0 112721 12105 0 0 4428 0 0 2971 5864 5631 38094 0 0 6.9613 6.9613 -158.522 -6.9613 0 0 782063. 2706.10 0.20 0.05 0.07 -1 -1 0.20 0.0147032 0.0134593 233 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.00 vpr 53.25 MiB -1 -1 0.14 17484 11 0.23 -1 -1 32260 -1 -1 31 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54532 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 14.8 MiB 0.19 1443 53.3 MiB 0.04 0.00 5.31404 -109.502 -5.31404 5.31404 0.54 0.000189391 0.000147267 0.00944242 0.00781687 36 3678 42 6.55708e+06 373705 612192. 2118.31 2.46 0.072953 0.0623948 22750 144809 -1 3153 20 1355 4842 300118 65190 0 0 300118 65190 4842 2381 0 0 16206 13533 0 0 26252 19020 0 0 4842 2949 0 0 120057 14193 0 0 127919 13114 0 0 4842 0 0 3487 8073 8006 50028 0 0 5.67464 5.67464 -125.507 -5.67464 0 0 782063. 2706.10 0.20 0.05 0.07 -1 -1 0.20 0.0138395 0.0125418 199 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 3.89 vpr 53.48 MiB -1 -1 0.12 17840 15 0.31 -1 -1 32348 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 14.9 MiB 0.41 1529 53.5 MiB 0.05 0.00 7.33722 -153.781 -7.33722 7.33722 0.54 0.000185352 0.000150886 0.0109151 0.00905671 30 3689 41 6.55708e+06 349595 526063. 1820.29 1.07 0.0536076 0.0458617 21886 126133 -1 3027 16 1359 4338 207750 48920 0 0 207750 48920 4338 1871 0 0 13963 11440 0 0 20174 15121 0 0 4338 2177 0 0 83561 8988 0 0 81376 9323 0 0 4338 0 0 2979 5296 5642 37745 0 0 7.57761 7.57761 -171.801 -7.57761 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0131977 0.0120544 202 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 7.58 vpr 53.54 MiB -1 -1 0.13 17956 13 0.30 -1 -1 32284 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54824 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 14.9 MiB 0.36 1400 53.5 MiB 0.04 0.00 6.7601 -144.101 -6.7601 6.7601 0.55 0.000179311 0.000145809 0.00848139 0.00712354 28 4081 26 6.55708e+06 361650 500653. 1732.36 4.81 0.0931395 0.0802842 21310 115450 -1 3293 17 1430 4146 236659 55366 0 0 236659 55366 4146 2239 0 0 14256 11482 0 0 21998 16457 0 0 4146 2582 0 0 95211 11580 0 0 96902 11026 0 0 4146 0 0 2716 5726 5516 35772 0 0 7.1207 7.1207 -167.473 -7.1207 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0133918 0.0122394 194 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 3.29 vpr 53.04 MiB -1 -1 0.12 17144 12 0.17 -1 -1 32056 -1 -1 29 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54316 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 14.3 MiB 0.36 1134 53.0 MiB 0.04 0.00 6.1611 -125.432 -6.1611 6.1611 0.54 0.000142303 0.000115894 0.00837793 0.00694903 30 2779 29 6.55708e+06 349595 526063. 1820.29 0.70 0.0378994 0.03249 21886 126133 -1 2400 17 1088 3117 150749 35955 0 0 150749 35955 3117 1485 0 0 10082 8270 0 0 14275 10846 0 0 3117 1870 0 0 60217 6785 0 0 59941 6699 0 0 3117 0 0 2029 2706 2843 19885 0 0 6.4407 6.4407 -142.527 -6.4407 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0105999 0.00966084 157 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 3.20 vpr 52.88 MiB -1 -1 0.11 17608 11 0.13 -1 -1 32056 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54152 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 14.4 MiB 0.17 1059 52.9 MiB 0.04 0.00 5.51064 -114.131 -5.51064 5.51064 0.55 0.00013736 0.000110555 0.00930983 0.00770015 32 3266 40 6.55708e+06 253155 554710. 1919.41 0.82 0.0403036 0.034424 22174 131602 -1 2681 27 1624 4535 362931 110790 0 0 362931 110790 4535 2516 0 0 15971 13083 0 0 28197 20096 0 0 4535 3150 0 0 155910 36494 0 0 153783 35451 0 0 4535 0 0 2911 5080 5139 31647 0 0 6.22218 6.22218 -142.909 -6.22218 0 0 701300. 2426.64 0.19 0.07 0.07 -1 -1 0.19 0.0125398 0.0111812 145 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 4.46 vpr 53.54 MiB -1 -1 0.13 17500 13 0.29 -1 -1 32304 -1 -1 29 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54820 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 14.9 MiB 0.39 1313 53.5 MiB 0.05 0.00 6.4805 -129.871 -6.4805 6.4805 0.55 0.000184282 0.000146249 0.0113896 0.0093886 38 3103 27 6.55708e+06 349595 638502. 2209.35 1.58 0.0700054 0.0598348 23326 155178 -1 2638 17 1294 4309 192975 46423 0 0 192975 46423 4309 1699 0 0 13891 11249 0 0 19604 14788 0 0 4309 2167 0 0 74789 8387 0 0 76073 8133 0 0 4309 0 0 3015 5755 5484 40029 0 0 6.7209 6.7209 -143.139 -6.7209 0 0 851065. 2944.86 0.23 0.04 0.08 -1 -1 0.23 0.0136817 0.0125417 203 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 3.21 vpr 52.80 MiB -1 -1 0.12 17216 10 0.14 -1 -1 32144 -1 -1 24 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54064 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 14.3 MiB 0.14 889 52.8 MiB 0.06 0.00 4.89172 -95.2749 -4.89172 4.89172 0.57 0.000158374 0.000128157 0.0133745 0.010994 30 2728 31 6.55708e+06 289320 526063. 1820.29 0.80 0.0423189 0.0359586 21886 126133 -1 1864 21 1084 3647 166359 40711 0 0 166359 40711 3647 1503 0 0 11450 9517 0 0 16880 12258 0 0 3647 1841 0 0 63848 7930 0 0 66887 7662 0 0 3647 0 0 2563 4449 4609 32660 0 0 5.21312 5.21312 -112.058 -5.21312 0 0 666494. 2306.21 0.19 0.06 0.06 -1 -1 0.19 0.0162229 0.0144328 137 130 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 4.08 vpr 52.99 MiB -1 -1 0.12 17344 14 0.16 -1 -1 32040 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54260 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 14.4 MiB 0.39 1126 53.0 MiB 0.04 0.00 6.58503 -136.393 -6.58503 6.58503 0.55 0.000143027 0.000115331 0.00771765 0.00634204 34 3082 37 6.55708e+06 289320 585099. 2024.56 1.42 0.055571 0.047332 22462 138074 -1 2524 17 1223 3572 199143 48270 0 0 199143 48270 3572 1778 0 0 12296 10104 0 0 19585 14334 0 0 3572 2216 0 0 82878 9632 0 0 77240 10206 0 0 3572 0 0 2349 3725 4817 27715 0 0 6.70924 6.70924 -153.326 -6.70924 0 0 742403. 2568.87 0.20 0.04 0.07 -1 -1 0.20 0.0107843 0.00979492 146 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 3.34 vpr 53.30 MiB -1 -1 0.15 17728 13 0.24 -1 -1 32300 -1 -1 30 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54580 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 14.7 MiB 0.25 1236 53.3 MiB 0.04 0.00 6.10764 -127.964 -6.10764 6.10764 0.55 0.000179696 0.000141443 0.00936072 0.00778236 30 3031 16 6.55708e+06 361650 526063. 1820.29 0.72 0.0407475 0.0351525 21886 126133 -1 2674 14 1167 3324 157974 38276 0 0 157974 38276 3324 1625 0 0 10899 8805 0 0 14819 11464 0 0 3324 1948 0 0 61759 7447 0 0 63849 6987 0 0 3324 0 0 2157 3364 3420 23877 0 0 6.51004 6.51004 -151.536 -6.51004 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0109865 0.0100959 180 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 6.25 vpr 52.76 MiB -1 -1 0.12 17088 12 0.12 -1 -1 32112 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54024 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 14.3 MiB 0.25 1067 52.8 MiB 0.05 0.00 5.24892 -114.596 -5.24892 5.24892 0.54 0.000135508 0.000109775 0.0105961 0.00872475 30 2602 20 6.55708e+06 313430 526063. 1820.29 3.83 0.0677368 0.057686 21886 126133 -1 2161 16 984 2589 124765 30333 0 0 124765 30333 2589 1201 0 0 8542 6911 0 0 11899 9184 0 0 2589 1447 0 0 50779 5597 0 0 48367 5993 0 0 2589 0 0 1605 2182 2751 17339 0 0 5.36912 5.36912 -126.108 -5.36912 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00932624 0.00852778 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 4.96 vpr 53.27 MiB -1 -1 0.13 17440 12 0.17 -1 -1 32204 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54552 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 14.9 MiB 0.23 1430 53.3 MiB 0.04 0.00 5.67264 -123.683 -5.67264 5.67264 0.55 0.000175509 0.000137296 0.00981124 0.00806438 34 3802 45 6.55708e+06 313430 585099. 2024.56 2.42 0.0764163 0.0656043 22462 138074 -1 3121 16 1206 3859 243682 54056 0 0 243682 54056 3859 1907 0 0 13700 11034 0 0 21408 15930 0 0 3859 2297 0 0 99540 11855 0 0 101316 11033 0 0 3859 0 0 2653 6624 6908 41976 0 0 6.15344 6.15344 -146.405 -6.15344 0 0 742403. 2568.87 0.20 0.04 0.07 -1 -1 0.20 0.012546 0.0114846 195 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 4.87 vpr 53.45 MiB -1 -1 0.14 17720 13 0.27 -1 -1 32220 -1 -1 29 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 14.9 MiB 0.37 1307 53.4 MiB 0.05 0.00 6.5981 -129.393 -6.5981 6.5981 0.54 0.000175151 0.000142371 0.0126155 0.0104712 36 3475 28 6.55708e+06 349595 612192. 2118.31 2.10 0.0727073 0.0624139 22750 144809 -1 2836 15 1281 3881 213326 50083 0 0 213326 50083 3881 1861 0 0 13210 10798 0 0 20096 15168 0 0 3881 2219 0 0 84003 10436 0 0 88255 9601 0 0 3881 0 0 2600 4972 5328 34381 0 0 6.8385 6.8385 -146.163 -6.8385 0 0 782063. 2706.10 0.20 0.04 0.07 -1 -1 0.20 0.0124811 0.0114741 193 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 3.21 vpr 52.75 MiB -1 -1 0.12 17480 11 0.14 -1 -1 31752 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54020 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 14.2 MiB 0.20 1110 52.8 MiB 0.05 0.00 5.45012 -121.16 -5.45012 5.45012 0.55 0.000140078 0.00011275 0.011759 0.00967884 30 3019 24 6.55708e+06 301375 526063. 1820.29 0.78 0.0394567 0.0336556 21886 126133 -1 2445 17 1019 2970 153900 36262 0 0 153900 36262 2970 1545 0 0 9721 7849 0 0 13886 10606 0 0 2970 1820 0 0 61927 7408 0 0 62426 7034 0 0 2970 0 0 1951 3313 3222 21998 0 0 5.69052 5.69052 -140.835 -5.69052 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0101242 0.00923718 148 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.06 vpr 52.98 MiB -1 -1 0.13 17532 13 0.18 -1 -1 32060 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54252 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 14.6 MiB 0.24 1213 53.0 MiB 0.06 0.00 6.2813 -133.177 -6.2813 6.2813 0.54 0.000151437 0.000121709 0.0133106 0.0109051 36 3172 25 6.55708e+06 289320 612192. 2118.31 1.50 0.0617735 0.0525042 22750 144809 -1 2623 17 1066 2995 175416 40542 0 0 175416 40542 2995 1541 0 0 10213 8278 0 0 15768 11906 0 0 2995 1812 0 0 70522 8846 0 0 72923 8159 0 0 2995 0 0 1929 3301 3496 22449 0 0 6.4015 6.4015 -149.131 -6.4015 0 0 782063. 2706.10 0.21 0.04 0.07 -1 -1 0.21 0.0113872 0.0104014 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 3.86 vpr 53.34 MiB -1 -1 0.13 17428 13 0.24 -1 -1 32352 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54616 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 14.9 MiB 0.53 1353 53.3 MiB 0.05 0.00 6.4779 -141.216 -6.4779 6.4779 0.55 0.000179806 0.000139396 0.0105224 0.00865866 30 3565 27 6.55708e+06 337540 526063. 1820.29 0.95 0.0472529 0.0406199 21886 126133 -1 2903 21 1388 3942 197590 47294 0 0 197590 47294 3942 1887 0 0 12875 10483 0 0 18075 13839 0 0 3942 2301 0 0 77892 9702 0 0 80864 9082 0 0 3942 0 0 2554 4208 4264 28504 0 0 7.1181 7.1181 -163.937 -7.1181 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0140739 0.012739 193 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 3.94 vpr 52.86 MiB -1 -1 0.15 17524 11 0.15 -1 -1 32272 -1 -1 27 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54124 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 14.2 MiB 0.15 1166 52.9 MiB 0.03 0.00 5.08892 -102.906 -5.08892 5.08892 0.55 0.00015012 0.000122129 0.00679646 0.00571333 36 2822 30 6.55708e+06 325485 612192. 2118.31 1.53 0.0558749 0.0480462 22750 144809 -1 2381 16 928 2837 155209 35637 0 0 155209 35637 2837 1325 0 0 9493 7572 0 0 14732 10883 0 0 2837 1614 0 0 62174 7064 0 0 63136 7179 0 0 2837 0 0 1909 3776 4132 26368 0 0 5.58398 5.58398 -117.885 -5.58398 0 0 782063. 2706.10 0.20 0.03 0.07 -1 -1 0.20 0.0105511 0.00965763 160 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 9.53 vpr 53.63 MiB -1 -1 0.16 17844 14 0.33 -1 -1 32280 -1 -1 35 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 15.1 MiB 0.27 1605 53.6 MiB 0.03 0.00 7.0377 -151.842 -7.0377 7.0377 0.55 0.000209647 0.0001636 0.0075222 0.00635842 30 4431 29 6.55708e+06 421925 526063. 1820.29 6.81 0.100864 0.087571 21886 126133 -1 3482 20 1762 5386 276733 68064 0 0 276733 68064 5386 2477 0 0 17361 14314 0 0 25240 18858 0 0 5386 3016 0 0 110865 14938 0 0 112495 14461 0 0 5386 0 0 3624 6778 5701 45233 0 0 7.1579 7.1579 -168.277 -7.1579 0 0 666494. 2306.21 0.18 0.05 0.06 -1 -1 0.18 0.0159175 0.0144704 224 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 4.21 vpr 52.81 MiB -1 -1 0.12 17088 12 0.13 -1 -1 32188 -1 -1 28 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54076 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 14.3 MiB 0.21 1156 52.8 MiB 0.04 0.00 5.57998 -121.761 -5.57998 5.57998 0.54 0.000136166 0.000110371 0.00983967 0.00811626 36 2690 47 6.55708e+06 337540 612192. 2118.31 1.83 0.0614555 0.0527623 22750 144809 -1 2273 19 1043 2689 153836 35375 0 0 153836 35375 2689 1420 0 0 9166 7410 0 0 14693 10713 0 0 2689 1705 0 0 62594 7062 0 0 62005 7065 0 0 2689 0 0 1646 2145 2581 16723 0 0 5.82038 5.82038 -136.665 -5.82038 0 0 782063. 2706.10 0.21 0.03 0.07 -1 -1 0.21 0.0102016 0.00924495 138 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 3.77 vpr 53.38 MiB -1 -1 0.15 17972 13 0.27 -1 -1 32660 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54656 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 14.9 MiB 0.32 1307 53.4 MiB 0.03 0.00 6.3969 -131.553 -6.3969 6.3969 0.54 0.000174668 0.000141973 0.00775312 0.00654931 30 3707 34 6.55708e+06 301375 526063. 1820.29 1.10 0.0482788 0.0417947 21886 126133 -1 3008 20 1402 4381 217912 51411 0 0 217912 51411 4381 1901 0 0 13850 11390 0 0 20116 14863 0 0 4381 2298 0 0 87013 10636 0 0 88171 10323 0 0 4381 0 0 2979 5587 6240 40393 0 0 6.5171 6.5171 -148.42 -6.5171 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0138382 0.0125695 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 4.04 vpr 52.92 MiB -1 -1 0.13 17444 13 0.17 -1 -1 31976 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54192 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 14.4 MiB 0.29 1197 52.9 MiB 0.05 0.00 6.3205 -136.346 -6.3205 6.3205 0.55 0.000154979 0.000119318 0.00994078 0.00813939 28 3457 38 6.55708e+06 313430 500653. 1732.36 1.51 0.0455852 0.039075 21310 115450 -1 2818 29 1214 3284 273116 89732 0 0 273116 89732 3284 1820 0 0 11333 9106 0 0 17788 13297 0 0 3284 2102 0 0 119354 33095 0 0 118073 30312 0 0 3284 0 0 2070 3029 3338 21561 0 0 6.3205 6.3205 -152.823 -6.3205 0 0 612192. 2118.31 0.17 0.06 0.06 -1 -1 0.17 0.0135262 0.0120857 151 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 3.99 vpr 53.22 MiB -1 -1 0.13 17424 12 0.19 -1 -1 32256 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54496 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 14.7 MiB 0.21 1319 53.2 MiB 0.03 0.00 6.07244 -127.971 -6.07244 6.07244 0.55 0.000167434 0.000135604 0.00820043 0.00687375 28 3698 31 6.55708e+06 313430 500653. 1732.36 1.48 0.0472022 0.0408528 21310 115450 -1 2889 20 1197 3722 289014 86004 0 0 289014 86004 3722 1848 0 0 12650 10380 0 0 19881 14623 0 0 3722 2145 0 0 126325 28560 0 0 122714 28448 0 0 3722 0 0 2525 5406 5944 35503 0 0 6.31284 6.31284 -147.835 -6.31284 0 0 612192. 2118.31 0.17 0.06 0.06 -1 -1 0.17 0.0134748 0.0122363 176 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 17.43 vpr 53.90 MiB -1 -1 0.15 17996 15 0.43 -1 -1 32604 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 15.4 MiB 0.22 1764 53.9 MiB 0.09 0.00 7.2801 -147.709 -7.2801 7.2801 0.55 0.000237766 0.000185149 0.0217695 0.0176191 38 4765 41 6.55708e+06 433980 638502. 2209.35 14.47 0.19738 0.169143 23326 155178 -1 3783 22 2138 7198 360685 82902 0 0 360685 82902 7198 2944 0 0 22348 18704 0 0 33857 24122 0 0 7198 3744 0 0 143244 16796 0 0 146840 16592 0 0 7198 0 0 5060 11234 10690 71912 0 0 7.49096 7.49096 -166.278 -7.49096 0 0 851065. 2944.86 0.22 0.07 0.08 -1 -1 0.22 0.0196649 0.0177785 256 255 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 3.04 vpr 52.27 MiB -1 -1 0.10 17052 10 0.08 -1 -1 31964 -1 -1 18 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53524 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 13.8 MiB 0.09 808 52.3 MiB 0.02 0.00 4.56326 -103.904 -4.56326 4.56326 0.54 0.000100009 7.9715e-05 0.00508382 0.0042299 26 2235 28 6.55708e+06 216990 477104. 1650.88 0.93 0.0253397 0.0216885 21022 109990 -1 1824 26 801 2035 119569 28520 0 0 119569 28520 2035 1204 0 0 7177 5825 0 0 11201 8314 0 0 2035 1375 0 0 48590 6005 0 0 48531 5797 0 0 2035 0 0 1234 1464 1842 11891 0 0 4.84286 4.84286 -120.448 -4.84286 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00870139 0.00774131 90 81 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.27 vpr 52.97 MiB -1 -1 0.13 17596 13 0.17 -1 -1 32220 -1 -1 25 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54244 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 14.4 MiB 0.13 1023 53.0 MiB 0.03 0.00 6.05678 -122.123 -6.05678 6.05678 0.56 0.000139781 0.000112247 0.00732803 0.00605287 28 3394 40 6.55708e+06 301375 500653. 1732.36 1.88 0.0435261 0.0375504 21310 115450 -1 2574 16 1069 2884 180281 43029 0 0 180281 43029 2884 1635 0 0 10181 8312 0 0 15806 12123 0 0 2884 1946 0 0 74253 9340 0 0 74273 9673 0 0 2884 0 0 1815 2346 2930 17957 0 0 6.21618 6.21618 -141.615 -6.21618 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00992074 0.00904636 143 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 3.54 vpr 53.12 MiB -1 -1 0.11 17432 12 0.18 -1 -1 32128 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54392 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 14.6 MiB 0.21 1248 53.1 MiB 0.04 0.00 6.46824 -134.482 -6.46824 6.46824 0.55 0.000164845 0.00013467 0.0103625 0.00865157 28 3554 28 6.55708e+06 289320 500653. 1732.36 1.09 0.0450422 0.0386648 21310 115450 -1 2878 16 1235 3276 191988 44553 0 0 191988 44553 3276 1848 0 0 11029 8912 0 0 17099 12921 0 0 3276 2165 0 0 78309 9572 0 0 78999 9135 0 0 3276 0 0 2041 3525 3541 22755 0 0 6.99084 6.99084 -156.606 -6.99084 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.0111103 0.0101488 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 3.24 vpr 52.55 MiB -1 -1 0.10 17240 9 0.11 -1 -1 32008 -1 -1 22 25 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53812 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 14.1 MiB 0.13 812 52.6 MiB 0.02 0.00 4.28106 -80.808 -4.28106 4.28106 0.58 0.000108842 8.7425e-05 0.00505061 0.00421523 26 2476 34 6.55708e+06 265210 477104. 1650.88 1.01 0.0304714 0.026135 21022 109990 -1 1949 19 883 2478 146123 34173 0 0 146123 34173 2478 1347 0 0 8527 6904 0 0 13361 9767 0 0 2478 1545 0 0 59479 7280 0 0 59800 7330 0 0 2478 0 0 1595 2647 2787 18257 0 0 4.76186 4.76186 -97.0068 -4.76186 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00862248 0.00776264 111 102 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.94 vpr 53.50 MiB -1 -1 0.13 17484 12 0.25 -1 -1 32272 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54780 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 14.9 MiB 0.25 1597 53.5 MiB 0.05 0.00 5.8025 -131.877 -5.8025 5.8025 0.56 0.000181958 0.000148745 0.0121905 0.0100692 30 3843 32 6.55708e+06 397815 526063. 1820.29 5.35 0.0879299 0.0750857 21886 126133 -1 3233 17 1582 4546 236152 54406 0 0 236152 54406 4546 2174 0 0 15030 12376 0 0 20643 16055 0 0 4546 2528 0 0 94858 10895 0 0 96529 10378 0 0 4546 0 0 2964 4968 4995 33387 0 0 6.39184 6.39184 -153.614 -6.39184 0 0 666494. 2306.21 0.18 0.05 0.06 -1 -1 0.18 0.0132674 0.012123 212 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 4.03 vpr 53.46 MiB -1 -1 0.15 17980 13 0.29 -1 -1 32232 -1 -1 30 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54744 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 14.9 MiB 0.23 1360 53.5 MiB 0.06 0.00 7.01016 -140.144 -7.01016 7.01016 0.60 0.000179544 0.000145455 0.0135491 0.0111651 38 3457 25 6.55708e+06 361650 638502. 2209.35 1.28 0.0694419 0.0591149 23326 155178 -1 2862 15 1235 3976 188218 44403 0 0 188218 44403 3976 1751 0 0 12590 10251 0 0 18551 13655 0 0 3976 2105 0 0 74298 8337 0 0 74827 8304 0 0 3976 0 0 2741 4693 4849 35509 0 0 7.49096 7.49096 -158.825 -7.49096 0 0 851065. 2944.86 0.22 0.04 0.08 -1 -1 0.22 0.0129371 0.0119038 200 197 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.55 vpr 53.36 MiB -1 -1 0.09 17348 1 0.01 -1 -1 29680 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54640 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 15.0 MiB 0.17 1046 53.4 MiB 0.05 0.00 4.42712 -130.161 -4.42712 4.42712 0.55 0.000155349 0.000117447 0.00830621 0.00682546 26 3343 40 6.64007e+06 401856 477104. 1650.88 1.38 0.0389981 0.0331372 21682 110474 -1 2375 21 1581 2445 161318 41786 0 0 161318 41786 2445 1885 0 0 8965 7293 0 0 13438 10482 0 0 2445 2027 0 0 65702 9670 0 0 68323 10429 0 0 2445 0 0 864 1144 904 8001 0 0 4.73068 4.73068 -161.841 -4.73068 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.00971351 0.00867797 154 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.02 vpr 53.70 MiB -1 -1 0.11 17676 1 0.02 -1 -1 29844 -1 -1 24 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54992 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 15.1 MiB 0.15 937 53.7 MiB 0.06 0.00 3.90562 -118.037 -3.90562 3.90562 0.55 0.000124145 9.9733e-05 0.0102754 0.00845193 32 2464 30 6.64007e+06 301392 554710. 1919.41 0.80 0.0429958 0.0369612 22834 132086 -1 2046 23 1763 2677 218325 54384 0 0 218325 54384 2677 2156 0 0 9689 8130 0 0 15075 11331 0 0 2677 2378 0 0 100567 14852 0 0 87640 15537 0 0 2677 0 0 914 917 773 7109 0 0 4.41709 4.41709 -143.021 -4.41709 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0103632 0.00918955 139 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.14 vpr 53.22 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54500 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1048 53.2 MiB 0.04 0.00 3.51556 -106.006 -3.51556 3.51556 0.55 0.000108293 8.6888e-05 0.00566845 0.00471354 26 2658 25 6.64007e+06 288834 477104. 1650.88 1.02 0.0297292 0.0254745 21682 110474 -1 2235 20 1330 1872 130885 30398 0 0 130885 30398 1872 1474 0 0 6888 5717 0 0 10194 7960 0 0 1872 1603 0 0 54701 6832 0 0 55358 6812 0 0 1872 0 0 542 566 681 4967 0 0 3.86422 3.86422 -124.693 -3.86422 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00828769 0.00742933 126 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 2.65 vpr 53.20 MiB -1 -1 0.10 17444 1 0.01 -1 -1 29776 -1 -1 27 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54480 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 14.7 MiB 0.05 934 53.2 MiB 0.05 0.00 3.59876 -97.8405 -3.59876 3.59876 0.58 0.000110422 8.9079e-05 0.00759811 0.00624628 26 2320 19 6.64007e+06 339066 477104. 1650.88 0.55 0.0279005 0.0237214 21682 110474 -1 1928 22 1439 2619 167889 38908 0 0 167889 38908 2619 1852 0 0 9073 7397 0 0 15067 10991 0 0 2619 1981 0 0 66984 8674 0 0 71527 8013 0 0 2619 0 0 1180 1521 1468 10236 0 0 3.91603 3.91603 -122.237 -3.91603 0 0 585099. 2024.56 0.20 0.05 0.05 -1 -1 0.20 0.0114462 0.0101276 126 25 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 2.64 vpr 53.20 MiB -1 -1 0.09 17444 1 0.01 -1 -1 29704 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54472 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 14.7 MiB 0.04 842 53.2 MiB 0.05 0.00 3.68447 -104.662 -3.68447 3.68447 0.55 0.000120639 9.7411e-05 0.00814124 0.00671653 32 2610 20 6.64007e+06 288834 554710. 1919.41 0.58 0.0297654 0.0252796 22834 132086 -1 2107 21 1539 2886 204539 46923 0 0 204539 46923 2886 2183 0 0 10267 8544 0 0 15484 11454 0 0 2886 2403 0 0 84430 11514 0 0 88586 10825 0 0 2886 0 0 1347 1644 1522 11011 0 0 3.62543 3.62543 -124.295 -3.62543 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00994845 0.00889426 130 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 2.68 vpr 53.66 MiB -1 -1 0.10 17456 1 0.01 -1 -1 29760 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 15.0 MiB 0.07 938 53.7 MiB 0.07 0.00 2.68419 -93.4922 -2.68419 2.68419 0.55 0.000215282 0.000175797 0.00967837 0.00796346 30 2129 19 6.64007e+06 426972 526063. 1820.29 0.55 0.0323004 0.0273623 22546 126617 -1 1770 19 1147 1922 94709 24746 0 0 94709 24746 1922 1260 0 0 6678 5413 0 0 8559 7036 0 0 1922 1375 0 0 37547 5118 0 0 38081 4544 0 0 1922 0 0 775 857 921 6973 0 0 2.70757 2.70757 -109.683 -2.70757 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00898948 0.00801777 142 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 2.61 vpr 52.98 MiB -1 -1 0.14 17536 1 0.01 -1 -1 29844 -1 -1 19 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54252 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 14.6 MiB 0.06 702 53.0 MiB 0.05 0.00 3.15021 -84.1663 -3.15021 3.15021 0.55 0.000101734 8.2122e-05 0.00867907 0.00716943 32 1489 18 6.64007e+06 238602 554710. 1919.41 0.52 0.0255947 0.0216697 22834 132086 -1 1337 19 809 1354 87072 20498 0 0 87072 20498 1354 906 0 0 4954 4055 0 0 7991 6019 0 0 1354 971 0 0 34885 4404 0 0 36534 4143 0 0 1354 0 0 545 550 498 4299 0 0 2.96937 2.96937 -95.0852 -2.96937 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00677695 0.00605623 93 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 2.65 vpr 53.13 MiB -1 -1 0.09 17080 1 0.01 -1 -1 29616 -1 -1 31 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54408 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 14.5 MiB 0.06 1011 53.1 MiB 0.05 0.00 2.7039 -85.5872 -2.7039 2.7039 0.55 0.000103268 8.3225e-05 0.00717269 0.0058644 26 2372 18 6.64007e+06 389298 477104. 1650.88 0.63 0.0264056 0.0224447 21682 110474 -1 2084 24 1215 2190 158274 35779 0 0 158274 35779 2190 1532 0 0 8177 6665 0 0 12193 9484 0 0 2190 1688 0 0 65279 8530 0 0 68245 7880 0 0 2190 0 0 975 1469 1589 10073 0 0 2.91617 2.91617 -101.878 -2.91617 0 0 585099. 2024.56 0.17 0.03 0.05 -1 -1 0.17 0.00837204 0.00741912 115 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 2.77 vpr 53.29 MiB -1 -1 0.11 17516 1 0.01 -1 -1 29820 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54564 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 14.8 MiB 0.19 923 53.3 MiB 0.04 0.00 2.88585 -100.036 -2.88585 2.88585 0.55 0.000107756 8.664e-05 0.00753701 0.00619953 32 2017 18 6.64007e+06 251160 554710. 1919.41 0.54 0.0270091 0.0228612 22834 132086 -1 1855 22 1169 1685 134461 30117 0 0 134461 30117 1685 1447 0 0 6337 5335 0 0 9912 7618 0 0 1685 1504 0 0 59157 6664 0 0 55685 7549 0 0 1685 0 0 516 479 330 4042 0 0 3.01963 3.01963 -116.46 -3.01963 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0085756 0.00759623 111 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 2.65 vpr 53.03 MiB -1 -1 0.08 17480 1 0.01 -1 -1 29628 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54304 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 14.4 MiB 0.10 862 53.0 MiB 0.05 0.00 3.13721 -104.225 -3.13721 3.13721 0.55 0.000110113 8.8844e-05 0.00814812 0.00673168 26 2067 20 6.64007e+06 213486 477104. 1650.88 0.56 0.027614 0.0233935 21682 110474 -1 1886 20 1242 1979 134979 31680 0 0 134979 31680 1979 1575 0 0 7151 6033 0 0 11060 8429 0 0 1979 1630 0 0 57435 6776 0 0 55375 7237 0 0 1979 0 0 737 911 936 6627 0 0 3.33077 3.33077 -122.75 -3.33077 0 0 585099. 2024.56 0.17 0.03 0.05 -1 -1 0.17 0.00782873 0.00698783 112 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 2.59 vpr 53.05 MiB -1 -1 0.11 17676 1 0.01 -1 -1 29780 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54328 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 14.5 MiB 0.08 802 53.1 MiB 0.04 0.00 3.22421 -92.1331 -3.22421 3.22421 0.55 0.000104464 8.3202e-05 0.00826081 0.00674849 30 1612 15 6.64007e+06 213486 526063. 1820.29 0.51 0.0261379 0.0220352 22546 126617 -1 1463 16 650 1002 56304 13497 0 0 56304 13497 1002 750 0 0 3378 2703 0 0 4379 3508 0 0 1002 827 0 0 22544 3096 0 0 23999 2613 0 0 1002 0 0 352 393 361 3052 0 0 2.89296 2.89296 -101.966 -2.89296 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00676814 0.006091 98 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 2.73 vpr 52.88 MiB -1 -1 0.10 17640 1 0.01 -1 -1 29780 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54148 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 14.3 MiB 0.17 966 52.9 MiB 0.05 0.00 2.9925 -99.7736 -2.9925 2.9925 0.54 0.000101527 8.1949e-05 0.00751937 0.00616785 32 2125 22 6.64007e+06 226044 554710. 1919.41 0.53 0.0263743 0.0223346 22834 132086 -1 1812 22 1083 1459 94322 22407 0 0 94322 22407 1459 1168 0 0 5211 4304 0 0 7975 6074 0 0 1459 1250 0 0 40380 4746 0 0 37838 4865 0 0 1459 0 0 376 314 332 3301 0 0 2.94917 2.94917 -110.751 -2.94917 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00799747 0.00709931 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 2.99 vpr 53.49 MiB -1 -1 0.10 17536 1 0.01 -1 -1 29680 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 15.1 MiB 0.16 1104 53.5 MiB 0.07 0.00 3.65347 -120.082 -3.65347 3.65347 0.58 0.000127699 9.6974e-05 0.0104542 0.00836737 26 2966 28 6.64007e+06 301392 477104. 1650.88 0.72 0.0348396 0.0291795 21682 110474 -1 2352 20 1798 2742 213817 47912 0 0 213817 47912 2742 2148 0 0 10117 8544 0 0 15255 11926 0 0 2742 2217 0 0 93151 11469 0 0 89810 11608 0 0 2742 0 0 944 1100 878 7590 0 0 3.65363 3.65363 -134.874 -3.65363 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.00921518 0.00824182 139 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 2.93 vpr 53.43 MiB -1 -1 0.10 17440 1 0.01 -1 -1 29808 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 15.0 MiB 0.09 993 53.4 MiB 0.07 0.00 4.00586 -115.692 -4.00586 4.00586 0.56 0.000123865 9.9256e-05 0.0119119 0.00969342 28 2504 27 6.64007e+06 389298 500653. 1732.36 0.72 0.036419 0.0306132 21970 115934 -1 2126 20 1257 2080 158897 35440 0 0 158897 35440 2080 1572 0 0 7458 6085 0 0 10935 8573 0 0 2080 1735 0 0 68039 8911 0 0 68305 8564 0 0 2080 0 0 823 913 1026 7102 0 0 3.97483 3.97483 -138.464 -3.97483 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00907003 0.00808133 134 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 2.68 vpr 52.91 MiB -1 -1 0.10 17216 1 0.01 -1 -1 29712 -1 -1 21 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54176 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 14.5 MiB 0.06 768 52.9 MiB 0.05 0.00 2.68419 -78.2312 -2.68419 2.68419 0.63 9.32e-05 7.485e-05 0.00838615 0.00684497 32 1614 17 6.64007e+06 263718 554710. 1919.41 0.52 0.0244601 0.0206234 22834 132086 -1 1507 18 851 1440 95952 22532 0 0 95952 22532 1440 1051 0 0 5297 4405 0 0 8220 6221 0 0 1440 1129 0 0 39945 4981 0 0 39610 4745 0 0 1440 0 0 589 555 498 4482 0 0 2.72777 2.72777 -92.6556 -2.72777 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00642648 0.00573532 98 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 2.83 vpr 53.45 MiB -1 -1 0.10 17676 1 0.01 -1 -1 29640 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54728 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 15.0 MiB 0.13 1108 53.4 MiB 0.07 0.00 3.2847 -105.502 -3.2847 3.2847 0.60 0.000129079 0.000103021 0.0119637 0.00978075 32 2458 21 6.64007e+06 276276 554710. 1919.41 0.57 0.0357603 0.0301754 22834 132086 -1 2176 20 1421 2536 175731 39240 0 0 175731 39240 2536 1747 0 0 9003 7325 0 0 14330 10764 0 0 2536 2167 0 0 77116 8210 0 0 70210 9027 0 0 2536 0 0 1115 1324 1404 9545 0 0 3.23137 3.23137 -119.81 -3.23137 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00972013 0.00867568 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 2.95 vpr 53.41 MiB -1 -1 0.11 17672 1 0.02 -1 -1 29748 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54688 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 15.0 MiB 0.16 1058 53.4 MiB 0.06 0.00 3.51127 -116.59 -3.51127 3.51127 0.56 0.000123033 9.9596e-05 0.010192 0.00839146 28 2738 22 6.64007e+06 288834 500653. 1732.36 0.73 0.0336324 0.0285542 21970 115934 -1 2349 21 1588 2323 238272 66892 0 0 238272 66892 2323 2055 0 0 8389 6809 0 0 12681 9996 0 0 2323 2185 0 0 108672 22619 0 0 103884 23228 0 0 2323 0 0 735 776 789 6143 0 0 3.28703 3.28703 -126.826 -3.28703 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.00934607 0.0083502 138 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 2.57 vpr 53.14 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29668 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54412 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 14.7 MiB 0.07 845 53.1 MiB 0.05 0.00 2.30864 -86.9176 -2.30864 2.30864 0.58 0.000110963 8.8764e-05 0.0086647 0.00717301 28 1903 19 6.64007e+06 364182 500653. 1732.36 0.51 0.0284955 0.0241094 21970 115934 -1 1771 18 865 1480 83992 19996 0 0 83992 19996 1480 932 0 0 5084 3943 0 0 7246 5579 0 0 1480 1068 0 0 34400 4311 0 0 34302 4163 0 0 1480 0 0 615 816 780 5837 0 0 2.15051 2.15051 -97.8247 -2.15051 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00764453 0.00678899 110 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 2.57 vpr 52.59 MiB -1 -1 0.10 17216 1 0.01 -1 -1 29764 -1 -1 15 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53848 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 14.2 MiB 0.03 699 52.6 MiB 0.03 0.00 1.89953 -67.0868 -1.89953 1.89953 0.55 8.1072e-05 6.3842e-05 0.00538615 0.00437878 32 1433 17 6.64007e+06 188370 554710. 1919.41 0.54 0.019576 0.0164876 22834 132086 -1 1315 21 678 1025 93365 19604 0 0 93365 19604 1025 791 0 0 3949 3272 0 0 6494 5005 0 0 1025 843 0 0 40928 4928 0 0 39944 4765 0 0 1025 0 0 347 367 381 2972 0 0 2.04311 2.04311 -84.7495 -2.04311 0 0 701300. 2426.64 0.23 0.02 0.07 -1 -1 0.23 0.00613189 0.00540381 81 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 2.82 vpr 53.14 MiB -1 -1 0.10 17480 1 0.00 -1 -1 29756 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54420 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 14.7 MiB 0.15 807 53.1 MiB 0.06 0.00 3.93687 -117.769 -3.93687 3.93687 0.55 0.000110242 8.8937e-05 0.0107382 0.00882129 32 2259 24 6.64007e+06 251160 554710. 1919.41 0.60 0.039054 0.0331007 22834 132086 -1 1702 21 1145 1663 110175 26457 0 0 110175 26457 1663 1376 0 0 5859 4808 0 0 9514 7132 0 0 1663 1555 0 0 46290 5852 0 0 45186 5734 0 0 1663 0 0 518 609 485 4423 0 0 3.69043 3.69043 -130.345 -3.69043 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00811973 0.00725972 128 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 2.65 vpr 53.35 MiB -1 -1 0.11 17492 1 0.01 -1 -1 29756 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54632 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 14.8 MiB 0.04 1064 53.4 MiB 0.05 0.00 3.49156 -112.794 -3.49156 3.49156 0.55 0.000122194 9.8634e-05 0.00722911 0.00598492 32 2333 23 6.64007e+06 389298 554710. 1919.41 0.55 0.0310373 0.0265257 22834 132086 -1 2116 24 1520 2444 176829 39827 0 0 176829 39827 2444 1787 0 0 9114 7490 0 0 14758 11018 0 0 2444 2012 0 0 72474 9165 0 0 75595 8355 0 0 2444 0 0 924 1322 1273 9037 0 0 3.76663 3.76663 -132.153 -3.76663 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0101094 0.00891362 135 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 2.90 vpr 53.39 MiB -1 -1 0.14 17660 1 0.01 -1 -1 29728 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54668 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 14.9 MiB 0.18 1153 53.4 MiB 0.07 0.00 3.65022 -113.615 -3.65022 3.65022 0.55 0.000133181 0.000106567 0.0121136 0.00980553 32 2711 20 6.64007e+06 313950 554710. 1919.41 0.61 0.0404135 0.0340845 22834 132086 -1 2357 19 1474 2351 186257 39820 0 0 186257 39820 2351 1911 0 0 8577 7094 0 0 13199 9898 0 0 2351 2140 0 0 81222 9381 0 0 78557 9396 0 0 2351 0 0 877 1124 1030 7662 0 0 3.90048 3.90048 -132.181 -3.90048 0 0 701300. 2426.64 0.19 0.04 0.06 -1 -1 0.19 0.00927835 0.00829079 144 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 2.75 vpr 52.29 MiB -1 -1 0.10 17172 1 0.01 -1 -1 29680 -1 -1 18 26 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53548 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 13.7 MiB 0.14 424 52.3 MiB 0.03 0.00 1.89953 -53.7606 -1.89953 1.89953 0.58 7.251e-05 5.7076e-05 0.00486604 0.0039506 28 1299 26 6.64007e+06 226044 500653. 1732.36 0.63 0.0213849 0.0182348 21970 115934 -1 1081 25 685 946 115865 47440 0 0 115865 47440 946 798 0 0 3530 2844 0 0 5212 4113 0 0 946 839 0 0 53327 19839 0 0 51904 19007 0 0 946 0 0 261 283 284 2428 0 0 2.06751 2.06751 -68.3536 -2.06751 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00586685 0.00512129 77 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 2.63 vpr 53.11 MiB -1 -1 0.10 17188 1 0.00 -1 -1 29692 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54380 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 14.4 MiB 0.03 941 53.1 MiB 0.06 0.00 4.00635 -102.194 -4.00635 4.00635 0.54 0.000113414 9.1467e-05 0.00935687 0.00773265 32 2150 23 6.64007e+06 263718 554710. 1919.41 0.55 0.029679 0.0251802 22834 132086 -1 1974 19 1089 2067 148114 33840 0 0 148114 33840 2067 1576 0 0 7469 6075 0 0 11730 8752 0 0 2067 1814 0 0 63518 7633 0 0 61263 7990 0 0 2067 0 0 978 1181 1170 8116 0 0 4.04602 4.04602 -124.592 -4.04602 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00877104 0.00778808 118 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 2.65 vpr 52.37 MiB -1 -1 0.10 16812 1 0.01 -1 -1 29512 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53624 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 13.8 MiB 0.07 409 52.4 MiB 0.02 0.00 2.08773 -59.2766 -2.08773 2.08773 0.55 7.5197e-05 5.9763e-05 0.00293715 0.00244466 28 1291 47 6.64007e+06 175812 500653. 1732.36 0.67 0.0201844 0.0171496 21970 115934 -1 872 15 508 596 42287 12656 0 0 42287 12656 596 561 0 0 2235 1797 0 0 3131 2603 0 0 596 567 0 0 18478 3729 0 0 17251 3399 0 0 596 0 0 88 90 100 1050 0 0 2.14231 2.14231 -71.1836 -2.14231 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00431249 0.00387366 79 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 2.58 vpr 53.01 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29732 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54280 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 14.6 MiB 0.04 1016 53.0 MiB 0.07 0.00 3.62727 -105.452 -3.62727 3.62727 0.55 0.000108732 8.6654e-05 0.0101566 0.00828806 28 2100 23 6.64007e+06 376740 500653. 1732.36 0.52 0.0309124 0.0261119 21970 115934 -1 1890 18 904 1451 93378 21459 0 0 93378 21459 1451 1054 0 0 5241 4084 0 0 7768 6156 0 0 1451 1123 0 0 38937 4510 0 0 38530 4532 0 0 1451 0 0 547 564 593 4757 0 0 3.41203 3.41203 -115.281 -3.41203 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00776637 0.0069737 123 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 2.57 vpr 53.13 MiB -1 -1 0.08 17260 1 0.01 -1 -1 29720 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54404 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.6 MiB 0.03 995 53.1 MiB 0.04 0.00 3.0905 -90.605 -3.0905 3.0905 0.55 0.000112147 9.0559e-05 0.00566943 0.00469947 26 2230 22 6.64007e+06 389298 477104. 1650.88 0.52 0.026424 0.0225102 21682 110474 -1 1988 18 1127 1955 122072 29452 0 0 122072 29452 1955 1346 0 0 7285 5808 0 0 10833 8487 0 0 1955 1485 0 0 50253 6062 0 0 49791 6264 0 0 1955 0 0 828 1074 1160 7879 0 0 2.84296 2.84296 -106.319 -2.84296 0 0 585099. 2024.56 0.16 0.03 0.06 -1 -1 0.16 0.00775532 0.0069472 128 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 2.73 vpr 53.38 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29684 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54664 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 14.8 MiB 0.10 1072 53.4 MiB 0.08 0.00 3.69347 -110.77 -3.69347 3.69347 0.59 0.00011778 9.3191e-05 0.0118006 0.00953767 28 2357 20 6.64007e+06 339066 500653. 1732.36 0.55 0.0338255 0.0284678 21970 115934 -1 2149 22 1255 2171 145664 32598 0 0 145664 32598 2171 1653 0 0 7475 6014 0 0 11411 8640 0 0 2171 1750 0 0 62208 7080 0 0 60228 7461 0 0 2171 0 0 916 1084 1048 7921 0 0 3.67063 3.67063 -128.321 -3.67063 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00940637 0.00836836 126 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 2.64 vpr 53.02 MiB -1 -1 0.09 17376 1 0.01 -1 -1 29840 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54288 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 14.4 MiB 0.07 862 53.0 MiB 0.05 0.00 2.42079 -85.6615 -2.42079 2.42079 0.55 0.000101785 8.103e-05 0.00854222 0.00695402 32 1901 20 6.64007e+06 200928 554710. 1919.41 0.53 0.0272948 0.0230167 22834 132086 -1 1676 16 853 1394 104135 24023 0 0 104135 24023 1394 1048 0 0 5343 4439 0 0 8433 6593 0 0 1394 1113 0 0 43885 5603 0 0 43686 5227 0 0 1394 0 0 541 511 506 4224 0 0 2.70477 2.70477 -104.674 -2.70477 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00688874 0.00620204 101 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 2.57 vpr 52.97 MiB -1 -1 0.09 17208 1 0.01 -1 -1 29672 -1 -1 23 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54244 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 14.5 MiB 0.05 763 53.0 MiB 0.03 0.00 2.64019 -83.9557 -2.64019 2.64019 0.55 0.000100716 8.1607e-05 0.00506749 0.0041619 32 1639 22 6.64007e+06 288834 554710. 1919.41 0.53 0.0227798 0.0193186 22834 132086 -1 1486 20 827 1318 93734 21507 0 0 93734 21507 1318 916 0 0 4945 4163 0 0 7450 5648 0 0 1318 1017 0 0 38139 5087 0 0 40564 4676 0 0 1318 0 0 491 435 547 4175 0 0 2.79977 2.79977 -96.967 -2.79977 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00711954 0.00632078 97 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 2.65 vpr 52.89 MiB -1 -1 0.11 17680 1 0.01 -1 -1 29672 -1 -1 23 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54160 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 14.4 MiB 0.03 801 52.9 MiB 0.05 0.00 2.7119 -80.2775 -2.7119 2.7119 0.57 9.4027e-05 7.518e-05 0.00856243 0.00691081 32 1728 21 6.64007e+06 288834 554710. 1919.41 0.56 0.0285899 0.0240988 22834 132086 -1 1585 18 900 1584 113583 25503 0 0 113583 25503 1584 1188 0 0 5825 4913 0 0 8968 6950 0 0 1584 1263 0 0 48925 5514 0 0 46697 5675 0 0 1584 0 0 684 557 628 5171 0 0 2.88197 2.88197 -97.4045 -2.88197 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00652055 0.00581861 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 2.62 vpr 52.86 MiB -1 -1 0.10 16996 1 0.01 -1 -1 29672 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54132 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 14.4 MiB 0.03 642 52.9 MiB 0.02 0.00 3.19341 -91.8339 -3.19341 3.19341 0.56 9.6046e-05 7.7429e-05 0.00339644 0.00287699 30 1801 23 6.64007e+06 238602 526063. 1820.29 0.60 0.0214929 0.0183892 22546 126617 -1 1461 22 1081 1813 94964 24425 0 0 94964 24425 1813 1364 0 0 6183 5027 0 0 8072 6550 0 0 1813 1505 0 0 35532 5266 0 0 41551 4713 0 0 1813 0 0 732 805 807 6071 0 0 2.76077 2.76077 -102.608 -2.76077 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00751421 0.00667449 110 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 2.54 vpr 52.78 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29668 -1 -1 27 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54048 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 14.3 MiB 0.05 855 52.8 MiB 0.04 0.00 2.8301 -90.1273 -2.8301 2.8301 0.55 0.000100864 8.092e-05 0.00642714 0.00528005 30 1725 20 6.64007e+06 339066 526063. 1820.29 0.51 0.0248611 0.0210859 22546 126617 -1 1581 20 745 1288 65243 15965 0 0 65243 15965 1288 823 0 0 4263 3426 0 0 5904 4592 0 0 1288 902 0 0 26605 2998 0 0 25895 3224 0 0 1288 0 0 543 514 637 4810 0 0 2.66357 2.66357 -99.2184 -2.66357 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.0070564 0.00625812 103 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 2.69 vpr 53.05 MiB -1 -1 0.10 17436 1 0.01 -1 -1 29740 -1 -1 26 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54328 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 14.5 MiB 0.08 863 53.1 MiB 0.05 0.00 2.6377 -86.5358 -2.6377 2.6377 0.58 0.000101766 8.1637e-05 0.00879223 0.00717914 32 1849 20 6.64007e+06 326508 554710. 1919.41 0.53 0.0273155 0.0230311 22834 132086 -1 1656 16 866 1275 78464 19022 0 0 78464 19022 1275 953 0 0 4650 3810 0 0 6960 5327 0 0 1275 1068 0 0 32252 3999 0 0 32052 3865 0 0 1275 0 0 409 520 503 3931 0 0 2.36297 2.36297 -94.6637 -2.36297 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00669705 0.0060054 105 48 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.04 vpr 53.57 MiB -1 -1 0.10 17456 1 0.01 -1 -1 29708 -1 -1 38 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 15.0 MiB 0.09 1145 53.6 MiB 0.06 0.00 3.51556 -101.772 -3.51556 3.51556 0.55 0.000136547 0.000111611 0.00832647 0.00694454 28 2857 35 6.64007e+06 477204 500653. 1732.36 0.93 0.0431955 0.0369078 21970 115934 -1 2299 17 1146 2198 146583 32476 0 0 146583 32476 2198 1382 0 0 7653 6015 0 0 11160 8636 0 0 2198 1552 0 0 64365 7109 0 0 59009 7782 0 0 2198 0 0 1052 1863 1992 12181 0 0 3.71062 3.71062 -122.464 -3.71062 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00906722 0.00816034 151 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 2.73 vpr 53.49 MiB -1 -1 0.10 17336 1 0.01 -1 -1 29832 -1 -1 37 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 14.9 MiB 0.09 1037 53.5 MiB 0.06 0.00 3.11521 -106.201 -3.11521 3.11521 0.56 0.000147273 0.000120053 0.00855881 0.00698339 30 2168 22 6.64007e+06 464646 526063. 1820.29 0.56 0.0334276 0.0282279 22546 126617 -1 1853 18 1349 2140 108427 25981 0 0 108427 25981 2140 1415 0 0 7104 5696 0 0 9230 7409 0 0 2140 1590 0 0 45012 4871 0 0 42801 5000 0 0 2140 0 0 791 975 1028 7534 0 0 2.85977 2.85977 -115.993 -2.85977 0 0 666494. 2306.21 0.18 0.03 0.08 -1 -1 0.18 0.00976359 0.00879119 147 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 2.71 vpr 53.12 MiB -1 -1 0.10 17324 1 0.01 -1 -1 29820 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54392 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 14.5 MiB 0.15 843 53.1 MiB 0.03 0.00 3.48127 -104.434 -3.48127 3.48127 0.55 0.000100718 8.0662e-05 0.00487095 0.00406417 32 2095 21 6.64007e+06 238602 554710. 1919.41 0.55 0.0237679 0.0202854 22834 132086 -1 1780 17 956 1369 103528 23513 0 0 103528 23513 1369 1106 0 0 5238 4376 0 0 7674 6048 0 0 1369 1167 0 0 45839 5076 0 0 42039 5740 0 0 1369 0 0 413 401 426 3781 0 0 3.04663 3.04663 -113.526 -3.04663 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00687104 0.00618355 112 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 2.87 vpr 53.44 MiB -1 -1 0.11 17268 1 0.01 -1 -1 29800 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54720 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 14.9 MiB 0.08 985 53.4 MiB 0.05 0.00 3.41261 -105.742 -3.41261 3.41261 0.55 0.000127691 0.000102309 0.00841018 0.00693317 28 2708 26 6.64007e+06 313950 500653. 1732.36 0.76 0.0366336 0.0311051 21970 115934 -1 2259 19 1276 2243 168205 37731 0 0 168205 37731 2243 1538 0 0 8225 6809 0 0 11793 9477 0 0 2243 1645 0 0 71956 9347 0 0 71745 8915 0 0 2243 0 0 967 1182 1179 8315 0 0 3.15237 3.15237 -122.751 -3.15237 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00920521 0.00822749 138 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.15 vpr 53.46 MiB -1 -1 0.11 17728 1 0.01 -1 -1 29864 -1 -1 29 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54744 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 15.3 MiB 0.25 1272 53.5 MiB 0.07 0.00 4.67899 -142.805 -4.67899 4.67899 0.55 0.000131422 0.000106208 0.0111034 0.00913209 28 3457 26 6.64007e+06 364182 500653. 1732.36 0.84 0.0385203 0.032797 21970 115934 -1 2626 20 1939 2907 204299 47032 0 0 204299 47032 2907 2470 0 0 9951 7938 0 0 15030 11469 0 0 2907 2598 0 0 90747 10715 0 0 82757 11842 0 0 2907 0 0 968 1145 917 7873 0 0 5.26895 5.26895 -173.742 -5.26895 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.0098952 0.0088714 172 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 2.97 vpr 53.43 MiB -1 -1 0.12 17916 1 0.02 -1 -1 29896 -1 -1 27 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54708 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 14.8 MiB 0.22 1024 53.4 MiB 0.05 0.00 4.12201 -121.45 -4.12201 4.12201 0.55 0.000129272 0.00010389 0.00762012 0.00633106 32 2849 25 6.64007e+06 339066 554710. 1919.41 0.60 0.0328935 0.0279727 22834 132086 -1 2274 23 1863 2919 206177 47249 0 0 206177 47249 2919 2193 0 0 10441 8717 0 0 17079 12483 0 0 2919 2362 0 0 87524 10825 0 0 85295 10669 0 0 2919 0 0 1056 1140 1111 8684 0 0 4.60548 4.60548 -147.371 -4.60548 0 0 701300. 2426.64 0.19 0.05 0.11 -1 -1 0.19 0.0116548 0.0102947 164 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 2.77 vpr 53.25 MiB -1 -1 0.14 17340 1 0.01 -1 -1 29768 -1 -1 31 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54528 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 14.9 MiB 0.08 1038 53.2 MiB 0.06 0.00 3.81567 -112.348 -3.81567 3.81567 0.55 0.000121605 9.8015e-05 0.00956961 0.00789474 28 2455 22 6.64007e+06 389298 500653. 1732.36 0.65 0.0328765 0.0278803 21970 115934 -1 2217 17 1183 2053 131966 30969 0 0 131966 30969 2053 1482 0 0 7257 5807 0 0 10676 8497 0 0 2053 1627 0 0 54514 6955 0 0 55413 6601 0 0 2053 0 0 870 1286 1237 7994 0 0 3.41203 3.41203 -125.003 -3.41203 0 0 612192. 2118.31 0.18 0.03 0.06 -1 -1 0.18 0.00864164 0.00777866 135 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 2.72 vpr 53.22 MiB -1 -1 0.10 17340 1 0.01 -1 -1 29764 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54496 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 14.8 MiB 0.17 972 53.2 MiB 0.06 0.00 3.46356 -95.4486 -3.46356 3.46356 0.55 0.000106201 8.4883e-05 0.0101008 0.00825305 30 2237 22 6.64007e+06 288834 526063. 1820.29 0.54 0.0303909 0.0256094 22546 126617 -1 1766 21 983 1453 83203 19713 0 0 83203 19713 1453 1184 0 0 4922 3918 0 0 6502 5218 0 0 1453 1261 0 0 35559 3946 0 0 33314 4186 0 0 1453 0 0 470 481 498 4130 0 0 3.46143 3.46143 -109.196 -3.46143 0 0 666494. 2306.21 0.19 0.03 0.06 -1 -1 0.19 0.00868598 0.00776337 119 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 2.81 vpr 53.73 MiB -1 -1 0.13 17796 1 0.01 -1 -1 29944 -1 -1 40 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55020 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 15.5 MiB 0.20 1263 53.7 MiB 0.07 0.00 4.04253 -135.234 -4.04253 4.04253 0.55 0.000152113 0.000120727 0.0116882 0.00946554 28 3135 22 6.64007e+06 502320 500653. 1732.36 0.56 0.0402085 0.0338512 21970 115934 -1 2560 18 1430 2291 144476 33254 0 0 144476 33254 2291 1687 0 0 7907 6342 0 0 11547 8951 0 0 2291 1837 0 0 60480 7402 0 0 59960 7035 0 0 2291 0 0 861 1223 1316 9041 0 0 4.23489 4.23489 -152.675 -4.23489 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.0107481 0.00962456 174 84 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 2.59 vpr 53.00 MiB -1 -1 0.11 17080 1 0.00 -1 -1 29668 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54272 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 14.5 MiB 0.05 726 53.0 MiB 0.03 0.00 3.1015 -82.8434 -3.1015 3.1015 0.55 9.6387e-05 7.5615e-05 0.00531072 0.00435859 32 1718 18 6.64007e+06 263718 554710. 1919.41 0.53 0.0221489 0.0188262 22834 132086 -1 1511 18 811 1368 93469 21184 0 0 93469 21184 1368 1029 0 0 4778 3908 0 0 7463 5461 0 0 1368 1117 0 0 39598 4689 0 0 38894 4980 0 0 1368 0 0 557 564 647 4668 0 0 2.88077 2.88077 -99.6798 -2.88077 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00665466 0.00591957 101 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 2.77 vpr 53.48 MiB -1 -1 0.12 17568 1 0.01 -1 -1 29752 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54764 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 15.0 MiB 0.16 1164 53.5 MiB 0.07 0.00 4.15901 -127.454 -4.15901 4.15901 0.55 0.000121151 9.7257e-05 0.0115232 0.00945582 32 2762 22 6.64007e+06 313950 554710. 1919.41 0.56 0.0345823 0.0293258 22834 132086 -1 2304 20 1364 1912 130588 30254 0 0 130588 30254 1912 1650 0 0 7185 6031 0 0 10699 8337 0 0 1912 1733 0 0 54798 6238 0 0 54082 6265 0 0 1912 0 0 548 566 555 5017 0 0 4.19688 4.19688 -141.797 -4.19688 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00926237 0.008327 144 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 2.86 vpr 53.37 MiB -1 -1 0.11 17516 1 0.00 -1 -1 29656 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54652 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 14.7 MiB 0.11 938 53.4 MiB 0.05 0.00 3.2547 -96.3729 -3.2547 3.2547 0.55 0.000120481 9.646e-05 0.00697363 0.00578809 28 2544 25 6.64007e+06 414414 500653. 1732.36 0.65 0.0313423 0.0265031 21970 115934 -1 2040 18 1201 2133 138262 34033 0 0 138262 34033 2133 1560 0 0 7513 6205 0 0 11229 8817 0 0 2133 1685 0 0 56813 7966 0 0 58441 7800 0 0 2133 0 0 932 1189 1241 8443 0 0 2.94797 2.94797 -111.186 -2.94797 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00851157 0.00761475 131 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 2.62 vpr 53.19 MiB -1 -1 0.09 17188 1 0.01 -1 -1 29684 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54464 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 14.7 MiB 0.03 1001 53.2 MiB 0.05 0.00 3.34016 -104.784 -3.34016 3.34016 0.54 0.000109469 8.8442e-05 0.00787506 0.0064983 32 2447 19 6.64007e+06 301392 554710. 1919.41 0.56 0.0274925 0.0234259 22834 132086 -1 2118 19 1205 2245 161696 36444 0 0 161696 36444 2245 1720 0 0 8261 6788 0 0 12928 9704 0 0 2245 1860 0 0 66801 8625 0 0 69216 7747 0 0 2245 0 0 1040 1302 1175 8878 0 0 3.74283 3.74283 -126.33 -3.74283 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00789476 0.00708437 123 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 2.86 vpr 53.44 MiB -1 -1 0.11 17344 1 0.02 -1 -1 29780 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 15.0 MiB 0.19 1042 53.4 MiB 0.07 0.00 3.67818 -109.821 -3.67818 3.67818 0.55 0.00012183 9.791e-05 0.0109741 0.00898954 32 2713 23 6.64007e+06 301392 554710. 1919.41 0.55 0.0341059 0.028784 22834 132086 -1 2139 18 1259 1765 132747 30385 0 0 132747 30385 1765 1482 0 0 6467 5324 0 0 10043 7759 0 0 1765 1571 0 0 55085 7476 0 0 57622 6773 0 0 1765 0 0 506 587 551 4707 0 0 3.48943 3.48943 -122.7 -3.48943 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00891179 0.00800177 138 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 2.87 vpr 53.46 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29768 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 15.0 MiB 0.09 968 53.5 MiB 0.07 0.00 2.9151 -98.0492 -2.9151 2.9151 0.63 0.000125315 0.000100391 0.011681 0.00949094 32 2462 25 6.64007e+06 401856 554710. 1919.41 0.58 0.0355216 0.0298799 22834 132086 -1 2107 18 1189 2066 146985 33316 0 0 146985 33316 2066 1454 0 0 7506 6177 0 0 11397 8553 0 0 2066 1607 0 0 60560 8176 0 0 63390 7349 0 0 2066 0 0 877 1330 1490 9369 0 0 3.10537 3.10537 -112.697 -3.10537 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00885356 0.00791481 133 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 2.77 vpr 53.48 MiB -1 -1 0.10 17580 1 0.01 -1 -1 29804 -1 -1 37 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 14.9 MiB 0.09 1147 53.5 MiB 0.06 0.00 3.71747 -115.643 -3.71747 3.71747 0.63 0.000129638 0.000103487 0.00853309 0.00699345 32 2558 19 6.64007e+06 464646 554710. 1919.41 0.54 0.0315404 0.0266833 22834 132086 -1 2345 17 1213 1880 133718 29783 0 0 133718 29783 1880 1412 0 0 6735 5533 0 0 10504 7821 0 0 1880 1561 0 0 55241 7092 0 0 57478 6364 0 0 1880 0 0 667 897 708 5934 0 0 3.35083 3.35083 -128.612 -3.35083 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00885133 0.00793111 145 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 2.65 vpr 53.17 MiB -1 -1 0.10 17680 1 0.01 -1 -1 29664 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54444 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 14.7 MiB 0.04 968 53.2 MiB 0.07 0.00 3.36216 -101.877 -3.36216 3.36216 0.56 0.000172848 0.000141375 0.0106057 0.00873242 32 2135 20 6.64007e+06 364182 554710. 1919.41 0.55 0.0309067 0.0262051 22834 132086 -1 1848 19 1181 1951 133114 29964 0 0 133114 29964 1951 1405 0 0 7196 5882 0 0 10773 8197 0 0 1951 1536 0 0 55428 6582 0 0 55815 6362 0 0 1951 0 0 770 1116 931 7146 0 0 3.67963 3.67963 -119.437 -3.67963 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00812612 0.00727214 122 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 2.68 vpr 53.55 MiB -1 -1 0.10 17492 1 0.01 -1 -1 29696 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54832 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 14.8 MiB 0.14 1100 53.5 MiB 0.03 0.00 3.96206 -114.577 -3.96206 3.96206 0.56 0.00011678 9.4425e-05 0.00483062 0.00409908 26 2523 28 6.64007e+06 301392 477104. 1650.88 0.55 0.0279362 0.0238995 21682 110474 -1 2265 20 1355 1994 132927 31596 0 0 132927 31596 1994 1624 0 0 7338 6111 0 0 11032 8630 0 0 1994 1797 0 0 55523 6518 0 0 55046 6916 0 0 1994 0 0 639 675 702 5364 0 0 3.87483 3.87483 -133.126 -3.87483 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00868913 0.00778082 133 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.06 vpr 53.69 MiB -1 -1 0.15 17780 1 0.01 -1 -1 29812 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54976 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 15.0 MiB 0.18 1093 53.7 MiB 0.08 0.00 4.03253 -120.813 -4.03253 4.03253 0.55 0.000138915 0.000112843 0.0132113 0.0108765 32 3086 25 6.64007e+06 313950 554710. 1919.41 0.74 0.0492647 0.0416833 22834 132086 -1 2367 20 1505 2501 185158 41296 0 0 185158 41296 2501 2102 0 0 9046 7396 0 0 13720 10317 0 0 2501 2310 0 0 79025 9797 0 0 78365 9374 0 0 2501 0 0 996 1192 1013 8242 0 0 4.22489 4.22489 -138.818 -4.22489 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00949669 0.00847087 148 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 2.82 vpr 53.45 MiB -1 -1 0.08 17568 1 0.01 -1 -1 29740 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 15.0 MiB 0.10 1122 53.4 MiB 0.07 0.00 3.37636 -107.7 -3.37636 3.37636 0.55 0.000129062 0.000103138 0.0111218 0.00911346 32 2779 21 6.64007e+06 276276 554710. 1919.41 0.59 0.0352953 0.029796 22834 132086 -1 2429 17 1375 2440 189319 40413 0 0 189319 40413 2440 1844 0 0 8509 7009 0 0 13642 9792 0 0 2440 2122 0 0 80471 9997 0 0 81817 9649 0 0 2440 0 0 1065 1070 955 8024 0 0 3.53642 3.53642 -127.001 -3.53642 0 0 701300. 2426.64 0.19 0.04 0.09 -1 -1 0.19 0.00934774 0.0084165 136 74 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 2.75 vpr 52.91 MiB -1 -1 0.10 17172 1 0.01 -1 -1 29704 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54180 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 14.5 MiB 0.03 612 52.9 MiB 0.05 0.00 2.7119 -78.5001 -2.7119 2.7119 0.55 0.000104229 8.3761e-05 0.00757779 0.00619584 26 1952 44 6.64007e+06 301392 477104. 1650.88 0.74 0.0303334 0.0256265 21682 110474 -1 1461 18 873 1358 87504 21972 0 0 87504 21972 1358 1054 0 0 4870 3738 0 0 6892 5357 0 0 1358 1122 0 0 35908 5609 0 0 37118 5092 0 0 1358 0 0 485 633 613 4543 0 0 2.77597 2.77597 -96.3472 -2.77597 0 0 585099. 2024.56 0.16 0.02 0.06 -1 -1 0.16 0.00645755 0.00576333 97 20 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 2.75 vpr 53.35 MiB -1 -1 0.09 17400 1 0.01 -1 -1 29692 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54628 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1015 53.3 MiB 0.04 0.00 3.21396 -113.796 -3.21396 3.21396 0.55 0.000114482 9.2227e-05 0.00538522 0.00448771 28 2498 16 6.64007e+06 276276 500653. 1732.36 0.55 0.0256474 0.0218268 21970 115934 -1 2182 23 1479 2112 147458 33641 0 0 147458 33641 2112 1792 0 0 7460 5894 0 0 11125 8706 0 0 2112 1979 0 0 63041 7500 0 0 61608 7770 0 0 2112 0 0 633 620 513 5144 0 0 3.21737 3.21737 -132.833 -3.21737 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00946116 0.00837988 127 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 2.97 vpr 53.47 MiB -1 -1 0.09 17768 1 0.01 -1 -1 29812 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 15.2 MiB 0.16 1417 53.5 MiB 0.08 0.00 4.40441 -137.453 -4.40441 4.40441 0.55 0.000139248 0.000112039 0.0124231 0.0102239 32 3308 41 6.64007e+06 364182 554710. 1919.41 0.70 0.0450425 0.038316 22834 132086 -1 2710 20 1762 2876 198556 47613 0 0 198556 47613 2876 2339 0 0 10949 9260 0 0 16728 13122 0 0 2876 2473 0 0 80686 10717 0 0 84441 9702 0 0 2876 0 0 1114 1241 1159 8996 0 0 4.55228 4.55228 -156.172 -4.55228 0 0 701300. 2426.64 0.19 0.04 0.09 -1 -1 0.19 0.0105685 0.00948044 169 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 2.71 vpr 53.38 MiB -1 -1 0.10 17340 1 0.01 -1 -1 29708 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54656 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 14.8 MiB 0.08 987 53.4 MiB 0.05 0.00 3.50652 -107.562 -3.50652 3.50652 0.55 0.000119074 9.5397e-05 0.00652608 0.00540184 26 2343 23 6.64007e+06 401856 477104. 1650.88 0.65 0.0295329 0.0250677 21682 110474 -1 2006 21 1266 1996 123318 29731 0 0 123318 29731 1996 1451 0 0 7217 5698 0 0 10658 8240 0 0 1996 1561 0 0 50081 6460 0 0 51370 6321 0 0 1996 0 0 730 856 878 6876 0 0 3.25677 3.25677 -121.832 -3.25677 0 0 585099. 2024.56 0.17 0.03 0.06 -1 -1 0.17 0.00921794 0.00821208 133 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 2.53 vpr 52.96 MiB -1 -1 0.09 17344 1 0.01 -1 -1 29832 -1 -1 26 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54236 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 14.4 MiB 0.03 762 53.0 MiB 0.04 0.00 2.7859 -87.0748 -2.7859 2.7859 0.55 0.000104852 8.3986e-05 0.00561514 0.00465105 30 1659 20 6.64007e+06 326508 526063. 1820.29 0.52 0.0239109 0.0203372 22546 126617 -1 1530 19 861 1536 83950 20558 0 0 83950 20558 1536 1003 0 0 5254 4432 0 0 7155 5713 0 0 1536 1114 0 0 33375 4252 0 0 35094 4044 0 0 1536 0 0 675 701 811 6125 0 0 2.68857 2.68857 -99.1432 -2.68857 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00721879 0.00643995 104 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 3.01 vpr 53.57 MiB -1 -1 0.11 17752 1 0.02 -1 -1 29804 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 15.2 MiB 0.21 1347 53.6 MiB 0.09 0.00 5.15149 -153.628 -5.15149 5.15149 0.55 0.000154028 0.000125251 0.0147896 0.0122325 32 3111 21 6.64007e+06 339066 554710. 1919.41 0.60 0.0425806 0.0361853 22834 132086 -1 2653 20 1931 2781 184157 42988 0 0 184157 42988 2781 2291 0 0 10371 8702 0 0 15855 12061 0 0 2781 2453 0 0 76147 8891 0 0 76222 8590 0 0 2781 0 0 850 1005 1144 8116 0 0 5.17674 5.17674 -169.727 -5.17674 0 0 701300. 2426.64 0.23 0.04 0.07 -1 -1 0.23 0.0124896 0.0112656 170 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 2.68 vpr 53.36 MiB -1 -1 0.09 17664 1 0.02 -1 -1 29700 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54636 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 14.7 MiB 0.09 913 53.4 MiB 0.04 0.00 3.69147 -113.746 -3.69147 3.69147 0.55 0.000118119 9.5517e-05 0.00528925 0.004435 32 2150 19 6.64007e+06 414414 554710. 1919.41 0.59 0.0264026 0.0224926 22834 132086 -1 1913 18 1277 2014 132462 30284 0 0 132462 30284 2014 1439 0 0 7210 5899 0 0 11333 8501 0 0 2014 1606 0 0 52089 7001 0 0 57802 5838 0 0 2014 0 0 737 976 918 7269 0 0 3.64783 3.64783 -125.589 -3.64783 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00832385 0.0074554 130 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 2.59 vpr 52.80 MiB -1 -1 0.10 16908 1 0.02 -1 -1 29640 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54064 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 14.2 MiB 0.05 875 52.8 MiB 0.04 0.00 2.8441 -84.0966 -2.8441 2.8441 0.55 9.0356e-05 7.245e-05 0.0062936 0.00516735 26 1931 19 6.64007e+06 288834 477104. 1650.88 0.61 0.0228273 0.0192749 21682 110474 -1 1727 21 984 1774 125047 28820 0 0 125047 28820 1774 1232 0 0 6504 5512 0 0 9917 7499 0 0 1774 1371 0 0 53311 6337 0 0 51767 6869 0 0 1774 0 0 790 1029 1258 7593 0 0 2.90117 2.90117 -101.126 -2.90117 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00663059 0.00589277 100 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.30 vpr 53.42 MiB -1 -1 0.11 17356 1 0.01 -1 -1 29748 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 15.0 MiB 0.06 996 53.4 MiB 0.04 0.00 4.55432 -111.157 -4.55432 4.55432 0.56 0.000126814 0.00010185 0.00681641 0.00567301 28 2710 26 6.64007e+06 426972 500653. 1732.36 1.15 0.0355745 0.0305981 21970 115934 -1 2122 19 1118 2303 148271 35459 0 0 148271 35459 2303 1483 0 0 7962 6247 0 0 11690 9011 0 0 2303 1604 0 0 59784 8467 0 0 64229 8647 0 0 2303 0 0 1185 2196 2455 14043 0 0 4.31888 4.31888 -132.825 -4.31888 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00941825 0.00845176 139 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 2.60 vpr 52.86 MiB -1 -1 0.10 16948 1 0.01 -1 -1 29692 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54132 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 14.4 MiB 0.03 636 52.9 MiB 0.03 0.00 2.7651 -83.8458 -2.7651 2.7651 0.55 0.000100615 7.7001e-05 0.00489535 0.00402011 30 1668 20 6.64007e+06 251160 526063. 1820.29 0.53 0.0220958 0.0188014 22546 126617 -1 1377 19 869 1552 82194 20493 0 0 82194 20493 1552 1082 0 0 5146 4083 0 0 6847 5400 0 0 1552 1201 0 0 34201 4354 0 0 32896 4373 0 0 1552 0 0 683 553 798 5494 0 0 2.64177 2.64177 -96.5673 -2.64177 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00668459 0.00597645 104 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.80 vpr 53.08 MiB -1 -1 0.14 17324 1 0.00 -1 -1 29660 -1 -1 33 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54352 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 14.5 MiB 0.11 872 53.1 MiB 0.06 0.00 3.22421 -90.956 -3.22421 3.22421 0.59 9.9794e-05 7.982e-05 0.00926277 0.00750868 30 1720 19 6.64007e+06 414414 526063. 1820.29 0.53 0.0272936 0.0229385 22546 126617 -1 1560 19 723 1403 82478 18554 0 0 82478 18554 1403 844 0 0 4644 3826 0 0 6463 4995 0 0 1403 943 0 0 36649 3562 0 0 31916 4384 0 0 1403 0 0 680 707 852 6224 0 0 2.84657 2.84657 -100.54 -2.84657 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00697828 0.00622353 105 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 2.85 vpr 53.56 MiB -1 -1 0.09 17388 1 0.01 -1 -1 29776 -1 -1 26 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54844 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 15.0 MiB 0.19 917 53.6 MiB 0.07 0.00 3.84787 -110.757 -3.84787 3.84787 0.56 0.000121919 9.804e-05 0.0114376 0.00935317 32 2433 25 6.64007e+06 326508 554710. 1919.41 0.58 0.0356186 0.0300328 22834 132086 -1 2102 21 1534 2296 146756 35138 0 0 146756 35138 2296 1807 0 0 8109 6700 0 0 12493 9322 0 0 2296 1897 0 0 61172 7509 0 0 60390 7903 0 0 2296 0 0 762 811 683 6134 0 0 3.82483 3.82483 -127.869 -3.82483 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00948024 0.00846311 139 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 2.70 vpr 53.44 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29704 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54720 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 14.8 MiB 0.08 925 53.4 MiB 0.04 0.00 3.64276 -112.993 -3.64276 3.64276 0.55 0.000123876 9.9123e-05 0.00546559 0.00455518 28 2144 24 6.64007e+06 301392 500653. 1732.36 0.57 0.029422 0.0251232 21970 115934 -1 1945 22 1459 2270 151414 35459 0 0 151414 35459 2270 1692 0 0 8269 6640 0 0 12231 9773 0 0 2270 1839 0 0 65249 7443 0 0 61125 8072 0 0 2270 0 0 811 764 955 6990 0 0 3.79303 3.79303 -130.827 -3.79303 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00981499 0.00873706 130 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 2.79 vpr 53.29 MiB -1 -1 0.10 17580 1 0.01 -1 -1 29676 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54572 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 14.7 MiB 0.13 1055 53.3 MiB 0.07 0.00 3.83895 -115.935 -3.83895 3.83895 0.56 0.000120369 9.6508e-05 0.0102625 0.00840317 32 2456 18 6.64007e+06 351624 554710. 1919.41 0.57 0.0321812 0.0272046 22834 132086 -1 2151 19 1242 2252 155825 35419 0 0 155825 35419 2252 1629 0 0 8173 6887 0 0 12566 9549 0 0 2252 1883 0 0 66925 7475 0 0 63657 7996 0 0 2252 0 0 1010 1222 1132 8562 0 0 3.51823 3.51823 -128.445 -3.51823 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00903614 0.00810556 133 48 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 2.68 vpr 52.86 MiB -1 -1 0.09 17492 1 0.01 -1 -1 29744 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54124 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 14.3 MiB 0.17 918 52.9 MiB 0.04 0.00 3.75438 -111.435 -3.75438 3.75438 0.56 9.9749e-05 8.0401e-05 0.00627655 0.00519491 26 2221 18 6.64007e+06 213486 477104. 1650.88 0.52 0.0243897 0.020808 21682 110474 -1 1889 18 941 1289 91196 21957 0 0 91196 21957 1289 1080 0 0 4826 3919 0 0 6998 5594 0 0 1289 1122 0 0 38356 4936 0 0 38438 5306 0 0 1289 0 0 348 397 372 3160 0 0 3.51843 3.51843 -124.499 -3.51843 0 0 585099. 2024.56 0.16 0.02 0.05 -1 -1 0.16 0.00711376 0.00639106 105 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 2.75 vpr 53.19 MiB -1 -1 0.10 17564 1 0.01 -1 -1 29736 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54464 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 14.7 MiB 0.15 901 53.2 MiB 0.07 0.00 3.24616 -105.943 -3.24616 3.24616 0.55 0.000135082 0.000108271 0.0107918 0.00883003 32 2143 21 6.64007e+06 238602 554710. 1919.41 0.55 0.0314719 0.026563 22834 132086 -1 1816 18 1142 1696 116135 26730 0 0 116135 26730 1696 1347 0 0 6047 5021 0 0 9264 6956 0 0 1696 1443 0 0 48514 6152 0 0 48918 5811 0 0 1696 0 0 554 507 508 4373 0 0 3.07163 3.07163 -116.196 -3.07163 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00781397 0.00697906 113 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 2.79 vpr 53.26 MiB -1 -1 0.10 17624 1 0.00 -1 -1 29760 -1 -1 33 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54540 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 14.8 MiB 0.08 1034 53.3 MiB 0.06 0.00 2.9203 -83.2961 -2.9203 2.9203 0.55 0.000114167 9.1348e-05 0.00911511 0.00746159 26 2432 22 6.64007e+06 414414 477104. 1650.88 0.70 0.0312283 0.0263308 21682 110474 -1 2067 18 1028 1749 134027 28998 0 0 134027 28998 1749 1268 0 0 6340 5015 0 0 9584 7324 0 0 1749 1365 0 0 57975 7135 0 0 56630 6891 0 0 1749 0 0 721 1154 1281 7833 0 0 3.12537 3.12537 -102.23 -3.12537 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00788082 0.00703455 123 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 2.65 vpr 53.02 MiB -1 -1 0.09 17344 1 0.01 -1 -1 29788 -1 -1 35 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54296 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 14.4 MiB 0.06 819 53.0 MiB 0.05 0.00 3.52655 -87.4544 -3.52655 3.52655 0.55 0.000102076 8.1961e-05 0.00773321 0.0063323 28 1999 22 6.64007e+06 439530 500653. 1732.36 0.61 0.0314487 0.0266198 21970 115934 -1 1720 16 825 1555 94886 22639 0 0 94886 22639 1555 951 0 0 5585 4468 0 0 8011 6321 0 0 1555 1040 0 0 38161 5115 0 0 40019 4744 0 0 1555 0 0 730 1073 1107 7651 0 0 3.67263 3.67263 -105.082 -3.67263 0 0 612192. 2118.31 0.18 0.02 0.06 -1 -1 0.18 0.00661275 0.00593166 115 20 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 2.70 vpr 53.19 MiB -1 -1 0.10 17396 1 0.01 -1 -1 29692 -1 -1 18 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54464 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 14.5 MiB 0.11 753 53.2 MiB 0.04 0.00 3.29461 -94.272 -3.29461 3.29461 0.55 0.000107407 8.5087e-05 0.00839645 0.00682344 30 1907 30 6.64007e+06 226044 526063. 1820.29 0.59 0.0309323 0.026047 22546 126617 -1 1501 20 1066 1832 105155 27017 0 0 105155 27017 1832 1286 0 0 6148 4902 0 0 7972 6401 0 0 1832 1418 0 0 42313 6688 0 0 45058 6322 0 0 1832 0 0 766 766 816 6074 0 0 3.05117 3.05117 -106.8 -3.05117 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00807697 0.00712046 108 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 2.84 vpr 53.35 MiB -1 -1 0.10 17488 1 0.01 -1 -1 29708 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54628 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1048 53.3 MiB 0.06 0.00 3.14796 -108.689 -3.14796 3.14796 0.55 0.000112332 8.9847e-05 0.0101132 0.00824007 32 2255 19 6.64007e+06 263718 554710. 1919.41 0.61 0.035054 0.0296173 22834 132086 -1 1964 19 1151 1726 118148 26003 0 0 118148 26003 1726 1272 0 0 5991 4790 0 0 8979 6602 0 0 1726 1544 0 0 50511 5973 0 0 49215 5822 0 0 1726 0 0 575 525 457 4433 0 0 2.97343 2.97343 -119.106 -2.97343 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00817307 0.00729401 121 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 2.71 vpr 53.13 MiB -1 -1 0.10 17168 1 0.02 -1 -1 29672 -1 -1 32 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54408 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 14.7 MiB 0.03 1027 53.1 MiB 0.07 0.00 3.58627 -107.127 -3.58627 3.58627 0.55 0.000110468 8.9162e-05 0.00956723 0.00782891 30 2241 22 6.64007e+06 401856 526063. 1820.29 0.60 0.0321917 0.0270919 22546 126617 -1 1979 19 1103 1994 107486 25153 0 0 107486 25153 1994 1315 0 0 6693 5305 0 0 9085 7232 0 0 1994 1573 0 0 45103 4681 0 0 42617 5047 0 0 1994 0 0 891 1018 1032 7625 0 0 3.57043 3.57043 -121.114 -3.57043 0 0 666494. 2306.21 0.18 0.03 0.08 -1 -1 0.18 0.0079169 0.00709428 127 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 2.90 vpr 53.45 MiB -1 -1 0.10 17676 1 0.01 -1 -1 29692 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 14.9 MiB 0.18 1171 53.4 MiB 0.05 0.00 4.22773 -138.276 -4.22773 4.22773 0.55 0.000122948 9.8567e-05 0.00831569 0.0068575 28 2913 24 6.64007e+06 301392 500653. 1732.36 0.68 0.0325869 0.0277268 21970 115934 -1 2581 20 1489 2230 154494 35707 0 0 154494 35707 2230 1863 0 0 7905 6424 0 0 11526 9128 0 0 2230 1953 0 0 66232 8164 0 0 64371 8175 0 0 2230 0 0 741 752 684 5983 0 0 4.46508 4.46508 -158.544 -4.46508 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00936452 0.00839966 146 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 2.78 vpr 53.47 MiB -1 -1 0.10 17648 1 0.02 -1 -1 29744 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 15.0 MiB 0.12 1096 53.5 MiB 0.07 0.00 4.17072 -122.236 -4.17072 4.17072 0.54 0.000132644 0.000105808 0.0113835 0.009299 32 2451 19 6.64007e+06 426972 554710. 1919.41 0.57 0.0350183 0.029558 22834 132086 -1 2140 24 1321 2225 146845 34186 0 0 146845 34186 2225 1643 0 0 8038 6805 0 0 12833 9540 0 0 2225 1729 0 0 60898 7352 0 0 60626 7117 0 0 2225 0 0 904 951 956 7808 0 0 4.02748 4.02748 -137.106 -4.02748 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0117835 0.0101717 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 2.84 vpr 53.61 MiB -1 -1 0.16 17420 1 0.01 -1 -1 29724 -1 -1 37 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54892 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 14.9 MiB 0.08 1122 53.6 MiB 0.06 0.00 3.58327 -116.354 -3.58327 3.58327 0.55 0.000130649 0.000105072 0.00881492 0.00724898 28 2544 21 6.64007e+06 464646 500653. 1732.36 0.66 0.0357835 0.0304074 21970 115934 -1 2225 17 1245 2197 134856 32162 0 0 134856 32162 2197 1451 0 0 7816 6360 0 0 11559 9029 0 0 2197 1619 0 0 56615 6825 0 0 54472 6878 0 0 2197 0 0 952 1140 1075 8360 0 0 3.55223 3.55223 -132.959 -3.55223 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00913429 0.00819754 140 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 2.80 vpr 53.00 MiB -1 -1 0.10 17372 1 0.02 -1 -1 29788 -1 -1 19 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54276 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 14.5 MiB 0.13 782 53.0 MiB 0.05 0.00 3.00301 -92.2666 -3.00301 3.00301 0.59 9.8458e-05 7.8575e-05 0.00773672 0.00632259 26 2159 23 6.64007e+06 238602 477104. 1650.88 0.66 0.0265207 0.0223598 21682 110474 -1 1802 21 1122 1874 140581 31906 0 0 140581 31906 1874 1537 0 0 6770 5653 0 0 10215 7849 0 0 1874 1630 0 0 61959 7474 0 0 57889 7763 0 0 1874 0 0 752 673 813 6000 0 0 3.09217 3.09217 -112.077 -3.09217 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00748911 0.00664758 104 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 2.91 vpr 53.29 MiB -1 -1 0.10 17648 1 0.01 -1 -1 29692 -1 -1 23 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54572 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 14.9 MiB 0.12 968 53.3 MiB 0.03 0.00 3.80967 -114.716 -3.80967 3.80967 0.55 0.00012869 0.00010314 0.00603351 0.00504659 26 2630 42 6.64007e+06 288834 477104. 1650.88 0.76 0.0353134 0.0299731 21682 110474 -1 2168 23 1784 2760 239334 50710 0 0 239334 50710 2760 2227 0 0 9901 8188 0 0 15727 11838 0 0 2760 2344 0 0 108070 12226 0 0 100116 13887 0 0 2760 0 0 976 1068 1080 8434 0 0 3.87103 3.87103 -135.728 -3.87103 0 0 585099. 2024.56 0.16 0.05 0.05 -1 -1 0.16 0.0114051 0.0101447 138 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 3.36 vpr 53.42 MiB -1 -1 0.09 17676 1 0.01 -1 -1 29728 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 15.0 MiB 0.21 1216 53.4 MiB 0.05 0.00 4.18044 -127.998 -4.18044 4.18044 0.55 0.000121067 9.7399e-05 0.00848274 0.00698815 26 2987 36 6.64007e+06 326508 477104. 1650.88 1.13 0.0374347 0.0319262 21682 110474 -1 2505 19 1633 2573 194587 43177 0 0 194587 43177 2573 2074 0 0 9409 7736 0 0 13980 10737 0 0 2573 2193 0 0 82225 10413 0 0 83827 10024 0 0 2573 0 0 940 1455 1870 10530 0 0 4.23643 4.23643 -145.234 -4.23643 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.00890746 0.00798636 140 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 2.90 vpr 53.49 MiB -1 -1 0.14 17340 1 0.01 -1 -1 29732 -1 -1 30 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54776 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 15.1 MiB 0.18 1079 53.5 MiB 0.07 0.00 4.22421 -124.775 -4.22421 4.22421 0.55 0.000120711 9.7503e-05 0.0113664 0.00936965 32 2481 27 6.64007e+06 376740 554710. 1919.41 0.59 0.0362207 0.0307852 22834 132086 -1 2210 20 1302 1955 143226 31946 0 0 143226 31946 1955 1605 0 0 7272 5964 0 0 10556 8243 0 0 1955 1716 0 0 63585 6662 0 0 57903 7756 0 0 1955 0 0 653 697 686 5917 0 0 4.17788 4.17788 -138.054 -4.17788 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00916442 0.00821545 148 43 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 2.82 vpr 53.60 MiB -1 -1 0.12 17384 1 0.01 -1 -1 29828 -1 -1 33 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54888 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 15.0 MiB 0.13 955 53.6 MiB 0.07 0.00 3.42407 -103.017 -3.42407 3.42407 0.55 0.000124817 0.000100441 0.0112094 0.0091633 32 2216 22 6.64007e+06 414414 554710. 1919.41 0.57 0.0346727 0.02921 22834 132086 -1 1813 21 1168 1957 125923 29542 0 0 125923 29542 1957 1421 0 0 7198 5901 0 0 10985 8391 0 0 1957 1696 0 0 50815 6397 0 0 53011 5736 0 0 1957 0 0 789 908 743 6635 0 0 3.18063 3.18063 -115.658 -3.18063 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0096474 0.00859633 135 78 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 2.74 vpr 53.51 MiB -1 -1 0.11 17516 1 0.02 -1 -1 29672 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54796 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 15.1 MiB 0.08 1097 53.5 MiB 0.06 0.00 4.09306 -121.368 -4.09306 4.09306 0.55 0.000125592 0.000100455 0.00990627 0.00812542 32 2595 19 6.64007e+06 263718 554710. 1919.41 0.59 0.0336339 0.0283979 22834 132086 -1 2302 17 1366 2373 160672 36584 0 0 160672 36584 2373 1616 0 0 8420 6947 0 0 13055 9600 0 0 2373 1829 0 0 65525 8512 0 0 68926 8080 0 0 2373 0 0 1007 915 1039 7786 0 0 3.87083 3.87083 -142.314 -3.87083 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00854714 0.00767147 134 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 2.77 vpr 53.50 MiB -1 -1 0.11 17572 1 0.01 -1 -1 29848 -1 -1 31 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54784 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 15.1 MiB 0.10 979 53.5 MiB 0.05 0.00 4.03206 -115.193 -4.03206 4.03206 0.64 0.000123365 9.8849e-05 0.00876102 0.00717911 30 1959 21 6.64007e+06 389298 526063. 1820.29 0.53 0.0318523 0.0269053 22546 126617 -1 1750 16 892 1429 69362 17596 0 0 69362 17596 1429 979 0 0 4870 3928 0 0 6289 5141 0 0 1429 1023 0 0 27328 3474 0 0 28017 3051 0 0 1429 0 0 537 609 340 4239 0 0 3.53623 3.53623 -124.388 -3.53623 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.0083783 0.00754216 132 79 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 2.52 vpr 52.73 MiB -1 -1 0.09 16820 1 0.01 -1 -1 29636 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53992 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 14.1 MiB 0.03 723 52.7 MiB 0.05 0.00 3.02901 -92.9822 -3.02901 3.02901 0.56 9.332e-05 7.4907e-05 0.00865242 0.00706631 28 1718 21 6.64007e+06 188370 500653. 1732.36 0.52 0.0260133 0.0220204 21970 115934 -1 1614 21 927 1436 108654 24804 0 0 108654 24804 1436 1240 0 0 5141 4135 0 0 7667 5981 0 0 1436 1290 0 0 47827 5885 0 0 45147 6273 0 0 1436 0 0 509 606 557 4228 0 0 3.14437 3.14437 -108.665 -3.14437 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00721374 0.00642026 96 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 2.81 vpr 53.35 MiB -1 -1 0.08 17456 1 0.01 -1 -1 29836 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54628 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 14.9 MiB 0.14 909 53.3 MiB 0.07 0.00 3.69947 -111.39 -3.69947 3.69947 0.56 0.000127572 0.000101976 0.0104905 0.00854361 32 2389 22 6.64007e+06 401856 554710. 1919.41 0.60 0.0338309 0.0285458 22834 132086 -1 2021 22 1269 2121 174308 37498 0 0 174308 37498 2121 1752 0 0 7781 6380 0 0 11943 9081 0 0 2121 1851 0 0 79298 8639 0 0 71044 9795 0 0 2121 0 0 852 1091 894 7464 0 0 3.70183 3.70183 -128.887 -3.70183 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00973023 0.00863203 132 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 2.93 vpr 53.53 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29908 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 15.0 MiB 0.10 1111 53.5 MiB 0.06 0.00 3.95187 -126.029 -3.95187 3.95187 0.57 0.00013359 0.000107421 0.010769 0.00887379 32 2479 23 6.64007e+06 276276 554710. 1919.41 0.69 0.03893 0.0330058 22834 132086 -1 2276 22 1980 3203 214994 49845 0 0 214994 49845 3203 2377 0 0 11683 9726 0 0 19068 14069 0 0 3203 2589 0 0 86494 10721 0 0 91343 10363 0 0 3203 0 0 1223 1382 1372 10300 0 0 4.06523 4.06523 -144.101 -4.06523 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0106156 0.00944049 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 2.71 vpr 53.14 MiB -1 -1 0.10 17352 1 0.01 -1 -1 29904 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54416 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 14.5 MiB 0.16 962 53.1 MiB 0.04 0.00 3.43261 -105.637 -3.43261 3.43261 0.55 9.9383e-05 8.0141e-05 0.00695996 0.0057372 26 2304 19 6.64007e+06 251160 477104. 1650.88 0.57 0.0257492 0.0218666 21682 110474 -1 1915 20 1040 1385 101667 23226 0 0 101667 23226 1385 1201 0 0 5101 4222 0 0 7429 5807 0 0 1385 1260 0 0 43685 5269 0 0 42682 5467 0 0 1385 0 0 345 274 280 2990 0 0 3.20083 3.20083 -116.26 -3.20083 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00734748 0.0065669 109 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 2.62 vpr 52.76 MiB -1 -1 0.09 16912 1 0.01 -1 -1 29764 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54024 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 14.3 MiB 0.03 881 52.8 MiB 0.04 0.00 3.02901 -93.2662 -3.02901 3.02901 0.55 9.4589e-05 7.6369e-05 0.00631692 0.00520522 30 1743 19 6.64007e+06 263718 526063. 1820.29 0.58 0.0300522 0.0254878 22546 126617 -1 1631 21 995 1666 96665 22106 0 0 96665 22106 1666 1206 0 0 5558 4272 0 0 7226 5804 0 0 1666 1332 0 0 39007 5042 0 0 41542 4450 0 0 1666 0 0 671 671 626 5378 0 0 2.76557 2.76557 -105.353 -2.76557 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00705258 0.00627672 106 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.07 vpr 53.46 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29676 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54748 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 15.0 MiB 0.15 1109 53.5 MiB 0.08 0.00 4.18573 -134.334 -4.18573 4.18573 0.56 0.000124851 0.000100053 0.0127205 0.010348 28 3032 27 6.64007e+06 326508 500653. 1732.36 0.83 0.039999 0.0338803 21970 115934 -1 2587 21 1818 2464 224352 48457 0 0 224352 48457 2464 2093 0 0 8974 7420 0 0 13109 10454 0 0 2464 2173 0 0 99528 13514 0 0 97813 12803 0 0 2464 0 0 646 720 735 5887 0 0 4.36909 4.36909 -163.101 -4.36909 0 0 612192. 2118.31 0.18 0.04 0.06 -1 -1 0.18 0.00945912 0.00843362 144 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 2.90 vpr 53.41 MiB -1 -1 0.10 17660 1 0.02 -1 -1 29732 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54696 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 14.8 MiB 0.15 1185 53.4 MiB 0.07 0.00 4.18102 -130.32 -4.18102 4.18102 0.54 0.000120729 9.6572e-05 0.0105583 0.00864018 28 2775 21 6.64007e+06 364182 500653. 1732.36 0.69 0.033744 0.0285685 21970 115934 -1 2445 20 1577 2470 176864 38778 0 0 176864 38778 2470 1844 0 0 8467 6609 0 0 12636 9557 0 0 2470 2078 0 0 76724 8879 0 0 74097 9811 0 0 2470 0 0 893 939 1051 7913 0 0 4.41048 4.41048 -147.886 -4.41048 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00932915 0.00835201 155 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 3.57 vpr 53.68 MiB -1 -1 0.10 17156 1 0.01 -1 -1 29744 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54968 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 15.0 MiB 0.05 1217 53.7 MiB 0.07 0.00 4.49732 -123.789 -4.49732 4.49732 0.55 0.000128781 0.000103253 0.00995944 0.00814642 24 3445 33 6.64007e+06 452088 448715. 1552.65 1.52 0.0405242 0.0345068 21394 104001 -1 2667 21 1667 2802 216487 48565 0 0 216487 48565 2802 2190 0 0 10480 8294 0 0 15617 11635 0 0 2802 2364 0 0 95731 11798 0 0 89055 12284 0 0 2802 0 0 1135 1395 1487 10551 0 0 4.84388 4.84388 -153.071 -4.84388 0 0 554710. 1919.41 0.15 0.04 0.05 -1 -1 0.15 0.0101871 0.00913391 153 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 2.68 vpr 53.20 MiB -1 -1 0.11 17492 1 0.01 -1 -1 29848 -1 -1 32 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54480 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 14.7 MiB 0.08 941 53.2 MiB 0.04 0.00 2.7269 -84.2568 -2.7269 2.7269 0.56 0.000113349 9.1621e-05 0.00661175 0.00545833 32 2070 16 6.64007e+06 401856 554710. 1919.41 0.54 0.0262309 0.0223282 22834 132086 -1 1866 23 1438 2469 162403 37070 0 0 162403 37070 2469 1749 0 0 8941 7230 0 0 14259 10385 0 0 2469 2089 0 0 68568 7674 0 0 65697 7943 0 0 2469 0 0 1031 1250 1119 8739 0 0 2.80477 2.80477 -101.175 -2.80477 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00893374 0.00790091 121 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 2.61 vpr 52.74 MiB -1 -1 0.11 17196 1 0.01 -1 -1 29836 -1 -1 21 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54004 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 14.3 MiB 0.03 715 52.7 MiB 0.04 0.00 2.8251 -80.2893 -2.8251 2.8251 0.55 9.3052e-05 7.4167e-05 0.00665455 0.00546682 32 1515 21 6.64007e+06 263718 554710. 1919.41 0.53 0.0236111 0.0199841 22834 132086 -1 1351 22 1078 1595 113825 26607 0 0 113825 26607 1595 1254 0 0 6021 5035 0 0 9930 7657 0 0 1595 1336 0 0 47007 5691 0 0 47677 5634 0 0 1595 0 0 517 608 584 4620 0 0 2.87997 2.87997 -95.1792 -2.87997 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00722971 0.00640159 97 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.01 vpr 53.63 MiB -1 -1 0.09 17836 1 0.02 -1 -1 29748 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 15.3 MiB 0.15 1381 53.6 MiB 0.08 0.00 3.46936 -117.004 -3.46936 3.46936 0.55 0.000146161 0.000113047 0.0137195 0.0110272 28 3428 21 6.64007e+06 326508 500653. 1732.36 0.84 0.042472 0.0357886 21970 115934 -1 2824 21 1835 3049 212412 46712 0 0 212412 46712 3049 2375 0 0 10444 8471 0 0 15884 12111 0 0 3049 2496 0 0 91728 10483 0 0 88258 10776 0 0 3049 0 0 1214 1443 1313 9959 0 0 3.91103 3.91103 -137.533 -3.91103 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0149456 0.0136093 170 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.06 vpr 53.63 MiB -1 -1 0.13 17584 1 0.01 -1 -1 29788 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54920 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 15.0 MiB 0.23 843 53.6 MiB 0.06 0.00 4.40113 -127.812 -4.40113 4.40113 0.55 0.000122447 9.7773e-05 0.0121441 0.00989697 32 2838 48 6.64007e+06 288834 554710. 1919.41 0.76 0.0423773 0.0356186 22834 132086 -1 2135 24 1582 2578 193181 47947 0 0 193181 47947 2578 2259 0 0 9555 7854 0 0 15470 11462 0 0 2578 2351 0 0 79728 12333 0 0 83272 11688 0 0 2578 0 0 996 1358 1338 9128 0 0 4.74788 4.74788 -149.657 -4.74788 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.010595 0.00938057 152 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 2.81 vpr 53.21 MiB -1 -1 0.10 17492 1 0.01 -1 -1 29804 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54492 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 14.7 MiB 0.24 924 53.2 MiB 0.06 0.00 3.86515 -111.058 -3.86515 3.86515 0.55 0.000112487 8.9668e-05 0.010324 0.00841364 32 2345 20 6.64007e+06 238602 554710. 1919.41 0.56 0.0309069 0.0260396 22834 132086 -1 1944 16 1052 1536 104578 24438 0 0 104578 24438 1536 1286 0 0 5563 4560 0 0 8366 6238 0 0 1536 1333 0 0 44334 5580 0 0 43243 5441 0 0 1536 0 0 484 353 484 3935 0 0 3.83082 3.83082 -127.381 -3.83082 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00761834 0.00686529 128 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 2.65 vpr 53.28 MiB -1 -1 0.09 17476 1 0.00 -1 -1 29756 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 14.7 MiB 0.04 954 53.3 MiB 0.07 0.00 4.24618 -108.493 -4.24618 4.24618 0.55 0.000115431 9.2505e-05 0.0108024 0.00878598 30 2269 22 6.64007e+06 376740 526063. 1820.29 0.56 0.0322656 0.0271436 22546 126617 -1 1777 19 954 1564 93721 21530 0 0 93721 21530 1564 1130 0 0 5271 3990 0 0 6973 5640 0 0 1564 1241 0 0 40135 4690 0 0 38214 4839 0 0 1564 0 0 610 617 595 5026 0 0 3.61042 3.61042 -118.868 -3.61042 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00847769 0.0075879 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 2.74 vpr 53.55 MiB -1 -1 0.11 17448 1 0.01 -1 -1 29744 -1 -1 34 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54836 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 15.0 MiB 0.09 1045 53.6 MiB 0.08 0.00 4.02106 -114.421 -4.02106 4.02106 0.55 0.000138539 0.000113002 0.0127363 0.0105121 30 2071 18 6.64007e+06 426972 526063. 1820.29 0.52 0.0362009 0.0307058 22546 126617 -1 1813 16 776 1267 68557 16673 0 0 68557 16673 1267 890 0 0 4449 3467 0 0 5501 4629 0 0 1267 969 0 0 27718 3443 0 0 28355 3275 0 0 1267 0 0 491 624 680 4908 0 0 3.62562 3.62562 -124.029 -3.62562 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00861709 0.00782182 145 46 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 2.67 vpr 53.21 MiB -1 -1 0.10 17644 1 0.01 -1 -1 29672 -1 -1 31 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54488 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 14.7 MiB 0.10 999 53.2 MiB 0.05 0.00 2.8933 -92.6295 -2.8933 2.8933 0.55 0.000114884 9.2321e-05 0.00736136 0.00606756 32 2352 19 6.64007e+06 389298 554710. 1919.41 0.55 0.0283048 0.0240774 22834 132086 -1 2048 20 1121 1981 141306 31950 0 0 141306 31950 1981 1422 0 0 7294 5952 0 0 11453 8636 0 0 1981 1585 0 0 58284 7461 0 0 60313 6894 0 0 1981 0 0 860 1086 1009 7534 0 0 3.00217 3.00217 -107.751 -3.00217 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00854059 0.00762293 124 46 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 2.86 vpr 53.68 MiB -1 -1 0.09 17488 1 0.02 -1 -1 29732 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54972 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 15.0 MiB 0.18 1205 53.7 MiB 0.07 0.00 4.01133 -129.919 -4.01133 4.01133 0.55 0.000124216 9.9397e-05 0.0114527 0.00936786 32 2761 24 6.64007e+06 313950 554710. 1919.41 0.59 0.0353833 0.0299256 22834 132086 -1 2421 20 1881 2887 214443 47174 0 0 214443 47174 2887 2246 0 0 10306 8658 0 0 16028 11745 0 0 2887 2492 0 0 93412 10893 0 0 88923 11140 0 0 2887 0 0 1006 975 1047 7927 0 0 3.98829 3.98829 -143.609 -3.98829 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00997356 0.00891874 148 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 2.71 vpr 53.55 MiB -1 -1 0.09 17552 1 0.01 -1 -1 29700 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 14.9 MiB 0.10 1175 53.6 MiB 0.06 0.00 3.95787 -124.511 -3.95787 3.95787 0.57 0.000130773 0.000104013 0.00849132 0.00695097 26 2755 23 6.64007e+06 452088 477104. 1650.88 0.59 0.033471 0.028243 21682 110474 -1 2322 18 1279 1961 128509 29780 0 0 128509 29780 1961 1410 0 0 7071 5638 0 0 10486 8203 0 0 1961 1542 0 0 53428 6299 0 0 53602 6688 0 0 1961 0 0 682 785 747 5985 0 0 3.62143 3.62143 -136.26 -3.62143 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00942871 0.00844457 144 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 2.62 vpr 52.71 MiB -1 -1 0.10 17616 1 0.01 -1 -1 29772 -1 -1 17 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53972 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 14.3 MiB 0.07 694 52.7 MiB 0.04 0.00 3.00701 -90.6307 -3.00701 3.00701 0.55 9.7734e-05 7.7796e-05 0.0081996 0.00668743 28 1506 22 6.64007e+06 213486 500653. 1732.36 0.57 0.0272905 0.0231089 21970 115934 -1 1444 21 984 1460 109229 25178 0 0 109229 25178 1460 1177 0 0 5469 4436 0 0 7959 6456 0 0 1460 1273 0 0 48105 5770 0 0 44776 6066 0 0 1460 0 0 476 534 573 4077 0 0 2.84177 2.84177 -101.683 -2.84177 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00737608 0.00652692 91 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 2.76 vpr 53.06 MiB -1 -1 0.09 17392 1 0.01 -1 -1 29708 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54332 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 14.6 MiB 0.13 936 53.1 MiB 0.06 0.00 3.19816 -104.438 -3.19816 3.19816 0.56 0.000106377 8.4729e-05 0.00956037 0.00777085 28 2160 20 6.64007e+06 263718 500653. 1732.36 0.61 0.029529 0.0248178 21970 115934 -1 1891 19 1216 1651 113867 26953 0 0 113867 26953 1651 1355 0 0 6018 5078 0 0 8881 7064 0 0 1651 1440 0 0 45759 6318 0 0 49907 5698 0 0 1651 0 0 435 385 435 3776 0 0 3.44623 3.44623 -122.871 -3.44623 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00773641 0.0068994 117 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 2.83 vpr 53.40 MiB -1 -1 0.11 17492 1 0.01 -1 -1 29764 -1 -1 37 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54684 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 14.8 MiB 0.05 988 53.4 MiB 0.05 0.00 3.81067 -104.23 -3.81067 3.81067 0.55 0.000117576 9.5061e-05 0.00761296 0.00629584 26 2404 30 6.64007e+06 464646 477104. 1650.88 0.77 0.0315619 0.0267454 21682 110474 -1 1920 21 1348 2432 147252 35662 0 0 147252 35662 2432 1575 0 0 8658 6914 0 0 13331 10175 0 0 2432 1759 0 0 59901 7798 0 0 60498 7441 0 0 2432 0 0 1084 1294 1600 10258 0 0 3.83283 3.83283 -124.947 -3.83283 0 0 585099. 2024.56 0.16 0.03 0.06 -1 -1 0.16 0.00879338 0.00781131 129 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.08 vpr 53.03 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29712 -1 -1 22 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54300 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 14.4 MiB 0.16 810 53.0 MiB 0.05 0.00 3.45927 -96.3797 -3.45927 3.45927 0.55 9.5162e-05 7.6387e-05 0.00791151 0.00640939 26 2642 31 6.64007e+06 276276 477104. 1650.88 0.92 0.0306149 0.0260603 21682 110474 -1 1926 19 1233 1622 133934 29871 0 0 133934 29871 1622 1440 0 0 5799 4747 0 0 8398 6415 0 0 1622 1499 0 0 57701 8192 0 0 58792 7578 0 0 1622 0 0 389 367 374 3576 0 0 3.45223 3.45223 -114.747 -3.45223 0 0 585099. 2024.56 0.16 0.03 0.06 -1 -1 0.16 0.00721021 0.00644463 109 25 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.81 vpr 52.97 MiB -1 -1 0.11 17484 1 0.02 -1 -1 29808 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54240 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 14.4 MiB 0.11 858 53.0 MiB 0.05 0.00 3.02501 -96.4425 -3.02501 3.02501 0.55 0.000101117 8.0477e-05 0.00847743 0.00693121 32 1844 22 6.64007e+06 213486 554710. 1919.41 0.61 0.0311635 0.026347 22834 132086 -1 1631 20 1241 2125 136463 31494 0 0 136463 31494 2125 1572 0 0 7386 6197 0 0 11963 8707 0 0 2125 1709 0 0 56464 6670 0 0 56400 6639 0 0 2125 0 0 884 809 1033 7035 0 0 3.00317 3.00317 -109.695 -3.00317 0 0 701300. 2426.64 0.22 0.03 0.07 -1 -1 0.22 0.0076819 0.0068747 108 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 2.72 vpr 53.50 MiB -1 -1 0.10 17336 1 0.01 -1 -1 29748 -1 -1 36 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54784 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 15.1 MiB 0.08 961 53.5 MiB 0.05 0.00 3.32061 -101.644 -3.32061 3.32061 0.55 0.000125887 0.000101035 0.0069554 0.00575322 26 2252 23 6.64007e+06 452088 477104. 1650.88 0.61 0.0309423 0.0262403 21682 110474 -1 1967 21 1401 2207 139818 32995 0 0 139818 32995 2207 1535 0 0 8012 6558 0 0 11747 8978 0 0 2207 1682 0 0 58057 7077 0 0 57588 7165 0 0 2207 0 0 806 1047 1110 7722 0 0 3.22376 3.22376 -117.601 -3.22376 0 0 585099. 2024.56 0.17 0.03 0.05 -1 -1 0.17 0.00999315 0.00886094 136 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 2.85 vpr 53.05 MiB -1 -1 0.12 17396 1 0.01 -1 -1 29764 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54328 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 14.4 MiB 0.13 804 53.1 MiB 0.04 0.00 3.15716 -98.0967 -3.15716 3.15716 0.55 9.8597e-05 7.8913e-05 0.00610271 0.00504504 26 2169 48 6.64007e+06 251160 477104. 1650.88 0.69 0.0300175 0.0253881 21682 110474 -1 1820 18 1081 1516 116057 26328 0 0 116057 26328 1516 1306 0 0 5342 4254 0 0 7839 5984 0 0 1516 1357 0 0 49924 6788 0 0 49920 6639 0 0 1516 0 0 435 422 392 3635 0 0 3.19183 3.19183 -118.905 -3.19183 0 0 585099. 2024.56 0.16 0.03 0.08 -1 -1 0.16 0.00690395 0.00618274 107 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.27 vpr 53.25 MiB -1 -1 0.10 17316 1 0.01 -1 -1 29660 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54524 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 14.6 MiB 0.08 924 53.2 MiB 0.07 0.00 3.01201 -96.9928 -3.01201 3.01201 0.55 0.000121131 9.6497e-05 0.0101894 0.00816504 26 2707 41 6.64007e+06 401856 477104. 1650.88 1.14 0.0410422 0.0345908 21682 110474 -1 2034 22 1268 2184 155363 35482 0 0 155363 35482 2184 1589 0 0 8003 6297 0 0 11437 8919 0 0 2184 1718 0 0 65693 8658 0 0 65862 8301 0 0 2184 0 0 916 1584 1455 9791 0 0 2.79777 2.79777 -111.82 -2.79777 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.00960468 0.0085392 127 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 2.85 vpr 53.69 MiB -1 -1 0.10 17744 1 0.01 -1 -1 29808 -1 -1 32 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54976 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 15.0 MiB 0.21 888 53.7 MiB 0.05 0.00 3.50555 -107.078 -3.50555 3.50555 0.56 0.000132143 0.000105849 0.00811695 0.00666739 32 2180 19 6.64007e+06 401856 554710. 1919.41 0.55 0.0318381 0.0269095 22834 132086 -1 1817 19 1289 1875 117083 29016 0 0 117083 29016 1875 1426 0 0 6858 5689 0 0 10630 8146 0 0 1875 1597 0 0 48019 6238 0 0 47826 5920 0 0 1875 0 0 586 718 690 5533 0 0 3.33103 3.33103 -126.524 -3.33103 0 0 701300. 2426.64 0.20 0.03 0.07 -1 -1 0.20 0.0094928 0.00846339 138 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 2.72 vpr 53.04 MiB -1 -1 0.14 17480 1 0.01 -1 -1 29712 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54312 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 14.4 MiB 0.12 850 53.0 MiB 0.04 0.00 2.6639 -86.0825 -2.6639 2.6639 0.55 0.000105963 8.4559e-05 0.00794482 0.00646438 32 1899 20 6.64007e+06 213486 554710. 1919.41 0.53 0.0273216 0.0230416 22834 132086 -1 1658 17 969 1518 100027 23293 0 0 100027 23293 1518 1277 0 0 5455 4372 0 0 8322 6285 0 0 1518 1453 0 0 41089 5163 0 0 42125 4743 0 0 1518 0 0 549 599 385 4273 0 0 2.62357 2.62357 -99.5771 -2.62357 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00714012 0.00640532 104 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 2.79 vpr 53.22 MiB -1 -1 0.09 17560 1 0.01 -1 -1 29860 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54496 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 14.8 MiB 0.15 977 53.2 MiB 0.06 0.00 3.43507 -111.507 -3.43507 3.43507 0.56 0.000103933 8.2933e-05 0.00910614 0.00741899 32 2185 21 6.64007e+06 263718 554710. 1919.41 0.56 0.0287436 0.0242364 22834 132086 -1 2000 20 1306 1951 145495 32684 0 0 145495 32684 1951 1636 0 0 7277 6071 0 0 10929 8380 0 0 1951 1777 0 0 61134 7636 0 0 62253 7184 0 0 1951 0 0 645 630 539 5055 0 0 3.19163 3.19163 -121.579 -3.19163 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0078704 0.0069811 117 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 2.94 vpr 53.33 MiB -1 -1 0.15 17660 1 0.01 -1 -1 29748 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54612 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 14.6 MiB 0.22 946 53.3 MiB 0.03 0.00 3.94507 -117.623 -3.94507 3.94507 0.55 0.00011346 9.1436e-05 0.00496723 0.00417162 32 2415 21 6.64007e+06 288834 554710. 1919.41 0.54 0.0265057 0.0224857 22834 132086 -1 2049 21 1608 2121 146760 36179 0 0 146760 36179 2121 1773 0 0 8133 6947 0 0 13094 10276 0 0 2121 1900 0 0 60130 7775 0 0 61161 7508 0 0 2121 0 0 513 509 473 4656 0 0 3.89603 3.89603 -132.637 -3.89603 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0091293 0.00817315 130 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 2.61 vpr 53.09 MiB -1 -1 0.11 17336 1 0.01 -1 -1 29700 -1 -1 29 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54360 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 14.6 MiB 0.11 833 53.1 MiB 0.04 0.00 3.80467 -99.0065 -3.80467 3.80467 0.55 0.000114993 9.2745e-05 0.00625725 0.00516682 28 2099 20 6.64007e+06 364182 500653. 1732.36 0.51 0.0270552 0.0230327 21970 115934 -1 1830 16 836 1416 84748 21249 0 0 84748 21249 1416 1045 0 0 5129 4180 0 0 7496 5970 0 0 1416 1152 0 0 34356 4552 0 0 34935 4350 0 0 1416 0 0 580 671 795 5698 0 0 3.52123 3.52123 -109.058 -3.52123 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.0074555 0.00671456 122 49 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 2.96 vpr 53.79 MiB -1 -1 0.10 17604 1 0.01 -1 -1 29736 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55084 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 15.0 MiB 0.19 963 53.8 MiB 0.06 0.00 4.33064 -135.119 -4.33064 4.33064 0.57 0.00012907 0.000103055 0.0115204 0.00940048 32 2690 50 6.64007e+06 301392 554710. 1919.41 0.69 0.044412 0.0374578 22834 132086 -1 2212 20 1846 2709 203095 49058 0 0 203095 49058 2709 2229 0 0 10471 9014 0 0 16362 12864 0 0 2709 2325 0 0 88829 10357 0 0 82015 12269 0 0 2709 0 0 863 1008 941 7853 0 0 4.33509 4.33509 -152.349 -4.33509 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0100415 0.00895069 154 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 2.79 vpr 52.80 MiB -1 -1 0.10 16900 1 0.01 -1 -1 29580 -1 -1 18 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54064 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 14.1 MiB 0.03 593 52.8 MiB 0.04 0.00 2.9943 -79.9285 -2.9943 2.9943 0.58 0.000100875 8.2975e-05 0.00764032 0.00626188 28 1651 19 6.64007e+06 226044 500653. 1732.36 0.51 0.0240703 0.0204325 21970 115934 -1 1434 19 776 1267 76013 19115 0 0 76013 19115 1267 982 0 0 4519 3625 0 0 6477 5154 0 0 1267 1034 0 0 30906 4304 0 0 31577 4016 0 0 1267 0 0 491 554 380 3854 0 0 2.71476 2.71476 -94.5986 -2.71476 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00642856 0.0057688 96 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.28 vpr 53.61 MiB -1 -1 0.10 17940 1 0.00 -1 -1 29788 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54892 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 15.0 MiB 0.10 971 53.6 MiB 0.04 0.00 3.39956 -113.266 -3.39956 3.39956 0.59 0.000134946 0.000108732 0.00592069 0.00490848 26 2813 32 6.64007e+06 426972 477104. 1650.88 1.05 0.0375374 0.0320277 21682 110474 -1 2275 27 1879 2837 261980 64984 0 0 261980 64984 2837 2372 0 0 10097 7977 0 0 16624 12362 0 0 2837 2463 0 0 113712 20273 0 0 115873 19537 0 0 2837 0 0 958 1315 1255 8929 0 0 4.22383 4.22383 -143.682 -4.22383 0 0 585099. 2024.56 0.17 0.05 0.05 -1 -1 0.17 0.0119194 0.0104419 145 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 2.85 vpr 53.34 MiB -1 -1 0.10 17676 1 0.01 -1 -1 29736 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54620 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 14.8 MiB 0.18 882 53.3 MiB 0.04 0.00 2.8021 -101.718 -2.8021 2.8021 0.59 0.000280276 0.000235255 0.00744252 0.0061551 32 1882 17 6.64007e+06 213486 554710. 1919.41 0.58 0.0313682 0.0267613 22834 132086 -1 1623 20 1243 1792 121510 27193 0 0 121510 27193 1792 1350 0 0 6309 5086 0 0 9878 7300 0 0 1792 1481 0 0 51198 5921 0 0 50541 6055 0 0 1792 0 0 549 498 465 4516 0 0 2.79977 2.79977 -116.458 -2.79977 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00895129 0.00791579 114 93 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 2.88 vpr 53.24 MiB -1 -1 0.10 17272 1 0.01 -1 -1 29680 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54520 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 14.6 MiB 0.09 938 53.2 MiB 0.07 0.00 3.57727 -110.382 -3.57727 3.57727 0.72 0.000127118 9.8791e-05 0.0113391 0.00921236 32 2068 15 6.64007e+06 401856 554710. 1919.41 0.54 0.0328114 0.0276767 22834 132086 -1 1883 22 987 1438 106708 24358 0 0 106708 24358 1438 1156 0 0 5455 4303 0 0 7834 6099 0 0 1438 1216 0 0 44405 6077 0 0 46138 5507 0 0 1438 0 0 451 688 680 4963 0 0 3.33383 3.33383 -115.159 -3.33383 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00958922 0.00853104 131 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 3.17 vpr 53.52 MiB -1 -1 0.11 17656 1 0.01 -1 -1 29864 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 15.3 MiB 0.21 1340 53.5 MiB 0.07 0.00 5.27469 -159.481 -5.27469 5.27469 0.57 0.000143124 0.000115658 0.0137459 0.0113689 30 3449 24 6.64007e+06 339066 526063. 1820.29 0.87 0.0461899 0.0394602 22546 126617 -1 2555 26 1869 2664 179496 41698 0 0 179496 41698 2664 2054 0 0 8812 6963 0 0 11930 9380 0 0 2664 2164 0 0 79479 10052 0 0 73947 11085 0 0 2664 0 0 795 920 967 7434 0 0 5.62434 5.62434 -178.11 -5.62434 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0123998 0.0110439 170 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 2.74 vpr 52.82 MiB -1 -1 0.09 17084 1 0.01 -1 -1 29696 -1 -1 18 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54088 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 14.2 MiB 0.11 730 52.8 MiB 0.04 0.00 2.6949 -85.8356 -2.6949 2.6949 0.55 8.1192e-05 6.4281e-05 0.00687373 0.00557453 26 1704 19 6.64007e+06 226044 477104. 1650.88 0.61 0.0215282 0.0180786 21682 110474 -1 1475 14 680 867 67067 15482 0 0 67067 15482 867 739 0 0 3302 2706 0 0 4712 3813 0 0 867 773 0 0 29866 3586 0 0 27453 3865 0 0 867 0 0 187 145 194 1767 0 0 2.20051 2.20051 -90.9143 -2.20051 0 0 585099. 2024.56 0.20 0.02 0.08 -1 -1 0.20 0.00498545 0.00450232 87 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 2.66 vpr 52.91 MiB -1 -1 0.14 17344 1 0.01 -1 -1 29724 -1 -1 16 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54180 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 14.4 MiB 0.07 823 52.9 MiB 0.04 0.00 3.52781 -103.731 -3.52781 3.52781 0.56 0.000102799 8.2139e-05 0.00738878 0.00608707 32 1677 18 6.64007e+06 200928 554710. 1919.41 0.55 0.0277493 0.0235067 22834 132086 -1 1545 21 948 1604 131721 28662 0 0 131721 28662 1604 1221 0 0 5879 4611 0 0 9660 7351 0 0 1604 1329 0 0 59083 6764 0 0 53891 7386 0 0 1604 0 0 656 844 815 5571 0 0 3.31157 3.31157 -114.275 -3.31157 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00785892 0.00695052 92 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 2.86 vpr 53.13 MiB -1 -1 0.09 17344 1 0.01 -1 -1 29740 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54408 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 14.5 MiB 0.06 878 53.1 MiB 0.06 0.00 2.8981 -97.1524 -2.8981 2.8981 0.55 0.000105129 8.4104e-05 0.00975974 0.00794961 32 2066 23 6.64007e+06 263718 554710. 1919.41 0.55 0.0308893 0.0261521 22834 132086 -1 1856 19 1162 2084 152947 33725 0 0 152947 33725 2084 1555 0 0 7439 6120 0 0 11765 8590 0 0 2084 1652 0 0 66731 7643 0 0 62844 8165 0 0 2084 0 0 922 889 891 7236 0 0 2.73457 2.73457 -110.687 -2.73457 0 0 701300. 2426.64 0.30 0.03 0.11 -1 -1 0.30 0.00771262 0.00687387 115 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 2.61 vpr 52.80 MiB -1 -1 0.09 17076 1 0.01 -1 -1 29796 -1 -1 27 25 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54068 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 14.2 MiB 0.03 498 52.8 MiB 0.04 0.00 2.6929 -63.3531 -2.6929 2.6929 0.55 8.1268e-05 6.4933e-05 0.00605757 0.00488039 28 1465 34 6.64007e+06 339066 500653. 1732.36 0.62 0.0234143 0.0196586 21970 115934 -1 1223 21 732 1244 86849 21862 0 0 86849 21862 1244 982 0 0 4670 3869 0 0 6730 5357 0 0 1244 1063 0 0 35184 5446 0 0 37777 5145 0 0 1244 0 0 512 674 681 4905 0 0 2.76677 2.76677 -75.8206 -2.76677 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00616416 0.00547103 89 19 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.02 vpr 53.45 MiB -1 -1 0.09 17584 1 0.01 -1 -1 29704 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54736 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 15.0 MiB 0.10 977 53.5 MiB 0.07 0.00 3.73696 -113.519 -3.73696 3.73696 0.55 0.000132767 0.000106805 0.012326 0.0101276 28 2870 23 6.64007e+06 263718 500653. 1732.36 0.81 0.0409855 0.0349564 21970 115934 -1 2437 21 1399 2455 210044 53926 0 0 210044 53926 2455 1928 0 0 8568 7023 0 0 12569 9621 0 0 2455 2059 0 0 91865 16858 0 0 92132 16437 0 0 2455 0 0 1056 1354 1165 8480 0 0 3.93103 3.93103 -138.054 -3.93103 0 0 612192. 2118.31 0.18 0.04 0.06 -1 -1 0.18 0.0101824 0.00903346 136 69 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.05 vpr 53.59 MiB -1 -1 0.11 17728 1 0.01 -1 -1 29856 -1 -1 35 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54876 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 15.0 MiB 0.17 919 53.6 MiB 0.05 0.00 3.48461 -113.085 -3.48461 3.48461 0.55 0.000142359 0.00011412 0.00807117 0.00664184 30 2153 20 6.64007e+06 439530 526063. 1820.29 0.57 0.0338106 0.0286208 22546 126617 -1 1864 19 1229 1964 113173 26571 0 0 113173 26571 1964 1364 0 0 6612 5107 0 0 8457 6863 0 0 1964 1501 0 0 47269 5683 0 0 46907 6053 0 0 1964 0 0 735 823 822 6214 0 0 3.10897 3.10897 -122.024 -3.10897 0 0 666494. 2306.21 0.28 0.05 0.11 -1 -1 0.28 0.0166697 0.0148861 143 86 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.20 vpr 53.48 MiB -1 -1 0.11 17512 1 0.01 -1 -1 29700 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 14.8 MiB 0.32 1084 53.5 MiB 0.10 0.00 4.10361 -122.482 -4.10361 4.10361 0.55 0.000126684 0.000101239 0.0150988 0.0123431 32 2676 30 6.65987e+06 380340 554710. 1919.41 0.62 0.0418199 0.0352988 22834 132086 -1 2167 20 1561 2461 165899 40926 0 0 165899 40926 2461 1889 0 0 9655 8232 0 0 14990 11808 0 0 2461 2028 0 0 67416 8575 0 0 68916 8394 0 0 2461 0 0 900 1129 1047 8251 0 0 4.30897 4.30897 -143.206 -4.30897 0 0 701300. 2426.64 0.26 0.06 0.08 -1 -1 0.26 0.015609 0.0139376 152 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.15 vpr 53.55 MiB -1 -1 0.17 17484 1 0.02 -1 -1 29764 -1 -1 23 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54832 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 14.9 MiB 0.22 1130 53.5 MiB 0.07 0.00 3.90862 -119.942 -3.90862 3.90862 0.57 0.000124553 0.000100277 0.0120174 0.00991081 32 2644 22 6.65987e+06 291594 554710. 1919.41 0.59 0.0372481 0.0317317 22834 132086 -1 2352 18 1509 2257 198253 42601 0 0 198253 42601 2257 1909 0 0 8696 7420 0 0 13325 10490 0 0 2257 1998 0 0 83727 11044 0 0 87991 9740 0 0 2257 0 0 748 722 622 5845 0 0 4.22583 4.22583 -143.33 -4.22583 0 0 701300. 2426.64 0.27 0.06 0.06 -1 -1 0.27 0.0149134 0.01361 138 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 2.63 vpr 53.15 MiB -1 -1 0.11 17360 1 0.01 -1 -1 29692 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54424 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 14.5 MiB 0.07 1078 53.1 MiB 0.03 0.00 3.21404 -100.176 -3.21404 3.21404 0.55 0.000109114 8.8191e-05 0.00562153 0.00470795 30 2211 19 6.65987e+06 291594 526063. 1820.29 0.53 0.0260291 0.0223506 22546 126617 -1 1918 16 910 1280 67072 16737 0 0 67072 16737 1280 976 0 0 4451 3642 0 0 5699 4724 0 0 1280 1065 0 0 27317 3059 0 0 27045 3271 0 0 1280 0 0 370 321 371 3206 0 0 3.17971 3.17971 -114.132 -3.17971 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00796935 0.00726307 126 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 2.72 vpr 52.96 MiB -1 -1 0.09 17532 1 0.01 -1 -1 29812 -1 -1 27 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54232 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 14.5 MiB 0.06 920 53.0 MiB 0.04 0.00 3.39544 -91.96 -3.39544 3.39544 0.55 0.000110939 8.8651e-05 0.00693663 0.00575608 28 2050 20 6.65987e+06 342306 500653. 1732.36 0.63 0.0276388 0.0235468 21970 115934 -1 1915 21 1479 2745 169488 40952 0 0 169488 40952 2745 1856 0 0 9992 8347 0 0 15257 12008 0 0 2745 2115 0 0 68292 8382 0 0 70457 8244 0 0 2745 0 0 1266 1596 1640 11065 0 0 3.30391 3.30391 -111.304 -3.30391 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00900894 0.00805762 126 25 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 2.79 vpr 53.01 MiB -1 -1 0.10 17476 1 0.01 -1 -1 29712 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54280 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 14.4 MiB 0.07 879 53.0 MiB 0.06 0.00 3.48115 -101.76 -3.48115 3.48115 0.56 0.000118822 9.5794e-05 0.00882929 0.00727797 32 2720 23 6.65987e+06 291594 554710. 1919.41 0.60 0.0317856 0.0270158 22834 132086 -1 2094 23 1627 3030 207045 49022 0 0 207045 49022 3030 2382 0 0 11282 9650 0 0 17420 13401 0 0 3030 2551 0 0 85014 10678 0 0 87269 10360 0 0 3030 0 0 1403 1826 1708 11811 0 0 3.41891 3.41891 -121.07 -3.41891 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0100637 0.00896938 130 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 2.70 vpr 53.44 MiB -1 -1 0.10 17508 1 0.01 -1 -1 29652 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 14.8 MiB 0.11 1020 53.4 MiB 0.06 0.00 2.68684 -97.3166 -2.68684 2.68684 0.55 0.000123956 9.857e-05 0.008703 0.00712084 28 2402 22 6.65987e+06 418374 500653. 1732.36 0.56 0.0326944 0.0275718 21970 115934 -1 2084 20 1245 1969 135441 32526 0 0 135441 32526 1969 1453 0 0 7396 6095 0 0 10727 8851 0 0 1969 1567 0 0 58775 6793 0 0 54605 7767 0 0 1969 0 0 724 782 886 6679 0 0 2.84691 2.84691 -114.651 -2.84691 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00980134 0.00878566 141 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 2.73 vpr 52.85 MiB -1 -1 0.09 17216 1 0.01 -1 -1 29876 -1 -1 18 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54120 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 14.3 MiB 0.15 700 52.9 MiB 0.04 0.00 3.02895 -80.9401 -3.02895 3.02895 0.55 9.3363e-05 7.4746e-05 0.00752899 0.00618895 32 1579 21 6.65987e+06 228204 554710. 1919.41 0.53 0.0250162 0.021202 22834 132086 -1 1370 20 870 1510 116542 26963 0 0 116542 26963 1510 1152 0 0 5836 5096 0 0 9695 7407 0 0 1510 1211 0 0 49804 5977 0 0 48187 6120 0 0 1510 0 0 640 706 713 5181 0 0 2.64031 2.64031 -92.3857 -2.64031 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00738 0.00661688 94 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 2.63 vpr 52.98 MiB -1 -1 0.10 16968 1 0.01 -1 -1 29648 -1 -1 31 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54248 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 14.5 MiB 0.03 984 53.0 MiB 0.05 0.00 2.58264 -81.2303 -2.58264 2.58264 0.61 0.000106567 8.5024e-05 0.00714232 0.00586528 30 2093 19 6.65987e+06 393018 526063. 1820.29 0.53 0.0261871 0.0222837 22546 126617 -1 1864 16 765 1314 78493 18348 0 0 78493 18348 1314 895 0 0 4596 3632 0 0 5929 4927 0 0 1314 973 0 0 32049 4018 0 0 33291 3903 0 0 1314 0 0 549 708 703 5446 0 0 2.32211 2.32211 -91.6006 -2.32211 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00693106 0.00628238 115 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 2.69 vpr 53.00 MiB -1 -1 0.11 17416 1 0.01 -1 -1 29680 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54272 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 14.5 MiB 0.11 857 53.0 MiB 0.03 0.00 2.68253 -94.1668 -2.68253 2.68253 0.55 0.000109042 8.7218e-05 0.00499962 0.00417548 32 2011 20 6.65987e+06 240882 554710. 1919.41 0.53 0.0250605 0.0214134 22834 132086 -1 1822 18 1013 1458 110453 25890 0 0 110453 25890 1458 1235 0 0 5730 4826 0 0 8634 6901 0 0 1458 1266 0 0 49075 5286 0 0 44098 6376 0 0 1458 0 0 445 408 253 3454 0 0 2.84931 2.84931 -113.244 -2.84931 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0080247 0.00718111 111 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 2.87 vpr 52.96 MiB -1 -1 0.12 17580 1 0.01 -1 -1 29720 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54228 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 14.6 MiB 0.19 731 53.0 MiB 0.05 0.00 2.98475 -97.7196 -2.98475 2.98475 0.55 0.000108474 8.6416e-05 0.00951041 0.00779159 32 2059 20 6.65987e+06 215526 554710. 1919.41 0.61 0.029566 0.0248765 22834 132086 -1 1675 19 1155 1839 131497 31510 0 0 131497 31510 1839 1509 0 0 7035 5953 0 0 10343 8107 0 0 1839 1641 0 0 53907 7469 0 0 56534 6831 0 0 1839 0 0 684 891 830 6148 0 0 2.94591 2.94591 -111.163 -2.94591 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00789604 0.00708225 113 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 2.67 vpr 52.80 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29772 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54068 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 14.2 MiB 0.18 760 52.8 MiB 0.03 0.00 3.37455 -95.1617 -3.37455 3.37455 0.56 0.000103997 8.3235e-05 0.00514007 0.00427781 28 1599 19 6.65987e+06 215526 500653. 1732.36 0.51 0.0239108 0.0203099 21970 115934 -1 1475 16 730 1088 69135 16933 0 0 69135 16933 1088 800 0 0 3950 3280 0 0 5596 4532 0 0 1088 869 0 0 28821 3619 0 0 28592 3833 0 0 1088 0 0 358 235 378 3013 0 0 2.89197 2.89197 -101.537 -2.89197 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00754218 0.00684066 98 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 2.83 vpr 52.93 MiB -1 -1 0.14 17424 1 0.02 -1 -1 29716 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54204 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 14.3 MiB 0.17 971 52.9 MiB 0.03 0.00 2.91589 -98.643 -2.91589 2.91589 0.55 0.000105313 8.5466e-05 0.00548219 0.00459177 26 2339 24 6.65987e+06 215526 477104. 1650.88 0.54 0.0255043 0.0217747 21682 110474 -1 2026 30 1451 1926 222933 82481 0 0 222933 82481 1926 1637 0 0 7515 6582 0 0 12918 9866 0 0 1926 1725 0 0 100061 30583 0 0 98587 32088 0 0 1926 0 0 475 462 479 4352 0 0 2.94331 2.94331 -115.105 -2.94331 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.00986477 0.00871959 106 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.09 vpr 53.26 MiB -1 -1 0.14 17480 1 0.01 -1 -1 29708 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54536 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 14.8 MiB 0.16 942 53.3 MiB 0.04 0.00 3.37501 -109.706 -3.37501 3.37501 0.55 0.000133626 0.000105308 0.0076182 0.00619333 30 2541 28 6.65987e+06 304272 526063. 1820.29 0.72 0.0332715 0.028151 22546 126617 -1 1843 23 1438 2267 121122 30583 0 0 121122 30583 2267 1661 0 0 7519 5958 0 0 9863 7876 0 0 2267 1764 0 0 48252 6380 0 0 50954 6944 0 0 2267 0 0 829 909 806 6479 0 0 2.99031 2.99031 -116.205 -2.99031 0 0 666494. 2306.21 0.23 0.04 0.07 -1 -1 0.23 0.0105234 0.00943973 139 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.16 vpr 53.30 MiB -1 -1 0.10 17500 1 0.01 -1 -1 29656 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 14.8 MiB 0.13 986 53.3 MiB 0.06 0.00 3.76229 -110.216 -3.76229 3.76229 0.56 0.000125753 0.000101589 0.0089055 0.00731103 26 2586 24 6.65987e+06 380340 477104. 1650.88 1.00 0.035442 0.030195 21682 110474 -1 2169 22 1594 2624 198934 46792 0 0 198934 46792 2624 1929 0 0 9978 8543 0 0 15320 12161 0 0 2624 2133 0 0 85946 11077 0 0 82442 10949 0 0 2624 0 0 1030 1278 1408 9170 0 0 3.89071 3.89071 -131.876 -3.89071 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.0099872 0.00888076 133 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 2.69 vpr 52.81 MiB -1 -1 0.13 17396 1 0.01 -1 -1 29696 -1 -1 21 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54080 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 14.4 MiB 0.10 752 52.8 MiB 0.04 0.00 2.62193 -75.4789 -2.62193 2.62193 0.55 9.344e-05 7.4974e-05 0.00617397 0.00508945 32 1724 19 6.65987e+06 266238 554710. 1919.41 0.54 0.0231704 0.0197212 22834 132086 -1 1596 19 900 1499 114988 27307 0 0 114988 27307 1499 1132 0 0 5910 5141 0 0 9603 7672 0 0 1499 1226 0 0 49006 6058 0 0 47471 6078 0 0 1499 0 0 599 635 568 4699 0 0 2.86591 2.86591 -96.436 -2.86591 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00682292 0.00609966 98 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.03 vpr 53.23 MiB -1 -1 0.16 17580 1 0.01 -1 -1 29660 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54512 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 14.8 MiB 0.35 1122 53.2 MiB 0.05 0.00 3.1755 -101.138 -3.1755 3.1755 0.55 0.000127047 0.000102294 0.0096216 0.00792281 32 2588 21 6.65987e+06 266238 554710. 1919.41 0.56 0.0332926 0.0281828 22834 132086 -1 2317 20 1375 2480 184513 42078 0 0 184513 42078 2480 1975 0 0 9234 7785 0 0 14867 11337 0 0 2480 2157 0 0 75480 9933 0 0 79972 8891 0 0 2480 0 0 1105 1513 1394 9672 0 0 3.40776 3.40776 -119.927 -3.40776 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0102086 0.00912211 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 2.79 vpr 53.28 MiB -1 -1 0.09 17580 1 0.01 -1 -1 29804 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54556 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 14.8 MiB 0.16 1051 53.3 MiB 0.06 0.00 3.39001 -113.61 -3.39001 3.39001 0.57 0.000126812 0.000102768 0.0111468 0.00916104 32 2589 21 6.65987e+06 266238 554710. 1919.41 0.58 0.0348977 0.0297098 22834 132086 -1 2095 22 1582 2271 169912 39465 0 0 169912 39465 2271 1901 0 0 8581 7422 0 0 13718 10659 0 0 2271 2032 0 0 74935 8195 0 0 68136 9256 0 0 2271 0 0 689 738 828 5990 0 0 3.10577 3.10577 -120.457 -3.10577 0 0 701300. 2426.64 0.19 0.06 0.07 -1 -1 0.19 0.0147317 0.0128708 137 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 2.88 vpr 53.12 MiB -1 -1 0.11 17508 1 0.01 -1 -1 29680 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54392 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 14.6 MiB 0.18 843 53.1 MiB 0.05 0.00 2.24964 -86.04 -2.24964 2.24964 0.55 0.000110257 8.7793e-05 0.00703846 0.00576801 28 1976 23 6.65987e+06 367662 500653. 1732.36 0.54 0.0283973 0.0240696 21970 115934 -1 1805 19 995 1609 118312 27342 0 0 118312 27342 1609 1123 0 0 6034 5098 0 0 9144 7189 0 0 1609 1285 0 0 51257 6047 0 0 48659 6600 0 0 1609 0 0 614 847 925 6105 0 0 2.15051 2.15051 -96.7949 -2.15051 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00885248 0.00794182 110 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 2.82 vpr 52.52 MiB -1 -1 0.08 17172 1 0.01 -1 -1 29740 -1 -1 15 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53776 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 14.0 MiB 0.14 607 52.5 MiB 0.03 0.00 1.87027 -65.7134 -1.87027 1.87027 0.55 9.0111e-05 7.2255e-05 0.00560758 0.00458354 28 1335 21 6.65987e+06 190170 500653. 1732.36 0.58 0.0219091 0.0186046 21970 115934 -1 1245 17 573 766 55951 13565 0 0 55951 13565 766 645 0 0 2923 2472 0 0 4026 3380 0 0 766 660 0 0 23480 3315 0 0 23990 3093 0 0 766 0 0 193 188 164 1791 0 0 1.80465 1.80465 -75.9207 -1.80465 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00556346 0.00499229 81 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.14 vpr 53.11 MiB -1 -1 0.09 17480 1 0.02 -1 -1 29740 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54388 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 14.6 MiB 0.29 920 53.1 MiB 0.05 0.00 3.85375 -116.465 -3.85375 3.85375 0.55 0.000106124 8.5195e-05 0.00956365 0.00787284 28 2421 25 6.65987e+06 240882 500653. 1732.36 0.72 0.0303888 0.0257322 21970 115934 -1 1940 20 1232 1769 140769 32773 0 0 140769 32773 1769 1578 0 0 6762 5516 0 0 9699 7985 0 0 1769 1616 0 0 58707 8684 0 0 62063 7394 0 0 1769 0 0 537 533 448 4471 0 0 3.57937 3.57937 -132.597 -3.57937 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00823739 0.00737026 127 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 2.76 vpr 53.27 MiB -1 -1 0.08 17480 1 0.01 -1 -1 29712 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54544 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 14.9 MiB 0.05 1053 53.3 MiB 0.06 0.00 3.36036 -109.189 -3.36036 3.36036 0.58 0.000122295 9.7987e-05 0.0100997 0.00825388 30 2104 31 6.65987e+06 393018 526063. 1820.29 0.60 0.0356164 0.0301141 22546 126617 -1 1879 19 1052 1686 102005 23529 0 0 102005 23529 1686 1155 0 0 5988 4830 0 0 7854 6553 0 0 1686 1265 0 0 41679 5141 0 0 43112 4585 0 0 1686 0 0 634 649 617 5606 0 0 3.39343 3.39343 -123.011 -3.39343 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00926859 0.00833096 135 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 2.97 vpr 53.49 MiB -1 -1 0.09 17560 1 0.01 -1 -1 29712 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54776 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 14.8 MiB 0.17 1125 53.5 MiB 0.07 0.00 3.36484 -108.843 -3.36484 3.36484 0.60 0.000126498 0.000101067 0.0116833 0.00955341 28 3137 27 6.65987e+06 291594 500653. 1732.36 0.69 0.0373853 0.0315642 21970 115934 -1 2513 20 1729 2617 214199 47773 0 0 214199 47773 2617 2128 0 0 9625 7995 0 0 14506 11743 0 0 2617 2398 0 0 93018 12058 0 0 91816 11451 0 0 2617 0 0 888 1042 1009 7870 0 0 3.68491 3.68491 -129.445 -3.68491 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00999005 0.00894979 142 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 2.79 vpr 52.45 MiB -1 -1 0.10 17096 1 0.00 -1 -1 29676 -1 -1 18 26 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53708 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 14.0 MiB 0.19 375 52.4 MiB 0.03 0.00 1.89953 -52.6788 -1.89953 1.89953 0.56 7.8377e-05 6.3104e-05 0.00553494 0.00455215 28 1149 22 6.65987e+06 228204 500653. 1732.36 0.62 0.0196985 0.0166055 21970 115934 -1 1029 16 578 785 66971 17479 0 0 66971 17479 785 677 0 0 2972 2448 0 0 4132 3374 0 0 785 708 0 0 29261 5088 0 0 29036 5184 0 0 785 0 0 207 236 212 1972 0 0 1.95411 1.95411 -69.652 -1.95411 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00475205 0.00426188 77 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 2.81 vpr 52.94 MiB -1 -1 0.10 16996 1 0.01 -1 -1 29692 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54212 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 14.5 MiB 0.07 939 52.9 MiB 0.05 0.00 3.88509 -98.6856 -3.88509 3.88509 0.56 0.000106818 8.534e-05 0.00754424 0.00623013 28 2218 23 6.65987e+06 266238 500653. 1732.36 0.60 0.0283305 0.0240653 21970 115934 -1 2000 22 1135 2302 156699 37494 0 0 156699 37494 2302 1806 0 0 8248 6987 0 0 12526 9600 0 0 2302 2009 0 0 67282 8379 0 0 64039 8713 0 0 2302 0 0 1167 1399 1460 9608 0 0 4.05717 4.05717 -118.763 -4.05717 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00889637 0.00797121 118 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 2.75 vpr 52.39 MiB -1 -1 0.09 16660 1 0.01 -1 -1 29576 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53644 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 13.8 MiB 0.08 424 52.4 MiB 0.03 0.00 1.99767 -57.2824 -1.99767 1.99767 0.73 7.2594e-05 5.79e-05 0.00539185 0.00440138 32 1144 43 6.65987e+06 177492 554710. 1919.41 0.56 0.0221699 0.0187759 22834 132086 -1 847 18 555 647 37589 11394 0 0 37589 11394 647 584 0 0 2558 2152 0 0 3962 3212 0 0 647 592 0 0 14694 2478 0 0 15081 2376 0 0 647 0 0 92 86 88 1097 0 0 2.14125 2.14125 -71.2859 -2.14125 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00483309 0.00433248 79 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 2.96 vpr 53.15 MiB -1 -1 0.10 17424 1 0.01 -1 -1 29796 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54424 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 14.6 MiB 0.07 1016 53.1 MiB 0.12 0.00 3.45215 -103.063 -3.45215 3.45215 0.60 0.000206253 0.000167699 0.0186715 0.0153545 28 2218 31 6.65987e+06 380340 500653. 1732.36 0.71 0.0441103 0.0371266 21970 115934 -1 1960 16 925 1458 116161 25287 0 0 116161 25287 1458 1099 0 0 5469 4403 0 0 7781 6332 0 0 1458 1166 0 0 51612 5865 0 0 48383 6422 0 0 1458 0 0 533 659 698 4934 0 0 3.24865 3.24865 -113.541 -3.24865 0 0 612192. 2118.31 0.17 0.03 0.09 -1 -1 0.17 0.007626 0.00689504 123 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 2.93 vpr 52.95 MiB -1 -1 0.10 17276 1 0.00 -1 -1 29728 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54224 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.4 MiB 0.07 1106 53.0 MiB 0.07 0.00 3.00424 -91.3036 -3.00424 3.00424 0.56 0.000110428 8.8712e-05 0.00999071 0.00822012 30 2159 29 6.65987e+06 393018 526063. 1820.29 0.80 0.0405126 0.0346087 22546 126617 -1 1948 19 960 1799 98507 23589 0 0 98507 23589 1799 1113 0 0 6254 5022 0 0 8581 6966 0 0 1799 1236 0 0 41479 4341 0 0 38595 4911 0 0 1799 0 0 839 877 1222 7689 0 0 2.74677 2.74677 -104.291 -2.74677 0 0 666494. 2306.21 0.19 0.03 0.07 -1 -1 0.19 0.00841069 0.00756939 128 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 2.82 vpr 53.17 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29700 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54448 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 14.8 MiB 0.08 1003 53.2 MiB 0.08 0.00 3.35004 -101.734 -3.35004 3.35004 0.56 0.000218594 0.000175921 0.0125049 0.0102342 32 2559 26 6.65987e+06 329628 554710. 1919.41 0.65 0.0375959 0.0317823 22834 132086 -1 2130 25 1517 2611 202710 47918 0 0 202710 47918 2611 1833 0 0 10101 8440 0 0 16292 12553 0 0 2611 2018 0 0 85023 11448 0 0 86072 11626 0 0 2611 0 0 1094 1544 1405 9832 0 0 3.62739 3.62739 -123.092 -3.62739 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.010627 0.0094216 125 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 2.65 vpr 52.87 MiB -1 -1 0.09 17028 1 0.01 -1 -1 29752 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54140 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 14.3 MiB 0.03 751 52.9 MiB 0.05 0.00 2.29953 -80.4749 -2.29953 2.29953 0.55 0.000104937 8.3838e-05 0.00889897 0.00732301 32 1956 24 6.65987e+06 202848 554710. 1919.41 0.55 0.0299934 0.0253965 22834 132086 -1 1619 17 1004 1590 116953 28105 0 0 116953 28105 1590 1263 0 0 6278 5359 0 0 9631 7803 0 0 1590 1357 0 0 48014 6371 0 0 49850 5952 0 0 1590 0 0 586 637 612 4779 0 0 2.61365 2.61365 -99.3719 -2.61365 0 0 701300. 2426.64 0.20 0.05 0.07 -1 -1 0.20 0.0120998 0.0108739 101 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 2.66 vpr 52.71 MiB -1 -1 0.09 17196 1 0.01 -1 -1 29812 -1 -1 23 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53972 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 14.2 MiB 0.06 770 52.7 MiB 0.03 0.00 2.39767 -80.2446 -2.39767 2.39767 0.55 9.8162e-05 7.8775e-05 0.00546832 0.00452035 32 1731 20 6.65987e+06 291594 554710. 1919.41 0.53 0.0229993 0.0195533 22834 132086 -1 1494 20 906 1435 105188 24238 0 0 105188 24238 1435 988 0 0 5497 4617 0 0 8361 6654 0 0 1435 1136 0 0 43761 5624 0 0 44699 5219 0 0 1435 0 0 529 481 544 4469 0 0 2.63045 2.63045 -94.2528 -2.63045 0 0 701300. 2426.64 0.25 0.03 0.07 -1 -1 0.25 0.00870459 0.00778441 97 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 2.57 vpr 52.74 MiB -1 -1 0.09 17100 1 0.01 -1 -1 29756 -1 -1 23 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54004 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 14.2 MiB 0.03 805 52.7 MiB 0.05 0.00 2.64264 -80.9203 -2.64264 2.64264 0.55 9.3714e-05 7.4795e-05 0.00865081 0.00704522 30 1734 21 6.65987e+06 291594 526063. 1820.29 0.53 0.0264324 0.0223293 22546 126617 -1 1487 16 676 1173 70053 16359 0 0 70053 16359 1173 887 0 0 4008 3254 0 0 5336 4357 0 0 1173 965 0 0 28972 3602 0 0 29391 3294 0 0 1173 0 0 497 546 462 3924 0 0 2.52731 2.52731 -90.7171 -2.52731 0 0 666494. 2306.21 0.18 0.02 0.07 -1 -1 0.18 0.00658747 0.00596638 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 2.66 vpr 52.70 MiB -1 -1 0.13 17000 1 0.01 -1 -1 29768 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53960 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 14.2 MiB 0.07 674 52.7 MiB 0.02 0.00 2.87775 -86.3082 -2.87775 2.87775 0.55 9.9499e-05 7.9114e-05 0.00375422 0.00316112 32 2003 24 6.65987e+06 240882 554710. 1919.41 0.55 0.0238482 0.0205638 22834 132086 -1 1603 19 1120 1744 120228 30644 0 0 120228 30644 1744 1412 0 0 6673 5689 0 0 10863 8454 0 0 1744 1546 0 0 45799 7046 0 0 53405 6497 0 0 1744 0 0 624 782 692 5470 0 0 2.87891 2.87891 -107.503 -2.87891 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0071429 0.00636743 110 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 2.66 vpr 52.73 MiB -1 -1 0.10 17216 1 0.01 -1 -1 29708 -1 -1 27 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53992 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 14.2 MiB 0.06 890 52.7 MiB 0.05 0.00 2.62364 -84.7948 -2.62364 2.62364 0.55 0.000100735 8.0373e-05 0.00717167 0.00587856 26 2019 27 6.65987e+06 342306 477104. 1650.88 0.56 0.0264867 0.0223758 21682 110474 -1 1800 20 1043 1737 123558 28050 0 0 123558 28050 1737 1253 0 0 6398 5170 0 0 9669 7509 0 0 1737 1382 0 0 54451 5987 0 0 49566 6749 0 0 1737 0 0 694 802 803 6378 0 0 2.75865 2.75865 -104.202 -2.75865 0 0 585099. 2024.56 0.20 0.03 0.06 -1 -1 0.20 0.00754638 0.00672959 103 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 2.80 vpr 52.96 MiB -1 -1 0.10 17588 1 0.01 -1 -1 29692 -1 -1 25 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54232 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 14.3 MiB 0.17 799 53.0 MiB 0.04 0.00 2.43438 -82.3684 -2.43438 2.43438 0.55 0.000101823 8.0931e-05 0.0062126 0.0051117 32 1833 22 6.65987e+06 316950 554710. 1919.41 0.54 0.0261535 0.0222171 22834 132086 -1 1699 21 1195 1772 130796 30653 0 0 130796 30653 1772 1355 0 0 6762 5623 0 0 10956 8603 0 0 1772 1478 0 0 56020 6709 0 0 53514 6885 0 0 1772 0 0 577 682 717 5436 0 0 2.29551 2.29551 -92.1482 -2.29551 0 0 701300. 2426.64 0.21 0.05 0.07 -1 -1 0.21 0.0126953 0.0115741 105 48 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 2.82 vpr 53.66 MiB -1 -1 0.11 17640 1 0.02 -1 -1 29660 -1 -1 37 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54944 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 15.1 MiB 0.20 1245 53.7 MiB 0.07 0.00 3.03052 -94.831 -3.03052 3.03052 0.55 0.000149778 0.000119797 0.0116556 0.00942608 30 2564 21 6.65987e+06 469086 526063. 1820.29 0.56 0.036742 0.0310594 22546 126617 -1 2203 20 1042 2095 117396 26581 0 0 117396 26581 2095 1324 0 0 6984 5517 0 0 9263 7391 0 0 2095 1470 0 0 47852 5689 0 0 49107 5190 0 0 2095 0 0 1053 1487 2011 11752 0 0 3.14659 3.14659 -111.368 -3.14659 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0101497 0.00912435 150 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 2.85 vpr 53.42 MiB -1 -1 0.10 17504 1 0.01 -1 -1 29764 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 14.8 MiB 0.21 1003 53.4 MiB 0.06 0.00 2.89575 -98.1764 -2.89575 2.89575 0.55 0.000132804 0.000106151 0.00872329 0.00709161 32 2216 22 6.65987e+06 456408 554710. 1919.41 0.57 0.0338758 0.0286598 22834 132086 -1 2029 22 1798 2696 194904 44951 0 0 194904 44951 2696 1983 0 0 10167 8677 0 0 16530 12589 0 0 2696 2188 0 0 84451 9467 0 0 78364 10047 0 0 2696 0 0 898 1084 1152 8618 0 0 2.86171 2.86171 -115.079 -2.86171 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0108486 0.00965929 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 2.97 vpr 52.95 MiB -1 -1 0.10 17664 1 0.01 -1 -1 29672 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54220 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 14.3 MiB 0.20 738 52.9 MiB 0.04 0.00 3.35895 -96.9547 -3.35895 3.35895 0.55 0.000102376 8.2485e-05 0.00643243 0.00532907 28 2006 21 6.65987e+06 215526 500653. 1732.36 0.76 0.0264242 0.0225468 21970 115934 -1 1755 20 983 1417 109655 29016 0 0 109655 29016 1417 1178 0 0 5262 4298 0 0 7610 6143 0 0 1417 1233 0 0 47602 8201 0 0 46347 7963 0 0 1417 0 0 434 421 561 4095 0 0 3.22477 3.22477 -111.904 -3.22477 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00785961 0.00705461 109 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 2.95 vpr 53.34 MiB -1 -1 0.11 17500 1 0.01 -1 -1 29784 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54616 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 14.7 MiB 0.18 1083 53.3 MiB 0.07 0.00 3.41155 -107.597 -3.41155 3.41155 0.55 0.00012908 0.000104114 0.011429 0.00941351 32 2568 22 6.65987e+06 304272 554710. 1919.41 0.64 0.0417019 0.0353444 22834 132086 -1 2281 22 1376 2418 185686 42746 0 0 185686 42746 2418 1966 0 0 9263 7829 0 0 14879 11495 0 0 2418 2074 0 0 80470 9503 0 0 76238 9879 0 0 2418 0 0 1042 1279 1252 8931 0 0 3.14337 3.14337 -117.799 -3.14337 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0106897 0.00955711 137 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.13 vpr 53.20 MiB -1 -1 0.10 17764 1 0.01 -1 -1 29768 -1 -1 27 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54476 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 15.0 MiB 0.25 1348 53.2 MiB 0.07 0.00 4.38047 -133.32 -4.38047 4.38047 0.76 0.000130106 0.000105141 0.0115356 0.00953705 32 3046 23 6.65987e+06 342306 554710. 1919.41 0.61 0.0371895 0.0317228 22834 132086 -1 2623 23 2236 3268 243986 55561 0 0 243986 55561 3268 2664 0 0 12388 10342 0 0 19791 15058 0 0 3268 2923 0 0 103064 12048 0 0 102207 12526 0 0 3268 0 0 1032 900 1073 8337 0 0 4.34623 4.34623 -151.899 -4.34623 0 0 701300. 2426.64 0.19 0.05 0.07 -1 -1 0.19 0.0110764 0.00988746 170 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.76 vpr 53.61 MiB -1 -1 0.10 17652 1 0.00 -1 -1 29700 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54892 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 15.1 MiB 0.97 1065 53.6 MiB 0.08 0.00 4.00075 -117.157 -4.00075 4.00075 0.55 0.000129655 0.000104568 0.0131954 0.0108312 32 2715 22 6.65987e+06 316950 554710. 1919.41 0.59 0.0385019 0.0325226 22834 132086 -1 2323 20 1705 2597 219213 47406 0 0 219213 47406 2597 2098 0 0 9954 8362 0 0 14876 11696 0 0 2597 2239 0 0 98187 11197 0 0 91002 11814 0 0 2597 0 0 892 1027 888 7414 0 0 4.41923 4.41923 -150.557 -4.41923 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.010688 0.00959462 162 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.07 vpr 53.37 MiB -1 -1 0.11 17664 1 0.00 -1 -1 29780 -1 -1 29 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54648 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 14.9 MiB 0.16 856 53.4 MiB 0.05 0.00 3.37089 -97.7088 -3.37089 3.37089 0.60 0.000125232 9.9477e-05 0.00690657 0.0057315 28 2522 41 6.65987e+06 367662 500653. 1732.36 0.82 0.0369269 0.0315119 21970 115934 -1 2006 23 1465 2461 148158 38042 0 0 148158 38042 2461 1764 0 0 8829 7424 0 0 13413 10521 0 0 2461 1916 0 0 60997 8341 0 0 59997 8076 0 0 2461 0 0 996 1231 1222 8852 0 0 2.97525 2.97525 -110.998 -2.97525 0 0 612192. 2118.31 0.19 0.04 0.06 -1 -1 0.19 0.010369 0.00925375 133 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 2.76 vpr 52.98 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29728 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54256 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 14.6 MiB 0.12 1064 53.0 MiB 0.05 0.00 3.22104 -93.8179 -3.22104 3.22104 0.55 0.000105882 8.5506e-05 0.00815528 0.00674993 32 2277 22 6.65987e+06 278916 554710. 1919.41 0.59 0.0320432 0.0273413 22834 132086 -1 2004 18 1224 1831 133000 30938 0 0 133000 30938 1831 1458 0 0 7263 6038 0 0 10588 8436 0 0 1831 1540 0 0 55261 6913 0 0 56226 6553 0 0 1831 0 0 607 693 810 5537 0 0 3.46799 3.46799 -112.746 -3.46799 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00793552 0.00716054 118 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.07 vpr 53.42 MiB -1 -1 0.11 17776 1 0.01 -1 -1 29892 -1 -1 38 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 15.2 MiB 0.20 1307 53.4 MiB 0.10 0.00 3.94735 -130.391 -3.94735 3.94735 0.54 0.000150845 0.000120935 0.0145551 0.0118836 30 2969 29 6.65987e+06 481764 526063. 1820.29 0.80 0.0540174 0.0458019 22546 126617 -1 2437 21 1601 2535 140228 33352 0 0 140228 33352 2535 1741 0 0 8662 7104 0 0 11267 9190 0 0 2535 1899 0 0 57064 6650 0 0 58165 6768 0 0 2535 0 0 934 1351 1272 9774 0 0 3.79291 3.79291 -145.665 -3.79291 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0122965 0.0110409 172 84 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 2.67 vpr 52.64 MiB -1 -1 0.10 17248 1 0.01 -1 -1 29676 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53900 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 14.1 MiB 0.08 741 52.6 MiB 0.03 0.00 2.74078 -78.476 -2.74078 2.74078 0.55 9.6783e-05 7.8003e-05 0.00468613 0.00388061 28 1909 21 6.65987e+06 266238 500653. 1732.36 0.59 0.0242614 0.0206319 21970 115934 -1 1650 21 996 1749 120673 28838 0 0 120673 28838 1749 1292 0 0 6495 5467 0 0 9987 7886 0 0 1749 1370 0 0 51363 6028 0 0 49330 6795 0 0 1749 0 0 753 798 864 6216 0 0 2.64539 2.64539 -98.0766 -2.64539 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00770501 0.00685783 101 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.01 vpr 53.47 MiB -1 -1 0.10 17484 1 0.02 -1 -1 29860 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54756 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 14.8 MiB 0.16 1226 53.5 MiB 0.07 0.00 3.8195 -115.518 -3.8195 3.8195 0.59 0.000119025 9.5949e-05 0.0112521 0.0093123 28 2816 27 6.65987e+06 291594 500653. 1732.36 0.72 0.0390807 0.0334501 21970 115934 -1 2405 22 1407 1965 145447 33847 0 0 145447 33847 1965 1670 0 0 7520 6267 0 0 11221 9171 0 0 1965 1761 0 0 60458 7743 0 0 62318 7235 0 0 1965 0 0 558 606 695 5302 0 0 3.99251 3.99251 -135.355 -3.99251 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.0101803 0.00912986 142 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 2.67 vpr 53.11 MiB -1 -1 0.08 17360 1 0.01 -1 -1 29756 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 14.7 MiB 0.10 935 53.1 MiB 0.04 0.00 3.1757 -96.1015 -3.1757 3.1757 0.55 0.000123123 9.9439e-05 0.00604527 0.00504428 30 2419 20 6.65987e+06 418374 526063. 1820.29 0.58 0.0286008 0.0244199 22546 126617 -1 1852 23 1089 2079 116400 28087 0 0 116400 28087 2079 1501 0 0 6929 5510 0 0 9349 7315 0 0 2079 1586 0 0 46831 6106 0 0 49133 6069 0 0 2079 0 0 990 1165 1203 8585 0 0 2.74651 2.74651 -105.848 -2.74651 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0102482 0.0091396 131 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.15 vpr 52.89 MiB -1 -1 0.09 16924 1 0.01 -1 -1 29660 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54160 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 14.4 MiB 0.06 1001 52.9 MiB 0.06 0.00 3.15084 -101.746 -3.15084 3.15084 0.55 0.000115525 9.2156e-05 0.00949686 0.00782584 34 2254 21 6.65987e+06 304272 585099. 2024.56 1.01 0.043402 0.0367435 23122 138558 -1 1959 21 1292 2563 172276 38930 0 0 172276 38930 2563 1678 0 0 9262 7631 0 0 14281 11088 0 0 2563 1976 0 0 74763 7881 0 0 68844 8676 0 0 2563 0 0 1271 1621 1719 11026 0 0 3.35599 3.35599 -114.412 -3.35599 0 0 742403. 2568.87 0.20 0.04 0.07 -1 -1 0.20 0.00872323 0.00781576 123 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.11 vpr 53.33 MiB -1 -1 0.12 17368 1 0.02 -1 -1 29796 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54612 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 14.8 MiB 0.25 1093 53.3 MiB 0.06 0.00 3.33475 -103.887 -3.33475 3.33475 0.55 0.000122518 9.7822e-05 0.0107816 0.00879815 28 2713 30 6.65987e+06 278916 500653. 1732.36 0.76 0.0369478 0.0311593 21970 115934 -1 2325 20 1165 1640 133636 30650 0 0 133636 30650 1640 1432 0 0 6186 5125 0 0 8804 7142 0 0 1640 1475 0 0 56919 8095 0 0 58447 7381 0 0 1640 0 0 475 609 638 4576 0 0 3.50731 3.50731 -122.711 -3.50731 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00980696 0.0088242 136 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.04 vpr 53.47 MiB -1 -1 0.11 17516 1 0.02 -1 -1 29708 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54756 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 14.8 MiB 0.34 941 53.5 MiB 0.07 0.00 2.9071 -94.6052 -2.9071 2.9071 0.55 0.000122411 9.799e-05 0.0109253 0.00887627 32 2577 25 6.65987e+06 393018 554710. 1919.41 0.59 0.0358038 0.0300231 22834 132086 -1 2025 18 1260 2164 151113 35373 0 0 151113 35373 2164 1528 0 0 8025 6647 0 0 12731 9592 0 0 2164 1706 0 0 61965 8148 0 0 64064 7752 0 0 2164 0 0 904 1536 1318 9596 0 0 3.12451 3.12451 -109.621 -3.12451 0 0 701300. 2426.64 0.21 0.03 0.09 -1 -1 0.21 0.0094268 0.00848374 132 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 2.84 vpr 53.63 MiB -1 -1 0.09 17696 1 0.01 -1 -1 29784 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 14.8 MiB 0.27 1111 53.6 MiB 0.07 0.00 3.47495 -108.938 -3.47495 3.47495 0.55 0.000143476 0.000113261 0.0112406 0.00901177 30 2401 21 6.65987e+06 456408 526063. 1820.29 0.54 0.0359828 0.0302689 22546 126617 -1 2051 20 1043 1578 94653 21637 0 0 94653 21637 1578 1203 0 0 5423 4254 0 0 6944 5745 0 0 1578 1281 0 0 40688 4470 0 0 38442 4684 0 0 1578 0 0 535 603 576 4744 0 0 3.19151 3.19151 -123.682 -3.19151 0 0 666494. 2306.21 0.19 0.03 0.06 -1 -1 0.19 0.010149 0.00909617 144 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 2.74 vpr 53.15 MiB -1 -1 0.10 17364 1 0.03 -1 -1 29772 -1 -1 29 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54424 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 14.6 MiB 0.07 854 53.1 MiB 0.06 0.00 3.20104 -95.0693 -3.20104 3.20104 0.55 0.000110966 8.9287e-05 0.00990864 0.00812862 32 2200 24 6.65987e+06 367662 554710. 1919.41 0.59 0.0322121 0.0273503 22834 132086 -1 1814 21 1349 2126 164406 38161 0 0 164406 38161 2126 1567 0 0 8401 6907 0 0 12864 10239 0 0 2126 1668 0 0 74061 8418 0 0 64828 9362 0 0 2126 0 0 777 914 946 7069 0 0 3.44705 3.44705 -111.984 -3.44705 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00892403 0.00796609 122 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 2.73 vpr 53.30 MiB -1 -1 0.08 17576 1 0.00 -1 -1 29700 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 14.9 MiB 0.11 1150 53.3 MiB 0.04 0.00 3.71955 -112.95 -3.71955 3.71955 0.58 0.000115602 9.2381e-05 0.00687657 0.00568442 28 2455 21 6.65987e+06 291594 500653. 1732.36 0.55 0.0285629 0.0243702 21970 115934 -1 2182 21 1417 2108 125001 31141 0 0 125001 31141 2108 1634 0 0 7783 6473 0 0 11460 9317 0 0 2108 1811 0 0 51532 5728 0 0 50010 6178 0 0 2108 0 0 691 710 712 5679 0 0 3.49637 3.49637 -127.553 -3.49637 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00923738 0.00827357 133 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.19 vpr 53.48 MiB -1 -1 0.11 17628 1 0.01 -1 -1 29744 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 14.8 MiB 0.21 1154 53.5 MiB 0.07 0.00 3.54855 -110.543 -3.54855 3.54855 0.57 0.000125842 0.000101191 0.0115024 0.00947748 28 3155 26 6.65987e+06 291594 500653. 1732.36 0.76 0.0384189 0.0326878 21970 115934 -1 2516 24 1908 3094 236058 52838 0 0 236058 52838 3094 2537 0 0 11176 9296 0 0 16463 12988 0 0 3094 2814 0 0 105574 12301 0 0 96657 12902 0 0 3094 0 0 1186 1426 1564 10296 0 0 3.95331 3.95331 -132.429 -3.95331 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0108223 0.00960111 146 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 2.90 vpr 53.50 MiB -1 -1 0.11 17588 1 0.02 -1 -1 29772 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54788 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 14.8 MiB 0.12 978 53.5 MiB 0.07 0.00 3.13344 -101.178 -3.13344 3.13344 0.61 0.000134743 0.000108329 0.0121374 0.00992037 32 2685 19 6.65987e+06 266238 554710. 1919.41 0.62 0.0369172 0.0312307 22834 132086 -1 2183 20 1508 2650 202713 46271 0 0 202713 46271 2650 1967 0 0 10199 8559 0 0 15379 12162 0 0 2650 2129 0 0 89103 10093 0 0 82732 11361 0 0 2650 0 0 1142 1136 1023 8613 0 0 3.43505 3.43505 -123.49 -3.43505 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0101744 0.00909686 135 74 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 2.78 vpr 52.75 MiB -1 -1 0.09 17152 1 0.00 -1 -1 29664 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54016 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 14.3 MiB 0.09 620 52.8 MiB 0.05 0.00 2.66984 -76.8361 -2.66984 2.66984 0.58 9.5029e-05 7.6408e-05 0.00814101 0.00665297 28 1892 32 6.65987e+06 304272 500653. 1732.36 0.67 0.0282784 0.0238844 21970 115934 -1 1525 19 853 1325 97437 25039 0 0 97437 25039 1325 1063 0 0 4941 4126 0 0 7311 6065 0 0 1325 1138 0 0 41312 6249 0 0 41223 6398 0 0 1325 0 0 472 512 630 4353 0 0 3.03625 3.03625 -90.2131 -3.03625 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00696508 0.00624407 97 20 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 2.90 vpr 53.23 MiB -1 -1 0.09 17460 1 0.00 -1 -1 29732 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54504 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 14.8 MiB 0.10 955 53.2 MiB 0.06 0.00 3.1319 -108.89 -3.1319 3.1319 0.56 0.000259614 0.000212222 0.00843573 0.00696881 26 2742 29 6.65987e+06 253560 477104. 1650.88 0.76 0.0338357 0.0287627 21682 110474 -1 2191 21 1523 2136 174542 39720 0 0 174542 39720 2136 1833 0 0 8042 6791 0 0 11779 9373 0 0 2136 1863 0 0 78088 9337 0 0 72361 10523 0 0 2136 0 0 613 649 594 5218 0 0 3.13457 3.13457 -128.798 -3.13457 0 0 585099. 2024.56 0.17 0.04 0.05 -1 -1 0.17 0.00924026 0.00824389 125 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 2.96 vpr 53.20 MiB -1 -1 0.10 17288 1 0.01 -1 -1 29820 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54480 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 14.9 MiB 0.11 1262 53.2 MiB 0.09 0.00 4.11964 -123.718 -4.11964 4.11964 0.55 0.000275248 0.000227944 0.0145326 0.0119585 30 3122 21 6.65987e+06 354984 526063. 1820.29 0.76 0.0415048 0.0353147 22546 126617 -1 2341 22 1626 2583 144719 34348 0 0 144719 34348 2583 1909 0 0 8811 6925 0 0 11653 9482 0 0 2583 2076 0 0 59973 6823 0 0 59116 7133 0 0 2583 0 0 957 910 912 7614 0 0 4.09251 4.09251 -140.759 -4.09251 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0116474 0.0104898 168 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 2.78 vpr 53.18 MiB -1 -1 0.10 17372 1 0.01 -1 -1 29644 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54460 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 14.8 MiB 0.17 1007 53.2 MiB 0.04 0.00 3.42226 -106.623 -3.42226 3.42226 0.55 0.000155634 0.000126998 0.00631863 0.00522433 32 2210 20 6.65987e+06 393018 554710. 1919.41 0.54 0.0284618 0.024295 22834 132086 -1 1982 19 1165 1939 130482 30839 0 0 130482 30839 1939 1349 0 0 7290 6179 0 0 12023 9161 0 0 1939 1512 0 0 53164 6359 0 0 54127 6279 0 0 1939 0 0 774 921 1020 7196 0 0 3.00411 3.00411 -116.365 -3.00411 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0091865 0.0082453 133 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 2.74 vpr 52.82 MiB -1 -1 0.09 17340 1 0.01 -1 -1 29688 -1 -1 26 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54088 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 14.2 MiB 0.03 789 52.8 MiB 0.04 0.00 2.66464 -82.7242 -2.66464 2.66464 0.55 0.000101094 8.1445e-05 0.00693575 0.00570806 28 1899 23 6.65987e+06 329628 500653. 1732.36 0.72 0.0293724 0.0247863 21970 115934 -1 1626 21 933 1682 126331 27680 0 0 126331 27680 1682 1182 0 0 6031 4810 0 0 8863 7077 0 0 1682 1303 0 0 54583 6497 0 0 53490 6811 0 0 1682 0 0 749 930 950 6951 0 0 2.66845 2.66845 -98.0292 -2.66845 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00791095 0.00705473 104 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 3.19 vpr 53.38 MiB -1 -1 0.11 17628 1 0.01 -1 -1 29900 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54664 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 15.2 MiB 0.24 1475 53.4 MiB 0.09 0.00 4.66752 -143.891 -4.66752 4.66752 0.56 0.000144633 0.000116181 0.0145893 0.0120261 30 3232 28 6.65987e+06 316950 526063. 1820.29 0.81 0.0487784 0.0414271 22546 126617 -1 2760 22 1730 2523 160668 36520 0 0 160668 36520 2523 2093 0 0 8783 6922 0 0 11189 9340 0 0 2523 2242 0 0 66352 8291 0 0 69298 7632 0 0 2523 0 0 793 962 903 7347 0 0 4.61657 4.61657 -162.526 -4.61657 0 0 666494. 2306.21 0.18 0.04 0.06 -1 -1 0.18 0.0122751 0.0110394 168 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 2.83 vpr 53.06 MiB -1 -1 0.12 17416 1 0.01 -1 -1 29684 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54336 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 14.4 MiB 0.19 993 53.1 MiB 0.07 0.00 3.48015 -111.627 -3.48015 3.48015 0.55 0.000122283 9.768e-05 0.0115733 0.00947692 32 2303 22 6.65987e+06 405696 554710. 1919.41 0.55 0.0358096 0.0305572 22834 132086 -1 1974 21 1319 1853 129689 30372 0 0 129689 30372 1853 1400 0 0 6947 5846 0 0 10572 8288 0 0 1853 1537 0 0 53018 7026 0 0 55446 6275 0 0 1853 0 0 534 610 680 5491 0 0 3.42591 3.42591 -124.375 -3.42591 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00947506 0.00847617 130 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 2.48 vpr 52.56 MiB -1 -1 0.09 16920 1 0.01 -1 -1 29616 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53820 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 14.1 MiB 0.03 866 52.6 MiB 0.03 0.00 2.48032 -77.5068 -2.48032 2.48032 0.55 9.1784e-05 7.3923e-05 0.00447079 0.00372302 28 1896 21 6.65987e+06 291594 500653. 1732.36 0.52 0.0211633 0.0180831 21970 115934 -1 1664 20 913 1605 116557 26709 0 0 116557 26709 1605 1081 0 0 5788 4733 0 0 8891 6850 0 0 1605 1177 0 0 50821 5957 0 0 47847 6911 0 0 1605 0 0 692 982 922 6597 0 0 2.75365 2.75365 -96.6564 -2.75365 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00778703 0.00689942 100 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 2.99 vpr 53.21 MiB -1 -1 0.10 17364 1 0.01 -1 -1 29752 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54488 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 14.8 MiB 0.12 1095 53.2 MiB 0.06 0.00 3.84189 -101.264 -3.84189 3.84189 0.55 0.000125212 0.000100626 0.00830101 0.00685333 28 2766 27 6.65987e+06 431052 500653. 1732.36 0.81 0.0380537 0.0324523 21970 115934 -1 2309 23 1591 3004 244193 67376 0 0 244193 67376 3004 1932 0 0 10770 8529 0 0 16561 12904 0 0 3004 2106 0 0 103828 20951 0 0 107026 20954 0 0 3004 0 0 1413 2602 2837 17068 0 0 4.28185 4.28185 -132.369 -4.28185 0 0 612192. 2118.31 0.17 0.05 0.06 -1 -1 0.17 0.0117188 0.0104742 139 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 2.62 vpr 52.73 MiB -1 -1 0.11 16956 1 0.01 -1 -1 29708 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53992 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 14.2 MiB 0.06 691 52.7 MiB 0.03 0.00 2.66284 -81.2339 -2.66284 2.66284 0.55 9.6174e-05 7.7359e-05 0.00487702 0.00405103 28 1821 23 6.65987e+06 253560 500653. 1732.36 0.56 0.0230518 0.019687 21970 115934 -1 1652 21 1087 1827 116472 29411 0 0 116472 29411 1827 1375 0 0 6567 5568 0 0 9930 7923 0 0 1827 1522 0 0 48071 6850 0 0 48250 6173 0 0 1827 0 0 740 750 834 6201 0 0 2.86165 2.86165 -105.593 -2.86165 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00785529 0.00703834 104 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.72 vpr 52.95 MiB -1 -1 0.08 17692 1 0.01 -1 -1 29784 -1 -1 33 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54216 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 14.3 MiB 0.12 841 52.9 MiB 0.06 0.00 3.07989 -86.9107 -3.07989 3.07989 0.55 0.000102505 8.1859e-05 0.00903236 0.00737242 26 1966 17 6.65987e+06 418374 477104. 1650.88 0.56 0.0271657 0.0228949 21682 110474 -1 1741 21 989 1602 117407 26616 0 0 117407 26616 1602 1172 0 0 6104 4927 0 0 8980 7113 0 0 1602 1282 0 0 50973 5833 0 0 48146 6289 0 0 1602 0 0 613 756 717 6018 0 0 2.60605 2.60605 -100.041 -2.60605 0 0 585099. 2024.56 0.17 0.04 0.05 -1 -1 0.17 0.00907082 0.0080913 105 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 2.94 vpr 53.43 MiB -1 -1 0.14 17500 1 0.01 -1 -1 29784 -1 -1 24 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54712 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 14.7 MiB 0.21 1025 53.4 MiB 0.08 0.00 3.29375 -101.303 -3.29375 3.29375 0.56 0.000122025 9.8323e-05 0.0129198 0.0106389 30 2415 24 6.65987e+06 304272 526063. 1820.29 0.58 0.0381315 0.0323517 22546 126617 -1 2013 20 1239 1871 116186 27010 0 0 116186 27010 1871 1538 0 0 6280 5134 0 0 8271 6666 0 0 1871 1634 0 0 47834 6631 0 0 50059 5407 0 0 1871 0 0 632 670 570 5021 0 0 3.15297 3.15297 -110.627 -3.15297 0 0 666494. 2306.21 0.20 0.06 0.07 -1 -1 0.20 0.0164731 0.0144471 138 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 2.79 vpr 53.33 MiB -1 -1 0.10 17700 1 0.00 -1 -1 29748 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54608 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 14.9 MiB 0.12 1016 53.3 MiB 0.05 0.00 3.5135 -109.138 -3.5135 3.5135 0.57 0.000127603 0.000102441 0.00891654 0.00737736 30 2116 21 6.65987e+06 304272 526063. 1820.29 0.58 0.0329617 0.0281117 22546 126617 -1 1867 19 1077 1679 105248 23978 0 0 105248 23978 1679 1237 0 0 5765 4658 0 0 7352 6071 0 0 1679 1390 0 0 43912 5487 0 0 44861 5135 0 0 1679 0 0 602 855 570 5358 0 0 3.40491 3.40491 -122.621 -3.40491 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00930747 0.00837875 130 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 2.79 vpr 53.27 MiB -1 -1 0.10 17536 1 0.01 -1 -1 29752 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54548 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 14.8 MiB 0.15 1055 53.3 MiB 0.06 0.00 3.75584 -112.749 -3.75584 3.75584 0.55 0.000124091 9.93e-05 0.00954613 0.0078622 28 2589 21 6.65987e+06 342306 500653. 1732.36 0.59 0.0328365 0.0279098 21970 115934 -1 2232 20 1209 2152 189773 40150 0 0 189773 40150 2152 1665 0 0 7954 6561 0 0 11642 9318 0 0 2152 1809 0 0 84848 9987 0 0 81025 10810 0 0 2152 0 0 943 1135 1213 8317 0 0 3.52611 3.52611 -127.581 -3.52611 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00952864 0.00854964 132 48 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 2.72 vpr 52.82 MiB -1 -1 0.09 17512 1 0.01 -1 -1 29744 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54084 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 14.2 MiB 0.18 983 52.8 MiB 0.03 0.00 3.5308 -105.115 -3.5308 3.5308 0.59 0.000105748 8.5755e-05 0.0049445 0.00417312 30 1987 20 6.65987e+06 202848 526063. 1820.29 0.51 0.0238413 0.0204491 22546 126617 -1 1689 23 791 1065 57553 14375 0 0 57553 14375 1065 855 0 0 3727 3011 0 0 4700 3955 0 0 1065 923 0 0 24436 2749 0 0 22560 2882 0 0 1065 0 0 274 206 253 2362 0 0 3.15571 3.15571 -112.339 -3.15571 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00841753 0.00750679 103 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 2.73 vpr 53.11 MiB -1 -1 0.10 17456 1 0.01 -1 -1 29716 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54388 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 14.5 MiB 0.15 936 53.1 MiB 0.03 0.00 3.09498 -102.254 -3.09498 3.09498 0.58 0.000109335 8.6833e-05 0.00567522 0.00471563 32 2214 22 6.65987e+06 240882 554710. 1919.41 0.54 0.0269131 0.022888 22834 132086 -1 1912 22 1173 1725 120388 28827 0 0 120388 28827 1725 1432 0 0 6641 5611 0 0 9983 7881 0 0 1725 1483 0 0 49914 6303 0 0 50400 6117 0 0 1725 0 0 552 558 516 4455 0 0 3.04865 3.04865 -117.416 -3.04865 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00895595 0.00797513 111 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 2.97 vpr 53.13 MiB -1 -1 0.15 17584 1 0.02 -1 -1 29684 -1 -1 33 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54404 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 14.6 MiB 0.15 970 53.1 MiB 0.06 0.00 2.55652 -78.2693 -2.55652 2.55652 0.56 0.000115913 9.3574e-05 0.00939243 0.00769717 26 2308 20 6.65987e+06 418374 477104. 1650.88 0.76 0.0324719 0.0276012 21682 110474 -1 1972 21 1112 1927 134019 30314 0 0 134019 30314 1927 1311 0 0 7185 5905 0 0 10446 8250 0 0 1927 1459 0 0 58261 6499 0 0 54273 6890 0 0 1927 0 0 815 1138 1384 8658 0 0 2.66645 2.66645 -98.5902 -2.66645 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00888939 0.00790601 123 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 2.76 vpr 52.86 MiB -1 -1 0.10 17532 1 0.01 -1 -1 29776 -1 -1 35 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54124 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 14.4 MiB 0.08 773 52.9 MiB 0.05 0.00 3.16278 -78.7825 -3.16278 3.16278 0.55 0.000100583 8.0124e-05 0.00774974 0.00633673 28 2055 34 6.65987e+06 443730 500653. 1732.36 0.69 0.0293638 0.0247426 21970 115934 -1 1697 24 1154 2205 144685 34629 0 0 144685 34629 2205 1374 0 0 8109 6650 0 0 12503 9761 0 0 2205 1515 0 0 57820 8037 0 0 61843 7292 0 0 2205 0 0 1051 1811 1760 11395 0 0 3.24679 3.24679 -98.5965 -3.24679 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.0083602 0.00739054 115 20 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 2.76 vpr 53.00 MiB -1 -1 0.10 17516 1 0.02 -1 -1 29768 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54268 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 14.6 MiB 0.16 827 53.0 MiB 0.05 0.00 3.29355 -97.6112 -3.29355 3.29355 0.55 0.000110406 8.8404e-05 0.00979213 0.00801222 28 2040 19 6.65987e+06 215526 500653. 1732.36 0.57 0.0308712 0.0261522 21970 115934 -1 1781 19 1004 1766 118717 27158 0 0 118717 27158 1766 1266 0 0 6298 5303 0 0 8973 7072 0 0 1766 1395 0 0 48167 6407 0 0 51747 5715 0 0 1766 0 0 762 875 707 6064 0 0 2.84971 2.84971 -107.399 -2.84971 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00979272 0.00882527 108 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 2.80 vpr 53.12 MiB -1 -1 0.10 17288 1 0.01 -1 -1 29832 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54396 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 14.5 MiB 0.13 993 53.1 MiB 0.06 0.00 2.94464 -103.892 -2.94464 2.94464 0.55 0.000114452 9.1485e-05 0.0105135 0.00854856 32 2440 18 6.65987e+06 253560 554710. 1919.41 0.61 0.031202 0.0262813 22834 132086 -1 2068 20 1407 2050 173152 38478 0 0 173152 38478 2050 1696 0 0 7825 6417 0 0 12008 9374 0 0 2050 1781 0 0 74496 9984 0 0 74723 9226 0 0 2050 0 0 643 602 620 5201 0 0 2.85111 2.85111 -119.684 -2.85111 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00873503 0.00781716 120 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 2.75 vpr 52.88 MiB -1 -1 0.10 17268 1 0.01 -1 -1 29712 -1 -1 32 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54144 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 14.4 MiB 0.06 1036 52.9 MiB 0.07 0.00 3.27404 -99.2302 -3.27404 3.27404 0.55 0.00011047 8.9192e-05 0.00964626 0.00793634 32 2377 25 6.65987e+06 405696 554710. 1919.41 0.57 0.0312986 0.0265869 22834 132086 -1 2100 25 1532 2794 207033 45982 0 0 207033 45982 2794 2079 0 0 10616 8516 0 0 16649 12592 0 0 2794 2298 0 0 87751 10084 0 0 86429 10413 0 0 2794 0 0 1262 1683 1615 11142 0 0 3.37911 3.37911 -116.825 -3.37911 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00955668 0.00849999 127 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 2.78 vpr 53.55 MiB -1 -1 0.10 17724 1 0.01 -1 -1 29780 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 14.9 MiB 0.19 1119 53.6 MiB 0.06 0.00 3.98521 -126.961 -3.98521 3.98521 0.55 0.000120611 9.7159e-05 0.00846662 0.00700637 30 2528 20 6.65987e+06 278916 526063. 1820.29 0.55 0.0325043 0.0277978 22546 126617 -1 2056 20 1152 1741 101079 23848 0 0 101079 23848 1741 1386 0 0 6069 4809 0 0 7646 6374 0 0 1741 1438 0 0 46346 4270 0 0 37536 5571 0 0 1741 0 0 589 558 474 4594 0 0 3.74071 3.74071 -137.557 -3.74071 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.00975263 0.00877561 144 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 2.92 vpr 53.43 MiB -1 -1 0.09 17484 1 0.01 -1 -1 29768 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 14.9 MiB 0.22 933 53.4 MiB 0.08 0.00 3.92821 -111.484 -3.92821 3.92821 0.58 0.000130285 0.000104925 0.0119382 0.00977741 30 2138 22 6.65987e+06 405696 526063. 1820.29 0.60 0.0365481 0.030856 22546 126617 -1 1632 21 1125 1967 89347 23507 0 0 89347 23507 1967 1221 0 0 6508 5244 0 0 8781 6960 0 0 1967 1309 0 0 33956 4564 0 0 36168 4209 0 0 1967 0 0 842 1078 915 7550 0 0 3.64083 3.64083 -121.487 -3.64083 0 0 666494. 2306.21 0.24 0.03 0.06 -1 -1 0.24 0.0104006 0.00930705 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 2.93 vpr 53.38 MiB -1 -1 0.10 17368 1 0.01 -1 -1 29688 -1 -1 37 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 14.7 MiB 0.19 1113 53.4 MiB 0.06 0.00 3.30775 -109.49 -3.30775 3.30775 0.55 0.000131929 0.000106367 0.0090934 0.00749046 28 2766 24 6.65987e+06 469086 500653. 1732.36 0.68 0.0352259 0.0297203 21970 115934 -1 2312 23 1461 2581 176251 41037 0 0 176251 41037 2581 1894 0 0 9450 7789 0 0 14019 10878 0 0 2581 2118 0 0 76541 8918 0 0 71079 9440 0 0 2581 0 0 1120 1472 1416 10065 0 0 3.44291 3.44291 -129.418 -3.44291 0 0 612192. 2118.31 0.17 0.04 0.07 -1 -1 0.17 0.0108997 0.00968284 140 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 2.80 vpr 52.83 MiB -1 -1 0.09 17328 1 0.00 -1 -1 29700 -1 -1 19 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54096 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 14.3 MiB 0.23 879 52.8 MiB 0.05 0.00 2.76049 -88.2512 -2.76049 2.76049 0.55 9.7679e-05 7.7657e-05 0.00850047 0.0069418 30 1821 22 6.65987e+06 240882 526063. 1820.29 0.53 0.0276139 0.0233198 22546 126617 -1 1562 18 788 1348 71287 16728 0 0 71287 16728 1348 947 0 0 4359 3455 0 0 5898 4577 0 0 1348 1152 0 0 29574 3293 0 0 28760 3304 0 0 1348 0 0 560 534 497 4317 0 0 2.46385 2.46385 -96.0168 -2.46385 0 0 666494. 2306.21 0.19 0.03 0.06 -1 -1 0.19 0.00920698 0.00826256 105 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.03 vpr 53.25 MiB -1 -1 0.13 17416 1 0.00 -1 -1 29804 -1 -1 21 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54532 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 14.8 MiB 0.19 982 53.3 MiB 0.06 0.00 3.80967 -110.655 -3.80967 3.80967 0.55 0.000127145 0.000101272 0.0108949 0.00891295 26 2651 25 6.65987e+06 266238 477104. 1650.88 0.81 0.0368015 0.0311885 21682 110474 -1 2136 20 1620 2473 201203 44488 0 0 201203 44488 2473 2041 0 0 9152 7767 0 0 13837 10895 0 0 2473 2117 0 0 90143 10347 0 0 83125 11321 0 0 2473 0 0 853 807 895 7242 0 0 3.76163 3.76163 -137.588 -3.76163 0 0 585099. 2024.56 0.16 0.04 0.06 -1 -1 0.16 0.0101278 0.00905941 137 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 3.22 vpr 53.42 MiB -1 -1 0.08 17360 1 0.01 -1 -1 29720 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 14.8 MiB 0.20 1220 53.4 MiB 0.06 0.00 3.6954 -114.819 -3.6954 3.6954 0.55 0.000123666 9.913e-05 0.00861973 0.00710652 28 3006 29 6.65987e+06 304272 500653. 1732.36 0.96 0.0347926 0.0296327 21970 115934 -1 2441 20 1552 2478 196893 43123 0 0 196893 43123 2478 1967 0 0 9001 7335 0 0 13627 10822 0 0 2478 2112 0 0 83768 10892 0 0 85541 9995 0 0 2478 0 0 926 1482 1526 10070 0 0 4.07331 4.07331 -138.928 -4.07331 0 0 612192. 2118.31 0.18 0.04 0.06 -1 -1 0.18 0.00923411 0.00828747 138 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 2.84 vpr 53.32 MiB -1 -1 0.10 17500 1 0.01 -1 -1 29716 -1 -1 28 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54600 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 14.9 MiB 0.28 1090 53.3 MiB 0.07 0.00 4.1579 -123.706 -4.1579 4.1579 0.55 0.000126367 0.000102855 0.0120786 0.00996278 28 2628 21 6.65987e+06 354984 500653. 1732.36 0.55 0.035063 0.0295418 21970 115934 -1 2293 20 1542 2423 160724 37866 0 0 160724 37866 2423 1855 0 0 8744 7122 0 0 12899 10228 0 0 2423 1960 0 0 68485 8374 0 0 65750 8327 0 0 2423 0 0 881 988 1049 7959 0 0 4.32503 4.32503 -145.024 -4.32503 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00944106 0.00849405 146 43 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.47 vpr 53.46 MiB -1 -1 0.11 17356 1 0.02 -1 -1 29760 -1 -1 31 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54740 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 14.8 MiB 0.79 987 53.5 MiB 0.07 0.00 3.25995 -100.389 -3.25995 3.25995 0.55 0.000124598 9.9112e-05 0.0115591 0.00942634 32 2262 21 6.65987e+06 393018 554710. 1919.41 0.55 0.0351639 0.0296335 22834 132086 -1 1988 21 1346 2251 157085 38008 0 0 157085 38008 2251 1640 0 0 8891 7578 0 0 14261 11223 0 0 2251 1931 0 0 64849 7937 0 0 64582 7699 0 0 2251 0 0 905 967 948 7569 0 0 2.99311 2.99311 -112.884 -2.99311 0 0 701300. 2426.64 0.19 0.06 0.07 -1 -1 0.19 0.0157101 0.014036 133 78 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 2.90 vpr 53.12 MiB -1 -1 0.10 17512 1 0.01 -1 -1 29712 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54396 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 14.7 MiB 0.14 1027 53.1 MiB 0.07 0.00 3.76955 -112.412 -3.76955 3.76955 0.55 0.000126352 0.000101115 0.0130915 0.0107011 32 2788 30 6.65987e+06 253560 554710. 1919.41 0.64 0.0394013 0.0333031 22834 132086 -1 2301 21 1796 3175 245816 55288 0 0 245816 55288 3175 2559 0 0 11828 10044 0 0 18735 14181 0 0 3175 2702 0 0 104369 13138 0 0 104534 12664 0 0 3175 0 0 1379 1655 1492 11033 0 0 3.71631 3.71631 -134.272 -3.71631 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0101152 0.00906608 133 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.18 vpr 53.33 MiB -1 -1 0.14 17468 1 0.02 -1 -1 29732 -1 -1 29 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54608 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 14.8 MiB 0.27 901 53.3 MiB 0.04 0.00 3.57869 -100.167 -3.57869 3.57869 0.58 0.000125666 0.000100793 0.00676226 0.00563505 28 2312 21 6.65987e+06 367662 500653. 1732.36 0.72 0.0331983 0.0283212 21970 115934 -1 2026 19 1321 2231 150541 35367 0 0 150541 35367 2231 1651 0 0 7905 6384 0 0 11364 8893 0 0 2231 1955 0 0 64460 7904 0 0 62350 8580 0 0 2231 0 0 910 1036 1052 7551 0 0 2.98265 2.98265 -111.215 -2.98265 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00945899 0.00845285 131 79 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 2.57 vpr 52.73 MiB -1 -1 0.10 17036 1 0.00 -1 -1 29716 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54000 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 14.3 MiB 0.06 735 52.7 MiB 0.04 0.00 2.87075 -90.6997 -2.87075 2.87075 0.56 9.9974e-05 8.0981e-05 0.00754543 0.00626602 28 1794 22 6.65987e+06 190170 500653. 1732.36 0.51 0.0255115 0.0217522 21970 115934 -1 1717 20 962 1430 110945 26299 0 0 110945 26299 1430 1215 0 0 5497 4620 0 0 7897 6534 0 0 1430 1264 0 0 49087 6091 0 0 45604 6575 0 0 1430 0 0 468 558 525 4029 0 0 2.58325 2.58325 -104.553 -2.58325 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00720139 0.00645357 96 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 2.81 vpr 53.31 MiB -1 -1 0.10 17420 1 0.01 -1 -1 29732 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54592 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 14.8 MiB 0.19 1060 53.3 MiB 0.05 0.00 3.45695 -112.304 -3.45695 3.45695 0.55 0.000127157 0.000101957 0.00744156 0.00615525 32 2356 23 6.65987e+06 380340 554710. 1919.41 0.56 0.0317164 0.0269891 22834 132086 -1 2052 19 1295 2214 165139 38069 0 0 165139 38069 2214 1649 0 0 8503 7161 0 0 14122 10789 0 0 2214 1878 0 0 74770 7545 0 0 63316 9047 0 0 2214 0 0 919 1063 861 7635 0 0 3.50931 3.50931 -124.737 -3.50931 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00947052 0.00848229 130 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 2.91 vpr 53.30 MiB -1 -1 0.10 17560 1 0.00 -1 -1 29716 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54580 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 14.7 MiB 0.19 999 53.3 MiB 0.06 0.00 3.86981 -120.613 -3.86981 3.86981 0.56 0.000155556 0.000128373 0.0100907 0.00840552 30 2354 22 6.65987e+06 253560 526063. 1820.29 0.64 0.0423016 0.0359909 22546 126617 -1 2034 21 1518 2473 127088 31017 0 0 127088 31017 2473 1721 0 0 8252 6486 0 0 11016 8807 0 0 2473 1883 0 0 50151 6143 0 0 52723 5977 0 0 2473 0 0 955 740 948 7472 0 0 3.34017 3.34017 -131.265 -3.34017 0 0 666494. 2306.21 0.18 0.03 0.06 -1 -1 0.18 0.0107945 0.00969055 147 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 2.72 vpr 52.94 MiB -1 -1 0.08 17292 1 0.01 -1 -1 29760 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54212 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 14.5 MiB 0.15 969 52.9 MiB 0.04 0.00 3.29515 -98.7591 -3.29515 3.29515 0.55 0.000103844 8.353e-05 0.00663119 0.00545418 30 1924 17 6.65987e+06 240882 526063. 1820.29 0.58 0.0245121 0.0209347 22546 126617 -1 1663 19 775 1027 62164 14746 0 0 62164 14746 1027 865 0 0 3603 2864 0 0 4657 3905 0 0 1027 901 0 0 26371 3072 0 0 25479 3139 0 0 1027 0 0 252 144 223 2170 0 0 2.80731 2.80731 -105.751 -2.80731 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00734285 0.00662042 111 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 2.61 vpr 52.75 MiB -1 -1 0.10 16892 1 0.00 -1 -1 29608 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54016 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 14.3 MiB 0.06 834 52.8 MiB 0.04 0.00 2.99601 -91.814 -2.99601 2.99601 0.55 9.4339e-05 7.5245e-05 0.00594228 0.00490652 32 1876 20 6.65987e+06 266238 554710. 1919.41 0.53 0.0233656 0.019919 22834 132086 -1 1769 20 1069 1725 136220 31724 0 0 136220 31724 1725 1348 0 0 6764 5785 0 0 11442 8907 0 0 1725 1424 0 0 57865 7246 0 0 56699 7014 0 0 1725 0 0 656 698 735 5550 0 0 2.85171 2.85171 -105.401 -2.85171 0 0 701300. 2426.64 0.20 0.03 0.07 -1 -1 0.20 0.00717495 0.00642855 106 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.29 vpr 53.52 MiB -1 -1 0.10 17580 1 0.00 -1 -1 29672 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 14.8 MiB 0.10 1127 53.5 MiB 0.06 0.00 4.06447 -131.03 -4.06447 4.06447 0.54 0.000120778 9.7123e-05 0.00925146 0.00760071 26 3212 37 6.65987e+06 316950 477104. 1650.88 1.18 0.0398229 0.0340068 21682 110474 -1 2603 23 1799 2356 214913 46948 0 0 214913 46948 2356 2116 0 0 8931 7416 0 0 13573 10807 0 0 2356 2252 0 0 97964 11437 0 0 89733 12920 0 0 2356 0 0 557 587 598 5234 0 0 4.30203 4.30203 -156.955 -4.30203 0 0 585099. 2024.56 0.16 0.04 0.06 -1 -1 0.16 0.0104573 0.00934133 144 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 3.83 vpr 53.57 MiB -1 -1 0.09 17368 1 0.02 -1 -1 29676 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54860 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 14.9 MiB 0.32 1211 53.6 MiB 0.06 0.00 4.05969 -121.436 -4.05969 4.05969 0.55 0.000123424 9.8827e-05 0.0102368 0.00840737 26 3130 46 6.65987e+06 354984 477104. 1650.88 1.49 0.045058 0.0383624 21682 110474 -1 2638 21 1484 2417 196312 43977 0 0 196312 43977 2417 1900 0 0 9165 7529 0 0 13950 11141 0 0 2417 2056 0 0 86701 10297 0 0 81662 11054 0 0 2417 0 0 933 1125 1219 8404 0 0 4.41637 4.41637 -150.378 -4.41637 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.0100403 0.00899766 151 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.25 vpr 53.38 MiB -1 -1 0.16 17356 1 0.00 -1 -1 29740 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 14.7 MiB 0.04 1215 53.4 MiB 0.06 0.00 4.21996 -116.591 -4.21996 4.21996 0.55 0.000128472 0.000103458 0.00912266 0.00754409 24 3700 49 6.65987e+06 456408 448715. 1552.65 2.10 0.0465806 0.0400727 21394 104001 -1 2826 29 2158 3944 513438 149743 0 0 513438 149743 3944 3027 0 0 15353 12553 0 0 25625 19044 0 0 3944 3334 0 0 235801 57399 0 0 228771 54386 0 0 3944 0 0 1786 2945 2757 17524 0 0 4.68157 4.68157 -151.638 -4.68157 0 0 554710. 1919.41 0.15 0.09 0.05 -1 -1 0.15 0.0125358 0.0110634 153 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 2.79 vpr 53.03 MiB -1 -1 0.09 17288 1 0.01 -1 -1 29796 -1 -1 31 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54300 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 14.5 MiB 0.17 851 53.0 MiB 0.05 0.00 2.72584 -83.5123 -2.72584 2.72584 0.54 0.000110501 8.8912e-05 0.00807032 0.00664268 26 2022 20 6.65987e+06 393018 477104. 1650.88 0.62 0.0293825 0.0250293 21682 110474 -1 1820 23 1378 2341 164779 39007 0 0 164779 39007 2341 1647 0 0 8774 7412 0 0 13977 10817 0 0 2341 1779 0 0 71458 8175 0 0 65888 9177 0 0 2341 0 0 963 1139 1099 8206 0 0 2.78691 2.78691 -100.149 -2.78691 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.0100194 0.00897181 120 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 2.56 vpr 52.80 MiB -1 -1 0.11 17104 1 0.01 -1 -1 29896 -1 -1 21 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54072 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 14.3 MiB 0.06 701 52.8 MiB 0.04 0.00 2.7331 -79.0895 -2.7331 2.7331 0.55 9.2669e-05 7.3906e-05 0.0066998 0.00550954 32 1545 23 6.65987e+06 266238 554710. 1919.41 0.53 0.0246045 0.0208563 22834 132086 -1 1428 21 1024 1550 110556 26630 0 0 110556 26630 1550 1239 0 0 6157 5411 0 0 9598 7527 0 0 1550 1349 0 0 46911 5407 0 0 44790 5697 0 0 1550 0 0 526 542 641 4601 0 0 2.93917 2.93917 -94.6025 -2.93917 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00734217 0.00654663 97 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 2.92 vpr 53.45 MiB -1 -1 0.16 17748 1 0.01 -1 -1 29848 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54728 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 15.3 MiB 0.12 1269 53.4 MiB 0.05 0.00 3.17598 -108.18 -3.17598 3.17598 0.55 0.000145191 0.00011704 0.00868191 0.00720971 32 3655 25 6.65987e+06 329628 554710. 1919.41 0.66 0.0377935 0.0321818 22834 132086 -1 2972 23 2248 3731 308500 67309 0 0 308500 67309 3731 2908 0 0 14281 12227 0 0 22247 17200 0 0 3731 3067 0 0 137321 15343 0 0 127189 16564 0 0 3731 0 0 1483 1820 1512 12162 0 0 3.70259 3.70259 -135.42 -3.70259 0 0 701300. 2426.64 0.19 0.05 0.07 -1 -1 0.19 0.0122893 0.010944 170 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.48 vpr 53.57 MiB -1 -1 0.10 17364 1 0.02 -1 -1 29740 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54856 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 14.9 MiB 0.72 991 53.6 MiB 0.05 0.00 4.2111 -122.698 -4.2111 4.2111 0.55 0.000124761 0.000100712 0.00993282 0.00818256 28 2631 26 6.65987e+06 266238 500653. 1732.36 0.70 0.0356764 0.0303211 21970 115934 -1 2195 20 1632 2603 199801 44746 0 0 199801 44746 2603 2112 0 0 9630 7884 0 0 14082 11438 0 0 2603 2181 0 0 89280 10186 0 0 81603 10945 0 0 2603 0 0 971 1203 1268 8789 0 0 4.27697 4.27697 -144.956 -4.27697 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.0101236 0.00906314 150 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.46 vpr 53.04 MiB -1 -1 0.10 17500 1 0.00 -1 -1 29744 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54308 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 14.5 MiB 0.84 844 53.0 MiB 0.06 0.00 3.4165 -105.635 -3.4165 3.4165 0.57 0.000113668 9.1045e-05 0.00980413 0.00804397 28 2143 20 6.65987e+06 228204 500653. 1732.36 0.60 0.0309674 0.0261766 21970 115934 -1 1758 18 987 1453 108394 26656 0 0 108394 26656 1453 1187 0 0 5460 4485 0 0 8103 6547 0 0 1453 1252 0 0 46832 6807 0 0 45093 6378 0 0 1453 0 0 466 404 494 3853 0 0 3.38936 3.38936 -122.855 -3.38936 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00887857 0.00800859 126 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 2.67 vpr 53.12 MiB -1 -1 0.09 17364 1 0.01 -1 -1 29648 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54400 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 14.5 MiB 0.07 1076 53.1 MiB 0.06 0.00 3.7622 -103.397 -3.7622 3.7622 0.55 0.000114316 9.1812e-05 0.00893916 0.00731059 30 2070 22 6.65987e+06 380340 526063. 1820.29 0.53 0.0309896 0.0262302 22546 126617 -1 1833 16 789 1255 67907 15893 0 0 67907 15893 1255 832 0 0 4230 3257 0 0 5344 4350 0 0 1255 936 0 0 26672 3571 0 0 29151 2947 0 0 1255 0 0 466 520 378 3831 0 0 3.24665 3.24665 -112.873 -3.24665 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00786766 0.00714549 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.02 vpr 53.52 MiB -1 -1 0.11 17464 1 0.01 -1 -1 29752 -1 -1 33 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54800 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 14.7 MiB 0.16 1100 53.5 MiB 0.06 0.00 3.83975 -111.213 -3.83975 3.83975 0.55 0.000131035 0.000105558 0.008403 0.00702122 26 2876 25 6.65987e+06 418374 477104. 1650.88 0.78 0.036637 0.0313945 21682 110474 -1 2320 23 1358 2398 164071 38027 0 0 164071 38027 2398 1719 0 0 8888 6989 0 0 12823 10239 0 0 2398 1901 0 0 71415 8279 0 0 66149 8900 0 0 2398 0 0 1040 1688 1738 10732 0 0 3.61825 3.61825 -121.781 -3.61825 0 0 585099. 2024.56 0.16 0.04 0.05 -1 -1 0.16 0.0109394 0.00975301 144 46 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 2.73 vpr 52.93 MiB -1 -1 0.10 17360 1 0.02 -1 -1 29728 -1 -1 31 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54200 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 14.4 MiB 0.10 1003 52.9 MiB 0.05 0.00 2.8933 -92.9901 -2.8933 2.8933 0.54 0.000115067 9.2549e-05 0.0078404 0.00647827 32 2350 27 6.65987e+06 393018 554710. 1919.41 0.56 0.0308567 0.0261977 22834 132086 -1 2119 19 1278 2117 156262 36355 0 0 156262 36355 2117 1554 0 0 8125 6933 0 0 12983 10067 0 0 2117 1681 0 0 64930 8261 0 0 65990 7859 0 0 2117 0 0 839 913 992 7293 0 0 2.77171 2.77171 -103.488 -2.77171 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0085593 0.00766301 124 46 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.01 vpr 53.62 MiB -1 -1 0.09 17360 1 0.01 -1 -1 29620 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 14.9 MiB 0.11 1224 53.6 MiB 0.07 0.00 3.7303 -122.563 -3.7303 3.7303 0.56 0.000123456 9.8771e-05 0.010178 0.00837098 28 3191 36 6.65987e+06 304272 500653. 1732.36 0.81 0.0381684 0.0324422 21970 115934 -1 2574 21 1994 2940 203971 47129 0 0 203971 47129 2940 2366 0 0 10502 8816 0 0 15704 12404 0 0 2940 2504 0 0 87925 10394 0 0 83960 10645 0 0 2940 0 0 946 939 974 7691 0 0 4.14451 4.14451 -151.6 -4.14451 0 0 612192. 2118.31 0.19 0.04 0.06 -1 -1 0.19 0.010275 0.00923623 147 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.19 vpr 53.38 MiB -1 -1 0.10 17460 1 0.00 -1 -1 29696 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54656 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 14.8 MiB 0.28 1090 53.4 MiB 0.11 0.00 3.63475 -114.492 -3.63475 3.63475 0.74 0.000133061 0.000106506 0.0175846 0.0144298 28 2461 21 6.65987e+06 431052 500653. 1732.36 0.62 0.0422407 0.0355758 21970 115934 -1 2217 17 1149 1839 120109 27839 0 0 120109 27839 1839 1357 0 0 6682 5403 0 0 9294 7554 0 0 1839 1459 0 0 49117 6357 0 0 51338 5709 0 0 1839 0 0 690 752 820 5963 0 0 3.17811 3.17811 -123.539 -3.17811 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00941494 0.00849493 143 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 2.79 vpr 52.74 MiB -1 -1 0.09 17148 1 0.01 -1 -1 29764 -1 -1 17 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54004 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 14.3 MiB 0.09 522 52.7 MiB 0.07 0.00 2.88681 -82.7562 -2.88681 2.88681 0.62 0.000175918 0.000141017 0.01556 0.0127771 32 1387 26 6.65987e+06 215526 554710. 1919.41 0.58 0.0354878 0.0297647 22834 132086 -1 1153 21 933 1325 96576 24501 0 0 96576 24501 1325 1041 0 0 5083 4423 0 0 9097 7145 0 0 1325 1156 0 0 38457 5488 0 0 41289 5248 0 0 1325 0 0 392 453 386 3420 0 0 3.01517 3.01517 -95.0243 -3.01517 0 0 701300. 2426.64 0.19 0.02 0.07 -1 -1 0.19 0.00765231 0.00681292 92 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 2.81 vpr 53.07 MiB -1 -1 0.10 17448 1 0.02 -1 -1 29748 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54348 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 14.6 MiB 0.20 1023 53.1 MiB 0.05 0.00 3.1971 -103.501 -3.1971 3.1971 0.55 0.000106612 8.507e-05 0.00916615 0.00749779 28 2216 20 6.65987e+06 253560 500653. 1732.36 0.55 0.0290986 0.0246055 21970 115934 -1 1926 20 1283 1693 122277 28040 0 0 122277 28040 1693 1435 0 0 6171 5124 0 0 8678 7052 0 0 1693 1510 0 0 52601 6291 0 0 51441 6628 0 0 1693 0 0 410 305 434 3662 0 0 3.13177 3.13177 -118.29 -3.13177 0 0 612192. 2118.31 0.18 0.03 0.11 -1 -1 0.18 0.00839815 0.00751 116 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.04 vpr 53.10 MiB -1 -1 0.10 17360 1 0.01 -1 -1 29808 -1 -1 37 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54376 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 14.5 MiB 0.06 994 53.1 MiB 0.05 0.00 3.56815 -98.3274 -3.56815 3.56815 0.55 0.000119397 9.5113e-05 0.00772673 0.00638677 26 2426 36 6.65987e+06 469086 477104. 1650.88 0.80 0.0428033 0.0367344 21682 110474 -1 1961 19 1272 2321 150025 37427 0 0 150025 37427 2321 1506 0 0 8992 7400 0 0 13445 10683 0 0 2321 1655 0 0 61542 8244 0 0 61404 7939 0 0 2321 0 0 1049 1360 1540 9984 0 0 3.70565 3.70565 -123.482 -3.70565 0 0 585099. 2024.56 0.24 0.03 0.09 -1 -1 0.24 0.00880552 0.00792181 129 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 2.85 vpr 52.91 MiB -1 -1 0.09 17500 1 0.01 -1 -1 29796 -1 -1 21 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54184 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 14.3 MiB 0.15 766 52.9 MiB 0.03 0.00 3.42635 -91.4949 -3.42635 3.42635 0.55 9.5712e-05 7.6736e-05 0.00476231 0.00398584 26 2169 24 6.65987e+06 266238 477104. 1650.88 0.71 0.0254023 0.0217811 21682 110474 -1 1777 22 1158 1483 106155 26400 0 0 106155 26400 1483 1344 0 0 5876 4884 0 0 8814 7115 0 0 1483 1378 0 0 44199 5847 0 0 44300 5832 0 0 1483 0 0 325 351 336 3181 0 0 3.16871 3.16871 -105.502 -3.16871 0 0 585099. 2024.56 0.19 0.04 0.05 -1 -1 0.19 0.012847 0.0114601 110 25 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.69 vpr 52.90 MiB -1 -1 0.09 17236 1 0.01 -1 -1 29700 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54172 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 14.4 MiB 0.15 814 52.9 MiB 0.04 0.00 2.90269 -93.5111 -2.90269 2.90269 0.55 0.000101544 8.1618e-05 0.0075873 0.006245 30 1839 22 6.65987e+06 202848 526063. 1820.29 0.55 0.0269106 0.0228614 22546 126617 -1 1605 23 1118 1989 111092 25761 0 0 111092 25761 1989 1356 0 0 6547 5151 0 0 8612 6828 0 0 1989 1578 0 0 47006 5166 0 0 44949 5682 0 0 1989 0 0 871 1051 939 7012 0 0 2.61131 2.61131 -101.243 -2.61131 0 0 666494. 2306.21 0.18 0.03 0.07 -1 -1 0.18 0.00846322 0.00753081 109 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 2.78 vpr 53.45 MiB -1 -1 0.12 17368 1 0.01 -1 -1 29808 -1 -1 35 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54736 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 14.8 MiB 0.18 933 53.5 MiB 0.07 0.00 3.14515 -96.7165 -3.14515 3.14515 0.55 0.000128838 0.00010356 0.0118865 0.00970393 30 1942 22 6.65987e+06 443730 526063. 1820.29 0.54 0.0362526 0.0306137 22546 126617 -1 1802 17 995 1574 81363 19677 0 0 81363 19677 1574 1040 0 0 5268 4226 0 0 6713 5457 0 0 1574 1127 0 0 32394 4123 0 0 33840 3704 0 0 1574 0 0 579 679 740 5446 0 0 2.79096 2.79096 -107.779 -2.79096 0 0 666494. 2306.21 0.18 0.02 0.06 -1 -1 0.18 0.00914583 0.00826458 135 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.03 vpr 52.85 MiB -1 -1 0.15 17684 1 0.00 -1 -1 29712 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54120 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 14.3 MiB 0.11 826 52.9 MiB 0.03 0.00 3.0359 -96.4877 -3.0359 3.0359 0.55 0.000100557 7.8119e-05 0.00534365 0.0043493 26 2315 29 6.65987e+06 240882 477104. 1650.88 0.87 0.0259605 0.0220582 21682 110474 -1 1963 18 1158 1657 144601 34515 0 0 144601 34515 1657 1379 0 0 6511 5523 0 0 9586 7802 0 0 1657 1546 0 0 61438 9376 0 0 63752 8889 0 0 1657 0 0 499 509 551 4214 0 0 3.22197 3.22197 -116.23 -3.22197 0 0 585099. 2024.56 0.19 0.05 0.05 -1 -1 0.19 0.00958784 0.0084295 108 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.47 vpr 53.31 MiB -1 -1 0.15 17360 1 0.01 -1 -1 29684 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 14.9 MiB 0.19 1014 53.3 MiB 0.06 0.00 2.82075 -93.8051 -2.82075 2.82075 0.55 0.0001192 9.6007e-05 0.00939601 0.00765409 26 2495 26 6.65987e+06 393018 477104. 1650.88 1.13 0.0360343 0.0306366 21682 110474 -1 2163 23 1306 2279 193061 41448 0 0 193061 41448 2279 1598 0 0 8701 7197 0 0 13246 10485 0 0 2279 1758 0 0 84860 9874 0 0 81696 10536 0 0 2279 0 0 973 1411 1665 10344 0 0 2.67651 2.67651 -108.672 -2.67651 0 0 585099. 2024.56 0.18 0.06 0.06 -1 -1 0.18 0.0148391 0.0133507 126 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.41 vpr 53.34 MiB -1 -1 0.10 17596 1 0.01 -1 -1 29792 -1 -1 32 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54624 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 14.7 MiB 0.66 943 53.3 MiB 0.07 0.00 3.50555 -111.405 -3.50555 3.50555 0.55 0.000131308 0.000105244 0.0114753 0.00937574 32 2184 20 6.65987e+06 405696 554710. 1919.41 0.54 0.0355363 0.0299909 22834 132086 -1 1991 23 1464 1986 154136 36207 0 0 154136 36207 1986 1629 0 0 7656 6521 0 0 12753 9888 0 0 1986 1720 0 0 64833 8492 0 0 64922 7957 0 0 1986 0 0 522 551 561 5026 0 0 3.29183 3.29183 -129.054 -3.29183 0 0 701300. 2426.64 0.27 0.06 0.07 -1 -1 0.27 0.0163558 0.0143422 138 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 2.77 vpr 52.88 MiB -1 -1 0.10 17660 1 0.02 -1 -1 29716 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54144 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 14.2 MiB 0.20 759 52.9 MiB 0.04 0.00 2.54264 -82.2128 -2.54264 2.54264 0.55 0.000111811 8.455e-05 0.00626183 0.00505166 28 1974 22 6.65987e+06 215526 500653. 1732.36 0.61 0.0263123 0.0221684 21970 115934 -1 1684 20 817 1286 96576 22495 0 0 96576 22495 1286 1018 0 0 4606 3821 0 0 6786 5339 0 0 1286 1039 0 0 41854 5529 0 0 40758 5749 0 0 1286 0 0 469 414 409 3606 0 0 2.73671 2.73671 -105.81 -2.73671 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00793219 0.00707912 104 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 2.76 vpr 53.05 MiB -1 -1 0.10 17368 1 0.01 -1 -1 29788 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54328 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 14.6 MiB 0.13 965 53.1 MiB 0.06 0.00 3.35195 -108.382 -3.35195 3.35195 0.56 0.000102624 8.1903e-05 0.0102168 0.00833319 32 2288 22 6.65987e+06 240882 554710. 1919.41 0.55 0.0299512 0.025245 22834 132086 -1 1982 22 1303 1919 157599 35134 0 0 157599 35134 1919 1649 0 0 7478 6415 0 0 11778 9270 0 0 1919 1713 0 0 70779 7552 0 0 63726 8535 0 0 1919 0 0 616 573 477 4817 0 0 3.02531 3.02531 -117.799 -3.02531 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.0084309 0.00750712 115 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.05 vpr 53.38 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29692 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 14.8 MiB 0.09 897 53.4 MiB 0.03 0.00 3.7011 -110.351 -3.7011 3.7011 0.55 0.00011622 9.3431e-05 0.00559183 0.0046649 28 2758 48 6.65987e+06 278916 500653. 1732.36 0.96 0.0345049 0.0294074 21970 115934 -1 2148 24 1623 2320 170606 42155 0 0 170606 42155 2320 1889 0 0 8694 7172 0 0 12374 10136 0 0 2320 2009 0 0 72565 9710 0 0 72333 11239 0 0 2320 0 0 697 762 751 5996 0 0 4.16751 4.16751 -134.655 -4.16751 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.0100364 0.00893612 130 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.51 vpr 53.06 MiB -1 -1 0.10 17668 1 0.02 -1 -1 29704 -1 -1 28 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54336 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 14.5 MiB 0.31 805 53.1 MiB 0.04 0.00 3.59335 -92.7366 -3.59335 3.59335 0.55 0.000113662 9.1182e-05 0.00680183 0.00561212 26 2741 44 6.65987e+06 354984 477104. 1650.88 1.09 0.0362901 0.030969 21682 110474 -1 1801 22 1037 1677 139387 34990 0 0 139387 34990 1677 1334 0 0 6307 5140 0 0 9429 7492 0 0 1677 1390 0 0 59370 9550 0 0 60927 10084 0 0 1677 0 0 640 911 847 6431 0 0 3.29871 3.29871 -109.577 -3.29871 0 0 585099. 2024.56 0.16 0.03 0.05 -1 -1 0.16 0.00915867 0.00818333 121 49 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 2.85 vpr 53.37 MiB -1 -1 0.10 17676 1 0.01 -1 -1 29692 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 15.1 MiB 0.18 1189 53.4 MiB 0.05 0.00 4.06506 -132.8 -4.06506 4.06506 0.55 0.000133325 0.000107217 0.0080496 0.0066776 32 2820 25 6.65987e+06 291594 554710. 1919.41 0.57 0.0341872 0.0290852 22834 132086 -1 2378 22 1988 2929 208830 48342 0 0 208830 48342 2929 2233 0 0 11158 9579 0 0 17614 13614 0 0 2929 2441 0 0 87116 10169 0 0 87084 10306 0 0 2929 0 0 941 1092 988 8494 0 0 4.15071 4.15071 -152.032 -4.15071 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0109968 0.00977349 153 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 2.62 vpr 52.59 MiB -1 -1 0.10 17056 1 0.01 -1 -1 29540 -1 -1 18 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53848 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 14.0 MiB 0.06 601 52.6 MiB 0.05 0.00 2.79204 -75.5102 -2.79204 2.79204 0.58 8.8932e-05 7.1475e-05 0.00813116 0.00665591 28 1769 25 6.65987e+06 228204 500653. 1732.36 0.54 0.0257643 0.021833 21970 115934 -1 1444 26 858 1400 151542 58713 0 0 151542 58713 1400 1149 0 0 5154 4201 0 0 8498 6495 0 0 1400 1200 0 0 66412 22679 0 0 68678 22989 0 0 1400 0 0 542 614 503 4329 0 0 2.70676 2.70676 -94.2005 -2.70676 0 0 612192. 2118.31 0.17 0.04 0.06 -1 -1 0.17 0.00791949 0.00703988 96 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.00 vpr 53.59 MiB -1 -1 0.10 17752 1 0.01 -1 -1 29796 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54880 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 14.8 MiB 0.33 1037 53.6 MiB 0.06 0.00 3.2391 -111.852 -3.2391 3.2391 0.58 0.000133656 0.000106278 0.0106935 0.00877513 32 2424 24 6.65987e+06 418374 554710. 1919.41 0.57 0.0368618 0.0312136 22834 132086 -1 2111 24 1786 2515 196609 44885 0 0 196609 44885 2515 2132 0 0 9827 8245 0 0 15448 12073 0 0 2515 2245 0 0 83710 10412 0 0 82594 9778 0 0 2515 0 0 729 754 753 6641 0 0 3.56537 3.56537 -133.61 -3.56537 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0115657 0.0102209 144 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 2.89 vpr 53.23 MiB -1 -1 0.09 17648 1 0.02 -1 -1 29764 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54512 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 14.6 MiB 0.15 897 53.2 MiB 0.05 0.00 2.8021 -103.521 -2.8021 2.8021 0.55 0.000121573 9.7042e-05 0.0102911 0.00843435 32 1890 22 6.65987e+06 202848 554710. 1919.41 0.58 0.034516 0.0291871 22834 132086 -1 1748 21 1402 2033 169263 37685 0 0 169263 37685 2033 1817 0 0 7696 6591 0 0 12540 9320 0 0 2033 1898 0 0 75000 8789 0 0 69961 9270 0 0 2033 0 0 631 693 623 5410 0 0 2.84877 2.84877 -119.989 -2.84877 0 0 701300. 2426.64 0.19 0.04 0.11 -1 -1 0.19 0.00965294 0.00860668 115 93 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 2.85 vpr 53.19 MiB -1 -1 0.09 17584 1 0.00 -1 -1 29792 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54468 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 14.8 MiB 0.24 984 53.2 MiB 0.07 0.00 3.2349 -102.001 -3.2349 3.2349 0.55 0.000125295 0.000100289 0.0111867 0.00915585 28 2298 22 6.65987e+06 393018 500653. 1732.36 0.54 0.0347137 0.0293451 21970 115934 -1 2026 19 951 1477 105056 24617 0 0 105056 24617 1477 1083 0 0 5595 4417 0 0 7731 6371 0 0 1477 1147 0 0 45327 5742 0 0 43449 5857 0 0 1477 0 0 526 822 766 5595 0 0 3.09131 3.09131 -110.047 -3.09131 0 0 612192. 2118.31 0.19 0.03 0.06 -1 -1 0.19 0.00964451 0.00866147 130 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 3.06 vpr 53.47 MiB -1 -1 0.11 17628 1 0.00 -1 -1 29864 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 15.1 MiB 0.26 1155 53.5 MiB 0.06 0.00 4.95012 -147.764 -4.95012 4.95012 0.55 0.000136949 0.000110469 0.0103284 0.00853447 32 3049 23 6.65987e+06 316950 554710. 1919.41 0.65 0.0393454 0.0337353 22834 132086 -1 2549 20 1817 2523 196879 45852 0 0 196879 45852 2523 2136 0 0 9984 8321 0 0 14477 11762 0 0 2523 2213 0 0 86581 10339 0 0 80791 11081 0 0 2523 0 0 706 903 795 6769 0 0 4.87997 4.87997 -161.569 -4.87997 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0119695 0.0108351 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 2.67 vpr 52.62 MiB -1 -1 0.10 17104 1 0.01 -1 -1 29704 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53888 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 13.9 MiB 0.12 764 52.6 MiB 0.03 0.00 2.57364 -83.2175 -2.57364 2.57364 0.55 8.3721e-05 6.6156e-05 0.00521012 0.00425565 26 1718 30 6.65987e+06 215526 477104. 1650.88 0.57 0.022149 0.0186683 21682 110474 -1 1582 19 878 1132 97090 22488 0 0 97090 22488 1132 979 0 0 4308 3570 0 0 6476 5167 0 0 1132 1036 0 0 41706 6001 0 0 42336 5735 0 0 1132 0 0 254 184 258 2336 0 0 2.28691 2.28691 -93.3323 -2.28691 0 0 585099. 2024.56 0.17 0.03 0.05 -1 -1 0.17 0.00744517 0.00663889 86 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 2.57 vpr 52.86 MiB -1 -1 0.10 17724 1 0.01 -1 -1 29776 -1 -1 16 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54128 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 14.3 MiB 0.08 640 52.9 MiB 0.04 0.00 3.13515 -91.4221 -3.13515 3.13515 0.55 0.00010452 8.4164e-05 0.00731281 0.00604897 28 1695 21 6.65987e+06 202848 500653. 1732.36 0.52 0.0267288 0.0227301 21970 115934 -1 1444 19 882 1438 109966 26104 0 0 109966 26104 1438 1189 0 0 5410 4541 0 0 7930 6464 0 0 1438 1258 0 0 47000 6334 0 0 46750 6318 0 0 1438 0 0 556 729 617 4744 0 0 2.79977 2.79977 -104.731 -2.79977 0 0 612192. 2118.31 0.17 0.03 0.06 -1 -1 0.17 0.00790278 0.00708703 92 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 2.73 vpr 52.95 MiB -1 -1 0.09 17668 1 0.01 -1 -1 29760 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54224 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 14.5 MiB 0.03 810 53.0 MiB 0.05 0.00 2.77684 -92.0932 -2.77684 2.77684 0.55 0.000106028 8.5215e-05 0.00765567 0.00633748 32 2091 45 6.65987e+06 266238 554710. 1919.41 0.67 0.0393886 0.033366 22834 132086 -1 1915 21 1312 2338 186768 42418 0 0 186768 42418 2338 1798 0 0 8867 7548 0 0 14652 11041 0 0 2338 1942 0 0 85741 9194 0 0 72832 10895 0 0 2338 0 0 1026 1069 1120 8309 0 0 2.66051 2.66051 -108.319 -2.66051 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.00830385 0.0074019 115 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 2.50 vpr 52.57 MiB -1 -1 0.09 17432 1 0.01 -1 -1 29788 -1 -1 27 25 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53832 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 14.0 MiB 0.06 561 52.6 MiB 0.03 0.00 2.46938 -60.1973 -2.46938 2.46938 0.55 7.9474e-05 6.3527e-05 0.0057895 0.00473825 28 1339 25 6.65987e+06 342306 500653. 1732.36 0.50 0.0215444 0.0182182 21970 115934 -1 1139 17 586 1040 64279 16034 0 0 64279 16034 1040 714 0 0 3838 3015 0 0 5609 4466 0 0 1040 794 0 0 25330 3737 0 0 27422 3308 0 0 1040 0 0 454 559 465 4056 0 0 2.48439 2.48439 -69.5592 -2.48439 0 0 612192. 2118.31 0.17 0.02 0.06 -1 -1 0.17 0.00554508 0.00496982 89 19 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 2.78 vpr 53.24 MiB -1 -1 0.09 17364 1 0.01 -1 -1 29836 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54516 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 14.8 MiB 0.16 1005 53.2 MiB 0.07 0.00 3.37318 -107.601 -3.37318 3.37318 0.55 0.000126061 0.0001017 0.0125606 0.0102449 32 2779 22 6.65987e+06 253560 554710. 1919.41 0.58 0.0366759 0.0309314 22834 132086 -1 2341 22 1572 2778 222845 51465 0 0 222845 51465 2778 2155 0 0 10829 9431 0 0 17776 13758 0 0 2778 2341 0 0 94124 12125 0 0 94560 11655 0 0 2778 0 0 1206 1356 1242 9394 0 0 3.67945 3.67945 -127.141 -3.67945 0 0 701300. 2426.64 0.19 0.04 0.07 -1 -1 0.19 0.0105054 0.00936533 135 69 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 2.96 vpr 53.63 MiB -1 -1 0.14 17744 1 0.01 -1 -1 29824 -1 -1 33 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 15.1 MiB 0.28 1045 53.6 MiB 0.07 0.00 3.36335 -113.348 -3.36335 3.36335 0.59 0.000133552 0.000106335 0.0121885 0.00993953 32 2297 17 6.65987e+06 418374 554710. 1919.41 0.55 0.0361064 0.0304764 22834 132086 -1 2035 18 1248 1925 125573 29258 0 0 125573 29258 1925 1384 0 0 7082 5907 0 0 10999 8574 0 0 1925 1534 0 0 51704 5989 0 0 51938 5870 0 0 1925 0 0 677 719 603 5654 0 0 3.30177 3.30177 -128.117 -3.30177 0 0 701300. 2426.64 0.19 0.03 0.07 -1 -1 0.19 0.00989025 0.00888765 142 86 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 6.44 vpr 54.04 MiB -1 -1 0.10 17564 1 0.01 -1 -1 29800 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55340 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 15.4 MiB 1.78 780 54.0 MiB 0.05 0.00 4.5465 -130.223 -4.5465 4.5465 0.56 0.000123255 9.8548e-05 0.0112507 0.0092841 46 2566 28 6.95648e+06 188184 828058. 2865.25 2.46 0.0627401 0.0535936 28066 200906 -1 1908 21 1278 1874 141570 32309 0 0 141570 32309 1874 1489 0 0 6153 5369 0 0 9992 7040 0 0 1874 1586 0 0 62975 7937 0 0 58702 8888 0 0 1874 0 0 596 536 652 5236 0 0 4.26531 4.26531 -145.395 -4.26531 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.0102616 0.00924186 81 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 5.55 vpr 53.97 MiB -1 -1 0.16 17492 1 0.01 -1 -1 29800 -1 -1 15 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55268 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 15.4 MiB 1.59 732 54.0 MiB 0.05 0.00 3.66177 -110.219 -3.66177 3.66177 0.59 0.000122519 9.8143e-05 0.0111776 0.00917712 48 2268 42 6.95648e+06 217135 865456. 2994.66 1.66 0.0591104 0.050091 28354 207349 -1 1915 22 1857 2593 235289 58650 0 0 235289 58650 2593 2257 0 0 8924 7961 0 0 16344 10881 0 0 2593 2428 0 0 98626 17364 0 0 106209 17759 0 0 2593 0 0 736 771 678 6250 0 0 4.65691 4.65691 -151.319 -4.65691 0 0 1.05005e+06 3633.38 0.26 0.05 0.11 -1 -1 0.26 0.0103361 0.00920651 80 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 4.91 vpr 53.79 MiB -1 -1 0.09 17492 1 0.01 -1 -1 29684 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55080 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 15.4 MiB 0.88 1085 53.8 MiB 0.05 0.00 3.10314 -104.306 -3.10314 3.10314 0.56 0.000107643 8.5948e-05 0.0108497 0.00893761 38 2672 46 6.95648e+06 217135 678818. 2348.85 1.91 0.0505121 0.0425999 26626 170182 -1 2161 20 1350 1832 139864 29306 0 0 139864 29306 1832 1529 0 0 5917 5058 0 0 9234 6486 0 0 1832 1599 0 0 60304 7560 0 0 60745 7074 0 0 1832 0 0 482 468 462 4428 0 0 3.56641 3.56641 -124.343 -3.56641 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00868821 0.0078022 76 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 4.39 vpr 53.84 MiB -1 -1 0.11 17352 1 0.01 -1 -1 29764 -1 -1 19 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55128 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 15.1 MiB 0.26 705 53.8 MiB 0.05 0.00 3.48718 -97.0557 -3.48718 3.48718 0.56 0.000119777 9.7385e-05 0.0111154 0.00911936 38 2421 22 6.95648e+06 275038 678818. 2348.85 2.03 0.0490493 0.0415514 26626 170182 -1 2018 24 1706 2827 234540 50095 0 0 234540 50095 2827 2276 0 0 8530 7498 0 0 14639 9372 0 0 2827 2404 0 0 107586 13987 0 0 98131 14558 0 0 2827 0 0 1121 1337 1528 9855 0 0 4.02656 4.02656 -128.378 -4.02656 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.00954922 0.00849578 71 25 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 5.33 vpr 54.03 MiB -1 -1 0.10 17644 1 0.02 -1 -1 29696 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55324 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 15.4 MiB 0.61 762 54.0 MiB 0.05 0.00 3.67069 -105.476 -3.67069 3.67069 0.57 0.000117812 9.4473e-05 0.0124442 0.010331 46 2479 35 6.95648e+06 231611 828058. 2865.25 2.52 0.0560437 0.0476876 28066 200906 -1 1780 22 1335 2285 175056 38549 0 0 175056 38549 2285 1631 0 0 7129 6370 0 0 12888 8183 0 0 2285 1731 0 0 74390 10018 0 0 76079 10616 0 0 2285 0 0 950 835 1027 7527 0 0 4.26241 4.26241 -134.696 -4.26241 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.00988334 0.00881145 73 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 4.57 vpr 54.05 MiB -1 -1 0.10 17340 1 0.01 -1 -1 29660 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55352 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 15.4 MiB 0.71 905 54.1 MiB 0.06 0.00 2.5393 -97.273 -2.5393 2.5393 0.56 0.000125797 0.000101351 0.0127582 0.0102635 38 2520 24 6.95648e+06 303989 678818. 2348.85 1.71 0.0547949 0.0460298 26626 170182 -1 2135 22 1549 2383 186948 38742 0 0 186948 38742 2383 1883 0 0 7353 6427 0 0 12022 8043 0 0 2383 2064 0 0 79099 10915 0 0 83708 9410 0 0 2383 0 0 834 1000 1067 7692 0 0 3.18757 3.18757 -124.145 -3.18757 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0104369 0.00932093 79 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 7.03 vpr 53.43 MiB -1 -1 0.10 17084 1 0.01 -1 -1 30008 -1 -1 13 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54708 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 15.0 MiB 3.60 480 53.4 MiB 0.03 0.00 2.92458 -76.9784 -2.92458 2.92458 0.57 9.2183e-05 7.2947e-05 0.00672388 0.0055213 36 1531 26 6.95648e+06 188184 648988. 2245.63 1.37 0.0358927 0.0300698 26050 158493 -1 1203 19 819 1277 93690 22151 0 0 93690 22151 1277 971 0 0 4453 3794 0 0 7178 5157 0 0 1277 1002 0 0 38761 5663 0 0 40744 5564 0 0 1277 0 0 458 545 398 3804 0 0 3.07997 3.07997 -95.5345 -3.07997 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.00711025 0.00637859 52 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 4.32 vpr 53.60 MiB -1 -1 0.09 16896 1 0.01 -1 -1 29616 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54888 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 15.0 MiB 0.29 690 53.6 MiB 0.04 0.00 2.37175 -75.9172 -2.37175 2.37175 0.56 0.000102186 8.1712e-05 0.00743103 0.00612234 38 2202 24 6.95648e+06 361892 678818. 2348.85 1.95 0.0448188 0.0380331 26626 170182 -1 1605 17 1023 1626 110861 25460 0 0 110861 25460 1626 1222 0 0 5128 4379 0 0 7860 5517 0 0 1626 1301 0 0 44041 7109 0 0 50580 5932 0 0 1626 0 0 603 805 744 5940 0 0 2.83332 2.83332 -99.0837 -2.83332 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00742901 0.00669803 69 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 5.64 vpr 53.79 MiB -1 -1 0.10 17552 1 0.02 -1 -1 29748 -1 -1 11 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55080 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 15.2 MiB 1.47 622 53.8 MiB 0.04 0.00 2.76819 -94.347 -2.76819 2.76819 0.57 0.000129607 0.000103297 0.0087338 0.00714369 38 2485 46 6.95648e+06 159232 678818. 2348.85 2.05 0.0493012 0.0414493 26626 170182 -1 1688 22 1304 1853 152857 33628 0 0 152857 33628 1853 1556 0 0 5611 4843 0 0 9586 6179 0 0 1853 1568 0 0 63602 10445 0 0 70352 9037 0 0 1853 0 0 549 558 429 4487 0 0 3.54537 3.54537 -121.256 -3.54537 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.009159 0.00818623 66 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 4.49 vpr 53.64 MiB -1 -1 0.09 17480 1 0.02 -1 -1 29752 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54928 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 15.1 MiB 0.76 654 53.6 MiB 0.04 0.00 2.66488 -92.923 -2.66488 2.66488 0.57 0.000105272 8.3648e-05 0.00935474 0.00763155 38 1798 23 6.95648e+06 144757 678818. 2348.85 1.63 0.04367 0.036814 26626 170182 -1 1458 21 1232 1763 130634 28562 0 0 130634 28562 1763 1473 0 0 5437 4733 0 0 8808 5896 0 0 1763 1516 0 0 56735 7159 0 0 56128 7785 0 0 1763 0 0 531 471 598 4767 0 0 3.05082 3.05082 -116.723 -3.05082 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.0086812 0.00778455 59 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 5.26 vpr 53.63 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29696 -1 -1 12 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 15.1 MiB 1.37 525 53.6 MiB 0.03 0.00 2.79013 -84.0225 -2.79013 2.79013 0.57 0.000104291 8.2547e-05 0.00751456 0.00622123 38 1723 47 6.95648e+06 173708 678818. 2348.85 1.77 0.0463962 0.0391173 26626 170182 -1 1198 23 1109 1508 105559 26257 0 0 105559 26257 1508 1356 0 0 4849 4234 0 0 8033 5421 0 0 1508 1398 0 0 42684 6837 0 0 46977 7011 0 0 1508 0 0 399 412 541 3924 0 0 3.45492 3.45492 -110.111 -3.45492 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00864954 0.00767191 55 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 5.04 vpr 53.77 MiB -1 -1 0.11 17468 1 0.01 -1 -1 29656 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55060 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 15.2 MiB 1.04 596 53.8 MiB 0.04 0.00 2.73393 -92.8543 -2.73393 2.73393 0.56 9.9046e-05 7.7273e-05 0.00841939 0.00682025 46 1797 22 6.95648e+06 144757 828058. 2865.25 1.83 0.0406283 0.0342526 28066 200906 -1 1303 25 1228 1595 117448 28126 0 0 117448 28126 1595 1409 0 0 5095 4487 0 0 9064 6014 0 0 1595 1465 0 0 53776 6510 0 0 46323 8241 0 0 1595 0 0 367 320 332 3348 0 0 3.25722 3.25722 -112.378 -3.25722 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.0090679 0.0080834 62 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 4.94 vpr 53.96 MiB -1 -1 0.10 17492 1 0.01 -1 -1 29792 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55252 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 15.4 MiB 1.31 809 54.0 MiB 0.03 0.00 3.29778 -109.097 -3.29778 3.29778 0.56 0.000119669 9.52e-05 0.00822559 0.00683256 54 2559 23 6.95648e+06 217135 949917. 3286.91 1.40 0.0446759 0.0377562 29506 232905 -1 2066 22 1623 2400 215677 46197 0 0 215677 46197 2400 1913 0 0 7624 6651 0 0 13098 8663 0 0 2400 2222 0 0 90271 14129 0 0 99884 12619 0 0 2400 0 0 777 650 729 6130 0 0 3.59152 3.59152 -129.042 -3.59152 0 0 1.17392e+06 4061.99 0.28 0.04 0.12 -1 -1 0.28 0.0102697 0.00921138 83 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 6.26 vpr 53.95 MiB -1 -1 0.12 17440 1 0.01 -1 -1 29680 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55244 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 15.4 MiB 0.64 850 53.9 MiB 0.06 0.00 3.72883 -115.484 -3.72883 3.72883 0.56 0.000131275 0.00010597 0.0125309 0.0103238 36 2803 33 6.95648e+06 318465 648988. 2245.63 3.42 0.0574921 0.0486565 26050 158493 -1 2224 22 1843 2620 260512 51560 0 0 260512 51560 2620 2158 0 0 8117 7086 0 0 14136 9240 0 0 2620 2287 0 0 114690 15980 0 0 118329 14809 0 0 2620 0 0 777 928 830 7093 0 0 4.46842 4.46842 -151.614 -4.46842 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0104795 0.00934465 75 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 4.77 vpr 53.32 MiB -1 -1 0.09 17256 1 0.01 -1 -1 29664 -1 -1 13 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54604 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 14.8 MiB 0.97 520 53.3 MiB 0.04 0.00 2.6566 -75.3148 -2.6566 2.6566 0.56 9.0686e-05 7.1587e-05 0.00819427 0.00667649 38 1953 26 6.95648e+06 188184 678818. 2348.85 1.73 0.0411882 0.0349766 26626 170182 -1 1394 22 1007 1547 128569 27442 0 0 128569 27442 1547 1276 0 0 4686 4038 0 0 8030 5061 0 0 1547 1306 0 0 57772 7540 0 0 54987 8221 0 0 1547 0 0 540 564 454 4229 0 0 2.92072 2.92072 -96.6549 -2.92072 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00754188 0.00670674 55 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 5.81 vpr 54.11 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29668 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55412 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 15.4 MiB 0.78 769 54.1 MiB 0.05 0.00 2.5613 -93.5955 -2.5613 2.5613 0.57 0.000128044 0.000102361 0.0118218 0.00969544 38 2715 47 6.95648e+06 246087 678818. 2348.85 2.83 0.0624195 0.0529034 26626 170182 -1 1843 21 1614 2485 204093 48507 0 0 204093 48507 2485 2045 0 0 7858 6877 0 0 12979 8719 0 0 2485 2106 0 0 89811 14052 0 0 88475 14708 0 0 2485 0 0 871 1028 1041 7817 0 0 3.12497 3.12497 -121.308 -3.12497 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.0101963 0.00910301 76 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 5.24 vpr 54.02 MiB -1 -1 0.11 17392 1 0.01 -1 -1 29728 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55316 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 15.4 MiB 1.40 850 54.0 MiB 0.04 0.00 3.53151 -112.684 -3.53151 3.53151 0.57 0.000117911 9.4954e-05 0.00943012 0.00778738 40 2184 28 6.95648e+06 202660 706193. 2443.58 1.61 0.0470114 0.0395978 26914 176310 -1 1862 33 2058 2853 314330 121355 0 0 314330 121355 2853 2393 0 0 9582 8422 0 0 19820 12353 0 0 2853 2540 0 0 143954 51044 0 0 135268 44603 0 0 2853 0 0 795 991 789 7018 0 0 3.76272 3.76272 -134.837 -3.76272 0 0 926341. 3205.33 0.23 0.07 0.09 -1 -1 0.23 0.0126318 0.0111287 79 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 8.08 vpr 53.64 MiB -1 -1 0.15 17476 1 0.01 -1 -1 29664 -1 -1 9 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54932 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 15.1 MiB 0.58 655 53.6 MiB 0.04 0.00 1.91376 -73.9178 -1.91376 1.91376 0.61 0.000107736 8.5322e-05 0.00983239 0.00802352 40 1784 41 6.95648e+06 130281 706193. 2443.58 5.24 0.0893474 0.0749225 26914 176310 -1 1607 24 1272 1826 213459 60958 0 0 213459 60958 1826 1605 0 0 6558 5740 0 0 11828 8105 0 0 1826 1651 0 0 95536 23101 0 0 95885 20756 0 0 1826 0 0 554 811 895 5626 0 0 3.29948 3.29948 -113.174 -3.29948 0 0 926341. 3205.33 0.22 0.05 0.12 -1 -1 0.22 0.00948055 0.00840869 57 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 3.66 vpr 53.30 MiB -1 -1 0.09 17216 1 0.01 -1 -1 29652 -1 -1 9 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54576 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 14.9 MiB 0.30 409 53.3 MiB 0.02 0.00 1.85256 -62.0324 -1.85256 1.85256 0.56 8.0795e-05 6.3268e-05 0.0048654 0.0040062 40 1188 34 6.95648e+06 130281 706193. 2443.58 1.27 0.0323824 0.0272357 26914 176310 -1 972 28 838 1124 122824 37705 0 0 122824 37705 1124 993 0 0 4006 3542 0 0 7608 5023 0 0 1124 997 0 0 59094 13616 0 0 49868 13534 0 0 1124 0 0 286 305 299 2614 0 0 2.29278 2.29278 -85.1161 -2.29278 0 0 926341. 3205.33 0.22 0.03 0.09 -1 -1 0.22 0.00745183 0.00654966 43 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 6.45 vpr 53.85 MiB -1 -1 0.09 17456 1 0.01 -1 -1 29772 -1 -1 12 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55140 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 15.2 MiB 1.73 742 53.8 MiB 0.04 0.00 3.3794 -109.326 -3.3794 3.3794 0.57 0.000108003 8.7635e-05 0.00813632 0.00677114 36 2444 30 6.95648e+06 173708 648988. 2245.63 2.65 0.0441116 0.037345 26050 158493 -1 1884 25 1620 2208 200505 43874 0 0 200505 43874 2208 1931 0 0 7014 6119 0 0 12108 7930 0 0 2208 1995 0 0 86631 12725 0 0 90336 13174 0 0 2208 0 0 588 612 615 5249 0 0 3.86396 3.86396 -144.477 -3.86396 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00923618 0.00822315 69 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 4.31 vpr 53.96 MiB -1 -1 0.14 17344 1 0.01 -1 -1 29708 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55252 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 15.4 MiB 0.64 706 54.0 MiB 0.05 0.00 3.07689 -100.762 -3.07689 3.07689 0.57 0.000120694 9.6454e-05 0.011465 0.00937557 44 2201 23 6.95648e+06 289514 787024. 2723.27 1.41 0.0539168 0.0460998 27778 195446 -1 1642 21 1446 2096 159482 35234 0 0 159482 35234 2096 1735 0 0 6621 5786 0 0 11275 7596 0 0 2096 1838 0 0 72752 7966 0 0 64642 10313 0 0 2096 0 0 650 781 758 6259 0 0 3.59836 3.59836 -126.988 -3.59836 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.00962285 0.00857434 75 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 4.87 vpr 54.17 MiB -1 -1 0.10 17700 1 0.01 -1 -1 29688 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55472 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 15.7 MiB 1.00 845 54.2 MiB 0.04 0.00 3.8447 -110.914 -3.8447 3.8447 0.57 0.000125547 0.000100252 0.00984492 0.00811514 58 2167 28 6.95648e+06 202660 997811. 3452.63 1.60 0.0507218 0.0427901 30370 251734 -1 1828 21 1557 2373 207528 49852 0 0 207528 49852 2373 1898 0 0 7798 6779 0 0 14658 9364 0 0 2373 2065 0 0 82282 15918 0 0 98044 13828 0 0 2373 0 0 816 802 923 6990 0 0 4.16201 4.16201 -136.4 -4.16201 0 0 1.25153e+06 4330.55 0.30 0.04 0.13 -1 -1 0.30 0.0103895 0.00928119 82 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 3.84 vpr 53.19 MiB -1 -1 0.12 17232 1 0.01 -1 -1 29740 -1 -1 13 26 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54468 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 14.6 MiB 0.75 314 53.2 MiB 0.02 0.00 1.85256 -53.7981 -1.85256 1.85256 0.56 7.3244e-05 5.7989e-05 0.00474747 0.00389822 36 1162 27 6.95648e+06 188184 648988. 2245.63 1.06 0.0279674 0.0233677 26050 158493 -1 795 19 572 674 49121 13054 0 0 49121 13054 674 619 0 0 2248 1986 0 0 3750 2618 0 0 674 622 0 0 19779 3872 0 0 21996 3337 0 0 674 0 0 102 55 51 1122 0 0 2.18748 2.18748 -70.7297 -2.18748 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.00530742 0.00473938 44 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 4.53 vpr 53.66 MiB -1 -1 0.14 17200 1 0.01 -1 -1 29684 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 15.1 MiB 0.59 694 53.7 MiB 0.04 0.00 3.81446 -97.9552 -3.81446 3.81446 0.61 0.000104803 8.3807e-05 0.00886549 0.0072858 46 2179 26 6.95648e+06 217135 828058. 2865.25 1.64 0.0448071 0.0380975 28066 200906 -1 1603 25 1277 2039 173287 38980 0 0 173287 38980 2039 1734 0 0 6499 5684 0 0 11982 7629 0 0 2039 1816 0 0 76265 10794 0 0 74463 11323 0 0 2039 0 0 762 788 880 6505 0 0 3.80186 3.80186 -121.606 -3.80186 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0096501 0.00860991 66 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 3.26 vpr 53.08 MiB -1 -1 0.08 16640 1 0.01 -1 -1 29560 -1 -1 8 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54356 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 14.6 MiB 0.26 450 53.1 MiB 0.02 0.00 1.77736 -58.1192 -1.77736 1.77736 0.57 7.1562e-05 5.6168e-05 0.0048887 0.00397597 34 1420 43 6.95648e+06 115805 618332. 2139.56 0.93 0.0291258 0.0244242 25762 151098 -1 1084 19 690 784 73950 17709 0 0 73950 17709 784 772 0 0 2806 2450 0 0 4742 3316 0 0 784 775 0 0 31949 5298 0 0 32885 5098 0 0 784 0 0 94 57 89 1212 0 0 2.23278 2.23278 -80.7205 -2.23278 0 0 787024. 2723.27 0.20 0.02 0.07 -1 -1 0.20 0.00540923 0.00485687 42 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 5.86 vpr 53.81 MiB -1 -1 0.10 17268 1 0.01 -1 -1 29660 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55104 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 15.2 MiB 0.74 962 53.8 MiB 0.05 0.00 3.51071 -104.741 -3.51071 3.51071 0.56 0.000110825 8.898e-05 0.00993906 0.00818453 36 2631 34 6.95648e+06 217135 648988. 2245.63 3.02 0.0491719 0.04175 26050 158493 -1 2109 22 1402 2244 229760 44257 0 0 229760 44257 2244 1882 0 0 7048 6144 0 0 12631 8046 0 0 2244 1957 0 0 103997 12818 0 0 101596 13410 0 0 2244 0 0 842 1074 1157 7765 0 0 3.86096 3.86096 -128.765 -3.86096 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00900169 0.00805012 68 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 8.00 vpr 53.74 MiB -1 -1 0.10 17324 1 0.01 -1 -1 29732 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55032 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 15.1 MiB 0.39 722 53.7 MiB 0.05 0.00 2.4561 -83.8122 -2.4561 2.4561 0.56 0.000113026 8.9242e-05 0.00944129 0.00774344 38 2310 27 6.95648e+06 303989 678818. 2348.85 5.48 0.0794881 0.0670682 26626 170182 -1 1720 17 1269 1991 148575 33013 0 0 148575 33013 1991 1477 0 0 6402 5443 0 0 10562 7221 0 0 1991 1592 0 0 63388 8915 0 0 64241 8365 0 0 1991 0 0 722 696 920 6645 0 0 3.11392 3.11392 -115.501 -3.11392 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00793649 0.00717099 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 4.33 vpr 53.93 MiB -1 -1 0.10 17588 1 0.01 -1 -1 29748 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55220 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 15.4 MiB 0.54 804 53.9 MiB 0.05 0.00 3.60953 -107.514 -3.60953 3.60953 0.68 0.000115965 9.2475e-05 0.00985266 0.00806186 50 2162 31 6.95648e+06 275038 902133. 3121.57 1.45 0.0491868 0.041467 28642 213929 -1 1711 22 1152 1741 133585 29526 0 0 133585 29526 1741 1348 0 0 5795 4944 0 0 10008 6760 0 0 1741 1494 0 0 55336 7541 0 0 58964 7439 0 0 1741 0 0 589 495 616 4909 0 0 3.78591 3.78591 -123.971 -3.78591 0 0 1.08113e+06 3740.92 0.26 0.03 0.11 -1 -1 0.26 0.0097407 0.00870898 72 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 4.35 vpr 53.63 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29712 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54920 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 15.2 MiB 0.73 709 53.6 MiB 0.04 0.00 2.58755 -80.3309 -2.58755 2.58755 0.56 0.000102023 8.1464e-05 0.0098881 0.00813383 38 1976 22 6.95648e+06 144757 678818. 2348.85 1.50 0.0457173 0.0385515 26626 170182 -1 1640 21 1022 1596 140711 29296 0 0 140711 29296 1596 1270 0 0 5096 4482 0 0 8268 5695 0 0 1596 1317 0 0 61593 8606 0 0 62562 7926 0 0 1596 0 0 574 496 552 4478 0 0 2.82072 2.82072 -104.849 -2.82072 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00816604 0.00730271 55 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 4.12 vpr 53.53 MiB -1 -1 0.10 17216 1 0.01 -1 -1 29748 -1 -1 18 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54816 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 14.9 MiB 0.16 560 53.5 MiB 0.04 0.00 2.73513 -79.2304 -2.73513 2.73513 0.57 9.7141e-05 7.7064e-05 0.00817937 0.00668577 34 2174 50 6.95648e+06 260562 618332. 2139.56 1.66 0.0457266 0.0385634 25762 151098 -1 1454 27 1238 1693 301642 132638 0 0 301642 132638 1693 1469 0 0 5867 5093 0 0 11554 7594 0 0 1693 1516 0 0 143043 59975 0 0 137792 56991 0 0 1693 0 0 455 553 500 4379 0 0 3.09012 3.09012 -104.602 -3.09012 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.00883305 0.00778405 57 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 3.82 vpr 53.30 MiB -1 -1 0.08 17004 1 0.01 -1 -1 29708 -1 -1 16 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54584 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 14.7 MiB 0.37 459 53.3 MiB 0.04 0.00 2.5594 -74.5966 -2.5594 2.5594 0.56 9.6808e-05 7.7447e-05 0.00801386 0.00654885 44 1638 24 6.95648e+06 231611 787024. 2723.27 1.30 0.0364896 0.0305609 27778 195446 -1 1227 22 1004 1544 119393 28689 0 0 119393 28689 1544 1329 0 0 5084 4448 0 0 8746 6089 0 0 1544 1382 0 0 51833 6826 0 0 50642 8615 0 0 1544 0 0 540 491 497 4314 0 0 3.01797 3.01797 -93.1854 -3.01797 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.0076004 0.00676578 57 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 3.74 vpr 53.43 MiB -1 -1 0.09 17048 1 0.01 -1 -1 29668 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 14.7 MiB 0.35 581 53.4 MiB 0.04 0.00 2.72875 -87.4867 -2.72875 2.72875 0.56 0.000113998 9.0957e-05 0.0108223 0.00891803 42 2029 37 6.95648e+06 144757 744469. 2576.02 1.28 0.0435871 0.0367483 27202 183097 -1 1362 23 1062 1548 120987 31315 0 0 120987 31315 1548 1358 0 0 5542 4845 0 0 9531 6739 0 0 1548 1403 0 0 49963 8644 0 0 52855 8326 0 0 1548 0 0 486 543 505 4146 0 0 3.05697 3.05697 -113.332 -3.05697 0 0 949917. 3286.91 0.23 0.03 0.09 -1 -1 0.23 0.00808167 0.00721964 58 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 4.01 vpr 53.59 MiB -1 -1 0.09 17228 1 0.01 -1 -1 29664 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54876 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 15.1 MiB 0.29 529 53.6 MiB 0.04 0.00 2.64098 -82.2636 -2.64098 2.64098 0.56 0.000100009 7.9376e-05 0.00799725 0.00649895 46 1899 29 6.95648e+06 275038 828058. 2865.25 1.59 0.0390313 0.0328524 28066 200906 -1 1377 23 1046 1571 133014 35367 0 0 133014 35367 1571 1223 0 0 5064 4395 0 0 8645 5849 0 0 1571 1355 0 0 58107 10572 0 0 58056 11973 0 0 1571 0 0 525 599 547 4760 0 0 2.82232 2.82232 -102.41 -2.82232 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00822708 0.00732883 61 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 5.08 vpr 53.66 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29700 -1 -1 12 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54944 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 15.1 MiB 0.82 668 53.7 MiB 0.04 0.00 2.4721 -83.5049 -2.4721 2.4721 0.57 0.000104772 8.4496e-05 0.00894301 0.00740824 36 2416 50 6.95648e+06 173708 648988. 2245.63 2.07 0.0510552 0.0432835 26050 158493 -1 1680 20 1179 1611 149523 32431 0 0 149523 32431 1611 1423 0 0 5409 4796 0 0 9016 6296 0 0 1611 1460 0 0 64996 9703 0 0 66880 8753 0 0 1611 0 0 432 498 498 4129 0 0 2.85532 2.85532 -107.919 -2.85532 0 0 828058. 2865.25 0.21 0.03 0.12 -1 -1 0.21 0.00816145 0.00731162 61 48 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 4.88 vpr 54.01 MiB -1 -1 0.10 17680 1 0.01 -1 -1 29700 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55308 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 15.6 MiB 0.60 868 54.0 MiB 0.06 0.00 3.28368 -98.6728 -3.28368 3.28368 0.56 0.000135522 0.000109611 0.0128509 0.0105862 40 2953 25 6.95648e+06 303989 706193. 2443.58 2.09 0.0550477 0.0464487 26914 176310 -1 2195 22 1667 2703 221244 49511 0 0 221244 49511 2703 2171 0 0 8974 7765 0 0 16178 10788 0 0 2703 2307 0 0 90775 13684 0 0 99911 12796 0 0 2703 0 0 1036 1667 1614 11048 0 0 3.95042 3.95042 -127.584 -3.95042 0 0 926341. 3205.33 0.23 0.07 0.09 -1 -1 0.23 0.0167413 0.0148626 84 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 4.85 vpr 54.13 MiB -1 -1 0.10 17456 1 0.01 -1 -1 29728 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55428 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 15.7 MiB 0.69 770 54.1 MiB 0.04 0.00 2.72278 -96.163 -2.72278 2.72278 0.56 0.000133216 0.000104885 0.0101493 0.00826158 46 2464 37 6.95648e+06 347416 828058. 2865.25 1.98 0.0556584 0.046807 28066 200906 -1 1838 23 1838 2649 189146 44421 0 0 189146 44421 2649 2002 0 0 8162 7219 0 0 13944 9202 0 0 2649 2202 0 0 81084 11343 0 0 80658 12453 0 0 2649 0 0 811 965 878 7441 0 0 3.34357 3.34357 -128.534 -3.34357 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0114802 0.0102256 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 9.38 vpr 53.73 MiB -1 -1 0.10 17556 1 0.01 -1 -1 29700 -1 -1 11 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55016 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 15.2 MiB 1.41 821 53.7 MiB 0.04 0.00 3.28867 -109.385 -3.28867 3.28867 0.56 0.000100249 8.0215e-05 0.00870832 0.00714228 40 1966 18 6.95648e+06 159232 706193. 2443.58 5.80 0.0728108 0.0611799 26914 176310 -1 1868 21 1286 1817 183658 36544 0 0 183658 36544 1817 1539 0 0 6192 5408 0 0 11799 7719 0 0 1817 1604 0 0 83724 9929 0 0 78309 10345 0 0 1817 0 0 531 601 642 5091 0 0 3.72772 3.72772 -131.813 -3.72772 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.0080859 0.00725725 63 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 10.33 vpr 54.13 MiB -1 -1 0.11 17340 1 0.01 -1 -1 29788 -1 -1 16 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55432 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 15.4 MiB 0.57 687 54.1 MiB 0.04 0.00 3.10309 -100.143 -3.10309 3.10309 0.56 0.000127738 0.000101985 0.00912549 0.00754691 48 1977 38 6.95648e+06 231611 865456. 2994.66 7.57 0.103877 0.0876154 28354 207349 -1 1593 25 1534 2251 237581 70059 0 0 237581 70059 2251 1805 0 0 7568 6616 0 0 14502 9468 0 0 2251 1891 0 0 105134 25118 0 0 105875 25161 0 0 2251 0 0 717 760 709 6063 0 0 3.28327 3.28327 -119.26 -3.28327 0 0 1.05005e+06 3633.38 0.26 0.05 0.10 -1 -1 0.26 0.0114082 0.0101149 76 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.02 vpr 54.14 MiB -1 -1 0.11 17612 1 0.01 -1 -1 29792 -1 -1 16 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55440 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 15.6 MiB 1.56 974 54.1 MiB 0.05 0.00 4.36076 -138.18 -4.36076 4.36076 0.56 0.00012775 0.00010183 0.0118119 0.00969337 40 3400 33 6.95648e+06 231611 706193. 2443.58 3.17 0.062453 0.0532594 26914 176310 -1 2661 31 2974 4230 639201 191377 0 0 639201 191377 4230 3934 0 0 13745 12304 0 0 29449 17199 0 0 4230 3976 0 0 293291 77503 0 0 294256 76461 0 0 4230 0 0 1256 1442 1484 10924 0 0 5.3871 5.3871 -182.692 -5.3871 0 0 926341. 3205.33 0.23 0.15 0.09 -1 -1 0.23 0.0203937 0.0181892 97 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 5.42 vpr 54.05 MiB -1 -1 0.09 17348 1 0.01 -1 -1 29792 -1 -1 16 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55352 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 15.6 MiB 1.65 896 54.1 MiB 0.05 0.00 3.74289 -121.686 -3.74289 3.74289 0.56 0.000129303 0.000103473 0.0128413 0.0105256 40 2849 23 6.95648e+06 231611 706193. 2443.58 1.60 0.0538056 0.0453577 26914 176310 -1 2375 21 1830 2589 255717 53262 0 0 255717 53262 2589 2340 0 0 8597 7409 0 0 15708 10192 0 0 2589 2367 0 0 112312 15882 0 0 113922 15072 0 0 2589 0 0 759 843 779 6488 0 0 4.50506 4.50506 -159.122 -4.50506 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0105933 0.00949649 88 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 4.88 vpr 54.05 MiB -1 -1 0.10 17680 1 0.01 -1 -1 29800 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55352 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 15.4 MiB 0.79 786 54.1 MiB 0.05 0.00 3.35282 -107.728 -3.35282 3.35282 0.56 0.000122876 9.7663e-05 0.0106603 0.00872796 40 2384 35 6.95648e+06 318465 706193. 2443.58 1.92 0.0555823 0.047196 26914 176310 -1 1954 23 1596 2293 197711 45127 0 0 197711 45127 2293 1895 0 0 7723 6707 0 0 13730 9195 0 0 2293 1955 0 0 86202 12458 0 0 85470 12917 0 0 2293 0 0 697 800 817 6397 0 0 4.06441 4.06441 -133.747 -4.06441 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.0103238 0.00920229 78 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 4.39 vpr 53.79 MiB -1 -1 0.09 17480 1 0.00 -1 -1 29784 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55080 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 15.2 MiB 0.92 774 53.8 MiB 0.04 0.00 3.28678 -93.8223 -3.28678 3.28678 0.56 0.000106903 8.5583e-05 0.00931542 0.00764201 50 1882 20 6.95648e+06 202660 902133. 3121.57 1.31 0.0408346 0.0345424 28642 213929 -1 1650 19 1235 1705 135821 30527 0 0 135821 30527 1705 1432 0 0 5795 5040 0 0 10169 6956 0 0 1705 1548 0 0 56284 7940 0 0 60163 7611 0 0 1705 0 0 470 395 429 4039 0 0 3.59742 3.59742 -114.593 -3.59742 0 0 1.08113e+06 3740.92 0.26 0.03 0.11 -1 -1 0.26 0.00823385 0.00743421 71 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 5.32 vpr 54.63 MiB -1 -1 0.11 17604 1 0.01 -1 -1 29860 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55940 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 15.9 MiB 1.08 938 54.6 MiB 0.06 0.00 3.82007 -126.941 -3.82007 3.82007 0.56 0.000149058 0.00011981 0.0135232 0.0111221 44 2924 31 6.95648e+06 318465 787024. 2723.27 2.04 0.063966 0.0538545 27778 195446 -1 2267 21 1869 2741 203507 45051 0 0 203507 45051 2741 2169 0 0 8782 7923 0 0 15037 10352 0 0 2741 2295 0 0 85246 11171 0 0 88960 11141 0 0 2741 0 0 872 1033 940 8294 0 0 4.34521 4.34521 -154.248 -4.34521 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0123392 0.0110313 93 84 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 4.30 vpr 53.53 MiB -1 -1 0.10 17088 1 0.01 -1 -1 29772 -1 -1 15 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54812 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 14.9 MiB 0.57 507 53.5 MiB 0.04 0.00 2.73795 -80.0594 -2.73795 2.73795 0.56 9.3617e-05 7.4181e-05 0.00805348 0.00656586 38 1688 27 6.95648e+06 217135 678818. 2348.85 1.62 0.0384603 0.0322931 26626 170182 -1 1257 32 1461 2039 131363 33244 0 0 131363 33244 2039 1752 0 0 6373 5496 0 0 11228 7409 0 0 2039 1879 0 0 53021 8395 0 0 56663 8313 0 0 2039 0 0 578 763 655 5395 0 0 3.31877 3.31877 -104.26 -3.31877 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00974263 0.00854431 56 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 4.56 vpr 54.10 MiB -1 -1 0.09 17564 1 0.01 -1 -1 29760 -1 -1 15 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55396 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 15.5 MiB 0.94 926 54.1 MiB 0.05 0.00 4.15207 -123.08 -4.15207 4.15207 0.57 0.000118338 9.4745e-05 0.0126068 0.0102794 62 2048 22 6.95648e+06 217135 1.05005e+06 3633.38 1.32 0.0487864 0.0412463 30946 263737 -1 1573 18 1223 1818 120980 26575 0 0 120980 26575 1818 1331 0 0 5829 4999 0 0 10442 6637 0 0 1818 1528 0 0 49708 6003 0 0 51365 6077 0 0 1818 0 0 595 558 589 5122 0 0 4.27006 4.27006 -134.472 -4.27006 0 0 1.30136e+06 4502.97 0.31 0.03 0.14 -1 -1 0.31 0.00920798 0.00836558 84 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 4.38 vpr 54.02 MiB -1 -1 0.09 17568 1 0.01 -1 -1 29664 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55316 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 15.5 MiB 0.78 984 54.0 MiB 0.04 0.00 2.70675 -96.4586 -2.70675 2.70675 0.57 0.00011859 9.4486e-05 0.0082487 0.00678954 46 2386 34 6.95648e+06 246087 828058. 2865.25 1.47 0.047388 0.0398898 28066 200906 -1 1936 19 1389 2171 164986 34234 0 0 164986 34234 2171 1726 0 0 6914 6065 0 0 11601 7882 0 0 2171 1878 0 0 72274 8380 0 0 69855 8303 0 0 2171 0 0 782 756 870 6633 0 0 3.00887 3.00887 -115.337 -3.00887 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00914162 0.00819413 73 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 5.50 vpr 53.69 MiB -1 -1 0.09 17156 1 0.02 -1 -1 29644 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 15.0 MiB 0.77 658 53.7 MiB 0.04 0.00 3.72678 -98.6793 -3.72678 3.72678 0.56 0.00011326 9.1361e-05 0.00846226 0.00702307 48 2329 28 6.95648e+06 231611 865456. 2994.66 2.57 0.0479869 0.0405746 28354 207349 -1 1706 23 1358 2302 232665 54823 0 0 232665 54823 2302 1851 0 0 8147 7093 0 0 15557 10162 0 0 2302 1986 0 0 100779 16162 0 0 103578 17569 0 0 2302 0 0 944 1226 1057 8415 0 0 4.22272 4.22272 -129.651 -4.22272 0 0 1.05005e+06 3633.38 0.26 0.04 0.10 -1 -1 0.26 0.00920662 0.00822311 68 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 5.65 vpr 53.96 MiB -1 -1 0.10 17516 1 0.01 -1 -1 29748 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55256 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 15.4 MiB 1.97 812 54.0 MiB 0.04 0.00 3.65675 -114.769 -3.65675 3.65675 0.56 0.000119416 9.5359e-05 0.00920149 0.00759436 44 2631 29 6.95648e+06 202660 787024. 2723.27 1.44 0.0476701 0.0401744 27778 195446 -1 1913 22 1495 2021 153370 32988 0 0 153370 32988 2021 1718 0 0 6404 5643 0 0 11003 7363 0 0 2021 1759 0 0 65697 8393 0 0 66224 8112 0 0 2021 0 0 526 556 531 4914 0 0 3.66536 3.66536 -129.872 -3.66536 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0108563 0.00971246 78 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 6.19 vpr 54.03 MiB -1 -1 0.14 17516 1 0.02 -1 -1 29788 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55328 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 15.4 MiB 1.32 793 54.0 MiB 0.04 0.00 2.6818 -93.1302 -2.6818 2.6818 0.56 0.000125274 9.9348e-05 0.00925515 0.0075967 40 2754 47 6.95648e+06 246087 706193. 2443.58 2.67 0.0572332 0.0483804 26914 176310 -1 2178 22 1529 2319 355383 110504 0 0 355383 110504 2319 1951 0 0 7912 6818 0 0 14643 9924 0 0 2319 2026 0 0 170517 45564 0 0 157673 44221 0 0 2319 0 0 790 1144 1025 7816 0 0 3.55387 3.55387 -137.793 -3.55387 0 0 926341. 3205.33 0.22 0.06 0.09 -1 -1 0.22 0.0104262 0.00932786 75 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 4.26 vpr 53.95 MiB -1 -1 0.10 17676 1 0.01 -1 -1 29708 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55244 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 15.5 MiB 0.62 948 53.9 MiB 0.06 0.00 3.54708 -116.454 -3.54708 3.54708 0.56 0.000129016 0.00010298 0.0121076 0.00985007 46 2600 24 6.95648e+06 376368 828058. 2865.25 1.44 0.0507456 0.0424941 28066 200906 -1 2124 24 1568 2238 183926 37207 0 0 183926 37207 2238 1842 0 0 6906 6079 0 0 11287 7531 0 0 2238 1933 0 0 78435 10488 0 0 82822 9334 0 0 2238 0 0 670 770 817 6173 0 0 3.86882 3.86882 -138.629 -3.86882 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0112221 0.00994573 83 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 4.83 vpr 53.80 MiB -1 -1 0.09 17484 1 0.01 -1 -1 29736 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55092 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 15.2 MiB 0.82 667 53.8 MiB 0.04 0.00 3.76413 -96.7364 -3.76413 3.76413 0.57 0.00011077 8.7984e-05 0.00903465 0.00737032 46 2318 43 6.95648e+06 318465 828058. 2865.25 1.85 0.0474309 0.0398781 28066 200906 -1 1723 22 1247 1925 154980 36310 0 0 154980 36310 1925 1617 0 0 5955 5140 0 0 10442 6691 0 0 1925 1726 0 0 65200 10483 0 0 69533 10653 0 0 1925 0 0 678 864 665 6072 0 0 3.83602 3.83602 -120.792 -3.83602 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00906746 0.00811198 69 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 5.86 vpr 53.95 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29820 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55240 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 15.4 MiB 1.99 772 53.9 MiB 0.03 0.00 3.53127 -107.031 -3.53127 3.53127 0.56 0.000117063 9.3744e-05 0.00774167 0.00643881 40 2694 49 6.95648e+06 188184 706193. 2443.58 1.75 0.0504421 0.0424589 26914 176310 -1 2068 24 2032 2693 269810 58593 0 0 269810 58593 2693 2363 0 0 9057 7862 0 0 16529 10719 0 0 2693 2419 0 0 112813 18564 0 0 126025 16666 0 0 2693 0 0 661 787 752 6231 0 0 4.06362 4.06362 -138.602 -4.06362 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0102689 0.00919161 79 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 5.83 vpr 54.05 MiB -1 -1 0.11 17604 1 0.01 -1 -1 29792 -1 -1 15 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55352 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 15.6 MiB 1.07 895 54.1 MiB 0.05 0.00 3.62077 -114.441 -3.62077 3.62077 0.57 0.000127015 0.000100705 0.012243 0.0100308 48 2649 30 6.95648e+06 217135 865456. 2994.66 2.52 0.0569085 0.0481805 28354 207349 -1 2109 23 1738 2694 259664 55283 0 0 259664 55283 2694 2356 0 0 9077 8025 0 0 16424 10809 0 0 2694 2512 0 0 111830 15208 0 0 116945 16373 0 0 2694 0 0 956 1139 1100 8339 0 0 4.1683 4.1683 -138.358 -4.1683 0 0 1.05005e+06 3633.38 0.26 0.05 0.11 -1 -1 0.26 0.0108106 0.00962303 85 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 14.39 vpr 54.09 MiB -1 -1 0.11 17728 1 0.00 -1 -1 29668 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55388 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 15.7 MiB 1.79 922 54.1 MiB 0.05 0.00 3.495 -112.016 -3.495 3.495 0.56 0.000130312 0.00010402 0.0114487 0.00940644 38 3229 50 6.95648e+06 188184 678818. 2348.85 10.41 0.106523 0.0899445 26626 170182 -1 2402 23 1784 2954 278817 55678 0 0 278817 55678 2954 2493 0 0 8840 7892 0 0 15785 9899 0 0 2954 2578 0 0 127515 16208 0 0 120769 16608 0 0 2954 0 0 1170 1249 1338 9143 0 0 4.14472 4.14472 -143.304 -4.14472 0 0 902133. 3121.57 0.22 0.05 0.09 -1 -1 0.22 0.0110952 0.00988746 76 74 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.15 vpr 53.46 MiB -1 -1 0.09 17304 1 0.01 -1 -1 29660 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 14.8 MiB 0.18 595 53.5 MiB 0.04 0.00 2.50468 -76.3166 -2.50468 2.50468 0.55 9.9904e-05 7.9139e-05 0.0080695 0.00661472 40 1594 26 6.95648e+06 260562 706193. 2443.58 4.86 0.0656722 0.0553417 26914 176310 -1 1344 26 1076 1584 198258 75036 0 0 198258 75036 1584 1241 0 0 5336 4621 0 0 11438 6879 0 0 1584 1372 0 0 91677 31087 0 0 86639 29836 0 0 1584 0 0 508 550 606 4614 0 0 2.99912 2.99912 -97.503 -2.99912 0 0 926341. 3205.33 0.23 0.04 0.09 -1 -1 0.23 0.00822641 0.00727361 57 20 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 4.99 vpr 53.88 MiB -1 -1 0.09 17452 1 0.00 -1 -1 29724 -1 -1 12 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55176 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 15.4 MiB 1.06 717 53.9 MiB 0.04 0.00 3.12585 -110.981 -3.12585 3.12585 0.56 0.000113399 8.9571e-05 0.00918475 0.00753878 44 2658 38 6.95648e+06 173708 787024. 2723.27 1.79 0.0488469 0.0410387 27778 195446 -1 1915 21 1553 2199 213317 43949 0 0 213317 43949 2199 1915 0 0 6652 5980 0 0 11754 7678 0 0 2199 1953 0 0 106219 11408 0 0 84294 15015 0 0 2199 0 0 646 647 588 5372 0 0 3.57622 3.57622 -137.547 -3.57622 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.00937881 0.00838089 76 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 5.90 vpr 54.28 MiB -1 -1 0.10 17740 1 0.02 -1 -1 29764 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55580 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 15.7 MiB 1.43 1163 54.3 MiB 0.06 0.00 4.09082 -131.665 -4.09082 4.09082 0.55 0.00013883 0.000111998 0.013152 0.0108764 46 3361 24 6.95648e+06 231611 828058. 2865.25 2.23 0.0579567 0.0492403 28066 200906 -1 2593 21 2074 3087 267532 53668 0 0 267532 53668 3087 2400 0 0 9423 8240 0 0 16787 10582 0 0 3087 2549 0 0 118747 15494 0 0 116401 14403 0 0 3087 0 0 1013 1034 817 8369 0 0 4.63216 4.63216 -159.587 -4.63216 0 0 1.01997e+06 3529.29 0.25 0.05 0.10 -1 -1 0.25 0.0114153 0.0102776 97 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 10.09 vpr 53.96 MiB -1 -1 0.11 17488 1 0.01 -1 -1 29760 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55256 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 15.4 MiB 0.65 737 54.0 MiB 0.05 0.00 3.65681 -116.442 -3.65681 3.65681 0.56 0.000120525 9.4971e-05 0.0108304 0.00885214 40 2639 31 6.95648e+06 246087 706193. 2443.58 7.29 0.100464 0.0854077 26914 176310 -1 1927 21 1457 1952 192489 45485 0 0 192489 45485 1952 1703 0 0 6939 6020 0 0 12325 8843 0 0 1952 1774 0 0 82558 13842 0 0 86763 13303 0 0 1952 0 0 495 516 656 5009 0 0 3.61816 3.61816 -140.196 -3.61816 0 0 926341. 3205.33 0.23 0.04 0.09 -1 -1 0.23 0.00968579 0.00867843 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 4.34 vpr 53.72 MiB -1 -1 0.12 17564 1 0.01 -1 -1 29712 -1 -1 20 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55008 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 15.2 MiB 0.40 600 53.7 MiB 0.04 0.00 2.4249 -80.7573 -2.4249 2.4249 0.56 9.9461e-05 7.9501e-05 0.00751287 0.00614484 38 1893 40 6.95648e+06 289514 678818. 2348.85 1.86 0.0429485 0.0361038 26626 170182 -1 1274 24 1095 1713 120604 28895 0 0 120604 28895 1713 1325 0 0 5589 4847 0 0 9753 6682 0 0 1713 1480 0 0 51649 7515 0 0 50187 7046 0 0 1713 0 0 618 699 794 5662 0 0 3.30942 3.30942 -109.655 -3.30942 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00856839 0.00759496 62 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 6.17 vpr 54.52 MiB -1 -1 0.10 17608 1 0.01 -1 -1 29936 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55832 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 15.9 MiB 1.32 1146 54.5 MiB 0.06 0.00 4.96239 -146.728 -4.96239 4.96239 0.56 0.000148438 0.000120179 0.015046 0.0124585 46 2817 46 6.95648e+06 217135 828058. 2865.25 2.63 0.0698671 0.0591148 28066 200906 -1 2328 25 2101 3034 221383 50396 0 0 221383 50396 3034 2499 0 0 9427 8462 0 0 16499 10657 0 0 3034 2628 0 0 93316 14767 0 0 96073 11383 0 0 3034 0 0 933 966 941 8236 0 0 5.10115 5.10115 -170.375 -5.10115 0 0 1.01997e+06 3529.29 0.25 0.05 0.10 -1 -1 0.25 0.0132146 0.0117987 95 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 4.40 vpr 53.95 MiB -1 -1 0.11 17460 1 0.01 -1 -1 29780 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55248 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 15.4 MiB 0.89 811 54.0 MiB 0.05 0.00 3.8351 -110.429 -3.8351 3.8351 0.56 0.000123791 0.000100222 0.0109384 0.00899118 38 2158 32 6.95648e+06 332941 678818. 2348.85 1.41 0.0505905 0.042701 26626 170182 -1 1821 22 1457 2162 156923 33690 0 0 156923 33690 2162 1602 0 0 6770 5897 0 0 11081 7438 0 0 2162 1728 0 0 68323 8583 0 0 66425 8442 0 0 2162 0 0 705 800 802 6887 0 0 4.00242 4.00242 -134.537 -4.00242 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00967524 0.00862618 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 3.80 vpr 53.36 MiB -1 -1 0.09 17084 1 0.01 -1 -1 29572 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54644 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 14.8 MiB 0.19 535 53.4 MiB 0.03 0.00 2.4091 -75.5035 -2.4091 2.4091 0.58 9.0878e-05 7.2e-05 0.0065825 0.00541053 40 1542 31 6.95648e+06 188184 706193. 2443.58 1.51 0.0363547 0.0307619 26914 176310 -1 1368 27 1222 1836 191127 67663 0 0 191127 67663 1836 1480 0 0 6405 5769 0 0 12789 8159 0 0 1836 1564 0 0 89137 25655 0 0 79124 25036 0 0 1836 0 0 614 563 806 5529 0 0 3.08992 3.08992 -100.195 -3.08992 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.00828343 0.00735235 51 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 5.27 vpr 54.00 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29732 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55300 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 15.4 MiB 0.39 1072 54.0 MiB 0.06 0.00 4.05287 -111.696 -4.05287 4.05287 0.56 0.000127586 0.000101911 0.011811 0.00962535 40 2883 32 6.95648e+06 347416 706193. 2443.58 2.70 0.0554839 0.0467766 26914 176310 -1 2468 24 1742 3091 309069 59327 0 0 309069 59327 3091 2210 0 0 10110 8676 0 0 19299 11789 0 0 3091 2414 0 0 136558 17428 0 0 136920 16810 0 0 3091 0 0 1349 2400 2281 14985 0 0 4.99986 4.99986 -151.369 -4.99986 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0107317 0.0095389 80 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 4.18 vpr 53.31 MiB -1 -1 0.09 16988 1 0.00 -1 -1 29628 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54592 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 14.7 MiB 0.79 516 53.3 MiB 0.03 0.00 2.4781 -80.6966 -2.4781 2.4781 0.55 9.3431e-05 7.3915e-05 0.00733567 0.0060053 44 1548 25 6.95648e+06 202660 787024. 2723.27 1.28 0.0359894 0.0302652 27778 195446 -1 1098 20 1133 1561 89862 23400 0 0 89862 23400 1561 1231 0 0 4954 4357 0 0 8303 5751 0 0 1561 1298 0 0 36771 5005 0 0 36712 5758 0 0 1561 0 0 428 451 329 3759 0 0 2.88957 2.88957 -101.974 -2.88957 0 0 997811. 3452.63 0.25 0.02 0.10 -1 -1 0.25 0.00732932 0.00656571 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 4.57 vpr 53.76 MiB -1 -1 0.12 17348 1 0.01 -1 -1 29736 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55052 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 15.2 MiB 0.65 591 53.8 MiB 0.04 0.00 2.93563 -88.6218 -2.93563 2.93563 0.57 9.8596e-05 7.8424e-05 0.00837596 0.00684276 38 2039 28 6.95648e+06 246087 678818. 2348.85 1.80 0.0409163 0.0343891 26626 170182 -1 1542 27 1388 1992 160225 34858 0 0 160225 34858 1992 1646 0 0 6082 5346 0 0 10720 6688 0 0 1992 1721 0 0 69553 9748 0 0 69886 9709 0 0 1992 0 0 604 718 805 5969 0 0 3.15127 3.15127 -108.033 -3.15127 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.00907899 0.00801819 60 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 4.97 vpr 54.10 MiB -1 -1 0.10 17352 1 0.01 -1 -1 29780 -1 -1 16 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55396 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 15.5 MiB 1.08 797 54.1 MiB 0.05 0.00 3.04378 -95.0414 -3.04378 3.04378 0.56 0.000120876 9.6212e-05 0.0120893 0.00990328 46 2575 26 6.95648e+06 231611 828058. 2865.25 1.67 0.0517689 0.0436434 28066 200906 -1 2016 23 1790 2653 231311 48830 0 0 231311 48830 2653 2266 0 0 8116 7254 0 0 14869 9179 0 0 2653 2335 0 0 96791 14634 0 0 106229 13162 0 0 2653 0 0 863 860 664 6766 0 0 3.76976 3.76976 -120.288 -3.76976 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0106954 0.00957853 80 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 4.72 vpr 54.00 MiB -1 -1 0.08 17344 1 0.01 -1 -1 29712 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55300 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 15.4 MiB 1.01 735 54.0 MiB 0.05 0.00 3.78498 -109.488 -3.78498 3.78498 0.57 0.000122953 9.7696e-05 0.0117023 0.00955889 40 2296 35 6.95648e+06 231611 706193. 2443.58 1.52 0.0525364 0.0440852 26914 176310 -1 1882 22 1568 2199 203432 45503 0 0 203432 45503 2199 1898 0 0 7574 6484 0 0 13383 8975 0 0 2199 1972 0 0 88215 12908 0 0 89862 13266 0 0 2199 0 0 631 688 611 5615 0 0 4.31542 4.31542 -144.133 -4.31542 0 0 926341. 3205.33 0.23 0.04 0.09 -1 -1 0.23 0.0102424 0.00913735 72 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 5.43 vpr 53.99 MiB -1 -1 0.10 17564 1 0.01 -1 -1 29752 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55288 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 15.4 MiB 1.46 693 54.0 MiB 0.04 0.00 3.69889 -112.465 -3.69889 3.69889 0.61 0.000120643 9.582e-05 0.0111279 0.00912013 58 1835 21 6.95648e+06 202660 997811. 3452.63 1.66 0.0480794 0.0405868 30370 251734 -1 1413 19 1126 1767 127922 30143 0 0 127922 30143 1767 1417 0 0 5920 5127 0 0 10192 7085 0 0 1767 1523 0 0 52365 7021 0 0 55911 7970 0 0 1767 0 0 641 662 680 5416 0 0 3.78146 3.78146 -123.857 -3.78146 0 0 1.25153e+06 4330.55 0.30 0.03 0.13 -1 -1 0.30 0.00949442 0.00856305 73 48 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 6.01 vpr 53.61 MiB -1 -1 0.13 17268 1 0.01 -1 -1 29644 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54896 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 15.1 MiB 2.26 697 53.6 MiB 0.04 0.00 3.30448 -105.071 -3.30448 3.30448 0.56 0.00010283 8.3244e-05 0.00784792 0.00652486 40 2051 38 6.95648e+06 144757 706193. 2443.58 1.57 0.0439625 0.0371049 26914 176310 -1 1840 22 1313 1760 214226 51197 0 0 214226 51197 1760 1623 0 0 6227 5440 0 0 11654 7466 0 0 1760 1652 0 0 95584 18481 0 0 97241 16535 0 0 1760 0 0 447 532 475 4122 0 0 3.53352 3.53352 -124.09 -3.53352 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.00832088 0.00743288 61 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 5.73 vpr 53.74 MiB -1 -1 0.10 17492 1 0.01 -1 -1 29804 -1 -1 12 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55032 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 15.1 MiB 1.50 681 53.7 MiB 0.03 0.00 3.03002 -96.7398 -3.03002 3.03002 0.56 0.000108608 8.6473e-05 0.00780376 0.00642049 46 1956 27 6.95648e+06 173708 828058. 2865.25 2.07 0.0450101 0.0380551 28066 200906 -1 1363 20 1158 1701 116624 27405 0 0 116624 27405 1701 1490 0 0 5329 4756 0 0 8444 5806 0 0 1701 1518 0 0 48073 7419 0 0 51376 6416 0 0 1701 0 0 543 285 534 4149 0 0 3.45216 3.45216 -118.228 -3.45216 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00876456 0.00787836 68 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.21 vpr 53.90 MiB -1 -1 0.11 17560 1 0.01 -1 -1 29728 -1 -1 22 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55192 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 15.5 MiB 0.60 704 53.9 MiB 0.07 0.00 2.4971 -77.8648 -2.4971 2.4971 0.67 0.000341489 0.000271286 0.0166605 0.0137769 40 2060 34 6.95648e+06 318465 706193. 2443.58 5.34 0.0949873 0.0796742 26914 176310 -1 1763 20 1164 1821 179501 42378 0 0 179501 42378 1821 1461 0 0 6553 5620 0 0 11822 8315 0 0 1821 1550 0 0 78409 12354 0 0 79075 13078 0 0 1821 0 0 657 832 907 6341 0 0 3.34687 3.34687 -105.075 -3.34687 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.00886257 0.00792949 71 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 4.34 vpr 53.63 MiB -1 -1 0.12 17680 1 0.01 -1 -1 29788 -1 -1 28 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54920 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 15.1 MiB 0.39 872 53.6 MiB 0.05 0.00 3.07194 -87.3504 -3.07194 3.07194 0.57 0.000114245 9.3388e-05 0.010235 0.00831601 36 2153 20 6.95648e+06 405319 648988. 2245.63 1.83 0.0425257 0.035744 26050 158493 -1 1832 22 1257 1987 161411 33209 0 0 161411 33209 1987 1437 0 0 6536 5610 0 0 11116 7552 0 0 1987 1555 0 0 70569 8606 0 0 69216 8449 0 0 1987 0 0 730 976 1054 7365 0 0 3.69166 3.69166 -115.534 -3.69166 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00814947 0.0072532 72 20 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 10.63 vpr 53.89 MiB -1 -1 0.09 17564 1 0.01 -1 -1 29776 -1 -1 12 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55180 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 15.2 MiB 0.56 533 53.9 MiB 0.04 0.00 2.92163 -90.3796 -2.92163 2.92163 0.56 0.000106346 8.4265e-05 0.00938024 0.00765011 42 2109 36 6.95648e+06 173708 744469. 2576.02 7.88 0.0902553 0.0762996 27202 183097 -1 1497 34 1872 2574 413101 183433 0 0 413101 183433 2574 2224 0 0 8198 7093 0 0 16307 10226 0 0 2574 2308 0 0 192400 81188 0 0 191048 80394 0 0 2574 0 0 702 779 792 6549 0 0 2.92557 2.92557 -114.437 -2.92557 0 0 949917. 3286.91 0.23 0.08 0.09 -1 -1 0.23 0.0114986 0.0100704 60 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 4.92 vpr 53.93 MiB -1 -1 0.10 17392 1 0.01 -1 -1 29700 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55228 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 15.5 MiB 1.16 670 53.9 MiB 0.04 0.00 2.80395 -99.113 -2.80395 2.80395 0.56 0.000113257 8.966e-05 0.00958606 0.00783332 50 2343 47 6.95648e+06 159232 902133. 3121.57 1.56 0.0512297 0.0431643 28642 213929 -1 1828 20 1551 2225 185960 45504 0 0 185960 45504 2225 1802 0 0 7392 6545 0 0 13501 8766 0 0 2225 1829 0 0 76450 13715 0 0 84167 12847 0 0 2225 0 0 674 683 396 5326 0 0 3.49016 3.49016 -126.573 -3.49016 0 0 1.08113e+06 3740.92 0.26 0.04 0.11 -1 -1 0.26 0.00905776 0.0081173 72 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 4.13 vpr 53.71 MiB -1 -1 0.14 17312 1 0.01 -1 -1 29640 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54996 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 15.1 MiB 0.35 708 53.7 MiB 0.05 0.00 3.86008 -100.949 -3.86008 3.86008 0.56 0.00011613 8.9125e-05 0.00919667 0.00741077 48 1910 21 6.95648e+06 347416 865456. 2994.66 1.55 0.0437227 0.0369694 28354 207349 -1 1618 20 1079 1742 137431 32428 0 0 137431 32428 1742 1393 0 0 5998 4993 0 0 10889 7266 0 0 1742 1511 0 0 58493 8587 0 0 58567 8678 0 0 1742 0 0 663 753 716 5712 0 0 4.04847 4.04847 -117.76 -4.04847 0 0 1.05005e+06 3633.38 0.26 0.03 0.10 -1 -1 0.26 0.00864113 0.00778715 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 5.17 vpr 53.88 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29676 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55168 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 15.3 MiB 1.26 1014 53.9 MiB 0.05 0.00 3.69477 -123.999 -3.69477 3.69477 0.56 0.00012204 9.7191e-05 0.01132 0.00930317 48 2919 31 6.95648e+06 188184 865456. 2994.66 1.70 0.0507796 0.0428137 28354 207349 -1 2384 20 1651 2383 218270 44458 0 0 218270 44458 2383 1981 0 0 7984 7049 0 0 14072 9407 0 0 2383 2070 0 0 95453 11969 0 0 95995 11982 0 0 2383 0 0 732 703 715 5997 0 0 4.25156 4.25156 -151.272 -4.25156 0 0 1.05005e+06 3633.38 0.26 0.04 0.11 -1 -1 0.26 0.00996777 0.00899633 82 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 5.27 vpr 54.13 MiB -1 -1 0.09 17476 1 0.02 -1 -1 29704 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55432 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 15.7 MiB 0.99 832 54.1 MiB 0.06 0.00 3.62123 -110.719 -3.62123 3.62123 0.56 0.000128907 0.000102373 0.0123753 0.0100544 44 2668 47 6.95648e+06 347416 787024. 2723.27 2.09 0.0620848 0.0524705 27778 195446 -1 2017 24 1697 2788 264945 55162 0 0 264945 55162 2788 2195 0 0 8503 7579 0 0 17205 10255 0 0 2788 2305 0 0 110302 17473 0 0 123359 15355 0 0 2788 0 0 1091 1326 1211 9596 0 0 3.87666 3.87666 -139.562 -3.87666 0 0 997811. 3452.63 0.25 0.05 0.10 -1 -1 0.25 0.0111027 0.00984869 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 6.06 vpr 54.02 MiB -1 -1 0.11 17656 1 0.01 -1 -1 29740 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55312 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 15.6 MiB 0.72 888 54.0 MiB 0.04 0.00 3.31672 -108.057 -3.31672 3.31672 0.56 0.00013131 0.000103816 0.00842109 0.00692492 46 2885 34 6.95648e+06 332941 828058. 2865.25 3.17 0.0550351 0.046721 28066 200906 -1 2136 20 1665 2704 248110 53329 0 0 248110 53329 2704 2303 0 0 8260 7373 0 0 13754 9029 0 0 2704 2379 0 0 102438 17008 0 0 118250 15237 0 0 2704 0 0 1039 1208 896 8783 0 0 4.09166 4.09166 -142.091 -4.09166 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0101535 0.00908039 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 4.24 vpr 53.53 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29832 -1 -1 12 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54812 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 15.1 MiB 0.61 619 53.5 MiB 0.03 0.00 2.97316 -86.1705 -2.97316 2.97316 0.56 9.8517e-05 7.8023e-05 0.00787176 0.00646519 38 2040 23 6.95648e+06 173708 678818. 2348.85 1.52 0.0390031 0.0329115 26626 170182 -1 1522 22 1202 1873 134205 29343 0 0 134205 29343 1873 1576 0 0 5626 4892 0 0 9283 6058 0 0 1873 1715 0 0 56986 7497 0 0 58564 7605 0 0 1873 0 0 671 813 716 5559 0 0 3.31047 3.31047 -112.597 -3.31047 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00798783 0.00713241 57 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 4.29 vpr 53.92 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29808 -1 -1 14 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55212 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 15.3 MiB 0.67 624 53.9 MiB 0.04 0.00 3.71763 -109.951 -3.71763 3.71763 0.57 0.000142534 0.000101221 0.00953008 0.00787117 48 1875 25 6.95648e+06 202660 865456. 2994.66 1.35 0.0535217 0.0451675 28354 207349 -1 1550 23 1719 2329 181014 45925 0 0 181014 45925 2329 2055 0 0 7854 6914 0 0 13529 9382 0 0 2329 2120 0 0 73596 12871 0 0 81377 12583 0 0 2329 0 0 610 735 597 5653 0 0 4.40727 4.40727 -138.148 -4.40727 0 0 1.05005e+06 3633.38 0.28 0.04 0.11 -1 -1 0.28 0.0106521 0.00949206 76 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 5.18 vpr 53.88 MiB -1 -1 0.15 17344 1 0.02 -1 -1 29752 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55172 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 15.3 MiB 1.09 831 53.9 MiB 0.05 0.00 4.0079 -118.65 -4.0079 4.0079 0.56 0.000118687 9.4351e-05 0.0108065 0.00885401 48 2485 34 6.95648e+06 202660 865456. 2994.66 1.81 0.0518416 0.0436781 28354 207349 -1 2020 23 1792 2728 237768 53570 0 0 237768 53570 2728 2342 0 0 8985 7959 0 0 17643 11042 0 0 2728 2459 0 0 95978 15338 0 0 109706 14430 0 0 2728 0 0 936 1208 1373 9817 0 0 4.17991 4.17991 -142.159 -4.17991 0 0 1.05005e+06 3633.38 0.26 0.05 0.11 -1 -1 0.26 0.0102745 0.00920323 80 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 5.67 vpr 53.97 MiB -1 -1 0.11 17496 1 0.01 -1 -1 29824 -1 -1 14 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55268 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 15.4 MiB 1.59 789 54.0 MiB 0.05 0.00 4.65305 -124.989 -4.65305 4.65305 0.56 0.000118965 9.492e-05 0.0106871 0.0088532 46 2382 23 6.95648e+06 202660 828058. 2865.25 1.88 0.0506244 0.0430416 28066 200906 -1 1738 24 1249 1877 143234 32202 0 0 143234 32202 1877 1434 0 0 6048 5356 0 0 10251 6967 0 0 1877 1541 0 0 59022 8984 0 0 64159 7920 0 0 1877 0 0 628 569 687 5331 0 0 4.68631 4.68631 -143.556 -4.68631 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.0106672 0.00954011 79 43 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 11.43 vpr 53.94 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29748 -1 -1 21 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55232 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 15.3 MiB 1.18 915 53.9 MiB 0.05 0.00 3.74802 -120.904 -3.74802 3.74802 0.56 0.00012535 0.000100579 0.0113563 0.00929326 38 2490 31 6.95648e+06 303989 678818. 2348.85 8.16 0.100505 0.0846809 26626 170182 -1 2048 21 1347 2026 176205 34549 0 0 176205 34549 2026 1664 0 0 6199 5513 0 0 10129 6735 0 0 2026 1763 0 0 78462 9312 0 0 77363 9562 0 0 2026 0 0 679 758 875 6090 0 0 3.58771 3.58771 -133.779 -3.58771 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0100388 0.00891596 74 78 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 4.86 vpr 53.98 MiB -1 -1 0.10 17484 1 0.02 -1 -1 29656 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55272 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 15.4 MiB 0.80 741 54.0 MiB 0.03 0.00 3.75683 -113.635 -3.75683 3.75683 0.56 0.000124781 9.9784e-05 0.0082065 0.00682675 44 2530 32 6.95648e+06 188184 787024. 2723.27 1.94 0.0507552 0.0429564 27778 195446 -1 1808 21 1585 2664 201252 43920 0 0 201252 43920 2664 2057 0 0 7924 6918 0 0 14031 8980 0 0 2664 2147 0 0 89626 11197 0 0 84343 12621 0 0 2664 0 0 1079 1034 979 8140 0 0 4.06946 4.06946 -137.548 -4.06946 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0101095 0.00907057 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 5.56 vpr 53.86 MiB -1 -1 0.11 17584 1 0.01 -1 -1 29800 -1 -1 16 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55152 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 15.3 MiB 0.87 736 53.9 MiB 0.04 0.00 3.52027 -107.674 -3.52027 3.52027 0.55 0.000121723 9.6989e-05 0.0092364 0.00761511 36 2861 37 6.95648e+06 231611 648988. 2245.63 2.59 0.0550271 0.0464061 26050 158493 -1 2119 21 1560 2330 236702 50104 0 0 236702 50104 2330 1946 0 0 7538 6661 0 0 12857 8791 0 0 2330 2080 0 0 109953 15383 0 0 101694 15243 0 0 2330 0 0 770 901 867 6628 0 0 3.94732 3.94732 -135.777 -3.94732 0 0 828058. 2865.25 0.21 0.04 0.09 -1 -1 0.21 0.0100097 0.00892889 73 79 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 4.44 vpr 53.42 MiB -1 -1 0.09 17052 1 0.01 -1 -1 29768 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 14.8 MiB 0.68 589 53.4 MiB 0.03 0.00 2.91658 -85.9297 -2.91658 2.91658 0.56 9.4094e-05 7.4938e-05 0.00701043 0.00576369 40 1558 35 6.95648e+06 144757 706193. 2443.58 1.66 0.0396159 0.0335331 26914 176310 -1 1271 20 948 1379 115011 28308 0 0 115011 28308 1379 1223 0 0 4875 4234 0 0 8793 5923 0 0 1379 1250 0 0 47375 8140 0 0 51210 7538 0 0 1379 0 0 431 304 489 3543 0 0 3.13067 3.13067 -108.133 -3.13067 0 0 926341. 3205.33 0.24 0.03 0.09 -1 -1 0.24 0.00770396 0.00693741 53 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 7.37 vpr 54.02 MiB -1 -1 0.10 17492 1 0.01 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55312 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 15.4 MiB 2.35 778 54.0 MiB 0.05 0.00 4.03466 -110.618 -4.03466 4.03466 0.57 0.000127051 0.000101145 0.0108223 0.00879638 46 2485 47 6.95648e+06 332941 828058. 2865.25 2.82 0.0615645 0.0521142 28066 200906 -1 1859 21 1345 2150 196169 41490 0 0 196169 41490 2150 1665 0 0 6652 5836 0 0 11738 7549 0 0 2150 1753 0 0 85205 12135 0 0 88274 12552 0 0 2150 0 0 805 943 953 7149 0 0 3.92886 3.92886 -134.978 -3.92886 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.00997244 0.00889108 76 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.15 vpr 54.17 MiB -1 -1 0.10 17460 1 0.02 -1 -1 29772 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55472 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 15.7 MiB 0.46 698 54.2 MiB 0.03 0.00 3.62238 -115.71 -3.62238 3.62238 0.56 0.000132936 0.000105859 0.00851022 0.00708433 46 2703 39 6.95648e+06 188184 828058. 2865.25 2.48 0.0591934 0.0502351 28066 200906 -1 1896 25 2042 2945 225039 54801 0 0 225039 54801 2945 2542 0 0 8813 7865 0 0 15199 9745 0 0 2945 2607 0 0 93699 16121 0 0 101438 15921 0 0 2945 0 0 903 909 1011 7980 0 0 4.29196 4.29196 -151.9 -4.29196 0 0 1.01997e+06 3529.29 0.25 0.05 0.14 -1 -1 0.25 0.0123206 0.0109655 78 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 5.03 vpr 53.63 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29720 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 15.0 MiB 1.13 696 53.6 MiB 0.04 0.00 3.40598 -99.7982 -3.40598 3.40598 0.56 9.8475e-05 7.8403e-05 0.00945432 0.00772071 38 2592 32 6.95648e+06 159232 678818. 2348.85 1.79 0.0432135 0.0365063 26626 170182 -1 1704 22 1289 1657 140619 30958 0 0 140619 30958 1657 1522 0 0 5224 4602 0 0 9070 5950 0 0 1657 1537 0 0 60869 8506 0 0 62142 8841 0 0 1657 0 0 368 382 396 3587 0 0 3.52322 3.52322 -120.515 -3.52322 0 0 902133. 3121.57 0.24 0.03 0.08 -1 -1 0.24 0.00827427 0.00739957 68 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.54 vpr 53.48 MiB -1 -1 0.10 17080 1 0.01 -1 -1 29680 -1 -1 13 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 14.9 MiB 1.00 514 53.5 MiB 0.03 0.00 2.78823 -83.9509 -2.78823 2.78823 0.57 9.4433e-05 7.4788e-05 0.00748376 0.00613684 44 1671 21 6.95648e+06 188184 787024. 2723.27 1.33 0.0368081 0.0310694 27778 195446 -1 1225 21 1084 1529 109833 26648 0 0 109833 26648 1529 1228 0 0 5029 4481 0 0 8817 6121 0 0 1529 1315 0 0 46172 6338 0 0 46757 7165 0 0 1529 0 0 445 445 355 3828 0 0 2.83642 2.83642 -104.562 -2.83642 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.00750714 0.00672403 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 4.86 vpr 54.11 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29748 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55404 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 15.5 MiB 1.13 891 54.1 MiB 0.06 0.00 3.75407 -125.263 -3.75407 3.75407 0.56 0.000125722 0.000101557 0.012491 0.0101914 46 2592 23 6.95648e+06 217135 828058. 2865.25 1.54 0.0499218 0.0420083 28066 200906 -1 2059 23 1920 2529 209636 44691 0 0 209636 44691 2529 2167 0 0 7835 7046 0 0 13641 8795 0 0 2529 2242 0 0 90189 12387 0 0 92913 12054 0 0 2529 0 0 609 509 587 5486 0 0 4.25921 4.25921 -150.551 -4.25921 0 0 1.01997e+06 3529.29 0.27 0.05 0.10 -1 -1 0.27 0.0110781 0.00995458 85 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 5.35 vpr 54.05 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29764 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55352 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 15.5 MiB 0.79 948 54.1 MiB 0.05 0.00 4.05782 -123.881 -4.05782 4.05782 0.56 0.000121585 9.7158e-05 0.00966074 0.00801047 40 3129 47 6.95648e+06 202660 706193. 2443.58 2.39 0.0612451 0.0519698 26914 176310 -1 2283 22 1805 2507 240987 52267 0 0 240987 52267 2507 2187 0 0 8601 7551 0 0 15584 10471 0 0 2507 2208 0 0 101247 15490 0 0 110541 14360 0 0 2507 0 0 702 859 723 6683 0 0 4.97326 4.97326 -158.84 -4.97326 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.0102259 0.00915889 82 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 4.91 vpr 54.05 MiB -1 -1 0.09 17164 1 0.01 -1 -1 29748 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55344 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 15.4 MiB 0.38 877 54.0 MiB 0.06 0.00 4.04672 -117.123 -4.04672 4.04672 0.55 0.000129223 0.000104346 0.0134308 0.0110848 46 2511 31 6.95648e+06 246087 828058. 2865.25 2.38 0.0630661 0.0535405 28066 200906 -1 1844 20 1454 2462 160547 40002 0 0 160547 40002 2462 1931 0 0 8136 7195 0 0 13113 9238 0 0 2462 2049 0 0 66828 9903 0 0 67546 9686 0 0 2462 0 0 1008 1271 1347 9290 0 0 4.43176 4.43176 -142.055 -4.43176 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0102771 0.00926843 83 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.23 vpr 53.98 MiB -1 -1 0.10 17460 1 0.01 -1 -1 29748 -1 -1 21 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55272 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 15.2 MiB 0.63 713 54.0 MiB 0.04 0.00 2.79923 -80.772 -2.79923 2.79923 0.56 0.00011065 8.8488e-05 0.00838494 0.00688952 38 2493 48 6.95648e+06 303989 678818. 2348.85 2.54 0.0521094 0.0441033 26626 170182 -1 1741 20 1489 2372 179694 38230 0 0 179694 38230 2372 1897 0 0 7067 6199 0 0 11159 7466 0 0 2372 2067 0 0 76487 10266 0 0 80237 10335 0 0 2372 0 0 883 1012 1138 7631 0 0 2.97097 2.97097 -103.888 -2.97097 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.00861455 0.00770632 69 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 3.66 vpr 53.39 MiB -1 -1 0.15 17300 1 0.01 -1 -1 29736 -1 -1 14 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54676 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 14.8 MiB 0.37 413 53.4 MiB 0.03 0.00 2.4231 -71.4569 -2.4231 2.4231 0.60 9.1244e-05 7.251e-05 0.00711896 0.00583788 40 1313 27 6.95648e+06 202660 706193. 2443.58 1.08 0.0366659 0.0308093 26914 176310 -1 1051 27 1136 1442 204038 87354 0 0 204038 87354 1442 1327 0 0 5157 4433 0 0 9300 6456 0 0 1442 1344 0 0 99500 37571 0 0 87197 36223 0 0 1442 0 0 306 282 356 3068 0 0 3.24222 3.24222 -97.542 -3.24222 0 0 926341. 3205.33 0.23 0.05 0.09 -1 -1 0.23 0.00839037 0.00740684 54 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 5.03 vpr 54.46 MiB -1 -1 0.13 17848 1 0.01 -1 -1 29908 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55764 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 15.9 MiB 0.90 945 54.5 MiB 0.06 0.00 3.20225 -108.056 -3.20225 3.20225 0.56 0.000147067 0.000118982 0.0151372 0.0125178 56 2910 37 6.95648e+06 231611 973134. 3367.25 1.82 0.063543 0.0534989 29794 239141 -1 2200 21 1867 2966 221895 53535 0 0 221895 53535 2966 2217 0 0 9759 8526 0 0 18069 11662 0 0 2966 2639 0 0 91752 14920 0 0 96383 13571 0 0 2966 0 0 1099 1258 1162 9321 0 0 3.93436 3.93436 -134.868 -3.93436 0 0 1.19926e+06 4149.71 0.28 0.05 0.12 -1 -1 0.28 0.012509 0.0112299 95 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 7.62 vpr 54.01 MiB -1 -1 0.11 17396 1 0.00 -1 -1 29776 -1 -1 15 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55304 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 15.4 MiB 3.46 1034 54.0 MiB 0.05 0.00 4.4652 -129.112 -4.4652 4.4652 0.56 0.000125617 0.000100889 0.0113946 0.00938544 38 2526 33 6.95648e+06 217135 678818. 2348.85 1.99 0.0531733 0.0449666 26626 170182 -1 2220 24 1849 2785 273039 52911 0 0 273039 52911 2785 2460 0 0 8525 7574 0 0 15806 9717 0 0 2785 2503 0 0 118784 16130 0 0 124354 14527 0 0 2785 0 0 936 1257 1267 8883 0 0 4.54496 4.54496 -152.985 -4.54496 0 0 902133. 3121.57 0.22 0.05 0.08 -1 -1 0.22 0.0110604 0.00986846 82 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 6.34 vpr 53.79 MiB -1 -1 0.10 17492 1 0.02 -1 -1 29716 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55080 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 15.3 MiB 2.44 724 53.8 MiB 0.04 0.00 3.05184 -103.821 -3.05184 3.05184 0.56 0.000111082 8.7985e-05 0.0100747 0.00822045 42 2561 46 6.95648e+06 159232 744469. 2576.02 1.75 0.0501315 0.0420678 27202 183097 -1 1832 22 1398 1985 247039 68554 0 0 247039 68554 1985 1686 0 0 6550 5662 0 0 12124 7856 0 0 1985 1750 0 0 116332 25860 0 0 108063 25740 0 0 1985 0 0 587 536 467 4989 0 0 3.83726 3.83726 -137.262 -3.83726 0 0 949917. 3286.91 0.23 0.05 0.09 -1 -1 0.23 0.00931205 0.00829574 70 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.06 vpr 53.86 MiB -1 -1 0.10 17344 1 0.02 -1 -1 29700 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55152 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 15.3 MiB 0.29 784 53.9 MiB 0.05 0.00 3.48277 -101.047 -3.48277 3.48277 0.56 0.000116313 9.2741e-05 0.0106287 0.00869211 46 2430 46 6.95648e+06 318465 828058. 2865.25 2.56 0.0554059 0.0469358 28066 200906 -1 1676 22 1328 2016 140615 32161 0 0 140615 32161 2016 1519 0 0 6241 5432 0 0 10300 6888 0 0 2016 1630 0 0 58509 8298 0 0 61533 8394 0 0 2016 0 0 688 518 755 5759 0 0 3.65916 3.65916 -119.327 -3.65916 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00940612 0.00840481 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.10 vpr 54.16 MiB -1 -1 0.11 17344 1 0.01 -1 -1 29744 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55464 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 15.7 MiB 0.60 1005 54.2 MiB 0.05 0.00 3.78193 -116.027 -3.78193 3.78193 0.56 0.000132567 0.000106642 0.0109624 0.00900956 36 2783 28 6.95648e+06 361892 648988. 2245.63 3.29 0.0578154 0.0492781 26050 158493 -1 2307 23 1742 2605 214126 44107 0 0 214126 44107 2605 1979 0 0 8424 7143 0 0 13780 9500 0 0 2605 2150 0 0 93454 11867 0 0 93258 11468 0 0 2605 0 0 863 914 1064 8104 0 0 3.95437 3.95437 -139.372 -3.95437 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0110389 0.00984799 83 46 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 10.00 vpr 53.96 MiB -1 -1 0.11 17476 1 0.01 -1 -1 29648 -1 -1 16 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55256 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 15.5 MiB 0.76 814 54.0 MiB 0.04 0.00 2.87605 -86.2274 -2.87605 2.87605 0.57 0.000114009 9.159e-05 0.00804417 0.00671697 40 2273 26 6.95648e+06 231611 706193. 2443.58 6.98 0.0803544 0.0677542 26914 176310 -1 1985 23 1532 2487 255364 52690 0 0 255364 52690 2487 2107 0 0 8346 7383 0 0 16153 10227 0 0 2487 2303 0 0 112148 15817 0 0 113743 14853 0 0 2487 0 0 955 1170 1213 8265 0 0 3.15747 3.15747 -109.502 -3.15747 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.00968398 0.00859925 68 46 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 18.41 vpr 54.09 MiB -1 -1 0.11 17460 1 0.01 -1 -1 29632 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55392 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 15.5 MiB 1.11 893 54.1 MiB 0.04 0.00 3.74967 -123.553 -3.74967 3.74967 0.57 0.00012444 9.9605e-05 0.00929078 0.00768096 50 3241 44 6.95648e+06 202660 902133. 3121.57 15.06 0.105034 0.08948 28642 213929 -1 2291 23 2106 3046 292963 66046 0 0 292963 66046 3046 2402 0 0 9707 8598 0 0 18366 11623 0 0 3046 2615 0 0 126271 21068 0 0 132527 19740 0 0 3046 0 0 940 832 952 7716 0 0 5.00616 5.00616 -158.112 -5.00616 0 0 1.08113e+06 3740.92 0.27 0.05 0.11 -1 -1 0.27 0.0108422 0.00973982 88 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 10.00 vpr 54.09 MiB -1 -1 0.10 17488 1 0.01 -1 -1 29764 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55388 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 15.7 MiB 0.65 796 54.1 MiB 0.04 0.00 3.82593 -122.096 -3.82593 3.82593 0.56 0.000130878 0.00010409 0.00973058 0.00803614 40 2518 44 6.95648e+06 260562 706193. 2443.58 7.07 0.0999393 0.0837764 26914 176310 -1 1908 26 1592 2151 193490 44740 0 0 193490 44740 2151 1841 0 0 7238 6307 0 0 13095 8549 0 0 2151 1969 0 0 86661 12476 0 0 82194 13598 0 0 2151 0 0 559 473 722 5185 0 0 4.37827 4.37827 -147.766 -4.37827 0 0 926341. 3205.33 0.29 0.08 0.11 -1 -1 0.29 0.0208879 0.0182762 80 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 6.69 vpr 53.49 MiB -1 -1 0.10 17404 1 0.01 -1 -1 29856 -1 -1 12 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 14.8 MiB 3.58 544 53.5 MiB 0.03 0.00 3.14061 -84.355 -3.14061 3.14061 0.56 9.5734e-05 7.5572e-05 0.00760189 0.00619196 34 1636 26 6.95648e+06 173708 618332. 2139.56 1.07 0.0375756 0.0314262 25762 151098 -1 1373 22 1073 1419 135448 33015 0 0 135448 33015 1419 1208 0 0 4788 4054 0 0 7773 5536 0 0 1419 1239 0 0 59988 10808 0 0 60061 10170 0 0 1419 0 0 346 477 473 3525 0 0 3.12202 3.12202 -107.8 -3.12202 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00789084 0.00703746 53 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 4.55 vpr 53.74 MiB -1 -1 0.09 17344 1 0.01 -1 -1 29624 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55032 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 15.2 MiB 0.84 690 53.7 MiB 0.03 0.00 3.06285 -102.823 -3.06285 3.06285 0.57 0.000104924 8.2651e-05 0.00695057 0.00572603 46 2191 36 6.95648e+06 159232 828058. 2865.25 1.57 0.0421918 0.0354974 28066 200906 -1 1530 21 1169 1496 115649 26501 0 0 115649 26501 1496 1350 0 0 4832 4301 0 0 7639 5293 0 0 1496 1412 0 0 49133 7099 0 0 51053 7046 0 0 1496 0 0 327 314 303 3094 0 0 3.30982 3.30982 -123.384 -3.30982 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00866047 0.00776603 64 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 4.53 vpr 53.93 MiB -1 -1 0.11 17568 1 0.02 -1 -1 29792 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55220 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 15.4 MiB 0.72 788 53.9 MiB 0.05 0.00 3.27268 -97.37 -3.27268 3.27268 0.56 0.000117151 9.3386e-05 0.0099958 0.00824467 46 2138 22 6.95648e+06 332941 828058. 2865.25 1.64 0.0450763 0.038066 28066 200906 -1 1637 21 1411 2240 159172 36943 0 0 159172 36943 2240 1732 0 0 6897 5948 0 0 11625 7749 0 0 2240 1863 0 0 66815 9678 0 0 69355 9973 0 0 2240 0 0 829 1226 990 8011 0 0 3.89096 3.89096 -127.361 -3.89096 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00924861 0.00827365 77 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 5.22 vpr 53.49 MiB -1 -1 0.09 17624 1 0.01 -1 -1 29752 -1 -1 13 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 15.0 MiB 1.15 640 53.5 MiB 0.03 0.00 3.40298 -95.8492 -3.40298 3.40298 0.56 9.5285e-05 7.5308e-05 0.00688767 0.00567789 38 2277 35 6.95648e+06 188184 678818. 2348.85 1.99 0.0428299 0.036222 26626 170182 -1 1594 23 1296 1667 125953 29235 0 0 125953 29235 1667 1481 0 0 5393 4815 0 0 8951 6048 0 0 1667 1534 0 0 54748 7373 0 0 53527 7984 0 0 1667 0 0 371 288 399 3513 0 0 3.44612 3.44612 -113.461 -3.44612 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00814003 0.00725833 67 25 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 4.72 vpr 53.53 MiB -1 -1 0.09 17076 1 0.00 -1 -1 29796 -1 -1 9 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 15.0 MiB 0.94 596 53.5 MiB 0.04 0.00 3.19126 -90.8265 -3.19126 3.19126 0.56 0.000104484 8.3866e-05 0.00829555 0.00683002 38 1898 23 6.95648e+06 130281 678818. 2348.85 1.65 0.040515 0.0340037 26626 170182 -1 1495 22 1268 1879 141725 31669 0 0 141725 31669 1879 1516 0 0 5784 5041 0 0 9327 6347 0 0 1879 1657 0 0 61322 8326 0 0 61534 8782 0 0 1879 0 0 611 728 752 5412 0 0 3.53087 3.53087 -114.382 -3.53087 0 0 902133. 3121.57 0.22 0.03 0.15 -1 -1 0.22 0.00817311 0.00729353 56 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 4.27 vpr 53.95 MiB -1 -1 0.10 17512 1 0.01 -1 -1 29720 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55240 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 15.3 MiB 0.71 714 53.9 MiB 0.04 0.00 2.92943 -95.3143 -2.92943 2.92943 0.56 0.0001338 0.000108684 0.0108196 0.00899185 46 2015 29 6.95648e+06 347416 828058. 2865.25 1.40 0.0513328 0.0433729 28066 200906 -1 1524 22 1641 2182 161082 37758 0 0 161082 37758 2182 1714 0 0 6914 6047 0 0 11071 7584 0 0 2182 1897 0 0 68018 9908 0 0 70715 10608 0 0 2182 0 0 541 727 580 5504 0 0 3.17197 3.17197 -118.357 -3.17197 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0105363 0.00942082 79 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 5.58 vpr 53.70 MiB -1 -1 0.10 17644 1 0.01 -1 -1 29792 -1 -1 12 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54984 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 15.2 MiB 1.87 704 53.7 MiB 0.04 0.00 3.35097 -100.684 -3.35097 3.35097 0.56 9.7309e-05 7.713e-05 0.00846807 0.00690895 38 2096 26 6.95648e+06 173708 678818. 2348.85 1.61 0.0399847 0.0336694 26626 170182 -1 1730 20 1127 1603 138842 29166 0 0 138842 29166 1603 1389 0 0 5122 4500 0 0 8631 5664 0 0 1603 1457 0 0 61815 8318 0 0 60068 7838 0 0 1603 0 0 476 458 386 3875 0 0 3.41012 3.41012 -120.098 -3.41012 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00755062 0.00677215 64 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 4.57 vpr 53.89 MiB -1 -1 0.09 17268 1 0.00 -1 -1 29696 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55180 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 15.4 MiB 0.93 742 53.9 MiB 0.05 0.00 2.7068 -90.0117 -2.7068 2.7068 0.56 0.000120826 9.5882e-05 0.0108915 0.00891149 40 2112 39 6.95648e+06 318465 706193. 2443.58 1.48 0.0517199 0.0434625 26914 176310 -1 1890 28 1451 2287 316674 112039 0 0 316674 112039 2287 1781 0 0 7695 6793 0 0 16296 10073 0 0 2287 1859 0 0 141976 46480 0 0 146133 45053 0 0 2287 0 0 836 1398 1338 8851 0 0 3.21237 3.21237 -117.433 -3.21237 0 0 926341. 3205.33 0.22 0.06 0.09 -1 -1 0.22 0.0111079 0.00982598 71 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 4.92 vpr 54.04 MiB -1 -1 0.10 17628 1 0.02 -1 -1 29816 -1 -1 15 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55336 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 15.4 MiB 1.20 814 54.0 MiB 0.04 0.00 3.533 -117.428 -3.533 3.533 0.56 0.000129724 0.000103074 0.00978199 0.00806606 40 2421 30 6.95648e+06 217135 706193. 2443.58 1.57 0.0527548 0.0444749 26914 176310 -1 2111 22 1640 2227 243981 49026 0 0 243981 49026 2227 1898 0 0 7379 6351 0 0 13365 8721 0 0 2227 2000 0 0 107882 15691 0 0 110901 14365 0 0 2227 0 0 587 834 858 6074 0 0 3.83481 3.83481 -142.023 -3.83481 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0109217 0.00973842 73 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 4.63 vpr 53.73 MiB -1 -1 0.08 17516 1 0.01 -1 -1 29756 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55024 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 15.1 MiB 0.98 613 53.7 MiB 0.03 0.00 2.4011 -79.9159 -2.4011 2.4011 0.56 0.000108985 8.7338e-05 0.00835408 0.00685902 40 1756 42 6.95648e+06 144757 706193. 2443.58 1.56 0.04521 0.0380632 26914 176310 -1 1624 21 1093 1676 168135 40153 0 0 168135 40153 1676 1488 0 0 5787 5109 0 0 10445 6853 0 0 1676 1535 0 0 72973 12252 0 0 75578 12916 0 0 1676 0 0 583 572 622 4777 0 0 3.83282 3.83282 -124.038 -3.83282 0 0 926341. 3205.33 0.22 0.03 0.09 -1 -1 0.22 0.00837144 0.00747067 57 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 4.66 vpr 53.65 MiB -1 -1 0.09 17272 1 0.00 -1 -1 29812 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54936 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 15.0 MiB 1.05 639 53.6 MiB 0.04 0.00 3.41698 -108.659 -3.41698 3.41698 0.56 0.000100362 7.9729e-05 0.00868475 0.00710791 50 2048 24 6.95648e+06 159232 902133. 3121.57 1.44 0.04017 0.0338295 28642 213929 -1 1584 19 1257 1849 150550 36675 0 0 150550 36675 1849 1635 0 0 5937 5240 0 0 10670 6999 0 0 1849 1739 0 0 62573 10460 0 0 67672 10602 0 0 1849 0 0 592 550 428 4603 0 0 3.69951 3.69951 -128.816 -3.69951 0 0 1.08113e+06 3740.92 0.26 0.03 0.11 -1 -1 0.26 0.00802658 0.00723473 70 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 5.54 vpr 53.86 MiB -1 -1 0.11 17464 1 0.01 -1 -1 29800 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55152 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 15.4 MiB 1.78 782 53.9 MiB 0.05 0.00 3.43217 -105.396 -3.43217 3.43217 0.56 0.000115649 9.2127e-05 0.0113808 0.00932941 44 2710 33 6.95648e+06 202660 787024. 2723.27 1.59 0.0487288 0.0410971 27778 195446 -1 1843 24 1573 2137 180531 39949 0 0 180531 39949 2137 1792 0 0 7081 6270 0 0 11679 8179 0 0 2137 1879 0 0 77197 10682 0 0 80300 11147 0 0 2137 0 0 564 520 496 4905 0 0 3.69672 3.69672 -128.722 -3.69672 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0101344 0.00907838 79 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 4.45 vpr 53.94 MiB -1 -1 0.10 17264 1 0.01 -1 -1 29752 -1 -1 21 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55236 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 15.4 MiB 0.80 670 53.9 MiB 0.04 0.00 3.49208 -97.3048 -3.49208 3.49208 0.56 0.000114641 9.1801e-05 0.00866529 0.00715383 40 2132 28 6.95648e+06 303989 706193. 2443.58 1.52 0.0441855 0.0371828 26914 176310 -1 1734 27 1295 1840 203122 63707 0 0 203122 63707 1840 1582 0 0 6223 5365 0 0 12307 7727 0 0 1840 1650 0 0 93094 24468 0 0 87818 22915 0 0 1840 0 0 545 563 695 5431 0 0 3.66846 3.66846 -117.084 -3.66846 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0105617 0.00934559 71 49 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 5.04 vpr 54.07 MiB -1 -1 0.10 17844 1 0.01 -1 -1 29820 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55364 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 15.6 MiB 1.07 786 54.1 MiB 0.05 0.00 4.1332 -128.78 -4.1332 4.1332 0.56 0.000138507 0.000112241 0.0130654 0.0108366 46 2644 42 6.95648e+06 202660 828058. 2865.25 1.78 0.0605742 0.0510936 28066 200906 -1 1868 26 2120 3048 233428 54736 0 0 233428 54736 3048 2446 0 0 9399 8459 0 0 17316 11157 0 0 3048 2577 0 0 96252 16038 0 0 104365 14059 0 0 3048 0 0 928 1064 739 8287 0 0 4.2692 4.2692 -151.014 -4.2692 0 0 1.01997e+06 3529.29 0.25 0.05 0.10 -1 -1 0.25 0.0123669 0.0110184 89 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 4.64 vpr 53.20 MiB -1 -1 0.10 16896 1 0.01 -1 -1 29572 -1 -1 13 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54480 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 14.7 MiB 1.12 736 53.2 MiB 0.04 0.00 3.10444 -85.1218 -3.10444 3.10444 0.56 9.0016e-05 7.1521e-05 0.00748516 0.00612513 36 1978 22 6.95648e+06 188184 648988. 2245.63 1.39 0.035346 0.0299124 26050 158493 -1 1647 19 882 1429 114811 23707 0 0 114811 23707 1429 1102 0 0 4525 3906 0 0 7899 5171 0 0 1429 1149 0 0 49686 6244 0 0 49843 6135 0 0 1429 0 0 547 484 574 4304 0 0 3.04112 3.04112 -108.168 -3.04112 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00673693 0.00606315 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 4.48 vpr 54.20 MiB -1 -1 0.10 17776 1 0.01 -1 -1 29744 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55504 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 15.6 MiB 0.76 761 54.2 MiB 0.06 0.00 3.08669 -108.971 -3.08669 3.08669 0.56 0.000135902 0.000108163 0.0125805 0.0102986 40 2363 25 6.95648e+06 361892 706193. 2443.58 1.58 0.0552609 0.0463422 26914 176310 -1 1926 20 1628 2133 186763 41277 0 0 186763 41277 2133 1870 0 0 7111 6093 0 0 12663 8228 0 0 2133 1954 0 0 80098 11703 0 0 82625 11429 0 0 2133 0 0 505 489 512 4967 0 0 4.05846 4.05846 -149.472 -4.05846 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.0104054 0.00927961 81 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 5.73 vpr 53.87 MiB -1 -1 0.09 17496 1 0.01 -1 -1 29728 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55164 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 15.4 MiB 2.27 686 53.9 MiB 0.04 0.00 2.45985 -95.9692 -2.45985 2.45985 0.56 0.000122299 9.7143e-05 0.00959695 0.00784798 38 1997 23 6.95648e+06 144757 678818. 2348.85 1.35 0.0457451 0.0382354 26626 170182 -1 1619 23 1492 2101 182088 37774 0 0 182088 37774 2101 1807 0 0 6389 5746 0 0 11320 7222 0 0 2101 1849 0 0 80401 10423 0 0 79776 10727 0 0 2101 0 0 609 601 701 5570 0 0 3.25012 3.25012 -127.98 -3.25012 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0101395 0.00900993 61 93 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 9.51 vpr 53.91 MiB -1 -1 0.10 17564 1 0.01 -1 -1 29632 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55204 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 15.4 MiB 0.76 720 53.9 MiB 0.05 0.00 3.41878 -102.947 -3.41878 3.41878 0.56 0.000129744 0.000104391 0.0109959 0.00909164 40 2555 48 6.95648e+06 318465 706193. 2443.58 6.61 0.09629 0.0806746 26914 176310 -1 1931 20 1243 1911 159265 37947 0 0 159265 37947 1911 1511 0 0 6654 5748 0 0 11400 7883 0 0 1911 1597 0 0 65849 11044 0 0 71540 10164 0 0 1911 0 0 668 1051 913 6925 0 0 3.85781 3.85781 -127.482 -3.85781 0 0 926341. 3205.33 0.25 0.04 0.09 -1 -1 0.25 0.00948887 0.00849348 75 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 6.53 vpr 54.34 MiB -1 -1 0.11 17912 1 0.01 -1 -1 29812 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55644 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 15.8 MiB 1.18 1061 54.3 MiB 0.06 0.00 4.78798 -139.36 -4.78798 4.78798 0.56 0.000137225 0.000110144 0.01288 0.0106112 46 3544 30 6.95648e+06 217135 828058. 2865.25 3.13 0.061266 0.0520702 28066 200906 -1 2468 23 2257 3243 288220 62127 0 0 288220 62127 3243 2874 0 0 10046 8859 0 0 18578 11683 0 0 3243 3023 0 0 127353 17926 0 0 125757 17762 0 0 3243 0 0 986 1207 1310 9288 0 0 5.24985 5.24985 -171.981 -5.24985 0 0 1.01997e+06 3529.29 0.25 0.05 0.10 -1 -1 0.25 0.0123359 0.0110786 95 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.19 vpr 53.30 MiB -1 -1 0.09 17196 1 0.01 -1 -1 29740 -1 -1 11 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54584 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 14.8 MiB 1.90 456 53.3 MiB 0.03 0.00 2.18845 -73.9237 -2.18845 2.18845 0.58 8.2158e-05 6.5143e-05 0.00565658 0.00463954 46 1114 22 6.95648e+06 159232 828058. 2865.25 1.17 0.0304647 0.0257097 28066 200906 -1 854 20 626 803 56029 13830 0 0 56029 13830 803 697 0 0 2677 2325 0 0 4477 3111 0 0 803 736 0 0 22446 3899 0 0 24823 3062 0 0 803 0 0 177 99 136 1569 0 0 2.19282 2.19282 -83.0476 -2.19282 0 0 1.01997e+06 3529.29 0.24 0.02 0.10 -1 -1 0.24 0.00633979 0.00565912 52 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 5.46 vpr 53.71 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29764 -1 -1 11 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55000 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 15.2 MiB 1.11 511 53.7 MiB 0.03 0.00 3.12499 -93.1161 -3.12499 3.12499 0.56 0.000102156 8.0921e-05 0.00700661 0.00575957 36 2157 50 6.95648e+06 159232 648988. 2245.63 2.26 0.0458214 0.038484 26050 158493 -1 1558 27 1344 1955 193025 42786 0 0 193025 42786 1955 1790 0 0 6483 5786 0 0 11798 7678 0 0 1955 1804 0 0 83432 13134 0 0 87402 12594 0 0 1955 0 0 611 895 809 5874 0 0 3.33453 3.33453 -120.74 -3.33453 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0094958 0.00838767 54 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 3.92 vpr 53.64 MiB -1 -1 0.08 17396 1 0.01 -1 -1 29684 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54928 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 15.1 MiB 0.34 597 53.6 MiB 0.04 0.00 2.6818 -90.2955 -2.6818 2.6818 0.56 0.00010506 8.3014e-05 0.00832623 0.00681206 44 2160 38 6.95648e+06 144757 787024. 2723.27 1.43 0.0433075 0.0364729 27778 195446 -1 1662 25 1270 2003 191665 40011 0 0 191665 40011 2003 1658 0 0 6138 5493 0 0 12449 7493 0 0 2003 1709 0 0 88287 11012 0 0 80785 12646 0 0 2003 0 0 733 702 628 5750 0 0 3.05407 3.05407 -114.136 -3.05407 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.00934481 0.00829536 59 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 3.54 vpr 53.21 MiB -1 -1 0.13 17412 1 0.01 -1 -1 29868 -1 -1 18 25 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54492 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 14.8 MiB 0.34 409 53.2 MiB 0.03 0.00 2.84753 -63.1202 -2.84753 2.84753 0.56 8.051e-05 6.3494e-05 0.00544843 0.0044325 40 1371 28 6.95648e+06 260562 706193. 2443.58 1.13 0.0304943 0.0255361 26914 176310 -1 1196 22 913 1342 152198 55276 0 0 152198 55276 1342 1159 0 0 4943 4376 0 0 9380 6492 0 0 1342 1204 0 0 68248 21014 0 0 66943 21031 0 0 1342 0 0 429 557 539 4161 0 0 2.91067 2.91067 -85.5535 -2.91067 0 0 926341. 3205.33 0.22 0.03 0.09 -1 -1 0.22 0.00655018 0.00582153 53 19 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 5.38 vpr 54.12 MiB -1 -1 0.11 17492 1 0.02 -1 -1 29744 -1 -1 12 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55416 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 15.4 MiB 1.27 963 54.1 MiB 0.05 0.00 3.30725 -112.346 -3.30725 3.30725 0.56 0.000127723 0.000102208 0.0109382 0.00901946 40 2995 48 6.95648e+06 173708 706193. 2443.58 1.90 0.0579515 0.0488099 26914 176310 -1 2632 22 1816 3082 320999 63966 0 0 320999 63966 3082 2682 0 0 9790 8563 0 0 18445 11405 0 0 3082 2781 0 0 146953 18665 0 0 139647 19870 0 0 3082 0 0 1266 1546 1444 10072 0 0 4.17092 4.17092 -148.428 -4.17092 0 0 926341. 3205.33 0.24 0.06 0.09 -1 -1 0.24 0.0111626 0.00998325 73 69 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 5.35 vpr 54.02 MiB -1 -1 0.11 17744 1 0.01 -1 -1 29748 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55316 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 15.5 MiB 0.77 729 54.0 MiB 0.04 0.00 3.43898 -113.427 -3.43898 3.43898 0.56 0.000134405 0.000107868 0.00952276 0.00788194 38 2797 42 6.95648e+06 246087 678818. 2348.85 2.45 0.0590826 0.0497965 26626 170182 -1 1915 20 1636 2227 189344 42280 0 0 189344 42280 2227 1951 0 0 7077 6092 0 0 11215 7835 0 0 2227 2006 0 0 80720 12485 0 0 85878 11911 0 0 2227 0 0 591 792 731 5833 0 0 4.07741 4.07741 -135.426 -4.07741 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0107648 0.00963902 80 86 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 4.74 vpr 53.90 MiB -1 -1 0.11 17344 1 0.00 -1 -1 29780 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 15.3 MiB 1.26 830 53.9 MiB 0.05 0.00 4.0552 -121.219 -4.0552 4.0552 0.56 0.000125012 0.000100619 0.0106776 0.00881681 48 2218 33 6.99608e+06 220735 865456. 2994.66 1.29 0.0504126 0.0426089 28354 207349 -1 1999 22 1678 2328 177407 40333 0 0 177407 40333 2328 1934 0 0 8038 6958 0 0 13608 9513 0 0 2328 2007 0 0 79908 9161 0 0 71197 10760 0 0 2328 0 0 650 658 601 5923 0 0 4.11391 4.11391 -141.008 -4.11391 0 0 1.05005e+06 3633.38 0.26 0.04 0.10 -1 -1 0.26 0.0102944 0.00923577 88 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 4.91 vpr 53.92 MiB -1 -1 0.10 17392 1 0.02 -1 -1 29768 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55212 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 15.4 MiB 1.07 976 53.9 MiB 0.05 0.00 4.0159 -121.783 -4.0159 4.0159 0.56 0.000122349 9.7985e-05 0.0114001 0.00934658 48 2799 28 6.99608e+06 250167 865456. 2994.66 1.63 0.0501858 0.0422257 28354 207349 -1 2274 19 1950 2824 234374 52448 0 0 234374 52448 2824 2487 0 0 9081 7849 0 0 15904 10697 0 0 2824 2567 0 0 97591 14476 0 0 106150 14372 0 0 2824 0 0 874 861 739 7046 0 0 4.52904 4.52904 -158.134 -4.52904 0 0 1.05005e+06 3633.38 0.26 0.04 0.11 -1 -1 0.26 0.00949045 0.00855488 99 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 4.15 vpr 53.45 MiB -1 -1 0.10 17268 1 0.01 -1 -1 29772 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 14.8 MiB 0.58 797 53.4 MiB 0.05 0.00 2.90939 -89.5228 -2.90939 2.90939 0.56 0.000108941 8.6761e-05 0.0103354 0.00840942 44 2579 24 6.99608e+06 206020 787024. 2723.27 1.44 0.042612 0.0357768 27778 195446 -1 1772 20 1189 1650 117044 27027 0 0 117044 27027 1650 1356 0 0 5409 4804 0 0 9118 6260 0 0 1650 1419 0 0 49111 6520 0 0 50106 6668 0 0 1650 0 0 461 475 365 4015 0 0 3.26727 3.26727 -113.928 -3.26727 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.00841711 0.00755709 76 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 4.66 vpr 53.50 MiB -1 -1 0.10 17548 1 0.01 -1 -1 29888 -1 -1 16 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54780 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 14.9 MiB 1.02 774 53.5 MiB 0.05 0.00 3.29948 -94.7551 -3.29948 3.29948 0.56 0.000110321 8.8392e-05 0.0101892 0.0083643 40 2046 34 6.99608e+06 235451 706193. 2443.58 1.50 0.0459986 0.0387437 26914 176310 -1 1811 25 1707 2671 190500 44398 0 0 190500 44398 2671 2136 0 0 8493 7331 0 0 16007 9912 0 0 2671 2245 0 0 81922 11786 0 0 78736 10988 0 0 2671 0 0 964 1432 959 8820 0 0 3.87511 3.87511 -121.857 -3.87511 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.00973735 0.00864678 78 25 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 7.36 vpr 53.72 MiB -1 -1 0.10 17492 1 0.01 -1 -1 29660 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 15.2 MiB 2.07 895 53.7 MiB 0.05 0.00 3.89209 -117.832 -3.89209 3.89209 0.56 0.000120311 9.6479e-05 0.00977812 0.00802533 40 3150 26 6.99608e+06 206020 706193. 2443.58 3.12 0.0506886 0.0430494 26914 176310 -1 2408 21 1739 2875 287551 61260 0 0 287551 61260 2875 2318 0 0 9114 8030 0 0 16629 10671 0 0 2875 2432 0 0 128931 18671 0 0 127127 19138 0 0 2875 0 0 1136 1503 1375 10045 0 0 4.61221 4.61221 -156.419 -4.61221 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.00963724 0.00863244 81 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 16.66 vpr 53.94 MiB -1 -1 0.11 17360 1 0.01 -1 -1 29652 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55236 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 15.5 MiB 2.17 1013 53.9 MiB 0.06 0.00 2.83586 -100.209 -2.83586 2.83586 0.56 0.000126994 0.000102275 0.0114842 0.00943225 40 3636 46 6.99608e+06 250167 706193. 2443.58 12.31 0.108569 0.0923851 26914 176310 -1 2911 20 1842 2863 338793 80150 0 0 338793 80150 2863 2294 0 0 9767 8545 0 0 16956 11592 0 0 2863 2390 0 0 160607 27425 0 0 145737 27904 0 0 2863 0 0 1021 1141 1496 9519 0 0 4.29106 4.29106 -151.59 -4.29106 0 0 926341. 3205.33 0.23 0.06 0.09 -1 -1 0.23 0.00998125 0.00894599 97 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 4.82 vpr 53.39 MiB -1 -1 0.09 17132 1 0.01 -1 -1 29944 -1 -1 15 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54672 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 15.0 MiB 1.20 566 53.4 MiB 0.04 0.00 3.12612 -90.5264 -3.12612 3.12612 0.56 9.4109e-05 7.49e-05 0.00749536 0.00618754 38 2018 39 6.99608e+06 220735 678818. 2348.85 1.55 0.0403542 0.034053 26626 170182 -1 1498 23 1287 1908 141472 31014 0 0 141472 31014 1908 1500 0 0 5914 5184 0 0 10131 6622 0 0 1908 1543 0 0 56954 8764 0 0 64657 7401 0 0 1908 0 0 621 695 546 5336 0 0 3.30256 3.30256 -109.674 -3.30256 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00779162 0.00693091 66 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 4.42 vpr 53.38 MiB -1 -1 0.09 17052 1 0.01 -1 -1 29640 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54660 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 14.9 MiB 0.26 687 53.4 MiB 0.04 0.00 2.2484 -73.2053 -2.2484 2.2484 0.56 0.000105326 8.3238e-05 0.00783239 0.00638185 38 2105 50 6.99608e+06 367892 678818. 2348.85 2.00 0.0480982 0.0406732 26626 170182 -1 1586 23 1027 1754 112040 26885 0 0 112040 26885 1754 1262 0 0 5427 4700 0 0 8446 5839 0 0 1754 1374 0 0 45808 7290 0 0 48851 6420 0 0 1754 0 0 727 1059 978 7280 0 0 2.61902 2.61902 -94.2026 -2.61902 0 0 902133. 3121.57 0.23 0.03 0.10 -1 -1 0.23 0.00867214 0.00773126 69 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 4.49 vpr 53.77 MiB -1 -1 0.09 17528 1 0.01 -1 -1 29688 -1 -1 14 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55056 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 15.3 MiB 0.68 859 53.8 MiB 0.04 0.00 2.73924 -98.6677 -2.73924 2.73924 0.56 0.000111978 8.9889e-05 0.00918356 0.00751599 40 2744 37 6.99608e+06 206020 706193. 2443.58 1.71 0.0466804 0.0392064 26914 176310 -1 2121 22 1681 2265 208531 45702 0 0 208531 45702 2265 1989 0 0 7708 6598 0 0 13555 9117 0 0 2265 2064 0 0 90265 13184 0 0 92473 12750 0 0 2265 0 0 584 636 558 5211 0 0 3.44046 3.44046 -123.307 -3.44046 0 0 926341. 3205.33 0.23 0.04 0.09 -1 -1 0.23 0.00907036 0.00807804 87 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 4.12 vpr 53.55 MiB -1 -1 0.10 17268 1 0.01 -1 -1 29640 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 15.0 MiB 0.66 830 53.6 MiB 0.04 0.00 3.30642 -114.786 -3.30642 3.30642 0.56 0.000105771 8.4038e-05 0.00918987 0.00750684 44 2233 23 6.99608e+06 191304 787024. 2723.27 1.32 0.0414868 0.0348858 27778 195446 -1 1744 22 1366 1753 128199 27639 0 0 128199 27639 1753 1491 0 0 5573 4878 0 0 9237 6415 0 0 1753 1539 0 0 54908 6791 0 0 54975 6525 0 0 1753 0 0 387 345 385 3644 0 0 3.47486 3.47486 -132.486 -3.47486 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.00873825 0.00782566 75 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.65 vpr 53.72 MiB -1 -1 0.10 17672 1 0.01 -1 -1 29720 -1 -1 14 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55012 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 15.3 MiB 0.56 796 53.7 MiB 0.04 0.00 3.10933 -99.3661 -3.10933 3.10933 0.56 0.00010279 8.1333e-05 0.00784331 0.00642813 38 2439 27 6.99608e+06 206020 678818. 2348.85 6.00 0.078548 0.0661359 26626 170182 -1 1924 21 1532 2097 165727 36535 0 0 165727 36535 2097 1796 0 0 6556 5788 0 0 10183 7012 0 0 2097 1891 0 0 74514 9787 0 0 70280 10261 0 0 2097 0 0 565 480 607 4963 0 0 3.8825 3.8825 -129.884 -3.8825 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00838931 0.00746504 83 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 4.22 vpr 53.45 MiB -1 -1 0.11 17320 1 0.01 -1 -1 29756 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 15.0 MiB 0.50 816 53.4 MiB 0.04 0.00 2.6205 -95.5835 -2.6205 2.6205 0.56 9.8503e-05 7.8258e-05 0.00796858 0.00650439 38 2284 28 6.99608e+06 161872 678818. 2348.85 1.65 0.0386572 0.0324563 26626 170182 -1 1914 22 1342 1718 149010 30599 0 0 149010 30599 1718 1469 0 0 5237 4627 0 0 8884 5787 0 0 1718 1513 0 0 67137 8360 0 0 64316 8843 0 0 1718 0 0 376 421 345 3612 0 0 3.22842 3.22842 -118.387 -3.22842 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00812807 0.00723646 66 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 4.87 vpr 53.84 MiB -1 -1 0.15 17344 1 0.02 -1 -1 29652 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55128 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 15.3 MiB 0.60 996 53.8 MiB 0.05 0.00 3.30642 -115.552 -3.30642 3.30642 0.56 0.000124229 0.000100072 0.0103723 0.0085669 38 3042 28 6.99608e+06 220735 678818. 2348.85 2.09 0.0507871 0.042991 26626 170182 -1 2466 21 1657 2395 208805 42195 0 0 208805 42195 2395 2058 0 0 7360 6353 0 0 12158 7907 0 0 2395 2168 0 0 92956 12079 0 0 91541 11630 0 0 2395 0 0 738 806 756 6193 0 0 3.85876 3.85876 -141.93 -3.85876 0 0 902133. 3121.57 0.22 0.07 0.08 -1 -1 0.22 0.0144564 0.0127328 87 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 5.63 vpr 53.88 MiB -1 -1 0.15 17564 1 0.01 -1 -1 29672 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55172 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 15.5 MiB 1.05 1014 53.9 MiB 0.05 0.00 3.86116 -112.629 -3.86116 3.86116 0.56 0.000126805 0.000101205 0.0109602 0.00899001 60 2786 44 6.99608e+06 250167 1.01997e+06 3529.29 2.26 0.0561726 0.0473519 30658 258169 -1 1849 22 1894 2645 187966 46129 0 0 187966 46129 2645 2170 0 0 8455 7277 0 0 14259 9481 0 0 2645 2342 0 0 78292 13281 0 0 81670 11578 0 0 2645 0 0 751 699 817 6724 0 0 4.13571 4.13571 -142.622 -4.13571 0 0 1.27783e+06 4421.56 0.31 0.04 0.13 -1 -1 0.31 0.0102621 0.00918919 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 5.53 vpr 53.33 MiB -1 -1 0.10 17080 1 0.01 -1 -1 29672 -1 -1 13 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54612 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 14.6 MiB 2.19 565 53.3 MiB 0.03 0.00 2.5552 -72.0312 -2.5552 2.5552 0.56 8.93e-05 7.0468e-05 0.00575791 0.0047137 44 1974 39 6.99608e+06 191304 787024. 2723.27 1.27 0.0361272 0.0302489 27778 195446 -1 1242 19 975 1370 93261 22462 0 0 93261 22462 1370 1121 0 0 4433 3889 0 0 7195 5060 0 0 1370 1165 0 0 39800 5268 0 0 39093 5959 0 0 1370 0 0 395 369 206 3146 0 0 2.85427 2.85427 -91.5543 -2.85427 0 0 997811. 3452.63 0.25 0.02 0.10 -1 -1 0.25 0.00678686 0.0060817 64 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.15 vpr 53.98 MiB -1 -1 0.12 17472 1 0.01 -1 -1 29700 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55272 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 15.5 MiB 0.97 1110 54.0 MiB 0.04 0.00 2.99159 -104.514 -2.99159 2.99159 0.56 0.000126614 0.00010239 0.00777424 0.00647963 38 3198 28 6.99608e+06 235451 678818. 2348.85 3.05 0.0513311 0.0435876 26626 170182 -1 2501 23 2024 3095 227048 48719 0 0 227048 48719 3095 2446 0 0 9445 8422 0 0 15316 10257 0 0 3095 2611 0 0 103096 12274 0 0 93001 12709 0 0 3095 0 0 1071 1147 1345 9620 0 0 4.09081 4.09081 -144.267 -4.09081 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0107735 0.00960511 96 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 4.22 vpr 53.74 MiB -1 -1 0.12 17560 1 0.01 -1 -1 29772 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55032 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 15.2 MiB 0.61 834 53.7 MiB 0.05 0.00 3.40815 -107.803 -3.40815 3.40815 0.56 0.00011535 9.2331e-05 0.0103928 0.00853118 42 2876 30 6.99608e+06 220735 744469. 2576.02 1.46 0.0472946 0.0396779 27202 183097 -1 2060 23 1652 2259 200758 43161 0 0 200758 43161 2259 2083 0 0 7633 6564 0 0 12948 9016 0 0 2259 2121 0 0 86206 11463 0 0 89453 11914 0 0 2259 0 0 607 647 580 5307 0 0 3.37756 3.37756 -123.831 -3.37756 0 0 949917. 3286.91 0.23 0.04 0.09 -1 -1 0.23 0.0101408 0.00905975 84 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 5.34 vpr 53.77 MiB -1 -1 0.09 17676 1 0.01 -1 -1 29728 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55060 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 15.2 MiB 0.66 859 53.8 MiB 0.04 0.00 2.59239 -95.4645 -2.59239 2.59239 0.56 0.000113537 9.1107e-05 0.00891584 0.00739132 46 2528 50 6.99608e+06 220735 828058. 2865.25 2.53 0.0538588 0.045731 28066 200906 -1 1769 23 1823 2248 157905 36982 0 0 157905 36982 2248 1975 0 0 6929 6070 0 0 11685 7563 0 0 2248 2060 0 0 69363 9460 0 0 65432 9854 0 0 2248 0 0 425 487 424 4712 0 0 2.82976 2.82976 -115.789 -2.82976 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.00942693 0.00839265 89 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 4.64 vpr 53.22 MiB -1 -1 0.08 17000 1 0.01 -1 -1 29632 -1 -1 10 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54496 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 14.8 MiB 1.33 584 53.2 MiB 0.03 0.00 1.95956 -74.3324 -1.95956 1.95956 0.56 8.0668e-05 6.4041e-05 0.00684513 0.00557355 36 1532 25 6.99608e+06 147157 648988. 2245.63 1.29 0.0313714 0.0260483 26050 158493 -1 1212 18 732 803 71140 16078 0 0 71140 16078 803 757 0 0 2937 2587 0 0 4276 3267 0 0 803 762 0 0 31376 4282 0 0 30945 4423 0 0 803 0 0 71 56 71 1143 0 0 2.11243 2.11243 -86.5055 -2.11243 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.00588263 0.00526247 52 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 5.37 vpr 53.53 MiB -1 -1 0.10 17464 1 0.01 -1 -1 29760 -1 -1 13 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54816 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 15.0 MiB 1.64 882 53.5 MiB 0.03 0.00 3.02472 -102.017 -3.02472 3.02472 0.56 0.00010379 8.2928e-05 0.0068161 0.0056406 38 2177 28 6.99608e+06 191304 678818. 2348.85 1.65 0.0393532 0.033212 26626 170182 -1 1911 21 1537 2117 202282 40806 0 0 202282 40806 2117 1909 0 0 6534 5774 0 0 11079 7154 0 0 2117 1928 0 0 94707 10787 0 0 85728 13254 0 0 2117 0 0 580 375 597 4955 0 0 3.57611 3.57611 -134.669 -3.57611 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0083495 0.00748629 72 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.10 vpr 53.77 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29748 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55064 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 15.2 MiB 1.01 779 53.8 MiB 0.06 0.00 3.38154 -106.186 -3.38154 3.38154 0.57 0.000121151 9.6992e-05 0.0118089 0.00963191 46 2358 26 6.99608e+06 294314 828058. 2865.25 1.91 0.0512937 0.0432484 28066 200906 -1 1874 22 1707 2576 212448 46466 0 0 212448 46466 2576 2106 0 0 8038 7197 0 0 13385 8876 0 0 2576 2197 0 0 91297 12461 0 0 94576 13629 0 0 2576 0 0 869 930 1023 8084 0 0 4.0598 4.0598 -137.619 -4.0598 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.00978694 0.00874027 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 8.39 vpr 53.95 MiB -1 -1 0.10 17748 1 0.01 -1 -1 29724 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55240 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 15.5 MiB 1.67 1255 53.9 MiB 0.05 0.00 3.72134 -121.721 -3.72134 3.72134 0.61 0.000126057 9.9713e-05 0.00942609 0.00772954 38 3427 37 6.99608e+06 235451 678818. 2348.85 4.53 0.0607931 0.051832 26626 170182 -1 2727 20 2028 2996 256320 49896 0 0 256320 49896 2996 2475 0 0 8968 7805 0 0 14402 9593 0 0 2996 2624 0 0 114025 14077 0 0 112933 13322 0 0 2996 0 0 968 1112 1256 8824 0 0 4.05711 4.05711 -143.247 -4.05711 0 0 902133. 3121.57 0.21 0.04 0.08 -1 -1 0.21 0.0100028 0.00897889 100 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.10 vpr 53.04 MiB -1 -1 0.09 17088 1 0.01 -1 -1 29704 -1 -1 13 26 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54312 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 14.5 MiB 1.57 406 53.0 MiB 0.02 0.00 2.2286 -62.8623 -2.2286 2.2286 0.57 7.0968e-05 5.612e-05 0.00475859 0.00388132 36 1597 38 6.99608e+06 191304 648988. 2245.63 1.50 0.0291939 0.0243785 26050 158493 -1 995 21 791 879 78023 18058 0 0 78023 18058 879 844 0 0 2922 2524 0 0 4857 3329 0 0 879 850 0 0 33402 5179 0 0 35084 5332 0 0 879 0 0 88 75 97 1315 0 0 2.38147 2.38147 -76.067 -2.38147 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.00553814 0.00490755 53 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 4.60 vpr 53.40 MiB -1 -1 0.10 17256 1 0.01 -1 -1 29724 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54684 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 14.9 MiB 0.75 689 53.4 MiB 0.04 0.00 3.7303 -91.18 -3.7303 3.7303 0.56 0.000106476 8.4455e-05 0.00865811 0.00713218 44 2305 26 6.99608e+06 220735 787024. 2723.27 1.60 0.0447957 0.038075 27778 195446 -1 1559 22 1150 1942 139130 32563 0 0 139130 32563 1942 1587 0 0 6059 5280 0 0 10169 6877 0 0 1942 1712 0 0 60256 7756 0 0 58762 9351 0 0 1942 0 0 792 988 807 6725 0 0 3.78966 3.78966 -120.217 -3.78966 0 0 997811. 3452.63 0.30 0.03 0.11 -1 -1 0.30 0.00862708 0.00769448 66 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 3.11 vpr 52.92 MiB -1 -1 0.07 16692 1 0.01 -1 -1 29608 -1 -1 8 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54188 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 14.4 MiB 0.15 394 52.9 MiB 0.02 0.00 1.65401 -54.7665 -1.65401 1.65401 0.55 7.2919e-05 5.7608e-05 0.0049825 0.00404729 36 1186 20 6.99608e+06 117725 648988. 2245.63 0.98 0.0256604 0.0215881 26050 158493 -1 938 17 628 726 61036 15077 0 0 61036 15077 726 686 0 0 2508 2240 0 0 3996 2931 0 0 726 690 0 0 24252 4604 0 0 28828 3926 0 0 726 0 0 98 36 110 1200 0 0 2.17998 2.17998 -71.9415 -2.17998 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.00470681 0.00422105 42 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 4.70 vpr 53.60 MiB -1 -1 0.09 17384 1 0.01 -1 -1 29704 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 15.0 MiB 0.87 989 53.6 MiB 0.05 0.00 3.59843 -105.336 -3.59843 3.59843 0.56 0.000114412 9.2396e-05 0.0101313 0.00838115 36 2662 24 6.99608e+06 206020 648988. 2245.63 1.75 0.044943 0.037953 26050 158493 -1 2251 21 1412 2028 173425 35108 0 0 173425 35108 2028 1734 0 0 6386 5565 0 0 10823 7204 0 0 2028 1797 0 0 76005 9554 0 0 76155 9254 0 0 2028 0 0 616 596 663 5439 0 0 3.93781 3.93781 -130.565 -3.93781 0 0 828058. 2865.25 0.21 0.04 0.09 -1 -1 0.21 0.00900039 0.0080201 73 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 3.90 vpr 53.54 MiB -1 -1 0.08 17276 1 0.01 -1 -1 29768 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54820 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 15.0 MiB 0.37 772 53.5 MiB 0.04 0.00 2.34075 -79.5041 -2.34075 2.34075 0.56 0.000109104 8.6849e-05 0.00796662 0.00651422 42 2317 43 6.99608e+06 309029 744469. 2576.02 1.42 0.0449826 0.0377951 27202 183097 -1 1659 22 1409 2323 172041 40008 0 0 172041 40008 2323 1720 0 0 7860 6880 0 0 13420 9128 0 0 2323 1860 0 0 70514 10564 0 0 75601 9856 0 0 2323 0 0 914 982 1270 8353 0 0 3.10587 3.10587 -107.333 -3.10587 0 0 949917. 3286.91 0.23 0.03 0.09 -1 -1 0.23 0.00864085 0.00768902 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 5.79 vpr 53.67 MiB -1 -1 0.10 17396 1 0.01 -1 -1 29748 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54956 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 15.1 MiB 1.13 892 53.7 MiB 0.05 0.00 3.45778 -104.549 -3.45778 3.45778 0.56 0.000117571 9.3436e-05 0.0102744 0.0084323 40 3175 44 6.99608e+06 220735 706193. 2443.58 2.52 0.0569961 0.0482808 26914 176310 -1 2285 24 1990 3061 289450 70897 0 0 289450 70897 3061 2593 0 0 9914 8689 0 0 19141 11826 0 0 3061 2733 0 0 127410 22364 0 0 126863 22692 0 0 3061 0 0 1071 1289 1348 9635 0 0 4.18872 4.18872 -137.022 -4.18872 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0102637 0.00915724 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 5.77 vpr 53.49 MiB -1 -1 0.09 17372 1 0.01 -1 -1 29732 -1 -1 12 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 14.9 MiB 1.74 826 53.5 MiB 0.04 0.00 2.63455 -89.7695 -2.63455 2.63455 0.56 0.000110172 8.9247e-05 0.00787606 0.00655026 36 2433 36 6.99608e+06 176588 648988. 2245.63 1.98 0.0453082 0.0383773 26050 158493 -1 1931 21 1210 1714 138850 29793 0 0 138850 29793 1714 1441 0 0 5603 4790 0 0 9373 6500 0 0 1714 1558 0 0 59908 8082 0 0 60538 7422 0 0 1714 0 0 504 446 516 4382 0 0 3.16327 3.16327 -118.692 -3.16327 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00816267 0.00729179 69 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 4.49 vpr 53.43 MiB -1 -1 0.09 17588 1 0.01 -1 -1 29668 -1 -1 14 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54716 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 15.0 MiB 1.10 723 53.4 MiB 0.04 0.00 2.92097 -88.8022 -2.92097 2.92097 0.56 0.000101148 8.1205e-05 0.00793336 0.00656415 44 1864 29 6.99608e+06 206020 787024. 2723.27 1.31 0.0380342 0.0321555 27778 195446 -1 1551 19 1173 1798 139336 30321 0 0 139336 30321 1798 1440 0 0 5783 5170 0 0 9664 6563 0 0 1798 1501 0 0 55338 8683 0 0 64955 6964 0 0 1798 0 0 625 561 707 5393 0 0 3.17871 3.17871 -108.692 -3.17871 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.00728842 0.0065431 66 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 5.54 vpr 53.37 MiB -1 -1 0.09 17004 1 0.01 -1 -1 29764 -1 -1 18 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54652 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 14.9 MiB 0.58 631 53.4 MiB 0.04 0.00 2.61364 -82.2635 -2.61364 2.61364 0.56 9.5777e-05 7.6663e-05 0.00842793 0.00687727 36 2392 42 6.99608e+06 264882 648988. 2245.63 2.91 0.0436736 0.0367387 26050 158493 -1 1654 19 1197 1877 157826 34865 0 0 157826 34865 1877 1542 0 0 6076 5278 0 0 10266 7146 0 0 1877 1609 0 0 65772 10063 0 0 71958 9227 0 0 1877 0 0 680 755 664 5730 0 0 3.37901 3.37901 -113.842 -3.37901 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00713184 0.00636349 69 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 3.46 vpr 53.25 MiB -1 -1 0.09 17048 1 0.01 -1 -1 29656 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54524 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 14.6 MiB 0.28 561 53.2 MiB 0.03 0.00 2.68955 -87.1588 -2.68955 2.68955 0.56 9.8843e-05 7.8913e-05 0.007043 0.00580176 40 1597 25 6.99608e+06 147157 706193. 2443.58 1.11 0.0364044 0.0307988 26914 176310 -1 1314 21 1142 1702 131581 31591 0 0 131581 31591 1702 1340 0 0 5598 4966 0 0 9845 6507 0 0 1702 1408 0 0 58142 7929 0 0 54592 9441 0 0 1702 0 0 560 566 500 4634 0 0 3.16887 3.16887 -114.14 -3.16887 0 0 926341. 3205.33 0.22 0.03 0.09 -1 -1 0.22 0.00746999 0.00666454 58 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 4.41 vpr 53.52 MiB -1 -1 0.09 17500 1 0.01 -1 -1 29676 -1 -1 13 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54804 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 15.1 MiB 0.65 897 53.5 MiB 0.03 0.00 2.62898 -90.3488 -2.62898 2.62898 0.57 9.8726e-05 7.9061e-05 0.00539704 0.00449058 38 2303 34 6.99608e+06 191304 678818. 2348.85 1.70 0.0377255 0.0319537 26626 170182 -1 1989 21 1203 1600 143206 28589 0 0 143206 28589 1600 1420 0 0 5045 4381 0 0 8030 5529 0 0 1600 1441 0 0 64026 7722 0 0 62905 8096 0 0 1600 0 0 397 501 488 4136 0 0 3.02182 3.02182 -113.711 -3.02182 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00781164 0.00695672 69 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.77 vpr 53.66 MiB -1 -1 0.10 17464 1 0.01 -1 -1 29740 -1 -1 15 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54952 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 15.0 MiB 1.95 966 53.7 MiB 0.03 0.00 2.45385 -87.8965 -2.45385 2.45385 0.57 0.000100939 8.0504e-05 0.00654525 0.0054605 40 2227 41 6.99608e+06 220735 706193. 2443.58 4.64 0.0701124 0.0587364 26914 176310 -1 2111 19 1486 1954 228832 51401 0 0 228832 51401 1954 1691 0 0 6403 5620 0 0 12193 7826 0 0 1954 1750 0 0 107589 16003 0 0 98739 18511 0 0 1954 0 0 468 331 651 4598 0 0 2.78498 2.78498 -108.997 -2.78498 0 0 926341. 3205.33 0.27 0.04 0.09 -1 -1 0.27 0.00774745 0.0069417 77 48 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 5.10 vpr 53.85 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29644 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55144 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 15.2 MiB 0.91 1088 53.9 MiB 0.04 0.00 3.53733 -102.777 -3.53733 3.53733 0.56 0.000128496 0.000103545 0.00804163 0.00673291 40 3287 28 6.99608e+06 235451 706193. 2443.58 1.98 0.050178 0.0424787 26914 176310 -1 2618 20 1718 2703 227368 49511 0 0 227368 49511 2703 2121 0 0 8869 7565 0 0 15380 10322 0 0 2703 2276 0 0 99640 13323 0 0 98073 13904 0 0 2703 0 0 985 1406 1562 10816 0 0 3.87017 3.87017 -133.44 -3.87017 0 0 926341. 3205.33 0.22 0.06 0.09 -1 -1 0.22 0.014872 0.013223 92 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 5.42 vpr 54.04 MiB -1 -1 0.09 17468 1 0.01 -1 -1 29840 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55340 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 15.4 MiB 1.14 1168 54.0 MiB 0.05 0.00 3.42916 -124.529 -3.42916 3.42916 0.55 0.000129711 0.000103867 0.0112557 0.00920684 40 3232 28 6.99608e+06 279598 706193. 2443.58 2.14 0.054937 0.0464081 26914 176310 -1 2912 22 2638 3670 383276 83109 0 0 383276 83109 3670 3150 0 0 11633 10351 0 0 21749 13608 0 0 3670 3326 0 0 173638 26380 0 0 168916 26294 0 0 3670 0 0 1032 1260 1165 9623 0 0 4.1148 4.1148 -162.364 -4.1148 0 0 926341. 3205.33 0.22 0.06 0.09 -1 -1 0.22 0.0110401 0.00985228 106 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 4.42 vpr 53.50 MiB -1 -1 0.15 17460 1 0.01 -1 -1 29688 -1 -1 11 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54788 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 14.9 MiB 0.96 911 53.5 MiB 0.03 0.00 2.87547 -98.0114 -2.87547 2.87547 0.56 0.000101469 8.0344e-05 0.00729653 0.00597541 38 2183 24 6.99608e+06 161872 678818. 2348.85 1.32 0.0374178 0.0314397 26626 170182 -1 1873 21 1345 1985 165227 33180 0 0 165227 33180 1985 1658 0 0 5933 5290 0 0 10180 6478 0 0 1985 1708 0 0 68474 10037 0 0 76670 8009 0 0 1985 0 0 640 771 915 6133 0 0 3.07697 3.07697 -116.995 -3.07697 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00790433 0.0070828 66 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 5.81 vpr 53.92 MiB -1 -1 0.10 17396 1 0.01 -1 -1 29776 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55212 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 15.5 MiB 1.21 1112 53.9 MiB 0.05 0.00 2.89729 -104.102 -2.89729 2.89729 0.56 0.000127265 0.000102112 0.0108137 0.00891847 38 3049 45 6.99608e+06 250167 678818. 2348.85 2.44 0.0592827 0.0500428 26626 170182 -1 2498 22 1782 2504 188147 39544 0 0 188147 39544 2504 2123 0 0 7754 6740 0 0 12033 8301 0 0 2504 2163 0 0 81202 10336 0 0 82150 9881 0 0 2504 0 0 722 851 711 6680 0 0 3.55136 3.55136 -134.565 -3.55136 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0106025 0.00947376 99 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 6.16 vpr 54.21 MiB -1 -1 0.10 17652 1 0.01 -1 -1 29760 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55508 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 15.5 MiB 1.18 1067 54.2 MiB 0.06 0.00 4.12206 -131.019 -4.12206 4.12206 0.56 0.000128206 0.000103181 0.0125691 0.0103304 40 3457 49 6.99608e+06 250167 706193. 2443.58 2.83 0.0619596 0.0524024 26914 176310 -1 2873 23 2600 3661 392810 81712 0 0 392810 81712 3661 3382 0 0 11791 10442 0 0 22001 13902 0 0 3661 3438 0 0 178846 25149 0 0 172850 25399 0 0 3661 0 0 1061 1017 1137 8998 0 0 5.0031 5.0031 -173.027 -5.0031 0 0 926341. 3205.33 0.22 0.06 0.09 -1 -1 0.22 0.011069 0.00989564 104 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 6.15 vpr 54.02 MiB -1 -1 0.13 17960 1 0.01 -1 -1 29796 -1 -1 18 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55320 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 15.5 MiB 2.40 1127 54.0 MiB 0.05 0.00 4.31328 -138.743 -4.31328 4.31328 0.56 0.000129367 0.000103429 0.00997027 0.008191 44 3222 22 6.99608e+06 264882 787024. 2723.27 1.55 0.0494698 0.0417326 27778 195446 -1 2471 21 1874 2644 233862 47273 0 0 233862 47273 2644 2184 0 0 8446 7348 0 0 14134 9629 0 0 2644 2273 0 0 105356 12546 0 0 100638 13293 0 0 2644 0 0 770 519 704 6339 0 0 4.59134 4.59134 -166.878 -4.59134 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0105999 0.00950323 103 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 5.80 vpr 53.82 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29828 -1 -1 16 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55108 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 15.2 MiB 1.66 911 53.8 MiB 0.05 0.00 3.12612 -101.65 -3.12612 3.12612 0.56 0.00012117 9.6959e-05 0.0120254 0.00989667 48 2940 39 6.99608e+06 235451 865456. 2994.66 1.94 0.0536275 0.0451738 28354 207349 -1 2215 22 1742 2362 219480 49160 0 0 219480 49160 2362 2106 0 0 7970 6961 0 0 14207 9436 0 0 2362 2169 0 0 90513 14702 0 0 102066 13786 0 0 2362 0 0 620 670 750 5978 0 0 3.41986 3.41986 -124.849 -3.41986 0 0 1.05005e+06 3633.38 0.26 0.04 0.11 -1 -1 0.26 0.0101784 0.00910571 93 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 11.64 vpr 53.57 MiB -1 -1 0.14 17348 1 0.01 -1 -1 29716 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54852 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 15.0 MiB 0.72 862 53.6 MiB 0.05 0.00 3.47308 -98.4296 -3.47308 3.47308 0.55 0.000108066 8.6853e-05 0.0102467 0.00841763 40 2521 23 6.99608e+06 206020 706193. 2443.58 8.73 0.0793145 0.0670396 26914 176310 -1 2209 25 1550 2177 229089 48408 0 0 229089 48408 2177 1793 0 0 7079 6168 0 0 12781 8202 0 0 2177 1922 0 0 100964 15439 0 0 103911 14884 0 0 2177 0 0 627 658 578 5512 0 0 4.52956 4.52956 -132.697 -4.52956 0 0 926341. 3205.33 0.23 0.04 0.09 -1 -1 0.23 0.00934399 0.00829346 72 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 6.09 vpr 54.29 MiB -1 -1 0.11 17776 1 0.01 -1 -1 29968 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55588 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 16.1 MiB 1.05 1477 54.3 MiB 0.05 0.00 3.8744 -137.164 -3.8744 3.8744 0.56 0.000153049 0.000123507 0.0103902 0.00865771 40 4178 30 6.99608e+06 309029 706193. 2443.58 2.84 0.0619095 0.0525346 26914 176310 -1 3695 22 2797 4127 415063 80577 0 0 415063 80577 4127 3713 0 0 13090 11430 0 0 24358 15203 0 0 4127 3833 0 0 181443 23275 0 0 187918 23123 0 0 4127 0 0 1330 1808 1906 12855 0 0 5.36794 5.36794 -189.19 -5.36794 0 0 926341. 3205.33 0.23 0.07 0.09 -1 -1 0.23 0.0130196 0.0116615 129 84 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 6.23 vpr 53.43 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29724 -1 -1 11 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54712 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 15.0 MiB 2.52 530 53.4 MiB 0.03 0.00 2.5612 -80.5114 -2.5612 2.5612 0.56 9.3625e-05 7.4128e-05 0.00745536 0.00608449 46 1773 35 6.99608e+06 161872 828058. 2865.25 1.62 0.0392832 0.0330384 28066 200906 -1 1207 20 1136 1478 83796 22265 0 0 83796 22265 1478 1246 0 0 4739 4150 0 0 7445 5331 0 0 1478 1289 0 0 35158 4803 0 0 33498 5446 0 0 1478 0 0 342 314 189 3021 0 0 2.95667 2.95667 -99.1062 -2.95667 0 0 1.01997e+06 3529.29 0.25 0.02 0.10 -1 -1 0.25 0.00722378 0.00647041 65 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 12.94 vpr 53.79 MiB -1 -1 0.10 17336 1 0.01 -1 -1 29816 -1 -1 15 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55076 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 15.3 MiB 0.49 937 53.8 MiB 0.05 0.00 3.70767 -117.828 -3.70767 3.70767 0.56 0.000121651 9.765e-05 0.0119127 0.0097967 40 3053 33 6.99608e+06 220735 706193. 2443.58 10.28 0.0998154 0.0845438 26914 176310 -1 2405 24 2092 2980 311130 65490 0 0 311130 65490 2980 2761 0 0 9339 8062 0 0 18036 10937 0 0 2980 2827 0 0 140126 20641 0 0 137669 20262 0 0 2980 0 0 888 1166 1054 8344 0 0 4.252 4.252 -146.184 -4.252 0 0 926341. 3205.33 0.22 0.05 0.10 -1 -1 0.22 0.0103665 0.00925671 85 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 12.94 vpr 53.88 MiB -1 -1 0.10 17644 1 0.02 -1 -1 29736 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55168 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 15.3 MiB 0.97 1079 53.9 MiB 0.04 0.00 3.12594 -104.104 -3.12594 3.12594 0.56 0.000121829 9.7558e-05 0.00822946 0.00681044 46 3088 44 6.99608e+06 220735 828058. 2865.25 9.81 0.0959233 0.080818 28066 200906 -1 2248 22 1346 1982 152923 34884 0 0 152923 34884 1982 1605 0 0 6473 5626 0 0 9997 7027 0 0 1982 1718 0 0 66183 9172 0 0 66306 9736 0 0 1982 0 0 636 618 614 5456 0 0 3.59066 3.59066 -125.17 -3.59066 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0102031 0.00916321 91 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 10.35 vpr 53.52 MiB -1 -1 0.09 17184 1 0.01 -1 -1 29724 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 14.9 MiB 0.65 679 53.5 MiB 0.04 0.00 3.61243 -98.3379 -3.61243 3.61243 0.56 0.000108179 8.6047e-05 0.00799422 0.00656057 48 2004 39 6.99608e+06 235451 865456. 2994.66 7.59 0.0887443 0.0752422 28354 207349 -1 1520 20 1082 1901 136912 33293 0 0 136912 33293 1901 1525 0 0 6420 5627 0 0 11872 7770 0 0 1901 1618 0 0 57042 8017 0 0 57776 8736 0 0 1901 0 0 819 1074 870 7176 0 0 3.78887 3.78887 -116.574 -3.78887 0 0 1.05005e+06 3633.38 0.26 0.03 0.10 -1 -1 0.26 0.00830797 0.00746943 68 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.57 vpr 53.83 MiB -1 -1 0.11 17496 1 0.02 -1 -1 29836 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55120 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 15.2 MiB 0.96 934 53.8 MiB 0.04 0.00 3.39715 -105.948 -3.39715 3.39715 0.56 0.00012636 0.000101906 0.0110816 0.00915621 38 3177 37 6.99608e+06 220735 678818. 2348.85 3.50 0.0565917 0.0477515 26626 170182 -1 2213 23 1737 2267 182383 39167 0 0 182383 39167 2267 2042 0 0 7025 6097 0 0 11245 7663 0 0 2267 2118 0 0 81124 10443 0 0 78455 10804 0 0 2267 0 0 530 668 601 5342 0 0 3.74246 3.74246 -132.263 -3.74246 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0102313 0.00910593 90 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 14.42 vpr 53.95 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29716 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55240 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 15.3 MiB 1.20 1037 53.9 MiB 0.06 0.00 3.02259 -101.392 -3.02259 3.02259 0.56 0.000133034 0.000107607 0.0128925 0.0106634 40 3714 38 6.99608e+06 220735 706193. 2443.58 11.01 0.109556 0.0934705 26914 176310 -1 2679 23 1851 2829 340495 80763 0 0 340495 80763 2829 2432 0 0 9776 8385 0 0 18059 11959 0 0 2829 2542 0 0 155422 28648 0 0 151580 26797 0 0 2829 0 0 978 1527 1532 10368 0 0 3.82797 3.82797 -141.356 -3.82797 0 0 926341. 3205.33 0.25 0.06 0.09 -1 -1 0.25 0.0106729 0.00951692 92 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 5.63 vpr 53.99 MiB -1 -1 0.10 17516 1 0.01 -1 -1 29704 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55284 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 15.5 MiB 1.80 973 54.0 MiB 0.06 0.00 3.15907 -105.825 -3.15907 3.15907 0.56 0.000130095 0.000104193 0.011872 0.00981028 50 2831 23 6.99608e+06 235451 902133. 3121.57 1.61 0.0535859 0.0452788 28642 213929 -1 2112 21 1909 2550 210849 47157 0 0 210849 47157 2550 2087 0 0 8316 7179 0 0 13630 9330 0 0 2550 2157 0 0 96875 12503 0 0 86928 13901 0 0 2550 0 0 641 750 724 6215 0 0 3.34751 3.34751 -123.007 -3.34751 0 0 1.08113e+06 3740.92 0.26 0.04 0.11 -1 -1 0.26 0.0106643 0.00951848 101 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 4.47 vpr 53.72 MiB -1 -1 0.08 17496 1 0.01 -1 -1 29760 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 15.0 MiB 0.72 764 53.7 MiB 0.04 0.00 3.71143 -99.6524 -3.71143 3.71143 0.56 0.000109874 8.7483e-05 0.00860389 0.00705893 46 2220 35 6.99608e+06 206020 828058. 2865.25 1.63 0.0446517 0.0376098 28066 200906 -1 1633 20 1198 1827 119371 30181 0 0 119371 30181 1827 1545 0 0 5883 5271 0 0 9378 6553 0 0 1827 1625 0 0 47742 7787 0 0 52714 7400 0 0 1827 0 0 629 635 594 5357 0 0 3.92211 3.92211 -123.782 -3.92211 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00865233 0.00776746 74 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 5.33 vpr 53.76 MiB -1 -1 0.14 17460 1 0.01 -1 -1 29784 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 15.3 MiB 1.52 765 53.8 MiB 0.04 0.00 3.46208 -104.17 -3.46208 3.46208 0.56 0.000110901 8.8389e-05 0.00881679 0.00724869 46 2449 27 6.99608e+06 191304 828058. 2865.25 1.62 0.0447252 0.0377454 28066 200906 -1 1790 21 1539 2078 152663 37113 0 0 152663 37113 2078 1763 0 0 6699 6057 0 0 11104 7577 0 0 2078 1833 0 0 65803 9718 0 0 64901 10165 0 0 2078 0 0 539 554 490 4773 0 0 4.30096 4.30096 -135.218 -4.30096 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00901075 0.00808035 81 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 4.39 vpr 53.77 MiB -1 -1 0.09 17724 1 0.02 -1 -1 29756 -1 -1 16 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55064 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 15.3 MiB 0.69 988 53.8 MiB 0.05 0.00 3.43501 -109.106 -3.43501 3.43501 0.56 0.000125901 0.000101144 0.0102499 0.00843858 46 2930 28 6.99608e+06 235451 828058. 2865.25 1.55 0.0507746 0.0427622 28066 200906 -1 2033 22 1812 2722 167792 40689 0 0 167792 40689 2722 2258 0 0 8569 7587 0 0 13830 9356 0 0 2722 2335 0 0 69263 9805 0 0 70686 9348 0 0 2722 0 0 910 951 648 7565 0 0 4.15891 4.15891 -134.079 -4.15891 0 0 1.01997e+06 3529.29 0.24 0.04 0.10 -1 -1 0.24 0.0107119 0.00960491 99 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 4.91 vpr 54.01 MiB -1 -1 0.12 17476 1 0.00 -1 -1 29780 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55304 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 15.5 MiB 0.76 1119 54.0 MiB 0.05 0.00 3.11332 -104.683 -3.11332 3.11332 0.56 0.000133488 0.00010707 0.0113647 0.00930206 48 3405 33 6.99608e+06 235451 865456. 2994.66 1.95 0.0558415 0.0471094 28354 207349 -1 2664 24 2268 3378 307906 66299 0 0 307906 66299 3378 2726 0 0 11118 9862 0 0 20362 13163 0 0 3378 3007 0 0 127032 19628 0 0 142638 17913 0 0 3378 0 0 1110 1105 1201 9294 0 0 4.13672 4.13672 -142.578 -4.13672 0 0 1.05005e+06 3633.38 0.26 0.05 0.11 -1 -1 0.26 0.0116644 0.0103997 104 74 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 3.65 vpr 53.28 MiB -1 -1 0.09 17296 1 0.01 -1 -1 29652 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54556 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 14.7 MiB 0.43 606 53.3 MiB 0.03 0.00 2.58978 -78.1679 -2.58978 2.58978 0.55 9.3181e-05 7.3442e-05 0.00752273 0.00612439 48 1488 26 6.99608e+06 147157 865456. 2994.66 1.11 0.0358574 0.0301766 28354 207349 -1 1153 16 786 1076 70061 19671 0 0 70061 19671 1076 877 0 0 3940 3437 0 0 6423 4835 0 0 1076 966 0 0 27115 4984 0 0 30431 4572 0 0 1076 0 0 290 282 288 2668 0 0 2.97282 2.97282 -95.9258 -2.97282 0 0 1.05005e+06 3633.38 0.25 0.02 0.10 -1 -1 0.25 0.00626586 0.00567936 60 20 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 5.91 vpr 53.84 MiB -1 -1 0.10 17580 1 0.02 -1 -1 29708 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 15.3 MiB 0.62 880 53.8 MiB 0.05 0.00 3.31348 -119.119 -3.31348 3.31348 0.56 0.000114543 9.1213e-05 0.00988036 0.00808312 40 3203 38 6.99608e+06 220735 706193. 2443.58 3.07 0.0577515 0.0492398 26914 176310 -1 2623 22 2238 2961 332718 68351 0 0 332718 68351 2961 2674 0 0 9310 8299 0 0 17572 10886 0 0 2961 2770 0 0 158803 20272 0 0 141111 23450 0 0 2961 0 0 723 698 731 6559 0 0 4.50881 4.50881 -160.233 -4.50881 0 0 926341. 3205.33 0.23 0.05 0.09 -1 -1 0.23 0.00967758 0.00865655 93 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 5.62 vpr 54.16 MiB -1 -1 0.09 17724 1 0.01 -1 -1 29916 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55456 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 15.6 MiB 0.80 1196 54.2 MiB 0.05 0.00 4.10482 -128.774 -4.10482 4.10482 0.56 0.000135029 0.000108422 0.0111261 0.00920841 46 3768 28 6.99608e+06 235451 828058. 2865.25 2.59 0.0574076 0.0487344 28066 200906 -1 2817 20 1899 2965 237936 47330 0 0 237936 47330 2965 2456 0 0 9002 7835 0 0 14539 9653 0 0 2965 2601 0 0 99016 13808 0 0 109449 10977 0 0 2965 0 0 1066 1279 1128 9022 0 0 4.89076 4.89076 -158.919 -4.89076 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0108112 0.0096788 98 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 4.18 vpr 53.80 MiB -1 -1 0.10 17476 1 0.01 -1 -1 29664 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55096 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 15.3 MiB 0.48 838 53.8 MiB 0.05 0.00 3.52245 -112.99 -3.52245 3.52245 0.56 0.000126674 0.000102335 0.0113337 0.00936885 44 2681 27 6.99608e+06 220735 787024. 2723.27 1.56 0.0503492 0.0424761 27778 195446 -1 1832 21 1653 2272 160896 36630 0 0 160896 36630 2272 1849 0 0 6935 6102 0 0 12015 7913 0 0 2272 1997 0 0 71146 8911 0 0 66256 9858 0 0 2272 0 0 619 683 689 5877 0 0 3.47186 3.47186 -128.76 -3.47186 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0095575 0.0085308 85 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 6.47 vpr 53.63 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29748 -1 -1 20 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 15.1 MiB 0.95 688 53.6 MiB 0.04 0.00 3.02694 -92.7898 -3.02694 3.02694 0.56 0.000100624 8.0363e-05 0.00804887 0.00657314 36 2570 45 6.99608e+06 294314 648988. 2245.63 3.44 0.0465809 0.0392261 26050 158493 -1 1769 20 1260 2046 178947 37969 0 0 178947 37969 2046 1636 0 0 6420 5490 0 0 11340 7322 0 0 2046 1756 0 0 79407 10474 0 0 77688 11291 0 0 2046 0 0 786 1003 1019 7532 0 0 3.47436 3.47436 -118.761 -3.47436 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.0076115 0.00680072 72 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 5.42 vpr 54.39 MiB -1 -1 0.10 17908 1 0.01 -1 -1 29888 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55700 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 15.8 MiB 1.32 1349 54.4 MiB 0.06 0.00 4.83158 -151.15 -4.83158 4.83158 0.56 0.000146975 0.00011835 0.012307 0.0102018 44 3848 42 6.99608e+06 264882 787024. 2723.27 1.86 0.0640885 0.0543186 27778 195446 -1 2904 21 2545 3812 304112 60260 0 0 304112 60260 3812 2985 0 0 11403 10076 0 0 20273 12799 0 0 3812 3122 0 0 130470 16246 0 0 134342 15032 0 0 3812 0 0 1267 1569 1353 11249 0 0 5.27418 5.27418 -179.289 -5.27418 0 0 997811. 3452.63 0.26 0.06 0.10 -1 -1 0.26 0.0125909 0.0113432 116 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 5.55 vpr 53.82 MiB -1 -1 0.10 17268 1 0.01 -1 -1 29628 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55112 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 15.3 MiB 0.47 734 53.8 MiB 0.04 0.00 3.97864 -114.648 -3.97864 3.97864 0.56 0.000120263 9.6676e-05 0.00791509 0.00658037 40 2586 39 6.99608e+06 206020 706193. 2443.58 2.95 0.0516886 0.0437175 26914 176310 -1 1905 23 1716 2294 185454 41715 0 0 185454 41715 2294 2017 0 0 7447 6363 0 0 12581 8373 0 0 2294 2062 0 0 81600 11234 0 0 79238 11666 0 0 2294 0 0 578 789 719 5902 0 0 4.19065 4.19065 -143.841 -4.19065 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.0099768 0.00891676 83 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 4.43 vpr 53.25 MiB -1 -1 0.09 16980 1 0.01 -1 -1 29556 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54528 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 14.7 MiB 0.16 523 53.2 MiB 0.03 0.00 2.4029 -74.0791 -2.4029 2.4029 0.56 9.0245e-05 7.1755e-05 0.00631218 0.00517034 40 1877 34 6.99608e+06 191304 706193. 2443.58 2.19 0.0378493 0.0320177 26914 176310 -1 1434 22 1051 1610 138741 36141 0 0 138741 36141 1610 1405 0 0 5585 4840 0 0 9914 6631 0 0 1610 1445 0 0 58183 10610 0 0 61839 11210 0 0 1610 0 0 559 642 786 5189 0 0 2.88167 2.88167 -101.418 -2.88167 0 0 926341. 3205.33 0.23 0.03 0.09 -1 -1 0.23 0.00705756 0.00627989 51 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 4.80 vpr 53.82 MiB -1 -1 0.15 17344 1 0.01 -1 -1 29776 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55116 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 15.3 MiB 1.04 1068 53.8 MiB 0.05 0.00 3.87622 -110.067 -3.87622 3.87622 0.56 0.000126259 0.000101951 0.0104748 0.00866032 54 2492 24 6.99608e+06 235451 949917. 3286.91 1.52 0.0485945 0.0412234 29506 232905 -1 1996 20 1328 2136 140501 30259 0 0 140501 30259 2136 1533 0 0 6765 5937 0 0 11480 7549 0 0 2136 1669 0 0 58633 6903 0 0 59351 6668 0 0 2136 0 0 808 1109 1291 8916 0 0 4.26726 4.26726 -130.38 -4.26726 0 0 1.17392e+06 4061.99 0.28 0.03 0.12 -1 -1 0.28 0.00966814 0.00869518 85 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 4.02 vpr 53.30 MiB -1 -1 0.12 16820 1 0.01 -1 -1 29692 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 14.7 MiB 0.70 487 53.3 MiB 0.03 0.00 2.5722 -81.981 -2.5722 2.5722 0.56 9.2954e-05 7.3522e-05 0.00709131 0.00580327 40 1831 29 6.99608e+06 206020 706193. 2443.58 1.24 0.0364287 0.0305044 26914 176310 -1 1432 24 1339 1891 140956 36096 0 0 140956 36096 1891 1616 0 0 6118 5220 0 0 10784 7103 0 0 1891 1684 0 0 58116 10205 0 0 62156 10268 0 0 1891 0 0 552 582 581 4934 0 0 3.10097 3.10097 -112.233 -3.10097 0 0 926341. 3205.33 0.22 0.03 0.09 -1 -1 0.22 0.00789567 0.00700853 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 3.96 vpr 53.54 MiB -1 -1 0.10 17340 1 0.01 -1 -1 29732 -1 -1 13 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54820 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 15.0 MiB 0.45 671 53.5 MiB 0.04 0.00 2.90847 -90.17 -2.90847 2.90847 0.56 9.9251e-05 7.9099e-05 0.00768652 0.00629589 44 1941 27 6.99608e+06 191304 787024. 2723.27 1.42 0.0392197 0.0330115 27778 195446 -1 1361 17 1069 1443 87391 21254 0 0 87391 21254 1443 1238 0 0 4673 4079 0 0 7786 5381 0 0 1443 1308 0 0 34497 5000 0 0 37549 4248 0 0 1443 0 0 374 455 408 3720 0 0 3.28551 3.28551 -109.515 -3.28551 0 0 997811. 3452.63 0.25 0.02 0.10 -1 -1 0.25 0.00712445 0.00643555 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.43 vpr 53.99 MiB -1 -1 0.12 17556 1 0.01 -1 -1 29724 -1 -1 18 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55288 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 15.3 MiB 1.37 1111 54.0 MiB 0.05 0.00 3.40046 -109.052 -3.40046 3.40046 0.56 0.000120761 9.6809e-05 0.0109565 0.00899898 38 3389 47 6.99608e+06 264882 678818. 2348.85 3.93 0.0589893 0.0500146 26626 170182 -1 2540 21 1841 2724 227152 46905 0 0 227152 46905 2724 2190 0 0 8358 7356 0 0 13709 9179 0 0 2724 2412 0 0 100967 12703 0 0 98670 13065 0 0 2724 0 0 883 753 824 7054 0 0 4.1331 4.1331 -141.362 -4.1331 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.00986178 0.00883916 97 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 10.44 vpr 53.90 MiB -1 -1 0.10 17520 1 0.01 -1 -1 29816 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55192 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 15.3 MiB 1.18 1138 53.9 MiB 0.05 0.00 3.50518 -121.326 -3.50518 3.50518 0.56 0.000124963 0.000100091 0.0112071 0.00919804 40 2837 28 6.99608e+06 220735 706193. 2443.58 7.11 0.097323 0.0817892 26914 176310 -1 2561 19 1896 2617 240657 49851 0 0 240657 49851 2617 2208 0 0 8577 7442 0 0 15064 9914 0 0 2617 2306 0 0 106539 14067 0 0 105243 13914 0 0 2617 0 0 721 628 757 6329 0 0 4.21921 4.21921 -153.728 -4.21921 0 0 926341. 3205.33 0.23 0.04 0.09 -1 -1 0.23 0.00964237 0.00867555 93 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 6.30 vpr 53.71 MiB -1 -1 0.11 17344 1 0.01 -1 -1 29652 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 15.1 MiB 1.68 1004 53.7 MiB 0.04 0.00 3.79817 -117.764 -3.79817 3.79817 0.55 0.00012256 9.8381e-05 0.00914687 0.00755838 38 3351 41 6.99608e+06 220735 678818. 2348.85 2.50 0.0533155 0.0451966 26626 170182 -1 2422 20 1922 2755 201444 43299 0 0 201444 43299 2755 2357 0 0 8429 7421 0 0 13590 9068 0 0 2755 2484 0 0 86852 11189 0 0 87063 10780 0 0 2755 0 0 833 853 859 7472 0 0 4.28345 4.28345 -148.955 -4.28345 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.00975271 0.00874298 90 48 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 5.26 vpr 53.48 MiB -1 -1 0.10 17440 1 0.01 -1 -1 29656 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 14.9 MiB 1.53 810 53.5 MiB 0.04 0.00 3.18112 -104.147 -3.18112 3.18112 0.56 9.9919e-05 7.9757e-05 0.00978566 0.00799601 46 1976 23 6.99608e+06 161872 828058. 2865.25 1.60 0.0400597 0.0337446 28066 200906 -1 1654 17 1136 1504 126812 25990 0 0 126812 25990 1504 1341 0 0 4771 4206 0 0 7972 5261 0 0 1504 1378 0 0 52805 7405 0 0 58256 6399 0 0 1504 0 0 368 231 367 3246 0 0 3.35756 3.35756 -117.683 -3.35756 0 0 1.01997e+06 3529.29 0.24 0.03 0.10 -1 -1 0.24 0.00709595 0.00640587 67 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 4.62 vpr 53.80 MiB -1 -1 0.09 17608 1 0.01 -1 -1 29744 -1 -1 14 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55096 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 15.3 MiB 0.69 785 53.8 MiB 0.05 0.00 3.04907 -100.076 -3.04907 3.04907 0.56 0.00011631 9.3366e-05 0.0104652 0.00861844 40 2430 33 6.99608e+06 206020 706193. 2443.58 1.83 0.0474449 0.0398828 26914 176310 -1 2149 20 1703 2403 211887 48110 0 0 211887 48110 2403 2191 0 0 7972 7027 0 0 14454 9685 0 0 2403 2236 0 0 86491 14248 0 0 98164 12723 0 0 2403 0 0 700 740 656 5899 0 0 3.37777 3.37777 -128.551 -3.37777 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.00881151 0.00789287 86 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 4.87 vpr 53.73 MiB -1 -1 0.11 17516 1 0.01 -1 -1 29700 -1 -1 19 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55016 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 15.2 MiB 0.91 842 53.7 MiB 0.05 0.00 2.82424 -91.6434 -2.82424 2.82424 0.57 0.000115428 9.271e-05 0.00993277 0.00815831 40 2578 23 6.99608e+06 279598 706193. 2443.58 1.80 0.0469934 0.0396039 26914 176310 -1 2185 18 1632 2360 223372 50355 0 0 223372 50355 2360 2022 0 0 8174 7122 0 0 14668 9780 0 0 2360 2110 0 0 95557 15271 0 0 100253 14050 0 0 2360 0 0 728 1204 1118 8208 0 0 3.35301 3.35301 -119.072 -3.35301 0 0 926341. 3205.33 0.23 0.04 0.09 -1 -1 0.23 0.00860499 0.00773986 91 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 8.06 vpr 53.46 MiB -1 -1 0.10 17680 1 0.01 -1 -1 29708 -1 -1 17 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54748 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 15.0 MiB 0.35 740 53.5 MiB 0.05 0.00 3.06285 -86.9863 -3.06285 3.06285 0.56 0.000100723 7.9975e-05 0.00944417 0.00768495 38 2195 23 6.99608e+06 250167 678818. 2348.85 5.61 0.0634642 0.0530707 26626 170182 -1 1779 23 1461 2164 185620 39486 0 0 185620 39486 2164 1739 0 0 6865 6047 0 0 11785 7575 0 0 2164 1838 0 0 80989 11328 0 0 81653 10959 0 0 2164 0 0 703 1034 977 7262 0 0 3.76396 3.76396 -113.379 -3.76396 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.00947716 0.00839949 71 20 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 4.87 vpr 53.73 MiB -1 -1 0.10 17580 1 0.01 -1 -1 29800 -1 -1 15 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55024 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 15.3 MiB 1.44 878 53.7 MiB 0.04 0.00 3.66581 -114.714 -3.66581 3.66581 0.55 0.000107079 8.5573e-05 0.00943867 0.00772367 42 2792 26 6.99608e+06 220735 744469. 2576.02 1.28 0.0433095 0.0362507 27202 183097 -1 2127 18 1622 2192 192877 41253 0 0 192877 41253 2192 2013 0 0 7320 6459 0 0 12486 8457 0 0 2192 2088 0 0 84321 11146 0 0 84366 11090 0 0 2192 0 0 570 437 563 4986 0 0 4.04565 4.04565 -141.948 -4.04565 0 0 949917. 3286.91 0.23 0.04 0.09 -1 -1 0.23 0.00824865 0.00743576 87 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 5.19 vpr 53.84 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29668 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55132 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 15.3 MiB 0.62 871 53.8 MiB 0.04 0.00 2.893 -98.0663 -2.893 2.893 0.56 0.000113352 9.0167e-05 0.00967477 0.00786326 46 3038 37 6.99608e+06 206020 828058. 2865.25 2.40 0.0512979 0.0433879 28066 200906 -1 1892 21 1743 2421 189115 41389 0 0 189115 41389 2421 1990 0 0 7567 6606 0 0 11949 8181 0 0 2421 2082 0 0 81951 10895 0 0 82806 11635 0 0 2421 0 0 678 644 414 5513 0 0 3.28342 3.28342 -122.592 -3.28342 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0091859 0.00822453 93 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 4.08 vpr 53.51 MiB -1 -1 0.10 17160 1 0.01 -1 -1 29660 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54792 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 14.9 MiB 0.29 764 53.5 MiB 0.05 0.00 3.86008 -101.909 -3.86008 3.86008 0.56 0.000107294 8.5608e-05 0.00854083 0.00699265 44 2586 31 6.99608e+06 353176 787024. 2723.27 1.65 0.0436373 0.036691 27778 195446 -1 1816 17 989 1720 126571 28110 0 0 126571 28110 1720 1339 0 0 5568 4781 0 0 9014 6412 0 0 1720 1433 0 0 51676 7590 0 0 56873 6555 0 0 1720 0 0 731 775 874 6356 0 0 3.69046 3.69046 -120.973 -3.69046 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.00760442 0.00685645 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 5.23 vpr 53.88 MiB -1 -1 0.09 17640 1 0.02 -1 -1 29652 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55176 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 15.3 MiB 1.53 880 53.9 MiB 0.05 0.00 3.62631 -119.782 -3.62631 3.62631 0.56 0.000123164 9.7721e-05 0.012235 0.00997643 44 3060 35 6.99608e+06 206020 787024. 2723.27 1.55 0.0522765 0.0439704 27778 195446 -1 2112 21 1753 2569 185234 42043 0 0 185234 42043 2569 2157 0 0 7837 7018 0 0 13591 8866 0 0 2569 2255 0 0 76667 11095 0 0 82001 10652 0 0 2569 0 0 816 713 683 6413 0 0 4.28795 4.28795 -147.864 -4.28795 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0101291 0.009095 86 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 5.19 vpr 53.99 MiB -1 -1 0.10 17644 1 0.02 -1 -1 29716 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55284 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 15.5 MiB 0.57 1114 54.0 MiB 0.05 0.00 4.133 -132.854 -4.133 4.133 0.56 0.00014211 0.000116088 0.0101699 0.00841519 46 3231 43 6.99608e+06 250167 828058. 2865.25 2.46 0.0586192 0.0497583 28066 200906 -1 2408 23 2023 2798 242392 50169 0 0 242392 50169 2798 2448 0 0 8758 7804 0 0 14909 9689 0 0 2798 2550 0 0 105296 14556 0 0 107833 13122 0 0 2798 0 0 775 983 843 7383 0 0 5.27664 5.27664 -165.12 -5.27664 0 0 1.01997e+06 3529.29 0.25 0.05 0.10 -1 -1 0.25 0.0111564 0.00996398 102 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 17.37 vpr 54.15 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29692 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55452 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 15.6 MiB 0.63 1025 54.2 MiB 0.05 0.00 3.60146 -116.782 -3.60146 3.60146 0.56 0.000128072 0.000101923 0.0121105 0.00991355 50 3149 45 6.99608e+06 250167 902133. 3121.57 14.53 0.113691 0.096182 28642 213929 -1 2574 21 2156 3100 273779 62498 0 0 273779 62498 3100 2677 0 0 9963 8686 0 0 16903 11392 0 0 3100 2858 0 0 113569 18717 0 0 127144 18168 0 0 3100 0 0 944 1308 1348 9062 0 0 4.5125 4.5125 -146.814 -4.5125 0 0 1.08113e+06 3740.92 0.26 0.05 0.11 -1 -1 0.26 0.0106125 0.00948905 104 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.13 vpr 53.44 MiB -1 -1 0.09 17500 1 0.01 -1 -1 29772 -1 -1 13 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54720 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 14.9 MiB 0.71 675 53.4 MiB 0.04 0.00 3.51145 -100.51 -3.51145 3.51145 0.56 9.884e-05 7.8412e-05 0.00850734 0.00697309 38 2638 41 6.99608e+06 191304 678818. 2348.85 2.33 0.04412 0.0370927 26626 170182 -1 1826 21 1383 1959 178699 38217 0 0 178699 38217 1959 1658 0 0 6013 5310 0 0 10376 6610 0 0 1959 1718 0 0 76959 11766 0 0 81433 11155 0 0 1959 0 0 576 623 613 4963 0 0 3.45286 3.45286 -118.612 -3.45286 0 0 902133. 3121.57 0.21 0.03 0.08 -1 -1 0.21 0.00776048 0.00694422 71 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 4.88 vpr 53.95 MiB -1 -1 0.14 17516 1 0.01 -1 -1 29804 -1 -1 18 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55244 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 15.5 MiB 0.75 947 53.9 MiB 0.05 0.00 4.42536 -130.692 -4.42536 4.42536 0.56 0.000127769 0.000102824 0.0112719 0.00928838 44 3238 39 6.99608e+06 264882 787024. 2723.27 1.92 0.0547791 0.0460797 27778 195446 -1 1985 21 1894 2690 184793 45428 0 0 184793 45428 2690 2333 0 0 8633 7591 0 0 14272 9892 0 0 2690 2378 0 0 71943 12649 0 0 84565 10585 0 0 2690 0 0 796 795 621 6648 0 0 5.3736 5.3736 -161.745 -5.3736 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.010442 0.0093633 104 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 16.87 vpr 53.76 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29780 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55052 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 15.2 MiB 0.85 937 53.8 MiB 0.05 0.00 3.72804 -113.999 -3.72804 3.72804 0.56 0.000118768 9.4676e-05 0.0108129 0.00884063 46 3042 35 6.99608e+06 206020 828058. 2865.25 13.83 0.10205 0.0853326 28066 200906 -1 2156 22 1688 2828 260055 53377 0 0 260055 53377 2828 2364 0 0 8406 7412 0 0 15284 9185 0 0 2828 2446 0 0 111013 16376 0 0 119696 15594 0 0 2828 0 0 1140 1844 2146 12372 0 0 4.03735 4.03735 -136.628 -4.03735 0 0 1.01997e+06 3529.29 0.26 0.05 0.10 -1 -1 0.26 0.00992331 0.0089143 82 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 7.16 vpr 53.75 MiB -1 -1 0.10 17440 1 0.00 -1 -1 29712 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55036 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 15.2 MiB 0.91 1138 53.7 MiB 0.05 0.00 4.18675 -123.068 -4.18675 4.18675 0.56 0.000118792 9.5299e-05 0.0114271 0.00943934 36 2907 29 6.99608e+06 250167 648988. 2245.63 4.10 0.0545986 0.0464871 26050 158493 -1 2446 20 1631 2352 209949 42297 0 0 209949 42297 2352 1918 0 0 7567 6579 0 0 13019 8708 0 0 2352 1985 0 0 93212 11222 0 0 91447 11885 0 0 2352 0 0 721 834 895 6634 0 0 4.41876 4.41876 -149.014 -4.41876 0 0 828058. 2865.25 0.21 0.06 0.08 -1 -1 0.21 0.0147181 0.0132277 87 43 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 6.22 vpr 54.20 MiB -1 -1 0.10 17476 1 0.01 -1 -1 29704 -1 -1 20 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55504 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 15.5 MiB 1.59 1187 54.2 MiB 0.06 0.00 3.54046 -115.118 -3.54046 3.54046 0.59 0.000126381 0.000101078 0.0111407 0.00913527 40 3018 31 6.99608e+06 294314 706193. 2443.58 2.44 0.0539886 0.0454738 26914 176310 -1 2825 22 2481 3419 373931 71652 0 0 373931 71652 3419 3076 0 0 11153 9729 0 0 20608 13059 0 0 3419 3249 0 0 163576 21851 0 0 171756 20688 0 0 3419 0 0 938 1206 1228 9325 0 0 4.2604 4.2604 -153.579 -4.2604 0 0 926341. 3205.33 0.22 0.06 0.09 -1 -1 0.22 0.0105541 0.00942394 108 78 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 4.94 vpr 53.84 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29656 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55128 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 15.4 MiB 1.24 927 53.8 MiB 0.05 0.00 4.00366 -121.91 -4.00366 4.00366 0.56 0.000131973 0.000101169 0.0113191 0.00925354 56 2587 24 6.99608e+06 250167 973134. 3367.25 1.45 0.0498643 0.0419093 29794 239141 -1 2151 19 1662 2381 228015 49933 0 0 228015 49933 2381 2064 0 0 8177 7023 0 0 14545 9673 0 0 2381 2183 0 0 99971 14142 0 0 100560 14848 0 0 2381 0 0 719 668 566 6026 0 0 4.77861 4.77861 -155.865 -4.77861 0 0 1.19926e+06 4149.71 0.28 0.04 0.12 -1 -1 0.28 0.00969052 0.00872936 95 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 5.66 vpr 54.14 MiB -1 -1 0.11 17440 1 0.01 -1 -1 29816 -1 -1 20 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55440 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 15.5 MiB 1.93 1026 54.1 MiB 0.06 0.00 3.28125 -103.829 -3.28125 3.28125 0.56 0.000126309 0.000101062 0.0141452 0.0116422 44 3051 27 6.99608e+06 294314 787024. 2723.27 1.55 0.055909 0.0470721 27778 195446 -1 2277 22 2011 2696 221243 47383 0 0 221243 47383 2696 2362 0 0 8667 7580 0 0 15138 10178 0 0 2696 2449 0 0 95003 12623 0 0 97043 12191 0 0 2696 0 0 685 810 689 6406 0 0 3.52016 3.52016 -121.41 -3.52016 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0105077 0.00937596 109 79 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.14 vpr 53.23 MiB -1 -1 0.10 17036 1 0.01 -1 -1 29752 -1 -1 10 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54504 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 14.7 MiB 0.93 550 53.2 MiB 0.03 0.00 2.91658 -83.73 -2.91658 2.91658 0.56 9.3427e-05 7.4374e-05 0.00723054 0.00591481 40 1756 24 6.99608e+06 147157 706193. 2443.58 2.14 0.0385996 0.0326196 26914 176310 -1 1539 24 1175 1822 160623 41586 0 0 160623 41586 1822 1518 0 0 5950 5337 0 0 11112 6960 0 0 1822 1559 0 0 69574 12414 0 0 70343 13798 0 0 1822 0 0 647 762 678 5385 0 0 3.05367 3.05367 -113.247 -3.05367 0 0 926341. 3205.33 0.22 0.03 0.09 -1 -1 0.22 0.00778734 0.00693925 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 14.14 vpr 53.88 MiB -1 -1 0.10 17348 1 0.02 -1 -1 29668 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55172 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 15.5 MiB 0.49 984 53.9 MiB 0.05 0.00 4.21916 -133.154 -4.21916 4.21916 0.56 0.00013122 0.000105547 0.0100607 0.00834404 48 3102 49 6.99608e+06 250167 865456. 2994.66 11.43 0.102289 0.0862713 28354 207349 -1 2241 21 2129 2956 243431 54897 0 0 243431 54897 2956 2604 0 0 9758 8585 0 0 17308 11614 0 0 2956 2744 0 0 103684 14614 0 0 106769 14736 0 0 2956 0 0 827 903 905 7691 0 0 4.74444 4.74444 -161.149 -4.74444 0 0 1.05005e+06 3633.38 0.26 0.05 0.11 -1 -1 0.26 0.0108222 0.00974706 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 6.23 vpr 54.10 MiB -1 -1 0.10 17340 1 0.01 -1 -1 29760 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55400 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 15.5 MiB 0.67 1065 54.1 MiB 0.05 0.00 3.9997 -135.29 -3.9997 3.9997 0.56 0.000134247 0.000107802 0.0120971 0.00995438 40 3464 43 6.99608e+06 250167 706193. 2443.58 3.38 0.0648711 0.054933 26914 176310 -1 2613 24 2905 4022 333837 77748 0 0 333837 77748 4022 3474 0 0 12659 11235 0 0 24243 14904 0 0 4022 3548 0 0 140666 24030 0 0 148225 20557 0 0 4022 0 0 1117 1436 1090 10001 0 0 5.17054 5.17054 -174.204 -5.17054 0 0 926341. 3205.33 0.22 0.06 0.09 -1 -1 0.22 0.0117772 0.0104962 109 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 5.50 vpr 53.44 MiB -1 -1 0.09 17336 1 0.01 -1 -1 29704 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 14.9 MiB 0.74 741 53.4 MiB 0.04 0.00 3.03397 -94.6537 -3.03397 3.03397 0.56 0.000104828 8.4662e-05 0.00983519 0.00816688 38 2475 49 6.99608e+06 161872 678818. 2348.85 2.72 0.048696 0.0411665 26626 170182 -1 1854 20 1205 1496 128577 28387 0 0 128577 28387 1496 1400 0 0 4873 4269 0 0 7431 5357 0 0 1496 1422 0 0 54085 8452 0 0 59196 7487 0 0 1496 0 0 291 287 312 2996 0 0 3.71161 3.71161 -126.961 -3.71161 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00764372 0.00686212 69 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 3.89 vpr 53.17 MiB -1 -1 0.09 16904 1 0.01 -1 -1 29660 -1 -1 13 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54444 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 14.6 MiB 0.37 491 53.2 MiB 0.03 0.00 2.78823 -83.0214 -2.78823 2.78823 0.56 9.2304e-05 7.3037e-05 0.00676587 0.00553671 44 1835 49 6.99608e+06 191304 787024. 2723.27 1.38 0.0401698 0.0337624 27778 195446 -1 1229 19 1022 1562 93459 24288 0 0 93459 24288 1562 1205 0 0 5057 4516 0 0 8861 6119 0 0 1562 1250 0 0 38414 5197 0 0 38003 6001 0 0 1562 0 0 540 568 370 4314 0 0 2.98662 2.98662 -102.237 -2.98662 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0103688 0.00917749 56 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 4.43 vpr 53.75 MiB -1 -1 0.10 17460 1 0.01 -1 -1 29668 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55040 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 15.2 MiB 0.61 901 53.8 MiB 0.05 0.00 3.70481 -122.064 -3.70481 3.70481 0.56 0.000124276 9.9941e-05 0.0110798 0.00914064 42 3145 50 6.99608e+06 220735 744469. 2576.02 1.67 0.0550911 0.0463461 27202 183097 -1 2360 22 1926 2520 252155 51858 0 0 252155 51858 2520 2233 0 0 8075 7129 0 0 14937 9617 0 0 2520 2313 0 0 114041 14697 0 0 110062 15869 0 0 2520 0 0 594 523 600 5425 0 0 4.53895 4.53895 -154.258 -4.53895 0 0 949917. 3286.91 0.23 0.05 0.09 -1 -1 0.23 0.0100092 0.00894414 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 5.75 vpr 53.87 MiB -1 -1 0.10 17396 1 0.01 -1 -1 29640 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55164 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 15.3 MiB 1.34 977 53.9 MiB 0.06 0.00 3.63687 -112.427 -3.63687 3.63687 0.56 0.000129718 9.7084e-05 0.0117815 0.00956332 46 2733 24 6.99608e+06 220735 828058. 2865.25 2.28 0.052657 0.0443809 28066 200906 -1 2023 22 1679 2329 146614 35742 0 0 146614 35742 2329 2013 0 0 7178 6303 0 0 11646 7866 0 0 2329 2075 0 0 58760 9828 0 0 64372 7657 0 0 2329 0 0 650 601 732 6072 0 0 4.28925 4.28925 -143.302 -4.28925 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0103844 0.00917017 95 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 5.04 vpr 53.77 MiB -1 -1 0.10 17256 1 0.01 -1 -1 29692 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55056 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 15.2 MiB 0.32 891 53.8 MiB 0.06 0.00 3.76881 -112.186 -3.76881 3.76881 0.55 0.000130405 0.000104329 0.0134004 0.0109407 44 3121 49 6.99608e+06 250167 787024. 2723.27 2.53 0.0625238 0.0528777 27778 195446 -1 1990 19 1517 2531 177963 41261 0 0 177963 41261 2531 1996 0 0 7894 6856 0 0 13258 9046 0 0 2531 2110 0 0 72418 10729 0 0 79331 10524 0 0 2531 0 0 1014 1117 1132 8954 0 0 4.02335 4.02335 -138.533 -4.02335 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.00968472 0.00870595 83 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 5.68 vpr 53.64 MiB -1 -1 0.10 17560 1 0.02 -1 -1 29772 -1 -1 16 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54932 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 15.2 MiB 0.85 875 53.6 MiB 0.05 0.00 3.06347 -88.1464 -3.06347 3.06347 0.57 0.000111459 8.9058e-05 0.00985904 0.00809553 38 2817 32 6.99608e+06 235451 678818. 2348.85 2.63 0.0483495 0.0408696 26626 170182 -1 2190 23 1826 2622 218393 47076 0 0 218393 47076 2622 2152 0 0 8207 7216 0 0 13288 8988 0 0 2622 2295 0 0 97751 12738 0 0 93903 13687 0 0 2622 0 0 796 884 770 7030 0 0 3.31366 3.31366 -116.638 -3.31366 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.00961701 0.0085761 86 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.09 vpr 53.34 MiB -1 -1 0.09 17196 1 0.01 -1 -1 29780 -1 -1 15 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54620 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 14.7 MiB 0.74 514 53.3 MiB 0.03 0.00 2.96122 -84.2305 -2.96122 2.96122 0.56 9.2327e-05 7.3091e-05 0.00694147 0.00565823 38 1686 46 6.99608e+06 220735 678818. 2348.85 2.29 0.0415845 0.0349316 26626 170182 -1 1126 18 892 1272 81249 21695 0 0 81249 21695 1272 1030 0 0 4191 3626 0 0 6144 4595 0 0 1272 1053 0 0 35435 5184 0 0 32935 6207 0 0 1272 0 0 380 396 296 3266 0 0 3.57972 3.57972 -108.609 -3.57972 0 0 902133. 3121.57 0.22 0.02 0.08 -1 -1 0.22 0.00670394 0.00601617 66 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 7.01 vpr 54.32 MiB -1 -1 0.10 17724 1 0.01 -1 -1 29876 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55620 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 15.8 MiB 0.65 1143 54.3 MiB 0.07 0.00 3.54614 -117.741 -3.54614 3.54614 0.56 0.000141043 0.000113308 0.0149386 0.0122174 46 4101 46 6.99608e+06 264882 828058. 2865.25 4.17 0.0749965 0.0636572 28066 200906 -1 2767 22 2290 3454 242197 54591 0 0 242197 54591 3454 2837 0 0 10341 9236 0 0 17168 11235 0 0 3454 3043 0 0 104494 13786 0 0 103286 14454 0 0 3454 0 0 1164 1376 1307 10219 0 0 4.90815 4.90815 -157.921 -4.90815 0 0 1.01997e+06 3529.29 0.25 0.05 0.10 -1 -1 0.25 0.0123717 0.0110548 111 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 14.93 vpr 53.85 MiB -1 -1 0.10 17340 1 0.01 -1 -1 29744 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55144 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 15.4 MiB 1.39 1060 53.9 MiB 0.06 0.00 4.22373 -123.342 -4.22373 4.22373 0.56 0.000125089 9.994e-05 0.0127866 0.0104759 40 3052 40 6.99608e+06 250167 706193. 2443.58 11.33 0.111355 0.094474 26914 176310 -1 2567 26 2766 3911 416853 92437 0 0 416853 92437 3911 3680 0 0 12137 10665 0 0 23917 14282 0 0 3911 3802 0 0 194914 29957 0 0 178063 30051 0 0 3911 0 0 1145 1801 1658 11537 0 0 5.37094 5.37094 -169.354 -5.37094 0 0 926341. 3205.33 0.23 0.07 0.09 -1 -1 0.23 0.0114141 0.0101431 100 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 4.23 vpr 53.82 MiB -1 -1 0.09 17584 1 0.01 -1 -1 29744 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55116 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 15.2 MiB 0.69 891 53.8 MiB 0.05 0.00 3.46994 -123.233 -3.46994 3.46994 0.56 0.000113557 9.0327e-05 0.0111336 0.00906946 44 2752 44 6.99608e+06 206020 787024. 2723.27 1.40 0.0511331 0.0427704 27778 195446 -1 2008 20 1476 1821 133822 30218 0 0 133822 30218 1821 1632 0 0 5893 5202 0 0 9438 6708 0 0 1821 1666 0 0 54934 7961 0 0 59915 7049 0 0 1821 0 0 345 231 270 3357 0 0 3.75925 3.75925 -142.506 -3.75925 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.00898387 0.00807918 91 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 6.12 vpr 53.79 MiB -1 -1 0.11 17340 1 0.01 -1 -1 29660 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55084 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 15.3 MiB 0.51 903 53.8 MiB 0.05 0.00 3.34348 -105.474 -3.34348 3.34348 0.55 0.000128979 0.000106216 0.0099746 0.00829568 38 3296 42 6.99608e+06 220735 678818. 2348.85 3.50 0.054351 0.0461986 26626 170182 -1 2143 19 1391 1881 161934 34811 0 0 161934 34811 1881 1650 0 0 5831 5016 0 0 9033 6254 0 0 1881 1679 0 0 72868 9651 0 0 70440 10561 0 0 1881 0 0 490 528 449 4602 0 0 3.95806 3.95806 -130.79 -3.95806 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00900634 0.00812029 81 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 5.08 vpr 53.96 MiB -1 -1 0.09 17572 1 0.01 -1 -1 29756 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55260 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 15.5 MiB 1.14 938 54.0 MiB 0.04 0.00 3.32588 -101.51 -3.32588 3.32588 0.56 0.000134768 0.000109018 0.0103515 0.00860724 44 3018 33 6.99608e+06 250167 787024. 2723.27 1.78 0.0539302 0.0455288 27778 195446 -1 2029 24 2043 2961 221987 50511 0 0 221987 50511 2961 2339 0 0 9553 8266 0 0 15844 11111 0 0 2961 2483 0 0 95127 13125 0 0 95541 13187 0 0 2961 0 0 918 1230 1256 9177 0 0 3.89111 3.89111 -126.339 -3.89111 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0114894 0.0102401 97 46 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 5.14 vpr 53.78 MiB -1 -1 0.09 17488 1 0.00 -1 -1 29764 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55072 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 15.3 MiB 1.16 873 53.8 MiB 0.04 0.00 3.01479 -92.6038 -3.01479 3.01479 0.56 0.000112914 8.9814e-05 0.00953804 0.00780851 48 2413 26 6.99608e+06 250167 865456. 2994.66 1.81 0.0462475 0.0389046 28354 207349 -1 1949 19 1497 2234 194271 44634 0 0 194271 44634 2234 1845 0 0 7766 6751 0 0 13438 9362 0 0 2234 2045 0 0 81893 12189 0 0 86706 12442 0 0 2234 0 0 737 839 885 6731 0 0 3.15966 3.15966 -112.821 -3.15966 0 0 1.05005e+06 3633.38 0.26 0.04 0.11 -1 -1 0.26 0.0089026 0.00800745 88 46 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 5.84 vpr 53.93 MiB -1 -1 0.10 17464 1 0.01 -1 -1 29736 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55228 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 15.3 MiB 0.60 961 53.9 MiB 0.04 0.00 3.64008 -117.108 -3.64008 3.64008 0.56 0.000128081 0.000103064 0.00965191 0.00801552 46 3423 35 6.99608e+06 206020 828058. 2865.25 3.06 0.0573013 0.0489435 28066 200906 -1 2429 37 2647 3955 319044 69519 0 0 319044 69519 3955 3584 0 0 11019 9882 0 0 21736 12255 0 0 3955 3751 0 0 135560 19375 0 0 142819 20672 0 0 3955 0 0 1308 1387 1341 10629 0 0 4.13101 4.13101 -147.788 -4.13101 0 0 1.01997e+06 3529.29 0.25 0.06 0.10 -1 -1 0.25 0.0138759 0.012218 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.69 vpr 54.00 MiB -1 -1 0.13 17272 1 0.01 -1 -1 29656 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55300 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 15.5 MiB 1.95 944 54.0 MiB 0.05 0.00 2.94423 -100.616 -2.94423 2.94423 0.56 0.000131342 0.000105719 0.0108592 0.00895674 46 3045 41 6.99608e+06 235451 828058. 2865.25 2.55 0.0597166 0.050544 28066 200906 -1 2032 25 1997 2776 217651 63367 0 0 217651 63367 2776 2306 0 0 8398 7393 0 0 14237 9259 0 0 2776 2432 0 0 90462 21826 0 0 99002 20151 0 0 2776 0 0 779 965 987 7379 0 0 3.54046 3.54046 -128.383 -3.54046 0 0 1.01997e+06 3529.29 0.25 0.05 0.10 -1 -1 0.25 0.0117961 0.0105059 103 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 4.51 vpr 53.55 MiB -1 -1 0.10 17400 1 0.01 -1 -1 29776 -1 -1 14 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54832 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 15.0 MiB 1.04 641 53.5 MiB 0.03 0.00 3.37515 -97.7741 -3.37515 3.37515 0.56 9.6424e-05 7.5962e-05 0.00707835 0.00582319 38 1922 28 6.99608e+06 206020 678818. 2348.85 1.39 0.0376987 0.0317161 26626 170182 -1 1462 20 1197 1595 118074 26336 0 0 118074 26336 1595 1397 0 0 4953 4258 0 0 7572 5251 0 0 1595 1439 0 0 48806 7348 0 0 53553 6643 0 0 1595 0 0 398 516 439 3864 0 0 3.46986 3.46986 -117.76 -3.46986 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00755283 0.00675431 70 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 6.27 vpr 53.52 MiB -1 -1 0.10 17492 1 0.00 -1 -1 29640 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 15.1 MiB 1.70 810 53.5 MiB 0.04 0.00 3.25478 -109.359 -3.25478 3.25478 0.56 0.000108992 8.6546e-05 0.0081721 0.00669484 38 2745 49 6.99608e+06 206020 678818. 2348.85 2.42 0.0494144 0.0417085 26626 170182 -1 1972 21 1597 2191 168561 37055 0 0 168561 37055 2191 1912 0 0 6801 5986 0 0 10718 7409 0 0 2191 2058 0 0 74134 9763 0 0 72526 9927 0 0 2191 0 0 594 466 592 5031 0 0 3.78725 3.78725 -134.851 -3.78725 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.00877877 0.00784089 79 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 4.23 vpr 53.74 MiB -1 -1 0.11 17476 1 0.01 -1 -1 29836 -1 -1 15 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55032 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 15.2 MiB 0.61 844 53.7 MiB 0.04 0.00 3.32768 -101.882 -3.32768 3.32768 0.56 0.000115708 9.2531e-05 0.00932952 0.00767857 46 2139 22 6.99608e+06 220735 828058. 2865.25 1.49 0.0445636 0.0375739 28066 200906 -1 1628 20 1286 2007 129147 30616 0 0 129147 30616 2007 1473 0 0 6117 5344 0 0 10551 6762 0 0 2007 1642 0 0 52889 8160 0 0 55576 7235 0 0 2007 0 0 721 807 862 6615 0 0 3.52721 3.52721 -121.332 -3.52721 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00893855 0.00801443 80 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 3.86 vpr 53.47 MiB -1 -1 0.10 17560 1 0.01 -1 -1 29692 -1 -1 13 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54756 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 15.0 MiB 0.71 643 53.5 MiB 0.04 0.00 3.14827 -89.4705 -3.14827 3.14827 0.60 9.527e-05 7.5573e-05 0.00762116 0.00623773 42 2107 23 6.99608e+06 191304 744469. 2576.02 1.01 0.0359137 0.0301171 27202 183097 -1 1506 22 1280 1629 124875 28131 0 0 124875 28131 1629 1457 0 0 5431 4729 0 0 9392 6409 0 0 1629 1488 0 0 56334 6400 0 0 50460 7648 0 0 1629 0 0 349 284 269 3265 0 0 3.16821 3.16821 -104.477 -3.16821 0 0 949917. 3286.91 0.23 0.03 0.09 -1 -1 0.23 0.00779915 0.00696036 68 25 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 4.56 vpr 53.43 MiB -1 -1 0.10 17476 1 0.01 -1 -1 29644 -1 -1 12 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 14.9 MiB 0.59 763 53.4 MiB 0.04 0.00 3.53345 -108.361 -3.53345 3.53345 0.55 9.986e-05 7.977e-05 0.00911034 0.00746415 38 2314 30 6.99608e+06 176588 678818. 2348.85 1.84 0.04258 0.0357761 26626 170182 -1 1791 18 1385 1859 151728 31530 0 0 151728 31530 1859 1570 0 0 5618 4873 0 0 8851 5895 0 0 1859 1669 0 0 66654 9021 0 0 66887 8502 0 0 1859 0 0 474 555 545 4417 0 0 3.36257 3.36257 -123.643 -3.36257 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00744555 0.00670131 73 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 5.09 vpr 54.00 MiB -1 -1 0.13 17532 1 0.02 -1 -1 29804 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55300 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 15.5 MiB 0.69 1203 54.0 MiB 0.04 0.00 3.61381 -124.262 -3.61381 3.61381 0.56 0.000126768 0.00010189 0.00956579 0.00790742 38 3037 34 6.99608e+06 250167 678818. 2348.85 2.25 0.0536247 0.0454203 26626 170182 -1 2581 22 2017 2693 216042 43980 0 0 216042 43980 2693 2365 0 0 8172 7169 0 0 13048 8810 0 0 2693 2440 0 0 94766 11755 0 0 94670 11441 0 0 2693 0 0 676 772 718 6441 0 0 4.29945 4.29945 -155.884 -4.29945 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0107578 0.00962388 101 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 4.15 vpr 53.50 MiB -1 -1 0.14 17484 1 0.01 -1 -1 29756 -1 -1 13 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54784 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 15.0 MiB 0.62 883 53.5 MiB 0.05 0.00 2.97897 -98.1156 -2.97897 2.97897 0.56 9.7513e-05 7.7514e-05 0.00937654 0.00768021 46 2159 25 6.99608e+06 191304 828058. 2865.25 1.30 0.0391165 0.032967 28066 200906 -1 1848 20 1043 1485 116733 24263 0 0 116733 24263 1485 1287 0 0 4717 4108 0 0 7476 5164 0 0 1485 1336 0 0 50583 6501 0 0 50987 5867 0 0 1485 0 0 442 188 397 3396 0 0 2.99891 2.99891 -112.909 -2.99891 0 0 1.01997e+06 3529.29 0.24 0.03 0.10 -1 -1 0.24 0.00762827 0.00686774 71 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 4.59 vpr 53.66 MiB -1 -1 0.11 17440 1 0.01 -1 -1 29676 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 15.1 MiB 0.84 1032 53.7 MiB 0.05 0.00 2.87229 -97.048 -2.87229 2.87229 0.56 0.000119483 9.5958e-05 0.0102526 0.00843539 38 2645 24 6.99608e+06 220735 678818. 2348.85 1.64 0.049026 0.0414715 26626 170182 -1 2170 18 1388 1888 136946 28942 0 0 136946 28942 1888 1633 0 0 5949 5145 0 0 8700 6298 0 0 1888 1676 0 0 59235 7402 0 0 59286 6788 0 0 1888 0 0 500 677 437 5116 0 0 3.36186 3.36186 -123.04 -3.36186 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00887582 0.00799065 91 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 16.52 vpr 54.03 MiB -1 -1 0.11 17552 1 0.01 -1 -1 29852 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55328 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 15.4 MiB 2.08 1070 54.0 MiB 0.06 0.00 3.79017 -128.672 -3.79017 3.79017 0.56 0.000133687 0.000106817 0.0135061 0.0110408 52 3518 43 6.99608e+06 294314 926341. 3205.33 12.17 0.110482 0.0937434 29218 227130 -1 2428 21 2224 3150 257574 55711 0 0 257574 55711 3150 2744 0 0 9834 8640 0 0 16561 11170 0 0 3150 2886 0 0 106076 15803 0 0 118803 14468 0 0 3150 0 0 926 1079 1017 8454 0 0 4.54129 4.54129 -159.077 -4.54129 0 0 1.14541e+06 3963.36 0.28 0.05 0.11 -1 -1 0.28 0.0108479 0.00973302 113 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 5.06 vpr 53.62 MiB -1 -1 0.09 17656 1 0.01 -1 -1 29840 -1 -1 12 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 14.9 MiB 1.46 783 53.6 MiB 0.04 0.00 2.79904 -94.1176 -2.79904 2.79904 0.56 0.000105878 8.4137e-05 0.00850212 0.00695797 42 2630 45 6.99608e+06 176588 744469. 2576.02 1.47 0.0449977 0.0376729 27202 183097 -1 1864 23 1534 2067 193554 41792 0 0 193554 41792 2067 1772 0 0 6879 6034 0 0 12391 8376 0 0 2067 1826 0 0 82457 12075 0 0 87693 11709 0 0 2067 0 0 533 575 539 4884 0 0 3.37781 3.37781 -119.649 -3.37781 0 0 949917. 3286.91 0.23 0.04 0.09 -1 -1 0.23 0.00902316 0.00803729 80 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 4.40 vpr 53.65 MiB -1 -1 0.09 17476 1 0.01 -1 -1 29668 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54936 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 15.0 MiB 0.52 753 53.6 MiB 0.04 0.00 3.26242 -104.65 -3.26242 3.26242 0.55 0.00010482 8.3118e-05 0.00829099 0.00672461 40 2539 29 6.99608e+06 161872 706193. 2443.58 1.75 0.04167 0.0348745 26914 176310 -1 1939 21 1449 2123 193622 42066 0 0 193622 42066 2123 1900 0 0 6770 6023 0 0 12726 7942 0 0 2123 1917 0 0 82607 12501 0 0 87273 11783 0 0 2123 0 0 674 752 682 5579 0 0 3.70146 3.70146 -130.424 -3.70146 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.00826535 0.00739047 72 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 9.62 vpr 53.72 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29696 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 15.3 MiB 1.11 789 53.7 MiB 0.05 0.00 3.29468 -101.987 -3.29468 3.29468 0.56 0.000114735 9.1476e-05 0.0104735 0.00857513 40 2689 31 6.99608e+06 206020 706193. 2443.58 6.39 0.0842088 0.0711354 26914 176310 -1 1987 22 1789 2471 189208 44741 0 0 189208 44741 2471 2110 0 0 8015 7044 0 0 15006 9554 0 0 2471 2158 0 0 80931 12237 0 0 80314 11638 0 0 2471 0 0 682 585 754 5956 0 0 4.19586 4.19586 -136.78 -4.19586 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.009496 0.00848725 79 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 11.58 vpr 53.75 MiB -1 -1 0.12 17560 1 0.01 -1 -1 29872 -1 -1 18 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55036 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 15.3 MiB 1.13 872 53.7 MiB 0.05 0.00 2.89747 -87.5406 -2.89747 2.89747 0.59 0.000112675 9.0249e-05 0.0092113 0.00762426 40 2654 40 6.99608e+06 264882 706193. 2443.58 8.31 0.0922289 0.0782401 26914 176310 -1 2179 21 1610 2380 240886 56625 0 0 240886 56625 2380 2031 0 0 8005 7052 0 0 15051 9806 0 0 2380 2118 0 0 106434 17253 0 0 106636 18365 0 0 2380 0 0 770 1123 1276 8239 0 0 3.66542 3.66542 -115.676 -3.66542 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.00934156 0.00836946 88 49 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 7.95 vpr 54.03 MiB -1 -1 0.10 17752 1 0.01 -1 -1 29828 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55328 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 15.5 MiB 1.10 995 54.0 MiB 0.04 0.00 4.60269 -144.768 -4.60269 4.60269 0.56 0.000131086 0.000104518 0.00838424 0.00695661 40 3839 40 6.99608e+06 250167 706193. 2443.58 4.70 0.0585684 0.0498527 26914 176310 -1 3072 23 2560 3897 461186 103281 0 0 461186 103281 3897 3366 0 0 12160 10787 0 0 23526 14373 0 0 3897 3479 0 0 205886 36284 0 0 211820 34992 0 0 3897 0 0 1337 1627 1746 12065 0 0 5.34414 5.34414 -178.538 -5.34414 0 0 926341. 3205.33 0.22 0.07 0.09 -1 -1 0.22 0.011339 0.010127 105 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 4.73 vpr 53.19 MiB -1 -1 0.10 16900 1 0.01 -1 -1 29604 -1 -1 13 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54464 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 14.6 MiB 0.65 565 53.2 MiB 0.03 0.00 2.70223 -73.7785 -2.70223 2.70223 0.56 9.2663e-05 7.3e-05 0.0056782 0.00468566 36 2111 23 6.99608e+06 191304 648988. 2245.63 2.03 0.0341362 0.0289092 26050 158493 -1 1546 18 996 1545 130365 29123 0 0 130365 29123 1545 1261 0 0 5073 4451 0 0 8391 5644 0 0 1545 1332 0 0 56182 8243 0 0 57629 8192 0 0 1545 0 0 549 528 533 4425 0 0 3.01197 3.01197 -101.358 -3.01197 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00633337 0.00568936 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 12.61 vpr 54.20 MiB -1 -1 0.09 17940 1 0.01 -1 -1 29832 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55500 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 15.8 MiB 2.10 1287 54.2 MiB 0.05 0.00 3.87123 -135.445 -3.87123 3.87123 0.56 0.000134351 0.000107349 0.0113424 0.00932538 40 3733 32 6.99608e+06 294314 706193. 2443.58 8.32 0.107526 0.091112 26914 176310 -1 3023 21 2554 3209 307494 64442 0 0 307494 64442 3209 2895 0 0 10988 9815 0 0 19517 13176 0 0 3209 3030 0 0 136330 17583 0 0 134241 17943 0 0 3209 0 0 655 620 581 6653 0 0 5.5306 5.5306 -188.855 -5.5306 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0110392 0.00987696 116 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 6.68 vpr 54.32 MiB -1 -1 0.10 17500 1 0.02 -1 -1 29724 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55620 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 15.6 MiB 0.63 1263 54.3 MiB 0.05 0.00 3.58352 -133.165 -3.58352 3.58352 0.56 0.000119762 9.5422e-05 0.0110604 0.00907701 38 3681 47 6.99608e+06 235451 678818. 2348.85 3.88 0.0610513 0.0519237 26626 170182 -1 3032 23 2943 3708 419514 78155 0 0 419514 78155 3708 3290 0 0 11180 10059 0 0 19343 12235 0 0 3708 3352 0 0 200322 22877 0 0 181253 26342 0 0 3708 0 0 765 844 889 7836 0 0 4.7256 4.7256 -178.909 -4.7256 0 0 902133. 3121.57 0.22 0.06 0.09 -1 -1 0.22 0.0103916 0.00927429 110 93 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 5.86 vpr 53.84 MiB -1 -1 0.10 17564 1 0.02 -1 -1 29736 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55136 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 15.2 MiB 1.05 1092 53.8 MiB 0.05 0.00 3.03377 -103.431 -3.03377 3.03377 0.57 0.000121809 9.6994e-05 0.00986297 0.00815785 38 2984 32 6.99608e+06 220735 678818. 2348.85 2.64 0.0594408 0.0507481 26626 170182 -1 2399 19 1645 2240 193139 39676 0 0 193139 39676 2240 1897 0 0 7053 6224 0 0 11557 7625 0 0 2240 1955 0 0 83387 11564 0 0 86662 10411 0 0 2240 0 0 595 875 860 6480 0 0 3.21021 3.21021 -120.917 -3.21021 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0094702 0.00850584 94 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 4.81 vpr 54.05 MiB -1 -1 0.12 17612 1 0.00 -1 -1 29888 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55348 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 15.5 MiB 0.71 1058 54.1 MiB 0.06 0.00 4.66142 -135.651 -4.66142 4.66142 0.57 0.000136694 0.000109499 0.0139166 0.0115175 48 3106 23 6.99608e+06 220735 865456. 2994.66 1.85 0.0569927 0.0482711 28354 207349 -1 2386 22 2083 3096 246017 53092 0 0 246017 53092 3096 2491 0 0 10045 8899 0 0 17911 11799 0 0 3096 2559 0 0 102084 14186 0 0 109785 13158 0 0 3096 0 0 1013 1084 1133 8888 0 0 4.96951 4.96951 -164.794 -4.96951 0 0 1.05005e+06 3633.38 0.26 0.05 0.10 -1 -1 0.26 0.0115954 0.0103935 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 3.67 vpr 53.18 MiB -1 -1 0.10 17324 1 0.01 -1 -1 29696 -1 -1 12 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54456 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 14.7 MiB 0.48 496 53.2 MiB 0.03 0.00 2.28455 -79.4386 -2.28455 2.28455 0.56 8.1595e-05 6.4728e-05 0.00595305 0.00484009 38 1551 23 6.99608e+06 176588 678818. 2348.85 1.14 0.0308707 0.0259147 26626 170182 -1 1206 19 732 924 75032 16666 0 0 75032 16666 924 814 0 0 3045 2665 0 0 4554 3223 0 0 924 838 0 0 34586 4258 0 0 30999 4868 0 0 924 0 0 192 163 147 1810 0 0 2.31212 2.31212 -91.2109 -2.31212 0 0 902133. 3121.57 0.22 0.02 0.08 -1 -1 0.22 0.00605253 0.00541076 53 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 6.54 vpr 53.49 MiB -1 -1 0.09 17344 1 0.01 -1 -1 29736 -1 -1 14 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 14.9 MiB 2.67 925 53.5 MiB 0.03 0.00 3.15062 -102.03 -3.15062 3.15062 0.56 0.000102983 8.2208e-05 0.00714288 0.00589607 36 2263 39 6.99608e+06 206020 648988. 2245.63 1.79 0.0420907 0.0354533 26050 158493 -1 1905 21 1346 2020 285932 88591 0 0 285932 88591 2020 1795 0 0 6285 5514 0 0 11562 7338 0 0 2020 1827 0 0 134660 35566 0 0 129385 36551 0 0 2020 0 0 674 955 971 6428 0 0 3.42976 3.42976 -130.802 -3.42976 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.00812906 0.00725311 68 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 12.59 vpr 53.58 MiB -1 -1 0.10 17392 1 0.01 -1 -1 29808 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54868 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 15.0 MiB 0.42 772 53.6 MiB 0.04 0.00 3.05994 -98.0945 -3.05994 3.05994 0.56 0.000106511 8.4558e-05 0.00751852 0.00617084 38 2776 42 6.99608e+06 250167 678818. 2348.85 10.09 0.093535 0.0793218 26626 170182 -1 2087 21 1571 2417 228080 47774 0 0 228080 47774 2417 1968 0 0 7416 6512 0 0 12449 8122 0 0 2417 2030 0 0 103822 14035 0 0 99559 15107 0 0 2417 0 0 846 819 749 6997 0 0 4.23291 4.23291 -141.194 -4.23291 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.00850029 0.00757096 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 4.45 vpr 53.11 MiB -1 -1 0.09 17004 1 0.01 -1 -1 29780 -1 -1 16 25 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54380 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 14.6 MiB 0.77 554 53.1 MiB 0.03 0.00 2.74423 -65.6094 -2.74423 2.74423 0.56 8.4632e-05 6.7713e-05 0.00726815 0.00602811 34 1923 48 6.99608e+06 235451 618332. 2139.56 1.62 0.0370563 0.0310288 25762 151098 -1 1392 20 960 1283 101347 23236 0 0 101347 23236 1283 1080 0 0 4446 3810 0 0 7529 5191 0 0 1283 1114 0 0 42991 6055 0 0 43815 5986 0 0 1283 0 0 323 318 401 3187 0 0 3.10727 3.10727 -88.1395 -3.10727 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00624259 0.00555968 59 19 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 6.14 vpr 54.02 MiB -1 -1 0.14 17392 1 0.01 -1 -1 29720 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55316 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 15.5 MiB 2.23 1227 54.0 MiB 0.05 0.00 3.25282 -113.242 -3.25282 3.25282 0.56 0.000137224 0.000107813 0.0111532 0.00924896 44 3286 24 6.99608e+06 250167 787024. 2723.27 1.71 0.0514915 0.0435249 27778 195446 -1 2650 20 1952 2884 233322 47059 0 0 233322 47059 2884 2437 0 0 8991 7851 0 0 14637 10115 0 0 2884 2591 0 0 106997 11350 0 0 96929 12715 0 0 2884 0 0 932 858 983 7763 0 0 3.52302 3.52302 -134.326 -3.52302 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.0101309 0.00909147 103 69 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 6.78 vpr 54.45 MiB -1 -1 0.12 17724 1 0.01 -1 -1 29876 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55752 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 15.8 MiB 1.83 1233 54.4 MiB 0.06 0.00 3.62001 -123.826 -3.62001 3.62001 0.56 0.000133641 0.000107521 0.0128358 0.0105297 38 3545 42 6.99608e+06 279598 678818. 2348.85 2.78 0.0630539 0.0532526 26626 170182 -1 2845 24 2591 3434 312166 62890 0 0 312166 62890 3434 3021 0 0 10685 9397 0 0 17973 11933 0 0 3434 3130 0 0 136506 18578 0 0 140134 16831 0 0 3434 0 0 843 689 769 7733 0 0 4.33065 4.33065 -158.569 -4.33065 0 0 902133. 3121.57 0.22 0.06 0.09 -1 -1 0.22 0.0120597 0.0107545 117 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 6.25 vpr 53.48 MiB -1 -1 0.13 17872 14 0.22 -1 -1 32180 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 14.9 MiB 1.38 1237 53.5 MiB 0.04 0.00 7.10026 -148.534 -7.10026 7.10026 0.55 0.00016584 0.000134234 0.0102161 0.00848151 38 3280 21 6.79088e+06 255968 678818. 2348.85 2.41 0.0643192 0.0553191 25966 169698 -1 2687 16 1295 3612 203409 45472 0 0 203409 45472 3612 1757 0 0 11151 9628 0 0 17579 12124 0 0 3612 2155 0 0 84244 10016 0 0 83211 9792 0 0 3612 0 0 2317 3528 3122 24645 0 0 7.72675 7.72675 -166.656 -7.72675 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0124602 0.0114134 130 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 6.11 vpr 53.47 MiB -1 -1 0.15 17744 14 0.26 -1 -1 32280 -1 -1 19 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54752 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 15.0 MiB 1.86 1058 53.5 MiB 0.04 0.00 6.62009 -132.696 -6.62009 6.62009 0.56 0.000172463 0.000134701 0.0104349 0.00851564 34 3041 22 6.79088e+06 255968 618332. 2139.56 1.83 0.0654644 0.0556913 25102 150614 -1 2605 20 1511 4010 230345 52972 0 0 230345 52972 4010 2330 0 0 12808 10904 0 0 22167 14948 0 0 4010 2703 0 0 93526 10947 0 0 93824 11140 0 0 4010 0 0 2499 4155 4417 28179 0 0 6.9456 6.9456 -155.395 -6.9456 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.0150653 0.0135537 125 181 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 7.22 vpr 53.58 MiB -1 -1 0.12 17524 11 0.19 -1 -1 32296 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54864 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 15.0 MiB 2.63 1246 53.6 MiB 0.04 0.00 5.60634 -125.864 -5.60634 5.60634 0.56 0.000175469 0.000137768 0.0114663 0.00944135 30 3741 40 6.79088e+06 255968 556674. 1926.21 2.25 0.0566035 0.0488723 24526 138013 -1 2965 20 1354 3950 224488 49591 0 0 224488 49591 3950 2154 0 0 12136 10295 0 0 18194 12961 0 0 3950 2458 0 0 93281 11009 0 0 92977 10714 0 0 3950 0 0 2596 5005 4469 31372 0 0 5.85694 5.85694 -146.625 -5.85694 0 0 706193. 2443.58 0.18 0.05 0.07 -1 -1 0.18 0.0140061 0.0127049 130 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 6.22 vpr 53.59 MiB -1 -1 0.13 17544 12 0.29 -1 -1 32192 -1 -1 24 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54872 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 15.1 MiB 0.88 1212 53.6 MiB 0.04 0.00 6.04387 -122.765 -6.04387 6.04387 0.56 0.000176288 0.000138745 0.00955872 0.00798543 34 3662 49 6.79088e+06 323328 618332. 2139.56 2.92 0.0734048 0.062751 25102 150614 -1 2983 21 1599 4781 352585 74720 0 0 352585 74720 4781 2785 0 0 15503 13238 0 0 27635 18299 0 0 4781 3183 0 0 145038 19450 0 0 154847 17765 0 0 4781 0 0 3182 5557 5747 36459 0 0 6.24408 6.24408 -139.552 -6.24408 0 0 787024. 2723.27 0.20 0.06 0.07 -1 -1 0.20 0.0146296 0.0132075 136 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 9.13 vpr 53.55 MiB -1 -1 0.14 17364 13 0.24 -1 -1 32220 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 15.1 MiB 1.39 1416 53.6 MiB 0.04 0.00 6.66616 -146.72 -6.66616 6.66616 0.59 0.000195359 0.000150693 0.00961143 0.00802128 36 4213 46 6.79088e+06 296384 648988. 2245.63 5.19 0.0918037 0.0797323 25390 158009 -1 3393 17 1620 4228 289921 63664 0 0 289921 63664 4228 2486 0 0 14271 12143 0 0 23691 17054 0 0 4228 2793 0 0 122150 14553 0 0 121353 14635 0 0 4228 0 0 2608 3453 4231 26824 0 0 7.13591 7.13591 -170.232 -7.13591 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0147879 0.0135618 152 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 8.47 vpr 53.57 MiB -1 -1 0.14 17356 13 0.22 -1 -1 32264 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54860 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 15.0 MiB 1.28 1211 53.6 MiB 0.06 0.00 6.15798 -129.643 -6.15798 6.15798 0.56 0.000177659 0.000144293 0.0159361 0.0131499 36 3786 39 6.79088e+06 255968 648988. 2245.63 4.70 0.0877475 0.0754933 25390 158009 -1 3035 21 1654 5054 309892 69378 0 0 309892 69378 5054 2731 0 0 15922 13909 0 0 27902 18717 0 0 5054 3198 0 0 125978 15950 0 0 129982 14873 0 0 5054 0 0 3400 6210 6457 42889 0 0 6.79218 6.79218 -154.332 -6.79218 0 0 828058. 2865.25 0.21 0.06 0.08 -1 -1 0.21 0.0151278 0.0137154 137 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 4.87 vpr 53.26 MiB -1 -1 0.12 17316 12 0.16 -1 -1 32136 -1 -1 21 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54536 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 14.8 MiB 1.10 725 53.3 MiB 0.04 0.00 5.74632 -98.4824 -5.74632 5.74632 0.57 0.000136583 0.00011044 0.00949929 0.0078949 34 2491 46 6.79088e+06 282912 618332. 2139.56 1.52 0.0592983 0.0505531 25102 150614 -1 1869 20 1066 2384 138357 35389 0 0 138357 35389 2384 1440 0 0 8291 7062 0 0 13778 10036 0 0 2384 1641 0 0 53254 7753 0 0 58266 7457 0 0 2384 0 0 1318 1595 1664 11927 0 0 6.53383 6.53383 -126.083 -6.53383 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.0112827 0.0102581 106 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 8.12 vpr 53.28 MiB -1 -1 0.12 17448 12 0.16 -1 -1 32312 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54560 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 14.8 MiB 2.32 1024 53.3 MiB 0.05 0.00 5.27734 -112.658 -5.27734 5.27734 0.56 0.000137571 0.000111029 0.0116995 0.00965464 36 3273 49 6.79088e+06 229024 648988. 2245.63 3.43 0.0707006 0.0609263 25390 158009 -1 2476 23 1309 3554 343060 122944 0 0 343060 122944 3554 2071 0 0 11342 9801 0 0 20107 13568 0 0 3554 2344 0 0 154801 48353 0 0 149702 46807 0 0 3554 0 0 2245 3966 4506 26937 0 0 5.43486 5.43486 -133.48 -5.43486 0 0 828058. 2865.25 0.21 0.07 0.08 -1 -1 0.21 0.0121492 0.0109471 106 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 6.91 vpr 53.17 MiB -1 -1 0.14 17352 12 0.14 -1 -1 32096 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54448 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 14.7 MiB 2.43 1137 53.2 MiB 0.05 0.00 5.57489 -120.87 -5.57489 5.57489 0.56 0.000141052 0.000114543 0.0116451 0.0096922 38 3094 20 6.79088e+06 269440 678818. 2348.85 2.20 0.0553749 0.0473718 25966 169698 -1 2539 16 1225 3079 169607 38198 0 0 169607 38198 3079 1721 0 0 9655 8313 0 0 15246 10569 0 0 3079 1918 0 0 69422 7758 0 0 69126 7919 0 0 3079 0 0 1854 2154 3116 18923 0 0 5.82549 5.82549 -136.818 -5.82549 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0105237 0.00965528 113 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 7.68 vpr 53.29 MiB -1 -1 0.12 17576 13 0.16 -1 -1 32100 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54564 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 14.8 MiB 1.69 1084 53.3 MiB 0.03 0.00 6.24757 -138.238 -6.24757 6.24757 0.56 0.000149257 0.000120833 0.00648949 0.00550024 36 3234 25 6.79088e+06 202080 648988. 2245.63 3.57 0.0593709 0.0510737 25390 158009 -1 2536 44 1209 3018 789579 437005 0 0 789579 437005 3018 1784 0 0 10044 8738 0 0 20547 13761 0 0 3018 2109 0 0 385870 213878 0 0 367082 196735 0 0 3018 0 0 1809 2586 2574 17527 0 0 6.96017 6.96017 -164.043 -6.96017 0 0 828058. 2865.25 0.21 0.16 0.08 -1 -1 0.21 0.0197091 0.0174392 106 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 4.40 vpr 53.15 MiB -1 -1 0.12 17432 12 0.16 -1 -1 31940 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54428 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 14.6 MiB 1.37 862 53.2 MiB 0.04 0.00 5.74288 -117.899 -5.74288 5.74288 0.56 0.00013147 0.000106273 0.0110953 0.00916673 30 2467 37 6.79088e+06 229024 556674. 1926.21 0.81 0.0404657 0.0344502 24526 138013 -1 1996 16 913 2197 121369 28935 0 0 121369 28935 2197 1345 0 0 7125 6048 0 0 10429 7659 0 0 2197 1516 0 0 48436 6377 0 0 50985 5990 0 0 2197 0 0 1284 1844 2068 14155 0 0 6.33018 6.33018 -141.162 -6.33018 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00951475 0.00872214 96 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 5.98 vpr 53.20 MiB -1 -1 0.11 17200 12 0.14 -1 -1 32008 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54476 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 14.4 MiB 1.88 1009 53.2 MiB 0.04 0.00 5.05901 -123.851 -5.05901 5.05901 0.55 0.000137431 0.00011074 0.00923542 0.00772993 38 2826 17 6.79088e+06 229024 678818. 2348.85 1.82 0.0519702 0.0446541 25966 169698 -1 2326 15 987 2650 160707 35444 0 0 160707 35444 2650 1486 0 0 8336 7166 0 0 13054 9033 0 0 2650 1746 0 0 65499 8410 0 0 68518 7603 0 0 2650 0 0 1663 2410 2436 17281 0 0 5.27041 5.27041 -139.18 -5.27041 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00979133 0.00899292 101 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 5.36 vpr 53.55 MiB -1 -1 0.14 17516 13 0.23 -1 -1 32116 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 15.1 MiB 1.52 1286 53.6 MiB 0.04 0.00 6.64585 -137.945 -6.64585 6.64585 0.56 0.000171277 0.000139044 0.0103105 0.00866089 40 2867 25 6.79088e+06 269440 706193. 2443.58 1.42 0.0637746 0.0545466 26254 175826 -1 2737 19 1281 3391 196122 45196 0 0 196122 45196 3391 1848 0 0 11250 9538 0 0 19242 13200 0 0 3391 2139 0 0 78735 9351 0 0 80113 9120 0 0 3391 0 0 2110 3599 3404 24202 0 0 6.89645 6.89645 -155.433 -6.89645 0 0 926341. 3205.33 0.23 0.04 0.09 -1 -1 0.23 0.0143754 0.0131483 134 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 7.85 vpr 53.75 MiB -1 -1 0.14 17508 14 0.27 -1 -1 32172 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55040 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 15.3 MiB 1.53 1352 53.8 MiB 0.05 0.00 7.43701 -154.463 -7.43701 7.43701 0.56 0.000185786 0.000150326 0.0141619 0.0117908 36 3958 46 6.79088e+06 296384 648988. 2245.63 3.83 0.0887818 0.0761676 25390 158009 -1 3055 16 1402 3572 200841 46731 0 0 200841 46731 3572 1997 0 0 11799 9943 0 0 18598 13448 0 0 3572 2306 0 0 81260 9531 0 0 82040 9506 0 0 3572 0 0 2170 3268 3662 24036 0 0 7.68761 7.68761 -176.655 -7.68761 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0140923 0.0129557 151 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 8.58 vpr 53.09 MiB -1 -1 0.12 17332 11 0.14 -1 -1 32096 -1 -1 21 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54364 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 14.7 MiB 1.93 881 53.1 MiB 0.05 0.00 5.52794 -107.849 -5.52794 5.52794 0.56 0.000135664 0.000109708 0.0123005 0.0100978 30 2884 34 6.79088e+06 282912 556674. 1926.21 4.40 0.0743943 0.0634361 24526 138013 -1 2266 24 1401 3538 250227 75628 0 0 250227 75628 3538 2104 0 0 10912 9161 0 0 17245 11898 0 0 3538 2371 0 0 104637 25330 0 0 110357 24764 0 0 3538 0 0 2137 3346 2995 20872 0 0 5.90384 5.90384 -131.894 -5.90384 0 0 706193. 2443.58 0.18 0.05 0.07 -1 -1 0.18 0.0121129 0.0108704 106 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 5.57 vpr 53.70 MiB -1 -1 0.15 17696 12 0.26 -1 -1 32340 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54988 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 15.3 MiB 1.13 1364 53.7 MiB 0.05 0.00 5.82898 -132.025 -5.82898 5.82898 0.55 0.000186471 0.000151907 0.0139273 0.0116167 46 3335 26 6.79088e+06 323328 828058. 2865.25 1.96 0.0751849 0.0646367 27406 200422 -1 2665 18 1295 4140 193244 45210 0 0 193244 45210 4140 1733 0 0 12838 11261 0 0 20330 14130 0 0 4140 2175 0 0 74621 8189 0 0 77175 7722 0 0 4140 0 0 2845 3863 4158 32978 0 0 6.25527 6.25527 -150.615 -6.25527 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0145256 0.0133126 145 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 6.66 vpr 53.54 MiB -1 -1 0.13 17480 14 0.23 -1 -1 32252 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54824 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 15.1 MiB 1.88 1257 53.5 MiB 0.05 0.00 6.72425 -145.511 -6.72425 6.72425 0.56 0.000166219 0.000134405 0.0123364 0.0102383 40 3432 36 6.79088e+06 255968 706193. 2443.58 2.32 0.0715257 0.0610066 26254 175826 -1 3011 28 1584 5098 585946 205562 0 0 585946 205562 5098 2784 0 0 15847 13723 0 0 32287 18804 0 0 5098 3257 0 0 266549 84442 0 0 261067 82552 0 0 5098 0 0 3514 7077 7663 45410 0 0 7.04976 7.04976 -161.848 -7.04976 0 0 926341. 3205.33 0.22 0.10 0.09 -1 -1 0.22 0.0166649 0.0150068 126 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 4.87 vpr 53.27 MiB -1 -1 0.12 17432 12 0.13 -1 -1 31992 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54548 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 14.6 MiB 1.37 1074 53.3 MiB 0.03 0.00 5.84017 -134.266 -5.84017 5.84017 0.56 0.000136534 0.000110292 0.00800749 0.006702 34 2771 33 6.79088e+06 202080 618332. 2139.56 1.26 0.0526434 0.0449108 25102 150614 -1 2272 17 971 2560 157180 35736 0 0 157180 35736 2560 1438 0 0 8577 7352 0 0 14646 10258 0 0 2560 1620 0 0 65457 7606 0 0 63380 7462 0 0 2560 0 0 1589 2248 2693 17458 0 0 6.04038 6.04038 -149.616 -6.04038 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.010582 0.00965781 105 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 5.34 vpr 52.70 MiB -1 -1 0.12 16900 10 0.07 -1 -1 31692 -1 -1 13 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53968 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 14.3 MiB 1.62 619 52.7 MiB 0.04 0.00 4.04526 -95.3188 -4.04526 4.04526 0.56 0.000103548 8.3394e-05 0.00860946 0.00711722 38 1804 37 6.79088e+06 175136 678818. 2348.85 1.55 0.0421325 0.0358499 25966 169698 -1 1381 16 683 1511 85672 21093 0 0 85672 21093 1511 985 0 0 4913 4229 0 0 7407 5345 0 0 1511 1067 0 0 33203 5023 0 0 37127 4444 0 0 1511 0 0 828 1080 915 7422 0 0 4.17056 4.17056 -109.015 -4.17056 0 0 902133. 3121.57 0.22 0.02 0.08 -1 -1 0.22 0.00688882 0.00628525 66 84 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 5.68 vpr 53.12 MiB -1 -1 0.12 17576 13 0.17 -1 -1 32088 -1 -1 18 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54396 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 14.7 MiB 1.72 1112 53.1 MiB 0.05 0.00 6.04392 -131.248 -6.04392 6.04392 0.55 0.000146503 0.000118935 0.0120157 0.0100027 36 2795 29 6.79088e+06 242496 648988. 2245.63 1.69 0.058051 0.0495562 25390 158009 -1 2366 17 1097 2484 145742 34259 0 0 145742 34259 2484 1509 0 0 8411 7141 0 0 13413 9878 0 0 2484 1707 0 0 58869 7152 0 0 60081 6872 0 0 2484 0 0 1387 1621 1786 13212 0 0 6.33018 6.33018 -151.527 -6.33018 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.0107815 0.00985472 107 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 5.61 vpr 53.70 MiB -1 -1 0.14 17504 13 0.25 -1 -1 32180 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54992 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 15.1 MiB 1.50 1337 53.7 MiB 0.06 0.00 6.50592 -140.561 -6.50592 6.50592 0.56 0.000184094 0.000150373 0.0167487 0.0139508 40 3281 27 6.79088e+06 282912 706193. 2443.58 1.52 0.0743278 0.0633716 26254 175826 -1 3105 37 2093 6707 853071 412160 0 0 853071 412160 6707 3298 0 0 20439 17508 0 0 44461 26004 0 0 6707 4142 0 0 390472 185119 0 0 384285 176089 0 0 6707 0 0 4614 9256 9005 55956 0 0 6.70613 6.70613 -158.413 -6.70613 0 0 926341. 3205.33 0.23 0.17 0.09 -1 -1 0.23 0.0216299 0.0192797 143 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 6.56 vpr 53.70 MiB -1 -1 0.15 17688 13 0.27 -1 -1 32200 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54984 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 15.1 MiB 1.85 1408 53.7 MiB 0.05 0.00 6.34142 -140.43 -6.34142 6.34142 0.56 0.000180189 0.000146864 0.0141127 0.0117733 38 3653 35 6.79088e+06 282912 678818. 2348.85 2.22 0.0764293 0.0655873 25966 169698 -1 3095 19 1423 4259 244933 52862 0 0 244933 52862 4259 2234 0 0 13239 11385 0 0 20510 14342 0 0 4259 2613 0 0 97888 11813 0 0 104778 10475 0 0 4259 0 0 2836 5718 4747 34008 0 0 6.70608 6.70608 -159.434 -6.70608 0 0 902133. 3121.57 0.22 0.05 0.08 -1 -1 0.22 0.0144479 0.0132073 141 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 3.99 vpr 52.54 MiB -1 -1 0.10 16900 9 0.06 -1 -1 31620 -1 -1 18 26 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53804 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 13.9 MiB 0.92 703 52.5 MiB 0.03 0.00 3.8527 -79.1624 -3.8527 3.8527 0.56 8.8163e-05 7.119e-05 0.00665637 0.00549886 34 1709 19 6.79088e+06 242496 618332. 2139.56 0.94 0.0328402 0.0278799 25102 150614 -1 1541 16 668 1604 96600 22785 0 0 96600 22785 1604 1004 0 0 5513 4762 0 0 9608 6671 0 0 1604 1097 0 0 39943 4516 0 0 38328 4735 0 0 1604 0 0 936 1137 1248 9189 0 0 3.978 3.978 -91.5527 -3.978 0 0 787024. 2723.27 0.20 0.02 0.07 -1 -1 0.20 0.00626257 0.00569426 67 69 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 5.87 vpr 53.49 MiB -1 -1 0.12 17428 13 0.26 -1 -1 32812 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54776 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 15.0 MiB 1.57 1259 53.5 MiB 0.04 0.00 6.74893 -135.263 -6.74893 6.74893 0.55 0.000174301 0.000141446 0.0085094 0.00720719 38 3552 25 6.79088e+06 309856 678818. 2348.85 1.89 0.0651169 0.0559883 25966 169698 -1 2819 17 1414 3925 196978 46834 0 0 196978 46834 3925 1971 0 0 12401 10808 0 0 18781 13420 0 0 3925 2424 0 0 76560 9447 0 0 81386 8764 0 0 3925 0 0 2511 3513 3540 25401 0 0 7.75133 7.75133 -163.02 -7.75133 0 0 902133. 3121.57 0.21 0.04 0.08 -1 -1 0.21 0.0132561 0.0121462 136 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 6.37 vpr 52.58 MiB -1 -1 0.10 16892 8 0.07 -1 -1 32016 -1 -1 11 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53840 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 13.9 MiB 1.59 775 52.6 MiB 0.02 0.00 3.54052 -84.3897 -3.54052 3.54052 0.56 8.6256e-05 6.9197e-05 0.00505315 0.00419541 30 1937 31 6.79088e+06 148192 556674. 1926.21 2.72 0.0425002 0.0360423 24526 138013 -1 1570 14 606 1336 74454 17634 0 0 74454 17634 1336 799 0 0 4229 3587 0 0 6239 4488 0 0 1336 880 0 0 31202 3824 0 0 30112 4056 0 0 1336 0 0 730 574 894 6532 0 0 3.62662 3.62662 -98.2189 -3.62662 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00562788 0.00516186 60 59 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 5.50 vpr 53.28 MiB -1 -1 0.12 17524 15 0.22 -1 -1 32684 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54560 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 14.7 MiB 1.79 1241 53.3 MiB 0.05 0.00 7.14721 -147.603 -7.14721 7.14721 0.56 0.00015638 0.000126546 0.0124956 0.0103687 40 2978 25 6.79088e+06 242496 706193. 2443.58 1.33 0.0604502 0.0516286 26254 175826 -1 2829 16 1258 3495 226737 49534 0 0 226737 49534 3495 1945 0 0 11699 9879 0 0 19621 13565 0 0 3495 2247 0 0 90821 11716 0 0 97606 10182 0 0 3495 0 0 2237 3826 3558 25838 0 0 7.64841 7.64841 -168.576 -7.64841 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.0117178 0.0107675 121 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 7.73 vpr 53.33 MiB -1 -1 0.14 17608 13 0.20 -1 -1 32124 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54608 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 14.7 MiB 1.54 1187 53.3 MiB 0.05 0.00 5.69249 -126.522 -5.69249 5.69249 0.55 0.000158147 0.000128107 0.0127935 0.0106348 38 3463 35 6.79088e+06 242496 678818. 2348.85 3.79 0.0760403 0.0657476 25966 169698 -1 2739 17 1260 3600 217432 46260 0 0 217432 46260 3600 2006 0 0 10896 9306 0 0 17383 11701 0 0 3600 2375 0 0 89802 10700 0 0 92151 10172 0 0 3600 0 0 2340 3675 3788 26441 0 0 5.94309 5.94309 -143.729 -5.94309 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0122936 0.0112657 117 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 6.20 vpr 53.51 MiB -1 -1 0.13 17480 13 0.22 -1 -1 32240 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54792 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 15.0 MiB 1.29 1308 53.5 MiB 0.05 0.00 6.41212 -141.876 -6.41212 6.41212 0.56 0.000178995 0.000146637 0.0129773 0.0108803 34 3513 49 6.79088e+06 242496 618332. 2139.56 2.49 0.0774315 0.0663426 25102 150614 -1 3086 19 1413 4031 254170 55025 0 0 254170 55025 4031 2152 0 0 12976 10867 0 0 22845 15196 0 0 4031 2490 0 0 103235 12508 0 0 107052 11812 0 0 4031 0 0 2618 4680 5103 31140 0 0 6.56543 6.56543 -161.96 -6.56543 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.0139607 0.0127173 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 5.37 vpr 53.17 MiB -1 -1 0.12 17460 12 0.14 -1 -1 32012 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54444 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 14.7 MiB 1.58 978 53.2 MiB 0.04 0.00 5.61414 -124.304 -5.61414 5.61414 0.56 0.000137228 0.000110114 0.00943591 0.00782367 40 2492 42 6.79088e+06 215552 706193. 2443.58 1.42 0.0579712 0.0494875 26254 175826 -1 2287 22 1127 2721 266714 89333 0 0 266714 89333 2721 1673 0 0 9266 7998 0 0 16556 11243 0 0 2721 1930 0 0 116573 33290 0 0 118877 33199 0 0 2721 0 0 1594 2328 2128 15613 0 0 5.73944 5.73944 -138.182 -5.73944 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0120597 0.0109148 103 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 5.51 vpr 53.00 MiB -1 -1 0.18 17344 11 0.12 -1 -1 32200 -1 -1 18 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54276 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 14.5 MiB 1.50 759 53.0 MiB 0.04 0.00 5.19894 -108.246 -5.19894 5.19894 0.55 0.000125214 0.000100579 0.0103908 0.0085306 46 2193 31 6.79088e+06 242496 828058. 2865.25 1.67 0.0506167 0.0430577 27406 200422 -1 1655 17 930 2308 134742 39212 0 0 134742 39212 2308 1294 0 0 7276 6220 0 0 11793 8060 0 0 2308 1533 0 0 52358 11143 0 0 58699 10962 0 0 2308 0 0 1378 1677 1893 13062 0 0 5.44954 5.44954 -126.698 -5.44954 0 0 1.01997e+06 3529.29 0.25 0.03 0.10 -1 -1 0.25 0.00956323 0.00874052 95 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 5.13 vpr 53.11 MiB -1 -1 0.12 17344 11 0.15 -1 -1 32088 -1 -1 21 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54388 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 14.7 MiB 1.25 956 53.1 MiB 0.05 0.00 5.49223 -110.214 -5.49223 5.49223 0.57 0.000139217 0.000112521 0.0117652 0.00977758 36 2408 28 6.79088e+06 282912 648988. 2245.63 1.55 0.0553655 0.0471058 25390 158009 -1 2209 25 1046 2882 265597 99155 0 0 265597 99155 2882 1597 0 0 9431 8125 0 0 17116 11599 0 0 2882 1833 0 0 116260 38749 0 0 117026 37252 0 0 2882 0 0 1836 2771 3304 20315 0 0 5.61753 5.61753 -123.904 -5.61753 0 0 828058. 2865.25 0.21 0.06 0.08 -1 -1 0.21 0.0125933 0.0113671 109 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 5.94 vpr 53.49 MiB -1 -1 0.12 17092 12 0.17 -1 -1 32252 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 14.8 MiB 2.04 1239 53.5 MiB 0.05 0.00 5.78208 -135.974 -5.78208 5.78208 0.56 0.000156165 0.000126072 0.0134282 0.0111326 42 3377 48 6.79088e+06 229024 744469. 2576.02 1.51 0.0699121 0.0594504 26542 182613 -1 2635 18 1352 3304 204276 44877 0 0 204276 44877 3304 1877 0 0 10883 9113 0 0 18454 12614 0 0 3304 2287 0 0 82474 9857 0 0 85857 9129 0 0 3304 0 0 1952 2361 2488 18909 0 0 6.10759 6.10759 -157.865 -6.10759 0 0 949917. 3286.91 0.23 0.04 0.09 -1 -1 0.23 0.012471 0.0113995 119 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 5.99 vpr 53.19 MiB -1 -1 0.11 17344 12 0.13 -1 -1 32144 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54464 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 14.8 MiB 1.82 1097 53.2 MiB 0.04 0.00 5.67678 -121.664 -5.67678 5.67678 0.56 0.000145275 0.000116261 0.011202 0.00922811 34 3021 48 6.79088e+06 229024 618332. 2139.56 1.92 0.0635862 0.0540632 25102 150614 -1 2488 17 1167 2899 190707 42263 0 0 190707 42263 2899 1712 0 0 9685 8352 0 0 16488 11457 0 0 2899 1944 0 0 79251 9496 0 0 79485 9302 0 0 2899 0 0 1732 2793 2711 18651 0 0 6.30328 6.30328 -144.974 -6.30328 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.010516 0.00960173 101 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 11.10 vpr 53.12 MiB -1 -1 0.10 17540 10 0.11 -1 -1 32228 -1 -1 17 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54400 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 14.5 MiB 1.26 1022 53.1 MiB 0.04 0.00 4.98748 -112.632 -4.98748 4.98748 0.56 0.000131741 0.000106269 0.0100234 0.00831194 30 2965 33 6.79088e+06 229024 556674. 1926.21 7.61 0.0654597 0.0558072 24526 138013 -1 2222 15 933 2624 136408 31563 0 0 136408 31563 2624 1417 0 0 8245 7078 0 0 12216 8824 0 0 2624 1553 0 0 54839 6501 0 0 55860 6190 0 0 2624 0 0 1691 2884 3020 20511 0 0 5.11278 5.11278 -128.044 -5.11278 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.0094924 0.00871091 103 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 19.32 vpr 53.88 MiB -1 -1 0.14 17616 13 0.27 -1 -1 32284 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55168 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 15.1 MiB 1.51 1265 53.9 MiB 0.07 0.00 6.6851 -136.449 -6.6851 6.6851 0.55 0.000192161 0.00015588 0.0183066 0.015145 40 3322 29 6.79088e+06 282912 706193. 2443.58 15.26 0.139689 0.119498 26254 175826 -1 2938 17 1487 4297 278360 61901 0 0 278360 61901 4297 2311 0 0 14256 11895 0 0 24173 16553 0 0 4297 2779 0 0 114994 14437 0 0 116343 13926 0 0 4297 0 0 2810 5838 5650 38873 0 0 7.1394 7.1394 -160.019 -7.1394 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0151597 0.0138863 149 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 7.35 vpr 53.68 MiB -1 -1 0.14 17796 14 0.27 -1 -1 32728 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 15.1 MiB 1.74 1318 53.7 MiB 0.07 0.00 6.74118 -149.152 -6.74118 6.74118 0.56 0.000183558 0.000142989 0.0171961 0.014156 38 3767 26 6.79088e+06 242496 678818. 2348.85 3.11 0.0754661 0.06443 25966 169698 -1 2953 19 1531 4295 220390 49760 0 0 220390 49760 4295 2129 0 0 12947 11369 0 0 20643 13966 0 0 4295 2523 0 0 92382 9592 0 0 85828 10181 0 0 4295 0 0 2764 4208 3946 30221 0 0 6.82728 6.82728 -164.43 -6.82728 0 0 902133. 3121.57 0.22 0.05 0.08 -1 -1 0.22 0.014365 0.0131148 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 6.31 vpr 53.14 MiB -1 -1 0.12 17504 12 0.13 -1 -1 32128 -1 -1 16 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54416 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 14.5 MiB 1.74 1065 53.1 MiB 0.04 0.00 5.82898 -130.877 -5.82898 5.82898 0.56 0.000140855 0.000114413 0.0110565 0.00919369 36 2817 22 6.79088e+06 215552 648988. 2245.63 2.30 0.0576409 0.049374 25390 158009 -1 2305 15 945 2547 157475 34212 0 0 157475 34212 2547 1447 0 0 8115 6797 0 0 13643 9333 0 0 2547 1665 0 0 64725 7620 0 0 65898 7350 0 0 2547 0 0 1602 2987 2605 19185 0 0 6.20488 6.20488 -148.293 -6.20488 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.0100999 0.00927311 101 148 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 7.28 vpr 53.87 MiB -1 -1 0.14 17688 12 0.25 -1 -1 32324 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55164 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 15.2 MiB 1.91 1407 53.9 MiB 0.06 0.00 6.09421 -131.041 -6.09421 6.09421 0.55 0.000181615 0.000147153 0.01495 0.0124128 40 3548 50 6.79088e+06 323328 706193. 2443.58 2.86 0.0888875 0.076248 26254 175826 -1 3312 21 1732 5326 354666 74516 0 0 354666 74516 5326 2838 0 0 16631 14347 0 0 31174 19644 0 0 5326 3324 0 0 149926 16960 0 0 146283 17403 0 0 5326 0 0 3594 5940 6346 40296 0 0 6.37282 6.37282 -148.229 -6.37282 0 0 926341. 3205.33 0.22 0.06 0.09 -1 -1 0.22 0.0160704 0.014586 146 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 6.51 vpr 53.57 MiB -1 -1 0.14 17700 14 0.31 -1 -1 32540 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54860 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 15.0 MiB 1.09 1312 53.6 MiB 0.05 0.00 6.92457 -142.131 -6.92457 6.92457 0.55 0.000176703 0.000143191 0.0119658 0.00999298 36 3731 21 6.79088e+06 296384 648988. 2245.63 2.92 0.0684763 0.0585509 25390 158009 -1 3029 18 1413 3773 226717 51828 0 0 226717 51828 3773 2126 0 0 12739 10788 0 0 20942 15050 0 0 3773 2504 0 0 92810 10786 0 0 92680 10574 0 0 3773 0 0 2360 3158 3538 23917 0 0 7.59796 7.59796 -165.718 -7.59796 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0140185 0.0128277 142 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 6.27 vpr 53.50 MiB -1 -1 0.14 17788 13 0.23 -1 -1 32168 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54780 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 15.0 MiB 1.66 1338 53.5 MiB 0.05 0.00 6.9357 -143.111 -6.9357 6.9357 0.56 0.000171048 0.000138576 0.0120853 0.0100207 38 3659 24 6.79088e+06 309856 678818. 2348.85 2.19 0.0668529 0.0572637 25966 169698 -1 2789 18 1273 3289 180181 40138 0 0 180181 40138 3289 1736 0 0 10151 8683 0 0 15645 11034 0 0 3289 2073 0 0 73788 8495 0 0 74019 8117 0 0 3289 0 0 2016 2601 2684 19900 0 0 7.3116 7.3116 -162.296 -7.3116 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0133743 0.0122363 136 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 6.16 vpr 53.46 MiB -1 -1 0.13 17476 13 0.23 -1 -1 32144 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54748 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 15.0 MiB 1.55 1209 53.5 MiB 0.04 0.00 6.34148 -132.773 -6.34148 6.34148 0.56 0.000163484 0.000132529 0.00848365 0.00716743 40 3272 20 6.79088e+06 282912 706193. 2443.58 2.16 0.0619688 0.0536009 26254 175826 -1 2937 19 1269 3743 251726 53410 0 0 251726 53410 3743 2202 0 0 12156 10331 0 0 22002 14346 0 0 3743 2541 0 0 104049 12053 0 0 106033 11937 0 0 3743 0 0 2474 4923 5063 31873 0 0 7.00712 7.00712 -148.882 -7.00712 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0135708 0.0123753 125 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 6.16 vpr 53.32 MiB -1 -1 0.12 17424 12 0.17 -1 -1 32240 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54604 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 14.8 MiB 1.61 1028 53.3 MiB 0.04 0.00 5.69249 -123.088 -5.69249 5.69249 0.56 0.000153116 0.000123955 0.00899246 0.00751677 36 2974 34 6.79088e+06 215552 648988. 2245.63 2.23 0.0633361 0.0540991 25390 158009 -1 2454 17 1148 3061 206066 44557 0 0 206066 44557 3061 1801 0 0 9991 8563 0 0 16549 11609 0 0 3061 2076 0 0 84645 10691 0 0 88759 9817 0 0 3061 0 0 1913 3936 3777 24389 0 0 5.94653 5.94653 -141.71 -5.94653 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0117387 0.0107341 111 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 6.98 vpr 53.93 MiB -1 -1 0.15 18296 14 0.37 -1 -1 32436 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55224 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 15.3 MiB 0.93 1357 53.9 MiB 0.05 0.00 7.21858 -146.942 -7.21858 7.21858 0.56 0.000202752 0.000164833 0.0130099 0.0108762 40 4074 31 6.79088e+06 282912 706193. 2443.58 3.37 0.087739 0.0757259 26254 175826 -1 3614 32 1767 5300 566320 175021 0 0 566320 175021 5300 3017 0 0 17300 14727 0 0 32349 21093 0 0 5300 3476 0 0 250172 66086 0 0 255899 66622 0 0 5300 0 0 3533 8022 8291 48766 0 0 7.47266 7.47266 -170.146 -7.47266 0 0 926341. 3205.33 0.23 0.10 0.09 -1 -1 0.23 0.0218894 0.0196356 159 229 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 6.29 vpr 53.36 MiB -1 -1 0.10 17344 11 0.15 -1 -1 32364 -1 -1 16 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54644 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 14.8 MiB 1.83 1150 53.4 MiB 0.05 0.00 5.36687 -118.436 -5.36687 5.36687 0.56 0.000149454 0.000120875 0.0121939 0.0100929 38 3175 20 6.79088e+06 215552 678818. 2348.85 2.16 0.0592761 0.050299 25966 169698 -1 2613 18 1262 3552 197360 43435 0 0 197360 43435 3552 1904 0 0 10869 9312 0 0 17245 11813 0 0 3552 2256 0 0 80348 9391 0 0 81794 8759 0 0 3552 0 0 2290 3302 3194 23380 0 0 5.65667 5.65667 -137.674 -5.65667 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0116926 0.0106937 112 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 6.52 vpr 53.48 MiB -1 -1 0.14 17480 13 0.23 -1 -1 32216 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 15.0 MiB 1.41 1268 53.5 MiB 0.04 0.00 6.50941 -139.443 -6.50941 6.50941 0.56 0.000172351 0.000137852 0.0120139 0.00999009 38 3210 41 6.79088e+06 269440 678818. 2348.85 2.69 0.0769067 0.065971 25966 169698 -1 2633 18 1222 4123 220047 47910 0 0 220047 47910 4123 1820 0 0 12589 10802 0 0 20296 13668 0 0 4123 2152 0 0 87452 10197 0 0 91464 9271 0 0 4123 0 0 2901 5429 5333 38006 0 0 6.97141 6.97141 -155.855 -6.97141 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0137107 0.0125014 137 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 7.21 vpr 53.66 MiB -1 -1 0.13 17480 12 0.23 -1 -1 32312 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54944 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 15.0 MiB 1.56 1089 53.7 MiB 0.03 0.00 6.07958 -128.612 -6.07958 6.07958 0.56 0.000182063 0.000146909 0.00792765 0.00673612 38 3871 47 6.79088e+06 282912 678818. 2348.85 3.24 0.0801916 0.0691294 25966 169698 -1 2774 19 1445 4635 241989 56026 0 0 241989 56026 4635 2237 0 0 14074 12154 0 0 22042 15106 0 0 4635 2588 0 0 95317 12350 0 0 101286 11591 0 0 4635 0 0 3190 5736 5362 40089 0 0 6.08302 6.08302 -144.399 -6.08302 0 0 902133. 3121.57 0.22 0.05 0.08 -1 -1 0.22 0.0149751 0.013696 146 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 4.76 vpr 53.59 MiB -1 -1 0.13 17480 13 0.24 -1 -1 32212 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54872 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 15.1 MiB 1.10 1228 53.6 MiB 0.03 0.00 6.47021 -140.162 -6.47021 6.47021 0.55 0.000166787 0.000134852 0.00675703 0.00576097 38 2904 20 6.79088e+06 296384 678818. 2348.85 1.26 0.0566084 0.0486118 25966 169698 -1 2454 20 1163 3102 155781 35998 0 0 155781 35998 3102 1575 0 0 9751 8318 0 0 14907 10630 0 0 3102 1932 0 0 63931 6665 0 0 60988 6878 0 0 3102 0 0 1939 2371 2700 19184 0 0 6.72076 6.72076 -157.191 -6.72076 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0137141 0.0125276 131 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 15.42 vpr 53.57 MiB -1 -1 0.12 17408 13 0.18 -1 -1 32228 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54860 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 15.1 MiB 2.15 1270 53.6 MiB 0.04 0.00 6.09426 -134.354 -6.09426 6.09426 0.56 0.000161732 0.000131049 0.0107874 0.00898756 38 3432 39 6.79088e+06 242496 678818. 2348.85 10.86 0.115054 0.0986818 25966 169698 -1 2694 19 1400 3883 208793 45479 0 0 208793 45479 3883 2100 0 0 11521 10011 0 0 18286 12307 0 0 3883 2389 0 0 85354 9495 0 0 85866 9177 0 0 3883 0 0 2483 4481 3868 30231 0 0 6.34486 6.34486 -151.603 -6.34486 0 0 902133. 3121.57 0.22 0.05 0.08 -1 -1 0.22 0.01388 0.0125587 124 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 6.91 vpr 53.61 MiB -1 -1 0.17 17428 12 0.23 -1 -1 32360 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54896 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 15.0 MiB 1.64 1406 53.6 MiB 0.04 0.00 6.29447 -141.655 -6.29447 6.29447 0.56 0.000184799 0.000145927 0.0101084 0.00849296 38 3843 49 6.79088e+06 269440 678818. 2348.85 2.78 0.077824 0.0668047 25966 169698 -1 2992 28 1333 4329 493619 209300 0 0 493619 209300 4329 2119 0 0 12991 11203 0 0 23956 15124 0 0 4329 2470 0 0 224102 90818 0 0 223912 87566 0 0 4329 0 0 2996 6259 6129 42215 0 0 6.41977 6.41977 -155.444 -6.41977 0 0 902133. 3121.57 0.22 0.10 0.08 -1 -1 0.22 0.018027 0.0162869 140 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 5.87 vpr 53.73 MiB -1 -1 0.14 17616 13 0.24 -1 -1 32700 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55016 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 15.3 MiB 1.31 1384 53.7 MiB 0.04 0.00 6.47021 -143.401 -6.47021 6.47021 0.56 0.000198413 0.000162624 0.00970085 0.00825672 44 3454 49 6.79088e+06 269440 787024. 2723.27 2.02 0.0836309 0.0720227 27118 194962 -1 2837 17 1324 3894 206100 46538 0 0 206100 46538 3894 1960 0 0 12172 10333 0 0 19924 13710 0 0 3894 2319 0 0 83132 8976 0 0 83084 9240 0 0 3894 0 0 2570 3969 4185 29136 0 0 7.09671 7.09671 -165.622 -7.09671 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.015026 0.0138121 145 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 7.15 vpr 53.50 MiB -1 -1 0.12 17484 14 0.25 -1 -1 32216 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54788 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 15.1 MiB 1.19 1112 53.5 MiB 0.04 0.00 6.71317 -135.676 -6.71317 6.71317 0.57 0.000161548 0.000132126 0.00837064 0.00713971 34 3426 33 6.79088e+06 269440 618332. 2139.56 3.46 0.084237 0.0721803 25102 150614 -1 2831 26 1724 5145 469482 138115 0 0 469482 138115 5145 2939 0 0 16269 14197 0 0 32323 20229 0 0 5145 3388 0 0 202977 48505 0 0 207623 48857 0 0 5145 0 0 3421 6713 7240 41711 0 0 7.04987 7.04987 -162.955 -7.04987 0 0 787024. 2723.27 0.20 0.08 0.07 -1 -1 0.20 0.0155236 0.0139604 125 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 7.55 vpr 53.48 MiB -1 -1 0.13 17480 13 0.24 -1 -1 32240 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 14.9 MiB 1.83 1171 53.5 MiB 0.06 0.00 6.62696 -130.6 -6.62696 6.62696 0.56 0.000178314 0.000144847 0.0145838 0.0121271 38 3675 27 6.79088e+06 282912 678818. 2348.85 3.26 0.0759699 0.0651716 25966 169698 -1 2736 18 1464 4001 211963 49029 0 0 211963 49029 4001 2177 0 0 12541 10747 0 0 18925 13572 0 0 4001 2594 0 0 84354 10357 0 0 88141 9582 0 0 4001 0 0 2537 3563 4265 27834 0 0 7.12816 7.12816 -154.333 -7.12816 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.0162914 0.015007 136 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 5.71 vpr 53.64 MiB -1 -1 0.15 17844 13 0.24 -1 -1 32108 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54924 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 14.9 MiB 1.58 1366 53.6 MiB 0.03 0.00 6.41212 -141.541 -6.41212 6.41212 0.56 0.000184446 0.000150561 0.00783809 0.00669339 40 3328 23 6.79088e+06 282912 706193. 2443.58 1.59 0.0643825 0.0554049 26254 175826 -1 3142 38 2072 6060 636765 252894 0 0 636765 252894 6060 3326 0 0 19025 16239 0 0 37872 23332 0 0 6060 3950 0 0 284192 105776 0 0 283556 100271 0 0 6060 0 0 3988 7141 6439 45472 0 0 7.12472 7.12472 -166.887 -7.12472 0 0 926341. 3205.33 0.22 0.12 0.09 -1 -1 0.22 0.0216653 0.0192587 144 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 8.67 vpr 53.77 MiB -1 -1 0.13 17684 12 0.27 -1 -1 32336 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55064 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 15.3 MiB 1.26 1375 53.8 MiB 0.05 0.00 6.36178 -137.635 -6.36178 6.36178 0.55 0.000179873 0.000145412 0.0135968 0.011258 36 4081 46 6.79088e+06 282912 648988. 2245.63 4.88 0.0870628 0.074769 25390 158009 -1 3302 19 1602 4391 305141 67276 0 0 305141 67276 4391 2520 0 0 14172 12135 0 0 24005 16528 0 0 4391 2887 0 0 130806 16491 0 0 127376 16715 0 0 4391 0 0 2789 4096 4914 29696 0 0 6.69843 6.69843 -158.751 -6.69843 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0149908 0.0136801 147 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 4.66 vpr 53.04 MiB -1 -1 0.11 17316 11 0.10 -1 -1 31864 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54316 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 14.6 MiB 1.02 1004 53.0 MiB 0.04 0.00 5.23038 -117.085 -5.23038 5.23038 0.58 0.000126709 0.000102588 0.00999671 0.00827533 36 2579 27 6.79088e+06 188608 648988. 2245.63 1.41 0.0491979 0.0416903 25390 158009 -1 2248 19 882 2325 149135 33507 0 0 149135 33507 2325 1395 0 0 7803 6654 0 0 12979 9240 0 0 2325 1558 0 0 62649 7283 0 0 61054 7377 0 0 2325 0 0 1443 2296 2300 15564 0 0 5.44178 5.44178 -132.855 -5.44178 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.010078 0.00915835 91 121 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 14.29 vpr 53.30 MiB -1 -1 0.13 17424 13 0.19 -1 -1 32184 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54580 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 14.7 MiB 1.46 1119 53.3 MiB 0.04 0.00 6.49822 -140.987 -6.49822 6.49822 0.57 0.000165143 0.000135701 0.0100679 0.00847465 38 3125 42 6.79088e+06 269440 678818. 2348.85 10.45 0.107218 0.0920845 25966 169698 -1 2520 15 1122 2967 159391 35937 0 0 159391 35937 2967 1620 0 0 9143 7779 0 0 14014 9801 0 0 2967 1814 0 0 65011 7595 0 0 65289 7328 0 0 2967 0 0 1845 2501 2561 18956 0 0 6.62352 6.62352 -157.172 -6.62352 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0113422 0.0104622 118 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 6.48 vpr 53.91 MiB -1 -1 0.14 18060 14 0.38 -1 -1 32436 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55204 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 15.5 MiB 1.05 1416 53.9 MiB 0.06 0.00 7.7695 -154.348 -7.7695 7.7695 0.57 0.000215185 0.000175129 0.0168121 0.014014 46 3695 20 6.79088e+06 323328 828058. 2865.25 2.69 0.0867327 0.0744509 27406 200422 -1 3006 16 1662 4846 244526 56211 0 0 244526 56211 4846 2162 0 0 14972 12881 0 0 23047 16062 0 0 4846 2727 0 0 97191 11426 0 0 99624 10953 0 0 4846 0 0 3184 5081 4542 34847 0 0 7.9417 7.9417 -170.346 -7.9417 0 0 1.01997e+06 3529.29 0.25 0.05 0.10 -1 -1 0.25 0.0161 0.0148391 171 243 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 6.04 vpr 53.59 MiB -1 -1 0.15 17524 13 0.24 -1 -1 32272 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54876 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 15.1 MiB 1.29 1241 53.6 MiB 0.03 0.00 6.58432 -143.713 -6.58432 6.58432 0.56 0.000164515 0.000133413 0.00845899 0.00713571 38 3262 28 6.79088e+06 282912 678818. 2348.85 2.29 0.0653139 0.0562415 25966 169698 -1 2642 16 1259 3408 170227 40168 0 0 170227 40168 3408 1797 0 0 10612 9185 0 0 16428 11570 0 0 3408 2095 0 0 68976 7679 0 0 67395 7842 0 0 3408 0 0 2149 2875 3357 23997 0 0 6.58432 6.58432 -158.874 -6.58432 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0127621 0.011752 134 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 4.82 vpr 53.17 MiB -1 -1 0.13 17308 11 0.14 -1 -1 32084 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54444 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 14.6 MiB 0.58 923 53.2 MiB 0.04 0.00 5.44189 -119.087 -5.44189 5.44189 0.55 0.000138208 0.000109514 0.0102716 0.00841943 30 2932 46 6.79088e+06 229024 556674. 1926.21 2.02 0.0473697 0.0406312 24526 138013 -1 2321 23 1312 3685 228517 49290 0 0 228517 49290 3685 2133 0 0 11200 9775 0 0 18405 12253 0 0 3685 2424 0 0 94456 11634 0 0 97086 11071 0 0 3685 0 0 2373 4090 3495 25931 0 0 5.72815 5.72815 -137.285 -5.72815 0 0 706193. 2443.58 0.18 0.04 0.07 -1 -1 0.18 0.0119327 0.0107269 101 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 5.63 vpr 54.23 MiB -1 -1 0.19 18400 15 0.48 -1 -1 32244 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55536 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 15.6 MiB 0.91 1646 54.2 MiB 0.05 0.00 7.77725 -160.767 -7.77725 7.77725 0.56 0.000221085 0.000180143 0.0139966 0.0117667 46 3881 28 6.79088e+06 336800 828058. 2865.25 1.78 0.0871803 0.074801 27406 200422 -1 3201 25 1691 5045 439322 171171 0 0 439322 171171 5045 2161 0 0 15706 13466 0 0 26162 17939 0 0 5045 2741 0 0 191595 67498 0 0 195769 67366 0 0 5045 0 0 3354 5688 6250 41821 0 0 8.15315 8.15315 -178.815 -8.15315 0 0 1.01997e+06 3529.29 0.25 0.09 0.12 -1 -1 0.25 0.0213044 0.0193251 179 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 6.75 vpr 53.64 MiB -1 -1 0.16 17428 13 0.29 -1 -1 32276 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 14.9 MiB 0.95 1304 53.6 MiB 0.06 0.00 6.47021 -144.885 -6.47021 6.47021 0.56 0.000195198 0.000151405 0.0147593 0.012236 36 3506 28 6.79088e+06 269440 648988. 2245.63 3.32 0.0806331 0.0695468 25390 158009 -1 3036 17 1476 3910 235101 52605 0 0 235101 52605 3910 2274 0 0 12839 11003 0 0 20972 14858 0 0 3910 2590 0 0 94473 11408 0 0 98997 10472 0 0 3910 0 0 2434 3998 4482 28084 0 0 7.04981 7.04981 -170.812 -7.04981 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0142588 0.0130885 139 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 5.10 vpr 53.07 MiB -1 -1 0.13 17220 11 0.11 -1 -1 32072 -1 -1 13 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54340 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 14.5 MiB 1.10 1010 53.1 MiB 0.04 0.00 5.40613 -117.216 -5.40613 5.40613 0.59 0.000133812 0.000108133 0.00988539 0.00825529 36 2523 32 6.79088e+06 175136 648988. 2245.63 1.67 0.0564924 0.0484916 25390 158009 -1 2174 15 907 2249 133269 30489 0 0 133269 30489 2249 1265 0 0 7414 6323 0 0 11982 8607 0 0 2249 1430 0 0 53720 6713 0 0 55655 6151 0 0 2249 0 0 1342 2076 1918 14309 0 0 5.65673 5.65673 -134.053 -5.65673 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.013177 0.0118385 94 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 7.34 vpr 53.83 MiB -1 -1 0.12 17768 12 0.28 -1 -1 32304 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55120 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 15.3 MiB 0.93 1333 53.8 MiB 0.05 0.00 6.25876 -134.034 -6.25876 6.25876 0.56 0.000188177 0.000152938 0.0136109 0.0113497 36 3533 29 6.79088e+06 269440 648988. 2245.63 3.92 0.0814807 0.0701476 25390 158009 -1 3088 17 1440 4443 271377 60182 0 0 271377 60182 4443 2259 0 0 14542 12488 0 0 24956 17234 0 0 4443 2620 0 0 111280 12804 0 0 111713 12777 0 0 4443 0 0 3003 6767 7733 45554 0 0 6.42321 6.42321 -154.146 -6.42321 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0148989 0.0136486 146 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 6.20 vpr 53.11 MiB -1 -1 0.11 17164 12 0.17 -1 -1 32100 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 14.6 MiB 1.00 1135 53.1 MiB 0.03 0.00 6.07963 -128.01 -6.07963 6.07963 0.58 0.000146753 0.000118695 0.00672573 0.00568022 36 3175 27 6.79088e+06 242496 648988. 2245.63 2.84 0.0592359 0.0514208 25390 158009 -1 2715 21 1197 3094 275506 84060 0 0 275506 84060 3094 1896 0 0 10172 8590 0 0 17598 12244 0 0 3094 2213 0 0 120331 29786 0 0 121217 29331 0 0 3094 0 0 1897 2989 3061 20041 0 0 6.63117 6.63117 -152.001 -6.63117 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0141223 0.0129532 113 148 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 4.91 vpr 53.18 MiB -1 -1 0.11 17444 12 0.15 -1 -1 32016 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54452 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 14.5 MiB 0.80 1035 53.2 MiB 0.02 0.00 6.13346 -126.584 -6.13346 6.13346 0.56 0.000142125 0.000113039 0.00543591 0.00461492 36 2576 25 6.79088e+06 229024 648988. 2245.63 1.85 0.0508712 0.0438021 25390 158009 -1 2220 17 874 2420 144778 33057 0 0 144778 33057 2420 1332 0 0 8113 6940 0 0 13521 9640 0 0 2420 1516 0 0 58120 7006 0 0 60184 6623 0 0 2420 0 0 1546 2735 2767 18470 0 0 6.63466 6.63466 -144.115 -6.63466 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.0104613 0.0095844 106 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 7.14 vpr 53.54 MiB -1 -1 0.14 17452 12 0.22 -1 -1 32228 -1 -1 26 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54820 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 15.0 MiB 1.74 1294 53.5 MiB 0.05 0.00 5.90743 -119.276 -5.90743 5.90743 0.57 0.000180209 0.000141654 0.011247 0.00944923 38 3217 41 6.79088e+06 350272 678818. 2348.85 2.93 0.0784423 0.0677345 25966 169698 -1 2556 15 1228 3686 189913 42170 0 0 189913 42170 3686 1754 0 0 11134 9469 0 0 17361 11890 0 0 3686 2078 0 0 75151 8805 0 0 78895 8174 0 0 3686 0 0 2458 4890 4124 31610 0 0 6.49473 6.49473 -138.055 -6.49473 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0127773 0.0117699 140 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 7.08 vpr 53.85 MiB -1 -1 0.13 17540 13 0.31 -1 -1 32336 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55140 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 15.3 MiB 0.86 1408 53.8 MiB 0.04 0.00 6.67386 -140.77 -6.67386 6.67386 0.56 0.000197898 0.000161177 0.0117201 0.00982985 36 4471 35 6.79088e+06 309856 648988. 2245.63 3.70 0.085549 0.0737378 25390 158009 -1 3327 21 2132 5070 296179 68615 0 0 296179 68615 5070 3046 0 0 16436 14181 0 0 27048 19093 0 0 5070 3443 0 0 117974 14686 0 0 124581 14166 0 0 5070 0 0 2938 3856 4671 29197 0 0 6.97136 6.97136 -163.682 -6.97136 0 0 828058. 2865.25 0.21 0.06 0.08 -1 -1 0.21 0.016968 0.0153983 160 235 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 5.54 vpr 53.60 MiB -1 -1 0.13 17596 12 0.23 -1 -1 32792 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 15.1 MiB 1.07 1329 53.6 MiB 0.04 0.00 6.32248 -137.179 -6.32248 6.32248 0.56 0.000183512 0.000144493 0.0107641 0.00887381 38 3620 30 6.79088e+06 269440 678818. 2348.85 2.05 0.0693681 0.0592801 25966 169698 -1 2913 19 1519 4404 241285 53250 0 0 241285 53250 4404 2188 0 0 13472 11695 0 0 21500 14695 0 0 4404 2713 0 0 98178 11200 0 0 99327 10759 0 0 4404 0 0 2885 5232 4850 34241 0 0 6.75647 6.75647 -157.96 -6.75647 0 0 902133. 3121.57 0.22 0.05 0.08 -1 -1 0.22 0.0144509 0.0132008 140 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 5.49 vpr 53.02 MiB -1 -1 0.11 17084 12 0.13 -1 -1 32060 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54292 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 14.5 MiB 1.59 1026 53.0 MiB 0.04 0.00 5.99697 -124.075 -5.99697 5.99697 0.55 0.000129862 0.000105014 0.010644 0.00880634 36 2562 24 6.79088e+06 202080 648988. 2245.63 1.67 0.051951 0.0443923 25390 158009 -1 2167 19 832 2302 145773 32176 0 0 145773 32176 2302 1300 0 0 7588 6474 0 0 12403 8777 0 0 2302 1503 0 0 60175 7197 0 0 61003 6925 0 0 2302 0 0 1470 2590 2255 16683 0 0 6.49812 6.49812 -146.123 -6.49812 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.0101701 0.00927571 93 119 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 5.57 vpr 53.33 MiB -1 -1 0.13 17432 12 0.18 -1 -1 32124 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54608 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 14.8 MiB 1.15 1028 53.3 MiB 0.05 0.00 6.09963 -126.252 -6.09963 6.09963 0.55 0.000147068 0.000118437 0.0114706 0.00946997 34 3345 30 6.79088e+06 255968 618332. 2139.56 2.11 0.0604579 0.0515154 25102 150614 -1 2501 19 1113 3060 190245 42897 0 0 190245 42897 3060 1779 0 0 9918 8477 0 0 17118 11633 0 0 3060 2074 0 0 76595 9742 0 0 80494 9192 0 0 3060 0 0 1947 3071 3233 21639 0 0 6.51468 6.51468 -144.496 -6.51468 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.0116544 0.0106283 111 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 7.48 vpr 53.43 MiB -1 -1 0.14 17544 11 0.17 -1 -1 32124 -1 -1 20 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54712 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 15.0 MiB 1.21 1255 53.4 MiB 0.03 0.00 5.62872 -116.237 -5.62872 5.62872 0.59 0.000166518 0.000135476 0.00903991 0.00759552 36 3356 38 6.79088e+06 269440 648988. 2245.63 3.87 0.0726575 0.0625461 25390 158009 -1 2797 18 1171 3592 245816 52139 0 0 245816 52139 3592 2040 0 0 11586 9940 0 0 19366 13386 0 0 3592 2293 0 0 99828 12953 0 0 107852 11527 0 0 3592 0 0 2421 4857 5357 32531 0 0 6.12992 6.12992 -134.265 -6.12992 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.012935 0.0117941 125 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 5.64 vpr 53.37 MiB -1 -1 0.17 17528 11 0.17 -1 -1 32240 -1 -1 19 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54652 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 14.7 MiB 1.03 1041 53.4 MiB 0.02 0.00 5.48104 -108.223 -5.48104 5.48104 0.56 0.000152218 0.000123678 0.00647249 0.00553996 36 2792 26 6.79088e+06 255968 648988. 2245.63 2.23 0.055683 0.0476494 25390 158009 -1 2423 18 1107 3315 226448 51406 0 0 226448 51406 3315 1758 0 0 10835 9458 0 0 18856 12866 0 0 3315 2035 0 0 91784 13050 0 0 98343 12239 0 0 3315 0 0 2208 4089 4273 28537 0 0 5.73164 5.73164 -124.873 -5.73164 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0123907 0.0113235 116 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 6.27 vpr 53.27 MiB -1 -1 0.12 17588 13 0.18 -1 -1 32068 -1 -1 18 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54548 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 14.8 MiB 1.47 1019 53.3 MiB 0.05 0.00 6.0762 -123.922 -6.0762 6.0762 0.56 0.000141967 0.00011447 0.0114812 0.00950689 36 3056 25 6.79088e+06 242496 648988. 2245.63 2.51 0.062482 0.053709 25390 158009 -1 2341 18 1051 2899 168033 38650 0 0 168033 38650 2899 1546 0 0 9539 8209 0 0 15859 11179 0 0 2899 1807 0 0 68266 8107 0 0 68571 7802 0 0 2899 0 0 1848 2672 2662 19321 0 0 6.0762 6.0762 -138.786 -6.0762 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0112716 0.0102938 108 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 5.49 vpr 53.47 MiB -1 -1 0.12 17608 12 0.18 -1 -1 32152 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54756 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 14.8 MiB 1.82 1033 53.5 MiB 0.04 0.00 5.79322 -128.672 -5.79322 5.79322 0.57 0.000159927 0.000128248 0.0102026 0.00847935 40 2631 17 6.79088e+06 242496 706193. 2443.58 1.32 0.0567046 0.048432 26254 175826 -1 2517 17 1238 3336 200686 46403 0 0 200686 46403 3336 1854 0 0 11018 9256 0 0 19162 13023 0 0 3336 2176 0 0 77421 10690 0 0 86413 9404 0 0 3336 0 0 2098 3219 3251 22132 0 0 5.87932 5.87932 -145.848 -5.87932 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.0122168 0.0111968 120 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 6.28 vpr 53.39 MiB -1 -1 0.13 17480 13 0.25 -1 -1 32248 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54672 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 14.9 MiB 1.38 1208 53.4 MiB 0.06 0.00 6.92806 -142.087 -6.92806 6.92806 0.55 0.000167783 0.000135642 0.0148077 0.0122418 36 3266 27 6.79088e+06 282912 648988. 2245.63 2.50 0.0739532 0.0633766 25390 158009 -1 2597 17 1289 3515 186434 43872 0 0 186434 43872 3515 1772 0 0 11698 9908 0 0 18345 13353 0 0 3515 2142 0 0 74444 8421 0 0 74917 8276 0 0 3515 0 0 2226 3266 3303 23920 0 0 7.76595 7.76595 -165.154 -7.76595 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0133902 0.0122069 137 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 9.62 vpr 53.43 MiB -1 -1 0.13 17728 14 0.30 -1 -1 32664 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54712 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 14.9 MiB 1.06 1332 53.4 MiB 0.05 0.00 7.39006 -154.208 -7.39006 7.39006 0.56 0.000173704 0.000141329 0.0136069 0.0113679 36 3846 25 6.79088e+06 269440 648988. 2245.63 6.02 0.0760953 0.0656105 25390 158009 -1 3081 19 1443 4102 253701 55197 0 0 253701 55197 4102 2187 0 0 12958 11120 0 0 22171 15009 0 0 4102 2490 0 0 105442 12299 0 0 104926 12092 0 0 4102 0 0 2659 4716 5437 33628 0 0 7.64066 7.64066 -176.264 -7.64066 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0146436 0.0133664 132 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 7.24 vpr 53.48 MiB -1 -1 0.15 17748 14 0.20 -1 -1 32304 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 14.8 MiB 1.75 1041 53.5 MiB 0.07 0.00 6.96371 -135.673 -6.96371 6.96371 0.56 0.000178549 0.000139616 0.0167717 0.013656 36 3431 33 6.79088e+06 229024 648988. 2245.63 3.04 0.0739951 0.0627019 25390 158009 -1 2502 17 1247 3530 209743 49428 0 0 209743 49428 3530 1895 0 0 11531 9755 0 0 19137 13496 0 0 3530 2155 0 0 82340 11347 0 0 89675 10780 0 0 3530 0 0 2283 4143 4341 29437 0 0 7.08901 7.08901 -151.69 -7.08901 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0124901 0.0114308 122 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 6.03 vpr 53.47 MiB -1 -1 0.13 17844 13 0.31 -1 -1 32272 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 14.8 MiB 1.52 1352 53.5 MiB 0.04 0.00 6.83498 -141.936 -6.83498 6.83498 0.56 0.000191881 0.000150833 0.010453 0.00870323 40 3330 20 6.79088e+06 296384 706193. 2443.58 1.98 0.0695787 0.0598043 26254 175826 -1 3178 19 1487 4123 293912 62654 0 0 293912 62654 4123 2161 0 0 13999 11994 0 0 24712 16668 0 0 4123 2613 0 0 124056 14559 0 0 122899 14659 0 0 4123 0 0 2636 4975 5181 32325 0 0 7.12478 7.12478 -162.281 -7.12478 0 0 926341. 3205.33 0.23 0.05 0.09 -1 -1 0.23 0.0152094 0.0138663 144 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 5.84 vpr 53.21 MiB -1 -1 0.13 17164 13 0.19 -1 -1 32120 -1 -1 18 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54484 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 14.8 MiB 1.69 1000 53.2 MiB 0.03 0.00 6.04387 -125.188 -6.04387 6.04387 0.56 0.000138575 0.000111938 0.00774759 0.00649209 36 2718 17 6.79088e+06 242496 648988. 2245.63 1.83 0.0515546 0.0441302 25390 158009 -1 2242 17 1003 2585 161055 36735 0 0 161055 36735 2585 1465 0 0 8481 7336 0 0 14033 9729 0 0 2585 1702 0 0 65378 8524 0 0 67993 7979 0 0 2585 0 0 1582 1958 2574 16405 0 0 6.41977 6.41977 -143.364 -6.41977 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.0107109 0.00981722 104 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 16.36 vpr 53.66 MiB -1 -1 0.14 17732 13 0.41 -1 -1 32184 -1 -1 22 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54944 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 15.2 MiB 1.43 1333 53.7 MiB 0.04 0.00 6.79146 -140.595 -6.79146 6.79146 0.56 0.000185367 0.000150661 0.0102482 0.00859005 40 3410 35 6.79088e+06 296384 706193. 2443.58 12.29 0.146572 0.126126 26254 175826 -1 3259 22 2016 5643 393496 90520 0 0 393496 90520 5643 2942 0 0 18152 15846 0 0 32175 21093 0 0 5643 3546 0 0 165305 24227 0 0 166578 22866 0 0 5643 0 0 3627 6003 5684 38665 0 0 7.17168 7.17168 -162.499 -7.17168 0 0 926341. 3205.33 0.22 0.07 0.09 -1 -1 0.22 0.0162877 0.014726 145 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 6.00 vpr 53.64 MiB -1 -1 0.12 17476 14 0.33 -1 -1 32308 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54924 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 15.1 MiB 1.36 1288 53.6 MiB 0.04 0.00 6.80702 -148.946 -6.80702 6.80702 0.56 0.000177746 0.000142349 0.0108073 0.00905271 46 2966 18 6.79088e+06 242496 828058. 2865.25 2.05 0.0682175 0.0588884 27406 200422 -1 2524 15 1162 3441 185985 40849 0 0 185985 40849 3441 1590 0 0 10765 9259 0 0 17087 11776 0 0 3441 1981 0 0 74617 8286 0 0 76634 7957 0 0 3441 0 0 2279 4031 3785 27434 0 0 7.25783 7.25783 -164.531 -7.25783 0 0 1.01997e+06 3529.29 0.25 0.04 0.10 -1 -1 0.25 0.0125073 0.0115413 128 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 6.04 vpr 53.54 MiB -1 -1 0.15 17524 13 0.29 -1 -1 32252 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54820 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 14.8 MiB 1.50 1164 53.5 MiB 0.04 0.00 6.15803 -135.979 -6.15803 6.15803 0.56 0.000162947 0.000132888 0.00889547 0.00750514 36 3081 27 6.79088e+06 255968 648988. 2245.63 2.13 0.0649217 0.0558354 25390 158009 -1 2675 17 1303 3369 205568 45572 0 0 205568 45572 3369 1898 0 0 10892 9347 0 0 18171 12548 0 0 3369 2149 0 0 86069 9669 0 0 83698 9961 0 0 3369 0 0 2066 3116 3566 23113 0 0 6.40863 6.40863 -152.927 -6.40863 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0126701 0.0116281 124 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 8.16 vpr 53.18 MiB -1 -1 0.16 17504 13 0.24 -1 -1 32260 -1 -1 19 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54452 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 14.6 MiB 1.38 1051 53.2 MiB 0.06 0.00 6.13113 -121.375 -6.13113 6.13113 0.56 0.000158651 0.000127896 0.0146107 0.0121258 36 3244 35 6.79088e+06 255968 648988. 2245.63 4.34 0.0774741 0.06658 25390 158009 -1 2707 20 1613 4252 284132 62796 0 0 284132 62796 4252 2510 0 0 13484 11753 0 0 23436 15740 0 0 4252 2869 0 0 116979 15378 0 0 121729 14546 0 0 4252 0 0 2639 5158 4908 32057 0 0 6.40858 6.40858 -140.488 -6.40858 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0132864 0.012026 121 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 6.12 vpr 53.63 MiB -1 -1 0.13 17744 14 0.34 -1 -1 32332 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 15.1 MiB 1.36 1423 53.6 MiB 0.07 0.00 6.92457 -146.586 -6.92457 6.92457 0.57 0.000195766 0.000156216 0.0174453 0.0143347 44 3914 26 6.79088e+06 282912 787024. 2723.27 2.12 0.0865718 0.0738865 27118 194962 -1 3225 17 1522 4550 270679 58412 0 0 270679 58412 4550 2364 0 0 14061 12293 0 0 23798 16227 0 0 4550 2813 0 0 108459 12882 0 0 115261 11833 0 0 4550 0 0 3028 5094 5137 34567 0 0 7.54758 7.54758 -167.176 -7.54758 0 0 997811. 3452.63 0.25 0.05 0.10 -1 -1 0.25 0.0148882 0.013666 154 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 7.15 vpr 53.48 MiB -1 -1 0.17 17744 11 0.22 -1 -1 32140 -1 -1 23 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54760 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 15.0 MiB 1.79 1221 53.5 MiB 0.04 0.00 6.13002 -122.072 -6.13002 6.13002 0.56 0.000165983 0.000134947 0.00944597 0.00797992 36 3535 45 6.79088e+06 309856 648988. 2245.63 2.89 0.0768386 0.0665241 25390 158009 -1 2762 18 1435 4175 253228 55470 0 0 253228 55470 4175 2164 0 0 13367 11431 0 0 22785 15541 0 0 4175 2514 0 0 103206 12126 0 0 105520 11694 0 0 4175 0 0 2740 4944 4953 32772 0 0 6.38062 6.38062 -137.427 -6.38062 0 0 828058. 2865.25 0.24 0.05 0.08 -1 -1 0.24 0.0131569 0.0120346 136 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 6.78 vpr 53.11 MiB -1 -1 0.11 17176 13 0.20 -1 -1 32344 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54384 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 14.5 MiB 2.45 1159 53.1 MiB 0.02 0.00 6.02924 -138.116 -6.02924 6.02924 0.56 0.000135307 0.000110018 0.00526137 0.00450131 36 3021 19 6.79088e+06 188608 648988. 2245.63 2.05 0.0458923 0.0394344 25390 158009 -1 2512 26 1212 2948 325409 116383 0 0 325409 116383 2948 1919 0 0 9350 7974 0 0 17855 11463 0 0 2948 2153 0 0 148404 47962 0 0 143904 44912 0 0 2948 0 0 1736 2507 2524 16319 0 0 6.32674 6.32674 -156.073 -6.32674 0 0 828058. 2865.25 0.21 0.07 0.08 -1 -1 0.21 0.0125906 0.0113057 98 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 7.24 vpr 53.42 MiB -1 -1 0.22 17796 14 0.26 -1 -1 32388 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54704 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 14.8 MiB 1.68 1201 53.4 MiB 0.04 0.00 6.96377 -145.84 -6.96377 6.96377 0.57 0.000160305 0.000129217 0.0112104 0.00939965 36 3349 46 6.79088e+06 229024 648988. 2245.63 2.96 0.0743271 0.0638796 25390 158009 -1 2728 21 1303 3366 204858 45960 0 0 204858 45960 3366 1990 0 0 11090 9439 0 0 18119 12736 0 0 3366 2241 0 0 82951 10183 0 0 85966 9371 0 0 3366 0 0 2063 3658 3546 24061 0 0 7.55106 7.55106 -166.918 -7.55106 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.013989 0.0126909 122 172 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 6.04 vpr 53.95 MiB -1 -1 0.19 17876 15 0.38 -1 -1 32316 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55244 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 15.3 MiB 1.27 1439 53.9 MiB 0.07 0.00 7.55804 -160.496 -7.55804 7.55804 0.57 0.000208658 0.000168657 0.0190176 0.0157132 44 3828 34 6.79088e+06 309856 787024. 2723.27 2.04 0.0930501 0.0793434 27118 194962 -1 3085 19 1786 4745 252243 57061 0 0 252243 57061 4745 2293 0 0 14961 12990 0 0 24882 17165 0 0 4745 2784 0 0 100231 11156 0 0 102679 10673 0 0 4745 0 0 2959 3801 4575 30298 0 0 7.93394 7.93394 -174.894 -7.93394 0 0 997811. 3452.63 0.24 0.05 0.10 -1 -1 0.24 0.0169747 0.0154646 163 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 5.40 vpr 53.03 MiB -1 -1 0.13 17336 11 0.17 -1 -1 32096 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54304 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 14.4 MiB 1.37 939 53.0 MiB 0.03 0.00 5.75402 -124.095 -5.75402 5.75402 0.58 0.000132689 0.000107389 0.00809601 0.00674615 30 3008 34 6.79088e+06 202080 556674. 1926.21 1.73 0.0418764 0.0361645 24526 138013 -1 2217 25 1096 3079 297475 111879 0 0 297475 111879 3079 1637 0 0 9356 8043 0 0 15866 10554 0 0 3079 1896 0 0 128817 44256 0 0 137278 45493 0 0 3079 0 0 1983 4094 3324 24730 0 0 6.12992 6.12992 -142.791 -6.12992 0 0 706193. 2443.58 0.18 0.06 0.07 -1 -1 0.18 0.0119441 0.0107568 97 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 6.29 vpr 53.28 MiB -1 -1 0.15 17168 12 0.15 -1 -1 32188 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54556 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 14.8 MiB 1.41 942 53.3 MiB 0.05 0.00 5.70019 -121.214 -5.70019 5.70019 0.56 0.00014467 0.000116971 0.0118307 0.00977969 38 3133 27 6.79088e+06 229024 678818. 2348.85 2.57 0.0634907 0.0544816 25966 169698 -1 2320 17 1308 3565 185216 45111 0 0 185216 45111 3565 2037 0 0 11127 9782 0 0 17181 12048 0 0 3565 2364 0 0 71352 9837 0 0 78426 9043 0 0 3565 0 0 2257 3209 3223 23042 0 0 5.9865 5.9865 -143.332 -5.9865 0 0 902133. 3121.57 0.21 0.04 0.08 -1 -1 0.21 0.0111016 0.0101469 112 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 6.58 vpr 53.69 MiB -1 -1 0.15 17408 12 0.28 -1 -1 32212 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 15.0 MiB 1.03 1374 53.7 MiB 0.03 0.00 6.21181 -135.033 -6.21181 6.21181 0.57 0.00019827 0.000162574 0.00884612 0.00754738 36 3693 24 6.79088e+06 255968 648988. 2245.63 3.02 0.0765591 0.0664892 25390 158009 -1 3170 21 1639 5089 336791 72250 0 0 336791 72250 5089 2827 0 0 15901 13907 0 0 27896 18552 0 0 5089 3279 0 0 140343 17097 0 0 142473 16588 0 0 5089 0 0 3450 6804 7016 44651 0 0 7.08891 7.08891 -161.559 -7.08891 0 0 828058. 2865.25 0.21 0.06 0.08 -1 -1 0.21 0.0160512 0.0145667 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 7.36 vpr 53.41 MiB -1 -1 0.14 17424 12 0.21 -1 -1 32248 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54696 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 14.9 MiB 1.63 1373 53.4 MiB 0.04 0.00 6.29447 -134.471 -6.29447 6.29447 0.55 0.000168025 0.000136604 0.00903873 0.00762749 38 3651 40 6.79088e+06 242496 678818. 2348.85 3.31 0.0690919 0.059279 25966 169698 -1 3021 29 1715 5126 475691 185268 0 0 475691 185268 5126 2698 0 0 14788 13106 0 0 26488 16867 0 0 5126 3260 0 0 211759 76106 0 0 212404 73231 0 0 5126 0 0 3411 5432 5929 38410 0 0 6.33018 6.33018 -152.882 -6.33018 0 0 902133. 3121.57 0.21 0.09 0.08 -1 -1 0.21 0.016809 0.0150981 130 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 10.52 vpr 53.87 MiB -1 -1 0.13 17744 14 0.40 -1 -1 32376 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55164 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 15.2 MiB 1.55 1479 53.9 MiB 0.03 0.00 7.3152 -150.802 -7.3152 7.3152 0.55 0.000218681 0.000174845 0.00895855 0.00754256 36 4340 31 6.79088e+06 296384 648988. 2245.63 6.37 0.138277 0.118432 25390 158009 -1 3564 20 2060 6216 365411 80727 0 0 365411 80727 6216 3243 0 0 19415 16627 0 0 33625 22491 0 0 6216 3942 0 0 148109 17363 0 0 151830 17061 0 0 6216 0 0 4156 7458 8602 49544 0 0 7.51541 7.51541 -168.435 -7.51541 0 0 828058. 2865.25 0.21 0.07 0.08 -1 -1 0.21 0.0175703 0.0159373 167 232 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 5.36 vpr 53.41 MiB -1 -1 0.14 17524 12 0.17 -1 -1 32232 -1 -1 19 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54696 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 14.8 MiB 1.30 987 53.4 MiB 0.05 0.00 6.07188 -116.947 -6.07188 6.07188 0.61 0.000154279 0.000125682 0.0128344 0.0106936 44 2667 22 6.79088e+06 255968 787024. 2723.27 1.61 0.0738434 0.0635169 27118 194962 -1 2043 16 990 2923 142810 34327 0 0 142810 34327 2923 1452 0 0 9154 7645 0 0 14682 10193 0 0 2923 1785 0 0 53794 6860 0 0 59334 6392 0 0 2923 0 0 1933 3013 2771 21954 0 0 6.11878 6.11878 -128.537 -6.11878 0 0 997811. 3452.63 0.25 0.03 0.10 -1 -1 0.25 0.0114698 0.0105264 121 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 5.50 vpr 53.14 MiB -1 -1 0.12 17168 11 0.17 -1 -1 32064 -1 -1 19 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54420 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 14.5 MiB 1.66 956 53.1 MiB 0.04 0.00 5.54262 -105.114 -5.54262 5.54262 0.60 0.000132578 0.000107024 0.0113402 0.00942587 28 2812 41 6.79088e+06 255968 531479. 1839.03 1.41 0.0514174 0.044777 23950 126010 -1 2295 19 1073 2662 165609 38132 0 0 165609 38132 2662 1720 0 0 8742 7389 0 0 14340 10201 0 0 2662 1911 0 0 67676 8672 0 0 69527 8239 0 0 2662 0 0 1589 2581 2678 16912 0 0 6.16912 6.16912 -125.528 -6.16912 0 0 648988. 2245.63 0.18 0.04 0.06 -1 -1 0.18 0.0106944 0.00972368 104 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 8.10 vpr 54.38 MiB -1 -1 0.15 18236 13 0.40 -1 -1 32368 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55684 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 15.5 MiB 1.33 1827 54.4 MiB 0.06 0.00 6.73311 -141.588 -6.73311 6.73311 0.73 0.000249019 0.000201527 0.0157295 0.013261 40 4493 22 6.79088e+06 350272 706193. 2443.58 3.88 0.0919653 0.079159 26254 175826 -1 4433 26 2054 6283 536336 143969 0 0 536336 143969 6283 3312 0 0 20624 17599 0 0 36469 24160 0 0 6283 3942 0 0 232022 48513 0 0 234655 46443 0 0 6283 0 0 4229 8706 8561 54399 0 0 7.23431 7.23431 -168.406 -7.23431 0 0 926341. 3205.33 0.23 0.10 0.09 -1 -1 0.23 0.0224679 0.0203132 188 285 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 5.40 vpr 53.46 MiB -1 -1 0.13 17732 14 0.22 -1 -1 32684 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54740 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 14.9 MiB 1.45 1170 53.5 MiB 0.06 0.00 6.8027 -138.833 -6.8027 6.8027 0.58 0.000176206 0.00013973 0.0162372 0.0134571 30 3394 40 6.79088e+06 296384 556674. 1926.21 1.51 0.0637611 0.0549954 24526 138013 -1 2702 20 1334 3663 197644 44721 0 0 197644 44721 3663 2072 0 0 11363 9674 0 0 17235 12147 0 0 3663 2299 0 0 80302 9351 0 0 81418 9178 0 0 3663 0 0 2329 3549 3211 24370 0 0 7.29271 7.29271 -161.4 -7.29271 0 0 706193. 2443.58 0.18 0.04 0.07 -1 -1 0.18 0.0142742 0.0129805 130 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 5.27 vpr 53.18 MiB -1 -1 0.13 17476 12 0.15 -1 -1 32252 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54452 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 14.8 MiB 1.33 1143 53.2 MiB 0.03 0.00 5.77407 -129.388 -5.77407 5.77407 0.56 0.000139701 0.000112184 0.007696 0.00640765 38 2856 21 6.79088e+06 242496 678818. 2348.85 1.63 0.0595985 0.0510739 25966 169698 -1 2344 18 1071 2705 165356 35886 0 0 165356 35886 2705 1540 0 0 8595 7244 0 0 13281 9321 0 0 2705 1712 0 0 68634 8397 0 0 69436 7672 0 0 2705 0 0 1634 2369 2114 15982 0 0 6.35018 6.35018 -149.287 -6.35018 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0110673 0.0101264 109 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 8.46 vpr 53.54 MiB -1 -1 0.13 17608 13 0.26 -1 -1 32308 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 15.0 MiB 1.20 1220 53.5 MiB 0.06 0.00 6.71317 -142.432 -6.71317 6.71317 0.56 0.00016176 0.000131015 0.0139693 0.0116314 36 3582 23 6.79088e+06 242496 648988. 2245.63 4.76 0.0788975 0.0679059 25390 158009 -1 2949 27 1283 3520 410011 147385 0 0 410011 147385 3520 1875 0 0 11514 9737 0 0 21285 14354 0 0 3520 2157 0 0 187506 60705 0 0 182666 58557 0 0 3520 0 0 2237 3445 3601 24567 0 0 7.08907 7.08907 -163.2 -7.08907 0 0 828058. 2865.25 0.21 0.08 0.08 -1 -1 0.21 0.0158711 0.0143082 128 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 6.22 vpr 53.87 MiB -1 -1 0.15 17872 13 0.27 -1 -1 32180 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55160 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 15.2 MiB 1.38 1453 53.9 MiB 0.05 0.00 6.07963 -130.511 -6.07963 6.07963 0.56 0.000211592 0.000160387 0.0133617 0.0109722 40 3790 28 6.79088e+06 323328 706193. 2443.58 2.25 0.0892791 0.0772134 26254 175826 -1 3441 33 1657 4835 545232 203948 0 0 545232 203948 4835 2583 0 0 15797 13524 0 0 31345 19914 0 0 4835 3059 0 0 246863 84069 0 0 241557 80799 0 0 4835 0 0 3178 5320 5421 37586 0 0 6.66688 6.66688 -155.041 -6.66688 0 0 926341. 3205.33 0.22 0.11 0.09 -1 -1 0.22 0.0220808 0.0198215 157 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 5.73 vpr 53.53 MiB -1 -1 0.14 17464 11 0.21 -1 -1 32252 -1 -1 22 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54816 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 15.0 MiB 1.37 1129 53.5 MiB 0.04 0.00 5.79322 -115.818 -5.79322 5.79322 0.56 0.000178558 0.00014539 0.0102319 0.00856924 38 3092 22 6.79088e+06 296384 678818. 2348.85 1.80 0.0644581 0.0552844 25966 169698 -1 2360 15 1102 3265 158636 37410 0 0 158636 37410 3265 1524 0 0 10394 8731 0 0 15292 11185 0 0 3265 1862 0 0 62580 7206 0 0 63840 6902 0 0 3265 0 0 2163 3436 3616 25286 0 0 6.04382 6.04382 -131.818 -6.04382 0 0 902133. 3121.57 0.23 0.06 0.12 -1 -1 0.23 0.0186532 0.0170546 141 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 5.77 vpr 53.72 MiB -1 -1 0.14 17788 15 0.32 -1 -1 32284 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55012 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 15.3 MiB 1.26 1382 53.7 MiB 0.05 0.00 7.17871 -155.704 -7.17871 7.17871 0.57 0.0001848 0.000149909 0.0123563 0.010337 40 3368 27 6.79088e+06 296384 706193. 2443.58 1.92 0.0716556 0.061302 26254 175826 -1 3198 23 1419 4355 273246 59466 0 0 273246 59466 4355 2243 0 0 14341 12008 0 0 24599 16488 0 0 4355 2695 0 0 110127 13412 0 0 115469 12620 0 0 4355 0 0 2936 6044 5692 38115 0 0 7.76252 7.76252 -178.306 -7.76252 0 0 926341. 3205.33 0.22 0.05 0.09 -1 -1 0.22 0.0170169 0.0154792 147 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 12.16 vpr 53.71 MiB -1 -1 0.14 18152 13 0.30 -1 -1 32248 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 15.1 MiB 1.63 1395 53.7 MiB 0.04 0.00 6.82728 -147.064 -6.82728 6.82728 0.61 0.0001827 0.000149059 0.0103839 0.00875939 36 3662 35 6.79088e+06 282912 648988. 2245.63 8.01 0.11774 0.101469 25390 158009 -1 2983 15 1317 3807 223223 51869 0 0 223223 51869 3807 2001 0 0 12292 10449 0 0 20456 14269 0 0 3807 2346 0 0 90484 11589 0 0 92377 11215 0 0 3807 0 0 2490 4388 4974 30407 0 0 7.03867 7.03867 -166.099 -7.03867 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0133154 0.0122749 143 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 6.83 vpr 53.30 MiB -1 -1 0.17 17156 12 0.17 -1 -1 32116 -1 -1 18 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54576 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 14.8 MiB 1.36 951 53.3 MiB 0.05 0.00 6.41551 -125.304 -6.41551 6.41551 0.56 0.00014428 0.000115872 0.0135376 0.0111443 36 3062 50 6.79088e+06 242496 648988. 2245.63 2.96 0.0729724 0.0624644 25390 158009 -1 2334 17 1156 2821 160986 38839 0 0 160986 38839 2821 1632 0 0 9242 7898 0 0 15065 10867 0 0 2821 1936 0 0 63469 8463 0 0 67568 8043 0 0 2821 0 0 1665 2140 2079 15579 0 0 6.62691 6.62691 -145.509 -6.62691 0 0 828058. 2865.25 0.28 0.05 0.08 -1 -1 0.28 0.0151554 0.0138496 111 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 4.82 vpr 53.10 MiB -1 -1 0.16 17420 11 0.18 -1 -1 32208 -1 -1 14 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54372 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 14.5 MiB 1.24 1098 53.1 MiB 0.05 0.00 5.49223 -122.915 -5.49223 5.49223 0.56 0.000136065 0.000109987 0.0120299 0.0099706 30 3052 40 6.79088e+06 188608 556674. 1926.21 1.28 0.0448979 0.0383848 24526 138013 -1 2360 25 1111 2725 252832 98316 0 0 252832 98316 2725 1527 0 0 8313 7197 0 0 13716 9429 0 0 2725 1787 0 0 114189 39815 0 0 111164 38561 0 0 2725 0 0 1614 2379 2335 15949 0 0 5.74283 5.74283 -141.786 -5.74283 0 0 706193. 2443.58 0.18 0.06 0.07 -1 -1 0.18 0.012514 0.0112546 98 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 5.11 vpr 53.71 MiB -1 -1 0.14 17612 13 0.31 -1 -1 32204 -1 -1 21 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55004 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 15.1 MiB 0.94 1143 53.7 MiB 0.04 0.00 6.8104 -133.532 -6.8104 6.8104 0.58 0.000188344 0.00015218 0.00986691 0.00811988 38 2974 28 6.79088e+06 282912 678818. 2348.85 1.62 0.0673276 0.0574886 25966 169698 -1 2590 17 1422 4125 211061 48581 0 0 211061 48581 4125 2000 0 0 12685 10944 0 0 20173 13855 0 0 4125 2400 0 0 86444 9421 0 0 83509 9961 0 0 4125 0 0 2703 4155 5236 34391 0 0 6.8104 6.8104 -148.146 -6.8104 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.0142339 0.0130651 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 4.76 vpr 53.02 MiB -1 -1 0.12 17224 10 0.14 -1 -1 32196 -1 -1 17 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54288 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 14.4 MiB 1.53 854 53.0 MiB 0.03 0.00 5.03782 -105.349 -5.03782 5.03782 0.56 0.000130976 0.00010558 0.00849229 0.00710917 30 2536 42 6.79088e+06 229024 556674. 1926.21 0.99 0.0393514 0.0335782 24526 138013 -1 1979 18 980 2447 126284 30785 0 0 126284 30785 2447 1334 0 0 7866 6676 0 0 11639 8424 0 0 2447 1546 0 0 51137 6231 0 0 50748 6574 0 0 2447 0 0 1467 2118 2162 15286 0 0 5.23803 5.23803 -121.984 -5.23803 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.0103237 0.0093904 101 130 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 5.64 vpr 53.09 MiB -1 -1 0.11 17260 14 0.16 -1 -1 32128 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54360 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 14.6 MiB 2.25 1164 53.1 MiB 0.03 0.00 6.49828 -134.387 -6.49828 6.49828 0.56 0.00014429 0.000116785 0.00613926 0.00521696 30 3396 48 6.79088e+06 242496 556674. 1926.21 1.15 0.0450815 0.0390103 24526 138013 -1 2581 16 1129 2926 172864 38449 0 0 172864 38449 2926 1724 0 0 9171 7730 0 0 13719 9829 0 0 2926 1944 0 0 71767 8701 0 0 72355 8521 0 0 2926 0 0 1797 3130 2984 20967 0 0 6.87418 6.87418 -157.919 -6.87418 0 0 706193. 2443.58 0.18 0.04 0.07 -1 -1 0.18 0.0105511 0.00968697 110 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 8.77 vpr 53.64 MiB -1 -1 0.15 17692 13 0.22 -1 -1 32148 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54932 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 14.8 MiB 2.09 1262 53.6 MiB 0.04 0.00 6.43445 -135.684 -6.43445 6.43445 0.55 0.000168091 0.000137223 0.00994726 0.00840209 36 3687 49 6.79088e+06 269440 648988. 2245.63 4.16 0.0737531 0.0632818 25390 158009 -1 2919 20 1492 3934 329805 96629 0 0 329805 96629 3934 2394 0 0 12652 10972 0 0 22825 15140 0 0 3934 2720 0 0 142272 32806 0 0 144188 32597 0 0 3934 0 0 2442 4191 4226 27445 0 0 6.93565 6.93565 -159.759 -6.93565 0 0 828058. 2865.25 0.22 0.07 0.08 -1 -1 0.22 0.0143736 0.0130881 125 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 7.43 vpr 52.91 MiB -1 -1 0.12 17160 12 0.13 -1 -1 32140 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54184 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 14.4 MiB 2.82 996 52.9 MiB 0.05 0.00 5.65673 -125.375 -5.65673 5.65673 0.55 0.000140096 0.000114026 0.013303 0.0110514 36 2753 49 6.79088e+06 229024 648988. 2245.63 2.35 0.0648641 0.055399 25390 158009 -1 2166 15 971 2417 143304 32566 0 0 143304 32566 2417 1402 0 0 7872 6654 0 0 12941 9167 0 0 2417 1606 0 0 60443 6686 0 0 57214 7051 0 0 2417 0 0 1446 1996 2245 15462 0 0 5.65673 5.65673 -137.333 -5.65673 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00959778 0.00880279 99 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 5.67 vpr 53.39 MiB -1 -1 0.13 17440 12 0.17 -1 -1 32360 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54668 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 14.9 MiB 1.62 1232 53.4 MiB 0.04 0.00 5.91508 -131.625 -5.91508 5.91508 0.55 0.000170213 0.000137785 0.00936034 0.00787822 38 2945 35 6.79088e+06 242496 678818. 2348.85 1.63 0.0654634 0.0558992 25966 169698 -1 2606 17 1192 3484 190410 41467 0 0 190410 41467 3484 1734 0 0 10830 9148 0 0 16390 11614 0 0 3484 1982 0 0 77344 8734 0 0 78878 8255 0 0 3484 0 0 2292 4583 4223 30026 0 0 6.16568 6.16568 -147.126 -6.16568 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0131371 0.0120133 130 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 4.89 vpr 53.51 MiB -1 -1 0.16 17612 13 0.25 -1 -1 32328 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54792 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 14.9 MiB 0.94 1271 53.5 MiB 0.04 0.00 6.52941 -139.677 -6.52941 6.52941 0.57 0.000179101 0.000145548 0.00866923 0.00736911 42 3482 32 6.79088e+06 269440 744469. 2576.02 1.41 0.0665468 0.0570718 26542 182613 -1 2738 15 1203 3463 198401 44689 0 0 198401 44689 3463 1767 0 0 11533 9771 0 0 18904 13480 0 0 3463 2050 0 0 81404 8785 0 0 79634 8836 0 0 3463 0 0 2260 3325 3666 25350 0 0 6.69042 6.69042 -153.183 -6.69042 0 0 949917. 3286.91 0.24 0.04 0.09 -1 -1 0.24 0.0130513 0.0120339 143 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 13.51 vpr 53.32 MiB -1 -1 0.12 17440 11 0.15 -1 -1 31736 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54596 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 14.6 MiB 1.56 926 53.3 MiB 0.07 0.00 5.4461 -120.98 -5.4461 5.4461 0.57 0.000191469 0.000157441 0.0173868 0.0145242 38 3158 28 6.79088e+06 215552 678818. 2348.85 9.55 0.125288 0.107989 25966 169698 -1 2227 19 1268 3412 172968 40795 0 0 172968 40795 3412 1811 0 0 10281 8740 0 0 16458 11125 0 0 3412 2181 0 0 66938 8989 0 0 72467 7949 0 0 3412 0 0 2144 3110 2837 21257 0 0 5.69665 5.69665 -140.511 -5.69665 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0114291 0.0104044 106 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 9.52 vpr 53.34 MiB -1 -1 0.12 17440 13 0.19 -1 -1 32100 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54620 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 14.8 MiB 2.08 1159 53.3 MiB 0.05 0.00 6.38062 -142.026 -6.38062 6.38062 0.58 0.000151672 0.000122183 0.0122418 0.0101303 36 3282 49 6.79088e+06 202080 648988. 2245.63 5.07 0.073996 0.0633968 25390 158009 -1 2665 19 1261 3415 219763 48515 0 0 219763 48515 3415 1955 0 0 11207 9786 0 0 19167 13061 0 0 3415 2204 0 0 91571 10825 0 0 90988 10684 0 0 3415 0 0 2154 3509 3728 24310 0 0 6.63122 6.63122 -160.793 -6.63122 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.0124049 0.0112776 113 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 8.29 vpr 53.36 MiB -1 -1 0.13 17588 13 0.21 -1 -1 32308 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54636 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 14.9 MiB 0.95 1339 53.4 MiB 0.04 0.00 6.40869 -143.558 -6.40869 6.40869 0.56 0.000173663 0.000141409 0.00992536 0.00835837 36 3941 38 6.79088e+06 255968 648988. 2245.63 4.93 0.0789494 0.0683141 25390 158009 -1 3262 18 1589 4253 298036 64211 0 0 298036 64211 4253 2530 0 0 14076 12061 0 0 23469 16660 0 0 4253 2887 0 0 123077 15679 0 0 128908 14394 0 0 4253 0 0 2664 4722 4868 30043 0 0 6.69494 6.69494 -166.462 -6.69494 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0140564 0.0128314 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 7.37 vpr 53.31 MiB -1 -1 0.13 17424 11 0.19 -1 -1 32280 -1 -1 19 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54588 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 14.7 MiB 1.69 1099 53.3 MiB 0.05 0.00 5.25814 -109.588 -5.25814 5.25814 0.56 0.00014764 0.000118943 0.0120048 0.00993013 36 2997 34 6.79088e+06 255968 648988. 2245.63 3.34 0.0667095 0.0571569 25390 158009 -1 2627 22 1211 3685 332185 100913 0 0 332185 100913 3685 1938 0 0 12126 10557 0 0 22356 14871 0 0 3685 2273 0 0 144971 36553 0 0 145362 34721 0 0 3685 0 0 2474 5053 5440 33620 0 0 5.57478 5.57478 -128.323 -5.57478 0 0 828058. 2865.25 0.21 0.06 0.08 -1 -1 0.21 0.0128941 0.0116849 116 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 7.81 vpr 53.80 MiB -1 -1 0.15 17692 14 0.29 -1 -1 32272 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55088 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 15.3 MiB 1.23 1286 53.8 MiB 0.07 0.00 7.31171 -155.874 -7.31171 7.31171 0.56 0.000211301 0.000164328 0.0187702 0.0152393 36 4122 44 6.79088e+06 309856 648988. 2245.63 4.04 0.0996303 0.0853921 25390 158009 -1 2916 20 1626 4183 244257 61182 0 0 244257 61182 4183 2340 0 0 13588 11342 0 0 22016 15678 0 0 4183 2700 0 0 98793 14844 0 0 101494 14278 0 0 4183 0 0 2557 4043 4301 28168 0 0 7.59796 7.59796 -176.516 -7.59796 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0167397 0.0152733 159 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 11.76 vpr 53.17 MiB -1 -1 0.11 17348 12 0.13 -1 -1 32072 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54444 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 14.5 MiB 1.96 1128 53.2 MiB 0.05 0.00 5.48879 -127.91 -5.48879 5.48879 0.56 0.000133267 0.000107326 0.0110821 0.00916074 40 2692 27 6.79088e+06 255968 706193. 2443.58 7.50 0.0965823 0.0824036 26254 175826 -1 2507 18 1063 2480 175979 37968 0 0 175979 37968 2480 1522 0 0 8523 7182 0 0 14075 10031 0 0 2480 1763 0 0 73802 8834 0 0 74619 8636 0 0 2480 0 0 1417 2094 2233 14414 0 0 5.73939 5.73939 -143.169 -5.73939 0 0 926341. 3205.33 0.22 0.04 0.09 -1 -1 0.22 0.0102077 0.00931011 106 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 14.20 vpr 53.50 MiB -1 -1 0.14 17740 13 0.26 -1 -1 32632 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54780 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 14.9 MiB 1.18 1264 53.5 MiB 0.04 0.00 6.66283 -138.869 -6.66283 6.66283 0.55 0.000173225 0.00014087 0.00898703 0.00755722 38 3407 22 6.79088e+06 269440 678818. 2348.85 10.47 0.113662 0.0980139 25966 169698 -1 2690 17 1346 3787 199582 46319 0 0 199582 46319 3787 1961 0 0 11741 10082 0 0 17911 12611 0 0 3787 2257 0 0 79093 10162 0 0 83263 9246 0 0 3787 0 0 2441 4619 3960 28857 0 0 7.12483 7.12483 -160.549 -7.12483 0 0 902133. 3121.57 0.26 0.06 0.09 -1 -1 0.26 0.0217498 0.0202785 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 5.09 vpr 52.96 MiB -1 -1 0.12 17432 13 0.17 -1 -1 32036 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54232 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 14.6 MiB 0.95 977 53.0 MiB 0.03 0.00 6.33716 -137.986 -6.33716 6.33716 0.56 0.000142673 0.000116383 0.00762098 0.00641323 34 3050 46 6.79088e+06 269440 618332. 2139.56 1.85 0.0630503 0.0544946 25102 150614 -1 2514 18 1138 3008 226288 58719 0 0 226288 58719 3008 1826 0 0 10005 8528 0 0 17297 11906 0 0 3008 2102 0 0 95914 17356 0 0 97056 17001 0 0 3008 0 0 1870 2715 2820 18631 0 0 7.03857 7.03857 -161.542 -7.03857 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.0112169 0.0102382 107 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 6.15 vpr 53.30 MiB -1 -1 0.13 17744 12 0.19 -1 -1 32360 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 14.9 MiB 1.28 1206 53.3 MiB 0.04 0.00 6.24757 -137.536 -6.24757 6.24757 0.56 0.000167896 0.000135768 0.0113972 0.0095217 36 3210 20 6.79088e+06 255968 648988. 2245.63 2.50 0.0696067 0.0600957 25390 158009 -1 2728 17 1211 3515 214196 47185 0 0 214196 47185 3515 1821 0 0 11329 9670 0 0 18778 13143 0 0 3515 2126 0 0 88912 10195 0 0 88147 10230 0 0 3515 0 0 2304 3966 4231 28372 0 0 6.49817 6.49817 -154.322 -6.49817 0 0 828058. 2865.25 0.23 0.04 0.08 -1 -1 0.23 0.0129716 0.0118578 128 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 6.01 vpr 54.08 MiB -1 -1 0.15 18220 15 0.44 -1 -1 32616 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55380 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 15.5 MiB 0.96 1562 54.1 MiB 0.08 0.00 7.76601 -164.429 -7.76601 7.76601 0.57 0.000236753 0.000185019 0.0221261 0.0180908 44 4132 38 6.79088e+06 336800 787024. 2723.27 2.22 0.102459 0.087401 27118 194962 -1 3369 18 1704 5221 286615 63516 0 0 286615 63516 5221 2352 0 0 16381 14107 0 0 27594 18836 0 0 5221 2966 0 0 118141 12370 0 0 114057 12885 0 0 5221 0 0 3517 6210 6024 43980 0 0 8.14191 8.14191 -183.004 -8.14191 0 0 997811. 3452.63 0.25 0.06 0.10 -1 -1 0.25 0.0186586 0.0171172 183 255 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 7.56 vpr 52.68 MiB -1 -1 0.09 16824 10 0.08 -1 -1 31840 -1 -1 12 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53948 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 14.3 MiB 1.29 870 52.7 MiB 0.02 0.00 4.08102 -101.845 -4.08102 4.08102 0.56 9.8383e-05 7.8221e-05 0.00563459 0.00466938 38 2031 48 6.79088e+06 161664 678818. 2348.85 4.15 0.0671472 0.0575204 25966 169698 -1 1801 15 716 1701 126061 27559 0 0 126061 27559 1701 1062 0 0 5361 4607 0 0 8787 5935 0 0 1701 1221 0 0 55081 7400 0 0 53430 7334 0 0 1701 0 0 985 1148 1075 8905 0 0 4.21746 4.21746 -115.77 -4.21746 0 0 902133. 3121.57 0.22 0.03 0.08 -1 -1 0.22 0.00683828 0.00625407 66 81 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 4.48 vpr 53.20 MiB -1 -1 0.13 17592 13 0.16 -1 -1 32048 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54476 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 14.8 MiB 1.29 1030 53.2 MiB 0.03 0.00 6.33378 -132.688 -6.33378 6.33378 0.56 0.000138413 0.000112558 0.00888696 0.00746274 30 3160 26 6.79088e+06 229024 556674. 1926.21 0.92 0.0371568 0.0319173 24526 138013 -1 2477 20 1185 2964 162940 37929 0 0 162940 37929 2964 1799 0 0 9182 7948 0 0 13882 9752 0 0 2964 2023 0 0 66296 8356 0 0 67652 8051 0 0 2964 0 0 1779 2035 2160 16364 0 0 6.59551 6.59551 -155.217 -6.59551 0 0 706193. 2443.58 0.19 0.04 0.07 -1 -1 0.19 0.0115489 0.0104929 103 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 5.46 vpr 53.32 MiB -1 -1 0.12 17428 12 0.18 -1 -1 32128 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54596 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 14.7 MiB 1.68 1184 53.3 MiB 0.05 0.00 5.75407 -133.443 -5.75407 5.75407 0.56 0.000164481 0.000134417 0.0144712 0.0120585 38 3012 23 6.79088e+06 242496 678818. 2348.85 1.47 0.0636083 0.0543237 25966 169698 -1 2505 17 1217 3032 168202 36995 0 0 168202 36995 3032 1603 0 0 9375 7982 0 0 14456 10060 0 0 3032 1884 0 0 68813 8032 0 0 69494 7434 0 0 3032 0 0 1815 2503 2602 19264 0 0 6.11873 6.11873 -152.475 -6.11873 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0120609 0.0110531 117 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 6.62 vpr 52.84 MiB -1 -1 0.09 17084 9 0.10 -1 -1 31892 -1 -1 18 25 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54104 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 14.3 MiB 0.72 768 52.8 MiB 0.04 0.00 4.27129 -84.6952 -4.27129 4.27129 0.59 0.000149933 0.000119603 0.00868486 0.00716013 30 2109 49 6.79088e+06 242496 556674. 1926.21 3.71 0.0586181 0.0500282 24526 138013 -1 1776 19 732 2121 114688 26284 0 0 114688 26284 2121 1118 0 0 6628 5645 0 0 10170 7159 0 0 2121 1274 0 0 46408 5668 0 0 47240 5420 0 0 2121 0 0 1389 2136 2025 15635 0 0 4.39659 4.39659 -98.5564 -4.39659 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00858332 0.00779633 86 102 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 6.67 vpr 53.63 MiB -1 -1 0.13 17484 12 0.24 -1 -1 32292 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 15.0 MiB 1.27 1467 53.6 MiB 0.05 0.00 6.04387 -139.628 -6.04387 6.04387 0.55 0.000189507 0.000147206 0.0134794 0.0111397 40 3581 28 6.79088e+06 282912 706193. 2443.58 2.78 0.0784984 0.0654082 26254 175826 -1 3409 29 2206 6596 718347 209034 0 0 718347 209034 6596 3734 0 0 20727 17948 0 0 41905 24995 0 0 6596 4439 0 0 319171 77959 0 0 323352 79959 0 0 6596 0 0 4390 8134 8448 49572 0 0 6.41977 6.41977 -159.619 -6.41977 0 0 926341. 3205.33 0.23 0.12 0.09 -1 -1 0.23 0.0185637 0.0166741 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 6.05 vpr 53.59 MiB -1 -1 0.13 17876 13 0.27 -1 -1 32084 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54876 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 14.9 MiB 1.59 1300 53.6 MiB 0.05 0.00 6.7166 -142.57 -6.7166 6.7166 0.57 0.000178873 0.000144058 0.0124384 0.0103515 38 3741 21 6.79088e+06 296384 678818. 2348.85 1.93 0.0696994 0.0596966 25966 169698 -1 2833 20 1335 3899 206249 46207 0 0 206249 46207 3899 2077 0 0 11978 10293 0 0 18406 12935 0 0 3899 2471 0 0 83281 9413 0 0 84786 9018 0 0 3899 0 0 2564 4187 4255 28875 0 0 7.4684 7.4684 -167.008 -7.4684 0 0 902133. 3121.57 0.22 0.04 0.08 -1 -1 0.22 0.0155805 0.0141438 147 197 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 5.65 vpr 53.76 MiB -1 -1 0.11 17268 1 0.01 -1 -1 29744 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55048 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 15.2 MiB 2.47 1196 53.8 MiB 0.08 0.00 4.31702 -132.558 -4.31702 4.31702 0.56 0.00012479 0.00010064 0.0119407 0.00973521 34 2836 23 6.87369e+06 363320 618332. 2139.56 1.04 0.0473625 0.0396706 25762 151098 -1 2411 22 1769 2826 197744 46966 0 0 197744 46966 2826 2229 0 0 10992 9651 0 0 16816 13320 0 0 2826 2375 0 0 81727 9983 0 0 82557 9408 0 0 2826 0 0 1057 1282 1261 9544 0 0 4.8072 4.8072 -158.615 -4.8072 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00916844 0.00811865 142 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 5.00 vpr 53.66 MiB -1 -1 0.11 17492 1 0.01 -1 -1 29824 -1 -1 24 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54952 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 15.0 MiB 1.94 1007 53.7 MiB 0.07 0.00 3.52915 -113.661 -3.52915 3.52915 0.56 0.000128357 0.000103279 0.012623 0.0103673 34 2425 23 6.87369e+06 335372 618332. 2139.56 0.93 0.0489252 0.0409686 25762 151098 -1 2050 24 1950 2917 225523 51780 0 0 225523 51780 2917 2296 0 0 11355 10297 0 0 17690 14254 0 0 2917 2443 0 0 99259 10453 0 0 91385 12037 0 0 2917 0 0 967 1009 877 7704 0 0 4.19936 4.19936 -139.069 -4.19936 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.0097231 0.00851887 138 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.11 vpr 53.49 MiB -1 -1 0.10 17400 1 0.01 -1 -1 29712 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54776 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 14.9 MiB 2.04 1057 53.5 MiB 0.05 0.00 3.45035 -100.15 -3.45035 3.45035 0.56 0.000116621 9.4143e-05 0.00797629 0.00648465 34 2632 23 6.87369e+06 293451 618332. 2139.56 0.95 0.0410084 0.0343592 25762 151098 -1 2121 21 1350 1842 141894 33324 0 0 141894 33324 1842 1595 0 0 7107 6239 0 0 10944 8877 0 0 1842 1645 0 0 58490 7547 0 0 61669 7421 0 0 1842 0 0 492 452 553 4473 0 0 3.88496 3.88496 -124.916 -3.88496 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00779305 0.00690935 124 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 3.46 vpr 53.43 MiB -1 -1 0.10 17560 1 0.01 -1 -1 29772 -1 -1 29 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54716 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 14.8 MiB 0.79 887 53.4 MiB 0.06 0.00 3.67912 -102.014 -3.67912 3.67912 0.56 0.000112488 9.0407e-05 0.00847005 0.00692001 30 2186 29 6.87369e+06 405241 556674. 1926.21 0.59 0.0302943 0.0254137 25186 138497 -1 1738 24 1285 2426 130694 35084 0 0 130694 35084 2426 1632 0 0 8289 6787 0 0 11195 8929 0 0 2426 1755 0 0 54304 8070 0 0 52054 7911 0 0 2426 0 0 1141 1601 1437 10131 0 0 3.6401 3.6401 -116.359 -3.6401 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00836762 0.00734917 124 25 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 4.48 vpr 53.60 MiB -1 -1 0.12 17480 1 0.01 -1 -1 29740 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54888 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 15.1 MiB 1.02 1035 53.6 MiB 0.05 0.00 3.67112 -112.923 -3.67112 3.67112 0.56 0.000123702 9.5974e-05 0.00665514 0.00539717 28 3168 36 6.87369e+06 377294 531479. 1839.03 1.37 0.0348428 0.0294188 24610 126494 -1 2493 22 1820 3513 280343 65303 0 0 280343 65303 3513 2704 0 0 13340 11946 0 0 21357 17048 0 0 3513 2939 0 0 119083 15123 0 0 119537 15543 0 0 3513 0 0 1693 2137 2028 14341 0 0 4.044 4.044 -142.888 -4.044 0 0 648988. 2245.63 0.17 0.05 0.06 -1 -1 0.17 0.00859865 0.00755621 131 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 3.77 vpr 53.82 MiB -1 -1 0.11 17464 1 0.01 -1 -1 29684 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55108 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 15.2 MiB 1.14 885 53.8 MiB 0.06 0.00 2.67957 -91.7986 -2.67957 2.67957 0.56 0.000127093 0.000102056 0.00910616 0.00744986 30 2334 24 6.87369e+06 419215 556674. 1926.21 0.57 0.0328692 0.0275418 25186 138497 -1 1827 19 1152 1981 111091 26888 0 0 111091 26888 1981 1470 0 0 6898 5633 0 0 8933 7401 0 0 1981 1582 0 0 44468 5729 0 0 46830 5073 0 0 1981 0 0 829 1047 1037 7460 0 0 2.98531 2.98531 -114.721 -2.98531 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00842956 0.00745646 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 4.64 vpr 53.32 MiB -1 -1 0.09 17476 1 0.01 -1 -1 29844 -1 -1 19 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54600 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 14.7 MiB 1.75 644 53.3 MiB 0.03 0.00 2.94598 -82.9381 -2.94598 2.94598 0.56 9.3131e-05 7.5182e-05 0.00535724 0.00443875 34 1568 23 6.87369e+06 265503 618332. 2139.56 0.86 0.0325301 0.0273682 25762 151098 -1 1273 22 1013 1785 102220 26080 0 0 102220 26080 1785 1220 0 0 6405 5392 0 0 10016 7685 0 0 1785 1297 0 0 40726 5304 0 0 41503 5182 0 0 1785 0 0 772 810 768 6065 0 0 2.78296 2.78296 -96.9039 -2.78296 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00691263 0.00608543 97 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 3.47 vpr 53.23 MiB -1 -1 0.11 16944 1 0.01 -1 -1 29604 -1 -1 32 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54512 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 14.7 MiB 0.75 939 53.2 MiB 0.07 0.00 2.74825 -87.2004 -2.74825 2.74825 0.57 0.000102553 8.1836e-05 0.00947028 0.00767181 28 2170 20 6.87369e+06 447163 531479. 1839.03 0.63 0.0274547 0.0229922 24610 126494 -1 2000 21 1132 1930 162666 35319 0 0 162666 35319 1930 1398 0 0 7204 6100 0 0 10674 8561 0 0 1930 1502 0 0 69827 8879 0 0 71101 8879 0 0 1930 0 0 798 1230 1397 8735 0 0 2.82696 2.82696 -103.211 -2.82696 0 0 648988. 2245.63 0.17 0.03 0.06 -1 -1 0.17 0.00713131 0.00627239 119 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 4.92 vpr 53.63 MiB -1 -1 0.09 17320 1 0.01 -1 -1 29692 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 15.0 MiB 1.87 831 53.6 MiB 0.04 0.00 2.65757 -90.8649 -2.65757 2.65757 0.55 0.000109804 8.829e-05 0.00770443 0.00637706 34 2436 23 6.87369e+06 237555 618332. 2139.56 0.96 0.0399408 0.0335979 25762 151098 -1 1895 21 1361 2018 165155 38038 0 0 165155 38038 2018 1717 0 0 7808 6733 0 0 11358 9189 0 0 2018 1762 0 0 68735 9407 0 0 73218 9230 0 0 2018 0 0 657 695 678 5362 0 0 3.2788 3.2788 -119.877 -3.2788 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00786822 0.00692978 113 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 6.00 vpr 53.36 MiB -1 -1 0.15 17452 1 0.01 -1 -1 29692 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54644 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 14.9 MiB 3.01 966 53.4 MiB 0.05 0.00 3.21683 -112.158 -3.21683 3.21683 0.56 0.000107553 8.605e-05 0.00810423 0.00659968 34 2169 20 6.87369e+06 223581 618332. 2139.56 0.90 0.0380164 0.0318016 25762 151098 -1 1819 17 1125 1912 142300 33242 0 0 142300 33242 1912 1541 0 0 7472 6685 0 0 11085 9076 0 0 1912 1601 0 0 58849 7351 0 0 61070 6988 0 0 1912 0 0 787 1143 1063 7155 0 0 3.05561 3.05561 -121.882 -3.05561 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00679545 0.00603744 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 5.49 vpr 53.27 MiB -1 -1 0.12 17492 1 0.02 -1 -1 29752 -1 -1 16 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54548 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 14.8 MiB 2.50 859 53.3 MiB 0.05 0.00 3.16363 -98.9035 -3.16363 3.16363 0.56 0.000106289 8.483e-05 0.00851928 0.00691297 34 1780 27 6.87369e+06 223581 618332. 2139.56 0.87 0.039523 0.0329292 25762 151098 -1 1562 21 976 1565 116025 27217 0 0 116025 27217 1565 1240 0 0 5953 5378 0 0 9382 7503 0 0 1565 1267 0 0 49878 5571 0 0 47682 6258 0 0 1565 0 0 589 528 693 5031 0 0 2.84066 2.84066 -104.333 -2.84066 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00739349 0.00650246 98 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 4.87 vpr 53.34 MiB -1 -1 0.10 17560 1 0.01 -1 -1 29676 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54620 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 14.9 MiB 1.79 858 53.3 MiB 0.07 0.00 2.8828 -94.5981 -2.8828 2.8828 0.56 0.000104797 8.443e-05 0.0120559 0.00985861 34 2386 33 6.87369e+06 237555 618332. 2139.56 0.95 0.0433288 0.0361931 25762 151098 -1 1914 17 1095 1514 114099 26684 0 0 114099 26684 1514 1305 0 0 5828 5086 0 0 8483 6848 0 0 1514 1337 0 0 46382 6553 0 0 50378 5555 0 0 1514 0 0 419 450 459 3714 0 0 3.22811 3.22811 -116.491 -3.22811 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00645307 0.00574667 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 5.99 vpr 53.60 MiB -1 -1 0.11 17464 1 0.01 -1 -1 29784 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 15.1 MiB 2.88 1108 53.6 MiB 0.07 0.00 3.24063 -110.328 -3.24063 3.24063 0.56 0.000121701 9.7614e-05 0.0108661 0.00886189 34 2851 21 6.87369e+06 321398 618332. 2139.56 0.99 0.0452715 0.0378114 25762 151098 -1 2321 22 1909 2908 227076 52231 0 0 227076 52231 2908 2429 0 0 11381 10277 0 0 17675 14277 0 0 2908 2489 0 0 98504 10977 0 0 93700 11782 0 0 2908 0 0 999 1140 1028 8073 0 0 3.36121 3.36121 -126.872 -3.36121 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00886014 0.00780809 142 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.75 vpr 53.61 MiB -1 -1 0.10 17440 1 0.01 -1 -1 29720 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54900 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 15.1 MiB 1.83 1081 53.6 MiB 0.05 0.00 3.75618 -117.057 -3.75618 3.75618 0.58 0.000124661 9.9855e-05 0.00764984 0.00625625 26 2704 25 6.87369e+06 433189 503264. 1741.40 1.82 0.050336 0.0420664 24322 120374 -1 2430 22 1719 2742 241382 52995 0 0 241382 52995 2742 2224 0 0 10354 8938 0 0 16282 12793 0 0 2742 2327 0 0 102771 13971 0 0 106491 12742 0 0 2742 0 0 1023 1302 1367 9208 0 0 4.14106 4.14106 -146.115 -4.14106 0 0 618332. 2139.56 0.16 0.05 0.06 -1 -1 0.16 0.00909646 0.00796804 133 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 4.07 vpr 53.18 MiB -1 -1 0.11 17348 1 0.01 -1 -1 29784 -1 -1 19 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54452 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 14.6 MiB 1.38 788 53.2 MiB 0.04 0.00 2.63557 -83.7152 -2.63557 2.63557 0.57 0.000100142 8.1225e-05 0.007135 0.00579933 32 1923 24 6.87369e+06 265503 586450. 2029.24 0.57 0.0242729 0.0203191 25474 144626 -1 1676 20 1030 1625 125138 29465 0 0 125138 29465 1625 1240 0 0 6443 5814 0 0 10903 8463 0 0 1625 1278 0 0 52970 6263 0 0 51572 6407 0 0 1625 0 0 595 564 529 4685 0 0 2.81601 2.81601 -98.7462 -2.81601 0 0 744469. 2576.02 0.19 0.03 0.13 -1 -1 0.19 0.00647761 0.005719 94 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 4.24 vpr 53.71 MiB -1 -1 0.10 17676 1 0.01 -1 -1 29728 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55000 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 15.1 MiB 1.56 1033 53.7 MiB 0.05 0.00 2.9366 -101.132 -2.9366 2.9366 0.55 0.00012657 0.000101878 0.00803803 0.00657838 28 2787 24 6.87369e+06 335372 531479. 1839.03 0.67 0.0324328 0.0272152 24610 126494 -1 2384 21 1713 2878 212944 50089 0 0 212944 50089 2878 2327 0 0 10707 9476 0 0 16116 12959 0 0 2878 2419 0 0 89084 11635 0 0 91281 11273 0 0 2878 0 0 1165 1511 1826 10726 0 0 3.57881 3.57881 -128.291 -3.57881 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00904537 0.00797035 135 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 6.18 vpr 53.67 MiB -1 -1 0.10 17676 1 0.00 -1 -1 29800 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54956 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 15.2 MiB 3.07 1104 53.7 MiB 0.06 0.00 3.24063 -109.974 -3.24063 3.24063 0.56 0.000119451 9.6151e-05 0.00977155 0.00801361 34 3012 22 6.87369e+06 293451 618332. 2139.56 1.02 0.0442513 0.0370814 25762 151098 -1 2469 22 1761 2535 207071 46348 0 0 207071 46348 2535 2283 0 0 9538 8258 0 0 14599 11600 0 0 2535 2376 0 0 88517 11260 0 0 89347 10571 0 0 2535 0 0 774 842 821 6520 0 0 3.11331 3.11331 -125.237 -3.11331 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00883539 0.00780225 140 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 4.66 vpr 53.45 MiB -1 -1 0.15 17396 1 0.01 -1 -1 29748 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 14.8 MiB 1.94 790 53.4 MiB 0.07 0.00 2.46506 -91.9901 -2.46506 2.46506 0.56 0.000117704 9.5057e-05 0.0108022 0.00883596 30 1883 21 6.87369e+06 391268 556674. 1926.21 0.59 0.0318718 0.0267729 25186 138497 -1 1578 21 1093 1728 102072 24593 0 0 102072 24593 1728 1216 0 0 6037 5094 0 0 8482 6798 0 0 1728 1357 0 0 45128 4658 0 0 38969 5470 0 0 1728 0 0 635 857 934 6330 0 0 2.06257 2.06257 -97.9399 -2.06257 0 0 706193. 2443.58 0.19 0.03 0.07 -1 -1 0.19 0.00776238 0.00681469 109 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.01 vpr 52.96 MiB -1 -1 0.10 17072 1 0.01 -1 -1 29696 -1 -1 14 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54236 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 14.3 MiB 0.45 475 53.0 MiB 0.03 0.00 2.12623 -69.7841 -2.12623 2.12623 0.56 8.6774e-05 6.9877e-05 0.00649499 0.00531046 28 1541 24 6.87369e+06 195634 531479. 1839.03 0.58 0.0220156 0.0184604 24610 126494 -1 1218 16 671 894 86837 25251 0 0 86837 25251 894 806 0 0 3581 3141 0 0 5186 4287 0 0 894 835 0 0 37537 7750 0 0 38745 8432 0 0 894 0 0 223 158 277 2086 0 0 2.18937 2.18937 -88.7596 -2.18937 0 0 648988. 2245.63 0.17 0.02 0.06 -1 -1 0.17 0.00496611 0.0044048 71 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 5.32 vpr 53.41 MiB -1 -1 0.10 17440 1 0.01 -1 -1 29740 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54688 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 14.8 MiB 2.34 787 53.4 MiB 0.05 0.00 4.06013 -119.969 -4.06013 4.06013 0.57 0.000104978 8.4075e-05 0.00830727 0.00677489 34 2123 22 6.87369e+06 265503 618332. 2139.56 0.88 0.0388964 0.032659 25762 151098 -1 1705 20 1247 1756 105004 28469 0 0 105004 28469 1756 1489 0 0 6596 5654 0 0 9957 8090 0 0 1756 1519 0 0 42651 5939 0 0 42288 5778 0 0 1756 0 0 509 551 520 4434 0 0 3.81546 3.81546 -136.584 -3.81546 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00745022 0.00660954 116 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 3.89 vpr 53.63 MiB -1 -1 0.09 17644 1 0.02 -1 -1 29724 -1 -1 35 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 15.1 MiB 0.71 994 53.6 MiB 0.05 0.00 3.35799 -110.68 -3.35799 3.35799 0.56 0.000122982 9.7579e-05 0.00767071 0.00617939 26 2917 50 6.87369e+06 489084 503264. 1741.40 1.13 0.0373937 0.0314046 24322 120374 -1 2350 22 1692 2521 242534 55412 0 0 242534 55412 2521 2025 0 0 9319 7702 0 0 14130 11008 0 0 2521 2167 0 0 104311 16868 0 0 109732 15642 0 0 2521 0 0 829 1112 1080 8314 0 0 3.8034 3.8034 -142.322 -3.8034 0 0 618332. 2139.56 0.17 0.04 0.06 -1 -1 0.17 0.00887495 0.00780043 137 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 5.03 vpr 53.72 MiB -1 -1 0.10 17820 1 0.01 -1 -1 29664 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55008 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 15.0 MiB 1.64 1048 53.7 MiB 0.05 0.00 3.42215 -107.66 -3.42215 3.42215 0.55 0.000125219 0.000100525 0.00860967 0.00704834 34 3035 24 6.87369e+06 307425 618332. 2139.56 1.34 0.0506995 0.042575 25762 151098 -1 2357 19 1575 2526 196554 46882 0 0 196554 46882 2526 2060 0 0 9941 8876 0 0 15137 12278 0 0 2526 2136 0 0 81596 10778 0 0 84828 10754 0 0 2526 0 0 951 1244 1203 8422 0 0 3.77146 3.77146 -132.635 -3.77146 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00876374 0.00775561 142 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 3.93 vpr 52.78 MiB -1 -1 0.09 17084 1 0.01 -1 -1 29680 -1 -1 17 26 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54044 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 14.3 MiB 1.35 423 52.8 MiB 0.03 0.00 2.06503 -58.2832 -2.06503 2.06503 0.63 7.8899e-05 6.3314e-05 0.00490155 0.00401247 30 1163 25 6.87369e+06 237555 556674. 1926.21 0.53 0.018771 0.0157026 25186 138497 -1 850 14 488 683 34714 9693 0 0 34714 9693 683 531 0 0 2534 2047 0 0 3024 2669 0 0 683 557 0 0 13883 1980 0 0 13907 1909 0 0 683 0 0 195 118 180 1672 0 0 2.04382 2.04382 -69.4058 -2.04382 0 0 706193. 2443.58 0.19 0.01 0.07 -1 -1 0.19 0.00405815 0.00361558 67 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 3.93 vpr 53.49 MiB -1 -1 0.13 17168 1 0.02 -1 -1 29700 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54776 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 14.9 MiB 0.85 890 53.5 MiB 0.06 0.00 3.58982 -103.708 -3.58982 3.58982 0.56 0.000189 0.000151334 0.0100358 0.00817169 34 2428 27 6.87369e+06 321398 618332. 2139.56 0.98 0.0421005 0.0351879 25762 151098 -1 1874 22 1457 2561 175350 42552 0 0 175350 42552 2561 1957 0 0 9940 8852 0 0 14590 11640 0 0 2561 2085 0 0 72365 9252 0 0 73333 8766 0 0 2561 0 0 1104 1466 1452 9831 0 0 4.069 4.069 -125.937 -4.069 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00790824 0.00696482 119 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 2.87 vpr 52.70 MiB -1 -1 0.09 16788 1 0.01 -1 -1 29508 -1 -1 12 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53968 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 14.2 MiB 0.35 477 52.7 MiB 0.03 0.00 2.08703 -64.2189 -2.08703 2.08703 0.56 7.6086e-05 6.0664e-05 0.00509376 0.00415046 30 1239 23 6.87369e+06 167686 556674. 1926.21 0.52 0.0183798 0.015419 25186 138497 -1 895 18 564 681 39534 10893 0 0 39534 10893 681 582 0 0 2576 2195 0 0 3403 2925 0 0 681 601 0 0 15749 2280 0 0 16444 2310 0 0 681 0 0 117 39 165 1236 0 0 1.93582 1.93582 -72.1127 -1.93582 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00461462 0.00409834 65 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 3.26 vpr 53.42 MiB -1 -1 0.10 17512 1 0.01 -1 -1 29660 -1 -1 30 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54700 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 14.8 MiB 0.66 947 53.4 MiB 0.06 0.00 3.64182 -106.107 -3.64182 3.64182 0.56 0.000124483 0.000102615 0.00947453 0.00774019 28 2198 17 6.87369e+06 419215 531479. 1839.03 0.56 0.0281173 0.0236537 24610 126494 -1 1937 21 1298 2077 147990 34782 0 0 147990 34782 2077 1631 0 0 7737 6522 0 0 11814 9442 0 0 2077 1693 0 0 61963 7993 0 0 62322 7501 0 0 2077 0 0 779 1027 980 7177 0 0 3.7734 3.7734 -124.355 -3.7734 0 0 648988. 2245.63 0.17 0.03 0.06 -1 -1 0.17 0.00770454 0.00678695 120 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 3.73 vpr 53.46 MiB -1 -1 0.09 17316 1 0.01 -1 -1 29772 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54740 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.8 MiB 0.70 876 53.5 MiB 0.07 0.00 2.74825 -85.6769 -2.74825 2.74825 0.63 0.000111203 8.9343e-05 0.00938363 0.00758797 34 2141 21 6.87369e+06 433189 618332. 2139.56 0.88 0.0408458 0.0341322 25762 151098 -1 1744 19 1104 1899 113431 28375 0 0 113431 28375 1899 1307 0 0 7156 5957 0 0 10313 8333 0 0 1899 1471 0 0 46009 5619 0 0 46155 5688 0 0 1899 0 0 795 1036 1203 7713 0 0 2.88526 2.88526 -101.782 -2.88526 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00737854 0.00653858 130 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 4.63 vpr 53.69 MiB -1 -1 0.10 17468 1 0.01 -1 -1 29780 -1 -1 28 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 15.2 MiB 1.38 1077 53.7 MiB 0.08 0.00 3.71518 -112.424 -3.71518 3.71518 0.60 0.000127415 0.000103916 0.0114924 0.00937751 34 2601 36 6.87369e+06 391268 618332. 2139.56 1.09 0.0503145 0.042146 25762 151098 -1 2207 21 1562 2700 177740 42562 0 0 177740 42562 2700 2039 0 0 10285 8909 0 0 15706 12412 0 0 2700 2201 0 0 72066 8767 0 0 74283 8234 0 0 2700 0 0 1138 1313 1440 9943 0 0 4.17236 4.17236 -135.706 -4.17236 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00859531 0.00752848 131 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 3.69 vpr 53.30 MiB -1 -1 0.10 17480 1 0.02 -1 -1 29908 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 14.9 MiB 0.70 868 53.3 MiB 0.05 0.00 2.61357 -92.8666 -2.61357 2.61357 0.56 0.000101315 8.0518e-05 0.00876393 0.00711005 34 2032 19 6.87369e+06 223581 618332. 2139.56 0.92 0.040936 0.0341882 25762 151098 -1 1728 20 933 1526 119979 27372 0 0 119979 27372 1526 1231 0 0 5772 4941 0 0 8888 6957 0 0 1526 1296 0 0 49192 7027 0 0 53075 5920 0 0 1526 0 0 593 584 622 4811 0 0 3.15311 3.15311 -113.243 -3.15311 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00715271 0.00631122 99 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 3.49 vpr 53.25 MiB -1 -1 0.10 17228 1 0.01 -1 -1 29716 -1 -1 26 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54532 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 14.6 MiB 0.92 846 53.3 MiB 0.05 0.00 2.60257 -86.5007 -2.60257 2.60257 0.56 0.000100915 8.0545e-05 0.00825518 0.00669926 30 1782 20 6.87369e+06 363320 556674. 1926.21 0.55 0.0255412 0.0214759 25186 138497 -1 1473 18 723 1184 73421 17039 0 0 73421 17039 1184 857 0 0 4161 3472 0 0 5638 4600 0 0 1184 937 0 0 31124 3642 0 0 30130 3531 0 0 1184 0 0 461 349 483 3775 0 0 2.67966 2.67966 -98.6208 -2.67966 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00614461 0.00542649 97 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 3.46 vpr 53.14 MiB -1 -1 0.09 17168 1 0.01 -1 -1 29612 -1 -1 18 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54420 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 14.5 MiB 0.71 746 53.1 MiB 0.04 0.00 2.8296 -83.801 -2.8296 2.8296 0.56 9.4886e-05 7.5945e-05 0.00778561 0.00634134 32 2070 30 6.87369e+06 251529 586450. 2029.24 0.65 0.0285171 0.0238718 25474 144626 -1 1780 21 1152 2060 238301 59693 0 0 238301 59693 2060 1592 0 0 8043 7218 0 0 15094 11334 0 0 2060 1644 0 0 107894 18416 0 0 103150 19489 0 0 2060 0 0 908 1278 1136 7846 0 0 3.08856 3.08856 -105.869 -3.08856 0 0 744469. 2576.02 0.19 0.04 0.09 -1 -1 0.19 0.00674032 0.00592848 95 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 3.23 vpr 53.21 MiB -1 -1 0.09 16936 1 0.01 -1 -1 29808 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54484 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 14.5 MiB 0.57 756 53.2 MiB 0.04 0.00 3.07863 -94.6549 -3.07863 3.07863 0.56 0.000101851 8.1849e-05 0.00766091 0.00623144 30 1993 30 6.87369e+06 237555 556674. 1926.21 0.63 0.0270104 0.0227112 25186 138497 -1 1535 21 1072 1767 103821 27088 0 0 103821 27088 1767 1325 0 0 6073 5091 0 0 7958 6461 0 0 1767 1399 0 0 42901 6330 0 0 43355 6482 0 0 1767 0 0 695 747 879 5880 0 0 3.04656 3.04656 -113.36 -3.04656 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00696385 0.00614364 101 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 3.62 vpr 53.36 MiB -1 -1 0.08 17520 1 0.01 -1 -1 29716 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54644 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 15.0 MiB 0.68 709 53.4 MiB 0.03 0.00 2.8296 -86.8758 -2.8296 2.8296 0.56 0.000102188 8.2669e-05 0.00515361 0.00424344 34 1988 24 6.87369e+06 363320 618332. 2139.56 0.88 0.0339585 0.0285269 25762 151098 -1 1584 23 1058 1814 126873 31358 0 0 126873 31358 1814 1274 0 0 6887 6091 0 0 11533 9013 0 0 1814 1473 0 0 50591 6890 0 0 54234 6617 0 0 1814 0 0 756 908 903 6923 0 0 3.07256 3.07256 -106.021 -3.07256 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00740903 0.00649149 102 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 5.28 vpr 53.43 MiB -1 -1 0.08 17432 1 0.01 -1 -1 29824 -1 -1 25 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54716 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 14.9 MiB 2.30 655 53.4 MiB 0.04 0.00 2.42106 -77.1691 -2.42106 2.42106 0.56 0.000101694 8.1146e-05 0.00575229 0.00471581 34 1823 20 6.87369e+06 349346 618332. 2139.56 0.93 0.035099 0.0293389 25762 151098 -1 1545 19 1112 1596 109880 27239 0 0 109880 27239 1596 1278 0 0 6089 5294 0 0 9291 7343 0 0 1596 1342 0 0 45844 6130 0 0 45464 5852 0 0 1596 0 0 484 559 559 4574 0 0 2.37247 2.37247 -94.6437 -2.37247 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00674066 0.00594934 106 48 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 5.74 vpr 53.80 MiB -1 -1 0.10 17500 1 0.01 -1 -1 29808 -1 -1 40 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55096 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 15.4 MiB 2.72 1188 53.8 MiB 0.08 0.00 3.29679 -102.29 -3.29679 3.29679 0.60 0.000130964 0.000105141 0.0102148 0.00836265 28 2904 23 6.87369e+06 558954 531479. 1839.03 0.90 0.0362807 0.0307003 24610 126494 -1 2498 20 1563 2999 217142 48423 0 0 217142 48423 2999 1888 0 0 11015 9451 0 0 16499 12951 0 0 2999 2060 0 0 93903 10820 0 0 89727 11253 0 0 2999 0 0 1436 2576 3071 17216 0 0 3.8847 3.8847 -130.216 -3.8847 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00901762 0.00794558 156 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 5.19 vpr 53.77 MiB -1 -1 0.10 17392 1 0.00 -1 -1 29744 -1 -1 38 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55056 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 15.3 MiB 2.49 1012 53.8 MiB 0.07 0.00 3.03218 -108.408 -3.03218 3.03218 0.56 0.000145426 0.00011245 0.0100927 0.00814033 30 2298 21 6.87369e+06 531006 556674. 1926.21 0.59 0.0338087 0.028186 25186 138497 -1 1888 20 1431 2361 127788 30160 0 0 127788 30160 2361 1510 0 0 8018 6520 0 0 10316 8396 0 0 2361 1670 0 0 53932 5775 0 0 50800 6289 0 0 2361 0 0 930 1102 1255 8810 0 0 2.77656 2.77656 -115.581 -2.77656 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00911095 0.00800873 148 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 4.62 vpr 53.33 MiB -1 -1 0.10 17516 1 0.01 -1 -1 29672 -1 -1 18 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54612 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 14.9 MiB 1.61 899 53.3 MiB 0.05 0.00 3.32193 -103.497 -3.32193 3.32193 0.56 9.9488e-05 7.9192e-05 0.00911416 0.00741386 34 2244 23 6.87369e+06 251529 618332. 2139.56 0.92 0.0382323 0.0318912 25762 151098 -1 1869 23 1166 1822 137753 32286 0 0 137753 32286 1822 1510 0 0 7093 6153 0 0 10741 8603 0 0 1822 1546 0 0 57285 7624 0 0 58990 6850 0 0 1822 0 0 656 884 840 6130 0 0 3.38741 3.38741 -119.796 -3.38741 0 0 787024. 2723.27 0.20 0.03 0.09 -1 -1 0.20 0.00777373 0.00684985 109 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 5.10 vpr 53.73 MiB -1 -1 0.11 17640 1 0.01 -1 -1 29860 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55020 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 15.2 MiB 1.99 1129 53.7 MiB 0.06 0.00 2.9678 -102.212 -2.9678 2.9678 0.56 0.000127465 0.000102021 0.0105815 0.00864336 34 2650 22 6.87369e+06 363320 618332. 2139.56 0.98 0.0476185 0.0397742 25762 151098 -1 2266 21 1598 2670 184527 42332 0 0 184527 42332 2670 1978 0 0 9711 8304 0 0 14718 11391 0 0 2670 2241 0 0 76897 9271 0 0 77861 9147 0 0 2670 0 0 1072 1245 1332 9295 0 0 3.16061 3.16061 -123.601 -3.16061 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00913112 0.00805784 136 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 6.87 vpr 53.82 MiB -1 -1 0.09 17612 1 0.02 -1 -1 29848 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55108 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 15.3 MiB 3.08 1172 53.8 MiB 0.07 0.00 4.36902 -133.763 -4.36902 4.36902 0.56 0.000126885 0.000102098 0.0122017 0.00996573 34 3754 39 6.87369e+06 349346 618332. 2139.56 1.65 0.0539135 0.0448891 25762 151098 -1 2678 22 2359 3494 292216 66865 0 0 292216 66865 3494 3055 0 0 13406 11789 0 0 20830 16374 0 0 3494 3190 0 0 125882 16383 0 0 125110 16074 0 0 3494 0 0 1135 1092 1249 9240 0 0 5.1721 5.1721 -165.777 -5.1721 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.00985311 0.00872191 159 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.79 vpr 53.88 MiB -1 -1 0.12 17680 1 0.01 -1 -1 29732 -1 -1 27 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55168 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 15.5 MiB 2.69 1263 53.9 MiB 0.06 0.00 4.44394 -138.601 -4.44394 4.44394 0.56 0.00012823 0.000103206 0.0109262 0.00893993 34 3125 22 6.87369e+06 377294 618332. 2139.56 0.97 0.048953 0.0409583 25762 151098 -1 2556 21 1793 2729 210235 47575 0 0 210235 47575 2729 2157 0 0 10386 8894 0 0 15447 12480 0 0 2729 2271 0 0 90758 10896 0 0 88186 10877 0 0 2729 0 0 936 965 1241 7933 0 0 4.51465 4.51465 -158.82 -4.51465 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00971184 0.00857091 152 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 5.11 vpr 53.49 MiB -1 -1 0.11 17464 1 0.01 -1 -1 29748 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54776 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 15.0 MiB 2.24 994 53.5 MiB 0.06 0.00 3.22963 -102.878 -3.22963 3.22963 0.56 0.000124618 9.9587e-05 0.00901045 0.00736358 28 2761 28 6.87369e+06 349346 531479. 1839.03 0.80 0.0333833 0.0280868 24610 126494 -1 2263 21 1393 2313 166692 42025 0 0 166692 42025 2313 1857 0 0 8860 7762 0 0 13092 10564 0 0 2313 1916 0 0 69210 10363 0 0 70904 9563 0 0 2313 0 0 920 1389 1184 8380 0 0 3.45621 3.45621 -130.335 -3.45621 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00894815 0.00789086 131 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 5.10 vpr 53.47 MiB -1 -1 0.09 17440 1 0.01 -1 -1 29664 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54756 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 14.9 MiB 1.99 944 53.5 MiB 0.03 0.00 3.52545 -96.7164 -3.52545 3.52545 0.56 0.000106582 8.5734e-05 0.00517333 0.00427653 34 2546 24 6.87369e+06 279477 618332. 2139.56 1.08 0.0367683 0.0309524 25762 151098 -1 2047 18 1236 1817 143117 33792 0 0 143117 33792 1817 1597 0 0 7169 6262 0 0 10845 8914 0 0 1817 1670 0 0 59251 7871 0 0 62218 7478 0 0 1817 0 0 581 720 778 5344 0 0 3.86676 3.86676 -118.608 -3.86676 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.0070696 0.00629334 119 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 5.54 vpr 54.30 MiB -1 -1 0.11 17792 1 0.01 -1 -1 29892 -1 -1 38 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55608 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 15.7 MiB 2.62 1263 54.3 MiB 0.09 0.00 3.85958 -128.679 -3.85958 3.85958 0.55 0.000151545 0.000121514 0.0137392 0.0112164 32 3385 49 6.87369e+06 531006 586450. 2029.24 0.74 0.0489976 0.0410337 25474 144626 -1 2470 23 1879 3104 214304 52727 0 0 214304 52727 3104 2172 0 0 12310 10585 0 0 19346 15249 0 0 3104 2342 0 0 89311 11478 0 0 87129 10901 0 0 3104 0 0 1225 1868 2025 12904 0 0 4.04596 4.04596 -148.713 -4.04596 0 0 744469. 2576.02 0.19 0.05 0.07 -1 -1 0.19 0.011517 0.0100919 173 84 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 3.94 vpr 53.23 MiB -1 -1 0.10 17132 1 0.01 -1 -1 29736 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54508 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 14.6 MiB 1.34 869 53.2 MiB 0.05 0.00 2.78925 -87.7529 -2.78925 2.78925 0.56 9.5282e-05 7.6019e-05 0.00721213 0.00587424 32 1961 25 6.87369e+06 307425 586450. 2029.24 0.56 0.0251676 0.0211363 25474 144626 -1 1690 20 1039 1825 145917 32386 0 0 145917 32386 1825 1369 0 0 7003 5939 0 0 11056 8400 0 0 1825 1471 0 0 65060 6842 0 0 59148 8365 0 0 1825 0 0 786 1012 1140 6899 0 0 2.77196 2.77196 -103.748 -2.77196 0 0 744469. 2576.02 0.19 0.03 0.07 -1 -1 0.19 0.00649418 0.00571224 96 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 4.45 vpr 53.67 MiB -1 -1 0.09 17488 1 0.01 -1 -1 29772 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54956 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 15.1 MiB 1.81 1048 53.7 MiB 0.05 0.00 3.78918 -115.79 -3.78918 3.78918 0.56 0.00012656 0.000103573 0.00706705 0.00591783 30 2636 21 6.87369e+06 321398 556674. 1926.21 0.62 0.0291129 0.0247618 25186 138497 -1 1963 22 1412 2138 115271 29186 0 0 115271 29186 2138 1718 0 0 7540 6215 0 0 9770 8127 0 0 2138 1800 0 0 46603 5821 0 0 47082 5505 0 0 2138 0 0 726 944 813 6423 0 0 3.87946 3.87946 -132.043 -3.87946 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00891704 0.0078922 140 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 4.67 vpr 53.56 MiB -1 -1 0.09 17480 1 0.02 -1 -1 29656 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54848 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 15.0 MiB 1.50 1107 53.6 MiB 0.05 0.00 2.9146 -96.6486 -2.9146 2.9146 0.56 0.000119911 9.6121e-05 0.00677567 0.00555309 26 2871 26 6.87369e+06 447163 503264. 1741.40 1.11 0.0309514 0.0261427 24322 120374 -1 2447 23 1575 2727 253556 58366 0 0 253556 58366 2727 2045 0 0 10561 9137 0 0 16278 12874 0 0 2727 2199 0 0 111917 15667 0 0 109346 16444 0 0 2727 0 0 1152 1561 1672 10646 0 0 3.56781 3.56781 -126.863 -3.56781 0 0 618332. 2139.56 0.16 0.05 0.06 -1 -1 0.16 0.00895676 0.00783784 132 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 3.60 vpr 53.43 MiB -1 -1 0.09 17160 1 0.01 -1 -1 29768 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54716 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 14.9 MiB 0.53 851 53.4 MiB 0.05 0.00 3.37079 -101.608 -3.37079 3.37079 0.56 0.000114201 9.1846e-05 0.00694887 0.00573048 34 2239 22 6.87369e+06 363320 618332. 2139.56 0.97 0.0398277 0.0335029 25762 151098 -1 1871 23 1413 2707 185779 43784 0 0 185779 43784 2707 1888 0 0 10265 8983 0 0 15944 12576 0 0 2707 2150 0 0 79995 8549 0 0 74161 9638 0 0 2707 0 0 1294 1886 1811 11640 0 0 3.7854 3.7854 -120.635 -3.7854 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00811784 0.00714087 123 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 5.36 vpr 53.70 MiB -1 -1 0.10 17440 1 0.02 -1 -1 29768 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54988 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 15.2 MiB 2.35 1162 53.7 MiB 0.07 0.00 3.93315 -123.006 -3.93315 3.93315 0.56 0.000126435 0.000101119 0.0113894 0.00925503 34 2733 30 6.87369e+06 307425 618332. 2139.56 0.91 0.0494733 0.0413605 25762 151098 -1 2154 20 1124 1521 101260 24419 0 0 101260 24419 1521 1253 0 0 5884 5034 0 0 8468 6962 0 0 1521 1294 0 0 42431 4837 0 0 41435 5039 0 0 1521 0 0 397 417 409 3710 0 0 3.4725 3.4725 -129.856 -3.4725 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00858686 0.00762651 136 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 5.24 vpr 53.75 MiB -1 -1 0.11 17352 1 0.01 -1 -1 29808 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55036 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 15.2 MiB 2.42 953 53.7 MiB 0.07 0.00 2.9366 -97.0898 -2.9366 2.9366 0.56 0.000124368 9.8646e-05 0.0108794 0.00881443 30 2558 27 6.87369e+06 447163 556674. 1926.21 0.74 0.0345692 0.0289051 25186 138497 -1 1867 23 1097 1913 113737 26725 0 0 113737 26725 1913 1361 0 0 6556 5349 0 0 8605 7011 0 0 1913 1455 0 0 46175 6133 0 0 48575 5416 0 0 1913 0 0 816 1116 1225 8414 0 0 3.11261 3.11261 -115.349 -3.11261 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.0095067 0.00836826 136 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 5.47 vpr 53.82 MiB -1 -1 0.11 17480 1 0.01 -1 -1 29736 -1 -1 35 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55116 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 15.2 MiB 2.33 967 53.8 MiB 0.08 0.00 3.24063 -106.811 -3.24063 3.24063 0.57 0.000128637 0.000102741 0.0121348 0.0098171 28 3308 44 6.87369e+06 489084 531479. 1839.03 1.05 0.0414755 0.0344939 24610 126494 -1 2457 21 1759 2921 238642 55936 0 0 238642 55936 2921 2215 0 0 10856 9272 0 0 16999 13443 0 0 2921 2466 0 0 102434 14403 0 0 102511 14137 0 0 2921 0 0 1162 1711 1741 10831 0 0 3.50376 3.50376 -128.426 -3.50376 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00916238 0.0080206 144 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 3.33 vpr 53.36 MiB -1 -1 0.09 17344 1 0.00 -1 -1 29696 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54644 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 14.7 MiB 0.69 984 53.4 MiB 0.07 0.00 3.38179 -104.741 -3.38179 3.38179 0.56 0.000122696 9.9297e-05 0.0107882 0.00874541 32 2436 22 6.87369e+06 461137 586450. 2029.24 0.58 0.0310142 0.0259897 25474 144626 -1 2048 19 1175 1996 160183 36177 0 0 160183 36177 1996 1480 0 0 7763 6676 0 0 12573 9792 0 0 1996 1600 0 0 67394 8566 0 0 68461 8063 0 0 1996 0 0 821 1144 1086 7709 0 0 3.6058 3.6058 -123.048 -3.6058 0 0 744469. 2576.02 0.19 0.03 0.07 -1 -1 0.19 0.00733452 0.00647745 124 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 4.90 vpr 53.60 MiB -1 -1 0.09 17484 1 0.01 -1 -1 29720 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54888 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 15.2 MiB 1.70 1094 53.6 MiB 0.05 0.00 3.84368 -116.221 -3.84368 3.84368 0.56 0.000113109 9.0493e-05 0.00872922 0.00711334 34 2762 34 6.87369e+06 307425 618332. 2139.56 1.11 0.0454945 0.0379442 25762 151098 -1 2324 21 1690 2415 171839 39719 0 0 171839 39719 2415 2040 0 0 9078 7689 0 0 13579 10644 0 0 2415 2190 0 0 72652 8712 0 0 71700 8444 0 0 2415 0 0 725 741 776 6107 0 0 3.81246 3.81246 -133.251 -3.81246 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00830132 0.00732624 135 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 5.14 vpr 53.61 MiB -1 -1 0.09 17892 1 0.01 -1 -1 29800 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54896 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 15.0 MiB 1.62 1206 53.6 MiB 0.07 0.00 3.72318 -119.048 -3.72318 3.72318 0.56 0.000126728 0.000101554 0.0119647 0.00975812 34 3047 24 6.87369e+06 307425 618332. 2139.56 1.41 0.0511226 0.0427467 25762 151098 -1 2520 22 1989 3298 256421 58867 0 0 256421 58867 3298 2763 0 0 12910 11574 0 0 20182 15981 0 0 3298 2971 0 0 109451 12842 0 0 107282 12736 0 0 3298 0 0 1309 1567 1668 11276 0 0 4.11536 4.11536 -143.223 -4.11536 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.00935309 0.00823457 141 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 5.41 vpr 53.75 MiB -1 -1 0.11 17344 1 0.02 -1 -1 29804 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55044 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 15.1 MiB 2.13 1073 53.8 MiB 0.07 0.00 3.65075 -114.063 -3.65075 3.65075 0.56 0.000128613 0.000102703 0.0116964 0.00949606 34 3072 27 6.87369e+06 293451 618332. 2139.56 1.14 0.0536954 0.0447082 25762 151098 -1 2447 20 1634 2914 233920 53525 0 0 233920 53525 2914 2289 0 0 11196 10113 0 0 17218 13781 0 0 2914 2431 0 0 98381 13077 0 0 101297 11834 0 0 2914 0 0 1280 1351 1448 9953 0 0 4.09736 4.09736 -141.288 -4.09736 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00900784 0.00793893 135 74 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 3.24 vpr 53.12 MiB -1 -1 0.10 17384 1 0.01 -1 -1 29684 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54392 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 14.5 MiB 0.56 799 53.1 MiB 0.05 0.00 2.7886 -85.1108 -2.7886 2.7886 0.56 9.3727e-05 7.4577e-05 0.00837585 0.00675173 32 1979 29 6.87369e+06 307425 586450. 2029.24 0.64 0.0268003 0.0224683 25474 144626 -1 1582 18 929 1537 116644 27564 0 0 116644 27564 1537 1072 0 0 6192 5378 0 0 10073 8017 0 0 1537 1208 0 0 49107 5804 0 0 48198 6085 0 0 1537 0 0 608 728 905 5672 0 0 3.02456 3.02456 -101.331 -3.02456 0 0 744469. 2576.02 0.19 0.03 0.07 -1 -1 0.19 0.00602827 0.00532816 93 20 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 4.39 vpr 53.71 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29732 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54996 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 15.2 MiB 1.36 970 53.7 MiB 0.07 0.00 3.03076 -109.675 -3.03076 3.03076 0.55 0.000114198 9.1168e-05 0.0117958 0.00957472 34 2529 25 6.87369e+06 251529 618332. 2139.56 0.98 0.0457066 0.0380428 25762 151098 -1 2127 22 1707 2462 220388 48938 0 0 220388 48938 2462 2128 0 0 9897 8991 0 0 15833 12742 0 0 2462 2197 0 0 98088 11067 0 0 91646 11813 0 0 2462 0 0 755 755 653 6135 0 0 3.4778 3.4778 -136.9 -3.4778 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00858573 0.00753392 124 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 5.91 vpr 54.11 MiB -1 -1 0.16 17828 1 0.01 -1 -1 29756 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55412 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 15.4 MiB 2.41 1419 54.1 MiB 0.08 0.00 4.50952 -138.935 -4.50952 4.50952 0.56 0.000136867 0.000110394 0.0124529 0.0102115 34 3489 40 6.87369e+06 335372 618332. 2139.56 1.29 0.058481 0.0492379 25762 151098 -1 2917 24 2084 3241 237719 55634 0 0 237719 55634 3241 2775 0 0 12430 10825 0 0 19016 14963 0 0 3241 2921 0 0 98739 12193 0 0 101052 11957 0 0 3241 0 0 1157 1437 1315 9886 0 0 4.8644 4.8644 -163.963 -4.8644 0 0 787024. 2723.27 0.20 0.05 0.08 -1 -1 0.20 0.010783 0.00950959 166 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 5.52 vpr 53.59 MiB -1 -1 0.09 17644 1 0.01 -1 -1 29824 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54880 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 15.1 MiB 2.35 821 53.6 MiB 0.05 0.00 3.22801 -101.489 -3.22801 3.22801 0.56 0.000119681 9.6119e-05 0.00695341 0.00565869 34 2122 36 6.87369e+06 475111 618332. 2139.56 1.08 0.0448413 0.037585 25762 151098 -1 1741 20 1318 2067 135224 35892 0 0 135224 35892 2067 1511 0 0 7839 6688 0 0 12065 9676 0 0 2067 1680 0 0 55240 8018 0 0 55946 8319 0 0 2067 0 0 749 781 922 7033 0 0 3.13526 3.13526 -121.002 -3.13526 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00836991 0.0073811 137 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 3.45 vpr 53.30 MiB -1 -1 0.10 17340 1 0.01 -1 -1 29664 -1 -1 25 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54576 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 14.9 MiB 0.60 721 53.3 MiB 0.05 0.00 2.8516 -89.7325 -2.8516 2.8516 0.56 0.000100117 8.0149e-05 0.00713298 0.00579574 28 2211 43 6.87369e+06 349346 531479. 1839.03 0.85 0.0296487 0.0247522 24610 126494 -1 1739 21 1065 1648 127029 30352 0 0 127029 30352 1648 1328 0 0 6292 5473 0 0 9212 7557 0 0 1648 1412 0 0 51356 7522 0 0 56873 7060 0 0 1648 0 0 583 822 776 5863 0 0 3.30621 3.30621 -113.712 -3.30621 0 0 648988. 2245.63 0.17 0.03 0.06 -1 -1 0.17 0.00696848 0.00611692 104 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 7.41 vpr 54.08 MiB -1 -1 0.10 17740 1 0.01 -1 -1 29840 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55376 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 15.7 MiB 3.98 1376 54.1 MiB 0.05 0.00 4.57575 -140.174 -4.57575 4.57575 0.56 0.000151816 0.000123255 0.00895507 0.00745185 34 3679 26 6.87369e+06 349346 618332. 2139.56 1.32 0.053627 0.0449391 25762 151098 -1 2900 24 2305 3499 287190 65018 0 0 287190 65018 3499 3067 0 0 13539 12156 0 0 21009 16628 0 0 3499 3194 0 0 122931 14743 0 0 122713 15230 0 0 3499 0 0 1194 1639 1760 11288 0 0 5.1238 5.1238 -175.32 -5.1238 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.0115076 0.0101436 171 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 5.24 vpr 53.65 MiB -1 -1 0.10 17340 1 0.02 -1 -1 29760 -1 -1 35 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54936 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 15.1 MiB 2.53 1066 53.6 MiB 0.06 0.00 3.66202 -115.266 -3.66202 3.66202 0.56 0.000118429 9.5165e-05 0.00962039 0.00783443 32 2580 28 6.87369e+06 489084 586450. 2029.24 0.61 0.0325538 0.0273073 25474 144626 -1 2010 22 1571 2697 213352 47798 0 0 213352 47798 2697 1794 0 0 10568 9369 0 0 17538 13634 0 0 2697 1990 0 0 92774 10300 0 0 87078 10711 0 0 2697 0 0 1126 1503 1586 10976 0 0 3.9207 3.9207 -136.884 -3.9207 0 0 744469. 2576.02 0.19 0.04 0.07 -1 -1 0.19 0.00854803 0.00752088 135 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.05 vpr 53.09 MiB -1 -1 0.09 17036 1 0.01 -1 -1 29644 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54368 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 14.6 MiB 0.53 862 53.1 MiB 0.04 0.00 2.8436 -87.7852 -2.8436 2.8436 0.56 9.2613e-05 7.4036e-05 0.00665545 0.00542004 30 1844 23 6.87369e+06 335372 556674. 1926.21 1.51 0.0376427 0.0316614 25186 138497 -1 1556 17 789 1382 82867 19348 0 0 82867 19348 1382 925 0 0 4834 3998 0 0 6415 5243 0 0 1382 1002 0 0 34442 4062 0 0 34412 4118 0 0 1382 0 0 593 744 782 5535 0 0 2.77096 2.77096 -99.5313 -2.77096 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00543369 0.00483239 94 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 4.38 vpr 53.75 MiB -1 -1 0.09 17452 1 0.01 -1 -1 29852 -1 -1 37 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55036 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 15.2 MiB 1.67 1163 53.7 MiB 0.09 0.00 4.13467 -113.812 -4.13467 4.13467 0.56 0.000125319 0.00010104 0.0120819 0.00971007 30 2656 22 6.87369e+06 517032 556674. 1926.21 0.59 0.0342885 0.0286369 25186 138497 -1 2116 19 1111 2191 130026 30114 0 0 130026 30114 2191 1357 0 0 7604 6484 0 0 10329 8379 0 0 2191 1520 0 0 54339 6266 0 0 53372 6108 0 0 2191 0 0 1080 1735 2018 12498 0 0 4.06035 4.06035 -130.563 -4.06035 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00801408 0.00706818 145 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 3.51 vpr 53.14 MiB -1 -1 0.10 17044 1 0.01 -1 -1 29688 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54420 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 14.6 MiB 0.60 676 53.1 MiB 0.02 0.00 2.8626 -88.1019 -2.8626 2.8626 0.56 9.4747e-05 7.6235e-05 0.00385618 0.00318878 34 1796 21 6.87369e+06 265503 618332. 2139.56 0.91 0.0312287 0.0263274 25762 151098 -1 1482 21 1145 2043 130203 33100 0 0 130203 33100 2043 1568 0 0 7670 6853 0 0 11852 9347 0 0 2043 1680 0 0 51758 6764 0 0 54837 6888 0 0 2043 0 0 898 919 1100 7456 0 0 2.75796 2.75796 -101.948 -2.75796 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00682231 0.00600143 98 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 4.82 vpr 53.34 MiB -1 -1 0.10 17564 1 0.01 -1 -1 29780 -1 -1 34 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54624 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 14.8 MiB 1.92 765 53.3 MiB 0.04 0.00 3.03828 -91.2623 -3.03828 3.03828 0.56 0.000108521 8.5078e-05 0.00553488 0.00447152 26 2306 49 6.87369e+06 475111 503264. 1741.40 0.88 0.0290846 0.0243743 24322 120374 -1 1904 21 1333 2406 209977 50537 0 0 209977 50537 2406 1798 0 0 9403 7972 0 0 14416 11494 0 0 2406 1993 0 0 86516 14060 0 0 94830 13220 0 0 2406 0 0 1073 1669 1568 10880 0 0 3.46716 3.46716 -122.653 -3.46716 0 0 618332. 2139.56 0.16 0.04 0.06 -1 -1 0.16 0.00693923 0.00608932 109 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 6.34 vpr 53.63 MiB -1 -1 0.10 17392 1 0.01 -1 -1 29740 -1 -1 24 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54920 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 15.0 MiB 3.05 1073 53.6 MiB 0.07 0.00 3.19963 -100.413 -3.19963 3.19963 0.60 0.000121525 9.7719e-05 0.0104123 0.00857293 34 2983 26 6.87369e+06 335372 618332. 2139.56 1.11 0.0464901 0.0387885 25762 151098 -1 2293 21 1882 2882 227444 52278 0 0 227444 52278 2882 2267 0 0 11017 9915 0 0 17426 13614 0 0 2882 2560 0 0 101783 11333 0 0 91454 12589 0 0 2882 0 0 1000 955 977 7814 0 0 3.23091 3.23091 -118.544 -3.23091 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00885525 0.0078166 138 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 4.74 vpr 53.67 MiB -1 -1 0.10 17676 1 0.01 -1 -1 29712 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 15.2 MiB 1.73 1073 53.7 MiB 0.06 0.00 3.61045 -119.578 -3.61045 3.61045 0.56 0.000136971 0.000112182 0.0114166 0.00944803 34 2346 19 6.87369e+06 363320 618332. 2139.56 0.93 0.0458339 0.0383046 25762 151098 -1 2032 21 1506 2306 180262 40066 0 0 180262 40066 2306 1700 0 0 8696 7430 0 0 13462 10629 0 0 2306 1742 0 0 80519 8418 0 0 72973 10147 0 0 2306 0 0 800 894 945 7113 0 0 3.82646 3.82646 -137.91 -3.82646 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00883939 0.00775734 132 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 4.98 vpr 53.64 MiB -1 -1 0.10 17400 1 0.01 -1 -1 29644 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54932 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 15.1 MiB 1.74 975 53.6 MiB 0.07 0.00 3.69318 -113.32 -3.69318 3.69318 0.56 0.000121574 9.7318e-05 0.0118857 0.00962684 28 3159 34 6.87369e+06 377294 531479. 1839.03 1.19 0.038674 0.0324107 24610 126494 -1 2558 21 1801 3109 287245 62490 0 0 287245 62490 3109 2505 0 0 11807 10300 0 0 17513 14144 0 0 3109 2635 0 0 128197 16166 0 0 123510 16740 0 0 3109 0 0 1308 1796 1629 11786 0 0 4.04706 4.04706 -142.748 -4.04706 0 0 648988. 2245.63 0.17 0.05 0.06 -1 -1 0.17 0.00872185 0.00769576 133 48 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 5.24 vpr 53.29 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29632 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54564 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 14.9 MiB 2.60 920 53.3 MiB 0.05 0.00 3.74452 -108.972 -3.74452 3.74452 0.56 9.8102e-05 7.8717e-05 0.00935345 0.00763477 30 2167 19 6.87369e+06 209608 556674. 1926.21 0.56 0.0272686 0.0229444 25186 138497 -1 1797 18 887 1250 82204 19120 0 0 82204 19120 1250 1071 0 0 4399 3659 0 0 5711 4728 0 0 1250 1130 0 0 34756 4190 0 0 34838 4342 0 0 1250 0 0 363 430 406 3191 0 0 3.17057 3.17057 -114.633 -3.17057 0 0 706193. 2443.58 0.19 0.04 0.07 -1 -1 0.19 0.0113301 0.0101443 103 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 5.06 vpr 53.49 MiB -1 -1 0.10 17336 1 0.01 -1 -1 29728 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 14.9 MiB 1.99 875 53.5 MiB 0.05 0.00 2.99776 -101.048 -2.99776 2.99776 0.56 0.000118429 9.5873e-05 0.0100845 0.00828164 34 2463 19 6.87369e+06 237555 618332. 2139.56 0.97 0.04408 0.0368349 25762 151098 -1 2004 21 1397 2064 163961 37711 0 0 163961 37711 2064 1707 0 0 7972 7026 0 0 12358 9687 0 0 2064 1884 0 0 72008 8561 0 0 67495 8846 0 0 2064 0 0 667 550 604 5219 0 0 3.37011 3.37011 -125.628 -3.37011 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00797702 0.00704093 114 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 4.81 vpr 53.61 MiB -1 -1 0.09 17588 1 0.01 -1 -1 29664 -1 -1 34 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54896 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 15.2 MiB 1.98 967 53.6 MiB 0.07 0.00 2.73725 -83.2823 -2.73725 2.73725 0.56 0.000114494 9.0642e-05 0.00982962 0.00792268 26 2531 23 6.87369e+06 475111 503264. 1741.40 0.76 0.031456 0.0262878 24322 120374 -1 2293 21 1402 2639 282896 70657 0 0 282896 70657 2639 1832 0 0 10398 9048 0 0 17461 13868 0 0 2639 1977 0 0 127188 22268 0 0 122571 21664 0 0 2639 0 0 1237 2295 2542 14163 0 0 3.04486 3.04486 -107.934 -3.04486 0 0 618332. 2139.56 0.18 0.05 0.06 -1 -1 0.18 0.00805868 0.00706103 124 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 4.14 vpr 53.45 MiB -1 -1 0.10 17396 1 0.01 -1 -1 29780 -1 -1 35 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 14.9 MiB 1.46 724 53.4 MiB 0.05 0.00 3.26379 -83.0213 -3.26379 3.26379 0.56 9.9992e-05 7.9804e-05 0.00765393 0.00620987 30 2032 25 6.87369e+06 489084 556674. 1926.21 0.66 0.0264751 0.022115 25186 138497 -1 1526 18 882 1785 106297 26391 0 0 106297 26391 1785 1173 0 0 6111 5134 0 0 8276 6641 0 0 1785 1265 0 0 42839 6253 0 0 45501 5925 0 0 1785 0 0 903 1531 1381 9580 0 0 3.7264 3.7264 -103.278 -3.7264 0 0 706193. 2443.58 0.19 0.02 0.07 -1 -1 0.19 0.00650929 0.00578187 117 20 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.17 vpr 53.41 MiB -1 -1 0.10 17340 1 0.01 -1 -1 29712 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54696 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 14.9 MiB 2.18 826 53.4 MiB 0.05 0.00 3.16363 -99.5422 -3.16363 3.16363 0.56 0.000110149 8.8189e-05 0.00812415 0.00663973 34 2069 23 6.87369e+06 237555 618332. 2139.56 0.95 0.0400962 0.0334704 25762 151098 -1 1762 21 1361 2369 191941 43466 0 0 191941 43466 2369 1903 0 0 8931 7851 0 0 13767 10908 0 0 2369 1984 0 0 85126 10115 0 0 79379 10705 0 0 2369 0 0 1008 1154 1349 8454 0 0 3.16976 3.16976 -118.563 -3.16976 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00767216 0.00672945 105 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 5.28 vpr 53.55 MiB -1 -1 0.10 17268 1 0.01 -1 -1 29744 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54832 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 15.1 MiB 2.25 1050 53.5 MiB 0.05 0.00 2.9238 -102.589 -2.9238 2.9238 0.56 0.000111572 8.9212e-05 0.00903509 0.00736609 34 2646 26 6.87369e+06 237555 618332. 2139.56 0.98 0.0427248 0.0356185 25762 151098 -1 2183 19 1412 2083 181255 40695 0 0 181255 40695 2083 1748 0 0 8416 7519 0 0 12945 10504 0 0 2083 1943 0 0 76069 9970 0 0 79659 9011 0 0 2083 0 0 671 672 596 5364 0 0 3.23291 3.23291 -126.394 -3.23291 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00791336 0.00698161 122 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 3.33 vpr 53.43 MiB -1 -1 0.11 17216 1 0.01 -1 -1 29748 -1 -1 31 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54712 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 14.8 MiB 0.67 1019 53.4 MiB 0.04 0.00 3.60082 -108.977 -3.60082 3.60082 0.56 0.000109878 8.8391e-05 0.00590565 0.00485265 28 2564 20 6.87369e+06 433189 531479. 1839.03 0.64 0.0253206 0.0214623 24610 126494 -1 2299 21 1407 2461 205338 44744 0 0 205338 44744 2461 1918 0 0 9070 7751 0 0 14020 10988 0 0 2461 2054 0 0 89030 10585 0 0 88296 11448 0 0 2461 0 0 1054 1215 1360 9328 0 0 3.7151 3.7151 -125.572 -3.7151 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.0077257 0.00680601 129 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 5.93 vpr 54.02 MiB -1 -1 0.11 17496 1 0.00 -1 -1 29648 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55312 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 15.3 MiB 2.59 1147 54.0 MiB 0.05 0.00 3.78918 -125.267 -3.78918 3.78918 0.56 0.000123944 9.9967e-05 0.00677001 0.00562618 34 3194 26 6.87369e+06 321398 618332. 2139.56 1.22 0.0444889 0.0375014 25762 151098 -1 2592 23 1962 2993 238746 55774 0 0 238746 55774 2993 2557 0 0 11981 10674 0 0 18461 14758 0 0 2993 2653 0 0 103257 12326 0 0 99061 12806 0 0 2993 0 0 1031 1161 1102 8349 0 0 4.13006 4.13006 -149.081 -4.13006 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.00954374 0.00844139 147 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 6.14 vpr 53.77 MiB -1 -1 0.09 17628 1 0.00 -1 -1 29808 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55056 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 15.3 MiB 3.01 1104 53.8 MiB 0.06 0.00 4.17957 -127.537 -4.17957 4.17957 0.56 0.00013222 0.000106455 0.00972166 0.00791211 34 2793 24 6.87369e+06 503058 618332. 2139.56 1.02 0.0478587 0.0401165 25762 151098 -1 2265 20 1510 2612 214214 47249 0 0 214214 47249 2612 1967 0 0 10316 9130 0 0 15552 12539 0 0 2612 2084 0 0 97904 9595 0 0 85218 11934 0 0 2612 0 0 1102 1314 1264 10052 0 0 4.16385 4.16385 -144.617 -4.16385 0 0 787024. 2723.27 0.20 0.07 0.08 -1 -1 0.20 0.0128693 0.0112533 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 5.24 vpr 53.90 MiB -1 -1 0.09 17328 1 0.01 -1 -1 29756 -1 -1 41 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55196 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 15.5 MiB 2.45 1157 53.9 MiB 0.07 0.00 3.58682 -120.014 -3.58682 3.58682 0.56 0.000129605 0.00010405 0.0100692 0.0081411 28 2875 21 6.87369e+06 572927 531479. 1839.03 0.72 0.0331537 0.0277491 24610 126494 -1 2511 21 1707 3048 234429 54490 0 0 234429 54490 3048 2272 0 0 11794 10456 0 0 18178 14699 0 0 3048 2458 0 0 101420 12299 0 0 96941 12306 0 0 3048 0 0 1341 1652 1657 12084 0 0 3.9647 3.9647 -145.687 -3.9647 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00901891 0.00789893 148 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 5.28 vpr 53.30 MiB -1 -1 0.10 17484 1 0.01 -1 -1 29716 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54580 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 14.8 MiB 1.90 755 53.3 MiB 0.03 0.00 3.28893 -99.4942 -3.28893 3.28893 0.56 0.000102249 8.2891e-05 0.0054816 0.00462544 30 1987 23 6.87369e+06 237555 556674. 1926.21 1.33 0.0397241 0.033333 25186 138497 -1 1659 20 930 1646 101311 24471 0 0 101311 24471 1646 1275 0 0 5677 4821 0 0 8008 6394 0 0 1646 1419 0 0 44035 4958 0 0 40299 5604 0 0 1646 0 0 716 658 711 5535 0 0 2.90526 2.90526 -107.422 -2.90526 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00682155 0.00602568 99 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 5.70 vpr 53.64 MiB -1 -1 0.09 17340 1 0.01 -1 -1 29716 -1 -1 22 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54932 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 15.1 MiB 2.69 1053 53.6 MiB 0.06 0.00 3.55872 -115.606 -3.55872 3.55872 0.55 0.000126178 0.000101073 0.0107688 0.00879556 34 2448 24 6.87369e+06 307425 618332. 2139.56 0.95 0.0471507 0.0393828 25762 151098 -1 2016 18 1496 2356 163163 37934 0 0 163163 37934 2356 1865 0 0 8757 7424 0 0 12947 10390 0 0 2356 1954 0 0 68334 8299 0 0 68413 8002 0 0 2356 0 0 860 829 1008 7321 0 0 3.8794 3.8794 -143.209 -3.8794 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00826452 0.00734526 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 5.19 vpr 53.67 MiB -1 -1 0.09 17568 1 0.01 -1 -1 29660 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54960 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 15.0 MiB 2.00 1166 53.7 MiB 0.06 0.00 4.00821 -122.15 -4.00821 4.00821 0.62 0.000121748 9.7194e-05 0.00922235 0.00749406 34 2799 22 6.87369e+06 321398 618332. 2139.56 1.02 0.0442045 0.0369493 25762 151098 -1 2312 22 1659 2777 203012 49057 0 0 203012 49057 2777 2290 0 0 10802 9634 0 0 16746 13347 0 0 2777 2414 0 0 85298 10766 0 0 84612 10606 0 0 2777 0 0 1118 1753 1721 11777 0 0 4.01606 4.01606 -141.314 -4.01606 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00885765 0.00782576 140 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.84 vpr 53.76 MiB -1 -1 0.10 17460 1 0.01 -1 -1 29728 -1 -1 28 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55052 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 15.2 MiB 1.84 921 53.8 MiB 0.05 0.00 4.30764 -122.589 -4.30764 4.30764 0.56 0.000127231 0.000103416 0.00899977 0.00741378 30 3004 45 6.87369e+06 391268 556674. 1926.21 0.96 0.036924 0.0310958 25186 138497 -1 2066 18 1318 2101 135961 33370 0 0 135961 33370 2101 1636 0 0 7348 6023 0 0 9640 7909 0 0 2101 1693 0 0 55851 7607 0 0 58920 8502 0 0 2101 0 0 783 890 846 6956 0 0 4.4063 4.4063 -144.606 -4.4063 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00789211 0.00702516 141 43 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 4.80 vpr 53.66 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29748 -1 -1 32 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54944 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 15.1 MiB 2.05 1014 53.7 MiB 0.07 0.00 3.69518 -116.283 -3.69518 3.69518 0.56 0.00015071 0.000120273 0.0118508 0.00962182 32 2605 33 6.87369e+06 447163 586450. 2029.24 0.62 0.0373827 0.0312509 25474 144626 -1 2178 22 1405 2352 202621 45399 0 0 202621 45399 2352 1765 0 0 9471 8394 0 0 15816 12674 0 0 2352 1900 0 0 91610 9623 0 0 81020 11043 0 0 2352 0 0 947 1109 1073 8215 0 0 3.5258 3.5258 -129.232 -3.5258 0 0 744469. 2576.02 0.19 0.04 0.07 -1 -1 0.19 0.00919608 0.00805642 135 78 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 5.04 vpr 53.66 MiB -1 -1 0.10 17572 1 0.01 -1 -1 29656 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 15.1 MiB 1.81 1051 53.7 MiB 0.07 0.00 3.73418 -118.836 -3.73418 3.73418 0.56 0.000122124 9.8006e-05 0.0112698 0.00918583 34 2849 21 6.87369e+06 293451 618332. 2139.56 1.13 0.0467545 0.0389971 25762 151098 -1 2335 20 1605 2813 202951 47419 0 0 202951 47419 2813 2321 0 0 10866 9564 0 0 16132 12799 0 0 2813 2414 0 0 85339 10499 0 0 84988 9822 0 0 2813 0 0 1208 1427 1273 9695 0 0 4.11106 4.11106 -143.842 -4.11106 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00860646 0.00760392 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 4.71 vpr 53.63 MiB -1 -1 0.11 17564 1 0.01 -1 -1 29800 -1 -1 29 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 15.1 MiB 2.04 976 53.6 MiB 0.06 0.00 3.31093 -103.218 -3.31093 3.31093 0.56 0.000125602 0.000100526 0.00987359 0.00806475 30 2204 22 6.87369e+06 405241 556674. 1926.21 0.59 0.0328094 0.0275169 25186 138497 -1 1704 19 1128 1847 100009 24030 0 0 100009 24030 1847 1295 0 0 6334 5283 0 0 8672 7022 0 0 1847 1385 0 0 41970 4359 0 0 39339 4686 0 0 1847 0 0 719 773 719 5946 0 0 2.98731 2.98731 -110.835 -2.98731 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.0083364 0.00738451 132 79 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 3.10 vpr 53.16 MiB -1 -1 0.09 16900 1 0.01 -1 -1 29608 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54436 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 14.6 MiB 0.51 880 53.2 MiB 0.05 0.00 3.18563 -100.905 -3.18563 3.18563 0.56 9.2425e-05 7.399e-05 0.008048 0.0065168 28 1927 21 6.87369e+06 237555 531479. 1839.03 0.59 0.0249641 0.0209688 24610 126494 -1 1708 18 896 1290 98414 23160 0 0 98414 23160 1290 1136 0 0 4924 4229 0 0 7150 5886 0 0 1290 1172 0 0 42596 5279 0 0 41164 5458 0 0 1290 0 0 394 432 410 3384 0 0 3.06931 3.06931 -110.017 -3.06931 0 0 648988. 2245.63 0.17 0.02 0.06 -1 -1 0.17 0.00620106 0.00552187 96 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 6.61 vpr 53.79 MiB -1 -1 0.10 17488 1 0.01 -1 -1 29684 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55084 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 15.2 MiB 3.53 1042 53.8 MiB 0.08 0.00 3.67482 -115.827 -3.67482 3.67482 0.56 0.000124632 9.966e-05 0.0115669 0.0093029 34 2497 22 6.87369e+06 475111 618332. 2139.56 0.97 0.0472576 0.0390424 25762 151098 -1 2119 24 1650 2742 243697 52481 0 0 243697 52481 2742 2263 0 0 10931 9651 0 0 16784 13462 0 0 2742 2374 0 0 112338 11248 0 0 98160 13483 0 0 2742 0 0 1092 1204 1096 9222 0 0 3.6718 3.6718 -133.61 -3.6718 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00957633 0.00836735 137 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 6.18 vpr 53.77 MiB -1 -1 0.10 17592 1 0.01 -1 -1 29720 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55064 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 15.4 MiB 3.10 1101 53.8 MiB 0.05 0.00 3.54952 -124.233 -3.54952 3.54952 0.56 0.000134128 0.000107578 0.00928302 0.00762069 34 2634 24 6.87369e+06 293451 618332. 2139.56 0.97 0.0484876 0.0405262 25762 151098 -1 2121 23 1960 3328 218362 52266 0 0 218362 52266 3328 2528 0 0 12497 10984 0 0 19084 15026 0 0 3328 2732 0 0 89413 10659 0 0 90712 10337 0 0 3328 0 0 1368 1673 1749 11680 0 0 4.0517 4.0517 -152.739 -4.0517 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.0100427 0.00879883 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 5.39 vpr 53.36 MiB -1 -1 0.10 17264 1 0.01 -1 -1 29732 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54640 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 14.9 MiB 2.49 963 53.4 MiB 0.05 0.00 3.47382 -106.52 -3.47382 3.47382 0.55 9.9561e-05 7.9229e-05 0.00810754 0.00659596 34 2254 23 6.87369e+06 223581 618332. 2139.56 0.90 0.0368306 0.0308583 25762 151098 -1 1981 23 1291 1747 148130 33647 0 0 148130 33647 1747 1555 0 0 6994 6114 0 0 10666 8655 0 0 1747 1594 0 0 64986 7790 0 0 61990 7939 0 0 1747 0 0 456 444 580 4205 0 0 3.2402 3.2402 -117.786 -3.2402 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00747611 0.00657798 106 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 3.07 vpr 53.18 MiB -1 -1 0.10 16896 1 0.01 -1 -1 29752 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54456 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 14.6 MiB 0.56 835 53.2 MiB 0.04 0.00 3.17463 -98.2488 -3.17463 3.17463 0.55 9.5377e-05 7.6469e-05 0.00560242 0.00458882 28 1929 20 6.87369e+06 279477 531479. 1839.03 0.54 0.0222253 0.018791 24610 126494 -1 1782 20 1232 2034 138862 32213 0 0 138862 32213 2034 1531 0 0 7305 6208 0 0 10900 8543 0 0 2034 1627 0 0 57382 7227 0 0 59207 7077 0 0 2034 0 0 802 814 848 6600 0 0 2.91301 2.91301 -109.556 -2.91301 0 0 648988. 2245.63 0.17 0.03 0.06 -1 -1 0.17 0.00652015 0.00576806 99 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 5.38 vpr 53.57 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29712 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54860 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 15.0 MiB 2.31 1215 53.6 MiB 0.06 0.00 3.74338 -123.963 -3.74338 3.74338 0.56 0.000122206 9.8206e-05 0.0109562 0.00895868 34 3008 22 6.87369e+06 321398 618332. 2139.56 0.97 0.0460063 0.038351 25762 151098 -1 2427 20 1874 2564 180039 43098 0 0 180039 43098 2564 2311 0 0 9709 8407 0 0 15020 11924 0 0 2564 2386 0 0 74798 9310 0 0 75384 8760 0 0 2564 0 0 690 747 639 6020 0 0 4.31866 4.31866 -152.211 -4.31866 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00859059 0.00757494 145 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 6.29 vpr 53.70 MiB -1 -1 0.11 17440 1 0.01 -1 -1 29704 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54992 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 15.1 MiB 2.04 1080 53.7 MiB 0.04 0.00 4.30764 -126.567 -4.30764 4.30764 0.56 0.000123143 9.8169e-05 0.0074301 0.00610097 34 3522 50 6.87369e+06 377294 618332. 2139.56 2.17 0.051896 0.0433648 25762 151098 -1 2493 21 1707 2540 198312 46989 0 0 198312 46989 2540 2039 0 0 9800 8641 0 0 14917 12040 0 0 2540 2152 0 0 85623 10536 0 0 82892 11581 0 0 2540 0 0 833 985 950 7668 0 0 4.75425 4.75425 -158.507 -4.75425 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00877273 0.00773674 142 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 3.58 vpr 53.80 MiB -1 -1 0.10 17220 1 0.01 -1 -1 29716 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55092 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 15.1 MiB 0.62 1265 53.8 MiB 0.09 0.00 4.25887 -122.974 -4.25887 4.25887 0.55 0.000135536 0.000108429 0.0125849 0.0102797 28 2872 25 6.87369e+06 503058 531479. 1839.03 0.87 0.0369448 0.0310719 24610 126494 -1 2602 24 1981 3525 301455 66924 0 0 301455 66924 3525 2548 0 0 13456 11599 0 0 20131 16063 0 0 3525 2787 0 0 132782 16721 0 0 128036 17206 0 0 3525 0 0 1544 2324 2586 15269 0 0 4.58685 4.58685 -151.75 -4.58685 0 0 648988. 2245.63 0.17 0.05 0.06 -1 -1 0.17 0.00987351 0.00865296 157 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 4.57 vpr 53.59 MiB -1 -1 0.10 17568 1 0.01 -1 -1 29800 -1 -1 34 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54876 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 15.0 MiB 1.86 800 53.6 MiB 0.06 0.00 2.81125 -85.0627 -2.81125 2.81125 0.56 0.000112944 9.0372e-05 0.00898323 0.00714306 32 2500 26 6.87369e+06 475111 586450. 2029.24 0.62 0.0303284 0.0253589 25474 144626 -1 1905 24 1626 2849 267473 61240 0 0 267473 61240 2849 2174 0 0 11476 10030 0 0 19944 15273 0 0 2849 2347 0 0 114892 15969 0 0 115463 15447 0 0 2849 0 0 1223 1613 1556 10769 0 0 2.91926 2.91926 -102.358 -2.91926 0 0 744469. 2576.02 0.19 0.05 0.07 -1 -1 0.19 0.00845483 0.00739167 119 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 3.28 vpr 53.20 MiB -1 -1 0.09 17296 1 0.01 -1 -1 29760 -1 -1 21 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54472 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 14.6 MiB 0.74 731 53.2 MiB 0.04 0.00 2.8908 -83.9796 -2.8908 2.8908 0.57 9.3589e-05 7.4781e-05 0.00691449 0.0056348 30 1559 20 6.87369e+06 293451 556674. 1926.21 0.53 0.023453 0.0197176 25186 138497 -1 1346 19 871 1362 75297 17695 0 0 75297 17695 1362 918 0 0 4517 3568 0 0 5980 4778 0 0 1362 987 0 0 33107 3377 0 0 28969 4067 0 0 1362 0 0 491 468 498 4113 0 0 2.65756 2.65756 -95.531 -2.65756 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00612286 0.00539715 96 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 6.40 vpr 54.21 MiB -1 -1 0.11 17608 1 0.01 -1 -1 29784 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55516 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 15.4 MiB 2.87 1362 54.2 MiB 0.06 0.00 3.46315 -116.785 -3.46315 3.46315 0.56 0.000163042 0.000128718 0.00929232 0.00765208 34 3779 26 6.87369e+06 335372 618332. 2139.56 1.37 0.0523579 0.0438891 25762 151098 -1 2948 21 2090 3525 279723 63208 0 0 279723 63208 3525 2780 0 0 13569 12289 0 0 21256 17145 0 0 3525 2914 0 0 122550 13259 0 0 115298 14821 0 0 3525 0 0 1435 1714 1681 11919 0 0 4.03326 4.03326 -141.405 -4.03326 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.0104115 0.0091273 165 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 6.56 vpr 53.81 MiB -1 -1 0.10 17828 1 0.00 -1 -1 29704 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55104 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 15.2 MiB 3.29 1070 53.8 MiB 0.06 0.00 4.58967 -141.462 -4.58967 4.58967 0.56 0.000123777 9.9073e-05 0.0111205 0.00907777 36 2571 21 6.87369e+06 307425 648988. 2245.63 1.14 0.0470688 0.0393048 26050 158493 -1 2156 20 1421 2263 179039 39346 0 0 179039 39346 2263 2003 0 0 8647 7407 0 0 12713 10415 0 0 2263 2067 0 0 83913 7735 0 0 69240 9719 0 0 2263 0 0 842 1045 842 7364 0 0 4.23075 4.23075 -149.044 -4.23075 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00890028 0.00789009 139 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 6.43 vpr 53.54 MiB -1 -1 0.09 17476 1 0.01 -1 -1 29732 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54828 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 15.0 MiB 3.42 1042 53.5 MiB 0.05 0.00 3.45235 -119.778 -3.45235 3.45235 0.56 0.000112809 8.9848e-05 0.00921135 0.00745669 34 2467 23 6.87369e+06 251529 618332. 2139.56 0.93 0.0422692 0.0353046 25762 151098 -1 2096 18 1365 2000 144119 33692 0 0 144119 33692 2000 1724 0 0 7664 6525 0 0 11028 8909 0 0 2000 1822 0 0 58036 7952 0 0 63391 6760 0 0 2000 0 0 635 544 672 5245 0 0 3.64636 3.64636 -141.991 -3.64636 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00748332 0.00664492 118 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 3.68 vpr 53.53 MiB -1 -1 0.10 17480 1 0.02 -1 -1 29700 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 15.1 MiB 0.90 1112 53.5 MiB 0.07 0.00 4.23995 -117.781 -4.23995 4.23995 0.56 0.000118566 9.4815e-05 0.0109329 0.00887366 32 2820 27 6.87369e+06 461137 586450. 2029.24 0.63 0.0332611 0.0278864 25474 144626 -1 2198 21 1160 1819 161065 34689 0 0 161065 34689 1819 1448 0 0 7177 6076 0 0 11418 8882 0 0 1819 1570 0 0 71799 7748 0 0 67033 8965 0 0 1819 0 0 659 734 700 5690 0 0 3.7233 3.7233 -127.988 -3.7233 0 0 744469. 2576.02 0.19 0.03 0.07 -1 -1 0.19 0.00827792 0.00728655 129 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 4.20 vpr 53.74 MiB -1 -1 0.11 17644 1 0.01 -1 -1 29716 -1 -1 34 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55032 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 15.3 MiB 1.52 971 53.7 MiB 0.06 0.00 3.65995 -104.886 -3.65995 3.65995 0.56 0.000128392 0.000103601 0.00830313 0.00682343 28 2415 21 6.87369e+06 475111 531479. 1839.03 0.65 0.031542 0.026639 24610 126494 -1 2137 20 1510 2502 164017 41732 0 0 164017 41732 2502 1911 0 0 9404 7994 0 0 13658 11066 0 0 2502 2022 0 0 66350 9775 0 0 69601 8964 0 0 2502 0 0 992 1456 1628 10124 0 0 3.95806 3.95806 -130.424 -3.95806 0 0 648988. 2245.63 0.17 0.03 0.06 -1 -1 0.17 0.0090414 0.00797723 149 46 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 4.52 vpr 53.54 MiB -1 -1 0.10 17344 1 0.01 -1 -1 29672 -1 -1 31 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54828 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 15.1 MiB 1.61 975 53.5 MiB 0.07 0.00 3.0099 -91.6534 -3.0099 3.0099 0.56 0.00012487 0.000101369 0.0102327 0.0083921 28 2641 21 6.87369e+06 433189 531479. 1839.03 0.83 0.0313612 0.026336 24610 126494 -1 2376 21 1480 2673 221294 49018 0 0 221294 49018 2673 1950 0 0 9873 8464 0 0 14637 11517 0 0 2673 2118 0 0 98311 12076 0 0 93127 12893 0 0 2673 0 0 1193 1733 1733 11138 0 0 3.10561 3.10561 -111.14 -3.10561 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00810979 0.00711592 124 46 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 5.96 vpr 53.64 MiB -1 -1 0.09 17316 1 0.01 -1 -1 29636 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54932 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 15.0 MiB 2.58 1238 53.6 MiB 0.06 0.00 3.82834 -125.973 -3.82834 3.82834 0.56 0.000122476 9.8432e-05 0.0106407 0.00867579 34 3433 24 6.87369e+06 307425 618332. 2139.56 1.24 0.0466934 0.039048 25762 151098 -1 2771 26 2395 3772 361082 77419 0 0 361082 77419 3772 3205 0 0 14636 13259 0 0 25080 19361 0 0 3772 3316 0 0 156736 18849 0 0 157086 19429 0 0 3772 0 0 1377 1583 1542 11100 0 0 4.28295 4.28295 -150.415 -4.28295 0 0 787024. 2723.27 0.20 0.06 0.08 -1 -1 0.20 0.0102443 0.00898819 148 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 5.24 vpr 53.83 MiB -1 -1 0.10 17340 1 0.02 -1 -1 29700 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55120 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 15.4 MiB 2.46 1052 53.8 MiB 0.05 0.00 3.24063 -111.082 -3.24063 3.24063 0.57 0.00013018 0.00010498 0.00725873 0.00596696 28 2605 25 6.87369e+06 503058 531479. 1839.03 0.72 0.0317481 0.0267497 24610 126494 -1 2203 21 1554 2632 184428 43292 0 0 184428 43292 2632 1968 0 0 9773 8358 0 0 14330 11615 0 0 2632 2174 0 0 76344 9998 0 0 78717 9179 0 0 2632 0 0 1078 1436 1456 9592 0 0 3.11326 3.11326 -124.534 -3.11326 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00940293 0.00829146 147 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 4.09 vpr 53.32 MiB -1 -1 0.13 17676 1 0.01 -1 -1 29820 -1 -1 19 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54600 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 14.6 MiB 1.47 681 53.3 MiB 0.04 0.00 3.00718 -92.4009 -3.00718 3.00718 0.56 9.7052e-05 7.7586e-05 0.00830807 0.00672953 32 1649 21 6.87369e+06 265503 586450. 2029.24 0.55 0.0256968 0.0214946 25474 144626 -1 1396 18 1154 1645 105816 25154 0 0 105816 25154 1645 1376 0 0 5837 4736 0 0 8935 6635 0 0 1645 1492 0 0 41545 6091 0 0 46209 4824 0 0 1645 0 0 491 603 560 4395 0 0 3.07126 3.07126 -108.421 -3.07126 0 0 744469. 2576.02 0.19 0.03 0.07 -1 -1 0.19 0.0064397 0.00572007 101 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 4.28 vpr 53.53 MiB -1 -1 0.11 17480 1 0.01 -1 -1 29708 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 14.9 MiB 1.28 936 53.5 MiB 0.05 0.00 3.5666 -104.213 -3.5666 3.5666 0.56 0.000106714 8.4551e-05 0.00869635 0.00703356 34 2272 24 6.87369e+06 237555 618332. 2139.56 1.00 0.0396602 0.0329309 25762 151098 -1 2013 23 1271 1787 167017 36120 0 0 167017 36120 1787 1462 0 0 6811 5944 0 0 11211 8846 0 0 1787 1534 0 0 73537 8961 0 0 71884 9373 0 0 1787 0 0 516 548 614 4497 0 0 3.26591 3.26591 -123.624 -3.26591 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00805174 0.00703954 112 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 4.36 vpr 53.57 MiB -1 -1 0.10 17660 1 0.01 -1 -1 29736 -1 -1 39 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54860 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 15.1 MiB 1.32 991 53.6 MiB 0.08 0.00 3.70112 -107.819 -3.70112 3.70112 0.56 0.000118091 9.52e-05 0.0103422 0.00829938 26 2400 22 6.87369e+06 544980 503264. 1741.40 1.00 0.0319764 0.0267168 24322 120374 -1 2374 25 1748 3186 282459 62113 0 0 282459 62113 3186 2190 0 0 12128 10450 0 0 19640 14937 0 0 3186 2525 0 0 127564 15649 0 0 116755 16362 0 0 3186 0 0 1438 2062 2388 14370 0 0 4.2536 4.2536 -136.815 -4.2536 0 0 618332. 2139.56 0.16 0.05 0.06 -1 -1 0.16 0.00909017 0.00788694 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 5.61 vpr 53.40 MiB -1 -1 0.10 17476 1 0.01 -1 -1 29856 -1 -1 19 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54680 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 14.9 MiB 2.70 782 53.4 MiB 0.05 0.00 3.70248 -99.3179 -3.70248 3.70248 0.55 9.4598e-05 7.5614e-05 0.00809138 0.0065813 34 2018 22 6.87369e+06 265503 618332. 2139.56 0.88 0.035667 0.029835 25762 151098 -1 1694 20 1142 1501 109937 26257 0 0 109937 26257 1501 1311 0 0 5872 5092 0 0 8463 6971 0 0 1501 1332 0 0 48662 5372 0 0 43938 6179 0 0 1501 0 0 359 372 362 3364 0 0 3.57416 3.57416 -112.2 -3.57416 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00679099 0.00599993 107 25 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 5.45 vpr 53.31 MiB -1 -1 0.10 17176 1 0.01 -1 -1 29716 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54592 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 14.9 MiB 2.49 831 53.3 MiB 0.03 0.00 3.31093 -106.353 -3.31093 3.31093 0.56 0.00010092 8.0715e-05 0.00524714 0.00433282 34 2065 20 6.87369e+06 209608 618332. 2139.56 0.94 0.0341941 0.0287676 25762 151098 -1 1763 21 1367 2299 163669 38843 0 0 163669 38843 2299 1776 0 0 8709 7754 0 0 14016 11016 0 0 2299 1889 0 0 68287 7977 0 0 68059 8431 0 0 2299 0 0 932 963 1044 7516 0 0 3.07926 3.07926 -118.486 -3.07926 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00714412 0.00631534 101 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 4.91 vpr 54.04 MiB -1 -1 0.10 17580 1 0.01 -1 -1 29752 -1 -1 37 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55336 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 15.3 MiB 2.26 878 54.0 MiB 0.05 0.00 2.98998 -98.475 -2.98998 2.98998 0.55 0.000127614 0.000102016 0.0068994 0.00565061 30 2122 25 6.87369e+06 517032 556674. 1926.21 0.61 0.0359818 0.0302177 25186 138497 -1 1689 21 1261 2093 99725 25261 0 0 99725 25261 2093 1346 0 0 6894 5420 0 0 9184 7247 0 0 2093 1536 0 0 39258 4735 0 0 40203 4977 0 0 2093 0 0 832 957 1192 7832 0 0 2.82116 2.82116 -111.436 -2.82116 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00885951 0.00780726 141 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 5.44 vpr 53.22 MiB -1 -1 0.09 17460 1 0.01 -1 -1 29700 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54496 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 14.6 MiB 2.51 795 53.2 MiB 0.04 0.00 2.9066 -92.1144 -2.9066 2.9066 0.56 9.7901e-05 7.8562e-05 0.00615126 0.00504763 34 2177 23 6.87369e+06 237555 618332. 2139.56 0.88 0.0342075 0.0287839 25762 151098 -1 1800 21 1298 1862 140851 33717 0 0 140851 33717 1862 1663 0 0 7211 6359 0 0 10841 8766 0 0 1862 1739 0 0 59065 8116 0 0 60010 7074 0 0 1862 0 0 564 637 423 4614 0 0 3.13061 3.13061 -113.318 -3.13061 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00703918 0.00621912 105 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 5.08 vpr 53.69 MiB -1 -1 0.11 17532 1 0.01 -1 -1 29732 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54980 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 15.2 MiB 2.37 1030 53.7 MiB 0.07 0.00 2.9036 -95.9238 -2.9036 2.9036 0.56 0.000120776 9.6662e-05 0.0106741 0.00871839 28 2557 23 6.87369e+06 433189 531479. 1839.03 0.66 0.0330079 0.0276674 24610 126494 -1 2203 19 1145 1859 151497 33599 0 0 151497 33599 1859 1393 0 0 7163 6115 0 0 10599 8619 0 0 1859 1498 0 0 65738 7895 0 0 64279 8079 0 0 1859 0 0 714 1036 1110 7579 0 0 2.99431 2.99431 -113.522 -2.99431 0 0 648988. 2245.63 0.17 0.03 0.06 -1 -1 0.17 0.00804874 0.00707544 129 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 5.46 vpr 53.79 MiB -1 -1 0.12 17852 1 0.00 -1 -1 29804 -1 -1 32 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55080 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 15.4 MiB 2.71 955 53.8 MiB 0.07 0.00 2.9696 -102.734 -2.9696 2.9696 0.56 0.000129893 0.000103718 0.011938 0.00970383 28 2467 22 6.87369e+06 447163 531479. 1839.03 0.66 0.0356105 0.0298196 24610 126494 -1 2093 22 1726 2507 185498 43430 0 0 185498 43430 2507 1984 0 0 9470 8050 0 0 14617 11586 0 0 2507 2134 0 0 78374 10066 0 0 78023 9610 0 0 2507 0 0 781 1105 1147 7832 0 0 3.31091 3.31091 -130.32 -3.31091 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00975448 0.00856438 137 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 4.41 vpr 53.33 MiB -1 -1 0.10 17560 1 0.01 -1 -1 29816 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54612 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 14.9 MiB 1.84 819 53.3 MiB 0.05 0.00 2.8516 -92.7534 -2.8516 2.8516 0.56 0.00010723 8.4361e-05 0.00932451 0.00748668 30 1930 23 6.87369e+06 223581 556674. 1926.21 0.55 0.0287672 0.024005 25186 138497 -1 1623 20 830 1320 82875 19927 0 0 82875 19927 1320 1013 0 0 4657 3851 0 0 5949 4974 0 0 1320 1042 0 0 34244 4806 0 0 35385 4241 0 0 1320 0 0 490 413 376 3715 0 0 2.68771 2.68771 -105.859 -2.68771 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00715879 0.00631866 99 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 4.27 vpr 53.44 MiB -1 -1 0.10 17460 1 0.01 -1 -1 29832 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54720 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 14.9 MiB 1.26 981 53.4 MiB 0.04 0.00 3.23579 -105.228 -3.23579 3.23579 0.57 0.000103446 8.277e-05 0.00812423 0.00660345 34 2290 20 6.87369e+06 251529 618332. 2139.56 0.93 0.0373598 0.031256 25762 151098 -1 1986 20 1351 1999 150751 35556 0 0 150751 35556 1999 1831 0 0 7838 6855 0 0 11601 9505 0 0 1999 1885 0 0 64085 7809 0 0 63229 7671 0 0 1999 0 0 648 597 515 5055 0 0 3.19461 3.19461 -123.996 -3.19461 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00746944 0.0066172 114 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 5.15 vpr 53.61 MiB -1 -1 0.10 17552 1 0.01 -1 -1 29732 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54892 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 15.1 MiB 2.09 1165 53.6 MiB 0.06 0.00 3.74448 -111.968 -3.74448 3.74448 0.56 0.000119645 9.6751e-05 0.010703 0.00879517 34 2664 42 6.87369e+06 307425 618332. 2139.56 0.99 0.04807 0.0402886 25762 151098 -1 2259 22 1602 2198 163056 38035 0 0 163056 38035 2198 1872 0 0 8291 7281 0 0 12981 10261 0 0 2198 1957 0 0 68666 8653 0 0 68722 8011 0 0 2198 0 0 596 562 721 5275 0 0 3.89976 3.89976 -133.355 -3.89976 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00854724 0.0075217 132 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 4.79 vpr 53.55 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29692 -1 -1 29 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54832 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 15.1 MiB 2.14 1013 53.5 MiB 0.06 0.00 3.20763 -94.5511 -3.20763 3.20763 0.56 0.000125103 0.000103189 0.00928138 0.00762298 28 2148 20 6.87369e+06 405241 531479. 1839.03 0.57 0.0298985 0.0250746 24610 126494 -1 2036 21 1218 2071 151512 35603 0 0 151512 35603 2071 1516 0 0 7919 6901 0 0 12312 9881 0 0 2071 1637 0 0 64110 7769 0 0 63029 7899 0 0 2071 0 0 853 1056 1252 8410 0 0 3.19661 3.19661 -109.699 -3.19661 0 0 648988. 2245.63 0.17 0.03 0.06 -1 -1 0.17 0.00826039 0.00726296 123 49 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 5.63 vpr 53.78 MiB -1 -1 0.10 17628 1 0.01 -1 -1 29760 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55072 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 15.3 MiB 2.35 1104 53.8 MiB 0.08 0.00 4.14151 -135.114 -4.14151 4.14151 0.58 0.000133632 0.000107575 0.0129285 0.0105604 34 2928 26 6.87369e+06 307425 618332. 2139.56 1.15 0.053365 0.0445926 25762 151098 -1 2398 22 1852 2823 227941 52725 0 0 227941 52725 2823 2366 0 0 10999 9718 0 0 16450 13391 0 0 2823 2438 0 0 96123 12952 0 0 98723 11860 0 0 2823 0 0 971 1260 1431 9185 0 0 4.18526 4.18526 -155.884 -4.18526 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00980405 0.00861297 151 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 3.35 vpr 53.01 MiB -1 -1 0.09 16952 1 0.01 -1 -1 29568 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54284 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 14.5 MiB 0.52 775 53.0 MiB 0.02 0.00 2.9769 -91.4677 -2.9769 2.9769 0.56 9.0287e-05 7.2599e-05 0.00379727 0.00316844 34 1732 23 6.87369e+06 237555 618332. 2139.56 0.83 0.0302894 0.0257111 25762 151098 -1 1578 21 894 1392 106405 24485 0 0 106405 24485 1392 1109 0 0 5274 4580 0 0 8081 6336 0 0 1392 1136 0 0 45497 5381 0 0 44769 5943 0 0 1392 0 0 498 429 401 3856 0 0 3.06361 3.06361 -104.923 -3.06361 0 0 787024. 2723.27 0.20 0.02 0.07 -1 -1 0.20 0.00628437 0.00556115 92 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 4.19 vpr 53.78 MiB -1 -1 0.09 17604 1 0.01 -1 -1 29876 -1 -1 35 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55072 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 15.2 MiB 1.47 1043 53.8 MiB 0.07 0.00 3.50715 -118.565 -3.50715 3.50715 0.56 0.000135895 0.000108067 0.0124565 0.0100512 30 2577 23 6.87369e+06 489084 556674. 1926.21 0.67 0.0370789 0.0307946 25186 138497 -1 2070 22 1392 2083 128229 30275 0 0 128229 30275 2083 1630 0 0 7217 5946 0 0 9411 7792 0 0 2083 1766 0 0 51655 7033 0 0 55780 6108 0 0 2083 0 0 691 871 796 6313 0 0 3.604 3.604 -136.718 -3.604 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00969089 0.00850213 145 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 6.45 vpr 53.53 MiB -1 -1 0.15 17628 1 0.02 -1 -1 29748 -1 -1 16 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54816 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 15.1 MiB 3.44 824 53.5 MiB 0.06 0.00 2.9898 -108.824 -2.9898 2.9898 0.56 0.000143906 0.00011464 0.0136398 0.0110693 34 2042 22 6.87369e+06 223581 618332. 2139.56 0.89 0.0483445 0.0401325 25762 151098 -1 1812 17 1318 1882 136339 32718 0 0 136339 32718 1882 1561 0 0 7333 6335 0 0 10689 8704 0 0 1882 1645 0 0 59178 6937 0 0 55375 7536 0 0 1882 0 0 564 668 667 5027 0 0 3.08861 3.08861 -127.948 -3.08861 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00773089 0.00685624 114 93 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 5.12 vpr 53.66 MiB -1 -1 0.14 17584 1 0.00 -1 -1 29628 -1 -1 32 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54948 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 15.1 MiB 2.24 999 53.7 MiB 0.07 0.00 3.24063 -103.886 -3.24063 3.24063 0.56 0.000122479 9.7155e-05 0.0105559 0.00848295 28 2765 40 6.87369e+06 447163 531479. 1839.03 0.85 0.0372821 0.0310402 24610 126494 -1 2150 22 1323 2098 173677 40872 0 0 173677 40872 2098 1559 0 0 8030 6790 0 0 11687 9585 0 0 2098 1707 0 0 72922 10801 0 0 76842 10430 0 0 2098 0 0 775 1158 1381 8390 0 0 3.23761 3.23761 -119.242 -3.23761 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.00900639 0.00787339 134 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 6.58 vpr 53.80 MiB -1 -1 0.15 17596 1 0.01 -1 -1 29768 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55096 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 15.3 MiB 3.12 1293 53.8 MiB 0.08 0.00 4.81535 -150.135 -4.81535 4.81535 0.56 0.000136673 0.000109438 0.0120238 0.00983384 34 3386 31 6.87369e+06 349346 618332. 2139.56 1.29 0.0542647 0.0453762 25762 151098 -1 2827 23 2184 3190 230789 54395 0 0 230789 54395 3190 2690 0 0 12317 10747 0 0 18841 14987 0 0 3190 2751 0 0 97683 11368 0 0 95568 11852 0 0 3190 0 0 1006 1404 1473 9713 0 0 5.1828 5.1828 -169.052 -5.1828 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.0105138 0.00929641 171 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 3.66 vpr 53.16 MiB -1 -1 0.10 17216 1 0.02 -1 -1 29652 -1 -1 15 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54440 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 14.7 MiB 1.04 604 53.2 MiB 0.04 0.00 2.36426 -73.9802 -2.36426 2.36426 0.56 8.5304e-05 6.5184e-05 0.00687375 0.00539294 30 1673 21 6.87369e+06 209608 556674. 1926.21 0.63 0.021973 0.0181253 25186 138497 -1 1250 16 685 914 52790 13704 0 0 52790 13704 914 784 0 0 3256 2799 0 0 4244 3562 0 0 914 816 0 0 19502 3034 0 0 23960 2709 0 0 914 0 0 229 194 242 2037 0 0 2.31647 2.31647 -90.689 -2.31647 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00503171 0.00447541 81 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 3.43 vpr 53.39 MiB -1 -1 0.09 17468 1 0.01 -1 -1 29696 -1 -1 19 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54668 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 14.9 MiB 0.87 800 53.4 MiB 0.04 0.00 3.14163 -97.682 -3.14163 3.14163 0.57 0.000101115 8.1574e-05 0.00700637 0.00579305 28 1828 22 6.87369e+06 265503 531479. 1839.03 0.54 0.0256193 0.0215609 24610 126494 -1 1682 20 1107 1690 121617 28356 0 0 121617 28356 1690 1472 0 0 6093 5081 0 0 8860 7055 0 0 1690 1532 0 0 50957 6817 0 0 52327 6399 0 0 1690 0 0 583 798 739 5366 0 0 3.23591 3.23591 -119.379 -3.23591 0 0 648988. 2245.63 0.17 0.03 0.06 -1 -1 0.17 0.00707542 0.00624196 105 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 3.45 vpr 53.46 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29820 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 14.9 MiB 0.86 763 53.5 MiB 0.06 0.00 2.9879 -98.7798 -2.9879 2.9879 0.56 0.000106933 8.3923e-05 0.0101008 0.00815667 30 2005 20 6.87369e+06 321398 556674. 1926.21 0.57 0.0289946 0.0242787 25186 138497 -1 1636 19 1097 1928 120294 28830 0 0 120294 28830 1928 1368 0 0 6816 5861 0 0 9119 7494 0 0 1928 1470 0 0 53434 6087 0 0 47069 6550 0 0 1928 0 0 831 982 868 6891 0 0 2.83601 2.83601 -112.747 -2.83601 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00699937 0.00618125 109 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 3.27 vpr 52.93 MiB -1 -1 0.10 17172 1 0.01 -1 -1 29848 -1 -1 29 25 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54200 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 14.5 MiB 0.61 503 52.9 MiB 0.04 0.00 2.9029 -67.8932 -2.9029 2.9029 0.56 8.4567e-05 6.3344e-05 0.00586136 0.00469651 28 1563 26 6.87369e+06 405241 531479. 1839.03 0.67 0.0210622 0.0175348 24610 126494 -1 1331 18 872 1441 108449 28078 0 0 108449 28078 1441 1093 0 0 5328 4487 0 0 7831 6280 0 0 1441 1180 0 0 44127 8003 0 0 48281 7035 0 0 1441 0 0 569 713 761 5470 0 0 3.14686 3.14686 -83.2123 -3.14686 0 0 648988. 2245.63 0.17 0.02 0.06 -1 -1 0.17 0.00507248 0.00447637 87 19 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 5.26 vpr 53.78 MiB -1 -1 0.11 17460 1 0.01 -1 -1 29736 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55068 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 15.1 MiB 2.10 1122 53.8 MiB 0.07 0.00 3.51745 -111.635 -3.51745 3.51745 0.56 0.000126714 0.000101242 0.011807 0.00954661 34 3131 24 6.87369e+06 279477 618332. 2139.56 1.05 0.0530374 0.0441712 25762 151098 -1 2635 23 1577 2797 224330 50755 0 0 224330 50755 2797 2068 0 0 10812 9638 0 0 15904 12862 0 0 2797 2281 0 0 94551 12136 0 0 97469 11770 0 0 2797 0 0 1220 1328 1339 9512 0 0 3.94906 3.94906 -137.199 -3.94906 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00979487 0.00860267 133 69 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 5.45 vpr 53.85 MiB -1 -1 0.11 17724 1 0.01 -1 -1 29840 -1 -1 31 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55140 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 15.4 MiB 2.36 831 53.8 MiB 0.06 0.00 3.22963 -104.732 -3.22963 3.22963 0.59 0.000134825 0.000108169 0.00917162 0.00748118 34 2325 25 6.87369e+06 433189 618332. 2139.56 0.96 0.0484269 0.0404483 25762 151098 -1 1808 23 1723 2673 167907 42944 0 0 167907 42944 2673 1981 0 0 10057 8816 0 0 15179 12017 0 0 2673 2151 0 0 71443 8541 0 0 65882 9438 0 0 2673 0 0 950 1162 1418 8665 0 0 3.16561 3.16561 -124.387 -3.16561 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.0101922 0.00891241 143 86 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 5.56 vpr 53.79 MiB -1 -1 0.10 17460 1 0.00 -1 -1 29708 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55080 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 15.0 MiB 2.08 1074 53.8 MiB 0.06 0.00 4.13577 -121.807 -4.13577 4.13577 0.57 0.000123838 9.9337e-05 0.00878875 0.00719034 34 3403 41 6.89349e+06 338252 618332. 2139.56 1.37 0.0529117 0.0444641 25762 151098 -1 2245 20 1803 2651 179275 43921 0 0 179275 43921 2651 2189 0 0 9758 8042 0 0 14873 11726 0 0 2651 2331 0 0 73684 10286 0 0 75658 9347 0 0 2651 0 0 848 989 872 7504 0 0 4.58769 4.58769 -146.271 -4.58769 0 0 787024. 2723.27 0.23 0.04 0.07 -1 -1 0.23 0.00876046 0.0077913 149 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 4.64 vpr 53.59 MiB -1 -1 0.09 17344 1 0.01 -1 -1 29824 -1 -1 26 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54880 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 15.0 MiB 1.29 1254 53.6 MiB 0.06 0.00 4.02498 -126.309 -4.02498 4.02498 0.57 0.000122714 9.8398e-05 0.00853478 0.00706961 34 3312 25 6.89349e+06 366440 618332. 2139.56 1.16 0.045825 0.0385004 25762 151098 -1 2577 23 2177 3158 261589 56057 0 0 261589 56057 3158 2543 0 0 11616 9467 0 0 18361 14119 0 0 3158 2803 0 0 117668 13206 0 0 107628 13919 0 0 3158 0 0 981 1018 809 7928 0 0 4.20433 4.20433 -145.367 -4.20433 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.0097728 0.00859311 156 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 4.86 vpr 53.37 MiB -1 -1 0.10 17568 1 0.01 -1 -1 29732 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54652 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 14.8 MiB 1.50 1006 53.4 MiB 0.04 0.00 3.40339 -101.578 -3.40339 3.40339 0.56 0.000108037 8.6443e-05 0.00692966 0.00565606 36 2302 27 6.89349e+06 295971 648988. 2245.63 1.28 0.0402041 0.0338481 26050 158493 -1 2028 19 1088 1581 120553 26865 0 0 120553 26865 1581 1357 0 0 5849 4838 0 0 8516 6888 0 0 1581 1398 0 0 53097 5938 0 0 49929 6446 0 0 1581 0 0 493 418 552 4172 0 0 3.48415 3.48415 -114.847 -3.48415 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00721282 0.00640168 125 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 4.44 vpr 53.31 MiB -1 -1 0.10 17400 1 0.00 -1 -1 29736 -1 -1 24 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54592 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 14.8 MiB 1.34 938 53.3 MiB 0.04 0.00 3.88408 -104.409 -3.88408 3.88408 0.63 0.000116088 9.4508e-05 0.00726004 0.00601483 34 2456 32 6.89349e+06 338252 618332. 2139.56 0.99 0.0420018 0.0352894 25762 151098 -1 2081 20 1405 2280 156307 37361 0 0 156307 37361 2280 1851 0 0 8459 6970 0 0 13121 10353 0 0 2280 1914 0 0 63369 8531 0 0 66798 7742 0 0 2280 0 0 875 971 1099 7543 0 0 3.7123 3.7123 -121.02 -3.7123 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00769965 0.00680742 134 25 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 4.91 vpr 53.44 MiB -1 -1 0.10 17464 1 0.01 -1 -1 29776 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54724 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 15.0 MiB 1.12 1199 53.4 MiB 0.07 0.00 4.11871 -123.223 -4.11871 4.11871 0.57 0.000119843 9.5852e-05 0.0114857 0.0093527 36 2882 21 6.89349e+06 324158 648988. 2245.63 1.65 0.0465956 0.0389863 26050 158493 -1 2613 21 1956 3587 314317 71447 0 0 314317 71447 3587 2687 0 0 12609 10435 0 0 20107 15123 0 0 3587 2860 0 0 137838 19701 0 0 136589 20641 0 0 3587 0 0 1631 1771 2460 14105 0 0 4.61689 4.61689 -154.977 -4.61689 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.00828843 0.00730468 142 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 5.21 vpr 53.61 MiB -1 -1 0.15 17396 1 0.01 -1 -1 29652 -1 -1 33 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54896 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 15.0 MiB 1.65 1343 53.6 MiB 0.09 0.00 3.3598 -109.508 -3.3598 3.3598 0.56 0.000127363 0.000102466 0.0126699 0.0103063 36 2984 22 6.89349e+06 465097 648988. 2245.63 1.36 0.0501863 0.0417996 26050 158493 -1 2658 21 1679 2771 202037 44410 0 0 202037 44410 2771 2076 0 0 9916 8017 0 0 15158 11856 0 0 2771 2270 0 0 87160 10044 0 0 84261 10147 0 0 2771 0 0 1092 1274 1559 10158 0 0 3.35475 3.35475 -129.44 -3.35475 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00917866 0.00804611 162 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 4.01 vpr 53.11 MiB -1 -1 0.09 17008 1 0.01 -1 -1 29896 -1 -1 21 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54388 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 14.5 MiB 1.02 705 53.1 MiB 0.05 0.00 3.25123 -89.7042 -3.25123 3.25123 0.56 9.418e-05 7.501e-05 0.00850393 0.00691073 34 1783 22 6.89349e+06 295971 618332. 2139.56 0.92 0.0354072 0.029479 25762 151098 -1 1467 19 1038 1534 114034 26800 0 0 114034 26800 1534 1246 0 0 5838 4711 0 0 8937 6984 0 0 1534 1287 0 0 49188 5964 0 0 47003 6608 0 0 1534 0 0 496 626 539 4523 0 0 3.14496 3.14496 -102.712 -3.14496 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00613452 0.00543145 107 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.48 vpr 53.00 MiB -1 -1 0.10 17052 1 0.00 -1 -1 29612 -1 -1 32 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54272 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 14.6 MiB 0.58 845 53.0 MiB 0.06 0.00 2.5388 -79.243 -2.5388 2.5388 0.57 0.000104086 8.3669e-05 0.00938249 0.00753214 30 2253 24 6.89349e+06 451003 556674. 1926.21 1.85 0.0450926 0.0375902 25186 138497 -1 1842 21 1022 1848 123581 28581 0 0 123581 28581 1848 1253 0 0 6550 5185 0 0 9537 7639 0 0 1848 1365 0 0 50396 7046 0 0 53402 6093 0 0 1848 0 0 826 1178 1235 8605 0 0 2.63751 2.63751 -96.1667 -2.63751 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00696094 0.00612081 119 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 4.73 vpr 53.33 MiB -1 -1 0.10 17568 1 0.02 -1 -1 29744 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54608 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 14.7 MiB 1.32 1153 53.3 MiB 0.04 0.00 2.91975 -100.982 -2.91975 2.91975 0.57 0.000110127 8.8449e-05 0.00689526 0.00566688 34 2837 22 6.89349e+06 281877 618332. 2139.56 1.35 0.0401576 0.0338108 25762 151098 -1 2327 19 1541 2037 178946 37635 0 0 178946 37635 2037 1808 0 0 7480 6036 0 0 11228 8845 0 0 2037 1950 0 0 77749 9686 0 0 78415 9310 0 0 2037 0 0 496 581 517 4623 0 0 3.09376 3.09376 -122.503 -3.09376 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00755684 0.0067121 130 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.36 vpr 53.15 MiB -1 -1 0.13 17336 1 0.01 -1 -1 29732 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54424 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 14.7 MiB 1.62 1013 53.1 MiB 0.06 0.00 3.15648 -108.097 -3.15648 3.15648 0.57 0.000106462 8.5436e-05 0.0105498 0.00868427 30 2202 21 6.89349e+06 253689 556674. 1926.21 1.66 0.0479886 0.0400472 25186 138497 -1 1890 17 892 1178 80318 17844 0 0 80318 17844 1178 979 0 0 4196 3214 0 0 5263 4448 0 0 1178 1016 0 0 33563 4158 0 0 34940 4029 0 0 1178 0 0 286 304 232 2588 0 0 3.1252 3.1252 -119.428 -3.1252 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00658912 0.00586907 120 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 4.76 vpr 53.32 MiB -1 -1 0.10 17560 1 0.01 -1 -1 29672 -1 -1 21 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54596 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 14.7 MiB 1.68 1048 53.3 MiB 0.05 0.00 3.45767 -107.327 -3.45767 3.45767 0.56 0.000106484 8.5128e-05 0.00951856 0.0077165 34 2430 50 6.89349e+06 295971 618332. 2139.56 1.03 0.0460027 0.0383357 25762 151098 -1 1992 22 1338 1798 149983 32290 0 0 149983 32290 1798 1589 0 0 6808 5372 0 0 10534 8264 0 0 1798 1689 0 0 64985 7688 0 0 64060 7688 0 0 1798 0 0 460 355 473 4006 0 0 3.3709 3.3709 -121.11 -3.3709 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00775962 0.00682867 124 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 4.30 vpr 53.10 MiB -1 -1 0.09 17568 1 0.01 -1 -1 29792 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54376 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 14.5 MiB 1.25 895 53.1 MiB 0.04 0.00 2.911 -90.6942 -2.911 2.911 0.56 9.901e-05 7.9426e-05 0.00617184 0.0050565 34 2241 26 6.89349e+06 239595 618332. 2139.56 0.96 0.0355901 0.0298273 25762 151098 -1 1909 30 1290 1902 306107 137136 0 0 306107 137136 1902 1747 0 0 7038 5883 0 0 13092 9613 0 0 1902 1802 0 0 139005 55985 0 0 143168 62106 0 0 1902 0 0 612 654 645 5095 0 0 2.96246 2.96246 -109.446 -2.96246 0 0 787024. 2723.27 0.20 0.06 0.07 -1 -1 0.20 0.00882843 0.00768351 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 5.59 vpr 53.47 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29668 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54756 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 15.0 MiB 1.64 870 53.5 MiB 0.05 0.00 3.19568 -99.9536 -3.19568 3.19568 0.57 0.000119562 9.6377e-05 0.0076867 0.00629237 36 2654 41 6.89349e+06 324158 648988. 2245.63 1.84 0.0552238 0.0467489 26050 158493 -1 2040 24 1893 2910 249610 71465 0 0 249610 71465 2910 2541 0 0 10598 8559 0 0 16709 12944 0 0 2910 2568 0 0 107133 22855 0 0 109350 21998 0 0 2910 0 0 1017 1241 1244 8446 0 0 3.35361 3.35361 -122.515 -3.35361 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.00929867 0.00815376 143 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 5.13 vpr 53.61 MiB -1 -1 0.15 17348 1 0.01 -1 -1 29728 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54892 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 15.1 MiB 1.46 1386 53.6 MiB 0.11 0.00 4.29107 -130.142 -4.29107 4.29107 0.56 0.000224634 0.000180496 0.0192367 0.0157103 36 2945 23 6.89349e+06 338252 648988. 2245.63 1.47 0.0608796 0.0510919 26050 158493 -1 2636 20 1633 2304 168849 37234 0 0 168849 37234 2304 2017 0 0 8459 6708 0 0 12135 9833 0 0 2304 2149 0 0 73058 7995 0 0 70589 8532 0 0 2304 0 0 671 766 506 5849 0 0 4.35865 4.35865 -150.072 -4.35865 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00872492 0.00774286 153 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 4.08 vpr 52.84 MiB -1 -1 0.10 17196 1 0.01 -1 -1 29756 -1 -1 18 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54104 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 14.3 MiB 1.50 704 52.8 MiB 0.04 0.00 2.55142 -77.0614 -2.55142 2.55142 0.56 9.1681e-05 7.3701e-05 0.0059646 0.00488028 30 1851 23 6.89349e+06 253689 556674. 1926.21 0.55 0.0232191 0.0195587 25186 138497 -1 1585 18 921 1305 73645 18618 0 0 73645 18618 1305 1032 0 0 4612 3798 0 0 6241 5155 0 0 1305 1056 0 0 30007 3877 0 0 30175 3700 0 0 1305 0 0 384 315 274 3106 0 0 2.75381 2.75381 -92.3514 -2.75381 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00584768 0.0051909 102 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 5.30 vpr 53.60 MiB -1 -1 0.10 17588 1 0.01 -1 -1 29816 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54884 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 15.1 MiB 1.83 1236 53.6 MiB 0.08 0.00 3.3439 -110.389 -3.3439 3.3439 0.56 0.0001278 0.000102146 0.0121966 0.00990513 36 3167 26 6.89349e+06 338252 648988. 2245.63 1.33 0.0505812 0.042206 26050 158493 -1 2682 20 1967 3159 244738 53707 0 0 244738 53707 3159 2612 0 0 11320 9310 0 0 17379 13566 0 0 3159 2745 0 0 104946 12950 0 0 104775 12524 0 0 3159 0 0 1192 1542 1620 10965 0 0 4.04825 4.04825 -136.666 -4.04825 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00903552 0.00797201 159 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 4.95 vpr 53.31 MiB -1 -1 0.09 17264 1 0.01 -1 -1 29752 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54588 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 14.9 MiB 1.63 1095 53.3 MiB 0.07 0.00 3.18768 -106.074 -3.18768 3.18768 0.56 0.000118392 9.4206e-05 0.0109934 0.00897887 34 2889 44 6.89349e+06 310065 618332. 2139.56 1.19 0.0527593 0.0443393 25762 151098 -1 2370 22 1614 2390 207263 44221 0 0 207263 44221 2390 1958 0 0 8902 7419 0 0 13489 10746 0 0 2390 2074 0 0 89497 11301 0 0 90595 10723 0 0 2390 0 0 776 786 753 6257 0 0 3.09256 3.09256 -119.31 -3.09256 0 0 787024. 2723.27 0.22 0.04 0.08 -1 -1 0.22 0.00919058 0.00813025 142 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 4.80 vpr 53.32 MiB -1 -1 0.09 17340 1 0.01 -1 -1 29700 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54604 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 14.7 MiB 1.56 1169 53.3 MiB 0.07 0.00 2.80245 -103.106 -2.80245 2.80245 0.58 0.00011082 8.8749e-05 0.0101871 0.00829069 34 2726 25 6.89349e+06 295971 618332. 2139.56 1.09 0.0472751 0.0394256 25762 151098 -1 2291 18 1428 1883 140128 31562 0 0 140128 31562 1883 1608 0 0 6826 5588 0 0 10495 8170 0 0 1883 1663 0 0 60766 7094 0 0 58275 7439 0 0 1883 0 0 455 527 589 4738 0 0 2.93426 2.93426 -124.478 -2.93426 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00740841 0.00653974 131 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.28 vpr 52.82 MiB -1 -1 0.13 17132 1 0.01 -1 -1 29632 -1 -1 15 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54092 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 14.4 MiB 0.83 718 52.8 MiB 0.03 0.00 2.23253 -75.5919 -2.23253 2.23253 0.61 8.3176e-05 6.5915e-05 0.00545431 0.00443697 30 1589 19 6.89349e+06 211408 556674. 1926.21 1.36 0.0334335 0.0278249 25186 138497 -1 1351 16 616 702 48801 11753 0 0 48801 11753 702 649 0 0 2607 2070 0 0 3449 2944 0 0 702 657 0 0 19974 2933 0 0 21367 2500 0 0 702 0 0 86 103 73 1160 0 0 2.17837 2.17837 -88.7799 -2.17837 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00498536 0.00444616 82 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 4.47 vpr 53.10 MiB -1 -1 0.09 17436 1 0.01 -1 -1 29788 -1 -1 19 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54376 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 14.6 MiB 1.85 860 53.1 MiB 0.04 0.00 3.85262 -113.901 -3.85262 3.85262 0.56 0.000110591 8.9656e-05 0.00716714 0.00592112 32 2361 27 6.89349e+06 267783 586450. 2029.24 0.59 0.0276308 0.0232607 25474 144626 -1 1893 19 1347 2040 155760 38991 0 0 155760 38991 2040 1638 0 0 7927 6711 0 0 13860 10876 0 0 2040 1709 0 0 67386 8995 0 0 62507 9062 0 0 2040 0 0 693 896 684 5933 0 0 3.86955 3.86955 -140.226 -3.86955 0 0 744469. 2576.02 0.19 0.03 0.07 -1 -1 0.19 0.00704357 0.00623877 117 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 4.00 vpr 53.53 MiB -1 -1 0.09 17500 1 0.01 -1 -1 29720 -1 -1 34 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 15.0 MiB 0.86 1206 53.5 MiB 0.08 0.00 3.71813 -123.449 -3.71813 3.71813 0.56 0.000121907 9.7879e-05 0.0111935 0.00906063 34 2598 20 6.89349e+06 479191 618332. 2139.56 1.05 0.045487 0.0379341 25762 151098 -1 2336 21 1583 2491 170179 39248 0 0 170179 39248 2491 1878 0 0 9305 7588 0 0 14059 11295 0 0 2491 2070 0 0 71564 8196 0 0 70269 8221 0 0 2491 0 0 908 1092 1313 8740 0 0 3.92214 3.92214 -144.991 -3.92214 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00838684 0.00736714 151 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 4.89 vpr 53.53 MiB -1 -1 0.10 17968 1 0.00 -1 -1 29656 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 15.0 MiB 1.07 1226 53.5 MiB 0.07 0.00 3.66325 -110.377 -3.66325 3.66325 0.57 0.000128299 0.000103168 0.0105917 0.00871138 34 3359 47 6.89349e+06 324158 618332. 2139.56 1.65 0.0581645 0.049007 25762 151098 -1 2519 20 1864 2834 225271 49452 0 0 225271 49452 2834 2339 0 0 10495 8472 0 0 15580 12386 0 0 2834 2548 0 0 99660 11095 0 0 93868 12612 0 0 2834 0 0 970 1283 1233 8836 0 0 3.7504 3.7504 -132.333 -3.7504 0 0 787024. 2723.27 0.21 0.04 0.08 -1 -1 0.21 0.00900681 0.00796606 155 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 4.07 vpr 52.77 MiB -1 -1 0.09 17196 1 0.01 -1 -1 29720 -1 -1 19 26 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54040 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 14.2 MiB 0.93 439 52.8 MiB 0.03 0.00 2.20251 -59.6078 -2.20251 2.20251 0.63 7.1271e-05 5.5469e-05 0.00563942 0.0045374 34 1452 29 6.89349e+06 267783 618332. 2139.56 1.00 0.0293827 0.0244723 25762 151098 -1 1026 21 778 935 67682 17603 0 0 67682 17603 935 886 0 0 3491 2845 0 0 4994 4026 0 0 935 896 0 0 27010 4742 0 0 30317 4208 0 0 935 0 0 157 196 154 1792 0 0 2.51155 2.51155 -74.1485 -2.51155 0 0 787024. 2723.27 0.20 0.02 0.07 -1 -1 0.20 0.00500418 0.00439471 76 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 3.34 vpr 53.12 MiB -1 -1 0.09 17372 1 0.01 -1 -1 29792 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54396 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 14.7 MiB 0.69 958 53.1 MiB 0.05 0.00 3.52907 -103.902 -3.52907 3.52907 0.56 0.000108135 8.7354e-05 0.00772396 0.00633912 30 2203 24 6.89349e+06 324158 556674. 1926.21 0.61 0.0280384 0.0237399 25186 138497 -1 1968 20 1098 2005 146923 33146 0 0 146923 33146 2005 1485 0 0 7009 5664 0 0 10401 8216 0 0 2005 1567 0 0 62184 8307 0 0 63319 7907 0 0 2005 0 0 907 1228 1120 7888 0 0 3.49265 3.49265 -118.851 -3.49265 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00775198 0.00686414 119 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 2.89 vpr 52.64 MiB -1 -1 0.09 16748 1 0.00 -1 -1 29544 -1 -1 12 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53904 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 14.2 MiB 0.33 427 52.6 MiB 0.03 0.00 1.84032 -58.3789 -1.84032 1.84032 0.56 7.3872e-05 5.7598e-05 0.00501545 0.00401547 32 1430 27 6.89349e+06 169126 586450. 2029.24 0.55 0.0187729 0.0157535 25474 144626 -1 1061 19 718 904 66578 18141 0 0 66578 18141 904 792 0 0 3620 3060 0 0 5801 4569 0 0 904 819 0 0 26579 4533 0 0 28770 4368 0 0 904 0 0 186 115 187 1812 0 0 2.14106 2.14106 -77.5833 -2.14106 0 0 744469. 2576.02 0.19 0.02 0.07 -1 -1 0.19 0.00457571 0.00403833 65 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.27 vpr 53.30 MiB -1 -1 0.10 17628 1 0.01 -1 -1 29660 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54576 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 14.7 MiB 1.29 1070 53.3 MiB 0.05 0.00 3.87678 -111.974 -3.87678 3.87678 0.56 0.000109551 8.7764e-05 0.00690232 0.00566523 34 2391 22 6.89349e+06 281877 618332. 2139.56 0.93 0.038445 0.032274 25762 151098 -1 2092 19 1263 1811 130828 30314 0 0 130828 30314 1811 1445 0 0 6894 5596 0 0 10129 8241 0 0 1811 1505 0 0 54780 6849 0 0 55403 6678 0 0 1811 0 0 548 612 573 4912 0 0 3.82386 3.82386 -125.048 -3.82386 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00726377 0.00644688 125 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 3.41 vpr 53.19 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29860 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54468 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 14.7 MiB 0.56 885 53.2 MiB 0.07 0.00 2.6813 -84.5118 -2.6813 2.6813 0.56 0.000111618 8.8177e-05 0.0104557 0.00832644 28 2595 32 6.89349e+06 436909 531479. 1839.03 0.78 0.0332184 0.027641 24610 126494 -1 2132 24 1381 2449 219971 59204 0 0 219971 59204 2449 1862 0 0 9249 7463 0 0 14235 11451 0 0 2449 1993 0 0 97784 18033 0 0 93805 18402 0 0 2449 0 0 1068 1560 1696 10491 0 0 2.78605 2.78605 -106.419 -2.78605 0 0 648988. 2245.63 0.17 0.04 0.06 -1 -1 0.17 0.0084259 0.00735684 130 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 4.89 vpr 53.55 MiB -1 -1 0.13 17464 1 0.01 -1 -1 29784 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54840 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 15.1 MiB 1.74 1137 53.6 MiB 0.05 0.00 3.79978 -110.194 -3.79978 3.79978 0.56 0.000122548 9.7155e-05 0.0073374 0.00602233 34 3082 30 6.89349e+06 324158 618332. 2139.56 1.04 0.0444597 0.0373988 25762 151098 -1 2425 19 1547 2378 177889 40338 0 0 177889 40338 2378 1925 0 0 8743 7240 0 0 13553 10568 0 0 2378 2072 0 0 76131 9330 0 0 74706 9203 0 0 2378 0 0 831 966 911 7142 0 0 3.9098 3.9098 -132.802 -3.9098 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.00889264 0.0078432 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 4.98 vpr 53.14 MiB -1 -1 0.10 17440 1 0.01 -1 -1 29764 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54412 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 14.7 MiB 1.85 831 53.1 MiB 0.05 0.00 2.9839 -96.8671 -2.9839 2.9839 0.56 0.000102339 8.2284e-05 0.00867172 0.00711735 34 2164 45 6.89349e+06 239595 618332. 2139.56 1.05 0.0433179 0.0362043 25762 151098 -1 1693 20 1199 1678 120908 28928 0 0 120908 28928 1678 1329 0 0 6346 5224 0 0 9714 7716 0 0 1678 1366 0 0 52319 6633 0 0 49173 6660 0 0 1678 0 0 479 530 359 4180 0 0 3.09451 3.09451 -116.557 -3.09451 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00714599 0.0063037 112 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 4.52 vpr 53.18 MiB -1 -1 0.15 17492 1 0.01 -1 -1 29772 -1 -1 17 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54460 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 14.5 MiB 1.47 886 53.2 MiB 0.03 0.00 3.39112 -98.4611 -3.39112 3.39112 0.56 9.7258e-05 7.8216e-05 0.00539678 0.00444412 34 2212 27 6.89349e+06 239595 618332. 2139.56 0.96 0.0341752 0.0286027 25762 151098 -1 1908 20 1082 1768 141296 31314 0 0 141296 31314 1768 1392 0 0 6516 5249 0 0 10849 8271 0 0 1768 1483 0 0 60088 7504 0 0 60307 7415 0 0 1768 0 0 686 579 853 5712 0 0 3.19645 3.19645 -111.627 -3.19645 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00663088 0.00585726 104 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.12 vpr 53.10 MiB -1 -1 0.14 17296 1 0.01 -1 -1 29724 -1 -1 20 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54372 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 14.5 MiB 1.93 894 53.1 MiB 0.05 0.00 3.40424 -99.3533 -3.40424 3.40424 0.56 9.6724e-05 7.7135e-05 0.00866755 0.00703013 34 2223 38 6.89349e+06 281877 618332. 2139.56 0.99 0.0397637 0.0331974 25762 151098 -1 1914 20 1212 2027 171911 37394 0 0 171911 37394 2027 1650 0 0 7478 6268 0 0 12388 9398 0 0 2027 1791 0 0 74603 9261 0 0 73388 9026 0 0 2027 0 0 815 892 946 6928 0 0 3.46375 3.46375 -116.3 -3.46375 0 0 787024. 2723.27 0.21 0.05 0.08 -1 -1 0.21 0.0110785 0.00971987 107 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 3.72 vpr 52.94 MiB -1 -1 0.15 16824 1 0.01 -1 -1 29740 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54212 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 14.4 MiB 0.73 871 52.9 MiB 0.03 0.00 2.99448 -95.0416 -2.99448 2.99448 0.56 9.9354e-05 7.949e-05 0.00482849 0.00395513 32 2044 23 6.89349e+06 239595 586450. 2029.24 0.58 0.0222486 0.0188629 25474 144626 -1 1846 18 1114 1840 130238 30576 0 0 130238 30576 1840 1479 0 0 7035 5922 0 0 11929 8963 0 0 1840 1570 0 0 52872 6484 0 0 54722 6158 0 0 1840 0 0 726 749 804 6001 0 0 3.02446 3.02446 -116.322 -3.02446 0 0 744469. 2576.02 0.19 0.03 0.07 -1 -1 0.19 0.00616018 0.00546701 101 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 5.02 vpr 53.25 MiB -1 -1 0.16 17488 1 0.01 -1 -1 29808 -1 -1 18 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54524 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 14.6 MiB 1.72 942 53.2 MiB 0.04 0.00 2.82865 -91.9426 -2.82865 2.82865 0.56 0.000100895 8.1125e-05 0.00562458 0.00462545 36 2163 18 6.89349e+06 253689 648988. 2245.63 1.06 0.0337474 0.0283425 26050 158493 -1 1917 18 968 1503 110708 25491 0 0 110708 25491 1503 1242 0 0 5551 4660 0 0 8948 7041 0 0 1503 1287 0 0 47181 5724 0 0 46022 5537 0 0 1503 0 0 535 504 685 4715 0 0 2.92736 2.92736 -109.689 -2.92736 0 0 828058. 2865.25 0.26 0.05 0.12 -1 -1 0.26 0.00989677 0.0086161 108 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.04 vpr 53.35 MiB -1 -1 0.10 17644 1 0.01 -1 -1 29828 -1 -1 22 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54628 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 14.9 MiB 1.76 981 53.3 MiB 0.06 0.00 2.71745 -86.963 -2.71745 2.71745 0.56 0.000100439 7.9966e-05 0.00986378 0.00800449 36 2048 21 6.89349e+06 310065 648988. 2245.63 1.03 0.0390016 0.0324364 26050 158493 -1 1817 16 1003 1381 91207 21266 0 0 91207 21266 1381 1158 0 0 5044 4123 0 0 7163 5857 0 0 1381 1218 0 0 38209 4611 0 0 38029 4299 0 0 1381 0 0 378 419 351 3463 0 0 2.52607 2.52607 -99.879 -2.52607 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.006303 0.00559853 120 48 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 5.21 vpr 53.50 MiB -1 -1 0.09 17624 1 0.01 -1 -1 29756 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54788 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 15.0 MiB 1.49 1160 53.5 MiB 0.05 0.00 3.68045 -107.365 -3.68045 3.68045 0.71 0.000132883 0.000108024 0.00709602 0.00591099 36 3000 22 6.89349e+06 352346 648988. 2245.63 1.37 0.0461189 0.0389268 26050 158493 -1 2443 20 1511 2650 194279 44861 0 0 194279 44861 2650 2134 0 0 9741 8004 0 0 14817 11724 0 0 2650 2242 0 0 82086 10657 0 0 82335 10100 0 0 2650 0 0 1139 1970 2287 12958 0 0 3.70076 3.70076 -124.487 -3.70076 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00909135 0.00804675 159 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.49 vpr 53.66 MiB -1 -1 0.14 17460 1 0.01 -1 -1 29728 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54952 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 15.2 MiB 1.85 1301 53.7 MiB 0.07 0.00 3.70207 -127.688 -3.70207 3.70207 0.57 0.000134365 0.00010783 0.011132 0.00905374 38 2917 24 6.89349e+06 338252 678818. 2348.85 3.40 0.0894558 0.0751498 26626 170182 -1 2582 23 2301 3283 238868 52414 0 0 238868 52414 3283 2714 0 0 11023 9136 0 0 16569 12820 0 0 3283 2827 0 0 102471 12266 0 0 102239 12651 0 0 3283 0 0 982 1345 1342 9334 0 0 3.56895 3.56895 -141.016 -3.56895 0 0 902133. 3121.57 0.25 0.05 0.08 -1 -1 0.25 0.010084 0.0088677 168 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.20 vpr 53.09 MiB -1 -1 0.10 17476 1 0.01 -1 -1 29736 -1 -1 18 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54360 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 14.4 MiB 0.97 907 53.1 MiB 0.05 0.00 3.21878 -100.089 -3.21878 3.21878 0.60 0.000100344 8.0398e-05 0.00900928 0.00729798 36 2128 18 6.89349e+06 253689 648988. 2245.63 1.13 0.0377678 0.0315397 26050 158493 -1 1859 18 1137 1748 136573 29508 0 0 136573 29508 1748 1439 0 0 6199 5063 0 0 9197 7159 0 0 1748 1504 0 0 57784 7470 0 0 59897 6873 0 0 1748 0 0 611 806 900 5859 0 0 3.14876 3.14876 -114.562 -3.14876 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00642483 0.00568996 109 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 5.55 vpr 53.63 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29740 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54920 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 15.1 MiB 1.74 1230 53.6 MiB 0.08 0.00 3.27699 -106.568 -3.27699 3.27699 0.58 0.000125879 0.00010081 0.0125554 0.0102133 36 2818 30 6.89349e+06 352346 648988. 2245.63 1.60 0.0556514 0.0466423 26050 158493 -1 2286 19 1634 2450 168339 38253 0 0 168339 38253 2450 1846 0 0 8960 7375 0 0 13067 10454 0 0 2450 1939 0 0 71137 8467 0 0 70275 8172 0 0 2450 0 0 816 863 753 7138 0 0 3.501 3.501 -124.998 -3.501 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.0087469 0.00775883 160 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 5.69 vpr 53.75 MiB -1 -1 0.17 17780 1 0.02 -1 -1 29808 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55036 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 15.1 MiB 2.14 1226 53.7 MiB 0.07 0.00 4.36217 -133.609 -4.36217 4.36217 0.56 0.000129698 0.000104399 0.0117199 0.00956267 44 2841 21 6.89349e+06 352346 787024. 2723.27 1.30 0.0490013 0.0411559 27778 195446 -1 2413 22 1459 2211 170428 36474 0 0 170428 36474 2211 1759 0 0 7784 6427 0 0 11797 9285 0 0 2211 1857 0 0 72538 8798 0 0 73887 8348 0 0 2211 0 0 752 636 617 5720 0 0 4.32758 4.32758 -150.392 -4.32758 0 0 997811. 3452.63 0.25 0.04 0.10 -1 -1 0.25 0.00954128 0.00841922 163 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 5.35 vpr 53.56 MiB -1 -1 0.14 17624 1 0.01 -1 -1 29776 -1 -1 25 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54844 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 14.9 MiB 1.76 1136 53.6 MiB 0.08 0.00 4.83228 -137.855 -4.83228 4.83228 0.57 0.000133565 0.000107376 0.0123652 0.0100544 34 3295 32 6.89349e+06 352346 618332. 2139.56 1.28 0.055278 0.0461935 25762 151098 -1 2452 25 1996 3113 240599 54795 0 0 240599 54795 3113 2518 0 0 11704 9887 0 0 18635 14303 0 0 3113 2658 0 0 106880 11843 0 0 97154 13586 0 0 3113 0 0 1117 1094 1220 9228 0 0 5.14184 5.14184 -161.685 -5.14184 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.0104799 0.00918971 166 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 5.11 vpr 53.48 MiB -1 -1 0.16 17480 1 0.01 -1 -1 29804 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 15.0 MiB 1.57 1149 53.5 MiB 0.06 0.00 3.17668 -100.859 -3.17668 3.17668 0.56 0.000129718 0.000105817 0.00937497 0.00775678 36 2709 21 6.89349e+06 338252 648988. 2245.63 1.16 0.0456173 0.0383467 26050 158493 -1 2223 23 1837 2713 190177 43987 0 0 190177 43987 2713 2225 0 0 9938 8205 0 0 15420 12081 0 0 2713 2501 0 0 78967 9870 0 0 80426 9105 0 0 2713 0 0 876 1154 1190 8209 0 0 3.15401 3.15401 -115.122 -3.15401 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0154929 0.0136435 148 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 5.28 vpr 53.27 MiB -1 -1 0.13 17468 1 0.01 -1 -1 29668 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54544 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 14.8 MiB 1.59 1148 53.3 MiB 0.07 0.00 3.67125 -104.708 -3.67125 3.67125 0.56 0.000118611 9.3949e-05 0.0108179 0.00864348 36 2356 33 6.89349e+06 281877 648988. 2245.63 1.37 0.0440558 0.0367781 26050 158493 -1 2093 18 1015 1449 108278 23758 0 0 108278 23758 1449 1207 0 0 5264 4188 0 0 7971 6272 0 0 1449 1251 0 0 47244 5250 0 0 44901 5590 0 0 1449 0 0 434 427 497 3843 0 0 3.75796 3.75796 -123.379 -3.75796 0 0 828058. 2865.25 0.31 0.04 0.14 -1 -1 0.31 0.0111728 0.00989132 120 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 5.95 vpr 53.99 MiB -1 -1 0.13 17944 1 0.01 -1 -1 29948 -1 -1 31 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55288 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 15.5 MiB 1.95 1569 54.0 MiB 0.10 0.00 4.20371 -139.83 -4.20371 4.20371 0.59 0.000153011 0.000123603 0.015105 0.0123177 36 3904 31 6.89349e+06 436909 648988. 2245.63 1.78 0.0737347 0.0624257 26050 158493 -1 3334 21 2411 3640 283556 62913 0 0 283556 62913 3640 3035 0 0 13295 11064 0 0 20260 15904 0 0 3640 3151 0 0 120773 15205 0 0 121948 14554 0 0 3640 0 0 1229 1697 1553 11803 0 0 4.50739 4.50739 -168.831 -4.50739 0 0 828058. 2865.25 0.21 0.05 0.08 -1 -1 0.21 0.0114688 0.0101323 203 84 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 4.26 vpr 53.20 MiB -1 -1 0.11 17076 1 0.01 -1 -1 29704 -1 -1 18 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54472 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 14.6 MiB 1.33 841 53.2 MiB 0.04 0.00 2.974 -87.5987 -2.974 2.974 0.57 9.6241e-05 7.6902e-05 0.00719138 0.00586894 34 2031 21 6.89349e+06 253689 618332. 2139.56 0.89 0.0347342 0.029064 25762 151098 -1 1753 18 1098 1531 103722 25560 0 0 103722 25560 1531 1350 0 0 5829 4768 0 0 8767 7041 0 0 1531 1437 0 0 42529 5642 0 0 43535 5322 0 0 1531 0 0 433 453 401 3698 0 0 2.92916 2.92916 -104.344 -2.92916 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00640488 0.0056591 106 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 4.79 vpr 53.34 MiB -1 -1 0.12 17432 1 0.01 -1 -1 29772 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54624 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 15.0 MiB 1.31 1108 53.3 MiB 0.06 0.00 3.76442 -115.971 -3.76442 3.76442 0.58 0.00012011 9.639e-05 0.0101108 0.0082573 36 2676 19 6.89349e+06 324158 648988. 2245.63 1.31 0.0459039 0.0385391 26050 158493 -1 2372 17 1658 2545 222507 48295 0 0 222507 48295 2545 2075 0 0 9058 7324 0 0 14623 11100 0 0 2545 2196 0 0 95592 13094 0 0 98144 12506 0 0 2545 0 0 887 981 1095 7756 0 0 3.94416 3.94416 -133.53 -3.94416 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00760848 0.00677594 140 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 5.82 vpr 53.56 MiB -1 -1 0.16 17480 1 0.00 -1 -1 29712 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54844 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 15.0 MiB 2.02 1127 53.6 MiB 0.07 0.00 3.53859 -105.912 -3.53859 3.53859 0.60 0.000225581 0.00018339 0.0103272 0.00843114 34 3414 28 6.89349e+06 324158 618332. 2139.56 1.54 0.0571207 0.0482085 25762 151098 -1 2523 19 1596 2564 191068 43980 0 0 191068 43980 2564 2039 0 0 9453 7890 0 0 14007 11136 0 0 2564 2166 0 0 78598 10963 0 0 83882 9786 0 0 2564 0 0 968 1358 1316 8870 0 0 3.5973 3.5973 -125.137 -3.5973 0 0 787024. 2723.27 0.21 0.04 0.11 -1 -1 0.21 0.00832405 0.00738423 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 3.67 vpr 53.11 MiB -1 -1 0.08 17216 1 0.01 -1 -1 29704 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54388 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 14.6 MiB 0.46 898 53.1 MiB 0.06 0.00 3.37229 -103.179 -3.37229 3.37229 0.56 0.000108696 8.6742e-05 0.00871206 0.00709435 34 2348 19 6.89349e+06 366440 618332. 2139.56 1.06 0.0399678 0.0334648 25762 151098 -1 2062 18 1245 2273 174922 38768 0 0 174922 38768 2273 1768 0 0 8235 6659 0 0 12827 9887 0 0 2273 1870 0 0 74726 8824 0 0 74588 9760 0 0 2273 0 0 1028 1503 1559 9563 0 0 3.6434 3.6434 -122.954 -3.6434 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00698466 0.00618753 123 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 4.93 vpr 53.55 MiB -1 -1 0.12 17440 1 0.02 -1 -1 29728 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 15.1 MiB 1.46 1196 53.6 MiB 0.06 0.00 3.42271 -107.788 -3.42271 3.42271 0.56 0.000121463 9.763e-05 0.00984701 0.00806144 34 2846 43 6.89349e+06 324158 618332. 2139.56 1.38 0.0577799 0.0486875 25762 151098 -1 2388 21 1627 2336 174963 39333 0 0 174963 39333 2336 1970 0 0 8679 7078 0 0 13088 10491 0 0 2336 2059 0 0 74810 8833 0 0 73714 8902 0 0 2336 0 0 709 923 851 6495 0 0 3.01616 3.01616 -117.193 -3.01616 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00882596 0.0078047 148 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 5.60 vpr 53.52 MiB -1 -1 0.09 17440 1 0.01 -1 -1 29724 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54808 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 15.0 MiB 1.81 1254 53.5 MiB 0.07 0.00 3.31619 -111.732 -3.31619 3.31619 0.57 0.000128644 0.000101799 0.0107251 0.00878952 34 3149 23 6.89349e+06 338252 618332. 2139.56 1.55 0.0715726 0.0602498 25762 151098 -1 2700 30 2143 3359 455969 169310 0 0 455969 169310 3359 2794 0 0 12313 10401 0 0 22313 16090 0 0 3359 2950 0 0 206658 72168 0 0 207967 64907 0 0 3359 0 0 1216 1720 1955 12582 0 0 3.7929 3.7929 -135.401 -3.7929 0 0 787024. 2723.27 0.22 0.09 0.08 -1 -1 0.22 0.0111627 0.009722 154 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.37 vpr 53.53 MiB -1 -1 0.10 17460 1 0.01 -1 -1 29804 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54812 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 14.9 MiB 1.60 1256 53.5 MiB 0.05 0.00 3.32098 -109.299 -3.32098 3.32098 0.56 0.000129565 0.000104287 0.00772672 0.00635258 34 3218 47 6.89349e+06 366440 618332. 2139.56 1.44 0.0529014 0.0442964 25762 151098 -1 2518 20 1700 2346 204384 44757 0 0 204384 44757 2346 1930 0 0 8993 7407 0 0 13908 11149 0 0 2346 2044 0 0 92461 10522 0 0 84330 11705 0 0 2346 0 0 646 768 758 6108 0 0 3.14076 3.14076 -125.569 -3.14076 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0139778 0.0122852 164 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 4.49 vpr 53.30 MiB -1 -1 0.10 17396 1 0.01 -1 -1 29648 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54584 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 14.8 MiB 1.33 1069 53.3 MiB 0.06 0.00 3.61195 -110.865 -3.61195 3.61195 0.58 0.000111664 8.9355e-05 0.0100131 0.0081408 34 2563 29 6.89349e+06 295971 618332. 2139.56 0.96 0.0430297 0.0359465 25762 151098 -1 2118 20 1253 2010 145191 33359 0 0 145191 33359 2010 1643 0 0 7497 6144 0 0 11473 8983 0 0 2010 1716 0 0 60316 7771 0 0 61885 7102 0 0 2010 0 0 757 896 927 6598 0 0 3.85486 3.85486 -128.306 -3.85486 0 0 787024. 2723.27 0.21 0.03 0.13 -1 -1 0.21 0.00781217 0.00688888 128 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 4.64 vpr 53.47 MiB -1 -1 0.10 17400 1 0.02 -1 -1 29724 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54752 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 14.8 MiB 1.44 1182 53.5 MiB 0.05 0.00 3.80778 -115.304 -3.80778 3.80778 0.58 0.0001588 0.000128591 0.00831284 0.00680811 34 2770 33 6.89349e+06 310065 618332. 2139.56 1.06 0.0436218 0.0365887 25762 151098 -1 2206 21 1457 2109 142704 33649 0 0 142704 33649 2109 1718 0 0 7842 6599 0 0 11786 9345 0 0 2109 1797 0 0 59696 6773 0 0 59162 7417 0 0 2109 0 0 652 610 749 5424 0 0 3.65116 3.65116 -128.1 -3.65116 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00818982 0.00723922 135 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.21 vpr 53.57 MiB -1 -1 0.16 17900 1 0.02 -1 -1 29860 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54856 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 15.0 MiB 1.18 1341 53.6 MiB 0.05 0.00 3.81268 -118.418 -3.81268 3.81268 0.62 0.000130027 0.000104883 0.00697157 0.00575858 36 3099 21 6.89349e+06 338252 648988. 2245.63 1.68 0.0494948 0.0420634 26050 158493 -1 2645 19 1342 2103 164724 35632 0 0 164724 35632 2103 1698 0 0 7715 6191 0 0 10960 8890 0 0 2103 1818 0 0 69772 8700 0 0 72071 8335 0 0 2103 0 0 761 978 825 6717 0 0 3.95749 3.95749 -138.01 -3.95749 0 0 828058. 2865.25 0.24 0.03 0.08 -1 -1 0.24 0.00862342 0.00764915 156 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 6.39 vpr 53.71 MiB -1 -1 0.17 17344 1 0.02 -1 -1 29648 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55000 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 15.3 MiB 2.59 1289 53.7 MiB 0.07 0.00 3.68195 -115.399 -3.68195 3.68195 0.58 0.000130756 0.000104769 0.011537 0.00938043 36 3078 30 6.89349e+06 352346 648988. 2245.63 1.38 0.0589287 0.0492873 26050 158493 -1 2595 19 1752 2596 177255 39808 0 0 177255 39808 2596 2122 0 0 9446 7572 0 0 13036 10530 0 0 2596 2228 0 0 75232 8840 0 0 74349 8516 0 0 2596 0 0 844 946 800 6958 0 0 3.90516 3.90516 -135.323 -3.90516 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00935183 0.00831278 166 74 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 4.65 vpr 52.99 MiB -1 -1 0.12 17176 1 0.01 -1 -1 29656 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54264 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 14.5 MiB 1.35 825 53.0 MiB 0.04 0.00 2.79059 -89.3741 -2.79059 2.79059 0.59 0.000155447 0.00012495 0.00647445 0.00531647 36 2004 24 6.89349e+06 211408 648988. 2245.63 1.17 0.0365712 0.0307604 26050 158493 -1 1721 17 871 1330 89303 20976 0 0 89303 20976 1330 1039 0 0 4830 3939 0 0 7031 5596 0 0 1330 1145 0 0 37930 4580 0 0 36852 4677 0 0 1330 0 0 459 364 621 4064 0 0 2.78591 2.78591 -101.635 -2.78591 0 0 828058. 2865.25 0.21 0.02 0.08 -1 -1 0.21 0.00589752 0.00526347 96 20 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 5.30 vpr 53.54 MiB -1 -1 0.15 17268 1 0.01 -1 -1 29728 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54824 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 15.1 MiB 1.47 1171 53.5 MiB 0.08 0.00 3.33199 -120.009 -3.33199 3.33199 0.61 0.000117062 9.3327e-05 0.0127202 0.0103407 36 2645 21 6.89349e+06 281877 648988. 2245.63 1.55 0.0558778 0.0469005 26050 158493 -1 2288 21 1923 2627 181110 41310 0 0 181110 41310 2627 2303 0 0 9386 7733 0 0 14091 10938 0 0 2627 2359 0 0 74310 9528 0 0 78069 8449 0 0 2627 0 0 704 663 569 5971 0 0 3.4952 3.4952 -140.286 -3.4952 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00847046 0.00748998 138 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 4.96 vpr 53.63 MiB -1 -1 0.17 17700 1 0.02 -1 -1 29812 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 15.0 MiB 1.88 1397 53.6 MiB 0.10 0.00 4.36852 -133.389 -4.36852 4.36852 0.61 0.000136176 0.0001099 0.0167744 0.0137065 30 3346 27 6.89349e+06 352346 556674. 1926.21 0.84 0.0476622 0.0402464 25186 138497 -1 2588 21 1614 2584 171784 38615 0 0 171784 38615 2584 2027 0 0 9118 7281 0 0 12601 10347 0 0 2584 2101 0 0 71276 8833 0 0 73621 8026 0 0 2584 0 0 970 1078 1018 7926 0 0 4.35235 4.35235 -151.453 -4.35235 0 0 706193. 2443.58 0.18 0.04 0.07 -1 -1 0.18 0.00971704 0.00860253 168 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 4.99 vpr 53.46 MiB -1 -1 0.09 17640 1 0.02 -1 -1 29808 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 15.0 MiB 1.50 1020 53.5 MiB 0.06 0.00 3.41266 -109.233 -3.41266 3.41266 0.57 0.000125754 0.000101287 0.00974808 0.00809359 34 2670 27 6.89349e+06 310065 618332. 2139.56 1.26 0.0471725 0.0396965 25762 151098 -1 2201 22 1562 2325 197483 43394 0 0 197483 43394 2325 1967 0 0 8623 7146 0 0 13972 10832 0 0 2325 2024 0 0 84950 10680 0 0 85288 10745 0 0 2325 0 0 763 970 916 6956 0 0 3.12396 3.12396 -122.307 -3.12396 0 0 787024. 2723.27 0.28 0.04 0.09 -1 -1 0.28 0.00933657 0.00829303 144 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.11 vpr 53.21 MiB -1 -1 0.09 17496 1 0.01 -1 -1 29680 -1 -1 27 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54484 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 14.8 MiB 1.42 858 53.2 MiB 0.06 0.00 3.30514 -101.719 -3.30514 3.30514 0.56 0.000101546 8.1404e-05 0.00992303 0.00807195 34 2437 45 6.89349e+06 380534 618332. 2139.56 1.46 0.0530593 0.0445943 25762 151098 -1 1827 20 1249 1997 150353 33886 0 0 150353 33886 1997 1533 0 0 7357 6061 0 0 11454 8884 0 0 1997 1668 0 0 64574 7864 0 0 62974 7876 0 0 1997 0 0 748 844 1012 7233 0 0 3.22315 3.22315 -118.879 -3.22315 0 0 787024. 2723.27 0.26 0.03 0.13 -1 -1 0.26 0.00697281 0.00613178 118 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.75 vpr 54.05 MiB -1 -1 0.17 17820 1 0.02 -1 -1 29824 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55352 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 15.2 MiB 2.95 1543 54.1 MiB 0.10 0.00 5.17195 -150.574 -5.17195 5.17195 0.57 0.000267768 0.000214159 0.014967 0.0121069 36 3867 33 6.89349e+06 380534 648988. 2245.63 2.50 0.0719809 0.0609387 26050 158493 -1 3151 22 2533 4065 341931 72266 0 0 341931 72266 4065 3387 0 0 14566 12025 0 0 22784 17478 0 0 4065 3578 0 0 148670 18012 0 0 147781 17786 0 0 4065 0 0 1532 2080 2302 13919 0 0 5.38033 5.38033 -182.712 -5.38033 0 0 828058. 2865.25 0.21 0.06 0.08 -1 -1 0.21 0.0110469 0.00975677 188 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 4.55 vpr 53.52 MiB -1 -1 0.09 17348 1 0.02 -1 -1 29696 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54804 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 14.8 MiB 1.25 1192 53.5 MiB 0.06 0.00 3.69702 -117.645 -3.69702 3.69702 0.56 0.000123327 9.899e-05 0.0114582 0.00938531 34 2827 23 6.89349e+06 295971 618332. 2139.56 1.21 0.047617 0.0399627 25762 151098 -1 2325 21 1799 2505 225351 46877 0 0 225351 46877 2505 2094 0 0 9310 7488 0 0 13601 10703 0 0 2505 2166 0 0 97636 12870 0 0 99794 11556 0 0 2505 0 0 706 1102 1106 7391 0 0 3.8624 3.8624 -136.496 -3.8624 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00853201 0.00753321 139 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.76 vpr 52.91 MiB -1 -1 0.09 16976 1 0.01 -1 -1 29588 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54184 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 14.5 MiB 0.47 777 52.9 MiB 0.07 0.00 2.8828 -82.7469 -2.8828 2.8828 0.66 0.000163209 0.000131388 0.011374 0.00927688 36 1693 19 6.89349e+06 338252 648988. 2245.63 1.80 0.0529608 0.0447297 26050 158493 -1 1462 18 760 1349 101773 23317 0 0 101773 23317 1349 942 0 0 5032 3839 0 0 7733 5957 0 0 1349 1041 0 0 42906 5841 0 0 43404 5697 0 0 1349 0 0 589 768 1063 5761 0 0 2.68771 2.68771 -93.7601 -2.68771 0 0 828058. 2865.25 0.22 0.05 0.08 -1 -1 0.22 0.0103938 0.00910202 94 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 5.56 vpr 53.37 MiB -1 -1 0.10 17556 1 0.01 -1 -1 29788 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 14.9 MiB 1.49 1302 53.4 MiB 0.08 0.00 4.35947 -122.008 -4.35947 4.35947 0.56 0.000126464 0.000102083 0.0123255 0.0100897 36 2896 20 6.89349e+06 324158 648988. 2245.63 1.93 0.0514043 0.0433294 26050 158493 -1 2498 19 1439 2641 217566 46499 0 0 217566 46499 2641 1965 0 0 9670 7917 0 0 15307 11974 0 0 2641 2058 0 0 92358 11658 0 0 94949 10927 0 0 2641 0 0 1202 2361 2188 13730 0 0 4.69205 4.69205 -144.42 -4.69205 0 0 828058. 2865.25 0.21 0.04 0.09 -1 -1 0.21 0.00876099 0.00773141 149 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.12 vpr 52.96 MiB -1 -1 0.14 17016 1 0.01 -1 -1 29688 -1 -1 19 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54236 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 14.5 MiB 0.82 662 53.0 MiB 0.03 0.00 2.81765 -86.357 -2.81765 2.81765 0.65 9.4844e-05 7.6e-05 0.00448042 0.00369713 30 1838 36 6.89349e+06 267783 556674. 1926.21 2.12 0.0445075 0.0376809 25186 138497 -1 1372 17 929 1684 89146 22791 0 0 89146 22791 1684 1195 0 0 5824 4605 0 0 7706 6318 0 0 1684 1289 0 0 34756 4682 0 0 37492 4702 0 0 1684 0 0 755 705 806 6056 0 0 2.67666 2.67666 -99.1735 -2.67666 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00570322 0.00506785 98 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 4.53 vpr 53.19 MiB -1 -1 0.15 17564 1 0.01 -1 -1 29740 -1 -1 20 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54468 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 14.7 MiB 1.02 746 53.2 MiB 0.09 0.00 3.17368 -91.5842 -3.17368 3.17368 0.64 0.000178932 0.00014373 0.0147828 0.0120356 34 1911 35 6.89349e+06 281877 618332. 2139.56 1.28 0.0482105 0.0402731 25762 151098 -1 1547 21 1149 1675 119586 30288 0 0 119586 30288 1675 1282 0 0 6321 5119 0 0 9886 7720 0 0 1675 1310 0 0 53592 7460 0 0 46437 7397 0 0 1675 0 0 526 710 723 5202 0 0 3.11381 3.11381 -106.465 -3.11381 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00717575 0.00632211 113 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.82 vpr 53.41 MiB -1 -1 0.10 17348 1 0.01 -1 -1 29724 -1 -1 26 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54696 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 14.9 MiB 2.32 1012 53.4 MiB 0.07 0.00 3.48129 -103.311 -3.48129 3.48129 0.61 0.000120937 9.6082e-05 0.0106139 0.00859754 34 3094 48 6.89349e+06 366440 618332. 2139.56 1.31 0.0547787 0.0457999 25762 151098 -1 2263 19 1468 2167 142023 34957 0 0 142023 34957 2167 1839 0 0 7934 6536 0 0 11981 9556 0 0 2167 1899 0 0 56728 7580 0 0 61046 7547 0 0 2167 0 0 699 692 621 5577 0 0 3.67235 3.67235 -123.064 -3.67235 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00832437 0.00738252 155 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 5.90 vpr 53.63 MiB -1 -1 0.10 17676 1 0.02 -1 -1 29716 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54916 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 15.1 MiB 1.58 1138 53.6 MiB 0.07 0.00 4.11834 -129.007 -4.11834 4.11834 0.57 0.000224472 0.00018058 0.0120541 0.00984865 36 3020 25 6.89349e+06 310065 648988. 2245.63 1.82 0.0630598 0.0533286 26050 158493 -1 2386 21 1912 2836 182279 43323 0 0 182279 43323 2836 2142 0 0 10022 8210 0 0 15029 11792 0 0 2836 2303 0 0 75946 9231 0 0 75610 9645 0 0 2836 0 0 924 828 985 7603 0 0 4.58085 4.58085 -152.733 -4.58085 0 0 828058. 2865.25 0.23 0.04 0.14 -1 -1 0.23 0.00937472 0.00832829 151 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.30 vpr 53.68 MiB -1 -1 0.10 17440 1 0.01 -1 -1 29712 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54964 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 15.1 MiB 1.83 1234 53.7 MiB 0.12 0.00 4.15917 -123 -4.15917 4.15917 0.63 0.000228051 0.000181786 0.0199294 0.0159903 38 2883 24 6.89349e+06 324158 678818. 2348.85 2.17 0.0760493 0.0642556 26626 170182 -1 2379 23 1919 2739 207875 46540 0 0 207875 46540 2739 2341 0 0 9486 7835 0 0 13932 11083 0 0 2739 2411 0 0 90172 11521 0 0 88807 11349 0 0 2739 0 0 820 827 911 7425 0 0 4.33239 4.33239 -146.515 -4.33239 0 0 902133. 3121.57 0.22 0.04 0.09 -1 -1 0.22 0.0096392 0.00852134 150 48 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.63 vpr 53.10 MiB -1 -1 0.14 17680 1 0.01 -1 -1 29656 -1 -1 15 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54372 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 14.5 MiB 2.00 838 53.1 MiB 0.09 0.00 3.46187 -98.0268 -3.46187 3.46187 0.91 0.000179425 0.000144154 0.0160785 0.0130899 30 2117 27 6.89349e+06 211408 556674. 1926.21 1.01 0.0495782 0.0415537 25186 138497 -1 1757 18 906 1251 88664 21203 0 0 88664 21203 1251 1064 0 0 4385 3470 0 0 6124 4944 0 0 1251 1115 0 0 37876 5479 0 0 37777 5131 0 0 1251 0 0 345 377 351 3038 0 0 3.35355 3.35355 -112.897 -3.35355 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00639134 0.00568153 105 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.07 vpr 53.36 MiB -1 -1 0.09 17460 1 0.01 -1 -1 29768 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54640 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 14.7 MiB 1.75 1055 53.4 MiB 0.05 0.00 2.90565 -98.3486 -2.90565 2.90565 0.60 0.000110946 8.861e-05 0.00780083 0.00636675 34 2723 28 6.89349e+06 281877 618332. 2139.56 1.17 0.0461725 0.0389257 25762 151098 -1 2317 23 1562 2231 198722 43936 0 0 198722 43936 2231 1882 0 0 8407 7035 0 0 13360 10425 0 0 2231 2101 0 0 85910 11587 0 0 86583 10906 0 0 2231 0 0 669 717 614 5569 0 0 3.13651 3.13651 -124.149 -3.13651 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00862965 0.00760832 131 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 5.72 vpr 53.45 MiB -1 -1 0.14 17676 1 0.01 -1 -1 29768 -1 -1 26 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 15.0 MiB 2.36 1183 53.4 MiB 0.06 0.00 2.9531 -91.9933 -2.9531 2.9531 0.56 0.000117125 9.4265e-05 0.00967062 0.00783345 34 2772 42 6.89349e+06 366440 618332. 2139.56 1.17 0.0525473 0.0438339 25762 151098 -1 2233 21 1513 2281 182080 39049 0 0 182080 39049 2281 1945 0 0 8383 6800 0 0 12806 10038 0 0 2281 2052 0 0 79662 8803 0 0 76667 9411 0 0 2281 0 0 768 1096 1424 8377 0 0 2.99771 2.99771 -108.058 -2.99771 0 0 787024. 2723.27 0.21 0.06 0.08 -1 -1 0.21 0.0141872 0.0125268 142 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.81 vpr 53.31 MiB -1 -1 0.16 17336 1 0.01 -1 -1 29760 -1 -1 23 28 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54588 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 14.8 MiB 1.39 874 53.3 MiB 0.05 0.00 3.64305 -93.6767 -3.64305 3.64305 0.57 0.000103512 8.2525e-05 0.00864135 0.00703312 34 2333 45 6.89349e+06 324158 618332. 2139.56 1.23 0.0444515 0.0373779 25762 151098 -1 1855 18 1146 1989 157389 35412 0 0 157389 35412 1989 1544 0 0 7563 6040 0 0 11821 9210 0 0 1989 1672 0 0 66316 8595 0 0 67711 8351 0 0 1989 0 0 843 1340 1471 8871 0 0 3.82786 3.82786 -111.662 -3.82786 0 0 787024. 2723.27 0.23 0.03 0.08 -1 -1 0.23 0.00694664 0.00617836 119 20 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 5.50 vpr 53.45 MiB -1 -1 0.12 17348 1 0.01 -1 -1 29756 -1 -1 21 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54728 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 14.8 MiB 1.90 1027 53.4 MiB 0.06 0.00 3.54502 -109.299 -3.54502 3.54502 0.70 0.000117335 9.4944e-05 0.0100314 0.0082219 34 2706 28 6.89349e+06 295971 618332. 2139.56 1.27 0.0458129 0.03841 25762 151098 -1 2246 21 1776 2475 209973 45810 0 0 209973 45810 2475 2085 0 0 9133 7487 0 0 13998 10836 0 0 2475 2161 0 0 89323 11921 0 0 92569 11320 0 0 2475 0 0 699 778 760 6250 0 0 3.85144 3.85144 -134.816 -3.85144 0 0 787024. 2723.27 0.20 0.07 0.07 -1 -1 0.20 0.0136678 0.0121108 130 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 4.95 vpr 53.41 MiB -1 -1 0.10 17644 1 0.00 -1 -1 29800 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 15.0 MiB 1.72 1245 53.4 MiB 0.06 0.00 3.09739 -108.835 -3.09739 3.09739 0.56 0.000115052 9.1839e-05 0.0101059 0.00826882 34 3117 40 6.89349e+06 281877 618332. 2139.56 1.16 0.0470029 0.039104 25762 151098 -1 2559 22 1682 2311 190661 40799 0 0 190661 40799 2311 2044 0 0 8401 6946 0 0 12936 9979 0 0 2311 2143 0 0 84880 9564 0 0 79822 10123 0 0 2311 0 0 629 705 663 5566 0 0 3.2041 3.2041 -130.864 -3.2041 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00831531 0.00729441 138 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 3.68 vpr 53.16 MiB -1 -1 0.10 17164 1 0.01 -1 -1 29696 -1 -1 31 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54440 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 14.7 MiB 0.58 1091 53.2 MiB 0.07 0.00 3.66642 -108.277 -3.66642 3.66642 0.69 0.00012469 9.7247e-05 0.00971886 0.00784243 30 2397 20 6.89349e+06 436909 556674. 1926.21 0.68 0.0294519 0.0246931 25186 138497 -1 1975 20 1140 2181 140026 32036 0 0 140026 32036 2181 1496 0 0 7511 5918 0 0 11473 8911 0 0 2181 1621 0 0 58979 6813 0 0 57701 7277 0 0 2181 0 0 1041 1351 1343 9382 0 0 3.4459 3.4459 -117.872 -3.4459 0 0 706193. 2443.58 0.18 0.03 0.07 -1 -1 0.18 0.00710341 0.00627365 129 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 5.34 vpr 53.76 MiB -1 -1 0.15 17560 1 0.02 -1 -1 29736 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55052 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 15.1 MiB 1.88 1151 53.8 MiB 0.06 0.00 3.78342 -123.662 -3.78342 3.78342 0.59 0.000122684 9.8938e-05 0.00800553 0.00665331 34 3073 24 6.89349e+06 324158 618332. 2139.56 1.26 0.0456912 0.0383847 25762 151098 -1 2491 21 1625 2493 203184 44492 0 0 203184 44492 2493 2108 0 0 9267 7713 0 0 14550 11398 0 0 2493 2163 0 0 89338 10110 0 0 85043 11000 0 0 2493 0 0 868 877 896 6870 0 0 3.7485 3.7485 -140.396 -3.7485 0 0 787024. 2723.27 0.20 0.04 0.07 -1 -1 0.20 0.00844021 0.00743918 148 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 5.50 vpr 53.70 MiB -1 -1 0.10 17496 1 0.02 -1 -1 29708 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54992 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 15.1 MiB 1.64 1352 53.7 MiB 0.09 0.00 4.36021 -139.758 -4.36021 4.36021 0.59 0.000131592 0.000105922 0.0154554 0.0126046 34 3560 37 6.89349e+06 380534 618332. 2139.56 1.63 0.0649725 0.0547507 25762 151098 -1 2679 20 1934 2712 211507 47795 0 0 211507 47795 2712 2209 0 0 10109 8399 0 0 15502 12167 0 0 2712 2311 0 0 91439 11669 0 0 89033 11040 0 0 2712 0 0 778 991 899 7464 0 0 4.58859 4.58859 -165.071 -4.58859 0 0 787024. 2723.27 0.20 0.05 0.07 -1 -1 0.20 0.0115684 0.0102128 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 5.70 vpr 53.61 MiB -1 -1 0.16 17464 1 0.00 -1 -1 29756 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54892 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 15.0 MiB 1.89 1490 53.6 MiB 0.05 0.00 3.66297 -124.385 -3.66297 3.66297 0.57 0.00013365 0.000107676 0.00722915 0.00598456 36 3407 24 6.89349e+06 366440 648988. 2245.63 1.62 0.0532446 0.045012 26050 158493 -1 2964 22 1958 2819 209884 45493 0 0 209884 45493 2819 2358 0 0 10073 7939 0 0 14964 11818 0 0 2819 2548 0 0 89967 10377 0 0 89242 10453 0 0 2819 0 0 861 1140 1087 8267 0 0 3.7566 3.7566 -138.619 -3.7566 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00979324 0.00864462 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.45 vpr 53.02 MiB -1 -1 0.09 17480 1 0.01 -1 -1 29708 -1 -1 21 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54292 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 14.4 MiB 1.91 831 53.0 MiB 0.04 0.00 3.29223 -97.9003 -3.29223 3.29223 0.60 9.8498e-05 7.922e-05 0.00590866 0.00484593 34 2133 50 6.89349e+06 295971 618332. 2139.56 1.13 0.0440149 0.0369778 25762 151098 -1 1874 21 1128 1586 138134 31534 0 0 138134 31534 1586 1435 0 0 6180 5133 0 0 9908 7812 0 0 1586 1476 0 0 58999 8148 0 0 59875 7530 0 0 1586 0 0 458 474 413 3847 0 0 3.25101 3.25101 -114.776 -3.25101 0 0 787024. 2723.27 0.20 0.03 0.07 -1 -1 0.20 0.00689597 0.00609407 112 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.41 vpr 53.91 MiB -1 -1 0.16 17268 1 0.01 -1 -1 29752 -1 -1 25 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55204 30 32 375 299 1 236 87 17 17 289 -1 unnamed_device 15.3 MiB 2.56 1114 53.9 MiB 0.05 0.00 4.18171 -126.225 -4.18171 4.18171 0.56 0.000130446 0.000104639 0.00867401 0.0071408 36 3124 24 6.89349e+06 352346 648988. 2245.63 1.64 0.0474731 0.0398424 26050 158493 -1 2490 23 2034 2846 224754 50469 0 0 224754 50469 2846 2540 0 0 10118 8002 0 0 15216 11939 0 0 2846 2646 0 0 90570 13256 0 0 103158 12086 0 0 2846 0 0 812 947 920 7213 0 0 4.29115 4.29115 -152.766 -4.29115 0 0 828058. 2865.25 0.22 0.05 0.08 -1 -1 0.22 0.0104221 0.00910988 161 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 4.94 vpr 53.38 MiB -1 -1 0.10 17672 1 0.01 -1 -1 29692 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54660 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 15.0 MiB 1.58 1219 53.4 MiB 0.06 0.00 4.07275 -125.942 -4.07275 4.07275 0.57 0.000119758 9.5984e-05 0.00966313 0.00790296 34 2808 23 6.89349e+06 324158 618332. 2139.56 1.08 0.046988 0.039596 25762 151098 -1 2292 21 1375 2387 197856 43617 0 0 197856 43617 2387 1889 0 0 9064 7690 0 0 14983 11679 0 0 2387 2030 0 0 81995 10522 0 0 87040 9807 0 0 2387 0 0 1012 1846 1611 10812 0 0 3.8566 3.8566 -139.551 -3.8566 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00862143 0.00762158 139 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 5.58 vpr 53.45 MiB -1 -1 0.17 17436 1 0.02 -1 -1 29752 -1 -1 23 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54732 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 15.0 MiB 1.73 1203 53.4 MiB 0.09 0.00 4.09814 -120.756 -4.09814 4.09814 0.77 0.000211723 0.000171873 0.0157279 0.0128309 36 2698 26 6.89349e+06 324158 648988. 2245.63 1.27 0.0520272 0.0434854 26050 158493 -1 2310 22 1666 2486 188774 41979 0 0 188774 41979 2486 1982 0 0 9008 7358 0 0 13495 10635 0 0 2486 2066 0 0 79176 10498 0 0 82123 9440 0 0 2486 0 0 820 888 1166 7550 0 0 4.14885 4.14885 -136.752 -4.14885 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00885343 0.00782213 142 43 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 5.78 vpr 53.59 MiB -1 -1 0.11 17640 1 0.02 -1 -1 29840 -1 -1 27 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54872 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 15.0 MiB 2.03 1195 53.6 MiB 0.08 0.00 3.93665 -113.007 -3.93665 3.93665 0.61 0.000133079 0.000107798 0.0144214 0.0118967 36 3139 27 6.89349e+06 380534 648988. 2245.63 1.43 0.0574306 0.0483635 26050 158493 -1 2538 23 1835 2700 219396 48379 0 0 219396 48379 2700 2248 0 0 9878 8137 0 0 14641 11531 0 0 2700 2464 0 0 93477 12504 0 0 96000 11495 0 0 2700 0 0 865 1312 1214 8469 0 0 3.91824 3.91824 -135.277 -3.91824 0 0 828058. 2865.25 0.27 0.07 0.08 -1 -1 0.27 0.0165138 0.0144697 162 78 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.00 vpr 53.55 MiB -1 -1 0.15 17456 1 0.02 -1 -1 29756 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54836 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 15.0 MiB 2.93 1128 53.6 MiB 0.08 0.00 4.28007 -125.694 -4.28007 4.28007 0.58 0.00012839 0.00010271 0.0138219 0.0112669 36 3561 40 6.89349e+06 324158 648988. 2245.63 2.63 0.0655058 0.0553002 26050 158493 -1 2571 21 1899 2766 213571 49213 0 0 213571 49213 2766 2477 0 0 9843 8005 0 0 14303 11230 0 0 2766 2577 0 0 91174 12564 0 0 92719 12360 0 0 2766 0 0 867 1002 766 7349 0 0 4.52865 4.52865 -151.208 -4.52865 0 0 828058. 2865.25 0.26 0.04 0.09 -1 -1 0.26 0.00907991 0.00802378 155 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 5.43 vpr 53.70 MiB -1 -1 0.17 17340 1 0.01 -1 -1 29792 -1 -1 30 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54984 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 15.1 MiB 1.41 1351 53.7 MiB 0.04 0.00 3.57059 -110.14 -3.57059 3.57059 0.82 0.000125439 0.000100807 0.00659454 0.00547606 36 2904 22 6.89349e+06 422815 648988. 2245.63 1.38 0.048581 0.0412029 26050 158493 -1 2496 18 1612 2141 145774 33099 0 0 145774 33099 2141 1770 0 0 7613 6096 0 0 10993 8835 0 0 2141 1848 0 0 59279 7617 0 0 63607 6933 0 0 2141 0 0 529 485 446 4917 0 0 3.7354 3.7354 -128.184 -3.7354 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00843249 0.00749227 166 79 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.05 vpr 52.97 MiB -1 -1 0.10 16896 1 0.01 -1 -1 29644 -1 -1 17 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54244 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 14.5 MiB 0.48 752 53.0 MiB 0.04 0.00 3.26403 -99.6803 -3.26403 3.26403 0.57 9.5007e-05 7.6071e-05 0.00565179 0.0046467 30 1919 25 6.89349e+06 239595 556674. 1926.21 1.45 0.0388075 0.0325588 25186 138497 -1 1579 20 860 1379 79897 19749 0 0 79897 19749 1379 1082 0 0 4885 3883 0 0 6543 5380 0 0 1379 1132 0 0 32557 4207 0 0 33154 4065 0 0 1379 0 0 519 588 435 4145 0 0 2.86616 2.86616 -106.252 -2.86616 0 0 706193. 2443.58 0.19 0.03 0.12 -1 -1 0.19 0.00695883 0.00614877 96 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 5.00 vpr 53.71 MiB -1 -1 0.15 17648 1 0.01 -1 -1 29700 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55004 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 15.1 MiB 1.38 1462 53.7 MiB 0.08 0.00 4.5691 -138.88 -4.5691 4.5691 0.59 0.000127462 0.00010204 0.0116071 0.00947963 34 3204 30 6.89349e+06 352346 618332. 2139.56 1.30 0.0532244 0.0446736 25762 151098 -1 2673 23 1820 2526 204078 44649 0 0 204078 44649 2526 2218 0 0 9411 7499 0 0 14603 11513 0 0 2526 2318 0 0 93092 9386 0 0 81920 11715 0 0 2526 0 0 706 750 914 6730 0 0 4.66999 4.66999 -159.336 -4.66999 0 0 787024. 2723.27 0.22 0.04 0.13 -1 -1 0.22 0.00960191 0.00843715 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.12 vpr 53.75 MiB -1 -1 0.16 17560 1 0.02 -1 -1 29760 -1 -1 25 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55040 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 15.3 MiB 2.71 1334 53.8 MiB 0.07 0.00 4.36821 -144.823 -4.36821 4.36821 0.59 0.000134142 0.000108052 0.0115454 0.00942839 34 3577 47 6.89349e+06 352346 618332. 2139.56 2.15 0.0913074 0.0780009 25762 151098 -1 2854 20 2250 3245 255771 56687 0 0 255771 56687 3245 2721 0 0 12142 9997 0 0 18870 14904 0 0 3245 2898 0 0 110169 12917 0 0 108100 13250 0 0 3245 0 0 995 932 1016 8254 0 0 4.33025 4.33025 -163.994 -4.33025 0 0 787024. 2723.27 0.20 0.05 0.08 -1 -1 0.20 0.00959393 0.00850725 171 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.81 vpr 53.08 MiB -1 -1 0.09 17448 1 0.01 -1 -1 29712 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54352 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 14.5 MiB 2.29 971 53.1 MiB 0.04 0.00 3.14102 -95.6729 -3.14102 3.14102 0.57 0.000105073 8.5238e-05 0.0060547 0.00502213 34 2212 35 6.89349e+06 253689 618332. 2139.56 1.24 0.0389308 0.0328058 25762 151098 -1 1897 19 1036 1383 107873 24448 0 0 107873 24448 1383 1186 0 0 5338 4379 0 0 7962 6404 0 0 1383 1213 0 0 44860 5960 0 0 46947 5306 0 0 1383 0 0 347 309 294 3053 0 0 3.09676 3.09676 -109.715 -3.09676 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.0105883 0.00933173 108 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 3.18 vpr 52.81 MiB -1 -1 0.08 17052 1 0.01 -1 -1 29672 -1 -1 20 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54080 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 14.3 MiB 0.54 780 52.8 MiB 0.05 0.00 3.20583 -99.241 -3.20583 3.20583 0.57 0.00010031 8.0106e-05 0.00831718 0.00676319 32 2057 21 6.89349e+06 281877 586450. 2029.24 0.57 0.0256398 0.0215563 25474 144626 -1 1769 19 1117 1871 160141 35107 0 0 160141 35107 1871 1502 0 0 7137 5886 0 0 11922 9104 0 0 1871 1626 0 0 69412 8247 0 0 67928 8742 0 0 1871 0 0 754 745 801 6151 0 0 2.86611 2.86611 -109.001 -2.86611 0 0 744469. 2576.02 0.19 0.03 0.07 -1 -1 0.19 0.0063198 0.00556222 99 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 5.40 vpr 53.46 MiB -1 -1 0.15 17492 1 0.01 -1 -1 29660 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54744 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 15.0 MiB 1.63 1128 53.5 MiB 0.05 0.00 3.58702 -118.659 -3.58702 3.58702 0.56 0.000122951 9.8318e-05 0.00880449 0.00718992 34 2956 29 6.89349e+06 324158 618332. 2139.56 1.63 0.0764937 0.06501 25762 151098 -1 2379 21 1869 2682 200243 44583 0 0 200243 44583 2682 2351 0 0 9718 7824 0 0 15170 11666 0 0 2682 2404 0 0 85645 10346 0 0 84346 9992 0 0 2682 0 0 813 823 856 6800 0 0 3.7506 3.7506 -138.261 -3.7506 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00871075 0.00768054 145 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.04 vpr 53.41 MiB -1 -1 0.14 17644 1 0.01 -1 -1 29644 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54692 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 14.9 MiB 1.57 1239 53.4 MiB 0.05 0.00 4.01398 -122.686 -4.01398 4.01398 0.57 0.00012291 9.9145e-05 0.0083764 0.00685601 36 2850 40 6.89349e+06 324158 648988. 2245.63 1.32 0.0506443 0.0424537 26050 158493 -1 2410 18 1498 2132 156948 34711 0 0 156948 34711 2132 1725 0 0 7572 6056 0 0 11438 8862 0 0 2132 1804 0 0 65869 8270 0 0 67805 7994 0 0 2132 0 0 634 675 770 5721 0 0 4.70819 4.70819 -150.309 -4.70819 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00825541 0.0073439 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 3.94 vpr 53.48 MiB -1 -1 0.12 17160 1 0.01 -1 -1 29820 -1 -1 36 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54768 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 15.0 MiB 0.53 1172 53.5 MiB 0.08 0.00 4.04141 -120.151 -4.04141 4.04141 0.58 0.000130667 0.000106194 0.0106885 0.0087333 34 2908 35 6.89349e+06 507378 618332. 2139.56 1.23 0.0520079 0.0439746 25762 151098 -1 2331 22 1712 3263 238831 54651 0 0 238831 54651 3263 2241 0 0 12240 10199 0 0 19834 15316 0 0 3263 2424 0 0 100399 12497 0 0 99832 11974 0 0 3263 0 0 1551 2250 2067 14487 0 0 4.24579 4.24579 -143.589 -4.24579 0 0 787024. 2723.27 0.20 0.06 0.08 -1 -1 0.20 0.0112894 0.00985632 157 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 4.45 vpr 53.49 MiB -1 -1 0.11 17644 1 0.01 -1 -1 29772 -1 -1 25 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54772 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 14.9 MiB 1.14 1121 53.5 MiB 0.05 0.00 2.95499 -91.5407 -2.95499 2.95499 0.56 0.000112433 9.0384e-05 0.0078828 0.00648304 34 2672 43 6.89349e+06 352346 618332. 2139.56 1.12 0.0455991 0.0381994 25762 151098 -1 2160 22 1737 2599 189972 42873 0 0 189972 42873 2599 1946 0 0 9641 7965 0 0 14632 11470 0 0 2599 2212 0 0 80696 9849 0 0 79805 9431 0 0 2599 0 0 862 1233 1180 8008 0 0 3.36821 3.36821 -112.963 -3.36821 0 0 787024. 2723.27 0.22 0.04 0.13 -1 -1 0.22 0.00838743 0.00740231 136 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 5.18 vpr 53.06 MiB -1 -1 0.12 17180 1 0.01 -1 -1 29780 -1 -1 20 27 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54336 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 14.5 MiB 1.46 699 53.1 MiB 0.07 0.00 3.41829 -89.9244 -3.41829 3.41829 0.73 9.4213e-05 7.456e-05 0.0126059 0.010194 36 1663 19 6.89349e+06 281877 648988. 2245.63 1.36 0.0463629 0.0388261 26050 158493 -1 1463 22 1118 1649 119775 28185 0 0 119775 28185 1649 1447 0 0 6040 4742 0 0 8852 7113 0 0 1649 1505 0 0 53679 6231 0 0 47906 7147 0 0 1649 0 0 531 586 504 4630 0 0 3.6001 3.6001 -105.84 -3.6001 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00686455 0.00604802 106 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 7.28 vpr 54.10 MiB -1 -1 0.16 17768 1 0.01 -1 -1 29932 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55396 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 15.3 MiB 2.73 1528 54.1 MiB 0.09 0.00 3.66879 -123.841 -3.66879 3.66879 0.57 0.000144345 0.000115904 0.0130924 0.0106694 36 3690 33 6.89349e+06 380534 648988. 2245.63 2.06 0.0862027 0.0735243 26050 158493 -1 3108 21 2127 3316 252658 54806 0 0 252658 54806 3316 2601 0 0 12031 9901 0 0 17896 14143 0 0 3316 2894 0 0 111162 12355 0 0 104937 12912 0 0 3316 0 0 1189 1169 1520 10144 0 0 4.08885 4.08885 -143.994 -4.08885 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0173224 0.0152438 185 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 5.64 vpr 53.59 MiB -1 -1 0.16 17440 1 0.02 -1 -1 29856 -1 -1 24 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54876 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 15.0 MiB 1.75 1106 53.6 MiB 0.07 0.00 4.36917 -131.102 -4.36917 4.36917 0.72 0.000130514 0.000105907 0.0122204 0.00996815 34 3250 25 6.89349e+06 338252 618332. 2139.56 1.33 0.0519001 0.0434905 25762 151098 -1 2609 20 2039 3042 279158 59379 0 0 279158 59379 3042 2755 0 0 11356 9354 0 0 17518 13506 0 0 3042 2800 0 0 122944 15709 0 0 121256 15255 0 0 3042 0 0 1003 1450 1583 9796 0 0 4.78225 4.78225 -158.176 -4.78225 0 0 787024. 2723.27 0.20 0.05 0.08 -1 -1 0.20 0.00864825 0.00765805 155 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 5.41 vpr 53.23 MiB -1 -1 0.15 17584 1 0.02 -1 -1 29748 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54512 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 14.8 MiB 1.57 1074 53.2 MiB 0.06 0.00 3.43229 -114.249 -3.43229 3.43229 0.57 0.000112528 8.9073e-05 0.0100598 0.00808519 36 3059 28 6.89349e+06 295971 648988. 2245.63 1.66 0.0498069 0.0419145 26050 158493 -1 2309 18 1728 2279 189009 42250 0 0 189009 42250 2279 2019 0 0 8195 6601 0 0 12055 9545 0 0 2279 2188 0 0 79327 11666 0 0 84874 10231 0 0 2279 0 0 551 541 431 4904 0 0 3.6173 3.6173 -139.076 -3.6173 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00742411 0.00659615 137 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 5.27 vpr 53.45 MiB -1 -1 0.16 17492 1 0.02 -1 -1 29740 -1 -1 21 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54728 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 14.8 MiB 1.82 1107 53.4 MiB 0.04 0.00 4.09751 -116.957 -4.09751 4.09751 0.57 0.000115923 9.3258e-05 0.00631469 0.0052257 34 2813 27 6.89349e+06 295971 618332. 2139.56 1.26 0.0429976 0.03614 25762 151098 -1 2328 22 1400 2075 169748 37725 0 0 169748 37725 2075 1750 0 0 7667 6272 0 0 11992 9384 0 0 2075 1815 0 0 74371 9024 0 0 71568 9480 0 0 2075 0 0 675 776 748 6032 0 0 3.78236 3.78236 -131.035 -3.78236 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00959052 0.00855916 135 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 4.74 vpr 53.63 MiB -1 -1 0.13 17516 1 0.02 -1 -1 29720 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54920 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 15.1 MiB 1.50 1135 53.6 MiB 0.05 0.00 3.59285 -104.711 -3.59285 3.59285 0.56 0.000130253 0.000105239 0.00693179 0.00575688 34 3095 28 6.89349e+06 366440 618332. 2139.56 1.06 0.0460675 0.0385781 25762 151098 -1 2420 21 1807 2802 186898 44141 0 0 186898 44141 2802 2147 0 0 10305 8401 0 0 15483 12241 0 0 2802 2249 0 0 81197 8924 0 0 74309 10179 0 0 2802 0 0 995 1023 1787 9719 0 0 3.83606 3.83606 -126.858 -3.83606 0 0 787024. 2723.27 0.24 0.06 0.08 -1 -1 0.24 0.0150774 0.0132413 163 46 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 5.68 vpr 53.50 MiB -1 -1 0.16 17676 1 0.01 -1 -1 29804 -1 -1 24 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54788 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 15.1 MiB 1.58 1084 53.5 MiB 0.07 0.00 3.39129 -97.8423 -3.39129 3.39129 0.57 0.000120119 9.719e-05 0.0106958 0.00882488 34 3234 39 6.89349e+06 338252 618332. 2139.56 1.66 0.0615193 0.0518875 25762 151098 -1 2410 21 1391 2244 180393 40089 0 0 180393 40089 2244 1880 0 0 8568 7091 0 0 12825 10248 0 0 2244 1979 0 0 79517 9252 0 0 74995 9639 0 0 2244 0 0 853 1093 997 7471 0 0 3.3537 3.3537 -114.928 -3.3537 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0133118 0.011711 140 46 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 6.93 vpr 53.48 MiB -1 -1 0.16 17484 1 0.01 -1 -1 29664 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54764 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 15.0 MiB 2.83 1229 53.5 MiB 0.06 0.00 3.88598 -127.774 -3.88598 3.88598 0.61 0.00012454 9.986e-05 0.00917854 0.00749617 34 3227 23 6.89349e+06 310065 618332. 2139.56 1.63 0.0645161 0.0550609 25762 151098 -1 2658 20 1886 2940 231694 50920 0 0 231694 50920 2940 2546 0 0 10950 8997 0 0 16494 12880 0 0 2940 2656 0 0 97383 12464 0 0 100987 11377 0 0 2940 0 0 1054 1056 969 8189 0 0 3.99539 3.99539 -147.098 -3.99539 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0144401 0.0127649 148 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 8.88 vpr 53.78 MiB -1 -1 0.10 17516 1 0.02 -1 -1 29696 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55072 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 15.1 MiB 2.37 1222 53.8 MiB 0.10 0.00 3.22388 -106.835 -3.22388 3.22388 0.73 0.00024717 0.000194715 0.0163136 0.0132512 34 4013 37 6.89349e+06 366440 618332. 2139.56 3.93 0.107519 0.0912167 25762 151098 -1 2773 22 2145 3036 261703 60482 0 0 261703 60482 3036 2474 0 0 11267 9171 0 0 16845 13351 0 0 3036 2701 0 0 114156 16764 0 0 113363 16021 0 0 3036 0 0 891 1249 1238 8594 0 0 3.62281 3.62281 -134.91 -3.62281 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0165831 0.014638 167 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 4.16 vpr 53.15 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29764 -1 -1 20 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54424 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 14.6 MiB 1.00 860 53.1 MiB 0.04 0.00 3.27503 -101.105 -3.27503 3.27503 0.56 9.6533e-05 7.7412e-05 0.00678341 0.00555428 34 2004 21 6.89349e+06 281877 618332. 2139.56 0.91 0.034603 0.0290382 25762 151098 -1 1785 19 1472 1911 150042 33371 0 0 150042 33371 1911 1618 0 0 7122 5952 0 0 11172 8724 0 0 1911 1713 0 0 61801 8253 0 0 66125 7111 0 0 1911 0 0 439 476 458 4284 0 0 2.96326 2.96326 -110.676 -2.96326 0 0 787024. 2723.27 0.27 0.03 0.13 -1 -1 0.27 0.00683655 0.00607267 110 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 4.64 vpr 53.34 MiB -1 -1 0.15 17428 1 0.01 -1 -1 29724 -1 -1 20 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54624 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 14.8 MiB 0.93 1077 53.3 MiB 0.06 0.00 3.30699 -109.465 -3.30699 3.30699 0.57 0.000107133 8.5415e-05 0.00982244 0.00794837 36 2418 24 6.89349e+06 281877 648988. 2245.63 1.57 0.0478656 0.0401328 26050 158493 -1 2099 21 1619 2235 175355 39066 0 0 175355 39066 2235 1772 0 0 8209 6689 0 0 12830 10042 0 0 2235 1818 0 0 76160 9492 0 0 73686 9253 0 0 2235 0 0 616 570 471 5124 0 0 3.31085 3.31085 -125.017 -3.31085 0 0 828058. 2865.25 0.21 0.04 0.08 -1 -1 0.21 0.00776924 0.00686165 125 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 5.80 vpr 53.43 MiB -1 -1 0.15 17492 1 0.01 -1 -1 29796 -1 -1 22 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54708 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 14.8 MiB 1.34 1110 53.4 MiB 0.05 0.00 3.81078 -112.295 -3.81078 3.81078 0.57 0.000115975 9.3331e-05 0.00708498 0.00584791 36 2651 21 6.89349e+06 310065 648988. 2245.63 2.07 0.0592619 0.0508397 26050 158493 -1 2274 18 1335 2202 181699 39133 0 0 181699 39133 2202 1737 0 0 7989 6404 0 0 12065 9559 0 0 2202 1815 0 0 78143 9940 0 0 79098 9678 0 0 2202 0 0 867 952 1034 7697 0 0 3.84466 3.84466 -131.429 -3.84466 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0127254 0.0113215 137 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.14 vpr 53.07 MiB -1 -1 0.12 17444 1 0.02 -1 -1 29708 -1 -1 19 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54344 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 14.5 MiB 2.36 841 53.1 MiB 0.05 0.00 3.24432 -93.4931 -3.24432 3.24432 0.63 9.6775e-05 7.7764e-05 0.00939577 0.00767882 30 2203 22 6.89349e+06 267783 556674. 1926.21 0.64 0.0278251 0.0233799 25186 138497 -1 1826 22 952 1352 95328 22317 0 0 95328 22317 1352 1185 0 0 4794 3921 0 0 6872 5581 0 0 1352 1216 0 0 42205 4928 0 0 38753 5486 0 0 1352 0 0 400 251 468 3313 0 0 2.8654 2.8654 -101.201 -2.8654 0 0 706193. 2443.58 0.19 0.03 0.07 -1 -1 0.19 0.00726974 0.00640099 108 25 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.49 vpr 53.23 MiB -1 -1 0.11 17196 1 0.00 -1 -1 29660 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54512 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 14.8 MiB 1.92 908 53.2 MiB 0.06 0.00 3.26703 -103.493 -3.26703 3.26703 0.67 0.000182977 0.000148901 0.00953407 0.00789326 34 2339 21 6.89349e+06 253689 618332. 2139.56 1.18 0.0406972 0.0343959 25762 151098 -1 2036 17 1240 1718 132025 29570 0 0 132025 29570 1718 1504 0 0 6291 5040 0 0 9479 7383 0 0 1718 1549 0 0 54305 7495 0 0 58514 6599 0 0 1718 0 0 478 509 403 4064 0 0 3.16976 3.16976 -116.167 -3.16976 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00642316 0.00573365 114 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 4.95 vpr 53.59 MiB -1 -1 0.11 17264 1 0.01 -1 -1 29784 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54876 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 15.0 MiB 1.50 1149 53.6 MiB 0.07 0.00 3.60497 -116.508 -3.60497 3.60497 0.56 0.000126997 0.00010237 0.0115482 0.00942384 34 3098 45 6.89349e+06 366440 618332. 2139.56 1.24 0.0554761 0.0463175 25762 151098 -1 2496 22 1918 2665 221095 49327 0 0 221095 49327 2665 2372 0 0 10118 8467 0 0 15705 12490 0 0 2665 2441 0 0 92916 12539 0 0 97026 11018 0 0 2665 0 0 747 897 923 7006 0 0 3.68505 3.68505 -138.816 -3.68505 0 0 787024. 2723.27 0.20 0.04 0.11 -1 -1 0.20 0.00961986 0.00845402 160 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 4.38 vpr 53.08 MiB -1 -1 0.10 17480 1 0.01 -1 -1 29692 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54356 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 14.5 MiB 1.52 835 53.1 MiB 0.04 0.00 2.93195 -91.6659 -2.93195 2.93195 0.56 9.6976e-05 7.7802e-05 0.00682764 0.00558028 30 2212 30 6.89349e+06 239595 556674. 1926.21 0.61 0.0276401 0.0233105 25186 138497 -1 1818 21 1069 1520 93530 22529 0 0 93530 22529 1520 1283 0 0 5385 4321 0 0 7218 5978 0 0 1520 1339 0 0 38758 4882 0 0 39129 4726 0 0 1520 0 0 451 465 365 3703 0 0 2.91546 2.91546 -106.475 -2.91546 0 0 706193. 2443.58 0.28 0.04 0.12 -1 -1 0.28 0.0111617 0.0098181 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 5.73 vpr 53.62 MiB -1 -1 0.09 17464 1 0.01 -1 -1 29668 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54912 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 15.1 MiB 1.54 1225 53.6 MiB 0.06 0.00 3.37109 -104.575 -3.37109 3.37109 0.86 0.000120916 9.6994e-05 0.00946799 0.00769602 36 2717 24 6.89349e+06 310065 648988. 2245.63 1.21 0.0465451 0.0390473 26050 158493 -1 2299 18 1331 2006 147923 32670 0 0 147923 32670 2006 1684 0 0 7213 5880 0 0 10549 8429 0 0 2006 1758 0 0 62933 7602 0 0 63216 7317 0 0 2006 0 0 675 740 954 6595 0 0 3.5073 3.5073 -120.88 -3.5073 0 0 828058. 2865.25 0.32 0.05 0.14 -1 -1 0.32 0.0127216 0.0112517 146 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.13 vpr 53.73 MiB -1 -1 0.10 17632 1 0.01 -1 -1 29896 -1 -1 26 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 55020 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 15.2 MiB 1.61 1311 53.7 MiB 0.08 0.00 4.02188 -128.285 -4.02188 4.02188 0.59 0.000132409 0.000104104 0.0124018 0.0100433 34 4036 47 6.89349e+06 366440 618332. 2139.56 2.31 0.0737076 0.0629868 25762 151098 -1 2863 23 2546 3551 287948 63950 0 0 287948 63950 3551 2959 0 0 13128 10959 0 0 20158 15750 0 0 3551 3160 0 0 124642 15621 0 0 122918 15501 0 0 3551 0 0 1005 1284 1200 9550 0 0 4.27409 4.27409 -155.485 -4.27409 0 0 787024. 2723.27 0.20 0.05 0.08 -1 -1 0.20 0.0105672 0.00928584 170 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 5.39 vpr 52.88 MiB -1 -1 0.09 17552 1 0.01 -1 -1 29704 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54152 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 14.2 MiB 1.94 1069 52.9 MiB 0.05 0.00 3.0513 -96.5592 -3.0513 3.0513 0.56 0.000104986 8.3987e-05 0.00837092 0.0067949 36 2612 19 6.89349e+06 253689 648988. 2245.63 1.27 0.0389632 0.0323811 26050 158493 -1 2158 19 1506 1995 168339 34689 0 0 168339 34689 1995 1655 0 0 7026 5495 0 0 9933 7812 0 0 1995 1822 0 0 70496 9701 0 0 76894 8204 0 0 1995 0 0 489 514 521 4519 0 0 2.94656 2.94656 -113.927 -2.94656 0 0 828058. 2865.25 0.22 0.03 0.13 -1 -1 0.22 0.00729069 0.006457 124 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 4.18 vpr 52.58 MiB -1 -1 0.16 17432 1 0.01 -1 -1 29736 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53840 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 14.0 MiB 0.87 977 52.6 MiB 0.05 0.00 3.24503 -105.57 -3.24503 3.24503 0.57 0.000103349 8.2535e-05 0.00845017 0.00687553 36 2288 19 6.89349e+06 253689 648988. 2245.63 1.15 0.0384213 0.0322196 26050 158493 -1 2118 19 1146 1719 155909 32939 0 0 155909 32939 1719 1548 0 0 6418 5204 0 0 9923 7819 0 0 1719 1599 0 0 69851 8424 0 0 66279 8345 0 0 1719 0 0 573 515 481 4434 0 0 3.15225 3.15225 -118.166 -3.15225 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00693827 0.0061521 115 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 4.45 vpr 52.86 MiB -1 -1 0.09 17384 1 0.01 -1 -1 29792 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54132 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 14.3 MiB 1.34 1138 52.9 MiB 0.06 0.00 4.11268 -118.02 -4.11268 4.11268 0.57 0.000112824 9.0497e-05 0.0101047 0.00824422 34 2636 22 6.89349e+06 310065 618332. 2139.56 1.02 0.0425127 0.0355133 25762 151098 -1 2226 20 1250 1804 127831 29786 0 0 127831 29786 1804 1494 0 0 6714 5574 0 0 10359 8196 0 0 1804 1602 0 0 52810 6775 0 0 54340 6145 0 0 1804 0 0 554 550 535 4573 0 0 3.84706 3.84706 -130.586 -3.84706 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00778606 0.0068791 133 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.03 vpr 52.78 MiB -1 -1 0.13 17356 1 0.01 -1 -1 29688 -1 -1 25 29 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54048 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 14.3 MiB 1.53 1221 52.8 MiB 0.06 0.00 3.15468 -93.0776 -3.15468 3.15468 0.61 0.00011499 9.2908e-05 0.00956996 0.00783709 36 2460 24 6.89349e+06 352346 648988. 2245.63 1.31 0.0444969 0.0373873 26050 158493 -1 2249 18 1372 1980 140796 31182 0 0 140796 31182 1980 1622 0 0 7156 5627 0 0 10093 8168 0 0 1980 1744 0 0 58881 7299 0 0 60706 6722 0 0 1980 0 0 608 812 842 6176 0 0 2.99036 2.99036 -108.183 -2.99036 0 0 828058. 2865.25 0.21 0.03 0.08 -1 -1 0.21 0.00754502 0.00670151 138 49 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 5.34 vpr 52.96 MiB -1 -1 0.10 17864 1 0.01 -1 -1 29708 -1 -1 24 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54236 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 14.4 MiB 1.51 1344 53.0 MiB 0.06 0.00 4.55604 -148.713 -4.55604 4.55604 0.56 0.000131306 0.000105493 0.00898319 0.00736093 34 3780 31 6.89349e+06 338252 618332. 2139.56 1.51 0.0497546 0.0415171 25762 151098 -1 3024 22 2250 3491 304275 66368 0 0 304275 66368 3491 2953 0 0 13265 11268 0 0 21463 16549 0 0 3491 3083 0 0 130653 16565 0 0 131912 15950 0 0 3491 0 0 1241 1495 1702 11195 0 0 4.30729 4.30729 -161.805 -4.30729 0 0 787024. 2723.27 0.30 0.06 0.11 -1 -1 0.30 0.0110681 0.00976497 166 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.86 vpr 52.29 MiB -1 -1 0.11 16764 1 0.01 -1 -1 29616 -1 -1 17 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53548 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 13.8 MiB 0.45 828 52.3 MiB 0.04 0.00 2.72825 -89.364 -2.72825 2.72825 0.56 9.0373e-05 7.2136e-05 0.00731317 0.00595074 30 1965 32 6.89349e+06 239595 556674. 1926.21 1.35 0.0396431 0.0331806 25186 138497 -1 1560 19 806 1275 82802 19362 0 0 82802 19362 1275 1020 0 0 4472 3589 0 0 6289 5111 0 0 1275 1033 0 0 34228 4521 0 0 35263 4088 0 0 1275 0 0 469 408 398 3638 0 0 2.53636 2.53636 -96.9885 -2.53636 0 0 706193. 2443.58 0.18 0.02 0.07 -1 -1 0.18 0.00591794 0.00525358 92 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 5.05 vpr 53.39 MiB -1 -1 0.10 17648 1 0.01 -1 -1 29808 -1 -1 27 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54668 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 14.6 MiB 1.46 1438 53.4 MiB 0.08 0.00 4.41033 -141.952 -4.41033 4.41033 0.57 0.000133273 0.00010652 0.012507 0.0101483 36 3211 27 6.89349e+06 380534 648988. 2245.63 1.39 0.053042 0.0440753 26050 158493 -1 2709 23 2049 2768 191149 42982 0 0 191149 42982 2768 2330 0 0 9824 8014 0 0 14694 11581 0 0 2768 2440 0 0 77606 9999 0 0 83489 8618 0 0 2768 0 0 719 675 772 6688 0 0 4.71644 4.71644 -166.983 -4.71644 0 0 828058. 2865.25 0.24 0.04 0.08 -1 -1 0.24 0.0106388 0.00935799 175 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 6.37 vpr 53.15 MiB -1 -1 0.11 17156 1 0.02 -1 -1 29784 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54424 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 14.6 MiB 1.68 1183 53.1 MiB 0.06 0.00 3.86868 -131.455 -3.86868 3.86868 0.57 0.000122998 9.7749e-05 0.0104918 0.00851475 36 3706 40 6.89349e+06 324158 648988. 2245.63 2.47 0.0641397 0.0543785 26050 158493 -1 2549 25 2631 3381 289127 65121 0 0 289127 65121 3381 3063 0 0 12006 9864 0 0 19005 14461 0 0 3381 3136 0 0 122836 17732 0 0 128518 16865 0 0 3381 0 0 750 840 860 7365 0 0 4.82559 4.82559 -165.74 -4.82559 0 0 828058. 2865.25 0.21 0.08 0.08 -1 -1 0.21 0.0165169 0.0144462 160 93 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 4.93 vpr 53.00 MiB -1 -1 0.10 17496 1 0.01 -1 -1 29736 -1 -1 22 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54276 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 14.5 MiB 1.48 1311 53.0 MiB 0.05 0.00 3.22388 -106.809 -3.22388 3.22388 0.57 0.000125213 0.000100561 0.00874884 0.00715982 36 2628 20 6.89349e+06 310065 648988. 2245.63 1.19 0.047947 0.0401469 26050 158493 -1 2268 17 1342 1841 137544 30311 0 0 137544 30311 1841 1506 0 0 6907 5744 0 0 10018 8197 0 0 1841 1581 0 0 58683 6608 0 0 58254 6675 0 0 1841 0 0 499 678 716 5358 0 0 3.06661 3.06661 -116.098 -3.06661 0 0 828058. 2865.25 0.29 0.05 0.10 -1 -1 0.29 0.0128987 0.0114684 152 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 5.91 vpr 53.37 MiB -1 -1 0.19 17780 1 0.01 -1 -1 29756 -1 -1 26 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54648 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 14.7 MiB 1.96 1369 53.4 MiB 0.06 0.00 4.7624 -145.974 -4.7624 4.7624 0.56 0.000135639 0.000108954 0.00874284 0.00720346 36 3005 21 6.89349e+06 366440 648988. 2245.63 1.47 0.0482078 0.0405349 26050 158493 -1 2637 23 2042 3242 259853 55443 0 0 259853 55443 3242 2523 0 0 11672 9516 0 0 18160 14061 0 0 3242 2617 0 0 111295 13127 0 0 112242 13599 0 0 3242 0 0 1200 1717 1576 10815 0 0 4.71575 4.71575 -158.636 -4.71575 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0174796 0.0153529 172 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 3.55 vpr 52.21 MiB -1 -1 0.09 17248 1 0.00 -1 -1 29740 -1 -1 15 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53464 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 13.6 MiB 0.66 686 52.2 MiB 0.04 0.00 2.38626 -77.3379 -2.38626 2.38626 0.56 8.139e-05 6.4223e-05 0.00674407 0.00543304 34 1636 20 6.89349e+06 211408 618332. 2139.56 0.86 0.0301105 0.0249825 25762 151098 -1 1446 21 847 1148 111221 24276 0 0 111221 24276 1148 966 0 0 4385 3629 0 0 7211 5547 0 0 1148 998 0 0 47329 6540 0 0 50000 6596 0 0 1148 0 0 301 321 351 2723 0 0 2.13627 2.13627 -88.7943 -2.13627 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.00613738 0.005369 82 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 3.90 vpr 52.63 MiB -1 -1 0.09 17384 1 0.01 -1 -1 29684 -1 -1 20 30 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53892 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 14.1 MiB 0.94 973 52.6 MiB 0.05 0.00 3.70827 -117.45 -3.70827 3.70827 0.56 0.000105047 8.3757e-05 0.00844543 0.0068637 34 2219 21 6.89349e+06 281877 618332. 2139.56 0.92 0.0382036 0.0319372 25762 151098 -1 1862 20 1248 1841 133058 30182 0 0 133058 30182 1841 1518 0 0 6960 5769 0 0 10439 8381 0 0 1841 1572 0 0 55314 6801 0 0 56663 6141 0 0 1841 0 0 593 696 425 5027 0 0 3.34945 3.34945 -126.918 -3.34945 0 0 787024. 2723.27 0.20 0.03 0.08 -1 -1 0.20 0.007071 0.00624771 119 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 4.64 vpr 52.74 MiB -1 -1 0.08 17552 1 0.01 -1 -1 29740 -1 -1 18 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54004 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 14.2 MiB 1.48 1110 52.7 MiB 0.05 0.00 3.53059 -115.631 -3.53059 3.53059 0.57 0.000109293 8.7893e-05 0.00898085 0.00734193 34 2807 24 6.89349e+06 253689 618332. 2139.56 1.06 0.0419076 0.0352472 25762 151098 -1 2319 19 1457 2625 207423 46057 0 0 207423 46057 2625 2075 0 0 9707 8055 0 0 15706 12058 0 0 2625 2290 0 0 88055 11067 0 0 88705 10512 0 0 2625 0 0 1168 1478 1405 10052 0 0 3.5001 3.5001 -133.964 -3.5001 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.00729147 0.00645473 120 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 3.84 vpr 52.22 MiB -1 -1 0.13 17120 1 0.01 -1 -1 29840 -1 -1 21 25 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 53476 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 13.7 MiB 0.93 569 52.2 MiB 0.04 0.00 3.0161 -71.862 -3.0161 3.0161 0.56 8.2712e-05 6.5964e-05 0.00690819 0.00564019 34 1615 26 6.89349e+06 295971 618332. 2139.56 0.85 0.0311374 0.0257816 25762 151098 -1 1192 21 801 1265 75547 19358 0 0 75547 19358 1265 1024 0 0 4596 3744 0 0 7351 5604 0 0 1265 1078 0 0 30592 3997 0 0 30478 3911 0 0 1265 0 0 464 598 561 4170 0 0 2.74511 2.74511 -77.3962 -2.74511 0 0 787024. 2723.27 0.20 0.02 0.08 -1 -1 0.20 0.00581386 0.00511094 92 19 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 5.51 vpr 53.14 MiB -1 -1 0.12 17432 1 0.01 -1 -1 29688 -1 -1 23 32 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54416 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 14.4 MiB 1.79 1406 53.1 MiB 0.05 0.00 3.72115 -114.833 -3.72115 3.72115 0.56 0.000133459 0.00010817 0.00839831 0.00693774 34 3524 43 6.89349e+06 324158 618332. 2139.56 1.45 0.0510986 0.0427012 25762 151098 -1 2948 21 2021 3055 231663 50764 0 0 231663 50764 3055 2448 0 0 11185 9050 0 0 16395 12882 0 0 3055 2605 0 0 100869 12038 0 0 97104 11741 0 0 3055 0 0 1034 1121 1188 8666 0 0 3.85185 3.85185 -134.462 -3.85185 0 0 787024. 2723.27 0.25 0.07 0.12 -1 -1 0.25 0.0151084 0.0132479 161 69 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 5.22 vpr 53.48 MiB -1 -1 0.11 17744 1 0.01 -1 -1 29772 -1 -1 29 31 0 0 success v8.0.0-7776-g6d5a301e6 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-197-generic x86_64 2023-05-04T19:10:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/RLplace_2/vtr-verilog-to-routing/vtr_flow/tasks 54764 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 14.8 MiB 1.71 1459 53.5 MiB 0.08 0.00 3.88258 -130.654 -3.88258 3.88258 0.57 0.000135325 0.000108421 0.0124865 0.0101807 34 3567 44 6.89349e+06 408721 618332. 2139.56 1.39 0.065353 0.0545072 25762 151098 -1 2899 22 2270 3066 230697 52150 0 0 230697 52150 3066 2647 0 0 11408 9491 0 0 17441 13694 0 0 3066 2788 0 0 97474 11745 0 0 98242 11785 0 0 3066 0 0 796 922 921 7569 0 0 4.37314 4.37314 -160.694 -4.37314 0 0 787024. 2723.27 0.20 0.04 0.08 -1 -1 0.20 0.0102142 0.00900057 179 86 -1 -1 -1 -1 From 207e485633c4d9d4c4b49ac264702770bdfe5bbd Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Fri, 5 May 2023 10:21:51 -0400 Subject: [PATCH 80/81] make format --- vpr/src/place/place.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 330bc88529d..9b7cdebd0ee 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -1433,7 +1433,7 @@ static e_move_result try_swap(const t_annealing_state* state, crit_params.crit_limit = placer_opts.place_crit_limit; e_move_type move_type = e_move_type::UNIFORM; //move type number - t_logical_block_type move_blk_type; //blk type that is chosen to be moved by the agent + t_logical_block_type move_blk_type; //blk type that is chosen to be moved by the agent num_ts_called++; From df538dda589949790843a1c77ed18a137a8c728a Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 8 May 2023 11:11:42 -0400 Subject: [PATCH 81/81] modified noc parse file to contain number of latency constraints met in the placement run --- vtr_flow/parse/parse_config/vpr_noc.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vtr_flow/parse/parse_config/vpr_noc.txt b/vtr_flow/parse/parse_config/vpr_noc.txt index 623d8d8cb34..f9a9a4440ac 100644 --- a/vtr_flow/parse/parse_config/vpr_noc.txt +++ b/vtr_flow/parse/parse_config/vpr_noc.txt @@ -11,5 +11,6 @@ %include "timing/vpr.route_min_chan_width.txt" %include "timing/vpr.route_relaxed_chan_width.txt" -NoC_agg_bandwidth;vpr.out;NoC Placement Costs. noc_aggregate_bandwidth_cost: (.*), noc_latency_cost: .*, -NoC_latency;vpr.out;NoC Placement Costs. noc_aggregate_bandwidth_cost: .*, noc_latency_cost: (.*), \ No newline at end of file +NoC_agg_bandwidth;vpr.out;NoC Placement Costs. noc_aggregate_bandwidth_cost: (.*), noc_latency_cost: .*, noc_latency_constraints_cost: .*, +NoC_latency;vpr.out;NoC Placement Costs. noc_aggregate_bandwidth_cost: .*, noc_latency_cost: (.*), noc_latency_constraints_cost: .*, +NoC_latency_constraints_cost;vpr.out;NoC Placement Costs. noc_aggregate_bandwidth_cost: .*, noc_latency_cost: .*, noc_latency_constraints_cost: (.*), \ No newline at end of file